blob: 1c19f67cb0fc2d9b10b76fc7695a4a6641d8057a [file] [log] [blame]
Eugene Zelenko1ced5092016-02-12 22:53:10 +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.
Eugene Zelenko1ced5092016-02-12 22:53:10 +00007//===----------------------------------------------------------------------===//
Douglas Gregor5101c242008-12-05 18:15:24 +00008//
9// This file implements semantic analysis for C++ templates.
Eugene Zelenko1ced5092016-02-12 22:53:10 +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"
David Majnemerd9b1a4f2015-11-04 03:40:30 +000021#include "clang/Basic/Builtins.h"
Douglas Gregor5101c242008-12-05 18:15:24 +000022#include "clang/Basic/LangOptions.h"
Douglas Gregor450f00842009-09-25 18:43:00 +000023#include "clang/Basic/PartialDiagnostic.h"
David Majnemer763584d2014-02-06 10:59:19 +000024#include "clang/Basic/TargetInfo.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000025#include "clang/Sema/DeclSpec.h"
26#include "clang/Sema/Lookup.h"
27#include "clang/Sema/ParsedTemplate.h"
28#include "clang/Sema/Scope.h"
29#include "clang/Sema/SemaInternal.h"
30#include "clang/Sema/Template.h"
31#include "clang/Sema/TemplateDeduction.h"
Benjamin Kramere0513cb2012-01-30 16:17:39 +000032#include "llvm/ADT/SmallBitVector.h"
Benjamin Kramer49038022012-02-04 13:45:25 +000033#include "llvm/ADT/SmallString.h"
Douglas Gregorbe999392009-09-15 16:23:51 +000034#include "llvm/ADT/StringExtras.h"
Eugene Zelenko1ced5092016-02-12 22:53:10 +000035
Eric Fiselier6ad68552016-07-01 01:24:09 +000036#include <iterator>
Douglas Gregor5101c242008-12-05 18:15:24 +000037using namespace clang;
John McCall19c1bfd2010-08-25 05:32:35 +000038using namespace sema;
Douglas Gregor5101c242008-12-05 18:15:24 +000039
John McCall9b72f892010-11-10 02:40:36 +000040// Exported for use by Parser.
41SourceRange
42clang::getTemplateParamsRange(TemplateParameterList const * const *Ps,
43 unsigned N) {
44 if (!N) return SourceRange();
45 return SourceRange(Ps[0]->getTemplateLoc(), Ps[N-1]->getRAngleLoc());
46}
47
Douglas Gregorb7bfe792009-09-02 22:59:36 +000048/// \brief Determine whether the declaration found is acceptable as the name
49/// of a template and, if so, return that template declaration. Otherwise,
50/// returns NULL.
John McCalle9cccd82010-06-16 08:42:20 +000051static NamedDecl *isAcceptableTemplateName(ASTContext &Context,
Douglas Gregor50a3cdd2012-03-10 23:52:41 +000052 NamedDecl *Orig,
53 bool AllowFunctionTemplates) {
John McCalle9cccd82010-06-16 08:42:20 +000054 NamedDecl *D = Orig->getUnderlyingDecl();
Mike Stump11289f42009-09-09 15:08:12 +000055
Douglas Gregor50a3cdd2012-03-10 23:52:41 +000056 if (isa<TemplateDecl>(D)) {
57 if (!AllowFunctionTemplates && isa<FunctionTemplateDecl>(D))
Craig Topperc3ec1492014-05-26 06:22:03 +000058 return nullptr;
59
John McCalle9cccd82010-06-16 08:42:20 +000060 return Orig;
Douglas Gregor50a3cdd2012-03-10 23:52:41 +000061 }
Mike Stump11289f42009-09-09 15:08:12 +000062
Douglas Gregorb7bfe792009-09-02 22:59:36 +000063 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(D)) {
64 // C++ [temp.local]p1:
65 // Like normal (non-template) classes, class templates have an
66 // injected-class-name (Clause 9). The injected-class-name
67 // can be used with or without a template-argument-list. When
68 // it is used without a template-argument-list, it is
69 // equivalent to the injected-class-name followed by the
70 // template-parameters of the class template enclosed in
71 // <>. When it is used with a template-argument-list, it
72 // refers to the specified class template specialization,
73 // which could be the current specialization or another
74 // specialization.
75 if (Record->isInjectedClassName()) {
Douglas Gregor568a0712009-10-14 17:30:58 +000076 Record = cast<CXXRecordDecl>(Record->getDeclContext());
Douglas Gregorb7bfe792009-09-02 22:59:36 +000077 if (Record->getDescribedClassTemplate())
78 return Record->getDescribedClassTemplate();
79
80 if (ClassTemplateSpecializationDecl *Spec
81 = dyn_cast<ClassTemplateSpecializationDecl>(Record))
82 return Spec->getSpecializedTemplate();
83 }
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 }
Mike Stump11289f42009-09-09 15:08:12 +000087
Craig Topperc3ec1492014-05-26 06:22:03 +000088 return nullptr;
Douglas Gregorb7bfe792009-09-02 22:59:36 +000089}
90
Simon Pilgrim6905d222016-12-30 22:55:33 +000091void Sema::FilterAcceptableTemplateNames(LookupResult &R,
Douglas Gregor50a3cdd2012-03-10 23:52:41 +000092 bool AllowFunctionTemplates) {
Douglas Gregor41f90302010-04-12 20:54:26 +000093 // The set of class templates we've already seen.
94 llvm::SmallPtrSet<ClassTemplateDecl *, 8> ClassTemplates;
John McCalle66edc12009-11-24 19:00:30 +000095 LookupResult::Filter filter = R.makeFilter();
96 while (filter.hasNext()) {
97 NamedDecl *Orig = filter.next();
Simon Pilgrim6905d222016-12-30 22:55:33 +000098 NamedDecl *Repl = isAcceptableTemplateName(Context, Orig,
Douglas Gregor50a3cdd2012-03-10 23:52:41 +000099 AllowFunctionTemplates);
John McCalle66edc12009-11-24 19:00:30 +0000100 if (!Repl)
101 filter.erase();
Douglas Gregor41f90302010-04-12 20:54:26 +0000102 else if (Repl != Orig) {
103
104 // C++ [temp.local]p3:
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000105 // A lookup that finds an injected-class-name (10.2) can result in an
Douglas Gregor41f90302010-04-12 20:54:26 +0000106 // ambiguity in certain cases (for example, if it is found in more than
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000107 // one base class). If all of the injected-class-names that are found
108 // refer to specializations of the same class template, and if the name
Richard Smith3f1b5d02011-05-05 21:57:07 +0000109 // is used as a template-name, the reference refers to the class
110 // template itself and not a specialization thereof, and is not
Douglas Gregor41f90302010-04-12 20:54:26 +0000111 // ambiguous.
Douglas Gregor41f90302010-04-12 20:54:26 +0000112 if (ClassTemplateDecl *ClassTmpl = dyn_cast<ClassTemplateDecl>(Repl))
David Blaikie82e95a32014-11-19 07:49:47 +0000113 if (!ClassTemplates.insert(ClassTmpl).second) {
Douglas Gregor41f90302010-04-12 20:54:26 +0000114 filter.erase();
115 continue;
116 }
John McCallbd8062d2010-08-13 07:02:08 +0000117
118 // FIXME: we promote access to public here as a workaround to
119 // the fact that LookupResult doesn't let us remember that we
120 // found this template through a particular injected class name,
121 // which means we end up doing nasty things to the invariants.
122 // Pretending that access is public is *much* safer.
123 filter.replace(Repl, AS_public);
Douglas Gregor41f90302010-04-12 20:54:26 +0000124 }
John McCalle66edc12009-11-24 19:00:30 +0000125 }
126 filter.done();
127}
128
Douglas Gregor50a3cdd2012-03-10 23:52:41 +0000129bool Sema::hasAnyAcceptableTemplateNames(LookupResult &R,
130 bool AllowFunctionTemplates) {
Douglas Gregor0e7dde52011-04-24 05:37:28 +0000131 for (LookupResult::iterator I = R.begin(), IEnd = R.end(); I != IEnd; ++I)
Douglas Gregor50a3cdd2012-03-10 23:52:41 +0000132 if (isAcceptableTemplateName(Context, *I, AllowFunctionTemplates))
Douglas Gregor0e7dde52011-04-24 05:37:28 +0000133 return true;
Simon Pilgrim6905d222016-12-30 22:55:33 +0000134
Douglas Gregor8b02cd02011-04-27 04:48:22 +0000135 return false;
Douglas Gregor0e7dde52011-04-24 05:37:28 +0000136}
137
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000138TemplateNameKind Sema::isTemplateName(Scope *S,
Jeffrey Yasskinc76498d2010-04-08 16:38:48 +0000139 CXXScopeSpec &SS,
Abramo Bagnara7c5dee42010-08-06 12:11:11 +0000140 bool hasTemplateKeyword,
Douglas Gregor3cf81312009-11-03 23:16:33 +0000141 UnqualifiedId &Name,
John McCallba7bf592010-08-24 05:47:05 +0000142 ParsedType ObjectTypePtr,
Douglas Gregore861bac2009-08-25 22:51:20 +0000143 bool EnteringContext,
Douglas Gregor786123d2010-05-21 23:18:07 +0000144 TemplateTy &TemplateResult,
145 bool &MemberOfUnknownSpecialization) {
David Blaikiebbafb8a2012-03-11 07:00:24 +0000146 assert(getLangOpts().CPlusPlus && "No template names in C!");
Douglas Gregor411e5ac2010-01-11 23:29:10 +0000147
Douglas Gregor3cf81312009-11-03 23:16:33 +0000148 DeclarationName TName;
Douglas Gregor786123d2010-05-21 23:18:07 +0000149 MemberOfUnknownSpecialization = false;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000150
Douglas Gregor3cf81312009-11-03 23:16:33 +0000151 switch (Name.getKind()) {
152 case UnqualifiedId::IK_Identifier:
153 TName = DeclarationName(Name.Identifier);
154 break;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000155
Douglas Gregor3cf81312009-11-03 23:16:33 +0000156 case UnqualifiedId::IK_OperatorFunctionId:
157 TName = Context.DeclarationNames.getCXXOperatorName(
158 Name.OperatorFunctionId.Operator);
159 break;
160
Alexis Hunted0530f2009-11-28 08:58:14 +0000161 case UnqualifiedId::IK_LiteralOperatorId:
Alexis Hunt3d221f22009-11-29 07:34:05 +0000162 TName = Context.DeclarationNames.getCXXLiteralOperatorName(Name.Identifier);
163 break;
Alexis Hunted0530f2009-11-28 08:58:14 +0000164
Douglas Gregor3cf81312009-11-03 23:16:33 +0000165 default:
166 return TNK_Non_template;
167 }
Mike Stump11289f42009-09-09 15:08:12 +0000168
John McCallba7bf592010-08-24 05:47:05 +0000169 QualType ObjectType = ObjectTypePtr.get();
Mike Stump11289f42009-09-09 15:08:12 +0000170
Daniel Dunbar62ee6412012-03-09 18:35:03 +0000171 LookupResult R(*this, TName, Name.getLocStart(), LookupOrdinaryName);
Douglas Gregor786123d2010-05-21 23:18:07 +0000172 LookupTemplateName(R, S, SS, ObjectType, EnteringContext,
173 MemberOfUnknownSpecialization);
John McCallfb3f9ba2010-08-28 20:17:00 +0000174 if (R.empty()) return TNK_Non_template;
175 if (R.isAmbiguous()) {
176 // Suppress diagnostics; we'll redo this lookup later.
John McCalldcc71402010-08-13 02:23:42 +0000177 R.suppressDiagnostics();
John McCallfb3f9ba2010-08-28 20:17:00 +0000178
179 // FIXME: we might have ambiguous templates, in which case we
180 // should at least parse them properly!
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000181 return TNK_Non_template;
John McCalldcc71402010-08-13 02:23:42 +0000182 }
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000183
John McCalld28ae272009-12-02 08:04:21 +0000184 TemplateName Template;
185 TemplateNameKind TemplateKind;
Mike Stump11289f42009-09-09 15:08:12 +0000186
John McCalld28ae272009-12-02 08:04:21 +0000187 unsigned ResultCount = R.end() - R.begin();
188 if (ResultCount > 1) {
189 // We assume that we'll preserve the qualifier from a function
190 // template name in other ways.
191 Template = Context.getOverloadedTemplateName(R.begin(), R.end());
192 TemplateKind = TNK_Function_template;
John McCalldcc71402010-08-13 02:23:42 +0000193
194 // We'll do this lookup again later.
195 R.suppressDiagnostics();
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000196 } else {
John McCalld28ae272009-12-02 08:04:21 +0000197 TemplateDecl *TD = cast<TemplateDecl>((*R.begin())->getUnderlyingDecl());
198
199 if (SS.isSet() && !SS.isInvalid()) {
Aaron Ballman4a979672014-01-03 13:56:08 +0000200 NestedNameSpecifier *Qualifier = SS.getScopeRep();
Abramo Bagnara7c5dee42010-08-06 12:11:11 +0000201 Template = Context.getQualifiedTemplateName(Qualifier,
202 hasTemplateKeyword, TD);
John McCalld28ae272009-12-02 08:04:21 +0000203 } else {
204 Template = TemplateName(TD);
205 }
206
John McCalldcc71402010-08-13 02:23:42 +0000207 if (isa<FunctionTemplateDecl>(TD)) {
John McCalld28ae272009-12-02 08:04:21 +0000208 TemplateKind = TNK_Function_template;
John McCalldcc71402010-08-13 02:23:42 +0000209
210 // We'll do this lookup again later.
211 R.suppressDiagnostics();
212 } else {
Richard Smith3f1b5d02011-05-05 21:57:07 +0000213 assert(isa<ClassTemplateDecl>(TD) || isa<TemplateTemplateParmDecl>(TD) ||
David Majnemerd9b1a4f2015-11-04 03:40:30 +0000214 isa<TypeAliasTemplateDecl>(TD) || isa<VarTemplateDecl>(TD) ||
215 isa<BuiltinTemplateDecl>(TD));
Larisse Voufo39a1e502013-08-06 01:03:05 +0000216 TemplateKind =
217 isa<VarTemplateDecl>(TD) ? TNK_Var_template : TNK_Type_template;
John McCalld28ae272009-12-02 08:04:21 +0000218 }
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000219 }
Mike Stump11289f42009-09-09 15:08:12 +0000220
John McCalld28ae272009-12-02 08:04:21 +0000221 TemplateResult = TemplateTy::make(Template);
222 return TemplateKind;
John McCalle66edc12009-11-24 19:00:30 +0000223}
224
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000225bool Sema::DiagnoseUnknownTemplateName(const IdentifierInfo &II,
Douglas Gregor18473f32010-01-12 21:28:44 +0000226 SourceLocation IILoc,
227 Scope *S,
228 const CXXScopeSpec *SS,
229 TemplateTy &SuggestedTemplate,
230 TemplateNameKind &SuggestedKind) {
231 // We can't recover unless there's a dependent scope specifier preceding the
232 // template name.
Douglas Gregor20c38a72010-05-21 23:43:39 +0000233 // FIXME: Typo correction?
Douglas Gregor18473f32010-01-12 21:28:44 +0000234 if (!SS || !SS->isSet() || !isDependentScopeSpecifier(*SS) ||
235 computeDeclContext(*SS))
236 return false;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000237
Douglas Gregor18473f32010-01-12 21:28:44 +0000238 // The code is missing a 'template' keyword prior to the dependent template
239 // name.
240 NestedNameSpecifier *Qualifier = (NestedNameSpecifier*)SS->getScopeRep();
241 Diag(IILoc, diag::err_template_kw_missing)
242 << Qualifier << II.getName()
Douglas Gregora771f462010-03-31 17:46:05 +0000243 << FixItHint::CreateInsertion(IILoc, "template ");
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000244 SuggestedTemplate
Douglas Gregor18473f32010-01-12 21:28:44 +0000245 = TemplateTy::make(Context.getDependentTemplateName(Qualifier, &II));
246 SuggestedKind = TNK_Dependent_template_name;
247 return true;
248}
249
John McCalle66edc12009-11-24 19:00:30 +0000250void Sema::LookupTemplateName(LookupResult &Found,
Jeffrey Yasskinc76498d2010-04-08 16:38:48 +0000251 Scope *S, CXXScopeSpec &SS,
John McCalle66edc12009-11-24 19:00:30 +0000252 QualType ObjectType,
Douglas Gregor786123d2010-05-21 23:18:07 +0000253 bool EnteringContext,
254 bool &MemberOfUnknownSpecialization) {
John McCalle66edc12009-11-24 19:00:30 +0000255 // Determine where to perform name lookup
Douglas Gregor786123d2010-05-21 23:18:07 +0000256 MemberOfUnknownSpecialization = false;
Craig Topperc3ec1492014-05-26 06:22:03 +0000257 DeclContext *LookupCtx = nullptr;
John McCalle66edc12009-11-24 19:00:30 +0000258 bool isDependent = false;
259 if (!ObjectType.isNull()) {
260 // This nested-name-specifier occurs in a member access expression, e.g.,
261 // x->B::f, and we are looking into the type of the object.
262 assert(!SS.isSet() && "ObjectType and scope specifier cannot coexist");
263 LookupCtx = computeDeclContext(ObjectType);
264 isDependent = ObjectType->isDependentType();
Richard Smith5ed79562013-06-07 20:03:01 +0000265 assert((isDependent || !ObjectType->isIncompleteType() ||
266 ObjectType->castAs<TagType>()->isBeingDefined()) &&
John McCalle66edc12009-11-24 19:00:30 +0000267 "Caller should have completed object type");
Simon Pilgrim6905d222016-12-30 22:55:33 +0000268
Douglas Gregorbf3a8262012-01-12 16:11:24 +0000269 // Template names cannot appear inside an Objective-C class or object type.
270 if (ObjectType->isObjCObjectOrInterfaceType()) {
271 Found.clear();
272 return;
273 }
John McCalle66edc12009-11-24 19:00:30 +0000274 } else if (SS.isSet()) {
275 // This nested-name-specifier occurs after another nested-name-specifier,
276 // so long into the context associated with the prior nested-name-specifier.
277 LookupCtx = computeDeclContext(SS, EnteringContext);
278 isDependent = isDependentScopeSpecifier(SS);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000279
John McCalle66edc12009-11-24 19:00:30 +0000280 // The declaration context must be complete.
John McCall0b66eb32010-05-01 00:40:08 +0000281 if (LookupCtx && RequireCompleteDeclContext(SS, LookupCtx))
John McCalle66edc12009-11-24 19:00:30 +0000282 return;
283 }
284
285 bool ObjectTypeSearchedInScope = false;
Douglas Gregor50a3cdd2012-03-10 23:52:41 +0000286 bool AllowFunctionTemplatesInLookup = true;
John McCalle66edc12009-11-24 19:00:30 +0000287 if (LookupCtx) {
288 // Perform "qualified" name lookup into the declaration context we
289 // computed, which is either the type of the base of a member access
290 // expression or the declaration context associated with a prior
291 // nested-name-specifier.
292 LookupQualifiedName(Found, LookupCtx);
John McCalle66edc12009-11-24 19:00:30 +0000293 if (!ObjectType.isNull() && Found.empty()) {
294 // C++ [basic.lookup.classref]p1:
295 // In a class member access expression (5.2.5), if the . or -> token is
296 // immediately followed by an identifier followed by a <, the
297 // identifier must be looked up to determine whether the < is the
298 // beginning of a template argument list (14.2) or a less-than operator.
299 // The identifier is first looked up in the class of the object
300 // expression. If the identifier is not found, it is then looked up in
301 // the context of the entire postfix-expression and shall name a class
302 // or function template.
John McCalle66edc12009-11-24 19:00:30 +0000303 if (S) LookupName(Found, S);
304 ObjectTypeSearchedInScope = true;
Douglas Gregor50a3cdd2012-03-10 23:52:41 +0000305 AllowFunctionTemplatesInLookup = false;
John McCalle66edc12009-11-24 19:00:30 +0000306 }
Douglas Gregorfc6c3e72010-07-16 16:54:17 +0000307 } else if (isDependent && (!S || ObjectType.isNull())) {
Douglas Gregorc119dd52010-01-12 17:06:20 +0000308 // We cannot look into a dependent object type or nested nme
309 // specifier.
Douglas Gregor786123d2010-05-21 23:18:07 +0000310 MemberOfUnknownSpecialization = true;
John McCalle66edc12009-11-24 19:00:30 +0000311 return;
312 } else {
313 // Perform unqualified name lookup in the current scope.
314 LookupName(Found, S);
Simon Pilgrim6905d222016-12-30 22:55:33 +0000315
Douglas Gregor50a3cdd2012-03-10 23:52:41 +0000316 if (!ObjectType.isNull())
317 AllowFunctionTemplatesInLookup = false;
John McCalle66edc12009-11-24 19:00:30 +0000318 }
319
Douglas Gregorc119dd52010-01-12 17:06:20 +0000320 if (Found.empty() && !isDependent) {
Douglas Gregorff18cc12009-12-31 08:11:17 +0000321 // If we did not find any names, attempt to correct any typos.
322 DeclarationName Name = Found.getLookupName();
Douglas Gregorc2fa1692011-06-28 16:20:02 +0000323 Found.clear();
Kaelyn Uhrain637b5b32012-01-13 23:10:36 +0000324 // Simple filter callback that, for keywords, only accepts the C++ *_cast
Kaelyn Takata89c881b2014-10-27 18:07:29 +0000325 auto FilterCCC = llvm::make_unique<CorrectionCandidateCallback>();
326 FilterCCC->WantTypeSpecifiers = false;
327 FilterCCC->WantExpressionKeywords = false;
328 FilterCCC->WantRemainingKeywords = false;
329 FilterCCC->WantCXXNamedCasts = true;
330 if (TypoCorrection Corrected = CorrectTypo(
331 Found.getLookupNameInfo(), Found.getLookupKind(), S, &SS,
332 std::move(FilterCCC), CTK_ErrorRecovery, LookupCtx)) {
Douglas Gregorc2fa1692011-06-28 16:20:02 +0000333 Found.setLookupName(Corrected.getCorrection());
Richard Smithde6d6c42015-12-29 19:43:10 +0000334 if (auto *ND = Corrected.getFoundDecl())
335 Found.addDecl(ND);
Douglas Gregor0e7dde52011-04-24 05:37:28 +0000336 FilterAcceptableTemplateNames(Found);
John McCalle9cccd82010-06-16 08:42:20 +0000337 if (!Found.empty()) {
Kaelyn Uhrain10413a42013-07-02 23:47:44 +0000338 if (LookupCtx) {
Richard Smithf9b15102013-08-17 00:46:16 +0000339 std::string CorrectedStr(Corrected.getAsString(getLangOpts()));
340 bool DroppedSpecifier = Corrected.WillReplaceSpecifier() &&
Kaelyn Uhrain10413a42013-07-02 23:47:44 +0000341 Name.getAsString() == CorrectedStr;
Richard Smithf9b15102013-08-17 00:46:16 +0000342 diagnoseTypo(Corrected, PDiag(diag::err_no_member_template_suggest)
343 << Name << LookupCtx << DroppedSpecifier
344 << SS.getRange());
Kaelyn Uhrain10413a42013-07-02 23:47:44 +0000345 } else {
Richard Smithf9b15102013-08-17 00:46:16 +0000346 diagnoseTypo(Corrected, PDiag(diag::err_no_template_suggest) << Name);
Kaelyn Uhrain10413a42013-07-02 23:47:44 +0000347 }
John McCalle9cccd82010-06-16 08:42:20 +0000348 }
Douglas Gregorff18cc12009-12-31 08:11:17 +0000349 } else {
Douglas Gregorc048c522010-06-29 19:27:42 +0000350 Found.setLookupName(Name);
Douglas Gregorff18cc12009-12-31 08:11:17 +0000351 }
352 }
353
Douglas Gregor50a3cdd2012-03-10 23:52:41 +0000354 FilterAcceptableTemplateNames(Found, AllowFunctionTemplatesInLookup);
Douglas Gregorfc6c3e72010-07-16 16:54:17 +0000355 if (Found.empty()) {
356 if (isDependent)
357 MemberOfUnknownSpecialization = true;
John McCalle66edc12009-11-24 19:00:30 +0000358 return;
Douglas Gregorfc6c3e72010-07-16 16:54:17 +0000359 }
John McCalle66edc12009-11-24 19:00:30 +0000360
Douglas Gregor1b02e4a2012-05-01 20:23:02 +0000361 if (S && !ObjectType.isNull() && !ObjectTypeSearchedInScope &&
Richard Smithe7d67f22013-09-03 21:22:41 +0000362 !getLangOpts().CPlusPlus11) {
Douglas Gregor1b02e4a2012-05-01 20:23:02 +0000363 // C++03 [basic.lookup.classref]p1:
John McCalle66edc12009-11-24 19:00:30 +0000364 // [...] If the lookup in the class of the object expression finds a
365 // template, the name is also looked up in the context of the entire
366 // postfix-expression and [...]
367 //
Douglas Gregor1b02e4a2012-05-01 20:23:02 +0000368 // Note: C++11 does not perform this second lookup.
John McCalle66edc12009-11-24 19:00:30 +0000369 LookupResult FoundOuter(*this, Found.getLookupName(), Found.getNameLoc(),
370 LookupOrdinaryName);
371 LookupName(FoundOuter, S);
Douglas Gregor50a3cdd2012-03-10 23:52:41 +0000372 FilterAcceptableTemplateNames(FoundOuter, /*AllowFunctionTemplates=*/false);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000373
John McCalle66edc12009-11-24 19:00:30 +0000374 if (FoundOuter.empty()) {
375 // - if the name is not found, the name found in the class of the
376 // object expression is used, otherwise
Douglas Gregorde0a43f2011-08-10 21:59:45 +0000377 } else if (!FoundOuter.getAsSingle<ClassTemplateDecl>() ||
378 FoundOuter.isAmbiguous()) {
John McCalle66edc12009-11-24 19:00:30 +0000379 // - if the name is found in the context of the entire
380 // postfix-expression and does not name a class template, the name
381 // found in the class of the object expression is used, otherwise
Douglas Gregorde0a43f2011-08-10 21:59:45 +0000382 FoundOuter.clear();
John McCalle9cccd82010-06-16 08:42:20 +0000383 } else if (!Found.isSuppressingDiagnostics()) {
John McCalle66edc12009-11-24 19:00:30 +0000384 // - if the name found is a class template, it must refer to the same
385 // entity as the one found in the class of the object expression,
386 // otherwise the program is ill-formed.
387 if (!Found.isSingleResult() ||
388 Found.getFoundDecl()->getCanonicalDecl()
389 != FoundOuter.getFoundDecl()->getCanonicalDecl()) {
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000390 Diag(Found.getNameLoc(),
Jeffrey Yasskin2f96e9f2010-06-05 01:39:57 +0000391 diag::ext_nested_name_member_ref_lookup_ambiguous)
392 << Found.getLookupName()
393 << ObjectType;
John McCalle66edc12009-11-24 19:00:30 +0000394 Diag(Found.getRepresentativeDecl()->getLocation(),
395 diag::note_ambig_member_ref_object_type)
396 << ObjectType;
397 Diag(FoundOuter.getFoundDecl()->getLocation(),
398 diag::note_ambig_member_ref_scope);
399
400 // Recover by taking the template that we found in the object
401 // expression's type.
402 }
403 }
404 }
405}
406
John McCallcd4b4772009-12-02 03:53:29 +0000407/// ActOnDependentIdExpression - Handle a dependent id-expression that
408/// was just parsed. This is only possible with an explicit scope
409/// specifier naming a dependent type.
John McCalldadc5752010-08-24 06:29:42 +0000410ExprResult
John McCalle66edc12009-11-24 19:00:30 +0000411Sema::ActOnDependentIdExpression(const CXXScopeSpec &SS,
Abramo Bagnara7945c982012-01-27 09:46:47 +0000412 SourceLocation TemplateKWLoc,
Abramo Bagnarad6d2f182010-08-11 22:01:17 +0000413 const DeclarationNameInfo &NameInfo,
John McCallcd4b4772009-12-02 03:53:29 +0000414 bool isAddressOfOperand,
John McCalle66edc12009-11-24 19:00:30 +0000415 const TemplateArgumentListInfo *TemplateArgs) {
John McCall87fe5d52010-05-20 01:18:31 +0000416 DeclContext *DC = getFunctionLevelDeclContext();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000417
Reid Kleckner1af391df2016-03-11 18:59:12 +0000418 // C++11 [expr.prim.general]p12:
419 // An id-expression that denotes a non-static data member or non-static
420 // member function of a class can only be used:
421 // (...)
422 // - if that id-expression denotes a non-static data member and it
423 // appears in an unevaluated operand.
424 //
425 // If this might be the case, form a DependentScopeDeclRefExpr instead of a
426 // CXXDependentScopeMemberExpr. The former can instantiate to either
427 // DeclRefExpr or MemberExpr depending on lookup results, while the latter is
428 // always a MemberExpr.
429 bool MightBeCxx11UnevalField =
430 getLangOpts().CPlusPlus11 && isUnevaluatedContext();
431
Akira Hatanakad644e022016-12-16 03:19:41 +0000432 // Check if the nested name specifier is an enum type.
433 bool IsEnum = false;
434 if (NestedNameSpecifier *NNS = SS.getScopeRep())
435 IsEnum = dyn_cast_or_null<EnumType>(NNS->getAsType());
436
437 if (!MightBeCxx11UnevalField && !isAddressOfOperand && !IsEnum &&
Reid Kleckner1af391df2016-03-11 18:59:12 +0000438 isa<CXXMethodDecl>(DC) && cast<CXXMethodDecl>(DC)->isInstance()) {
John McCall87fe5d52010-05-20 01:18:31 +0000439 QualType ThisType = cast<CXXMethodDecl>(DC)->getThisType(Context);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000440
John McCalle66edc12009-11-24 19:00:30 +0000441 // Since the 'this' expression is synthesized, we don't need to
442 // perform the double-lookup check.
Craig Topperc3ec1492014-05-26 06:22:03 +0000443 NamedDecl *FirstQualifierInScope = nullptr;
John McCalle66edc12009-11-24 19:00:30 +0000444
Nikola Smiljanic03ff2592014-05-29 14:05:12 +0000445 return CXXDependentScopeMemberExpr::Create(
446 Context, /*This*/ nullptr, ThisType, /*IsArrow*/ true,
447 /*Op*/ SourceLocation(), SS.getWithLocInContext(Context), TemplateKWLoc,
448 FirstQualifierInScope, NameInfo, TemplateArgs);
John McCalle66edc12009-11-24 19:00:30 +0000449 }
450
Abramo Bagnara7945c982012-01-27 09:46:47 +0000451 return BuildDependentDeclRefExpr(SS, TemplateKWLoc, NameInfo, TemplateArgs);
John McCalle66edc12009-11-24 19:00:30 +0000452}
453
John McCalldadc5752010-08-24 06:29:42 +0000454ExprResult
John McCalle66edc12009-11-24 19:00:30 +0000455Sema::BuildDependentDeclRefExpr(const CXXScopeSpec &SS,
Abramo Bagnara7945c982012-01-27 09:46:47 +0000456 SourceLocation TemplateKWLoc,
Abramo Bagnarad6d2f182010-08-11 22:01:17 +0000457 const DeclarationNameInfo &NameInfo,
John McCalle66edc12009-11-24 19:00:30 +0000458 const TemplateArgumentListInfo *TemplateArgs) {
Nikola Smiljanic03ff2592014-05-29 14:05:12 +0000459 return DependentScopeDeclRefExpr::Create(
460 Context, SS.getWithLocInContext(Context), TemplateKWLoc, NameInfo,
461 TemplateArgs);
Douglas Gregor55ad91f2008-12-18 19:37:40 +0000462}
463
Vassil Vassilevb21ee082016-08-18 22:01:25 +0000464
465/// Determine whether we would be unable to instantiate this template (because
466/// it either has no definition, or is in the process of being instantiated).
467bool Sema::DiagnoseUninstantiableTemplate(SourceLocation PointOfInstantiation,
468 NamedDecl *Instantiation,
469 bool InstantiatedFromMember,
470 const NamedDecl *Pattern,
471 const NamedDecl *PatternDef,
472 TemplateSpecializationKind TSK,
473 bool Complain /*= true*/) {
Richard Smithedbc6e92016-10-14 21:41:24 +0000474 assert(isa<TagDecl>(Instantiation) || isa<FunctionDecl>(Instantiation) ||
475 isa<VarDecl>(Instantiation));
Vassil Vassilevb21ee082016-08-18 22:01:25 +0000476
Richard Smithedbc6e92016-10-14 21:41:24 +0000477 bool IsEntityBeingDefined = false;
478 if (const TagDecl *TD = dyn_cast_or_null<TagDecl>(PatternDef))
479 IsEntityBeingDefined = TD->isBeingDefined();
480
481 if (PatternDef && !IsEntityBeingDefined) {
Vassil Vassilevb21ee082016-08-18 22:01:25 +0000482 NamedDecl *SuggestedDef = nullptr;
483 if (!hasVisibleDefinition(const_cast<NamedDecl*>(PatternDef), &SuggestedDef,
484 /*OnlyNeedComplete*/false)) {
485 // If we're allowed to diagnose this and recover, do so.
486 bool Recover = Complain && !isSFINAEContext();
487 if (Complain)
488 diagnoseMissingImport(PointOfInstantiation, SuggestedDef,
489 Sema::MissingImportKind::Definition, Recover);
490 return !Recover;
491 }
492 return false;
493 }
494
Richard Smith6f4e2e02016-08-23 19:41:39 +0000495 if (!Complain || (PatternDef && PatternDef->isInvalidDecl()))
496 return true;
Vassil Vassilevb21ee082016-08-18 22:01:25 +0000497
Richard Smithedbc6e92016-10-14 21:41:24 +0000498 llvm::Optional<unsigned> Note;
Vassil Vassilevb21ee082016-08-18 22:01:25 +0000499 QualType InstantiationTy;
500 if (TagDecl *TD = dyn_cast<TagDecl>(Instantiation))
501 InstantiationTy = Context.getTypeDeclType(TD);
Richard Smith6f4e2e02016-08-23 19:41:39 +0000502 if (PatternDef) {
Vassil Vassilevb21ee082016-08-18 22:01:25 +0000503 Diag(PointOfInstantiation,
504 diag::err_template_instantiate_within_definition)
Richard Smithedbc6e92016-10-14 21:41:24 +0000505 << /*implicit|explicit*/(TSK != TSK_ImplicitInstantiation)
Vassil Vassilevb21ee082016-08-18 22:01:25 +0000506 << InstantiationTy;
507 // Not much point in noting the template declaration here, since
508 // we're lexically inside it.
509 Instantiation->setInvalidDecl();
510 } else if (InstantiatedFromMember) {
Richard Smith6f4e2e02016-08-23 19:41:39 +0000511 if (isa<FunctionDecl>(Instantiation)) {
512 Diag(PointOfInstantiation,
513 diag::err_explicit_instantiation_undefined_member)
Richard Smithedbc6e92016-10-14 21:41:24 +0000514 << /*member function*/ 1 << Instantiation->getDeclName()
515 << Instantiation->getDeclContext();
516 Note = diag::note_explicit_instantiation_here;
Richard Smith6f4e2e02016-08-23 19:41:39 +0000517 } else {
Richard Smithedbc6e92016-10-14 21:41:24 +0000518 assert(isa<TagDecl>(Instantiation) && "Must be a TagDecl!");
Richard Smith6f4e2e02016-08-23 19:41:39 +0000519 Diag(PointOfInstantiation,
520 diag::err_implicit_instantiate_member_undefined)
521 << InstantiationTy;
Richard Smithedbc6e92016-10-14 21:41:24 +0000522 Note = diag::note_member_declared_at;
Richard Smith6f4e2e02016-08-23 19:41:39 +0000523 }
Vassil Vassilevb21ee082016-08-18 22:01:25 +0000524 } else {
Richard Smithedbc6e92016-10-14 21:41:24 +0000525 if (isa<FunctionDecl>(Instantiation)) {
Richard Smith6f4e2e02016-08-23 19:41:39 +0000526 Diag(PointOfInstantiation,
527 diag::err_explicit_instantiation_undefined_func_template)
528 << Pattern;
Richard Smithedbc6e92016-10-14 21:41:24 +0000529 Note = diag::note_explicit_instantiation_here;
530 } else if (isa<TagDecl>(Instantiation)) {
Richard Smith6f4e2e02016-08-23 19:41:39 +0000531 Diag(PointOfInstantiation, diag::err_template_instantiate_undefined)
532 << (TSK != TSK_ImplicitInstantiation)
533 << InstantiationTy;
Richard Smithedbc6e92016-10-14 21:41:24 +0000534 Note = diag::note_template_decl_here;
535 } else {
536 assert(isa<VarDecl>(Instantiation) && "Must be a VarDecl!");
537 if (isa<VarTemplateSpecializationDecl>(Instantiation)) {
538 Diag(PointOfInstantiation,
539 diag::err_explicit_instantiation_undefined_var_template)
540 << Instantiation;
541 Instantiation->setInvalidDecl();
542 } else
543 Diag(PointOfInstantiation,
544 diag::err_explicit_instantiation_undefined_member)
545 << /*static data member*/ 2 << Instantiation->getDeclName()
546 << Instantiation->getDeclContext();
547 Note = diag::note_explicit_instantiation_here;
548 }
Vassil Vassilevb21ee082016-08-18 22:01:25 +0000549 }
Richard Smithedbc6e92016-10-14 21:41:24 +0000550 if (Note) // Diagnostics were emitted.
551 Diag(Pattern->getLocation(), Note.getValue());
Vassil Vassilevb21ee082016-08-18 22:01:25 +0000552
553 // In general, Instantiation isn't marked invalid to get more than one
554 // error for multiple undefined instantiations. But the code that does
555 // explicit declaration -> explicit definition conversion can't handle
556 // invalid declarations, so mark as invalid in that case.
557 if (TSK == TSK_ExplicitInstantiationDeclaration)
558 Instantiation->setInvalidDecl();
559 return true;
560}
561
Douglas Gregor5101c242008-12-05 18:15:24 +0000562/// DiagnoseTemplateParameterShadow - Produce a diagnostic complaining
563/// that the template parameter 'PrevDecl' is being shadowed by a new
564/// declaration at location Loc. Returns true to indicate that this is
565/// an error, and false otherwise.
Douglas Gregorf4ef4d22011-10-20 17:58:49 +0000566void Sema::DiagnoseTemplateParameterShadow(SourceLocation Loc, Decl *PrevDecl) {
Douglas Gregor5daeee22008-12-08 18:40:42 +0000567 assert(PrevDecl->isTemplateParameter() && "Not a template parameter");
Douglas Gregor5101c242008-12-05 18:15:24 +0000568
569 // Microsoft Visual C++ permits template parameters to be shadowed.
David Blaikiebbafb8a2012-03-11 07:00:24 +0000570 if (getLangOpts().MicrosoftExt)
Douglas Gregorf4ef4d22011-10-20 17:58:49 +0000571 return;
Douglas Gregor5101c242008-12-05 18:15:24 +0000572
573 // C++ [temp.local]p4:
574 // A template-parameter shall not be redeclared within its
575 // scope (including nested scopes).
Mike Stump11289f42009-09-09 15:08:12 +0000576 Diag(Loc, diag::err_template_param_shadow)
Douglas Gregor5101c242008-12-05 18:15:24 +0000577 << cast<NamedDecl>(PrevDecl)->getDeclName();
578 Diag(PrevDecl->getLocation(), diag::note_template_param_here);
Douglas Gregor5101c242008-12-05 18:15:24 +0000579}
580
Douglas Gregor463421d2009-03-03 04:44:36 +0000581/// AdjustDeclIfTemplate - If the given decl happens to be a template, reset
Douglas Gregorded2d7b2009-02-04 19:02:06 +0000582/// the parameter D to reference the templated declaration and return a pointer
583/// to the template declaration. Otherwise, do nothing to D and return null.
John McCall48871652010-08-21 09:40:31 +0000584TemplateDecl *Sema::AdjustDeclIfTemplate(Decl *&D) {
585 if (TemplateDecl *Temp = dyn_cast_or_null<TemplateDecl>(D)) {
586 D = Temp->getTemplatedDecl();
Douglas Gregorded2d7b2009-02-04 19:02:06 +0000587 return Temp;
588 }
Craig Topperc3ec1492014-05-26 06:22:03 +0000589 return nullptr;
Douglas Gregorded2d7b2009-02-04 19:02:06 +0000590}
591
Douglas Gregoreb29d182011-01-05 17:40:24 +0000592ParsedTemplateArgument ParsedTemplateArgument::getTemplatePackExpansion(
593 SourceLocation EllipsisLoc) const {
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000594 assert(Kind == Template &&
Douglas Gregoreb29d182011-01-05 17:40:24 +0000595 "Only template template arguments can be pack expansions here");
596 assert(getAsTemplate().get().containsUnexpandedParameterPack() &&
597 "Template template argument pack expansion without packs");
598 ParsedTemplateArgument Result(*this);
599 Result.EllipsisLoc = EllipsisLoc;
600 return Result;
601}
602
Douglas Gregor9167f8b2009-11-11 01:00:40 +0000603static TemplateArgumentLoc translateTemplateArgument(Sema &SemaRef,
604 const ParsedTemplateArgument &Arg) {
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000605
Douglas Gregor9167f8b2009-11-11 01:00:40 +0000606 switch (Arg.getKind()) {
607 case ParsedTemplateArgument::Type: {
John McCallbcd03502009-12-07 02:54:59 +0000608 TypeSourceInfo *DI;
Douglas Gregor9167f8b2009-11-11 01:00:40 +0000609 QualType T = SemaRef.GetTypeFromParser(Arg.getAsType(), &DI);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000610 if (!DI)
John McCallbcd03502009-12-07 02:54:59 +0000611 DI = SemaRef.Context.getTrivialTypeSourceInfo(T, Arg.getLocation());
Douglas Gregor9167f8b2009-11-11 01:00:40 +0000612 return TemplateArgumentLoc(TemplateArgument(T), DI);
613 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000614
Douglas Gregor9167f8b2009-11-11 01:00:40 +0000615 case ParsedTemplateArgument::NonType: {
616 Expr *E = static_cast<Expr *>(Arg.getAsExpr());
617 return TemplateArgumentLoc(TemplateArgument(E), E);
618 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000619
Douglas Gregor9167f8b2009-11-11 01:00:40 +0000620 case ParsedTemplateArgument::Template: {
John McCall3e56fd42010-08-23 07:28:44 +0000621 TemplateName Template = Arg.getAsTemplate().get();
Douglas Gregore1d60df2011-01-14 23:41:42 +0000622 TemplateArgument TArg;
623 if (Arg.getEllipsisLoc().isValid())
David Blaikie05785d12013-02-20 22:23:23 +0000624 TArg = TemplateArgument(Template, Optional<unsigned int>());
Douglas Gregore1d60df2011-01-14 23:41:42 +0000625 else
626 TArg = Template;
627 return TemplateArgumentLoc(TArg,
Douglas Gregor9d802122011-03-02 17:09:35 +0000628 Arg.getScopeSpec().getWithLocInContext(
629 SemaRef.Context),
Douglas Gregoreb29d182011-01-05 17:40:24 +0000630 Arg.getLocation(),
631 Arg.getEllipsisLoc());
Douglas Gregor9167f8b2009-11-11 01:00:40 +0000632 }
633 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000634
Jeffrey Yasskin1615d452009-12-12 05:05:38 +0000635 llvm_unreachable("Unhandled parsed template argument");
Douglas Gregor9167f8b2009-11-11 01:00:40 +0000636}
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000637
Douglas Gregor9167f8b2009-11-11 01:00:40 +0000638/// \brief Translates template arguments as provided by the parser
639/// into template arguments used by semantic analysis.
John McCall6b51f282009-11-23 01:53:49 +0000640void Sema::translateTemplateArguments(const ASTTemplateArgsPtr &TemplateArgsIn,
641 TemplateArgumentListInfo &TemplateArgs) {
Douglas Gregor9167f8b2009-11-11 01:00:40 +0000642 for (unsigned I = 0, Last = TemplateArgsIn.size(); I != Last; ++I)
John McCall6b51f282009-11-23 01:53:49 +0000643 TemplateArgs.addArgument(translateTemplateArgument(*this,
644 TemplateArgsIn[I]));
Douglas Gregor9167f8b2009-11-11 01:00:40 +0000645}
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000646
Richard Smithb80d5402013-06-25 22:21:36 +0000647static void maybeDiagnoseTemplateParameterShadow(Sema &SemaRef, Scope *S,
648 SourceLocation Loc,
649 IdentifierInfo *Name) {
650 NamedDecl *PrevDecl = SemaRef.LookupSingleName(
651 S, Name, Loc, Sema::LookupOrdinaryName, Sema::ForRedeclaration);
652 if (PrevDecl && PrevDecl->isTemplateParameter())
653 SemaRef.DiagnoseTemplateParameterShadow(Loc, PrevDecl);
654}
655
Douglas Gregor5101c242008-12-05 18:15:24 +0000656/// ActOnTypeParameter - Called when a C++ template type parameter
657/// (e.g., "typename T") has been parsed. Typename specifies whether
658/// the keyword "typename" was used to declare the type parameter
659/// (otherwise, "class" was used), and KeyLoc is the location of the
660/// "class" or "typename" keyword. ParamName is the name of the
661/// parameter (NULL indicates an unnamed template parameter) and
Chandler Carruth08836322011-05-01 00:51:33 +0000662/// ParamNameLoc is the location of the parameter name (if any).
Douglas Gregor5101c242008-12-05 18:15:24 +0000663/// If the type parameter has a default argument, it will be added
664/// later via ActOnTypeParameterDefault.
Nikola Smiljanic69fdc9f2014-06-06 02:58:59 +0000665Decl *Sema::ActOnTypeParameter(Scope *S, bool Typename,
John McCall48871652010-08-21 09:40:31 +0000666 SourceLocation EllipsisLoc,
667 SourceLocation KeyLoc,
668 IdentifierInfo *ParamName,
669 SourceLocation ParamNameLoc,
670 unsigned Depth, unsigned Position,
671 SourceLocation EqualLoc,
John McCallba7bf592010-08-24 05:47:05 +0000672 ParsedType DefaultArg) {
Mike Stump11289f42009-09-09 15:08:12 +0000673 assert(S->isTemplateParamScope() &&
674 "Template type parameter not in template parameter scope!");
Douglas Gregor5101c242008-12-05 18:15:24 +0000675
Douglas Gregorcd72ba92009-02-06 22:42:48 +0000676 SourceLocation Loc = ParamNameLoc;
677 if (!ParamName)
678 Loc = KeyLoc;
679
Nikola Smiljanic69fdc9f2014-06-06 02:58:59 +0000680 bool IsParameterPack = EllipsisLoc.isValid();
Douglas Gregor5101c242008-12-05 18:15:24 +0000681 TemplateTypeParmDecl *Param
John McCallf7b2fb52010-01-22 00:28:27 +0000682 = TemplateTypeParmDecl::Create(Context, Context.getTranslationUnitDecl(),
Abramo Bagnarab3185b02011-03-06 15:48:19 +0000683 KeyLoc, Loc, Depth, Position, ParamName,
Nikola Smiljanic69fdc9f2014-06-06 02:58:59 +0000684 Typename, IsParameterPack);
Douglas Gregorfd7c2252011-03-04 17:52:15 +0000685 Param->setAccess(AS_public);
Douglas Gregor5101c242008-12-05 18:15:24 +0000686
687 if (ParamName) {
Richard Smithb80d5402013-06-25 22:21:36 +0000688 maybeDiagnoseTemplateParameterShadow(*this, S, ParamNameLoc, ParamName);
689
Douglas Gregor5101c242008-12-05 18:15:24 +0000690 // Add the template parameter into the current scope.
John McCall48871652010-08-21 09:40:31 +0000691 S->AddDecl(Param);
Douglas Gregor5101c242008-12-05 18:15:24 +0000692 IdResolver.AddDecl(Param);
693 }
694
Douglas Gregorf5500772011-01-05 15:48:55 +0000695 // C++0x [temp.param]p9:
696 // A default template-argument may be specified for any kind of
697 // template-parameter that is not a template parameter pack.
Nikola Smiljanic69fdc9f2014-06-06 02:58:59 +0000698 if (DefaultArg && IsParameterPack) {
Douglas Gregorf5500772011-01-05 15:48:55 +0000699 Diag(EqualLoc, diag::err_template_param_pack_default_arg);
David Blaikieefdccaa2016-01-15 23:43:34 +0000700 DefaultArg = nullptr;
Douglas Gregorf5500772011-01-05 15:48:55 +0000701 }
702
Douglas Gregordc13ded2010-07-01 00:00:45 +0000703 // Handle the default argument, if provided.
704 if (DefaultArg) {
705 TypeSourceInfo *DefaultTInfo;
706 GetTypeFromParser(DefaultArg, &DefaultTInfo);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000707
Douglas Gregordc13ded2010-07-01 00:00:45 +0000708 assert(DefaultTInfo && "expected source information for type");
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000709
Douglas Gregor6ff1fbf2010-12-16 08:48:57 +0000710 // Check for unexpanded parameter packs.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000711 if (DiagnoseUnexpandedParameterPack(Loc, DefaultTInfo,
Douglas Gregor6ff1fbf2010-12-16 08:48:57 +0000712 UPPC_DefaultArgument))
713 return Param;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000714
Douglas Gregordc13ded2010-07-01 00:00:45 +0000715 // Check the template argument itself.
716 if (CheckTemplateArgument(Param, DefaultTInfo)) {
717 Param->setInvalidDecl();
John McCall48871652010-08-21 09:40:31 +0000718 return Param;
Douglas Gregordc13ded2010-07-01 00:00:45 +0000719 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000720
Richard Smith1469b912015-06-10 00:29:03 +0000721 Param->setDefaultArgument(DefaultTInfo);
Douglas Gregordc13ded2010-07-01 00:00:45 +0000722 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000723
John McCall48871652010-08-21 09:40:31 +0000724 return Param;
Douglas Gregor5101c242008-12-05 18:15:24 +0000725}
726
Douglas Gregor463421d2009-03-03 04:44:36 +0000727/// \brief Check that the type of a non-type template parameter is
728/// well-formed.
729///
730/// \returns the (possibly-promoted) parameter type if valid;
731/// otherwise, produces a diagnostic and returns a NULL type.
Richard Smith15361a22016-12-28 06:27:18 +0000732QualType Sema::CheckNonTypeTemplateParameterType(TypeSourceInfo *&TSI,
733 SourceLocation Loc) {
734 if (TSI->getType()->isUndeducedType()) {
735 // C++1z [temp.dep.expr]p3:
736 // An id-expression is type-dependent if it contains
737 // - an identifier associated by name lookup with a non-type
738 // template-parameter declared with a type that contains a
739 // placeholder type (7.1.7.4),
740 TSI = SubstAutoTypeSourceInfo(TSI, Context.DependentTy);
741 }
742
743 return CheckNonTypeTemplateParameterType(TSI->getType(), Loc);
744}
745
746QualType Sema::CheckNonTypeTemplateParameterType(QualType T,
747 SourceLocation Loc) {
Douglas Gregora09387d2010-05-23 19:57:01 +0000748 // We don't allow variably-modified types as the type of non-type template
749 // parameters.
750 if (T->isVariablyModifiedType()) {
751 Diag(Loc, diag::err_variably_modified_nontype_template_param)
752 << T;
753 return QualType();
754 }
755
Douglas Gregor463421d2009-03-03 04:44:36 +0000756 // C++ [temp.param]p4:
757 //
758 // A non-type template-parameter shall have one of the following
759 // (optionally cv-qualified) types:
760 //
761 // -- integral or enumeration type,
Douglas Gregorb90df602010-06-16 00:17:44 +0000762 if (T->isIntegralOrEnumerationType() ||
Mike Stump11289f42009-09-09 15:08:12 +0000763 // -- pointer to object or pointer to function,
Eli Friedmana170cd62010-08-05 02:49:48 +0000764 T->isPointerType() ||
Mike Stump11289f42009-09-09 15:08:12 +0000765 // -- reference to object or reference to function,
Douglas Gregor463421d2009-03-03 04:44:36 +0000766 T->isReferenceType() ||
Douglas Gregor80af3132011-05-21 23:15:46 +0000767 // -- pointer to member,
Douglas Gregor463421d2009-03-03 04:44:36 +0000768 T->isMemberPointerType() ||
Douglas Gregor80af3132011-05-21 23:15:46 +0000769 // -- std::nullptr_t.
770 T->isNullPtrType() ||
Douglas Gregor463421d2009-03-03 04:44:36 +0000771 // If T is a dependent type, we can't do the check now, so we
772 // assume that it is well-formed.
Richard Smith5f274382016-09-28 23:55:27 +0000773 T->isDependentType() ||
774 // Allow use of auto in template parameter declarations.
775 T->isUndeducedType()) {
Richard Smithd0e1c952012-03-13 07:21:50 +0000776 // C++ [temp.param]p5: The top-level cv-qualifiers on the template-parameter
777 // are ignored when determining its type.
778 return T.getUnqualifiedType();
779 }
780
Douglas Gregor463421d2009-03-03 04:44:36 +0000781 // C++ [temp.param]p8:
782 //
783 // A non-type template-parameter of type "array of T" or
784 // "function returning T" is adjusted to be of type "pointer to
785 // T" or "pointer to function returning T", respectively.
Richard Smithd663fdd2014-12-17 20:42:37 +0000786 else if (T->isArrayType() || T->isFunctionType())
787 return Context.getDecayedType(T);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000788
Douglas Gregor463421d2009-03-03 04:44:36 +0000789 Diag(Loc, diag::err_template_nontype_parm_bad_type)
790 << T;
791
792 return QualType();
793}
794
John McCall48871652010-08-21 09:40:31 +0000795Decl *Sema::ActOnNonTypeTemplateParameter(Scope *S, Declarator &D,
796 unsigned Depth,
797 unsigned Position,
798 SourceLocation EqualLoc,
John McCallb268a282010-08-23 23:25:46 +0000799 Expr *Default) {
John McCall8cb7bdf2010-06-04 23:28:52 +0000800 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
Richard Smith15361a22016-12-28 06:27:18 +0000801
802 if (TInfo->getType()->isUndeducedType()) {
803 Diag(D.getIdentifierLoc(),
804 diag::warn_cxx14_compat_template_nontype_parm_auto_type)
805 << QualType(TInfo->getType()->getContainedAutoType(), 0);
806 }
Douglas Gregor5101c242008-12-05 18:15:24 +0000807
Douglas Gregorded2d7b2009-02-04 19:02:06 +0000808 assert(S->isTemplateParamScope() &&
809 "Non-type template parameter not in template parameter scope!");
Douglas Gregor5101c242008-12-05 18:15:24 +0000810 bool Invalid = false;
811
Richard Smith15361a22016-12-28 06:27:18 +0000812 QualType T = CheckNonTypeTemplateParameterType(TInfo, D.getIdentifierLoc());
Douglas Gregor38ee75e2010-12-16 15:36:43 +0000813 if (T.isNull()) {
Douglas Gregor463421d2009-03-03 04:44:36 +0000814 T = Context.IntTy; // Recover with an 'int' type.
Douglas Gregorce0fc86f2009-03-09 16:46:39 +0000815 Invalid = true;
816 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000817
Richard Smithb80d5402013-06-25 22:21:36 +0000818 IdentifierInfo *ParamName = D.getIdentifier();
Douglas Gregorda3cc0d2010-12-23 23:51:58 +0000819 bool IsParameterPack = D.hasEllipsis();
Douglas Gregor5101c242008-12-05 18:15:24 +0000820 NonTypeTemplateParmDecl *Param
John McCallf7b2fb52010-01-22 00:28:27 +0000821 = NonTypeTemplateParmDecl::Create(Context, Context.getTranslationUnitDecl(),
Daniel Dunbar62ee6412012-03-09 18:35:03 +0000822 D.getLocStart(),
John McCallf7b2fb52010-01-22 00:28:27 +0000823 D.getIdentifierLoc(),
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000824 Depth, Position, ParamName, T,
Douglas Gregorda3cc0d2010-12-23 23:51:58 +0000825 IsParameterPack, TInfo);
Douglas Gregorfd7c2252011-03-04 17:52:15 +0000826 Param->setAccess(AS_public);
Richard Smithb80d5402013-06-25 22:21:36 +0000827
Douglas Gregor5101c242008-12-05 18:15:24 +0000828 if (Invalid)
829 Param->setInvalidDecl();
830
Richard Smithb80d5402013-06-25 22:21:36 +0000831 if (ParamName) {
832 maybeDiagnoseTemplateParameterShadow(*this, S, D.getIdentifierLoc(),
833 ParamName);
834
Douglas Gregor5101c242008-12-05 18:15:24 +0000835 // Add the template parameter into the current scope.
John McCall48871652010-08-21 09:40:31 +0000836 S->AddDecl(Param);
Douglas Gregor5101c242008-12-05 18:15:24 +0000837 IdResolver.AddDecl(Param);
838 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000839
Douglas Gregorf5500772011-01-05 15:48:55 +0000840 // C++0x [temp.param]p9:
841 // A default template-argument may be specified for any kind of
842 // template-parameter that is not a template parameter pack.
843 if (Default && IsParameterPack) {
844 Diag(EqualLoc, diag::err_template_param_pack_default_arg);
Craig Topperc3ec1492014-05-26 06:22:03 +0000845 Default = nullptr;
Douglas Gregorf5500772011-01-05 15:48:55 +0000846 }
847
Douglas Gregordc13ded2010-07-01 00:00:45 +0000848 // Check the well-formedness of the default template argument, if provided.
Douglas Gregorda3cc0d2010-12-23 23:51:58 +0000849 if (Default) {
Douglas Gregor6ff1fbf2010-12-16 08:48:57 +0000850 // Check for unexpanded parameter packs.
851 if (DiagnoseUnexpandedParameterPack(Default, UPPC_DefaultArgument))
852 return Param;
853
Douglas Gregordc13ded2010-07-01 00:00:45 +0000854 TemplateArgument Converted;
Richard Smithd663fdd2014-12-17 20:42:37 +0000855 ExprResult DefaultRes =
856 CheckTemplateArgument(Param, Param->getType(), Default, Converted);
John Wiegley01296292011-04-08 18:41:53 +0000857 if (DefaultRes.isInvalid()) {
Douglas Gregordc13ded2010-07-01 00:00:45 +0000858 Param->setInvalidDecl();
John McCall48871652010-08-21 09:40:31 +0000859 return Param;
Douglas Gregordc13ded2010-07-01 00:00:45 +0000860 }
Nikola Smiljanic01a75982014-05-29 10:55:11 +0000861 Default = DefaultRes.get();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000862
Richard Smith1469b912015-06-10 00:29:03 +0000863 Param->setDefaultArgument(Default);
Douglas Gregordc13ded2010-07-01 00:00:45 +0000864 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000865
John McCall48871652010-08-21 09:40:31 +0000866 return Param;
Douglas Gregor5101c242008-12-05 18:15:24 +0000867}
Douglas Gregorb9bd8a92008-12-24 02:52:09 +0000868
Douglas Gregorded2d7b2009-02-04 19:02:06 +0000869/// ActOnTemplateTemplateParameter - Called when a C++ template template
James Dennett2a4d13c2012-06-15 07:13:21 +0000870/// parameter (e.g. T in template <template \<typename> class T> class array)
Douglas Gregorded2d7b2009-02-04 19:02:06 +0000871/// has been parsed. S is the current scope.
John McCall48871652010-08-21 09:40:31 +0000872Decl *Sema::ActOnTemplateTemplateParameter(Scope* S,
873 SourceLocation TmpLoc,
Richard Trieu9becef62011-09-09 03:18:59 +0000874 TemplateParameterList *Params,
Douglas Gregorf5500772011-01-05 15:48:55 +0000875 SourceLocation EllipsisLoc,
John McCall48871652010-08-21 09:40:31 +0000876 IdentifierInfo *Name,
877 SourceLocation NameLoc,
878 unsigned Depth,
879 unsigned Position,
880 SourceLocation EqualLoc,
Douglas Gregorf5500772011-01-05 15:48:55 +0000881 ParsedTemplateArgument Default) {
Douglas Gregorded2d7b2009-02-04 19:02:06 +0000882 assert(S->isTemplateParamScope() &&
883 "Template template parameter not in template parameter scope!");
884
885 // Construct the parameter object.
Douglas Gregorf5500772011-01-05 15:48:55 +0000886 bool IsParameterPack = EllipsisLoc.isValid();
Douglas Gregorded2d7b2009-02-04 19:02:06 +0000887 TemplateTemplateParmDecl *Param =
John McCallf7b2fb52010-01-22 00:28:27 +0000888 TemplateTemplateParmDecl::Create(Context, Context.getTranslationUnitDecl(),
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000889 NameLoc.isInvalid()? TmpLoc : NameLoc,
890 Depth, Position, IsParameterPack,
Douglas Gregorf5500772011-01-05 15:48:55 +0000891 Name, Params);
Douglas Gregorfd7c2252011-03-04 17:52:15 +0000892 Param->setAccess(AS_public);
Simon Pilgrim6905d222016-12-30 22:55:33 +0000893
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000894 // If the template template parameter has a name, then link the identifier
Douglas Gregordc13ded2010-07-01 00:00:45 +0000895 // into the scope and lookup mechanisms.
Douglas Gregorded2d7b2009-02-04 19:02:06 +0000896 if (Name) {
Richard Smithb80d5402013-06-25 22:21:36 +0000897 maybeDiagnoseTemplateParameterShadow(*this, S, NameLoc, Name);
898
John McCall48871652010-08-21 09:40:31 +0000899 S->AddDecl(Param);
Douglas Gregorded2d7b2009-02-04 19:02:06 +0000900 IdResolver.AddDecl(Param);
901 }
902
Douglas Gregor6ff1fbf2010-12-16 08:48:57 +0000903 if (Params->size() == 0) {
904 Diag(Param->getLocation(), diag::err_template_template_parm_no_parms)
905 << SourceRange(Params->getLAngleLoc(), Params->getRAngleLoc());
906 Param->setInvalidDecl();
907 }
908
Douglas Gregorf5500772011-01-05 15:48:55 +0000909 // C++0x [temp.param]p9:
910 // A default template-argument may be specified for any kind of
911 // template-parameter that is not a template parameter pack.
912 if (IsParameterPack && !Default.isInvalid()) {
913 Diag(EqualLoc, diag::err_template_param_pack_default_arg);
914 Default = ParsedTemplateArgument();
915 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000916
Douglas Gregordc13ded2010-07-01 00:00:45 +0000917 if (!Default.isInvalid()) {
918 // Check only that we have a template template argument. We don't want to
919 // try to check well-formedness now, because our template template parameter
920 // might have dependent types in its template parameters, which we wouldn't
921 // be able to match now.
922 //
923 // If none of the template template parameter's template arguments mention
924 // other template parameters, we could actually perform more checking here.
925 // However, it isn't worth doing.
926 TemplateArgumentLoc DefaultArg = translateTemplateArgument(*this, Default);
927 if (DefaultArg.getArgument().getAsTemplate().isNull()) {
Faisal Valib8b04f82016-03-26 20:46:45 +0000928 Diag(DefaultArg.getLocation(), diag::err_template_arg_not_valid_template)
Douglas Gregordc13ded2010-07-01 00:00:45 +0000929 << DefaultArg.getSourceRange();
John McCall48871652010-08-21 09:40:31 +0000930 return Param;
Douglas Gregordc13ded2010-07-01 00:00:45 +0000931 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000932
Douglas Gregor6ff1fbf2010-12-16 08:48:57 +0000933 // Check for unexpanded parameter packs.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000934 if (DiagnoseUnexpandedParameterPack(DefaultArg.getLocation(),
Douglas Gregor6ff1fbf2010-12-16 08:48:57 +0000935 DefaultArg.getArgument().getAsTemplate(),
936 UPPC_DefaultArgument))
937 return Param;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000938
Richard Smith1469b912015-06-10 00:29:03 +0000939 Param->setDefaultArgument(Context, DefaultArg);
Douglas Gregordba32632009-02-10 19:49:53 +0000940 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000941
John McCall48871652010-08-21 09:40:31 +0000942 return Param;
Douglas Gregordba32632009-02-10 19:49:53 +0000943}
944
Hubert Tongf608c052016-04-29 18:05:37 +0000945/// ActOnTemplateParameterList - Builds a TemplateParameterList, optionally
946/// constrained by RequiresClause, that contains the template parameters in
947/// Params.
Richard Trieu9becef62011-09-09 03:18:59 +0000948TemplateParameterList *
Douglas Gregorb9bd8a92008-12-24 02:52:09 +0000949Sema::ActOnTemplateParameterList(unsigned Depth,
950 SourceLocation ExportLoc,
Mike Stump11289f42009-09-09 15:08:12 +0000951 SourceLocation TemplateLoc,
Douglas Gregorb9bd8a92008-12-24 02:52:09 +0000952 SourceLocation LAngleLoc,
Craig Topper96225a52015-12-24 23:58:25 +0000953 ArrayRef<Decl *> Params,
Hubert Tongf608c052016-04-29 18:05:37 +0000954 SourceLocation RAngleLoc,
955 Expr *RequiresClause) {
Douglas Gregorb9bd8a92008-12-24 02:52:09 +0000956 if (ExportLoc.isValid())
Douglas Gregor5c80a27b2009-11-25 18:55:14 +0000957 Diag(ExportLoc, diag::warn_template_export_unsupported);
Douglas Gregorb9bd8a92008-12-24 02:52:09 +0000958
David Majnemer902f8c62015-12-27 07:16:27 +0000959 return TemplateParameterList::Create(
960 Context, TemplateLoc, LAngleLoc,
961 llvm::makeArrayRef((NamedDecl *const *)Params.data(), Params.size()),
Hubert Tonge4a0c0e2016-07-30 22:33:34 +0000962 RAngleLoc, RequiresClause);
Douglas Gregorb9bd8a92008-12-24 02:52:09 +0000963}
Douglas Gregorded2d7b2009-02-04 19:02:06 +0000964
John McCall3e11ebe2010-03-15 10:12:16 +0000965static void SetNestedNameSpecifier(TagDecl *T, const CXXScopeSpec &SS) {
966 if (SS.isSet())
Douglas Gregor14454802011-02-25 02:25:35 +0000967 T->setQualifierInfo(SS.getWithLocInContext(T->getASTContext()));
John McCall3e11ebe2010-03-15 10:12:16 +0000968}
969
John McCallfaf5fb42010-08-26 23:41:50 +0000970DeclResult
John McCall9bb74a52009-07-31 02:45:11 +0000971Sema::CheckClassTemplate(Scope *S, unsigned TagSpec, TagUseKind TUK,
Jeffrey Yasskinc76498d2010-04-08 16:38:48 +0000972 SourceLocation KWLoc, CXXScopeSpec &SS,
Douglas Gregorcd72ba92009-02-06 22:42:48 +0000973 IdentifierInfo *Name, SourceLocation NameLoc,
974 AttributeList *Attr,
Douglas Gregor1d5e9f92009-08-25 17:23:04 +0000975 TemplateParameterList *TemplateParams,
Douglas Gregor2820e692011-09-09 19:05:14 +0000976 AccessSpecifier AS, SourceLocation ModulePrivateLoc,
Nikola Smiljanic4fc91532014-07-17 01:59:34 +0000977 SourceLocation FriendLoc,
Abramo Bagnara0adf29a2011-03-10 13:28:31 +0000978 unsigned NumOuterTemplateParamLists,
Richard Smithbe3980b2015-03-27 00:41:57 +0000979 TemplateParameterList** OuterTemplateParamLists,
Richard Smithd9ba2242015-05-07 03:54:19 +0000980 SkipBodyInfo *SkipBody) {
Mike Stump11289f42009-09-09 15:08:12 +0000981 assert(TemplateParams && TemplateParams->size() > 0 &&
Douglas Gregor1d5e9f92009-08-25 17:23:04 +0000982 "No template parameters");
John McCall9bb74a52009-07-31 02:45:11 +0000983 assert(TUK != TUK_Reference && "Can only declare or define class templates");
Douglas Gregordba32632009-02-10 19:49:53 +0000984 bool Invalid = false;
Douglas Gregorcd72ba92009-02-06 22:42:48 +0000985
986 // Check that we can declare a template here.
Douglas Gregor1d5e9f92009-08-25 17:23:04 +0000987 if (CheckTemplateDeclScope(S, TemplateParams))
Douglas Gregorc08f4892009-03-25 00:13:59 +0000988 return true;
Douglas Gregorcd72ba92009-02-06 22:42:48 +0000989
Abramo Bagnara6150c882010-05-11 21:36:43 +0000990 TagTypeKind Kind = TypeWithKeyword::getTagTypeKindForTypeSpec(TagSpec);
991 assert(Kind != TTK_Enum && "can't build template of enumerated type");
Douglas Gregorcd72ba92009-02-06 22:42:48 +0000992
993 // There is no such thing as an unnamed class template.
994 if (!Name) {
995 Diag(KWLoc, diag::err_template_unnamed_class);
Douglas Gregorc08f4892009-03-25 00:13:59 +0000996 return true;
Douglas Gregorcd72ba92009-02-06 22:42:48 +0000997 }
998
Richard Smith6483d222012-04-21 01:27:54 +0000999 // Find any previous declaration with this name. For a friend with no
1000 // scope explicitly specified, we only look for tag declarations (per
1001 // C++11 [basic.lookup.elab]p2).
Douglas Gregor1d5e9f92009-08-25 17:23:04 +00001002 DeclContext *SemanticContext;
Richard Smith6483d222012-04-21 01:27:54 +00001003 LookupResult Previous(*this, Name, NameLoc,
1004 (SS.isEmpty() && TUK == TUK_Friend)
1005 ? LookupTagName : LookupOrdinaryName,
John McCall5cebab12009-11-18 07:57:50 +00001006 ForRedeclaration);
Douglas Gregor1d5e9f92009-08-25 17:23:04 +00001007 if (SS.isNotEmpty() && !SS.isInvalid()) {
1008 SemanticContext = computeDeclContext(SS, true);
1009 if (!SemanticContext) {
Douglas Gregor67daacb2012-03-30 16:20:47 +00001010 // FIXME: Horrible, horrible hack! We can't currently represent this
1011 // in the AST, and historically we have just ignored such friend
1012 // class templates, so don't complain here.
Richard Smithcd556eb2013-11-08 18:59:56 +00001013 Diag(NameLoc, TUK == TUK_Friend
1014 ? diag::warn_template_qualified_friend_ignored
1015 : diag::err_template_qualified_declarator_no_match)
Douglas Gregor67daacb2012-03-30 16:20:47 +00001016 << SS.getScopeRep() << SS.getRange();
Richard Smithcd556eb2013-11-08 18:59:56 +00001017 return TUK != TUK_Friend;
Douglas Gregor1d5e9f92009-08-25 17:23:04 +00001018 }
Mike Stump11289f42009-09-09 15:08:12 +00001019
John McCall0b66eb32010-05-01 00:40:08 +00001020 if (RequireCompleteDeclContext(SS, SemanticContext))
1021 return true;
1022
Simon Pilgrim6905d222016-12-30 22:55:33 +00001023 // If we're adding a template to a dependent context, we may need to
1024 // rebuilding some of the types used within the template parameter list,
Douglas Gregor041b0842011-10-14 15:31:12 +00001025 // now that we know what the current instantiation is.
1026 if (SemanticContext->isDependentContext()) {
1027 ContextRAII SavedContext(*this, SemanticContext);
1028 if (RebuildTemplateParamsInCurrentInstantiation(TemplateParams))
1029 Invalid = true;
Douglas Gregorb7d17dd2012-03-28 16:01:27 +00001030 } else if (TUK != TUK_Friend && TUK != TUK_Reference)
1031 diagnoseQualifiedDeclaration(SS, SemanticContext, Name, NameLoc);
Richard Smith6483d222012-04-21 01:27:54 +00001032
John McCall27b18f82009-11-17 02:14:36 +00001033 LookupQualifiedName(Previous, SemanticContext);
Douglas Gregor1d5e9f92009-08-25 17:23:04 +00001034 } else {
1035 SemanticContext = CurContext;
Richard Smith88fe69c2015-07-06 01:45:27 +00001036
1037 // C++14 [class.mem]p14:
1038 // If T is the name of a class, then each of the following shall have a
1039 // name different from T:
1040 // -- every member template of class T
1041 if (TUK != TUK_Friend &&
1042 DiagnoseClassNameShadow(SemanticContext,
1043 DeclarationNameInfo(Name, NameLoc)))
1044 return true;
1045
John McCall27b18f82009-11-17 02:14:36 +00001046 LookupName(Previous, S);
Douglas Gregor1d5e9f92009-08-25 17:23:04 +00001047 }
Mike Stump11289f42009-09-09 15:08:12 +00001048
Douglas Gregorce40e2e2010-04-12 16:00:01 +00001049 if (Previous.isAmbiguous())
1050 return true;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001051
Craig Topperc3ec1492014-05-26 06:22:03 +00001052 NamedDecl *PrevDecl = nullptr;
Douglas Gregorcd72ba92009-02-06 22:42:48 +00001053 if (Previous.begin() != Previous.end())
Douglas Gregorce40e2e2010-04-12 16:00:01 +00001054 PrevDecl = (*Previous.begin())->getUnderlyingDecl();
Douglas Gregorcd72ba92009-02-06 22:42:48 +00001055
Serge Pavlove50bf752016-06-10 04:39:07 +00001056 if (PrevDecl && PrevDecl->isTemplateParameter()) {
1057 // Maybe we will complain about the shadowed template parameter.
1058 DiagnoseTemplateParameterShadow(NameLoc, PrevDecl);
1059 // Just pretend that we didn't see the previous declaration.
1060 PrevDecl = nullptr;
1061 }
1062
Douglas Gregorcd72ba92009-02-06 22:42:48 +00001063 // If there is a previous declaration with the same name, check
1064 // whether this is a valid redeclaration.
Mike Stump11289f42009-09-09 15:08:12 +00001065 ClassTemplateDecl *PrevClassTemplate
Douglas Gregorcd72ba92009-02-06 22:42:48 +00001066 = dyn_cast_or_null<ClassTemplateDecl>(PrevDecl);
Douglas Gregor7f34bae2009-10-09 21:11:42 +00001067
1068 // We may have found the injected-class-name of a class template,
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001069 // class template partial specialization, or class template specialization.
Douglas Gregor7f34bae2009-10-09 21:11:42 +00001070 // In these cases, grab the template that is being defined or specialized.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001071 if (!PrevClassTemplate && PrevDecl && isa<CXXRecordDecl>(PrevDecl) &&
Douglas Gregor7f34bae2009-10-09 21:11:42 +00001072 cast<CXXRecordDecl>(PrevDecl)->isInjectedClassName()) {
1073 PrevDecl = cast<CXXRecordDecl>(PrevDecl->getDeclContext());
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001074 PrevClassTemplate
Douglas Gregor7f34bae2009-10-09 21:11:42 +00001075 = cast<CXXRecordDecl>(PrevDecl)->getDescribedClassTemplate();
1076 if (!PrevClassTemplate && isa<ClassTemplateSpecializationDecl>(PrevDecl)) {
1077 PrevClassTemplate
1078 = cast<ClassTemplateSpecializationDecl>(PrevDecl)
1079 ->getSpecializedTemplate();
1080 }
1081 }
1082
John McCalld43784f2009-12-18 11:25:59 +00001083 if (TUK == TUK_Friend) {
John McCall90d3bb92009-12-17 23:21:11 +00001084 // C++ [namespace.memdef]p3:
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001085 // [...] When looking for a prior declaration of a class or a function
1086 // declared as a friend, and when the name of the friend class or
John McCall90d3bb92009-12-17 23:21:11 +00001087 // function is neither a qualified name nor a template-id, scopes outside
1088 // the innermost enclosing namespace scope are not considered.
Douglas Gregorb74b1032010-04-18 17:37:40 +00001089 if (!SS.isSet()) {
1090 DeclContext *OutermostContext = CurContext;
1091 while (!OutermostContext->isFileContext())
1092 OutermostContext = OutermostContext->getLookupParent();
John McCalld43784f2009-12-18 11:25:59 +00001093
Richard Smith61e582f2012-04-20 07:12:26 +00001094 if (PrevDecl &&
Douglas Gregorb74b1032010-04-18 17:37:40 +00001095 (OutermostContext->Equals(PrevDecl->getDeclContext()) ||
1096 OutermostContext->Encloses(PrevDecl->getDeclContext()))) {
1097 SemanticContext = PrevDecl->getDeclContext();
1098 } else {
1099 // Declarations in outer scopes don't matter. However, the outermost
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001100 // context we computed is the semantic context for our new
Douglas Gregorb74b1032010-04-18 17:37:40 +00001101 // declaration.
Craig Topperc3ec1492014-05-26 06:22:03 +00001102 PrevDecl = PrevClassTemplate = nullptr;
Douglas Gregorb74b1032010-04-18 17:37:40 +00001103 SemanticContext = OutermostContext;
Richard Smith6483d222012-04-21 01:27:54 +00001104
1105 // Check that the chosen semantic context doesn't already contain a
1106 // declaration of this name as a non-tag type.
Richard Smithfc805ca2015-07-06 04:43:58 +00001107 Previous.clear(LookupOrdinaryName);
Richard Smith6483d222012-04-21 01:27:54 +00001108 DeclContext *LookupContext = SemanticContext;
1109 while (LookupContext->isTransparentContext())
1110 LookupContext = LookupContext->getLookupParent();
1111 LookupQualifiedName(Previous, LookupContext);
1112
1113 if (Previous.isAmbiguous())
1114 return true;
1115
1116 if (Previous.begin() != Previous.end())
1117 PrevDecl = (*Previous.begin())->getUnderlyingDecl();
Douglas Gregorb74b1032010-04-18 17:37:40 +00001118 }
John McCall90d3bb92009-12-17 23:21:11 +00001119 }
Richard Smith72bcaec2013-12-05 04:30:04 +00001120 } else if (PrevDecl &&
Richard Smithfc805ca2015-07-06 04:43:58 +00001121 !isDeclInScope(Previous.getRepresentativeDecl(), SemanticContext,
1122 S, SS.isValid()))
Craig Topperc3ec1492014-05-26 06:22:03 +00001123 PrevDecl = PrevClassTemplate = nullptr;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001124
Richard Smithfc805ca2015-07-06 04:43:58 +00001125 if (auto *Shadow = dyn_cast_or_null<UsingShadowDecl>(
1126 PrevDecl ? Previous.getRepresentativeDecl() : nullptr)) {
1127 if (SS.isEmpty() &&
1128 !(PrevClassTemplate &&
1129 PrevClassTemplate->getDeclContext()->getRedeclContext()->Equals(
1130 SemanticContext->getRedeclContext()))) {
1131 Diag(KWLoc, diag::err_using_decl_conflict_reverse);
1132 Diag(Shadow->getTargetDecl()->getLocation(),
1133 diag::note_using_decl_target);
1134 Diag(Shadow->getUsingDecl()->getLocation(), diag::note_using_decl) << 0;
1135 // Recover by ignoring the old declaration.
1136 PrevDecl = PrevClassTemplate = nullptr;
1137 }
1138 }
1139
Douglas Gregorcd72ba92009-02-06 22:42:48 +00001140 if (PrevClassTemplate) {
Richard Smithe85e1762012-04-22 02:13:50 +00001141 // Ensure that the template parameter lists are compatible. Skip this check
1142 // for a friend in a dependent context: the template parameter list itself
1143 // could be dependent.
1144 if (!(TUK == TUK_Friend && CurContext->isDependentContext()) &&
1145 !TemplateParameterListsAreEqual(TemplateParams,
Douglas Gregorcd72ba92009-02-06 22:42:48 +00001146 PrevClassTemplate->getTemplateParameters(),
Douglas Gregor19ac2d62009-11-12 16:20:59 +00001147 /*Complain=*/true,
1148 TPL_TemplateMatch))
Douglas Gregorc08f4892009-03-25 00:13:59 +00001149 return true;
Douglas Gregorcd72ba92009-02-06 22:42:48 +00001150
1151 // C++ [temp.class]p4:
1152 // In a redeclaration, partial specialization, explicit
1153 // specialization or explicit instantiation of a class template,
1154 // the class-key shall agree in kind with the original class
1155 // template declaration (7.1.5.3).
1156 RecordDecl *PrevRecordDecl = PrevClassTemplate->getTemplatedDecl();
Richard Trieucaa33d32011-06-10 03:11:26 +00001157 if (!isAcceptableTagRedeclaration(PrevRecordDecl, Kind,
Justin Bognerc6ecb7c2015-07-10 23:05:47 +00001158 TUK == TUK_Definition, KWLoc, Name)) {
Mike Stump11289f42009-09-09 15:08:12 +00001159 Diag(KWLoc, diag::err_use_with_wrong_tag)
Douglas Gregor170512f2009-04-01 23:51:29 +00001160 << Name
Douglas Gregora771f462010-03-31 17:46:05 +00001161 << FixItHint::CreateReplacement(KWLoc, PrevRecordDecl->getKindName());
Douglas Gregorcd72ba92009-02-06 22:42:48 +00001162 Diag(PrevRecordDecl->getLocation(), diag::note_previous_use);
Douglas Gregor170512f2009-04-01 23:51:29 +00001163 Kind = PrevRecordDecl->getTagKind();
Douglas Gregorcd72ba92009-02-06 22:42:48 +00001164 }
1165
Douglas Gregorcd72ba92009-02-06 22:42:48 +00001166 // Check for redefinition of this class template.
John McCall9bb74a52009-07-31 02:45:11 +00001167 if (TUK == TUK_Definition) {
Douglas Gregor0a5a2212010-02-11 01:04:33 +00001168 if (TagDecl *Def = PrevRecordDecl->getDefinition()) {
Richard Smithbe3980b2015-03-27 00:41:57 +00001169 // If we have a prior definition that is not visible, treat this as
1170 // simply making that previous definition visible.
1171 NamedDecl *Hidden = nullptr;
1172 if (SkipBody && !hasVisibleDefinition(Def, &Hidden)) {
Richard Smithd9ba2242015-05-07 03:54:19 +00001173 SkipBody->ShouldSkip = true;
Richard Smithbe3980b2015-03-27 00:41:57 +00001174 auto *Tmpl = cast<CXXRecordDecl>(Hidden)->getDescribedClassTemplate();
1175 assert(Tmpl && "original definition of a class template is not a "
1176 "class template?");
Richard Smithd9ba2242015-05-07 03:54:19 +00001177 makeMergedDefinitionVisible(Hidden, KWLoc);
1178 makeMergedDefinitionVisible(Tmpl, KWLoc);
Richard Smithbe3980b2015-03-27 00:41:57 +00001179 return Def;
1180 }
1181
Douglas Gregorcd72ba92009-02-06 22:42:48 +00001182 Diag(NameLoc, diag::err_redefinition) << Name;
1183 Diag(Def->getLocation(), diag::note_previous_definition);
1184 // FIXME: Would it make sense to try to "forget" the previous
1185 // definition, as part of error recovery?
Douglas Gregorc08f4892009-03-25 00:13:59 +00001186 return true;
Douglas Gregorcd72ba92009-02-06 22:42:48 +00001187 }
Serge Pavlove50bf752016-06-10 04:39:07 +00001188 }
Douglas Gregorcd72ba92009-02-06 22:42:48 +00001189 } else if (PrevDecl) {
1190 // C++ [temp]p5:
1191 // A class template shall not have the same name as any other
1192 // template, class, function, object, enumeration, enumerator,
1193 // namespace, or type in the same scope (3.3), except as specified
1194 // in (14.5.4).
1195 Diag(NameLoc, diag::err_redefinition_different_kind) << Name;
1196 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
Douglas Gregorc08f4892009-03-25 00:13:59 +00001197 return true;
Douglas Gregorcd72ba92009-02-06 22:42:48 +00001198 }
1199
Douglas Gregordba32632009-02-10 19:49:53 +00001200 // Check the template parameter list of this declaration, possibly
1201 // merging in the template parameter list from the previous class
Richard Smithe85e1762012-04-22 02:13:50 +00001202 // template declaration. Skip this check for a friend in a dependent
1203 // context, because the template parameter list might be dependent.
1204 if (!(TUK == TUK_Friend && CurContext->isDependentContext()) &&
David Majnemerba8f17a2013-06-25 22:08:55 +00001205 CheckTemplateParameterList(
1206 TemplateParams,
Craig Topperc3ec1492014-05-26 06:22:03 +00001207 PrevClassTemplate ? PrevClassTemplate->getTemplateParameters()
1208 : nullptr,
David Majnemerba8f17a2013-06-25 22:08:55 +00001209 (SS.isSet() && SemanticContext && SemanticContext->isRecord() &&
1210 SemanticContext->isDependentContext())
1211 ? TPC_ClassTemplateMember
1212 : TUK == TUK_Friend ? TPC_FriendClassTemplate
1213 : TPC_ClassTemplate))
Douglas Gregordba32632009-02-10 19:49:53 +00001214 Invalid = true;
Mike Stump11289f42009-09-09 15:08:12 +00001215
Douglas Gregorce40e2e2010-04-12 16:00:01 +00001216 if (SS.isSet()) {
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001217 // If the name of the template was qualified, we must be defining the
Douglas Gregorce40e2e2010-04-12 16:00:01 +00001218 // template out-of-line.
Richard Smithe85e1762012-04-22 02:13:50 +00001219 if (!SS.isInvalid() && !Invalid && !PrevClassTemplate) {
1220 Diag(NameLoc, TUK == TUK_Friend ? diag::err_friend_decl_does_not_match
Richard Smith114394f2013-08-09 04:35:01 +00001221 : diag::err_member_decl_does_not_match)
1222 << Name << SemanticContext << /*IsDefinition*/true << SS.getRange();
Douglas Gregorfe0055e2011-11-01 21:35:16 +00001223 Invalid = true;
1224 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001225 }
1226
Vassil Vassilev352e4412017-01-12 09:16:26 +00001227 // If this is a templated friend in a dependent context we should not put it
1228 // on the redecl chain. In some cases, the templated friend can be the most
1229 // recent declaration tricking the template instantiator to make substitutions
1230 // there.
1231 // FIXME: Figure out how to combine with shouldLinkDependentDeclWithPrevious
1232 bool ShouldAddRedecl
1233 = !(TUK == TUK_Friend && CurContext->isDependentContext());
1234
Mike Stump11289f42009-09-09 15:08:12 +00001235 CXXRecordDecl *NewClass =
Abramo Bagnara29c2d462011-03-09 14:09:51 +00001236 CXXRecordDecl::Create(Context, Kind, SemanticContext, KWLoc, NameLoc, Name,
Vassil Vassilev352e4412017-01-12 09:16:26 +00001237 PrevClassTemplate && ShouldAddRedecl ?
Craig Topperc3ec1492014-05-26 06:22:03 +00001238 PrevClassTemplate->getTemplatedDecl() : nullptr,
Douglas Gregor1ec5e9f2009-05-15 19:11:46 +00001239 /*DelayTypeCreation=*/true);
John McCall3e11ebe2010-03-15 10:12:16 +00001240 SetNestedNameSpecifier(NewClass, SS);
Abramo Bagnara0adf29a2011-03-10 13:28:31 +00001241 if (NumOuterTemplateParamLists > 0)
Benjamin Kramer9cc210652015-08-05 09:40:49 +00001242 NewClass->setTemplateParameterListsInfo(
1243 Context, llvm::makeArrayRef(OuterTemplateParamLists,
1244 NumOuterTemplateParamLists));
Douglas Gregorcd72ba92009-02-06 22:42:48 +00001245
Eli Friedmanedb6f5d2012-02-10 02:02:21 +00001246 // Add alignment attributes if necessary; these attributes are checked when
1247 // the ASTContext lays out the structure.
Eli Friedman0415f3e12012-08-08 21:08:34 +00001248 if (TUK == TUK_Definition) {
1249 AddAlignmentAttributesForRecord(NewClass);
1250 AddMsStructLayoutForRecord(NewClass);
1251 }
Eli Friedmanedb6f5d2012-02-10 02:02:21 +00001252
Douglas Gregorcd72ba92009-02-06 22:42:48 +00001253 ClassTemplateDecl *NewTemplate
1254 = ClassTemplateDecl::Create(Context, SemanticContext, NameLoc,
1255 DeclarationName(Name), TemplateParams,
Vassil Vassilev352e4412017-01-12 09:16:26 +00001256 NewClass);
1257
1258 if (ShouldAddRedecl)
1259 NewTemplate->setPreviousDecl(PrevClassTemplate);
1260
Douglas Gregor97f1f1c2009-03-26 00:10:35 +00001261 NewClass->setDescribedClassTemplate(NewTemplate);
Simon Pilgrim6905d222016-12-30 22:55:33 +00001262
Douglas Gregor21823bf2011-12-20 18:11:52 +00001263 if (ModulePrivateLoc.isValid())
Douglas Gregoref15bdb2011-09-09 18:32:39 +00001264 NewTemplate->setModulePrivate();
Simon Pilgrim6905d222016-12-30 22:55:33 +00001265
Douglas Gregor1ec5e9f2009-05-15 19:11:46 +00001266 // Build the type for the class template declaration now.
Douglas Gregor9961ce92010-07-08 18:37:38 +00001267 QualType T = NewTemplate->getInjectedClassNameSpecialization();
John McCalle78aac42010-03-10 03:28:59 +00001268 T = Context.getInjectedClassNameType(NewClass, T);
Douglas Gregor1ec5e9f2009-05-15 19:11:46 +00001269 assert(T->isDependentType() && "Class template type is not dependent?");
1270 (void)T;
1271
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001272 // If we are providing an explicit specialization of a member that is a
Douglas Gregorcf915552009-10-13 16:30:37 +00001273 // class template, make a note of that.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001274 if (PrevClassTemplate &&
Douglas Gregorcf915552009-10-13 16:30:37 +00001275 PrevClassTemplate->getInstantiatedFromMemberTemplate())
1276 PrevClassTemplate->setMemberSpecialization();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001277
Anders Carlsson137108d2009-03-26 01:24:28 +00001278 // Set the access specifier.
Douglas Gregor31feb332012-03-17 23:06:31 +00001279 if (!Invalid && TUK != TUK_Friend && NewTemplate->getDeclContext()->isRecord())
John McCall27b5c252009-09-14 21:59:20 +00001280 SetMemberAccessSpecifier(NewTemplate, PrevClassTemplate, AS);
Mike Stump11289f42009-09-09 15:08:12 +00001281
Douglas Gregorcd72ba92009-02-06 22:42:48 +00001282 // Set the lexical context of these templates
1283 NewClass->setLexicalDeclContext(CurContext);
1284 NewTemplate->setLexicalDeclContext(CurContext);
1285
John McCall9bb74a52009-07-31 02:45:11 +00001286 if (TUK == TUK_Definition)
Douglas Gregorcd72ba92009-02-06 22:42:48 +00001287 NewClass->startDefinition();
1288
1289 if (Attr)
Douglas Gregor758a8692009-06-17 21:51:59 +00001290 ProcessDeclAttributeList(S, NewClass, Attr);
Douglas Gregorcd72ba92009-02-06 22:42:48 +00001291
Rafael Espindola0c6c4052012-08-22 14:52:14 +00001292 if (PrevClassTemplate)
1293 mergeDeclAttributes(NewClass, PrevClassTemplate->getTemplatedDecl());
1294
Rafael Espindola385c0422012-07-13 18:04:45 +00001295 AddPushedVisibilityAttribute(NewClass);
1296
Richard Smith234ff472014-08-23 00:49:01 +00001297 if (TUK != TUK_Friend) {
1298 // Per C++ [basic.scope.temp]p2, skip the template parameter scopes.
1299 Scope *Outer = S;
1300 while ((Outer->getFlags() & Scope::TemplateParamScope) != 0)
1301 Outer = Outer->getParent();
1302 PushOnScopeChains(NewTemplate, Outer);
1303 } else {
Douglas Gregor3dad8422009-09-26 06:47:28 +00001304 if (PrevClassTemplate && PrevClassTemplate->getAccess() != AS_none) {
John McCall27b5c252009-09-14 21:59:20 +00001305 NewTemplate->setAccess(PrevClassTemplate->getAccess());
Douglas Gregor3dad8422009-09-26 06:47:28 +00001306 NewClass->setAccess(PrevClassTemplate->getAccess());
1307 }
John McCall27b5c252009-09-14 21:59:20 +00001308
Richard Smith64017682013-07-17 23:53:16 +00001309 NewTemplate->setObjectOfFriendDecl();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001310
John McCall27b5c252009-09-14 21:59:20 +00001311 // Friend templates are visible in fairly strange ways.
1312 if (!CurContext->isDependentContext()) {
Sebastian Redl50c68252010-08-31 00:36:30 +00001313 DeclContext *DC = SemanticContext->getRedeclContext();
Richard Smith05afe5e2012-03-13 03:12:56 +00001314 DC->makeDeclVisibleInContext(NewTemplate);
John McCall27b5c252009-09-14 21:59:20 +00001315 if (Scope *EnclosingScope = getScopeForDeclContext(S, DC))
1316 PushOnScopeChains(NewTemplate, EnclosingScope,
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001317 /* AddToContext = */ false);
John McCall27b5c252009-09-14 21:59:20 +00001318 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001319
Nikola Smiljanic4fc91532014-07-17 01:59:34 +00001320 FriendDecl *Friend = FriendDecl::Create(
1321 Context, CurContext, NewClass->getLocation(), NewTemplate, FriendLoc);
Douglas Gregor3dad8422009-09-26 06:47:28 +00001322 Friend->setAccess(AS_public);
1323 CurContext->addDecl(Friend);
John McCall27b5c252009-09-14 21:59:20 +00001324 }
Douglas Gregorcd72ba92009-02-06 22:42:48 +00001325
Douglas Gregordba32632009-02-10 19:49:53 +00001326 if (Invalid) {
1327 NewTemplate->setInvalidDecl();
1328 NewClass->setInvalidDecl();
1329 }
Rafael Espindolaeca5cd22012-07-13 01:19:08 +00001330
Dmitri Gribenko34df2202012-07-31 22:37:06 +00001331 ActOnDocumentableDecl(NewTemplate);
1332
John McCall48871652010-08-21 09:40:31 +00001333 return NewTemplate;
Douglas Gregorcd72ba92009-02-06 22:42:48 +00001334}
1335
Douglas Gregored5731f2009-11-25 17:50:39 +00001336/// \brief Diagnose the presence of a default template argument on a
1337/// template parameter, which is ill-formed in certain contexts.
1338///
1339/// \returns true if the default template argument should be dropped.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001340static bool DiagnoseDefaultTemplateArgument(Sema &S,
Douglas Gregored5731f2009-11-25 17:50:39 +00001341 Sema::TemplateParamListContext TPC,
1342 SourceLocation ParamLoc,
1343 SourceRange DefArgRange) {
1344 switch (TPC) {
1345 case Sema::TPC_ClassTemplate:
Larisse Voufo39a1e502013-08-06 01:03:05 +00001346 case Sema::TPC_VarTemplate:
Richard Smith3f1b5d02011-05-05 21:57:07 +00001347 case Sema::TPC_TypeAliasTemplate:
Douglas Gregored5731f2009-11-25 17:50:39 +00001348 return false;
1349
1350 case Sema::TPC_FunctionTemplate:
Douglas Gregora99fb4c2011-02-04 04:20:44 +00001351 case Sema::TPC_FriendFunctionTemplateDefinition:
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001352 // C++ [temp.param]p9:
Douglas Gregored5731f2009-11-25 17:50:39 +00001353 // A default template-argument shall not be specified in a
1354 // function template declaration or a function template
1355 // definition [...]
Simon Pilgrim6905d222016-12-30 22:55:33 +00001356 // If a friend function template declaration specifies a default
Douglas Gregora99fb4c2011-02-04 04:20:44 +00001357 // template-argument, that declaration shall be a definition and shall be
1358 // the only declaration of the function template in the translation unit.
1359 // (C++98/03 doesn't have this wording; see DR226).
Richard Smith2bf7fdb2013-01-02 11:42:31 +00001360 S.Diag(ParamLoc, S.getLangOpts().CPlusPlus11 ?
Richard Smith0bf8a4922011-10-18 20:49:44 +00001361 diag::warn_cxx98_compat_template_parameter_default_in_function_template
1362 : diag::ext_template_parameter_default_in_function_template)
1363 << DefArgRange;
Douglas Gregored5731f2009-11-25 17:50:39 +00001364 return false;
1365
1366 case Sema::TPC_ClassTemplateMember:
1367 // C++0x [temp.param]p9:
1368 // A default template-argument shall not be specified in the
1369 // template-parameter-lists of the definition of a member of a
1370 // class template that appears outside of the member's class.
1371 S.Diag(ParamLoc, diag::err_template_parameter_default_template_member)
1372 << DefArgRange;
1373 return true;
1374
David Majnemerba8f17a2013-06-25 22:08:55 +00001375 case Sema::TPC_FriendClassTemplate:
Douglas Gregored5731f2009-11-25 17:50:39 +00001376 case Sema::TPC_FriendFunctionTemplate:
1377 // C++ [temp.param]p9:
1378 // A default template-argument shall not be specified in a
1379 // friend template declaration.
1380 S.Diag(ParamLoc, diag::err_template_parameter_default_friend_template)
1381 << DefArgRange;
1382 return true;
1383
1384 // FIXME: C++0x [temp.param]p9 allows default template-arguments
1385 // for friend function templates if there is only a single
1386 // declaration (and it is a definition). Strange!
1387 }
1388
David Blaikie8a40f702012-01-17 06:56:22 +00001389 llvm_unreachable("Invalid TemplateParamListContext!");
Douglas Gregored5731f2009-11-25 17:50:39 +00001390}
1391
Douglas Gregor38ee75e2010-12-16 15:36:43 +00001392/// \brief Check for unexpanded parameter packs within the template parameters
1393/// of a template template parameter, recursively.
Benjamin Kramer8aef5962011-03-26 12:38:21 +00001394static bool DiagnoseUnexpandedParameterPacks(Sema &S,
1395 TemplateTemplateParmDecl *TTP) {
Richard Smith1fde8ec2012-09-07 02:06:42 +00001396 // A template template parameter which is a parameter pack is also a pack
1397 // expansion.
1398 if (TTP->isParameterPack())
1399 return false;
1400
Douglas Gregor38ee75e2010-12-16 15:36:43 +00001401 TemplateParameterList *Params = TTP->getTemplateParameters();
1402 for (unsigned I = 0, N = Params->size(); I != N; ++I) {
1403 NamedDecl *P = Params->getParam(I);
1404 if (NonTypeTemplateParmDecl *NTTP = dyn_cast<NonTypeTemplateParmDecl>(P)) {
Richard Smith1fde8ec2012-09-07 02:06:42 +00001405 if (!NTTP->isParameterPack() &&
1406 S.DiagnoseUnexpandedParameterPack(NTTP->getLocation(),
Douglas Gregor38ee75e2010-12-16 15:36:43 +00001407 NTTP->getTypeSourceInfo(),
1408 Sema::UPPC_NonTypeTemplateParameterType))
1409 return true;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001410
Douglas Gregor38ee75e2010-12-16 15:36:43 +00001411 continue;
1412 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001413
1414 if (TemplateTemplateParmDecl *InnerTTP
Douglas Gregor38ee75e2010-12-16 15:36:43 +00001415 = dyn_cast<TemplateTemplateParmDecl>(P))
1416 if (DiagnoseUnexpandedParameterPacks(S, InnerTTP))
1417 return true;
1418 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001419
Douglas Gregor38ee75e2010-12-16 15:36:43 +00001420 return false;
1421}
1422
Douglas Gregordba32632009-02-10 19:49:53 +00001423/// \brief Checks the validity of a template parameter list, possibly
1424/// considering the template parameter list from a previous
1425/// declaration.
1426///
1427/// If an "old" template parameter list is provided, it must be
1428/// equivalent (per TemplateParameterListsAreEqual) to the "new"
1429/// template parameter list.
1430///
1431/// \param NewParams Template parameter list for a new template
1432/// declaration. This template parameter list will be updated with any
1433/// default arguments that are carried through from the previous
1434/// template parameter list.
1435///
1436/// \param OldParams If provided, template parameter list from a
1437/// previous declaration of the same template. Default template
1438/// arguments will be merged from the old template parameter list to
1439/// the new template parameter list.
1440///
Douglas Gregored5731f2009-11-25 17:50:39 +00001441/// \param TPC Describes the context in which we are checking the given
1442/// template parameter list.
1443///
Douglas Gregordba32632009-02-10 19:49:53 +00001444/// \returns true if an error occurred, false otherwise.
1445bool Sema::CheckTemplateParameterList(TemplateParameterList *NewParams,
Douglas Gregored5731f2009-11-25 17:50:39 +00001446 TemplateParameterList *OldParams,
1447 TemplateParamListContext TPC) {
Douglas Gregordba32632009-02-10 19:49:53 +00001448 bool Invalid = false;
Mike Stump11289f42009-09-09 15:08:12 +00001449
Douglas Gregordba32632009-02-10 19:49:53 +00001450 // C++ [temp.param]p10:
1451 // The set of default template-arguments available for use with a
1452 // template declaration or definition is obtained by merging the
1453 // default arguments from the definition (if in scope) and all
1454 // declarations in scope in the same way default function
1455 // arguments are (8.3.6).
1456 bool SawDefaultArgument = false;
1457 SourceLocation PreviousDefaultArgLoc;
Douglas Gregord32e0282009-02-09 23:23:08 +00001458
Mike Stumpc89c8e32009-02-11 23:03:27 +00001459 // Dummy initialization to avoid warnings.
Douglas Gregor5bd22da2009-02-11 20:46:19 +00001460 TemplateParameterList::iterator OldParam = NewParams->end();
Douglas Gregordba32632009-02-10 19:49:53 +00001461 if (OldParams)
1462 OldParam = OldParams->begin();
1463
Douglas Gregor0693def2011-01-27 01:40:17 +00001464 bool RemoveDefaultArguments = false;
Douglas Gregordba32632009-02-10 19:49:53 +00001465 for (TemplateParameterList::iterator NewParam = NewParams->begin(),
1466 NewParamEnd = NewParams->end();
1467 NewParam != NewParamEnd; ++NewParam) {
1468 // Variables used to diagnose redundant default arguments
1469 bool RedundantDefaultArg = false;
1470 SourceLocation OldDefaultLoc;
1471 SourceLocation NewDefaultLoc;
1472
David Blaikie651c73c2011-10-19 05:19:50 +00001473 // Variable used to diagnose missing default arguments
Douglas Gregordba32632009-02-10 19:49:53 +00001474 bool MissingDefaultArg = false;
1475
David Blaikie651c73c2011-10-19 05:19:50 +00001476 // Variable used to diagnose non-final parameter packs
1477 bool SawParameterPack = false;
Anders Carlsson327865d2009-06-12 23:20:15 +00001478
Douglas Gregordba32632009-02-10 19:49:53 +00001479 if (TemplateTypeParmDecl *NewTypeParm
1480 = dyn_cast<TemplateTypeParmDecl>(*NewParam)) {
Douglas Gregored5731f2009-11-25 17:50:39 +00001481 // Check the presence of a default argument here.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001482 if (NewTypeParm->hasDefaultArgument() &&
1483 DiagnoseDefaultTemplateArgument(*this, TPC,
1484 NewTypeParm->getLocation(),
Douglas Gregored5731f2009-11-25 17:50:39 +00001485 NewTypeParm->getDefaultArgumentInfo()->getTypeLoc()
Abramo Bagnara1108e7b2010-05-20 10:00:11 +00001486 .getSourceRange()))
Douglas Gregored5731f2009-11-25 17:50:39 +00001487 NewTypeParm->removeDefaultArgument();
1488
1489 // Merge default arguments for template type parameters.
Mike Stump11289f42009-09-09 15:08:12 +00001490 TemplateTypeParmDecl *OldTypeParm
Craig Topperc3ec1492014-05-26 06:22:03 +00001491 = OldParams? cast<TemplateTypeParmDecl>(*OldParam) : nullptr;
Anders Carlsson327865d2009-06-12 23:20:15 +00001492 if (NewTypeParm->isParameterPack()) {
1493 assert(!NewTypeParm->hasDefaultArgument() &&
1494 "Parameter packs can't have a default argument!");
1495 SawParameterPack = true;
Richard Smithe7bd6de2015-06-10 20:30:23 +00001496 } else if (OldTypeParm && hasVisibleDefaultArgument(OldTypeParm) &&
John McCall0ad16662009-10-29 08:12:44 +00001497 NewTypeParm->hasDefaultArgument()) {
Douglas Gregordba32632009-02-10 19:49:53 +00001498 OldDefaultLoc = OldTypeParm->getDefaultArgumentLoc();
1499 NewDefaultLoc = NewTypeParm->getDefaultArgumentLoc();
1500 SawDefaultArgument = true;
1501 RedundantDefaultArg = true;
1502 PreviousDefaultArgLoc = NewDefaultLoc;
1503 } else if (OldTypeParm && OldTypeParm->hasDefaultArgument()) {
1504 // Merge the default argument from the old declaration to the
1505 // new declaration.
Richard Smith1469b912015-06-10 00:29:03 +00001506 NewTypeParm->setInheritedDefaultArgument(Context, OldTypeParm);
Douglas Gregordba32632009-02-10 19:49:53 +00001507 PreviousDefaultArgLoc = OldTypeParm->getDefaultArgumentLoc();
1508 } else if (NewTypeParm->hasDefaultArgument()) {
1509 SawDefaultArgument = true;
1510 PreviousDefaultArgLoc = NewTypeParm->getDefaultArgumentLoc();
1511 } else if (SawDefaultArgument)
1512 MissingDefaultArg = true;
Mike Stump12b8ce12009-08-04 21:02:39 +00001513 } else if (NonTypeTemplateParmDecl *NewNonTypeParm
Douglas Gregordba32632009-02-10 19:49:53 +00001514 = dyn_cast<NonTypeTemplateParmDecl>(*NewParam)) {
Douglas Gregor38ee75e2010-12-16 15:36:43 +00001515 // Check for unexpanded parameter packs.
Richard Smith1fde8ec2012-09-07 02:06:42 +00001516 if (!NewNonTypeParm->isParameterPack() &&
1517 DiagnoseUnexpandedParameterPack(NewNonTypeParm->getLocation(),
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001518 NewNonTypeParm->getTypeSourceInfo(),
Douglas Gregor38ee75e2010-12-16 15:36:43 +00001519 UPPC_NonTypeTemplateParameterType)) {
1520 Invalid = true;
1521 continue;
1522 }
1523
Douglas Gregored5731f2009-11-25 17:50:39 +00001524 // Check the presence of a default argument here.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001525 if (NewNonTypeParm->hasDefaultArgument() &&
1526 DiagnoseDefaultTemplateArgument(*this, TPC,
1527 NewNonTypeParm->getLocation(),
Douglas Gregored5731f2009-11-25 17:50:39 +00001528 NewNonTypeParm->getDefaultArgument()->getSourceRange())) {
Abramo Bagnara656e3002010-06-09 09:26:05 +00001529 NewNonTypeParm->removeDefaultArgument();
Douglas Gregored5731f2009-11-25 17:50:39 +00001530 }
1531
Mike Stump12b8ce12009-08-04 21:02:39 +00001532 // Merge default arguments for non-type template parameters
Douglas Gregordba32632009-02-10 19:49:53 +00001533 NonTypeTemplateParmDecl *OldNonTypeParm
Craig Topperc3ec1492014-05-26 06:22:03 +00001534 = OldParams? cast<NonTypeTemplateParmDecl>(*OldParam) : nullptr;
Douglas Gregor0018cdc2011-01-05 16:19:19 +00001535 if (NewNonTypeParm->isParameterPack()) {
1536 assert(!NewNonTypeParm->hasDefaultArgument() &&
1537 "Parameter packs can't have a default argument!");
Richard Smith1fde8ec2012-09-07 02:06:42 +00001538 if (!NewNonTypeParm->isPackExpansion())
1539 SawParameterPack = true;
Richard Smithe7bd6de2015-06-10 20:30:23 +00001540 } else if (OldNonTypeParm && hasVisibleDefaultArgument(OldNonTypeParm) &&
Richard Smith35828f12013-07-22 03:31:14 +00001541 NewNonTypeParm->hasDefaultArgument()) {
Douglas Gregordba32632009-02-10 19:49:53 +00001542 OldDefaultLoc = OldNonTypeParm->getDefaultArgumentLoc();
1543 NewDefaultLoc = NewNonTypeParm->getDefaultArgumentLoc();
1544 SawDefaultArgument = true;
1545 RedundantDefaultArg = true;
1546 PreviousDefaultArgLoc = NewDefaultLoc;
1547 } else if (OldNonTypeParm && OldNonTypeParm->hasDefaultArgument()) {
1548 // Merge the default argument from the old declaration to the
1549 // new declaration.
Richard Smith1469b912015-06-10 00:29:03 +00001550 NewNonTypeParm->setInheritedDefaultArgument(Context, OldNonTypeParm);
Douglas Gregordba32632009-02-10 19:49:53 +00001551 PreviousDefaultArgLoc = OldNonTypeParm->getDefaultArgumentLoc();
1552 } else if (NewNonTypeParm->hasDefaultArgument()) {
1553 SawDefaultArgument = true;
1554 PreviousDefaultArgLoc = NewNonTypeParm->getDefaultArgumentLoc();
1555 } else if (SawDefaultArgument)
Mike Stump11289f42009-09-09 15:08:12 +00001556 MissingDefaultArg = true;
Mike Stump12b8ce12009-08-04 21:02:39 +00001557 } else {
Douglas Gregordba32632009-02-10 19:49:53 +00001558 TemplateTemplateParmDecl *NewTemplateParm
1559 = cast<TemplateTemplateParmDecl>(*NewParam);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001560
Douglas Gregor38ee75e2010-12-16 15:36:43 +00001561 // Check for unexpanded parameter packs, recursively.
Douglas Gregor4a2a8f72011-10-25 03:44:56 +00001562 if (::DiagnoseUnexpandedParameterPacks(*this, NewTemplateParm)) {
Douglas Gregor38ee75e2010-12-16 15:36:43 +00001563 Invalid = true;
1564 continue;
1565 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001566
David Blaikie651c73c2011-10-19 05:19:50 +00001567 // Check the presence of a default argument here.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001568 if (NewTemplateParm->hasDefaultArgument() &&
1569 DiagnoseDefaultTemplateArgument(*this, TPC,
1570 NewTemplateParm->getLocation(),
Douglas Gregored5731f2009-11-25 17:50:39 +00001571 NewTemplateParm->getDefaultArgument().getSourceRange()))
Abramo Bagnara656e3002010-06-09 09:26:05 +00001572 NewTemplateParm->removeDefaultArgument();
Douglas Gregored5731f2009-11-25 17:50:39 +00001573
1574 // Merge default arguments for template template parameters
Douglas Gregordba32632009-02-10 19:49:53 +00001575 TemplateTemplateParmDecl *OldTemplateParm
Craig Topperc3ec1492014-05-26 06:22:03 +00001576 = OldParams? cast<TemplateTemplateParmDecl>(*OldParam) : nullptr;
Douglas Gregor0018cdc2011-01-05 16:19:19 +00001577 if (NewTemplateParm->isParameterPack()) {
1578 assert(!NewTemplateParm->hasDefaultArgument() &&
1579 "Parameter packs can't have a default argument!");
Richard Smith1fde8ec2012-09-07 02:06:42 +00001580 if (!NewTemplateParm->isPackExpansion())
1581 SawParameterPack = true;
Richard Smithe7bd6de2015-06-10 20:30:23 +00001582 } else if (OldTemplateParm &&
1583 hasVisibleDefaultArgument(OldTemplateParm) &&
1584 NewTemplateParm->hasDefaultArgument()) {
Douglas Gregor9167f8b2009-11-11 01:00:40 +00001585 OldDefaultLoc = OldTemplateParm->getDefaultArgument().getLocation();
1586 NewDefaultLoc = NewTemplateParm->getDefaultArgument().getLocation();
Douglas Gregordba32632009-02-10 19:49:53 +00001587 SawDefaultArgument = true;
1588 RedundantDefaultArg = true;
1589 PreviousDefaultArgLoc = NewDefaultLoc;
1590 } else if (OldTemplateParm && OldTemplateParm->hasDefaultArgument()) {
1591 // Merge the default argument from the old declaration to the
1592 // new declaration.
Richard Smith1469b912015-06-10 00:29:03 +00001593 NewTemplateParm->setInheritedDefaultArgument(Context, OldTemplateParm);
Douglas Gregor9167f8b2009-11-11 01:00:40 +00001594 PreviousDefaultArgLoc
1595 = OldTemplateParm->getDefaultArgument().getLocation();
Douglas Gregordba32632009-02-10 19:49:53 +00001596 } else if (NewTemplateParm->hasDefaultArgument()) {
1597 SawDefaultArgument = true;
Douglas Gregor9167f8b2009-11-11 01:00:40 +00001598 PreviousDefaultArgLoc
1599 = NewTemplateParm->getDefaultArgument().getLocation();
Douglas Gregordba32632009-02-10 19:49:53 +00001600 } else if (SawDefaultArgument)
Mike Stump11289f42009-09-09 15:08:12 +00001601 MissingDefaultArg = true;
Douglas Gregordba32632009-02-10 19:49:53 +00001602 }
1603
Richard Smith1fde8ec2012-09-07 02:06:42 +00001604 // C++11 [temp.param]p11:
David Blaikie651c73c2011-10-19 05:19:50 +00001605 // If a template parameter of a primary class template or alias template
1606 // is a template parameter pack, it shall be the last template parameter.
Richard Smith1fde8ec2012-09-07 02:06:42 +00001607 if (SawParameterPack && (NewParam + 1) != NewParamEnd &&
Larisse Voufo39a1e502013-08-06 01:03:05 +00001608 (TPC == TPC_ClassTemplate || TPC == TPC_VarTemplate ||
1609 TPC == TPC_TypeAliasTemplate)) {
David Blaikie651c73c2011-10-19 05:19:50 +00001610 Diag((*NewParam)->getLocation(),
1611 diag::err_template_param_pack_must_be_last_template_parameter);
1612 Invalid = true;
1613 }
1614
Douglas Gregordba32632009-02-10 19:49:53 +00001615 if (RedundantDefaultArg) {
1616 // C++ [temp.param]p12:
1617 // A template-parameter shall not be given default arguments
1618 // by two different declarations in the same scope.
1619 Diag(NewDefaultLoc, diag::err_template_param_default_arg_redefinition);
1620 Diag(OldDefaultLoc, diag::note_template_param_prev_default_arg);
1621 Invalid = true;
Douglas Gregor8b481d82011-02-04 03:57:22 +00001622 } else if (MissingDefaultArg && TPC != TPC_FunctionTemplate) {
Douglas Gregordba32632009-02-10 19:49:53 +00001623 // C++ [temp.param]p11:
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001624 // If a template-parameter of a class template has a default
1625 // template-argument, each subsequent template-parameter shall either
Douglas Gregor7dba51f2011-01-05 16:21:17 +00001626 // have a default template-argument supplied or be a template parameter
1627 // pack.
Mike Stump11289f42009-09-09 15:08:12 +00001628 Diag((*NewParam)->getLocation(),
Douglas Gregordba32632009-02-10 19:49:53 +00001629 diag::err_template_param_default_arg_missing);
1630 Diag(PreviousDefaultArgLoc, diag::note_template_param_prev_default_arg);
1631 Invalid = true;
Douglas Gregor0693def2011-01-27 01:40:17 +00001632 RemoveDefaultArguments = true;
Douglas Gregordba32632009-02-10 19:49:53 +00001633 }
1634
1635 // If we have an old template parameter list that we're merging
1636 // in, move on to the next parameter.
1637 if (OldParams)
1638 ++OldParam;
1639 }
1640
Douglas Gregor0693def2011-01-27 01:40:17 +00001641 // We were missing some default arguments at the end of the list, so remove
1642 // all of the default arguments.
1643 if (RemoveDefaultArguments) {
1644 for (TemplateParameterList::iterator NewParam = NewParams->begin(),
1645 NewParamEnd = NewParams->end();
1646 NewParam != NewParamEnd; ++NewParam) {
1647 if (TemplateTypeParmDecl *TTP = dyn_cast<TemplateTypeParmDecl>(*NewParam))
1648 TTP->removeDefaultArgument();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001649 else if (NonTypeTemplateParmDecl *NTTP
Douglas Gregor0693def2011-01-27 01:40:17 +00001650 = dyn_cast<NonTypeTemplateParmDecl>(*NewParam))
1651 NTTP->removeDefaultArgument();
1652 else
1653 cast<TemplateTemplateParmDecl>(*NewParam)->removeDefaultArgument();
1654 }
1655 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001656
Douglas Gregordba32632009-02-10 19:49:53 +00001657 return Invalid;
1658}
Douglas Gregord32e0282009-02-09 23:23:08 +00001659
John McCalla020a012010-10-20 05:44:58 +00001660namespace {
1661
1662/// A class which looks for a use of a certain level of template
1663/// parameter.
1664struct DependencyChecker : RecursiveASTVisitor<DependencyChecker> {
1665 typedef RecursiveASTVisitor<DependencyChecker> super;
1666
1667 unsigned Depth;
Richard Smith43a833b2017-01-09 23:54:33 +00001668 bool FindLessThanDepth;
Richard Smith57aae072016-12-28 02:37:25 +00001669
1670 // Whether we're looking for a use of a template parameter that makes the
1671 // overall construct type-dependent / a dependent type. This is strictly
1672 // best-effort for now; we may fail to match at all for a dependent type
1673 // in some cases if this is set.
1674 bool IgnoreNonTypeDependent;
1675
John McCalla020a012010-10-20 05:44:58 +00001676 bool Match;
Richard Smith6056d5e2014-02-09 00:54:43 +00001677 SourceLocation MatchLoc;
1678
Richard Smith43a833b2017-01-09 23:54:33 +00001679 DependencyChecker(unsigned Depth, bool IgnoreNonTypeDependent,
1680 bool FindLessThanDepth = false)
1681 : Depth(Depth), FindLessThanDepth(FindLessThanDepth),
1682 IgnoreNonTypeDependent(IgnoreNonTypeDependent), Match(false) {}
John McCalla020a012010-10-20 05:44:58 +00001683
Richard Smith57aae072016-12-28 02:37:25 +00001684 DependencyChecker(TemplateParameterList *Params, bool IgnoreNonTypeDependent)
Richard Smith43a833b2017-01-09 23:54:33 +00001685 : DependencyChecker(Params->getDepth(), IgnoreNonTypeDependent) {}
John McCalla020a012010-10-20 05:44:58 +00001686
Richard Smith6056d5e2014-02-09 00:54:43 +00001687 bool Matches(unsigned ParmDepth, SourceLocation Loc = SourceLocation()) {
Richard Smith43a833b2017-01-09 23:54:33 +00001688 if (FindLessThanDepth ^ (ParmDepth >= Depth)) {
John McCalla020a012010-10-20 05:44:58 +00001689 Match = true;
Richard Smith6056d5e2014-02-09 00:54:43 +00001690 MatchLoc = Loc;
John McCalla020a012010-10-20 05:44:58 +00001691 return true;
1692 }
1693 return false;
1694 }
1695
Richard Smith57aae072016-12-28 02:37:25 +00001696 bool TraverseStmt(Stmt *S, DataRecursionQueue *Q = nullptr) {
1697 // Prune out non-type-dependent expressions if requested. This can
1698 // sometimes result in us failing to find a template parameter reference
1699 // (if a value-dependent expression creates a dependent type), but this
1700 // mode is best-effort only.
1701 if (auto *E = dyn_cast_or_null<Expr>(S))
1702 if (IgnoreNonTypeDependent && !E->isTypeDependent())
1703 return true;
1704 return super::TraverseStmt(S, Q);
1705 }
1706
1707 bool TraverseTypeLoc(TypeLoc TL) {
1708 if (IgnoreNonTypeDependent && !TL.isNull() &&
1709 !TL.getType()->isDependentType())
1710 return true;
1711 return super::TraverseTypeLoc(TL);
1712 }
1713
Richard Smith6056d5e2014-02-09 00:54:43 +00001714 bool VisitTemplateTypeParmTypeLoc(TemplateTypeParmTypeLoc TL) {
1715 return !Matches(TL.getTypePtr()->getDepth(), TL.getNameLoc());
1716 }
1717
John McCalla020a012010-10-20 05:44:58 +00001718 bool VisitTemplateTypeParmType(const TemplateTypeParmType *T) {
Richard Smith57aae072016-12-28 02:37:25 +00001719 // For a best-effort search, keep looking until we find a location.
1720 return IgnoreNonTypeDependent || !Matches(T->getDepth());
John McCalla020a012010-10-20 05:44:58 +00001721 }
1722
1723 bool TraverseTemplateName(TemplateName N) {
1724 if (TemplateTemplateParmDecl *PD =
1725 dyn_cast_or_null<TemplateTemplateParmDecl>(N.getAsTemplateDecl()))
Richard Smith6056d5e2014-02-09 00:54:43 +00001726 if (Matches(PD->getDepth()))
1727 return false;
John McCalla020a012010-10-20 05:44:58 +00001728 return super::TraverseTemplateName(N);
1729 }
1730
1731 bool VisitDeclRefExpr(DeclRefExpr *E) {
1732 if (NonTypeTemplateParmDecl *PD =
Richard Smith6056d5e2014-02-09 00:54:43 +00001733 dyn_cast<NonTypeTemplateParmDecl>(E->getDecl()))
1734 if (Matches(PD->getDepth(), E->getExprLoc()))
John McCalla020a012010-10-20 05:44:58 +00001735 return false;
John McCalla020a012010-10-20 05:44:58 +00001736 return super::VisitDeclRefExpr(E);
1737 }
Richard Smith6056d5e2014-02-09 00:54:43 +00001738
1739 bool VisitSubstTemplateTypeParmType(const SubstTemplateTypeParmType *T) {
1740 return TraverseType(T->getReplacementType());
1741 }
1742
1743 bool
1744 VisitSubstTemplateTypeParmPackType(const SubstTemplateTypeParmPackType *T) {
1745 return TraverseTemplateArgument(T->getArgumentPack());
1746 }
1747
Douglas Gregora6a7e3c2011-05-13 00:34:01 +00001748 bool TraverseInjectedClassNameType(const InjectedClassNameType *T) {
1749 return TraverseType(T->getInjectedSpecializationType());
1750 }
John McCalla020a012010-10-20 05:44:58 +00001751};
Eugene Zelenko1ced5092016-02-12 22:53:10 +00001752} // end anonymous namespace
John McCalla020a012010-10-20 05:44:58 +00001753
Douglas Gregor972fe532011-05-10 18:27:06 +00001754/// Determines whether a given type depends on the given parameter
John McCalla020a012010-10-20 05:44:58 +00001755/// list.
1756static bool
Douglas Gregor972fe532011-05-10 18:27:06 +00001757DependsOnTemplateParameters(QualType T, TemplateParameterList *Params) {
Richard Smith57aae072016-12-28 02:37:25 +00001758 DependencyChecker Checker(Params, /*IgnoreNonTypeDependent*/false);
Douglas Gregor972fe532011-05-10 18:27:06 +00001759 Checker.TraverseType(T);
John McCalla020a012010-10-20 05:44:58 +00001760 return Checker.Match;
1761}
1762
Douglas Gregor972fe532011-05-10 18:27:06 +00001763// Find the source range corresponding to the named type in the given
1764// nested-name-specifier, if any.
1765static SourceRange getRangeOfTypeInNestedNameSpecifier(ASTContext &Context,
1766 QualType T,
1767 const CXXScopeSpec &SS) {
1768 NestedNameSpecifierLoc NNSLoc(SS.getScopeRep(), SS.location_data());
1769 while (NestedNameSpecifier *NNS = NNSLoc.getNestedNameSpecifier()) {
1770 if (const Type *CurType = NNS->getAsType()) {
1771 if (Context.hasSameUnqualifiedType(T, QualType(CurType, 0)))
1772 return NNSLoc.getTypeLoc().getSourceRange();
1773 } else
1774 break;
Simon Pilgrim6905d222016-12-30 22:55:33 +00001775
Douglas Gregor972fe532011-05-10 18:27:06 +00001776 NNSLoc = NNSLoc.getPrefix();
1777 }
Simon Pilgrim6905d222016-12-30 22:55:33 +00001778
Douglas Gregor972fe532011-05-10 18:27:06 +00001779 return SourceRange();
1780}
1781
Mike Stump11289f42009-09-09 15:08:12 +00001782/// \brief Match the given template parameter lists to the given scope
Douglas Gregord8d297c2009-07-21 23:53:31 +00001783/// specifier, returning the template parameter list that applies to the
1784/// name.
1785///
1786/// \param DeclStartLoc the start of the declaration that has a scope
1787/// specifier or a template parameter list.
Mike Stump11289f42009-09-09 15:08:12 +00001788///
Douglas Gregor972fe532011-05-10 18:27:06 +00001789/// \param DeclLoc The location of the declaration itself.
1790///
Douglas Gregord8d297c2009-07-21 23:53:31 +00001791/// \param SS the scope specifier that will be matched to the given template
1792/// parameter lists. This scope specifier precedes a qualified name that is
1793/// being declared.
1794///
Richard Smith4b55a9c2014-04-17 03:29:33 +00001795/// \param TemplateId The template-id following the scope specifier, if there
1796/// is one. Used to check for a missing 'template<>'.
1797///
Douglas Gregord8d297c2009-07-21 23:53:31 +00001798/// \param ParamLists the template parameter lists, from the outermost to the
1799/// innermost template parameter lists.
1800///
John McCalle820e5e2010-04-13 20:37:33 +00001801/// \param IsFriend Whether to apply the slightly different rules for
1802/// matching template parameters to scope specifiers in friend
1803/// declarations.
1804///
Douglas Gregor5c0405d2009-10-07 22:35:40 +00001805/// \param IsExplicitSpecialization will be set true if the entity being
1806/// declared is an explicit specialization, false otherwise.
1807///
Mike Stump11289f42009-09-09 15:08:12 +00001808/// \returns the template parameter list, if any, that corresponds to the
Douglas Gregord8d297c2009-07-21 23:53:31 +00001809/// name that is preceded by the scope specifier @p SS. This template
Abramo Bagnara60804e12011-03-18 15:16:37 +00001810/// parameter list may have template parameters (if we're declaring a
Mike Stump11289f42009-09-09 15:08:12 +00001811/// template) or may have no template parameters (if we're declaring a
Abramo Bagnara60804e12011-03-18 15:16:37 +00001812/// template specialization), or may be NULL (if what we're declaring isn't
Douglas Gregord8d297c2009-07-21 23:53:31 +00001813/// itself a template).
Robert Wilhelmf2d2e8f2013-07-21 15:20:44 +00001814TemplateParameterList *Sema::MatchTemplateParametersToScopeSpecifier(
1815 SourceLocation DeclStartLoc, SourceLocation DeclLoc, const CXXScopeSpec &SS,
Richard Smith4b55a9c2014-04-17 03:29:33 +00001816 TemplateIdAnnotation *TemplateId,
Robert Wilhelmf2d2e8f2013-07-21 15:20:44 +00001817 ArrayRef<TemplateParameterList *> ParamLists, bool IsFriend,
1818 bool &IsExplicitSpecialization, bool &Invalid) {
Douglas Gregor5c0405d2009-10-07 22:35:40 +00001819 IsExplicitSpecialization = false;
Douglas Gregor972fe532011-05-10 18:27:06 +00001820 Invalid = false;
Simon Pilgrim6905d222016-12-30 22:55:33 +00001821
Douglas Gregor972fe532011-05-10 18:27:06 +00001822 // The sequence of nested types to which we will match up the template
1823 // parameter lists. We first build this list by starting with the type named
1824 // by the nested-name-specifier and walking out until we run out of types.
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001825 SmallVector<QualType, 4> NestedTypes;
Douglas Gregor972fe532011-05-10 18:27:06 +00001826 QualType T;
Douglas Gregor9d07dfa2011-05-15 17:27:27 +00001827 if (SS.getScopeRep()) {
Simon Pilgrim6905d222016-12-30 22:55:33 +00001828 if (CXXRecordDecl *Record
Douglas Gregor9d07dfa2011-05-15 17:27:27 +00001829 = dyn_cast_or_null<CXXRecordDecl>(computeDeclContext(SS, true)))
1830 T = Context.getTypeDeclType(Record);
1831 else
1832 T = QualType(SS.getScopeRep()->getAsType(), 0);
1833 }
Simon Pilgrim6905d222016-12-30 22:55:33 +00001834
Douglas Gregor972fe532011-05-10 18:27:06 +00001835 // If we found an explicit specialization that prevents us from needing
1836 // 'template<>' headers, this will be set to the location of that
1837 // explicit specialization.
1838 SourceLocation ExplicitSpecLoc;
Simon Pilgrim6905d222016-12-30 22:55:33 +00001839
Douglas Gregor972fe532011-05-10 18:27:06 +00001840 while (!T.isNull()) {
1841 NestedTypes.push_back(T);
Simon Pilgrim6905d222016-12-30 22:55:33 +00001842
Douglas Gregor972fe532011-05-10 18:27:06 +00001843 // Retrieve the parent of a record type.
1844 if (CXXRecordDecl *Record = T->getAsCXXRecordDecl()) {
1845 // If this type is an explicit specialization, we're done.
1846 if (ClassTemplateSpecializationDecl *Spec
1847 = dyn_cast<ClassTemplateSpecializationDecl>(Record)) {
Simon Pilgrim6905d222016-12-30 22:55:33 +00001848 if (!isa<ClassTemplatePartialSpecializationDecl>(Spec) &&
Douglas Gregor972fe532011-05-10 18:27:06 +00001849 Spec->getSpecializationKind() == TSK_ExplicitSpecialization) {
1850 ExplicitSpecLoc = Spec->getLocation();
1851 break;
Douglas Gregor65911492009-11-23 12:11:45 +00001852 }
Douglas Gregor972fe532011-05-10 18:27:06 +00001853 } else if (Record->getTemplateSpecializationKind()
1854 == TSK_ExplicitSpecialization) {
1855 ExplicitSpecLoc = Record->getLocation();
John McCalle820e5e2010-04-13 20:37:33 +00001856 break;
1857 }
Simon Pilgrim6905d222016-12-30 22:55:33 +00001858
Douglas Gregor972fe532011-05-10 18:27:06 +00001859 if (TypeDecl *Parent = dyn_cast<TypeDecl>(Record->getParent()))
1860 T = Context.getTypeDeclType(Parent);
1861 else
1862 T = QualType();
1863 continue;
Simon Pilgrim6905d222016-12-30 22:55:33 +00001864 }
1865
Douglas Gregor972fe532011-05-10 18:27:06 +00001866 if (const TemplateSpecializationType *TST
1867 = T->getAs<TemplateSpecializationType>()) {
1868 if (TemplateDecl *Template = TST->getTemplateName().getAsTemplateDecl()) {
1869 if (TypeDecl *Parent = dyn_cast<TypeDecl>(Template->getDeclContext()))
1870 T = Context.getTypeDeclType(Parent);
1871 else
1872 T = QualType();
Simon Pilgrim6905d222016-12-30 22:55:33 +00001873 continue;
Douglas Gregord8d297c2009-07-21 23:53:31 +00001874 }
Douglas Gregor972fe532011-05-10 18:27:06 +00001875 }
Simon Pilgrim6905d222016-12-30 22:55:33 +00001876
Douglas Gregor972fe532011-05-10 18:27:06 +00001877 // Look one step prior in a dependent template specialization type.
1878 if (const DependentTemplateSpecializationType *DependentTST
1879 = T->getAs<DependentTemplateSpecializationType>()) {
1880 if (NestedNameSpecifier *NNS = DependentTST->getQualifier())
1881 T = QualType(NNS->getAsType(), 0);
1882 else
1883 T = QualType();
1884 continue;
1885 }
Simon Pilgrim6905d222016-12-30 22:55:33 +00001886
Douglas Gregor972fe532011-05-10 18:27:06 +00001887 // Look one step prior in a dependent name type.
1888 if (const DependentNameType *DependentName = T->getAs<DependentNameType>()){
1889 if (NestedNameSpecifier *NNS = DependentName->getQualifier())
1890 T = QualType(NNS->getAsType(), 0);
1891 else
1892 T = QualType();
1893 continue;
1894 }
Simon Pilgrim6905d222016-12-30 22:55:33 +00001895
Douglas Gregor972fe532011-05-10 18:27:06 +00001896 // Retrieve the parent of an enumeration type.
1897 if (const EnumType *EnumT = T->getAs<EnumType>()) {
1898 // FIXME: Forward-declared enums require a TSK_ExplicitSpecialization
1899 // check here.
1900 EnumDecl *Enum = EnumT->getDecl();
Simon Pilgrim6905d222016-12-30 22:55:33 +00001901
Douglas Gregor972fe532011-05-10 18:27:06 +00001902 // Get to the parent type.
1903 if (TypeDecl *Parent = dyn_cast<TypeDecl>(Enum->getParent()))
1904 T = Context.getTypeDeclType(Parent);
1905 else
Simon Pilgrim6905d222016-12-30 22:55:33 +00001906 T = QualType();
Douglas Gregor972fe532011-05-10 18:27:06 +00001907 continue;
Douglas Gregord8d297c2009-07-21 23:53:31 +00001908 }
Mike Stump11289f42009-09-09 15:08:12 +00001909
Douglas Gregor972fe532011-05-10 18:27:06 +00001910 T = QualType();
1911 }
1912 // Reverse the nested types list, since we want to traverse from the outermost
1913 // to the innermost while checking template-parameter-lists.
1914 std::reverse(NestedTypes.begin(), NestedTypes.end());
Douglas Gregor15301382009-07-30 17:40:51 +00001915
Douglas Gregor972fe532011-05-10 18:27:06 +00001916 // C++0x [temp.expl.spec]p17:
1917 // A member or a member template may be nested within many
1918 // enclosing class templates. In an explicit specialization for
1919 // such a member, the member declaration shall be preceded by a
1920 // template<> for each enclosing class template that is
1921 // explicitly specialized.
Douglas Gregor522d5eb2011-06-06 15:22:55 +00001922 bool SawNonEmptyTemplateParameterList = false;
Richard Smith11a80dc2014-04-17 03:52:20 +00001923
NAKAMURA Takumide4077a2014-04-17 08:57:09 +00001924 auto CheckExplicitSpecialization = [&](SourceRange Range, bool Recovery) {
Richard Smith11a80dc2014-04-17 03:52:20 +00001925 if (SawNonEmptyTemplateParameterList) {
1926 Diag(DeclLoc, diag::err_specialize_member_of_template)
1927 << !Recovery << Range;
1928 Invalid = true;
1929 IsExplicitSpecialization = false;
1930 return true;
1931 }
1932
1933 return false;
1934 };
1935
1936 auto DiagnoseMissingExplicitSpecialization = [&] (SourceRange Range) {
1937 // Check that we can have an explicit specialization here.
1938 if (CheckExplicitSpecialization(Range, true))
1939 return true;
1940
1941 // We don't have a template header, but we should.
1942 SourceLocation ExpectedTemplateLoc;
1943 if (!ParamLists.empty())
1944 ExpectedTemplateLoc = ParamLists[0]->getTemplateLoc();
1945 else
1946 ExpectedTemplateLoc = DeclStartLoc;
1947
1948 Diag(DeclLoc, diag::err_template_spec_needs_header)
1949 << Range
1950 << FixItHint::CreateInsertion(ExpectedTemplateLoc, "template<> ");
1951 return false;
1952 };
1953
Douglas Gregor972fe532011-05-10 18:27:06 +00001954 unsigned ParamIdx = 0;
1955 for (unsigned TypeIdx = 0, NumTypes = NestedTypes.size(); TypeIdx != NumTypes;
1956 ++TypeIdx) {
1957 T = NestedTypes[TypeIdx];
Simon Pilgrim6905d222016-12-30 22:55:33 +00001958
Douglas Gregor972fe532011-05-10 18:27:06 +00001959 // Whether we expect a 'template<>' header.
1960 bool NeedEmptyTemplateHeader = false;
1961
1962 // Whether we expect a template header with parameters.
1963 bool NeedNonemptyTemplateHeader = false;
Simon Pilgrim6905d222016-12-30 22:55:33 +00001964
Douglas Gregor972fe532011-05-10 18:27:06 +00001965 // For a dependent type, the set of template parameters that we
1966 // expect to see.
Craig Topperc3ec1492014-05-26 06:22:03 +00001967 TemplateParameterList *ExpectedTemplateParams = nullptr;
Douglas Gregor972fe532011-05-10 18:27:06 +00001968
Douglas Gregor373af9b2011-05-11 23:26:17 +00001969 // C++0x [temp.expl.spec]p15:
Simon Pilgrim6905d222016-12-30 22:55:33 +00001970 // A member or a member template may be nested within many enclosing
1971 // class templates. In an explicit specialization for such a member, the
1972 // member declaration shall be preceded by a template<> for each
Douglas Gregor373af9b2011-05-11 23:26:17 +00001973 // enclosing class template that is explicitly specialized.
Douglas Gregor972fe532011-05-10 18:27:06 +00001974 if (CXXRecordDecl *Record = T->getAsCXXRecordDecl()) {
1975 if (ClassTemplatePartialSpecializationDecl *Partial
1976 = dyn_cast<ClassTemplatePartialSpecializationDecl>(Record)) {
1977 ExpectedTemplateParams = Partial->getTemplateParameters();
1978 NeedNonemptyTemplateHeader = true;
1979 } else if (Record->isDependentType()) {
1980 if (Record->getDescribedClassTemplate()) {
John McCall2408e322010-04-27 00:57:59 +00001981 ExpectedTemplateParams = Record->getDescribedClassTemplate()
Douglas Gregor972fe532011-05-10 18:27:06 +00001982 ->getTemplateParameters();
1983 NeedNonemptyTemplateHeader = true;
1984 }
1985 } else if (ClassTemplateSpecializationDecl *Spec
1986 = dyn_cast<ClassTemplateSpecializationDecl>(Record)) {
1987 // C++0x [temp.expl.spec]p4:
1988 // Members of an explicitly specialized class template are defined
Simon Pilgrim6905d222016-12-30 22:55:33 +00001989 // in the same manner as members of normal classes, and not using
1990 // the template<> syntax.
Douglas Gregor972fe532011-05-10 18:27:06 +00001991 if (Spec->getSpecializationKind() != TSK_ExplicitSpecialization)
1992 NeedEmptyTemplateHeader = true;
1993 else
Douglas Gregorb32e8252011-06-01 22:37:07 +00001994 continue;
Douglas Gregor972fe532011-05-10 18:27:06 +00001995 } else if (Record->getTemplateSpecializationKind()) {
Simon Pilgrim6905d222016-12-30 22:55:33 +00001996 if (Record->getTemplateSpecializationKind()
Douglas Gregor373af9b2011-05-11 23:26:17 +00001997 != TSK_ExplicitSpecialization &&
1998 TypeIdx == NumTypes - 1)
1999 IsExplicitSpecialization = true;
Simon Pilgrim6905d222016-12-30 22:55:33 +00002000
Douglas Gregor373af9b2011-05-11 23:26:17 +00002001 continue;
Douglas Gregor972fe532011-05-10 18:27:06 +00002002 }
2003 } else if (const TemplateSpecializationType *TST
2004 = T->getAs<TemplateSpecializationType>()) {
Nico Weber28900612015-01-30 02:35:21 +00002005 if (TemplateDecl *Template = TST->getTemplateName().getAsTemplateDecl()) {
Douglas Gregor972fe532011-05-10 18:27:06 +00002006 ExpectedTemplateParams = Template->getTemplateParameters();
Simon Pilgrim6905d222016-12-30 22:55:33 +00002007 NeedNonemptyTemplateHeader = true;
Douglas Gregor972fe532011-05-10 18:27:06 +00002008 }
2009 } else if (T->getAs<DependentTemplateSpecializationType>()) {
2010 // FIXME: We actually could/should check the template arguments here
2011 // against the corresponding template parameter list.
2012 NeedNonemptyTemplateHeader = false;
Simon Pilgrim6905d222016-12-30 22:55:33 +00002013 }
2014
Douglas Gregor522d5eb2011-06-06 15:22:55 +00002015 // C++ [temp.expl.spec]p16:
Simon Pilgrim6905d222016-12-30 22:55:33 +00002016 // In an explicit specialization declaration for a member of a class
2017 // template or a member template that ap- pears in namespace scope, the
2018 // member template and some of its enclosing class templates may remain
2019 // unspecialized, except that the declaration shall not explicitly
2020 // specialize a class member template if its en- closing class templates
Douglas Gregor522d5eb2011-06-06 15:22:55 +00002021 // are not explicitly specialized as well.
Robert Wilhelmf2d2e8f2013-07-21 15:20:44 +00002022 if (ParamIdx < ParamLists.size()) {
Douglas Gregor522d5eb2011-06-06 15:22:55 +00002023 if (ParamLists[ParamIdx]->size() == 0) {
NAKAMURA Takumide4077a2014-04-17 08:57:09 +00002024 if (CheckExplicitSpecialization(ParamLists[ParamIdx]->getSourceRange(),
2025 false))
Craig Topperc3ec1492014-05-26 06:22:03 +00002026 return nullptr;
Douglas Gregor522d5eb2011-06-06 15:22:55 +00002027 } else
2028 SawNonEmptyTemplateParameterList = true;
2029 }
Simon Pilgrim6905d222016-12-30 22:55:33 +00002030
Douglas Gregor972fe532011-05-10 18:27:06 +00002031 if (NeedEmptyTemplateHeader) {
2032 // If we're on the last of the types, and we need a 'template<>' header
2033 // here, then it's an explicit specialization.
2034 if (TypeIdx == NumTypes - 1)
2035 IsExplicitSpecialization = true;
Robert Wilhelmf2d2e8f2013-07-21 15:20:44 +00002036
2037 if (ParamIdx < ParamLists.size()) {
Douglas Gregor972fe532011-05-10 18:27:06 +00002038 if (ParamLists[ParamIdx]->size() > 0) {
2039 // The header has template parameters when it shouldn't. Complain.
Simon Pilgrim6905d222016-12-30 22:55:33 +00002040 Diag(ParamLists[ParamIdx]->getTemplateLoc(),
Douglas Gregor972fe532011-05-10 18:27:06 +00002041 diag::err_template_param_list_matches_nontemplate)
2042 << T
2043 << SourceRange(ParamLists[ParamIdx]->getLAngleLoc(),
2044 ParamLists[ParamIdx]->getRAngleLoc())
2045 << getRangeOfTypeInNestedNameSpecifier(Context, T, SS);
2046 Invalid = true;
Craig Topperc3ec1492014-05-26 06:22:03 +00002047 return nullptr;
Douglas Gregor972fe532011-05-10 18:27:06 +00002048 }
Richard Smith11a80dc2014-04-17 03:52:20 +00002049
Douglas Gregor972fe532011-05-10 18:27:06 +00002050 // Consume this template header.
2051 ++ParamIdx;
2052 continue;
Douglas Gregor972fe532011-05-10 18:27:06 +00002053 }
Richard Smith11a80dc2014-04-17 03:52:20 +00002054
2055 if (!IsFriend)
2056 if (DiagnoseMissingExplicitSpecialization(
2057 getRangeOfTypeInNestedNameSpecifier(Context, T, SS)))
Craig Topperc3ec1492014-05-26 06:22:03 +00002058 return nullptr;
Richard Smith11a80dc2014-04-17 03:52:20 +00002059
Douglas Gregor972fe532011-05-10 18:27:06 +00002060 continue;
2061 }
Richard Smith11a80dc2014-04-17 03:52:20 +00002062
Douglas Gregor972fe532011-05-10 18:27:06 +00002063 if (NeedNonemptyTemplateHeader) {
2064 // In friend declarations we can have template-ids which don't
2065 // depend on the corresponding template parameter lists. But
2066 // assume that empty parameter lists are supposed to match this
2067 // template-id.
2068 if (IsFriend && T->isDependentType()) {
Robert Wilhelmf2d2e8f2013-07-21 15:20:44 +00002069 if (ParamIdx < ParamLists.size() &&
Douglas Gregor972fe532011-05-10 18:27:06 +00002070 DependsOnTemplateParameters(T, ParamLists[ParamIdx]))
Craig Topperc3ec1492014-05-26 06:22:03 +00002071 ExpectedTemplateParams = nullptr;
Simon Pilgrim6905d222016-12-30 22:55:33 +00002072 else
Douglas Gregor972fe532011-05-10 18:27:06 +00002073 continue;
Mike Stump11289f42009-09-09 15:08:12 +00002074 }
Douglas Gregored5731f2009-11-25 17:50:39 +00002075
Robert Wilhelmf2d2e8f2013-07-21 15:20:44 +00002076 if (ParamIdx < ParamLists.size()) {
2077 // Check the template parameter list, if we can.
Douglas Gregor972fe532011-05-10 18:27:06 +00002078 if (ExpectedTemplateParams &&
2079 !TemplateParameterListsAreEqual(ParamLists[ParamIdx],
2080 ExpectedTemplateParams,
2081 true, TPL_TemplateMatch))
2082 Invalid = true;
Craig Topperc3ec1492014-05-26 06:22:03 +00002083
Douglas Gregor972fe532011-05-10 18:27:06 +00002084 if (!Invalid &&
Craig Topperc3ec1492014-05-26 06:22:03 +00002085 CheckTemplateParameterList(ParamLists[ParamIdx], nullptr,
Douglas Gregor972fe532011-05-10 18:27:06 +00002086 TPC_ClassTemplateMember))
2087 Invalid = true;
Simon Pilgrim6905d222016-12-30 22:55:33 +00002088
Douglas Gregor972fe532011-05-10 18:27:06 +00002089 ++ParamIdx;
2090 continue;
2091 }
Simon Pilgrim6905d222016-12-30 22:55:33 +00002092
Douglas Gregor972fe532011-05-10 18:27:06 +00002093 Diag(DeclLoc, diag::err_template_spec_needs_template_parameters)
2094 << T
2095 << getRangeOfTypeInNestedNameSpecifier(Context, T, SS);
2096 Invalid = true;
2097 continue;
2098 }
Douglas Gregord8d297c2009-07-21 23:53:31 +00002099 }
Richard Smith4b55a9c2014-04-17 03:29:33 +00002100
Douglas Gregord8d297c2009-07-21 23:53:31 +00002101 // If there were at least as many template-ids as there were template
2102 // parameter lists, then there are no template parameter lists remaining for
2103 // the declaration itself.
Richard Smith4b55a9c2014-04-17 03:29:33 +00002104 if (ParamIdx >= ParamLists.size()) {
2105 if (TemplateId && !IsFriend) {
Richard Smith4b55a9c2014-04-17 03:29:33 +00002106 // We don't have a template header for the declaration itself, but we
2107 // should.
Richard Smith4b55a9c2014-04-17 03:29:33 +00002108 IsExplicitSpecialization = true;
Richard Smith11a80dc2014-04-17 03:52:20 +00002109 DiagnoseMissingExplicitSpecialization(SourceRange(TemplateId->LAngleLoc,
2110 TemplateId->RAngleLoc));
Richard Smith4b55a9c2014-04-17 03:29:33 +00002111
2112 // Fabricate an empty template parameter list for the invented header.
2113 return TemplateParameterList::Create(Context, SourceLocation(),
David Majnemer902f8c62015-12-27 07:16:27 +00002114 SourceLocation(), None,
Hubert Tonge4a0c0e2016-07-30 22:33:34 +00002115 SourceLocation(), nullptr);
Richard Smith4b55a9c2014-04-17 03:29:33 +00002116 }
2117
Craig Topperc3ec1492014-05-26 06:22:03 +00002118 return nullptr;
Richard Smith4b55a9c2014-04-17 03:29:33 +00002119 }
Mike Stump11289f42009-09-09 15:08:12 +00002120
Douglas Gregord8d297c2009-07-21 23:53:31 +00002121 // If there were too many template parameter lists, complain about that now.
Robert Wilhelmf2d2e8f2013-07-21 15:20:44 +00002122 if (ParamIdx < ParamLists.size() - 1) {
Douglas Gregor972fe532011-05-10 18:27:06 +00002123 bool HasAnyExplicitSpecHeader = false;
2124 bool AllExplicitSpecHeaders = true;
Robert Wilhelmf2d2e8f2013-07-21 15:20:44 +00002125 for (unsigned I = ParamIdx, E = ParamLists.size() - 1; I != E; ++I) {
Douglas Gregor972fe532011-05-10 18:27:06 +00002126 if (ParamLists[I]->size() == 0)
2127 HasAnyExplicitSpecHeader = true;
2128 else
2129 AllExplicitSpecHeaders = false;
Douglas Gregord8d297c2009-07-21 23:53:31 +00002130 }
Robert Wilhelmf2d2e8f2013-07-21 15:20:44 +00002131
Douglas Gregor972fe532011-05-10 18:27:06 +00002132 Diag(ParamLists[ParamIdx]->getTemplateLoc(),
Robert Wilhelmf2d2e8f2013-07-21 15:20:44 +00002133 AllExplicitSpecHeaders ? diag::warn_template_spec_extra_headers
2134 : diag::err_template_spec_extra_headers)
2135 << SourceRange(ParamLists[ParamIdx]->getTemplateLoc(),
2136 ParamLists[ParamLists.size() - 2]->getRAngleLoc());
Douglas Gregor972fe532011-05-10 18:27:06 +00002137
2138 // If there was a specialization somewhere, such that 'template<>' is
2139 // not required, and there were any 'template<>' headers, note where the
2140 // specialization occurred.
2141 if (ExplicitSpecLoc.isValid() && HasAnyExplicitSpecHeader)
Simon Pilgrim6905d222016-12-30 22:55:33 +00002142 Diag(ExplicitSpecLoc,
Douglas Gregor972fe532011-05-10 18:27:06 +00002143 diag::note_explicit_template_spec_does_not_need_header)
2144 << NestedTypes.back();
Simon Pilgrim6905d222016-12-30 22:55:33 +00002145
Douglas Gregor972fe532011-05-10 18:27:06 +00002146 // We have a template parameter list with no corresponding scope, which
2147 // means that the resulting template declaration can't be instantiated
2148 // properly (we'll end up with dependent nodes when we shouldn't).
2149 if (!AllExplicitSpecHeaders)
2150 Invalid = true;
Douglas Gregord8d297c2009-07-21 23:53:31 +00002151 }
Mike Stump11289f42009-09-09 15:08:12 +00002152
Douglas Gregor522d5eb2011-06-06 15:22:55 +00002153 // C++ [temp.expl.spec]p16:
Simon Pilgrim6905d222016-12-30 22:55:33 +00002154 // In an explicit specialization declaration for a member of a class
2155 // template or a member template that ap- pears in namespace scope, the
2156 // member template and some of its enclosing class templates may remain
2157 // unspecialized, except that the declaration shall not explicitly
2158 // specialize a class member template if its en- closing class templates
Douglas Gregor522d5eb2011-06-06 15:22:55 +00002159 // are not explicitly specialized as well.
Richard Smith11a80dc2014-04-17 03:52:20 +00002160 if (ParamLists.back()->size() == 0 &&
NAKAMURA Takumide4077a2014-04-17 08:57:09 +00002161 CheckExplicitSpecialization(ParamLists[ParamIdx]->getSourceRange(),
2162 false))
Craig Topperc3ec1492014-05-26 06:22:03 +00002163 return nullptr;
Richard Smith11a80dc2014-04-17 03:52:20 +00002164
Douglas Gregord8d297c2009-07-21 23:53:31 +00002165 // Return the last template parameter list, which corresponds to the
2166 // entity being declared.
Robert Wilhelmf2d2e8f2013-07-21 15:20:44 +00002167 return ParamLists.back();
Douglas Gregord8d297c2009-07-21 23:53:31 +00002168}
2169
Douglas Gregor8b6070b2011-03-04 21:37:14 +00002170void Sema::NoteAllFoundTemplates(TemplateName Name) {
2171 if (TemplateDecl *Template = Name.getAsTemplateDecl()) {
2172 Diag(Template->getLocation(), diag::note_template_declared_here)
Larisse Voufo39a1e502013-08-06 01:03:05 +00002173 << (isa<FunctionTemplateDecl>(Template)
2174 ? 0
2175 : isa<ClassTemplateDecl>(Template)
2176 ? 1
2177 : isa<VarTemplateDecl>(Template)
2178 ? 2
2179 : isa<TypeAliasTemplateDecl>(Template) ? 3 : 4)
2180 << Template->getDeclName();
Douglas Gregor8b6070b2011-03-04 21:37:14 +00002181 return;
2182 }
Simon Pilgrim6905d222016-12-30 22:55:33 +00002183
Douglas Gregor8b6070b2011-03-04 21:37:14 +00002184 if (OverloadedTemplateStorage *OST = Name.getAsOverloadedTemplate()) {
Simon Pilgrim6905d222016-12-30 22:55:33 +00002185 for (OverloadedTemplateStorage::iterator I = OST->begin(),
Douglas Gregor8b6070b2011-03-04 21:37:14 +00002186 IEnd = OST->end();
2187 I != IEnd; ++I)
2188 Diag((*I)->getLocation(), diag::note_template_declared_here)
2189 << 0 << (*I)->getDeclName();
Simon Pilgrim6905d222016-12-30 22:55:33 +00002190
Douglas Gregor8b6070b2011-03-04 21:37:14 +00002191 return;
2192 }
2193}
2194
David Majnemerd9b1a4f2015-11-04 03:40:30 +00002195static QualType
2196checkBuiltinTemplateIdType(Sema &SemaRef, BuiltinTemplateDecl *BTD,
2197 const SmallVectorImpl<TemplateArgument> &Converted,
2198 SourceLocation TemplateLoc,
2199 TemplateArgumentListInfo &TemplateArgs) {
2200 ASTContext &Context = SemaRef.getASTContext();
2201 switch (BTD->getBuiltinTemplateKind()) {
Eric Fiselier6ad68552016-07-01 01:24:09 +00002202 case BTK__make_integer_seq: {
David Majnemerd9b1a4f2015-11-04 03:40:30 +00002203 // Specializations of __make_integer_seq<S, T, N> are treated like
2204 // S<T, 0, ..., N-1>.
2205
2206 // C++14 [inteseq.intseq]p1:
2207 // T shall be an integer type.
2208 if (!Converted[1].getAsType()->isIntegralType(Context)) {
2209 SemaRef.Diag(TemplateArgs[1].getLocation(),
2210 diag::err_integer_sequence_integral_element_type);
2211 return QualType();
2212 }
2213
2214 // C++14 [inteseq.make]p1:
2215 // If N is negative the program is ill-formed.
2216 TemplateArgument NumArgsArg = Converted[2];
2217 llvm::APSInt NumArgs = NumArgsArg.getAsIntegral();
2218 if (NumArgs < 0) {
2219 SemaRef.Diag(TemplateArgs[2].getLocation(),
2220 diag::err_integer_sequence_negative_length);
2221 return QualType();
2222 }
2223
2224 QualType ArgTy = NumArgsArg.getIntegralType();
2225 TemplateArgumentListInfo SyntheticTemplateArgs;
2226 // The type argument gets reused as the first template argument in the
2227 // synthetic template argument list.
2228 SyntheticTemplateArgs.addArgument(TemplateArgs[1]);
2229 // Expand N into 0 ... N-1.
2230 for (llvm::APSInt I(NumArgs.getBitWidth(), NumArgs.isUnsigned());
2231 I < NumArgs; ++I) {
2232 TemplateArgument TA(Context, I, ArgTy);
Richard Smith7873de02016-08-11 22:25:46 +00002233 SyntheticTemplateArgs.addArgument(SemaRef.getTrivialTemplateArgumentLoc(
2234 TA, ArgTy, TemplateArgs[2].getLocation()));
David Majnemerd9b1a4f2015-11-04 03:40:30 +00002235 }
2236 // The first template argument will be reused as the template decl that
2237 // our synthetic template arguments will be applied to.
2238 return SemaRef.CheckTemplateIdType(Converted[0].getAsTemplate(),
2239 TemplateLoc, SyntheticTemplateArgs);
2240 }
Eric Fiselier6ad68552016-07-01 01:24:09 +00002241
2242 case BTK__type_pack_element:
2243 // Specializations of
2244 // __type_pack_element<Index, T_1, ..., T_N>
2245 // are treated like T_Index.
2246 assert(Converted.size() == 2 &&
2247 "__type_pack_element should be given an index and a parameter pack");
2248
2249 // If the Index is out of bounds, the program is ill-formed.
2250 TemplateArgument IndexArg = Converted[0], Ts = Converted[1];
2251 llvm::APSInt Index = IndexArg.getAsIntegral();
2252 assert(Index >= 0 && "the index used with __type_pack_element should be of "
2253 "type std::size_t, and hence be non-negative");
2254 if (Index >= Ts.pack_size()) {
2255 SemaRef.Diag(TemplateArgs[0].getLocation(),
2256 diag::err_type_pack_element_out_of_bounds);
2257 return QualType();
2258 }
2259
2260 // We simply return the type at index `Index`.
2261 auto Nth = std::next(Ts.pack_begin(), Index.getExtValue());
2262 return Nth->getAsType();
2263 }
David Majnemerd9b1a4f2015-11-04 03:40:30 +00002264 llvm_unreachable("unexpected BuiltinTemplateDecl!");
2265}
2266
Douglas Gregordc572a32009-03-30 22:58:21 +00002267QualType Sema::CheckTemplateIdType(TemplateName Name,
2268 SourceLocation TemplateLoc,
Douglas Gregor739b107a2011-03-03 02:41:12 +00002269 TemplateArgumentListInfo &TemplateArgs) {
John McCalld9dfe3a2011-06-30 08:33:18 +00002270 DependentTemplateName *DTN
2271 = Name.getUnderlying().getAsDependentTemplateName();
Richard Smith3f1b5d02011-05-05 21:57:07 +00002272 if (DTN && DTN->isIdentifier())
2273 // When building a template-id where the template-name is dependent,
2274 // assume the template is a type template. Either our assumption is
2275 // correct, or the code is ill-formed and will be diagnosed when the
2276 // dependent name is substituted.
2277 return Context.getDependentTemplateSpecializationType(ETK_None,
2278 DTN->getQualifier(),
2279 DTN->getIdentifier(),
2280 TemplateArgs);
2281
Douglas Gregordc572a32009-03-30 22:58:21 +00002282 TemplateDecl *Template = Name.getAsTemplateDecl();
Richard Smith8f658062013-12-04 00:56:29 +00002283 if (!Template || isa<FunctionTemplateDecl>(Template) ||
2284 isa<VarTemplateDecl>(Template)) {
Douglas Gregor8b6070b2011-03-04 21:37:14 +00002285 // We might have a substituted template template parameter pack. If so,
2286 // build a template specialization type for it.
2287 if (Name.getAsSubstTemplateTemplateParmPack())
2288 return Context.getTemplateSpecializationType(Name, TemplateArgs);
Richard Smith3f1b5d02011-05-05 21:57:07 +00002289
Douglas Gregor8b6070b2011-03-04 21:37:14 +00002290 Diag(TemplateLoc, diag::err_template_id_not_a_type)
2291 << Name;
2292 NoteAllFoundTemplates(Name);
2293 return QualType();
Douglas Gregorb67535d2009-03-31 00:43:58 +00002294 }
Douglas Gregordc572a32009-03-30 22:58:21 +00002295
Douglas Gregorc40290e2009-03-09 23:48:35 +00002296 // Check that the template argument list is well-formed for this
2297 // template.
Chris Lattner0e62c1c2011-07-23 10:55:15 +00002298 SmallVector<TemplateArgument, 4> Converted;
John McCall6b51f282009-11-23 01:53:49 +00002299 if (CheckTemplateArgumentList(Template, TemplateLoc, TemplateArgs,
Richard Smith83b11aa2014-01-09 02:22:22 +00002300 false, Converted))
Douglas Gregorc40290e2009-03-09 23:48:35 +00002301 return QualType();
2302
Douglas Gregorc40290e2009-03-09 23:48:35 +00002303 QualType CanonType;
2304
Douglas Gregor678d76c2011-07-01 01:22:09 +00002305 bool InstantiationDependent = false;
Richard Smith83b11aa2014-01-09 02:22:22 +00002306 if (TypeAliasTemplateDecl *AliasTemplate =
2307 dyn_cast<TypeAliasTemplateDecl>(Template)) {
Richard Smith3f1b5d02011-05-05 21:57:07 +00002308 // Find the canonical type for this type alias template specialization.
2309 TypeAliasDecl *Pattern = AliasTemplate->getTemplatedDecl();
2310 if (Pattern->isInvalidDecl())
2311 return QualType();
2312
2313 TemplateArgumentList TemplateArgs(TemplateArgumentList::OnStack,
David Majnemer8b622692016-07-03 21:17:51 +00002314 Converted);
Richard Smith3f1b5d02011-05-05 21:57:07 +00002315
2316 // Only substitute for the innermost template argument list.
2317 MultiLevelTemplateArgumentList TemplateArgLists;
Richard Smith0c4a34b2011-05-14 15:04:18 +00002318 TemplateArgLists.addOuterTemplateArguments(&TemplateArgs);
Richard Smith5e96d832011-05-12 00:06:17 +00002319 unsigned Depth = AliasTemplate->getTemplateParameters()->getDepth();
2320 for (unsigned I = 0; I < Depth; ++I)
Richard Smith841d8b22013-05-17 03:04:50 +00002321 TemplateArgLists.addOuterTemplateArguments(None);
Richard Smith3f1b5d02011-05-05 21:57:07 +00002322
Richard Smith802c4b72012-08-23 06:16:52 +00002323 LocalInstantiationScope Scope(*this);
Richard Smith3f1b5d02011-05-05 21:57:07 +00002324 InstantiatingTemplate Inst(*this, TemplateLoc, Template);
Alp Tokerd4a72d52013-10-08 08:09:04 +00002325 if (Inst.isInvalid())
Richard Smith8a874c92012-07-08 02:38:24 +00002326 return QualType();
Richard Smith802c4b72012-08-23 06:16:52 +00002327
Richard Smith3f1b5d02011-05-05 21:57:07 +00002328 CanonType = SubstType(Pattern->getUnderlyingType(),
2329 TemplateArgLists, AliasTemplate->getLocation(),
2330 AliasTemplate->getDeclName());
2331 if (CanonType.isNull())
2332 return QualType();
2333 } else if (Name.isDependent() ||
2334 TemplateSpecializationType::anyDependentTemplateArguments(
Douglas Gregor678d76c2011-07-01 01:22:09 +00002335 TemplateArgs, InstantiationDependent)) {
Douglas Gregorc40290e2009-03-09 23:48:35 +00002336 // This class template specialization is a dependent
2337 // type. Therefore, its canonical type is another class template
2338 // specialization type that contains all of the converted
2339 // arguments in canonical form. This ensures that, e.g., A<T> and
2340 // A<T, T> have identical types when A is declared as:
2341 //
2342 // template<typename T, typename U = T> struct A;
Vassil Vassilev2999d0e2017-01-10 09:09:09 +00002343 CanonType = Context.getCanonicalTemplateSpecializationType(Name, Converted);
John McCall2408e322010-04-27 00:57:59 +00002344
2345 // This might work out to be a current instantiation, in which
2346 // case the canonical type needs to be the InjectedClassNameType.
2347 //
2348 // TODO: in theory this could be a simple hashtable lookup; most
2349 // changes to CurContext don't change the set of current
2350 // instantiations.
2351 if (isa<ClassTemplateDecl>(Template)) {
2352 for (DeclContext *Ctx = CurContext; Ctx; Ctx = Ctx->getLookupParent()) {
2353 // If we get out to a namespace, we're done.
2354 if (Ctx->isFileContext()) break;
2355
2356 // If this isn't a record, keep looking.
2357 CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(Ctx);
2358 if (!Record) continue;
2359
2360 // Look for one of the two cases with InjectedClassNameTypes
2361 // and check whether it's the same template.
2362 if (!isa<ClassTemplatePartialSpecializationDecl>(Record) &&
2363 !Record->getDescribedClassTemplate())
2364 continue;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002365
John McCall2408e322010-04-27 00:57:59 +00002366 // Fetch the injected class name type and check whether its
2367 // injected type is equal to the type we just built.
2368 QualType ICNT = Context.getTypeDeclType(Record);
2369 QualType Injected = cast<InjectedClassNameType>(ICNT)
2370 ->getInjectedSpecializationType();
2371
2372 if (CanonType != Injected->getCanonicalTypeInternal())
2373 continue;
2374
2375 // If so, the canonical type of this TST is the injected
2376 // class name type of the record we just found.
2377 assert(ICNT.isCanonical());
2378 CanonType = ICNT;
John McCall2408e322010-04-27 00:57:59 +00002379 break;
2380 }
2381 }
Mike Stump11289f42009-09-09 15:08:12 +00002382 } else if (ClassTemplateDecl *ClassTemplate
Douglas Gregordc572a32009-03-30 22:58:21 +00002383 = dyn_cast<ClassTemplateDecl>(Template)) {
Douglas Gregorc40290e2009-03-09 23:48:35 +00002384 // Find the class template specialization declaration that
2385 // corresponds to these arguments.
Craig Topperc3ec1492014-05-26 06:22:03 +00002386 void *InsertPos = nullptr;
Douglas Gregorc40290e2009-03-09 23:48:35 +00002387 ClassTemplateSpecializationDecl *Decl
Craig Topper7e0daca2014-06-26 04:58:53 +00002388 = ClassTemplate->findSpecialization(Converted, InsertPos);
Douglas Gregorc40290e2009-03-09 23:48:35 +00002389 if (!Decl) {
2390 // This is the first time we have referenced this class template
2391 // specialization. Create the canonical declaration and add it to
2392 // the set of specializations.
Mike Stump11289f42009-09-09 15:08:12 +00002393 Decl = ClassTemplateSpecializationDecl::Create(Context,
Douglas Gregore9029562010-05-06 00:28:52 +00002394 ClassTemplate->getTemplatedDecl()->getTagKind(),
2395 ClassTemplate->getDeclContext(),
Abramo Bagnarafd3a4552011-10-03 20:34:03 +00002396 ClassTemplate->getTemplatedDecl()->getLocStart(),
Abramo Bagnara29c2d462011-03-09 14:09:51 +00002397 ClassTemplate->getLocation(),
Douglas Gregor1ccc8412010-11-07 23:05:16 +00002398 ClassTemplate,
David Majnemer8b622692016-07-03 21:17:51 +00002399 Converted, nullptr);
Argyrios Kyrtzidis47470f22010-07-20 13:59:28 +00002400 ClassTemplate->AddSpecialization(Decl, InsertPos);
Abramo Bagnara02b95532012-09-05 09:05:18 +00002401 if (ClassTemplate->isOutOfLine())
2402 Decl->setLexicalDeclContext(ClassTemplate->getLexicalDeclContext());
Douglas Gregorc40290e2009-03-09 23:48:35 +00002403 }
2404
Chandler Carruth2acfb222013-09-27 22:14:40 +00002405 // Diagnose uses of this specialization.
2406 (void)DiagnoseUseOfDecl(Decl, TemplateLoc);
2407
Douglas Gregorc40290e2009-03-09 23:48:35 +00002408 CanonType = Context.getTypeDeclType(Decl);
John McCalle78aac42010-03-10 03:28:59 +00002409 assert(isa<RecordType>(CanonType) &&
2410 "type of non-dependent specialization is not a RecordType");
David Majnemerd9b1a4f2015-11-04 03:40:30 +00002411 } else if (auto *BTD = dyn_cast<BuiltinTemplateDecl>(Template)) {
2412 CanonType = checkBuiltinTemplateIdType(*this, BTD, Converted, TemplateLoc,
2413 TemplateArgs);
Douglas Gregorc40290e2009-03-09 23:48:35 +00002414 }
Mike Stump11289f42009-09-09 15:08:12 +00002415
Douglas Gregorc40290e2009-03-09 23:48:35 +00002416 // Build the fully-sugared type for this class template
2417 // specialization, which refers back to the class template
2418 // specialization we created or found.
John McCall30576cd2010-06-13 09:25:03 +00002419 return Context.getTemplateSpecializationType(Name, TemplateArgs, CanonType);
Douglas Gregorc40290e2009-03-09 23:48:35 +00002420}
2421
John McCallfaf5fb42010-08-26 23:41:50 +00002422TypeResult
Abramo Bagnara48c05be2012-02-06 14:41:24 +00002423Sema::ActOnTemplateIdType(CXXScopeSpec &SS, SourceLocation TemplateKWLoc,
Douglas Gregore7c20652011-03-02 00:47:37 +00002424 TemplateTy TemplateD, SourceLocation TemplateLoc,
Mike Stump11289f42009-09-09 15:08:12 +00002425 SourceLocation LAngleLoc,
Douglas Gregordc572a32009-03-30 22:58:21 +00002426 ASTTemplateArgsPtr TemplateArgsIn,
Abramo Bagnara4244b432012-01-27 08:46:19 +00002427 SourceLocation RAngleLoc,
2428 bool IsCtorOrDtorName) {
Douglas Gregore7c20652011-03-02 00:47:37 +00002429 if (SS.isInvalid())
2430 return true;
2431
Serge Pavlov9ddb76e2013-08-27 13:15:56 +00002432 TemplateName Template = TemplateD.get();
Douglas Gregor8bf42052009-02-09 18:46:07 +00002433
Douglas Gregorc40290e2009-03-09 23:48:35 +00002434 // Translate the parser's template argument list in our AST format.
John McCall6b51f282009-11-23 01:53:49 +00002435 TemplateArgumentListInfo TemplateArgs(LAngleLoc, RAngleLoc);
Douglas Gregorb53edfb2009-11-10 19:49:08 +00002436 translateTemplateArguments(TemplateArgsIn, TemplateArgs);
Douglas Gregord32e0282009-02-09 23:23:08 +00002437
Douglas Gregor5a064722011-02-28 17:23:35 +00002438 if (DependentTemplateName *DTN = Template.getAsDependentTemplateName()) {
Abramo Bagnara4244b432012-01-27 08:46:19 +00002439 QualType T
2440 = Context.getDependentTemplateSpecializationType(ETK_None,
2441 DTN->getQualifier(),
2442 DTN->getIdentifier(),
2443 TemplateArgs);
2444 // Build type-source information.
Douglas Gregor5a064722011-02-28 17:23:35 +00002445 TypeLocBuilder TLB;
2446 DependentTemplateSpecializationTypeLoc SpecTL
2447 = TLB.push<DependentTemplateSpecializationTypeLoc>(T);
Abramo Bagnara48c05be2012-02-06 14:41:24 +00002448 SpecTL.setElaboratedKeywordLoc(SourceLocation());
2449 SpecTL.setQualifierLoc(SS.getWithLocInContext(Context));
Abramo Bagnarae0a70b22012-02-06 22:45:07 +00002450 SpecTL.setTemplateKeywordLoc(TemplateKWLoc);
Abramo Bagnara48c05be2012-02-06 14:41:24 +00002451 SpecTL.setTemplateNameLoc(TemplateLoc);
Douglas Gregor5a064722011-02-28 17:23:35 +00002452 SpecTL.setLAngleLoc(LAngleLoc);
2453 SpecTL.setRAngleLoc(RAngleLoc);
Douglas Gregor5a064722011-02-28 17:23:35 +00002454 for (unsigned I = 0, N = SpecTL.getNumArgs(); I != N; ++I)
2455 SpecTL.setArgLocInfo(I, TemplateArgs[I].getLocInfo());
2456 return CreateParsedType(T, TLB.getTypeSourceInfo(Context, T));
2457 }
Simon Pilgrim6905d222016-12-30 22:55:33 +00002458
John McCall6b51f282009-11-23 01:53:49 +00002459 QualType Result = CheckTemplateIdType(Template, TemplateLoc, TemplateArgs);
Douglas Gregorfe3d7d02009-04-01 21:51:26 +00002460
2461 if (Result.isNull())
2462 return true;
2463
Douglas Gregore7c20652011-03-02 00:47:37 +00002464 // Build type-source information.
Abramo Bagnara48c05be2012-02-06 14:41:24 +00002465 TypeLocBuilder TLB;
Douglas Gregore7c20652011-03-02 00:47:37 +00002466 TemplateSpecializationTypeLoc SpecTL
2467 = TLB.push<TemplateSpecializationTypeLoc>(Result);
Abramo Bagnara48c05be2012-02-06 14:41:24 +00002468 SpecTL.setTemplateKeywordLoc(TemplateKWLoc);
Douglas Gregore7c20652011-03-02 00:47:37 +00002469 SpecTL.setTemplateNameLoc(TemplateLoc);
2470 SpecTL.setLAngleLoc(LAngleLoc);
2471 SpecTL.setRAngleLoc(RAngleLoc);
2472 for (unsigned i = 0, e = SpecTL.getNumArgs(); i != e; ++i)
2473 SpecTL.setArgLocInfo(i, TemplateArgs[i].getLocInfo());
John McCall0ad16662009-10-29 08:12:44 +00002474
Abramo Bagnara4244b432012-01-27 08:46:19 +00002475 // NOTE: avoid constructing an ElaboratedTypeLoc if this is a
2476 // constructor or destructor name (in such a case, the scope specifier
2477 // will be attached to the enclosing Decl or Expr node).
2478 if (SS.isNotEmpty() && !IsCtorOrDtorName) {
Douglas Gregore7c20652011-03-02 00:47:37 +00002479 // Create an elaborated-type-specifier containing the nested-name-specifier.
2480 Result = Context.getElaboratedType(ETK_None, SS.getScopeRep(), Result);
2481 ElaboratedTypeLoc ElabTL = TLB.push<ElaboratedTypeLoc>(Result);
Abramo Bagnara9033e2b2012-02-06 19:09:27 +00002482 ElabTL.setElaboratedKeywordLoc(SourceLocation());
Douglas Gregore7c20652011-03-02 00:47:37 +00002483 ElabTL.setQualifierLoc(SS.getWithLocInContext(Context));
2484 }
Simon Pilgrim6905d222016-12-30 22:55:33 +00002485
Douglas Gregore7c20652011-03-02 00:47:37 +00002486 return CreateParsedType(Result, TLB.getTypeSourceInfo(Context, Result));
John McCalld8fe9af2009-09-08 17:47:29 +00002487}
John McCall06f6fe8d2009-09-04 01:14:41 +00002488
Douglas Gregore7c20652011-03-02 00:47:37 +00002489TypeResult Sema::ActOnTagTemplateIdType(TagUseKind TUK,
John McCallfaf5fb42010-08-26 23:41:50 +00002490 TypeSpecifierType TagSpec,
Douglas Gregore7c20652011-03-02 00:47:37 +00002491 SourceLocation TagLoc,
2492 CXXScopeSpec &SS,
Abramo Bagnara48c05be2012-02-06 14:41:24 +00002493 SourceLocation TemplateKWLoc,
2494 TemplateTy TemplateD,
Douglas Gregore7c20652011-03-02 00:47:37 +00002495 SourceLocation TemplateLoc,
2496 SourceLocation LAngleLoc,
2497 ASTTemplateArgsPtr TemplateArgsIn,
2498 SourceLocation RAngleLoc) {
Serge Pavlov9ddb76e2013-08-27 13:15:56 +00002499 TemplateName Template = TemplateD.get();
Simon Pilgrim6905d222016-12-30 22:55:33 +00002500
Douglas Gregore7c20652011-03-02 00:47:37 +00002501 // Translate the parser's template argument list in our AST format.
2502 TemplateArgumentListInfo TemplateArgs(LAngleLoc, RAngleLoc);
2503 translateTemplateArguments(TemplateArgsIn, TemplateArgs);
Simon Pilgrim6905d222016-12-30 22:55:33 +00002504
Douglas Gregore7c20652011-03-02 00:47:37 +00002505 // Determine the tag kind
Abramo Bagnara6150c882010-05-11 21:36:43 +00002506 TagTypeKind TagKind = TypeWithKeyword::getTagTypeKindForTypeSpec(TagSpec);
Douglas Gregore7c20652011-03-02 00:47:37 +00002507 ElaboratedTypeKeyword Keyword
2508 = TypeWithKeyword::getKeywordForTagTypeKind(TagKind);
Mike Stump11289f42009-09-09 15:08:12 +00002509
Douglas Gregore7c20652011-03-02 00:47:37 +00002510 if (DependentTemplateName *DTN = Template.getAsDependentTemplateName()) {
2511 QualType T = Context.getDependentTemplateSpecializationType(Keyword,
Simon Pilgrim6905d222016-12-30 22:55:33 +00002512 DTN->getQualifier(),
2513 DTN->getIdentifier(),
Douglas Gregore7c20652011-03-02 00:47:37 +00002514 TemplateArgs);
Simon Pilgrim6905d222016-12-30 22:55:33 +00002515
2516 // Build type-source information.
Douglas Gregore7c20652011-03-02 00:47:37 +00002517 TypeLocBuilder TLB;
2518 DependentTemplateSpecializationTypeLoc SpecTL
Abramo Bagnara48c05be2012-02-06 14:41:24 +00002519 = TLB.push<DependentTemplateSpecializationTypeLoc>(T);
2520 SpecTL.setElaboratedKeywordLoc(TagLoc);
2521 SpecTL.setQualifierLoc(SS.getWithLocInContext(Context));
Abramo Bagnarae0a70b22012-02-06 22:45:07 +00002522 SpecTL.setTemplateKeywordLoc(TemplateKWLoc);
Abramo Bagnara48c05be2012-02-06 14:41:24 +00002523 SpecTL.setTemplateNameLoc(TemplateLoc);
Douglas Gregore7c20652011-03-02 00:47:37 +00002524 SpecTL.setLAngleLoc(LAngleLoc);
2525 SpecTL.setRAngleLoc(RAngleLoc);
Douglas Gregore7c20652011-03-02 00:47:37 +00002526 for (unsigned I = 0, N = SpecTL.getNumArgs(); I != N; ++I)
2527 SpecTL.setArgLocInfo(I, TemplateArgs[I].getLocInfo());
2528 return CreateParsedType(T, TLB.getTypeSourceInfo(Context, T));
2529 }
Richard Smith3f1b5d02011-05-05 21:57:07 +00002530
2531 if (TypeAliasTemplateDecl *TAT =
2532 dyn_cast_or_null<TypeAliasTemplateDecl>(Template.getAsTemplateDecl())) {
2533 // C++0x [dcl.type.elab]p2:
2534 // If the identifier resolves to a typedef-name or the simple-template-id
2535 // resolves to an alias template specialization, the
2536 // elaborated-type-specifier is ill-formed.
Reid Kleckner1a4ab7e2016-12-09 19:47:58 +00002537 Diag(TemplateLoc, diag::err_tag_reference_non_tag)
2538 << TAT << NTK_TypeAliasTemplate << TagKind;
Richard Smith3f1b5d02011-05-05 21:57:07 +00002539 Diag(TAT->getLocation(), diag::note_declared_at);
2540 }
Simon Pilgrim6905d222016-12-30 22:55:33 +00002541
Douglas Gregore7c20652011-03-02 00:47:37 +00002542 QualType Result = CheckTemplateIdType(Template, TemplateLoc, TemplateArgs);
2543 if (Result.isNull())
Matt Beaumont-Gay045bde42011-08-25 23:22:24 +00002544 return TypeResult(true);
Simon Pilgrim6905d222016-12-30 22:55:33 +00002545
Douglas Gregore7c20652011-03-02 00:47:37 +00002546 // Check the tag kind
2547 if (const RecordType *RT = Result->getAs<RecordType>()) {
John McCalld8fe9af2009-09-08 17:47:29 +00002548 RecordDecl *D = RT->getDecl();
Simon Pilgrim6905d222016-12-30 22:55:33 +00002549
John McCalld8fe9af2009-09-08 17:47:29 +00002550 IdentifierInfo *Id = D->getIdentifier();
2551 assert(Id && "templated class must have an identifier");
Simon Pilgrim6905d222016-12-30 22:55:33 +00002552
Richard Trieucaa33d32011-06-10 03:11:26 +00002553 if (!isAcceptableTagRedeclaration(D, TagKind, TUK == TUK_Definition,
Justin Bognerc6ecb7c2015-07-10 23:05:47 +00002554 TagLoc, Id)) {
John McCalld8fe9af2009-09-08 17:47:29 +00002555 Diag(TagLoc, diag::err_use_with_wrong_tag)
Douglas Gregore7c20652011-03-02 00:47:37 +00002556 << Result
Douglas Gregora771f462010-03-31 17:46:05 +00002557 << FixItHint::CreateReplacement(SourceRange(TagLoc), D->getKindName());
John McCall7f41d982009-09-11 04:59:25 +00002558 Diag(D->getLocation(), diag::note_previous_use);
John McCall06f6fe8d2009-09-04 01:14:41 +00002559 }
2560 }
Abramo Bagnara48c05be2012-02-06 14:41:24 +00002561
Douglas Gregore7c20652011-03-02 00:47:37 +00002562 // Provide source-location information for the template specialization.
2563 TypeLocBuilder TLB;
2564 TemplateSpecializationTypeLoc SpecTL
2565 = TLB.push<TemplateSpecializationTypeLoc>(Result);
Abramo Bagnara48c05be2012-02-06 14:41:24 +00002566 SpecTL.setTemplateKeywordLoc(TemplateKWLoc);
Douglas Gregore7c20652011-03-02 00:47:37 +00002567 SpecTL.setTemplateNameLoc(TemplateLoc);
2568 SpecTL.setLAngleLoc(LAngleLoc);
2569 SpecTL.setRAngleLoc(RAngleLoc);
2570 for (unsigned i = 0, e = SpecTL.getNumArgs(); i != e; ++i)
2571 SpecTL.setArgLocInfo(i, TemplateArgs[i].getLocInfo());
John McCall06f6fe8d2009-09-04 01:14:41 +00002572
Douglas Gregore7c20652011-03-02 00:47:37 +00002573 // Construct an elaborated type containing the nested-name-specifier (if any)
Abramo Bagnara48c05be2012-02-06 14:41:24 +00002574 // and tag keyword.
Douglas Gregore7c20652011-03-02 00:47:37 +00002575 Result = Context.getElaboratedType(Keyword, SS.getScopeRep(), Result);
2576 ElaboratedTypeLoc ElabTL = TLB.push<ElaboratedTypeLoc>(Result);
Abramo Bagnara9033e2b2012-02-06 19:09:27 +00002577 ElabTL.setElaboratedKeywordLoc(TagLoc);
Douglas Gregore7c20652011-03-02 00:47:37 +00002578 ElabTL.setQualifierLoc(SS.getWithLocInContext(Context));
2579 return CreateParsedType(Result, TLB.getTypeSourceInfo(Context, Result));
Douglas Gregor8bf42052009-02-09 18:46:07 +00002580}
2581
Larisse Voufo39a1e502013-08-06 01:03:05 +00002582static bool CheckTemplateSpecializationScope(Sema &S, NamedDecl *Specialized,
2583 NamedDecl *PrevDecl,
2584 SourceLocation Loc,
2585 bool IsPartialSpecialization);
2586
2587static TemplateSpecializationKind getTemplateSpecializationKind(Decl *D);
Larisse Voufo39a1e502013-08-06 01:03:05 +00002588
Richard Smith300e0c32013-09-24 04:49:23 +00002589static bool isTemplateArgumentTemplateParameter(
2590 const TemplateArgument &Arg, unsigned Depth, unsigned Index) {
2591 switch (Arg.getKind()) {
2592 case TemplateArgument::Null:
2593 case TemplateArgument::NullPtr:
2594 case TemplateArgument::Integral:
2595 case TemplateArgument::Declaration:
2596 case TemplateArgument::Pack:
2597 case TemplateArgument::TemplateExpansion:
2598 return false;
2599
2600 case TemplateArgument::Type: {
2601 QualType Type = Arg.getAsType();
2602 const TemplateTypeParmType *TPT =
2603 Arg.getAsType()->getAs<TemplateTypeParmType>();
2604 return TPT && !Type.hasQualifiers() &&
2605 TPT->getDepth() == Depth && TPT->getIndex() == Index;
2606 }
2607
2608 case TemplateArgument::Expression: {
2609 DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(Arg.getAsExpr());
2610 if (!DRE || !DRE->getDecl())
2611 return false;
2612 const NonTypeTemplateParmDecl *NTTP =
2613 dyn_cast<NonTypeTemplateParmDecl>(DRE->getDecl());
2614 return NTTP && NTTP->getDepth() == Depth && NTTP->getIndex() == Index;
2615 }
2616
2617 case TemplateArgument::Template:
2618 const TemplateTemplateParmDecl *TTP =
2619 dyn_cast_or_null<TemplateTemplateParmDecl>(
2620 Arg.getAsTemplateOrTemplatePattern().getAsTemplateDecl());
2621 return TTP && TTP->getDepth() == Depth && TTP->getIndex() == Index;
2622 }
2623 llvm_unreachable("unexpected kind of template argument");
2624}
2625
2626static bool isSameAsPrimaryTemplate(TemplateParameterList *Params,
2627 ArrayRef<TemplateArgument> Args) {
2628 if (Params->size() != Args.size())
2629 return false;
2630
2631 unsigned Depth = Params->getDepth();
2632
2633 for (unsigned I = 0, N = Args.size(); I != N; ++I) {
2634 TemplateArgument Arg = Args[I];
2635
2636 // If the parameter is a pack expansion, the argument must be a pack
2637 // whose only element is a pack expansion.
2638 if (Params->getParam(I)->isParameterPack()) {
2639 if (Arg.getKind() != TemplateArgument::Pack || Arg.pack_size() != 1 ||
2640 !Arg.pack_begin()->isPackExpansion())
2641 return false;
2642 Arg = Arg.pack_begin()->getPackExpansionPattern();
2643 }
2644
2645 if (!isTemplateArgumentTemplateParameter(Arg, Depth, I))
2646 return false;
2647 }
2648
2649 return true;
2650}
2651
Richard Smith4b55a9c2014-04-17 03:29:33 +00002652/// Convert the parser's template argument list representation into our form.
2653static TemplateArgumentListInfo
2654makeTemplateArgumentListInfo(Sema &S, TemplateIdAnnotation &TemplateId) {
2655 TemplateArgumentListInfo TemplateArgs(TemplateId.LAngleLoc,
2656 TemplateId.RAngleLoc);
2657 ASTTemplateArgsPtr TemplateArgsPtr(TemplateId.getTemplateArgs(),
2658 TemplateId.NumArgs);
2659 S.translateTemplateArguments(TemplateArgsPtr, TemplateArgs);
2660 return TemplateArgs;
2661}
2662
Richard Smith0e617ec2016-12-27 07:56:27 +00002663template<typename PartialSpecDecl>
2664static void checkMoreSpecializedThanPrimary(Sema &S, PartialSpecDecl *Partial) {
2665 if (Partial->getDeclContext()->isDependentContext())
2666 return;
2667
2668 // FIXME: Get the TDK from deduction in order to provide better diagnostics
2669 // for non-substitution-failure issues?
2670 TemplateDeductionInfo Info(Partial->getLocation());
2671 if (S.isMoreSpecializedThanPrimary(Partial, Info))
2672 return;
2673
2674 auto *Template = Partial->getSpecializedTemplate();
2675 S.Diag(Partial->getLocation(),
Richard Smithfa4a09d2016-12-27 20:03:09 +00002676 diag::ext_partial_spec_not_more_specialized_than_primary)
2677 << isa<VarTemplateDecl>(Template);
Richard Smith0e617ec2016-12-27 07:56:27 +00002678
2679 if (Info.hasSFINAEDiagnostic()) {
2680 PartialDiagnosticAt Diag = {SourceLocation(),
2681 PartialDiagnostic::NullDiagnostic()};
2682 Info.takeSFINAEDiagnostic(Diag);
2683 SmallString<128> SFINAEArgString;
2684 Diag.second.EmitToString(S.getDiagnostics(), SFINAEArgString);
2685 S.Diag(Diag.first,
2686 diag::note_partial_spec_not_more_specialized_than_primary)
2687 << SFINAEArgString;
2688 }
2689
2690 S.Diag(Template->getLocation(), diag::note_template_decl_here);
2691}
2692
Richard Smith57aae072016-12-28 02:37:25 +00002693template<typename PartialSpecDecl>
2694static void checkTemplatePartialSpecialization(Sema &S,
2695 PartialSpecDecl *Partial) {
2696 // C++1z [temp.class.spec]p8: (DR1495)
2697 // - The specialization shall be more specialized than the primary
2698 // template (14.5.5.2).
2699 checkMoreSpecializedThanPrimary(S, Partial);
2700
2701 // C++ [temp.class.spec]p8: (DR1315)
2702 // - Each template-parameter shall appear at least once in the
2703 // template-id outside a non-deduced context.
2704 // C++1z [temp.class.spec.match]p3 (P0127R2)
2705 // If the template arguments of a partial specialization cannot be
2706 // deduced because of the structure of its template-parameter-list
2707 // and the template-id, the program is ill-formed.
2708 auto *TemplateParams = Partial->getTemplateParameters();
2709 llvm::SmallBitVector DeducibleParams(TemplateParams->size());
2710 S.MarkUsedTemplateParameters(Partial->getTemplateArgs(), true,
2711 TemplateParams->getDepth(), DeducibleParams);
2712
2713 if (!DeducibleParams.all()) {
2714 unsigned NumNonDeducible = DeducibleParams.size() - DeducibleParams.count();
2715 S.Diag(Partial->getLocation(), diag::ext_partial_specs_not_deducible)
2716 << isa<VarTemplatePartialSpecializationDecl>(Partial)
2717 << (NumNonDeducible > 1)
2718 << SourceRange(Partial->getLocation(),
2719 Partial->getTemplateArgsAsWritten()->RAngleLoc);
2720 for (unsigned I = 0, N = DeducibleParams.size(); I != N; ++I) {
2721 if (!DeducibleParams[I]) {
2722 NamedDecl *Param = cast<NamedDecl>(TemplateParams->getParam(I));
2723 if (Param->getDeclName())
2724 S.Diag(Param->getLocation(),
2725 diag::note_partial_spec_unused_parameter)
2726 << Param->getDeclName();
2727 else
2728 S.Diag(Param->getLocation(),
2729 diag::note_partial_spec_unused_parameter)
2730 << "(anonymous)";
2731 }
2732 }
2733 }
2734}
2735
2736void Sema::CheckTemplatePartialSpecialization(
2737 ClassTemplatePartialSpecializationDecl *Partial) {
2738 checkTemplatePartialSpecialization(*this, Partial);
2739}
2740
2741void Sema::CheckTemplatePartialSpecialization(
2742 VarTemplatePartialSpecializationDecl *Partial) {
2743 checkTemplatePartialSpecialization(*this, Partial);
2744}
2745
Larisse Voufo39a1e502013-08-06 01:03:05 +00002746DeclResult Sema::ActOnVarTemplateSpecialization(
Richard Smithbeef3452014-01-16 23:39:20 +00002747 Scope *S, Declarator &D, TypeSourceInfo *DI, SourceLocation TemplateKWLoc,
Craig Topperc79e5e32014-10-31 06:57:13 +00002748 TemplateParameterList *TemplateParams, StorageClass SC,
Richard Smithbeef3452014-01-16 23:39:20 +00002749 bool IsPartialSpecialization) {
Larisse Voufo39a1e502013-08-06 01:03:05 +00002750 // D must be variable template id.
2751 assert(D.getName().getKind() == UnqualifiedId::IK_TemplateId &&
2752 "Variable template specialization is declared with a template it.");
2753
2754 TemplateIdAnnotation *TemplateId = D.getName().TemplateId;
Richard Smith4b55a9c2014-04-17 03:29:33 +00002755 TemplateArgumentListInfo TemplateArgs =
2756 makeTemplateArgumentListInfo(*this, *TemplateId);
Larisse Voufo39a1e502013-08-06 01:03:05 +00002757 SourceLocation TemplateNameLoc = D.getIdentifierLoc();
2758 SourceLocation LAngleLoc = TemplateId->LAngleLoc;
2759 SourceLocation RAngleLoc = TemplateId->RAngleLoc;
Richard Smith4b55a9c2014-04-17 03:29:33 +00002760
Richard Smithbeef3452014-01-16 23:39:20 +00002761 TemplateName Name = TemplateId->Template.get();
2762
2763 // The template-id must name a variable template.
2764 VarTemplateDecl *VarTemplate =
Karthik Bhat967c13d2014-05-08 13:16:20 +00002765 dyn_cast_or_null<VarTemplateDecl>(Name.getAsTemplateDecl());
2766 if (!VarTemplate) {
2767 NamedDecl *FnTemplate;
2768 if (auto *OTS = Name.getAsOverloadedTemplate())
2769 FnTemplate = *OTS->begin();
2770 else
2771 FnTemplate = dyn_cast_or_null<FunctionTemplateDecl>(Name.getAsTemplateDecl());
2772 if (FnTemplate)
2773 return Diag(D.getIdentifierLoc(), diag::err_var_spec_no_template_but_method)
2774 << FnTemplate->getDeclName();
Richard Smithbeef3452014-01-16 23:39:20 +00002775 return Diag(D.getIdentifierLoc(), diag::err_var_spec_no_template)
2776 << IsPartialSpecialization;
Karthik Bhat967c13d2014-05-08 13:16:20 +00002777 }
Larisse Voufo39a1e502013-08-06 01:03:05 +00002778
2779 // Check for unexpanded parameter packs in any of the template arguments.
2780 for (unsigned I = 0, N = TemplateArgs.size(); I != N; ++I)
2781 if (DiagnoseUnexpandedParameterPack(TemplateArgs[I],
2782 UPPC_PartialSpecialization))
2783 return true;
2784
2785 // Check that the template argument list is well-formed for this
2786 // template.
2787 SmallVector<TemplateArgument, 4> Converted;
2788 if (CheckTemplateArgumentList(VarTemplate, TemplateNameLoc, TemplateArgs,
2789 false, Converted))
2790 return true;
2791
Larisse Voufo39a1e502013-08-06 01:03:05 +00002792 // Find the variable template (partial) specialization declaration that
2793 // corresponds to these arguments.
2794 if (IsPartialSpecialization) {
Richard Smith57aae072016-12-28 02:37:25 +00002795 if (CheckTemplatePartialSpecializationArgs(TemplateNameLoc, VarTemplate,
2796 TemplateArgs.size(), Converted))
Larisse Voufo39a1e502013-08-06 01:03:05 +00002797 return true;
2798
Richard Smith57aae072016-12-28 02:37:25 +00002799 // FIXME: Move these checks to CheckTemplatePartialSpecializationArgs so we
2800 // also do them during instantiation.
Larisse Voufo39a1e502013-08-06 01:03:05 +00002801 bool InstantiationDependent;
2802 if (!Name.isDependent() &&
2803 !TemplateSpecializationType::anyDependentTemplateArguments(
David Majnemer6fbeee32016-07-07 04:43:07 +00002804 TemplateArgs.arguments(),
Larisse Voufo39a1e502013-08-06 01:03:05 +00002805 InstantiationDependent)) {
2806 Diag(TemplateNameLoc, diag::err_partial_spec_fully_specialized)
2807 << VarTemplate->getDeclName();
2808 IsPartialSpecialization = false;
2809 }
Richard Smith300e0c32013-09-24 04:49:23 +00002810
2811 if (isSameAsPrimaryTemplate(VarTemplate->getTemplateParameters(),
2812 Converted)) {
2813 // C++ [temp.class.spec]p9b3:
2814 //
2815 // -- The argument list of the specialization shall not be identical
2816 // to the implicit argument list of the primary template.
2817 Diag(TemplateNameLoc, diag::err_partial_spec_args_match_primary_template)
2818 << /*variable template*/ 1
2819 << /*is definition*/(SC != SC_Extern && !CurContext->isRecord())
2820 << FixItHint::CreateRemoval(SourceRange(LAngleLoc, RAngleLoc));
2821 // FIXME: Recover from this by treating the declaration as a redeclaration
2822 // of the primary template.
2823 return true;
2824 }
Larisse Voufo39a1e502013-08-06 01:03:05 +00002825 }
2826
Craig Topperc3ec1492014-05-26 06:22:03 +00002827 void *InsertPos = nullptr;
2828 VarTemplateSpecializationDecl *PrevDecl = nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00002829
2830 if (IsPartialSpecialization)
2831 // FIXME: Template parameter list matters too
Craig Topper7e0daca2014-06-26 04:58:53 +00002832 PrevDecl = VarTemplate->findPartialSpecialization(Converted, InsertPos);
Larisse Voufo39a1e502013-08-06 01:03:05 +00002833 else
Craig Topper7e0daca2014-06-26 04:58:53 +00002834 PrevDecl = VarTemplate->findSpecialization(Converted, InsertPos);
Larisse Voufo39a1e502013-08-06 01:03:05 +00002835
Craig Topperc3ec1492014-05-26 06:22:03 +00002836 VarTemplateSpecializationDecl *Specialization = nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00002837
2838 // Check whether we can declare a variable template specialization in
2839 // the current scope.
2840 if (CheckTemplateSpecializationScope(*this, VarTemplate, PrevDecl,
2841 TemplateNameLoc,
2842 IsPartialSpecialization))
2843 return true;
2844
2845 if (PrevDecl && PrevDecl->getSpecializationKind() == TSK_Undeclared) {
2846 // Since the only prior variable template specialization with these
2847 // arguments was referenced but not declared, reuse that
2848 // declaration node as our own, updating its source location and
2849 // the list of outer template parameters to reflect our new declaration.
2850 Specialization = PrevDecl;
2851 Specialization->setLocation(TemplateNameLoc);
Craig Topperc3ec1492014-05-26 06:22:03 +00002852 PrevDecl = nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00002853 } else if (IsPartialSpecialization) {
2854 // Create a new class template partial specialization declaration node.
2855 VarTemplatePartialSpecializationDecl *PrevPartial =
2856 cast_or_null<VarTemplatePartialSpecializationDecl>(PrevDecl);
Larisse Voufo39a1e502013-08-06 01:03:05 +00002857 VarTemplatePartialSpecializationDecl *Partial =
2858 VarTemplatePartialSpecializationDecl::Create(
2859 Context, VarTemplate->getDeclContext(), TemplateKWLoc,
2860 TemplateNameLoc, TemplateParams, VarTemplate, DI->getType(), DI, SC,
David Majnemer8b622692016-07-03 21:17:51 +00002861 Converted, TemplateArgs);
Larisse Voufo39a1e502013-08-06 01:03:05 +00002862
2863 if (!PrevPartial)
2864 VarTemplate->AddPartialSpecialization(Partial, InsertPos);
2865 Specialization = Partial;
2866
2867 // If we are providing an explicit specialization of a member variable
2868 // template specialization, make a note of that.
2869 if (PrevPartial && PrevPartial->getInstantiatedFromMember())
Larisse Voufo4cda4612013-08-22 00:28:27 +00002870 PrevPartial->setMemberSpecialization();
Larisse Voufo39a1e502013-08-06 01:03:05 +00002871
Richard Smith57aae072016-12-28 02:37:25 +00002872 CheckTemplatePartialSpecialization(Partial);
Larisse Voufo39a1e502013-08-06 01:03:05 +00002873 } else {
2874 // Create a new class template specialization declaration node for
2875 // this explicit specialization or friend declaration.
2876 Specialization = VarTemplateSpecializationDecl::Create(
2877 Context, VarTemplate->getDeclContext(), TemplateKWLoc, TemplateNameLoc,
David Majnemer8b622692016-07-03 21:17:51 +00002878 VarTemplate, DI->getType(), DI, SC, Converted);
Larisse Voufo39a1e502013-08-06 01:03:05 +00002879 Specialization->setTemplateArgsInfo(TemplateArgs);
2880
2881 if (!PrevDecl)
2882 VarTemplate->AddSpecialization(Specialization, InsertPos);
2883 }
2884
2885 // C++ [temp.expl.spec]p6:
2886 // If a template, a member template or the member of a class template is
2887 // explicitly specialized then that specialization shall be declared
2888 // before the first use of that specialization that would cause an implicit
2889 // instantiation to take place, in every translation unit in which such a
2890 // use occurs; no diagnostic is required.
2891 if (PrevDecl && PrevDecl->getPointOfInstantiation().isValid()) {
2892 bool Okay = false;
2893 for (Decl *Prev = PrevDecl; Prev; Prev = Prev->getPreviousDecl()) {
2894 // Is there any previous explicit specialization declaration?
2895 if (getTemplateSpecializationKind(Prev) == TSK_ExplicitSpecialization) {
2896 Okay = true;
2897 break;
2898 }
2899 }
2900
2901 if (!Okay) {
2902 SourceRange Range(TemplateNameLoc, RAngleLoc);
2903 Diag(TemplateNameLoc, diag::err_specialization_after_instantiation)
2904 << Name << Range;
2905
2906 Diag(PrevDecl->getPointOfInstantiation(),
2907 diag::note_instantiation_required_here)
2908 << (PrevDecl->getTemplateSpecializationKind() !=
2909 TSK_ImplicitInstantiation);
2910 return true;
2911 }
2912 }
2913
2914 Specialization->setTemplateKeywordLoc(TemplateKWLoc);
2915 Specialization->setLexicalDeclContext(CurContext);
2916
2917 // Add the specialization into its lexical context, so that it can
2918 // be seen when iterating through the list of declarations in that
2919 // context. However, specializations are not found by name lookup.
2920 CurContext->addDecl(Specialization);
2921
2922 // Note that this is an explicit specialization.
2923 Specialization->setSpecializationKind(TSK_ExplicitSpecialization);
2924
2925 if (PrevDecl) {
2926 // Check that this isn't a redefinition of this specialization,
2927 // merging with previous declarations.
2928 LookupResult PrevSpec(*this, GetNameForDeclarator(D), LookupOrdinaryName,
2929 ForRedeclaration);
2930 PrevSpec.addDecl(PrevDecl);
2931 D.setRedeclaration(CheckVariableDeclaration(Specialization, PrevSpec));
Larisse Voufo4cda4612013-08-22 00:28:27 +00002932 } else if (Specialization->isStaticDataMember() &&
2933 Specialization->isOutOfLine()) {
2934 Specialization->setAccess(VarTemplate->getAccess());
Larisse Voufo39a1e502013-08-06 01:03:05 +00002935 }
2936
2937 // Link instantiations of static data members back to the template from
2938 // which they were instantiated.
2939 if (Specialization->isStaticDataMember())
2940 Specialization->setInstantiationOfStaticDataMember(
2941 VarTemplate->getTemplatedDecl(),
2942 Specialization->getSpecializationKind());
2943
2944 return Specialization;
2945}
2946
2947namespace {
2948/// \brief A partial specialization whose template arguments have matched
2949/// a given template-id.
2950struct PartialSpecMatchResult {
2951 VarTemplatePartialSpecializationDecl *Partial;
2952 TemplateArgumentList *Args;
2953};
Eugene Zelenko1ced5092016-02-12 22:53:10 +00002954} // end anonymous namespace
Larisse Voufo39a1e502013-08-06 01:03:05 +00002955
2956DeclResult
2957Sema::CheckVarTemplateId(VarTemplateDecl *Template, SourceLocation TemplateLoc,
2958 SourceLocation TemplateNameLoc,
2959 const TemplateArgumentListInfo &TemplateArgs) {
2960 assert(Template && "A variable template id without template?");
2961
2962 // Check that the template argument list is well-formed for this template.
2963 SmallVector<TemplateArgument, 4> Converted;
Larisse Voufo39a1e502013-08-06 01:03:05 +00002964 if (CheckTemplateArgumentList(
2965 Template, TemplateNameLoc,
2966 const_cast<TemplateArgumentListInfo &>(TemplateArgs), false,
Richard Smith83b11aa2014-01-09 02:22:22 +00002967 Converted))
Larisse Voufo39a1e502013-08-06 01:03:05 +00002968 return true;
2969
2970 // Find the variable template specialization declaration that
2971 // corresponds to these arguments.
Craig Topperc3ec1492014-05-26 06:22:03 +00002972 void *InsertPos = nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00002973 if (VarTemplateSpecializationDecl *Spec = Template->findSpecialization(
Richard Smith6739a102016-05-05 00:56:12 +00002974 Converted, InsertPos)) {
2975 checkSpecializationVisibility(TemplateNameLoc, Spec);
Larisse Voufo39a1e502013-08-06 01:03:05 +00002976 // If we already have a variable template specialization, return it.
2977 return Spec;
Richard Smith6739a102016-05-05 00:56:12 +00002978 }
Larisse Voufo39a1e502013-08-06 01:03:05 +00002979
2980 // This is the first time we have referenced this variable template
2981 // specialization. Create the canonical declaration and add it to
2982 // the set of specializations, based on the closest partial specialization
2983 // that it represents. That is,
2984 VarDecl *InstantiationPattern = Template->getTemplatedDecl();
2985 TemplateArgumentList TemplateArgList(TemplateArgumentList::OnStack,
David Majnemer8b622692016-07-03 21:17:51 +00002986 Converted);
Larisse Voufo39a1e502013-08-06 01:03:05 +00002987 TemplateArgumentList *InstantiationArgs = &TemplateArgList;
2988 bool AmbiguousPartialSpec = false;
2989 typedef PartialSpecMatchResult MatchResult;
2990 SmallVector<MatchResult, 4> Matched;
2991 SourceLocation PointOfInstantiation = TemplateNameLoc;
George Burgess IV3e3bb95b2015-12-02 21:58:08 +00002992 TemplateSpecCandidateSet FailedCandidates(PointOfInstantiation,
2993 /*ForTakingAddress=*/false);
Larisse Voufo39a1e502013-08-06 01:03:05 +00002994
2995 // 1. Attempt to find the closest partial specialization that this
2996 // specializes, if any.
2997 // If any of the template arguments is dependent, then this is probably
2998 // a placeholder for an incomplete declarative context; which must be
2999 // complete by instantiation time. Thus, do not search through the partial
3000 // specializations yet.
Larisse Voufo30616382013-08-23 22:21:36 +00003001 // TODO: Unify with InstantiateClassTemplateSpecialization()?
3002 // Perhaps better after unification of DeduceTemplateArguments() and
3003 // getMoreSpecializedPartialSpecialization().
Larisse Voufo39a1e502013-08-06 01:03:05 +00003004 bool InstantiationDependent = false;
3005 if (!TemplateSpecializationType::anyDependentTemplateArguments(
3006 TemplateArgs, InstantiationDependent)) {
3007
3008 SmallVector<VarTemplatePartialSpecializationDecl *, 4> PartialSpecs;
3009 Template->getPartialSpecializations(PartialSpecs);
3010
3011 for (unsigned I = 0, N = PartialSpecs.size(); I != N; ++I) {
3012 VarTemplatePartialSpecializationDecl *Partial = PartialSpecs[I];
3013 TemplateDeductionInfo Info(FailedCandidates.getLocation());
3014
3015 if (TemplateDeductionResult Result =
3016 DeduceTemplateArguments(Partial, TemplateArgList, Info)) {
3017 // Store the failed-deduction information for use in diagnostics, later.
Larisse Voufo30616382013-08-23 22:21:36 +00003018 // TODO: Actually use the failed-deduction info?
Richard Smithc2bebe92016-05-11 20:37:46 +00003019 FailedCandidates.addCandidate().set(
3020 DeclAccessPair::make(Template, AS_public), Partial,
3021 MakeDeductionFailureInfo(Context, Result, Info));
Larisse Voufo39a1e502013-08-06 01:03:05 +00003022 (void)Result;
3023 } else {
3024 Matched.push_back(PartialSpecMatchResult());
3025 Matched.back().Partial = Partial;
3026 Matched.back().Args = Info.take();
3027 }
3028 }
3029
Larisse Voufo39a1e502013-08-06 01:03:05 +00003030 if (Matched.size() >= 1) {
3031 SmallVector<MatchResult, 4>::iterator Best = Matched.begin();
3032 if (Matched.size() == 1) {
3033 // -- If exactly one matching specialization is found, the
3034 // instantiation is generated from that specialization.
3035 // We don't need to do anything for this.
3036 } else {
3037 // -- If more than one matching specialization is found, the
3038 // partial order rules (14.5.4.2) are used to determine
3039 // whether one of the specializations is more specialized
3040 // than the others. If none of the specializations is more
3041 // specialized than all of the other matching
3042 // specializations, then the use of the variable template is
3043 // ambiguous and the program is ill-formed.
3044 for (SmallVector<MatchResult, 4>::iterator P = Best + 1,
3045 PEnd = Matched.end();
3046 P != PEnd; ++P) {
3047 if (getMoreSpecializedPartialSpecialization(P->Partial, Best->Partial,
3048 PointOfInstantiation) ==
3049 P->Partial)
3050 Best = P;
3051 }
3052
3053 // Determine if the best partial specialization is more specialized than
3054 // the others.
3055 for (SmallVector<MatchResult, 4>::iterator P = Matched.begin(),
3056 PEnd = Matched.end();
3057 P != PEnd; ++P) {
3058 if (P != Best && getMoreSpecializedPartialSpecialization(
3059 P->Partial, Best->Partial,
3060 PointOfInstantiation) != Best->Partial) {
3061 AmbiguousPartialSpec = true;
3062 break;
3063 }
3064 }
3065 }
3066
3067 // Instantiate using the best variable template partial specialization.
3068 InstantiationPattern = Best->Partial;
3069 InstantiationArgs = Best->Args;
3070 } else {
3071 // -- If no match is found, the instantiation is generated
3072 // from the primary template.
3073 // InstantiationPattern = Template->getTemplatedDecl();
3074 }
3075 }
3076
Larisse Voufo39a1e502013-08-06 01:03:05 +00003077 // 2. Create the canonical declaration.
Richard Smith6739a102016-05-05 00:56:12 +00003078 // Note that we do not instantiate a definition until we see an odr-use
3079 // in DoMarkVarDeclReferenced().
Larisse Voufo39a1e502013-08-06 01:03:05 +00003080 // FIXME: LateAttrs et al.?
3081 VarTemplateSpecializationDecl *Decl = BuildVarTemplateInstantiation(
3082 Template, InstantiationPattern, *InstantiationArgs, TemplateArgs,
3083 Converted, TemplateNameLoc, InsertPos /*, LateAttrs, StartingScope*/);
3084 if (!Decl)
3085 return true;
3086
3087 if (AmbiguousPartialSpec) {
3088 // Partial ordering did not produce a clear winner. Complain.
3089 Decl->setInvalidDecl();
3090 Diag(PointOfInstantiation, diag::err_partial_spec_ordering_ambiguous)
3091 << Decl;
3092
3093 // Print the matching partial specializations.
Yaron Keren1cb81462016-11-16 13:45:34 +00003094 for (MatchResult P : Matched)
3095 Diag(P.Partial->getLocation(), diag::note_partial_spec_match)
3096 << getTemplateArgumentBindingsText(P.Partial->getTemplateParameters(),
3097 *P.Args);
Larisse Voufo39a1e502013-08-06 01:03:05 +00003098 return true;
3099 }
3100
3101 if (VarTemplatePartialSpecializationDecl *D =
3102 dyn_cast<VarTemplatePartialSpecializationDecl>(InstantiationPattern))
3103 Decl->setInstantiationOf(D, InstantiationArgs);
3104
Richard Smith6739a102016-05-05 00:56:12 +00003105 checkSpecializationVisibility(TemplateNameLoc, Decl);
3106
Larisse Voufo39a1e502013-08-06 01:03:05 +00003107 assert(Decl && "No variable template specialization?");
3108 return Decl;
3109}
3110
3111ExprResult
3112Sema::CheckVarTemplateId(const CXXScopeSpec &SS,
3113 const DeclarationNameInfo &NameInfo,
3114 VarTemplateDecl *Template, SourceLocation TemplateLoc,
3115 const TemplateArgumentListInfo *TemplateArgs) {
3116
3117 DeclResult Decl = CheckVarTemplateId(Template, TemplateLoc, NameInfo.getLoc(),
3118 *TemplateArgs);
3119 if (Decl.isInvalid())
3120 return ExprError();
3121
3122 VarDecl *Var = cast<VarDecl>(Decl.get());
3123 if (!Var->getTemplateSpecializationKind())
3124 Var->setTemplateSpecializationKind(TSK_ImplicitInstantiation,
3125 NameInfo.getLoc());
3126
3127 // Build an ordinary singleton decl ref.
3128 return BuildDeclarationNameExpr(SS, NameInfo, Var,
Craig Topperc3ec1492014-05-26 06:22:03 +00003129 /*FoundD=*/nullptr, TemplateArgs);
Larisse Voufo39a1e502013-08-06 01:03:05 +00003130}
3131
John McCalldadc5752010-08-24 06:29:42 +00003132ExprResult Sema::BuildTemplateIdExpr(const CXXScopeSpec &SS,
Abramo Bagnara7945c982012-01-27 09:46:47 +00003133 SourceLocation TemplateKWLoc,
Douglas Gregor0da1d432011-02-28 20:01:57 +00003134 LookupResult &R,
3135 bool RequiresADL,
Abramo Bagnara65f7c3d2012-02-06 14:31:00 +00003136 const TemplateArgumentListInfo *TemplateArgs) {
Douglas Gregora727cb92009-06-30 22:34:41 +00003137 // FIXME: Can we do any checking at this point? I guess we could check the
3138 // template arguments that we have against the template name, if the template
Mike Stump11289f42009-09-09 15:08:12 +00003139 // name refers to a single template. That's not a terribly common case,
Douglas Gregora727cb92009-06-30 22:34:41 +00003140 // though.
Douglas Gregorb491ed32011-02-19 21:32:49 +00003141 // foo<int> could identify a single function unambiguously
3142 // This approach does NOT work, since f<int>(1);
3143 // gets resolved prior to resorting to overload resolution
3144 // i.e., template<class T> void f(double);
3145 // vs template<class T, class U> void f(U);
John McCalle66edc12009-11-24 19:00:30 +00003146
3147 // These should be filtered out by our callers.
3148 assert(!R.empty() && "empty lookup results when building templateid");
3149 assert(!R.isAmbiguous() && "ambiguous lookup when building templateid");
3150
Larisse Voufo39a1e502013-08-06 01:03:05 +00003151 // In C++1y, check variable template ids.
Richard Smithd7d11ef2014-02-03 20:09:56 +00003152 bool InstantiationDependent;
3153 if (R.getAsSingle<VarTemplateDecl>() &&
3154 !TemplateSpecializationType::anyDependentTemplateArguments(
3155 *TemplateArgs, InstantiationDependent)) {
3156 return CheckVarTemplateId(SS, R.getLookupNameInfo(),
3157 R.getAsSingle<VarTemplateDecl>(),
3158 TemplateKWLoc, TemplateArgs);
Larisse Voufo39a1e502013-08-06 01:03:05 +00003159 }
3160
John McCall58cc69d2010-01-27 01:50:18 +00003161 // We don't want lookup warnings at this point.
3162 R.suppressDiagnostics();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003163
John McCalle66edc12009-11-24 19:00:30 +00003164 UnresolvedLookupExpr *ULE
Douglas Gregora6e053e2010-12-15 01:34:56 +00003165 = UnresolvedLookupExpr::Create(Context, R.getNamingClass(),
Douglas Gregor0da1d432011-02-28 20:01:57 +00003166 SS.getWithLocInContext(Context),
Abramo Bagnara7945c982012-01-27 09:46:47 +00003167 TemplateKWLoc,
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00003168 R.getLookupNameInfo(),
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003169 RequiresADL, TemplateArgs,
Douglas Gregor30a4f4c2010-05-23 18:57:34 +00003170 R.begin(), R.end());
John McCalle66edc12009-11-24 19:00:30 +00003171
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00003172 return ULE;
Douglas Gregora727cb92009-06-30 22:34:41 +00003173}
3174
John McCalle66edc12009-11-24 19:00:30 +00003175// We actually only call this from template instantiation.
John McCalldadc5752010-08-24 06:29:42 +00003176ExprResult
Jeffrey Yasskinc76498d2010-04-08 16:38:48 +00003177Sema::BuildQualifiedTemplateIdExpr(CXXScopeSpec &SS,
Abramo Bagnara7945c982012-01-27 09:46:47 +00003178 SourceLocation TemplateKWLoc,
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00003179 const DeclarationNameInfo &NameInfo,
Abramo Bagnara65f7c3d2012-02-06 14:31:00 +00003180 const TemplateArgumentListInfo *TemplateArgs) {
Larisse Voufo39a1e502013-08-06 01:03:05 +00003181
Abramo Bagnara65f7c3d2012-02-06 14:31:00 +00003182 assert(TemplateArgs || TemplateKWLoc.isValid());
John McCalle66edc12009-11-24 19:00:30 +00003183 DeclContext *DC;
3184 if (!(DC = computeDeclContext(SS, false)) ||
3185 DC->isDependentContext() ||
John McCall0b66eb32010-05-01 00:40:08 +00003186 RequireCompleteDeclContext(SS, DC))
Reid Kleckner034531d2014-12-18 18:17:42 +00003187 return BuildDependentDeclRefExpr(SS, TemplateKWLoc, NameInfo, TemplateArgs);
Mike Stump11289f42009-09-09 15:08:12 +00003188
Douglas Gregor786123d2010-05-21 23:18:07 +00003189 bool MemberOfUnknownSpecialization;
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00003190 LookupResult R(*this, NameInfo, LookupOrdinaryName);
Craig Topperc3ec1492014-05-26 06:22:03 +00003191 LookupTemplateName(R, (Scope*)nullptr, SS, QualType(), /*Entering*/ false,
Douglas Gregor786123d2010-05-21 23:18:07 +00003192 MemberOfUnknownSpecialization);
Mike Stump11289f42009-09-09 15:08:12 +00003193
John McCalle66edc12009-11-24 19:00:30 +00003194 if (R.isAmbiguous())
3195 return ExprError();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003196
John McCalle66edc12009-11-24 19:00:30 +00003197 if (R.empty()) {
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00003198 Diag(NameInfo.getLoc(), diag::err_template_kw_refers_to_non_template)
3199 << NameInfo.getName() << SS.getRange();
John McCalle66edc12009-11-24 19:00:30 +00003200 return ExprError();
3201 }
3202
3203 if (ClassTemplateDecl *Temp = R.getAsSingle<ClassTemplateDecl>()) {
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00003204 Diag(NameInfo.getLoc(), diag::err_template_kw_refers_to_class_template)
Aaron Ballman4a979672014-01-03 13:56:08 +00003205 << SS.getScopeRep()
Reid Kleckner32506ed2014-06-12 23:03:48 +00003206 << NameInfo.getName().getAsString() << SS.getRange();
John McCalle66edc12009-11-24 19:00:30 +00003207 Diag(Temp->getLocation(), diag::note_referenced_class_template);
3208 return ExprError();
3209 }
3210
Abramo Bagnara7945c982012-01-27 09:46:47 +00003211 return BuildTemplateIdExpr(SS, TemplateKWLoc, R, /*ADL*/ false, TemplateArgs);
Douglas Gregora727cb92009-06-30 22:34:41 +00003212}
3213
Douglas Gregorb67535d2009-03-31 00:43:58 +00003214/// \brief Form a dependent template name.
3215///
3216/// This action forms a dependent template name given the template
3217/// name and its (presumably dependent) scope specifier. For
3218/// example, given "MetaFun::template apply", the scope specifier \p
3219/// SS will be "MetaFun::", \p TemplateKWLoc contains the location
3220/// of the "template" keyword, and "apply" is the \p Name.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003221TemplateNameKind Sema::ActOnDependentTemplateName(Scope *S,
Douglas Gregorbb119652010-06-16 23:00:59 +00003222 CXXScopeSpec &SS,
Abramo Bagnara7945c982012-01-27 09:46:47 +00003223 SourceLocation TemplateKWLoc,
Douglas Gregorbb119652010-06-16 23:00:59 +00003224 UnqualifiedId &Name,
John McCallba7bf592010-08-24 05:47:05 +00003225 ParsedType ObjectType,
Douglas Gregorbb119652010-06-16 23:00:59 +00003226 bool EnteringContext,
3227 TemplateTy &Result) {
Richard Smith0bf8a4922011-10-18 20:49:44 +00003228 if (TemplateKWLoc.isValid() && S && !S->getTemplateParamParent())
3229 Diag(TemplateKWLoc,
Richard Smith2bf7fdb2013-01-02 11:42:31 +00003230 getLangOpts().CPlusPlus11 ?
Richard Smith0bf8a4922011-10-18 20:49:44 +00003231 diag::warn_cxx98_compat_template_outside_of_template :
3232 diag::ext_template_outside_of_template)
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003233 << FixItHint::CreateRemoval(TemplateKWLoc);
3234
Craig Topperc3ec1492014-05-26 06:22:03 +00003235 DeclContext *LookupCtx = nullptr;
Douglas Gregor9abe2372010-01-19 16:01:07 +00003236 if (SS.isSet())
3237 LookupCtx = computeDeclContext(SS, EnteringContext);
3238 if (!LookupCtx && ObjectType)
John McCallba7bf592010-08-24 05:47:05 +00003239 LookupCtx = computeDeclContext(ObjectType.get());
Douglas Gregor9abe2372010-01-19 16:01:07 +00003240 if (LookupCtx) {
Douglas Gregorb67535d2009-03-31 00:43:58 +00003241 // C++0x [temp.names]p5:
3242 // If a name prefixed by the keyword template is not the name of
3243 // a template, the program is ill-formed. [Note: the keyword
3244 // template may not be applied to non-template members of class
3245 // templates. -end note ] [ Note: as is the case with the
3246 // typename prefix, the template prefix is allowed in cases
3247 // where it is not strictly necessary; i.e., when the
3248 // nested-name-specifier or the expression on the left of the ->
3249 // or . is not dependent on a template-parameter, or the use
3250 // does not appear in the scope of a template. -end note]
3251 //
3252 // Note: C++03 was more strict here, because it banned the use of
3253 // the "template" keyword prior to a template-name that was not a
3254 // dependent name. C++ DR468 relaxed this requirement (the
3255 // "template" keyword is now permitted). We follow the C++0x
Douglas Gregorc9d26822010-06-14 22:07:54 +00003256 // rules, even in C++03 mode with a warning, retroactively applying the DR.
Douglas Gregor786123d2010-05-21 23:18:07 +00003257 bool MemberOfUnknownSpecialization;
Richard Smithaf416962012-11-15 00:31:27 +00003258 TemplateNameKind TNK = isTemplateName(S, SS, TemplateKWLoc.isValid(), Name,
Abramo Bagnara7c5dee42010-08-06 12:11:11 +00003259 ObjectType, EnteringContext, Result,
Douglas Gregor786123d2010-05-21 23:18:07 +00003260 MemberOfUnknownSpecialization);
Douglas Gregor9abe2372010-01-19 16:01:07 +00003261 if (TNK == TNK_Non_template && LookupCtx->isDependentContext() &&
3262 isa<CXXRecordDecl>(LookupCtx) &&
Douglas Gregor5ecbb1b2011-03-11 23:27:41 +00003263 (!cast<CXXRecordDecl>(LookupCtx)->hasDefinition() ||
3264 cast<CXXRecordDecl>(LookupCtx)->hasAnyDependentBases())) {
Douglas Gregorbb119652010-06-16 23:00:59 +00003265 // This is a dependent template. Handle it below.
Douglas Gregord2e6a452010-01-14 17:47:39 +00003266 } else if (TNK == TNK_Non_template) {
Daniel Dunbar62ee6412012-03-09 18:35:03 +00003267 Diag(Name.getLocStart(),
Douglas Gregor3cf81312009-11-03 23:16:33 +00003268 diag::err_template_kw_refers_to_non_template)
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00003269 << GetNameFromUnqualifiedId(Name).getName()
Douglas Gregorb22ee882010-05-05 05:58:24 +00003270 << Name.getSourceRange()
3271 << TemplateKWLoc;
Douglas Gregorbb119652010-06-16 23:00:59 +00003272 return TNK_Non_template;
Douglas Gregord2e6a452010-01-14 17:47:39 +00003273 } else {
3274 // We found something; return it.
Douglas Gregorbb119652010-06-16 23:00:59 +00003275 return TNK;
Douglas Gregorb67535d2009-03-31 00:43:58 +00003276 }
Douglas Gregorb67535d2009-03-31 00:43:58 +00003277 }
3278
Aaron Ballman4a979672014-01-03 13:56:08 +00003279 NestedNameSpecifier *Qualifier = SS.getScopeRep();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003280
Douglas Gregor3cf81312009-11-03 23:16:33 +00003281 switch (Name.getKind()) {
3282 case UnqualifiedId::IK_Identifier:
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003283 Result = TemplateTy::make(Context.getDependentTemplateName(Qualifier,
Douglas Gregorbb119652010-06-16 23:00:59 +00003284 Name.Identifier));
3285 return TNK_Dependent_template_name;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003286
Douglas Gregor71395fa2009-11-04 00:56:37 +00003287 case UnqualifiedId::IK_OperatorFunctionId:
Douglas Gregorbb119652010-06-16 23:00:59 +00003288 Result = TemplateTy::make(Context.getDependentTemplateName(Qualifier,
Douglas Gregor71395fa2009-11-04 00:56:37 +00003289 Name.OperatorFunctionId.Operator));
Richard Smith72bfbd82013-12-04 00:28:23 +00003290 return TNK_Function_template;
Alexis Hunted0530f2009-11-28 08:58:14 +00003291
3292 case UnqualifiedId::IK_LiteralOperatorId:
Richard Smithd091dc12013-12-05 00:58:33 +00003293 llvm_unreachable("literal operator id cannot have a dependent scope");
Alexis Hunted0530f2009-11-28 08:58:14 +00003294
Douglas Gregor3cf81312009-11-03 23:16:33 +00003295 default:
3296 break;
3297 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003298
Daniel Dunbar62ee6412012-03-09 18:35:03 +00003299 Diag(Name.getLocStart(),
Douglas Gregor3cf81312009-11-03 23:16:33 +00003300 diag::err_template_kw_refers_to_non_template)
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00003301 << GetNameFromUnqualifiedId(Name).getName()
Douglas Gregorb22ee882010-05-05 05:58:24 +00003302 << Name.getSourceRange()
3303 << TemplateKWLoc;
Douglas Gregorbb119652010-06-16 23:00:59 +00003304 return TNK_Non_template;
Douglas Gregorb67535d2009-03-31 00:43:58 +00003305}
3306
Mike Stump11289f42009-09-09 15:08:12 +00003307bool Sema::CheckTemplateTypeArgument(TemplateTypeParmDecl *Param,
Reid Kleckner377c1592014-06-10 23:29:48 +00003308 TemplateArgumentLoc &AL,
Chris Lattner0e62c1c2011-07-23 10:55:15 +00003309 SmallVectorImpl<TemplateArgument> &Converted) {
John McCall0ad16662009-10-29 08:12:44 +00003310 const TemplateArgument &Arg = AL.getArgument();
Reid Kleckner377c1592014-06-10 23:29:48 +00003311 QualType ArgType;
3312 TypeSourceInfo *TSI = nullptr;
John McCall0ad16662009-10-29 08:12:44 +00003313
Anders Carlssonc8cbb2d2009-06-13 00:33:33 +00003314 // Check template type parameter.
Jeffrey Yasskin823015d2010-04-08 00:03:06 +00003315 switch(Arg.getKind()) {
3316 case TemplateArgument::Type:
Anders Carlssonc8cbb2d2009-06-13 00:33:33 +00003317 // C++ [temp.arg.type]p1:
3318 // A template-argument for a template-parameter which is a
3319 // type shall be a type-id.
Reid Kleckner377c1592014-06-10 23:29:48 +00003320 ArgType = Arg.getAsType();
3321 TSI = AL.getTypeSourceInfo();
Jeffrey Yasskin823015d2010-04-08 00:03:06 +00003322 break;
3323 case TemplateArgument::Template: {
3324 // We have a template type parameter but the template argument
3325 // is a template without any arguments.
3326 SourceRange SR = AL.getSourceRange();
3327 TemplateName Name = Arg.getAsTemplate();
3328 Diag(SR.getBegin(), diag::err_template_missing_args)
Richard Smith0c062b42017-01-14 02:19:59 +00003329 << (int)getTemplateNameKindForDiagnostics(Name) << Name << SR;
Jeffrey Yasskin823015d2010-04-08 00:03:06 +00003330 if (TemplateDecl *Decl = Name.getAsTemplateDecl())
3331 Diag(Decl->getLocation(), diag::note_template_decl_here);
Anders Carlssonc8cbb2d2009-06-13 00:33:33 +00003332
Jeffrey Yasskin823015d2010-04-08 00:03:06 +00003333 return true;
3334 }
Kaelyn Uhrain864d0b02012-05-18 23:42:49 +00003335 case TemplateArgument::Expression: {
3336 // We have a template type parameter but the template argument is an
3337 // expression; see if maybe it is missing the "typename" keyword.
3338 CXXScopeSpec SS;
3339 DeclarationNameInfo NameInfo;
3340
3341 if (DeclRefExpr *ArgExpr = dyn_cast<DeclRefExpr>(Arg.getAsExpr())) {
3342 SS.Adopt(ArgExpr->getQualifierLoc());
3343 NameInfo = ArgExpr->getNameInfo();
3344 } else if (DependentScopeDeclRefExpr *ArgExpr =
3345 dyn_cast<DependentScopeDeclRefExpr>(Arg.getAsExpr())) {
3346 SS.Adopt(ArgExpr->getQualifierLoc());
3347 NameInfo = ArgExpr->getNameInfo();
3348 } else if (CXXDependentScopeMemberExpr *ArgExpr =
3349 dyn_cast<CXXDependentScopeMemberExpr>(Arg.getAsExpr())) {
Kaelyn Uhrain055e9472012-06-08 01:07:26 +00003350 if (ArgExpr->isImplicitAccess()) {
3351 SS.Adopt(ArgExpr->getQualifierLoc());
3352 NameInfo = ArgExpr->getMemberNameInfo();
3353 }
Kaelyn Uhrain864d0b02012-05-18 23:42:49 +00003354 }
3355
Reid Kleckner377c1592014-06-10 23:29:48 +00003356 if (auto *II = NameInfo.getName().getAsIdentifierInfo()) {
Kaelyn Uhrain864d0b02012-05-18 23:42:49 +00003357 LookupResult Result(*this, NameInfo, LookupOrdinaryName);
3358 LookupParsedName(Result, CurScope, &SS);
3359
Kaelyn Uhrain055e9472012-06-08 01:07:26 +00003360 if (Result.getAsSingle<TypeDecl>() ||
3361 Result.getResultKind() ==
Reid Kleckner377c1592014-06-10 23:29:48 +00003362 LookupResult::NotFoundInCurrentInstantiation) {
3363 // Suggest that the user add 'typename' before the NNS.
Kaelyn Uhrain864d0b02012-05-18 23:42:49 +00003364 SourceLocation Loc = AL.getSourceRange().getBegin();
Reid Kleckner377c1592014-06-10 23:29:48 +00003365 Diag(Loc, getLangOpts().MSVCCompat
3366 ? diag::ext_ms_template_type_arg_missing_typename
3367 : diag::err_template_arg_must_be_type_suggest)
3368 << FixItHint::CreateInsertion(Loc, "typename ");
Kaelyn Uhrain864d0b02012-05-18 23:42:49 +00003369 Diag(Param->getLocation(), diag::note_template_param_here);
Reid Kleckner377c1592014-06-10 23:29:48 +00003370
3371 // Recover by synthesizing a type using the location information that we
3372 // already have.
3373 ArgType =
3374 Context.getDependentNameType(ETK_Typename, SS.getScopeRep(), II);
3375 TypeLocBuilder TLB;
3376 DependentNameTypeLoc TL = TLB.push<DependentNameTypeLoc>(ArgType);
3377 TL.setElaboratedKeywordLoc(SourceLocation(/*synthesized*/));
3378 TL.setQualifierLoc(SS.getWithLocInContext(Context));
3379 TL.setNameLoc(NameInfo.getLoc());
3380 TSI = TLB.getTypeSourceInfo(Context, ArgType);
3381
3382 // Overwrite our input TemplateArgumentLoc so that we can recover
3383 // properly.
3384 AL = TemplateArgumentLoc(TemplateArgument(ArgType),
3385 TemplateArgumentLocInfo(TSI));
3386
3387 break;
Kaelyn Uhrain864d0b02012-05-18 23:42:49 +00003388 }
3389 }
3390 // fallthrough
3391 }
Jeffrey Yasskin823015d2010-04-08 00:03:06 +00003392 default: {
Anders Carlssonc8cbb2d2009-06-13 00:33:33 +00003393 // We have a template type parameter but the template argument
3394 // is not a type.
John McCall0d07eb32009-10-29 18:45:58 +00003395 SourceRange SR = AL.getSourceRange();
3396 Diag(SR.getBegin(), diag::err_template_arg_must_be_type) << SR;
Anders Carlssonc8cbb2d2009-06-13 00:33:33 +00003397 Diag(Param->getLocation(), diag::note_template_param_here);
Mike Stump11289f42009-09-09 15:08:12 +00003398
Anders Carlssonc8cbb2d2009-06-13 00:33:33 +00003399 return true;
Mike Stump11289f42009-09-09 15:08:12 +00003400 }
Jeffrey Yasskin823015d2010-04-08 00:03:06 +00003401 }
Anders Carlssonc8cbb2d2009-06-13 00:33:33 +00003402
Reid Kleckner377c1592014-06-10 23:29:48 +00003403 if (CheckTemplateArgument(Param, TSI))
Anders Carlssonc8cbb2d2009-06-13 00:33:33 +00003404 return true;
Mike Stump11289f42009-09-09 15:08:12 +00003405
Anders Carlssonc8cbb2d2009-06-13 00:33:33 +00003406 // Add the converted template type argument.
Reid Kleckner377c1592014-06-10 23:29:48 +00003407 ArgType = Context.getCanonicalType(ArgType);
Simon Pilgrim6905d222016-12-30 22:55:33 +00003408
Douglas Gregore46db902011-06-17 22:11:49 +00003409 // Objective-C ARC:
3410 // If an explicitly-specified template argument type is a lifetime type
3411 // with no lifetime qualifier, the __strong lifetime qualifier is inferred.
David Blaikiebbafb8a2012-03-11 07:00:24 +00003412 if (getLangOpts().ObjCAutoRefCount &&
Douglas Gregore46db902011-06-17 22:11:49 +00003413 ArgType->isObjCLifetimeType() &&
3414 !ArgType.getObjCLifetime()) {
3415 Qualifiers Qs;
3416 Qs.setObjCLifetime(Qualifiers::OCL_Strong);
3417 ArgType = Context.getQualifiedType(ArgType, Qs);
3418 }
Simon Pilgrim6905d222016-12-30 22:55:33 +00003419
Douglas Gregore46db902011-06-17 22:11:49 +00003420 Converted.push_back(TemplateArgument(ArgType));
Anders Carlssonc8cbb2d2009-06-13 00:33:33 +00003421 return false;
3422}
3423
Douglas Gregor36d7c5f2009-11-09 19:17:50 +00003424/// \brief Substitute template arguments into the default template argument for
3425/// the given template type parameter.
3426///
3427/// \param SemaRef the semantic analysis object for which we are performing
3428/// the substitution.
3429///
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003430/// \param Template the template that we are synthesizing template arguments
Douglas Gregor36d7c5f2009-11-09 19:17:50 +00003431/// for.
3432///
3433/// \param TemplateLoc the location of the template name that started the
3434/// template-id we are checking.
3435///
3436/// \param RAngleLoc the location of the right angle bracket ('>') that
3437/// terminates the template-id.
3438///
3439/// \param Param the template template parameter whose default we are
3440/// substituting into.
3441///
3442/// \param Converted the list of template arguments provided for template
3443/// parameters that precede \p Param in the template parameter list.
Douglas Gregor36d7c5f2009-11-09 19:17:50 +00003444/// \returns the substituted template argument, or NULL if an error occurred.
John McCallbcd03502009-12-07 02:54:59 +00003445static TypeSourceInfo *
Douglas Gregor36d7c5f2009-11-09 19:17:50 +00003446SubstDefaultTemplateArgument(Sema &SemaRef,
3447 TemplateDecl *Template,
3448 SourceLocation TemplateLoc,
3449 SourceLocation RAngleLoc,
3450 TemplateTypeParmDecl *Param,
Vassil Vassilev2999d0e2017-01-10 09:09:09 +00003451 SmallVectorImpl<TemplateArgument> &Converted) {
John McCallbcd03502009-12-07 02:54:59 +00003452 TypeSourceInfo *ArgType = Param->getDefaultArgumentInfo();
Douglas Gregor36d7c5f2009-11-09 19:17:50 +00003453
3454 // If the argument type is dependent, instantiate it now based
3455 // on the previously-computed template arguments.
3456 if (ArgType->getType()->isDependentType()) {
Douglas Gregor36d7c5f2009-11-09 19:17:50 +00003457 Sema::InstantiatingTemplate Inst(SemaRef, TemplateLoc,
Richard Smith54f18e82016-08-31 02:15:21 +00003458 Param, Template, Converted,
Douglas Gregor36d7c5f2009-11-09 19:17:50 +00003459 SourceRange(TemplateLoc, RAngleLoc));
Alp Tokerd4a72d52013-10-08 08:09:04 +00003460 if (Inst.isInvalid())
Craig Topperc3ec1492014-05-26 06:22:03 +00003461 return nullptr;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003462
David Majnemer8b622692016-07-03 21:17:51 +00003463 TemplateArgumentList TemplateArgs(TemplateArgumentList::OnStack, Converted);
David Majnemer89189202013-08-28 23:48:32 +00003464
3465 // Only substitute for the innermost template argument list.
3466 MultiLevelTemplateArgumentList TemplateArgLists;
3467 TemplateArgLists.addOuterTemplateArguments(&TemplateArgs);
3468 for (unsigned i = 0, e = Param->getDepth(); i != e; ++i)
3469 TemplateArgLists.addOuterTemplateArguments(None);
3470
Argyrios Kyrtzidis6fe744c2012-04-25 18:39:17 +00003471 Sema::ContextRAII SavedContext(SemaRef, Template->getDeclContext());
David Majnemer89189202013-08-28 23:48:32 +00003472 ArgType =
3473 SemaRef.SubstType(ArgType, TemplateArgLists,
3474 Param->getDefaultArgumentLoc(), Param->getDeclName());
Douglas Gregor36d7c5f2009-11-09 19:17:50 +00003475 }
3476
3477 return ArgType;
3478}
3479
3480/// \brief Substitute template arguments into the default template argument for
3481/// the given non-type template parameter.
3482///
3483/// \param SemaRef the semantic analysis object for which we are performing
3484/// the substitution.
3485///
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003486/// \param Template the template that we are synthesizing template arguments
Douglas Gregor36d7c5f2009-11-09 19:17:50 +00003487/// for.
3488///
3489/// \param TemplateLoc the location of the template name that started the
3490/// template-id we are checking.
3491///
3492/// \param RAngleLoc the location of the right angle bracket ('>') that
3493/// terminates the template-id.
3494///
Douglas Gregor9167f8b2009-11-11 01:00:40 +00003495/// \param Param the non-type template parameter whose default we are
Douglas Gregor36d7c5f2009-11-09 19:17:50 +00003496/// substituting into.
3497///
3498/// \param Converted the list of template arguments provided for template
3499/// parameters that precede \p Param in the template parameter list.
3500///
3501/// \returns the substituted template argument, or NULL if an error occurred.
John McCalldadc5752010-08-24 06:29:42 +00003502static ExprResult
Douglas Gregor36d7c5f2009-11-09 19:17:50 +00003503SubstDefaultTemplateArgument(Sema &SemaRef,
3504 TemplateDecl *Template,
3505 SourceLocation TemplateLoc,
3506 SourceLocation RAngleLoc,
3507 NonTypeTemplateParmDecl *Param,
Chris Lattner0e62c1c2011-07-23 10:55:15 +00003508 SmallVectorImpl<TemplateArgument> &Converted) {
Douglas Gregor36d7c5f2009-11-09 19:17:50 +00003509 Sema::InstantiatingTemplate Inst(SemaRef, TemplateLoc,
Richard Smith54f18e82016-08-31 02:15:21 +00003510 Param, Template, Converted,
Douglas Gregor36d7c5f2009-11-09 19:17:50 +00003511 SourceRange(TemplateLoc, RAngleLoc));
Alp Tokerd4a72d52013-10-08 08:09:04 +00003512 if (Inst.isInvalid())
Richard Smith8a874c92012-07-08 02:38:24 +00003513 return ExprError();
Douglas Gregor36d7c5f2009-11-09 19:17:50 +00003514
David Majnemer8b622692016-07-03 21:17:51 +00003515 TemplateArgumentList TemplateArgs(TemplateArgumentList::OnStack, Converted);
David Majnemer89189202013-08-28 23:48:32 +00003516
3517 // Only substitute for the innermost template argument list.
3518 MultiLevelTemplateArgumentList TemplateArgLists;
3519 TemplateArgLists.addOuterTemplateArguments(&TemplateArgs);
3520 for (unsigned i = 0, e = Param->getDepth(); i != e; ++i)
3521 TemplateArgLists.addOuterTemplateArguments(None);
3522
Faisal Vali48401eb2015-11-19 19:20:17 +00003523 EnterExpressionEvaluationContext ConstantEvaluated(SemaRef,
3524 Sema::ConstantEvaluated);
David Majnemer89189202013-08-28 23:48:32 +00003525 return SemaRef.SubstExpr(Param->getDefaultArgument(), TemplateArgLists);
Douglas Gregor36d7c5f2009-11-09 19:17:50 +00003526}
3527
Douglas Gregor9167f8b2009-11-11 01:00:40 +00003528/// \brief Substitute template arguments into the default template argument for
3529/// the given template template parameter.
3530///
3531/// \param SemaRef the semantic analysis object for which we are performing
3532/// the substitution.
3533///
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003534/// \param Template the template that we are synthesizing template arguments
Douglas Gregor9167f8b2009-11-11 01:00:40 +00003535/// for.
3536///
3537/// \param TemplateLoc the location of the template name that started the
3538/// template-id we are checking.
3539///
3540/// \param RAngleLoc the location of the right angle bracket ('>') that
3541/// terminates the template-id.
3542///
3543/// \param Param the template template parameter whose default we are
3544/// substituting into.
3545///
3546/// \param Converted the list of template arguments provided for template
3547/// parameters that precede \p Param in the template parameter list.
3548///
Simon Pilgrim6905d222016-12-30 22:55:33 +00003549/// \param QualifierLoc Will be set to the nested-name-specifier (with
Douglas Gregordf846d12011-03-02 18:46:51 +00003550/// source-location information) that precedes the template name.
Douglas Gregor9d802122011-03-02 17:09:35 +00003551///
Douglas Gregor9167f8b2009-11-11 01:00:40 +00003552/// \returns the substituted template argument, or NULL if an error occurred.
3553static TemplateName
3554SubstDefaultTemplateArgument(Sema &SemaRef,
3555 TemplateDecl *Template,
3556 SourceLocation TemplateLoc,
3557 SourceLocation RAngleLoc,
3558 TemplateTemplateParmDecl *Param,
Chris Lattner0e62c1c2011-07-23 10:55:15 +00003559 SmallVectorImpl<TemplateArgument> &Converted,
Douglas Gregor9d802122011-03-02 17:09:35 +00003560 NestedNameSpecifierLoc &QualifierLoc) {
Richard Smith54f18e82016-08-31 02:15:21 +00003561 Sema::InstantiatingTemplate Inst(
3562 SemaRef, TemplateLoc, TemplateParameter(Param), Template, Converted,
3563 SourceRange(TemplateLoc, RAngleLoc));
Alp Tokerd4a72d52013-10-08 08:09:04 +00003564 if (Inst.isInvalid())
Richard Smith8a874c92012-07-08 02:38:24 +00003565 return TemplateName();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003566
David Majnemer8b622692016-07-03 21:17:51 +00003567 TemplateArgumentList TemplateArgs(TemplateArgumentList::OnStack, Converted);
David Majnemer89189202013-08-28 23:48:32 +00003568
3569 // Only substitute for the innermost template argument list.
3570 MultiLevelTemplateArgumentList TemplateArgLists;
3571 TemplateArgLists.addOuterTemplateArguments(&TemplateArgs);
3572 for (unsigned i = 0, e = Param->getDepth(); i != e; ++i)
3573 TemplateArgLists.addOuterTemplateArguments(None);
3574
Argyrios Kyrtzidis6fe744c2012-04-25 18:39:17 +00003575 Sema::ContextRAII SavedContext(SemaRef, Template->getDeclContext());
David Majnemer89189202013-08-28 23:48:32 +00003576 // Substitute into the nested-name-specifier first,
Douglas Gregordf846d12011-03-02 18:46:51 +00003577 QualifierLoc = Param->getDefaultArgument().getTemplateQualifierLoc();
Douglas Gregor9d802122011-03-02 17:09:35 +00003578 if (QualifierLoc) {
David Majnemer89189202013-08-28 23:48:32 +00003579 QualifierLoc =
3580 SemaRef.SubstNestedNameSpecifierLoc(QualifierLoc, TemplateArgLists);
Douglas Gregor9d802122011-03-02 17:09:35 +00003581 if (!QualifierLoc)
3582 return TemplateName();
3583 }
David Majnemer89189202013-08-28 23:48:32 +00003584
3585 return SemaRef.SubstTemplateName(
3586 QualifierLoc,
3587 Param->getDefaultArgument().getArgument().getAsTemplate(),
3588 Param->getDefaultArgument().getTemplateNameLoc(),
3589 TemplateArgLists);
Douglas Gregor9167f8b2009-11-11 01:00:40 +00003590}
3591
Douglas Gregor5c80a27b2009-11-25 18:55:14 +00003592/// \brief If the given template parameter has a default template
3593/// argument, substitute into that default template argument and
3594/// return the corresponding template argument.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003595TemplateArgumentLoc
Douglas Gregor5c80a27b2009-11-25 18:55:14 +00003596Sema::SubstDefaultTemplateArgumentIfAvailable(TemplateDecl *Template,
3597 SourceLocation TemplateLoc,
3598 SourceLocation RAngleLoc,
3599 Decl *Param,
Richard Smithc87b9382013-07-04 01:01:24 +00003600 SmallVectorImpl<TemplateArgument>
3601 &Converted,
3602 bool &HasDefaultArg) {
3603 HasDefaultArg = false;
3604
3605 if (TemplateTypeParmDecl *TypeParm = dyn_cast<TemplateTypeParmDecl>(Param)) {
Richard Smith95d83952015-06-10 20:36:34 +00003606 if (!hasVisibleDefaultArgument(TypeParm))
Douglas Gregor5c80a27b2009-11-25 18:55:14 +00003607 return TemplateArgumentLoc();
3608
Richard Smithc87b9382013-07-04 01:01:24 +00003609 HasDefaultArg = true;
John McCallbcd03502009-12-07 02:54:59 +00003610 TypeSourceInfo *DI = SubstDefaultTemplateArgument(*this, Template,
Douglas Gregor5c80a27b2009-11-25 18:55:14 +00003611 TemplateLoc,
3612 RAngleLoc,
3613 TypeParm,
3614 Converted);
3615 if (DI)
3616 return TemplateArgumentLoc(TemplateArgument(DI->getType()), DI);
3617
3618 return TemplateArgumentLoc();
3619 }
3620
3621 if (NonTypeTemplateParmDecl *NonTypeParm
3622 = dyn_cast<NonTypeTemplateParmDecl>(Param)) {
Richard Smith95d83952015-06-10 20:36:34 +00003623 if (!hasVisibleDefaultArgument(NonTypeParm))
Douglas Gregor5c80a27b2009-11-25 18:55:14 +00003624 return TemplateArgumentLoc();
3625
Richard Smithc87b9382013-07-04 01:01:24 +00003626 HasDefaultArg = true;
John McCalldadc5752010-08-24 06:29:42 +00003627 ExprResult Arg = SubstDefaultTemplateArgument(*this, Template,
Douglas Gregor9d802122011-03-02 17:09:35 +00003628 TemplateLoc,
3629 RAngleLoc,
3630 NonTypeParm,
3631 Converted);
Douglas Gregor5c80a27b2009-11-25 18:55:14 +00003632 if (Arg.isInvalid())
3633 return TemplateArgumentLoc();
3634
Nikola Smiljanic01a75982014-05-29 10:55:11 +00003635 Expr *ArgE = Arg.getAs<Expr>();
Douglas Gregor5c80a27b2009-11-25 18:55:14 +00003636 return TemplateArgumentLoc(TemplateArgument(ArgE), ArgE);
3637 }
3638
3639 TemplateTemplateParmDecl *TempTempParm
3640 = cast<TemplateTemplateParmDecl>(Param);
Richard Smith95d83952015-06-10 20:36:34 +00003641 if (!hasVisibleDefaultArgument(TempTempParm))
Douglas Gregor5c80a27b2009-11-25 18:55:14 +00003642 return TemplateArgumentLoc();
3643
Richard Smithc87b9382013-07-04 01:01:24 +00003644 HasDefaultArg = true;
Douglas Gregordf846d12011-03-02 18:46:51 +00003645 NestedNameSpecifierLoc QualifierLoc;
Douglas Gregor5c80a27b2009-11-25 18:55:14 +00003646 TemplateName TName = SubstDefaultTemplateArgument(*this, Template,
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003647 TemplateLoc,
Douglas Gregor5c80a27b2009-11-25 18:55:14 +00003648 RAngleLoc,
3649 TempTempParm,
Douglas Gregor9d802122011-03-02 17:09:35 +00003650 Converted,
3651 QualifierLoc);
Douglas Gregor5c80a27b2009-11-25 18:55:14 +00003652 if (TName.isNull())
3653 return TemplateArgumentLoc();
3654
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003655 return TemplateArgumentLoc(TemplateArgument(TName),
Douglas Gregor9d802122011-03-02 17:09:35 +00003656 TempTempParm->getDefaultArgument().getTemplateQualifierLoc(),
Douglas Gregor5c80a27b2009-11-25 18:55:14 +00003657 TempTempParm->getDefaultArgument().getTemplateNameLoc());
3658}
3659
Douglas Gregorda0fb532009-11-11 19:31:23 +00003660/// \brief Check that the given template argument corresponds to the given
3661/// template parameter.
Douglas Gregor0231d8d2011-01-19 20:10:05 +00003662///
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003663/// \param Param The template parameter against which the argument will be
Douglas Gregor0231d8d2011-01-19 20:10:05 +00003664/// checked.
3665///
Richard Trieu15b66532015-01-24 02:48:32 +00003666/// \param Arg The template argument, which may be updated due to conversions.
Douglas Gregor0231d8d2011-01-19 20:10:05 +00003667///
3668/// \param Template The template in which the template argument resides.
3669///
3670/// \param TemplateLoc The location of the template name for the template
3671/// whose argument list we're matching.
3672///
3673/// \param RAngleLoc The location of the right angle bracket ('>') that closes
3674/// the template argument list.
3675///
3676/// \param ArgumentPackIndex The index into the argument pack where this
3677/// argument will be placed. Only valid if the parameter is a parameter pack.
3678///
3679/// \param Converted The checked, converted argument will be added to the
3680/// end of this small vector.
3681///
3682/// \param CTAK Describes how we arrived at this particular template argument:
3683/// explicitly written, deduced, etc.
3684///
3685/// \returns true on error, false otherwise.
Douglas Gregorda0fb532009-11-11 19:31:23 +00003686bool Sema::CheckTemplateArgument(NamedDecl *Param,
Reid Kleckner377c1592014-06-10 23:29:48 +00003687 TemplateArgumentLoc &Arg,
Douglas Gregorca4686d2011-01-04 23:35:54 +00003688 NamedDecl *Template,
Douglas Gregorda0fb532009-11-11 19:31:23 +00003689 SourceLocation TemplateLoc,
Douglas Gregorda0fb532009-11-11 19:31:23 +00003690 SourceLocation RAngleLoc,
Douglas Gregor0231d8d2011-01-19 20:10:05 +00003691 unsigned ArgumentPackIndex,
Chris Lattner0e62c1c2011-07-23 10:55:15 +00003692 SmallVectorImpl<TemplateArgument> &Converted,
Douglas Gregord5cb1dd2010-03-28 02:42:43 +00003693 CheckTemplateArgumentKind CTAK) {
Douglas Gregoreebed722009-11-11 19:41:09 +00003694 // Check template type parameters.
3695 if (TemplateTypeParmDecl *TTP = dyn_cast<TemplateTypeParmDecl>(Param))
Douglas Gregorda0fb532009-11-11 19:31:23 +00003696 return CheckTemplateTypeArgument(TTP, Arg, Converted);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003697
Douglas Gregoreebed722009-11-11 19:41:09 +00003698 // Check non-type template parameters.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003699 if (NonTypeTemplateParmDecl *NTTP =dyn_cast<NonTypeTemplateParmDecl>(Param)) {
Douglas Gregorda0fb532009-11-11 19:31:23 +00003700 // Do substitution on the type of the non-type template parameter
Peter Collingbourne01687632010-12-10 17:08:53 +00003701 // with the template arguments we've seen thus far. But if the
3702 // template has a dependent context then we cannot substitute yet.
Douglas Gregorda0fb532009-11-11 19:31:23 +00003703 QualType NTTPType = NTTP->getType();
Douglas Gregor0231d8d2011-01-19 20:10:05 +00003704 if (NTTP->isParameterPack() && NTTP->isExpandedParameterPack())
3705 NTTPType = NTTP->getExpansionType(ArgumentPackIndex);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003706
Peter Collingbourne01687632010-12-10 17:08:53 +00003707 if (NTTPType->isDependentType() &&
3708 !isa<TemplateTemplateParmDecl>(Template) &&
3709 !Template->getDeclContext()->isDependentContext()) {
Douglas Gregorda0fb532009-11-11 19:31:23 +00003710 // Do substitution on the type of the non-type template parameter.
3711 InstantiatingTemplate Inst(*this, TemplateLoc, Template,
Richard Smith80934652012-07-16 01:09:10 +00003712 NTTP, Converted,
Douglas Gregorda0fb532009-11-11 19:31:23 +00003713 SourceRange(TemplateLoc, RAngleLoc));
Alp Tokerd4a72d52013-10-08 08:09:04 +00003714 if (Inst.isInvalid())
Richard Smith8a874c92012-07-08 02:38:24 +00003715 return true;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003716
3717 TemplateArgumentList TemplateArgs(TemplateArgumentList::OnStack,
David Majnemer8b622692016-07-03 21:17:51 +00003718 Converted);
Douglas Gregorda0fb532009-11-11 19:31:23 +00003719 NTTPType = SubstType(NTTPType,
3720 MultiLevelTemplateArgumentList(TemplateArgs),
3721 NTTP->getLocation(),
3722 NTTP->getDeclName());
3723 // If that worked, check the non-type template parameter type
3724 // for validity.
3725 if (!NTTPType.isNull())
3726 NTTPType = CheckNonTypeTemplateParameterType(NTTPType,
3727 NTTP->getLocation());
3728 if (NTTPType.isNull())
3729 return true;
3730 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003731
Douglas Gregorda0fb532009-11-11 19:31:23 +00003732 switch (Arg.getArgument().getKind()) {
3733 case TemplateArgument::Null:
David Blaikie83d382b2011-09-23 05:06:16 +00003734 llvm_unreachable("Should never see a NULL template argument here");
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003735
Douglas Gregorda0fb532009-11-11 19:31:23 +00003736 case TemplateArgument::Expression: {
Douglas Gregorda0fb532009-11-11 19:31:23 +00003737 TemplateArgument Result;
John Wiegley01296292011-04-08 18:41:53 +00003738 ExprResult Res =
3739 CheckTemplateArgument(NTTP, NTTPType, Arg.getArgument().getAsExpr(),
3740 Result, CTAK);
3741 if (Res.isInvalid())
Douglas Gregorda0fb532009-11-11 19:31:23 +00003742 return true;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003743
Richard Trieu15b66532015-01-24 02:48:32 +00003744 // If the resulting expression is new, then use it in place of the
3745 // old expression in the template argument.
3746 if (Res.get() != Arg.getArgument().getAsExpr()) {
3747 TemplateArgument TA(Res.get());
3748 Arg = TemplateArgumentLoc(TA, Res.get());
3749 }
3750
Douglas Gregor1ccc8412010-11-07 23:05:16 +00003751 Converted.push_back(Result);
Douglas Gregorda0fb532009-11-11 19:31:23 +00003752 break;
3753 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003754
Douglas Gregorda0fb532009-11-11 19:31:23 +00003755 case TemplateArgument::Declaration:
3756 case TemplateArgument::Integral:
Eli Friedmanb826a002012-09-26 02:36:12 +00003757 case TemplateArgument::NullPtr:
Douglas Gregorda0fb532009-11-11 19:31:23 +00003758 // We've already checked this template argument, so just copy
3759 // it to the list of converted arguments.
Douglas Gregor1ccc8412010-11-07 23:05:16 +00003760 Converted.push_back(Arg.getArgument());
Douglas Gregorda0fb532009-11-11 19:31:23 +00003761 break;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003762
Douglas Gregorda0fb532009-11-11 19:31:23 +00003763 case TemplateArgument::Template:
Douglas Gregore4ff4b52011-01-05 18:58:31 +00003764 case TemplateArgument::TemplateExpansion:
Douglas Gregorda0fb532009-11-11 19:31:23 +00003765 // We were given a template template argument. It may not be ill-formed;
3766 // see below.
3767 if (DependentTemplateName *DTN
Douglas Gregore4ff4b52011-01-05 18:58:31 +00003768 = Arg.getArgument().getAsTemplateOrTemplatePattern()
3769 .getAsDependentTemplateName()) {
Douglas Gregorda0fb532009-11-11 19:31:23 +00003770 // We have a template argument such as \c T::template X, which we
3771 // parsed as a template template argument. However, since we now
3772 // know that we need a non-type template argument, convert this
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00003773 // template name into an expression.
3774
3775 DeclarationNameInfo NameInfo(DTN->getIdentifier(),
3776 Arg.getTemplateNameLoc());
3777
Douglas Gregor3a43fd62011-02-25 20:49:16 +00003778 CXXScopeSpec SS;
Douglas Gregor9d802122011-03-02 17:09:35 +00003779 SS.Adopt(Arg.getTemplateQualifierLoc());
Abramo Bagnara7945c982012-01-27 09:46:47 +00003780 // FIXME: the template-template arg was a DependentTemplateName,
3781 // so it was provided with a template keyword. However, its source
3782 // location is not stored in the template argument structure.
3783 SourceLocation TemplateKWLoc;
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00003784 ExprResult E = DependentScopeDeclRefExpr::Create(
3785 Context, SS.getWithLocInContext(Context), TemplateKWLoc, NameInfo,
3786 nullptr);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003787
Douglas Gregore4ff4b52011-01-05 18:58:31 +00003788 // If we parsed the template argument as a pack expansion, create a
3789 // pack expansion expression.
3790 if (Arg.getArgument().getKind() == TemplateArgument::TemplateExpansion){
Nikola Smiljanic01a75982014-05-29 10:55:11 +00003791 E = ActOnPackExpansion(E.get(), Arg.getTemplateEllipsisLoc());
John Wiegley01296292011-04-08 18:41:53 +00003792 if (E.isInvalid())
Douglas Gregore4ff4b52011-01-05 18:58:31 +00003793 return true;
Douglas Gregore4ff4b52011-01-05 18:58:31 +00003794 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003795
Douglas Gregorda0fb532009-11-11 19:31:23 +00003796 TemplateArgument Result;
Nikola Smiljanic01a75982014-05-29 10:55:11 +00003797 E = CheckTemplateArgument(NTTP, NTTPType, E.get(), Result);
John Wiegley01296292011-04-08 18:41:53 +00003798 if (E.isInvalid())
Douglas Gregorda0fb532009-11-11 19:31:23 +00003799 return true;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003800
Douglas Gregor1ccc8412010-11-07 23:05:16 +00003801 Converted.push_back(Result);
Douglas Gregorda0fb532009-11-11 19:31:23 +00003802 break;
3803 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003804
Douglas Gregorda0fb532009-11-11 19:31:23 +00003805 // We have a template argument that actually does refer to a class
Richard Smith3f1b5d02011-05-05 21:57:07 +00003806 // template, alias template, or template template parameter, and
Douglas Gregorda0fb532009-11-11 19:31:23 +00003807 // therefore cannot be a non-type template argument.
3808 Diag(Arg.getLocation(), diag::err_template_arg_must_be_expr)
3809 << Arg.getSourceRange();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003810
Douglas Gregorda0fb532009-11-11 19:31:23 +00003811 Diag(Param->getLocation(), diag::note_template_param_here);
3812 return true;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003813
Douglas Gregorda0fb532009-11-11 19:31:23 +00003814 case TemplateArgument::Type: {
3815 // We have a non-type template parameter but the template
3816 // argument is a type.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003817
Douglas Gregorda0fb532009-11-11 19:31:23 +00003818 // C++ [temp.arg]p2:
3819 // In a template-argument, an ambiguity between a type-id and
3820 // an expression is resolved to a type-id, regardless of the
3821 // form of the corresponding template-parameter.
3822 //
3823 // We warn specifically about this case, since it can be rather
3824 // confusing for users.
3825 QualType T = Arg.getArgument().getAsType();
3826 SourceRange SR = Arg.getSourceRange();
3827 if (T->isFunctionType())
3828 Diag(SR.getBegin(), diag::err_template_arg_nontype_ambig) << SR << T;
3829 else
3830 Diag(SR.getBegin(), diag::err_template_arg_must_be_expr) << SR;
3831 Diag(Param->getLocation(), diag::note_template_param_here);
3832 return true;
3833 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003834
Douglas Gregorda0fb532009-11-11 19:31:23 +00003835 case TemplateArgument::Pack:
Jeffrey Yasskin1615d452009-12-12 05:05:38 +00003836 llvm_unreachable("Caller must expand template argument packs");
Douglas Gregorda0fb532009-11-11 19:31:23 +00003837 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003838
Douglas Gregorda0fb532009-11-11 19:31:23 +00003839 return false;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003840 }
3841
3842
Douglas Gregorda0fb532009-11-11 19:31:23 +00003843 // Check template template parameters.
3844 TemplateTemplateParmDecl *TempParm = cast<TemplateTemplateParmDecl>(Param);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003845
Douglas Gregorda0fb532009-11-11 19:31:23 +00003846 // Substitute into the template parameter list of the template
3847 // template parameter, since previously-supplied template arguments
3848 // may appear within the template template parameter.
3849 {
3850 // Set up a template instantiation context.
3851 LocalInstantiationScope Scope(*this);
3852 InstantiatingTemplate Inst(*this, TemplateLoc, Template,
Richard Smith80934652012-07-16 01:09:10 +00003853 TempParm, Converted,
Douglas Gregorda0fb532009-11-11 19:31:23 +00003854 SourceRange(TemplateLoc, RAngleLoc));
Alp Tokerd4a72d52013-10-08 08:09:04 +00003855 if (Inst.isInvalid())
Richard Smith8a874c92012-07-08 02:38:24 +00003856 return true;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003857
David Majnemer8b622692016-07-03 21:17:51 +00003858 TemplateArgumentList TemplateArgs(TemplateArgumentList::OnStack, Converted);
Douglas Gregorda0fb532009-11-11 19:31:23 +00003859 TempParm = cast_or_null<TemplateTemplateParmDecl>(
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003860 SubstDecl(TempParm, CurContext,
Douglas Gregorda0fb532009-11-11 19:31:23 +00003861 MultiLevelTemplateArgumentList(TemplateArgs)));
3862 if (!TempParm)
3863 return true;
Douglas Gregorda0fb532009-11-11 19:31:23 +00003864 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003865
Douglas Gregorda0fb532009-11-11 19:31:23 +00003866 switch (Arg.getArgument().getKind()) {
3867 case TemplateArgument::Null:
David Blaikie83d382b2011-09-23 05:06:16 +00003868 llvm_unreachable("Should never see a NULL template argument here");
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003869
Douglas Gregorda0fb532009-11-11 19:31:23 +00003870 case TemplateArgument::Template:
Douglas Gregore4ff4b52011-01-05 18:58:31 +00003871 case TemplateArgument::TemplateExpansion:
Richard Smith1fde8ec2012-09-07 02:06:42 +00003872 if (CheckTemplateArgument(TempParm, Arg, ArgumentPackIndex))
Douglas Gregorda0fb532009-11-11 19:31:23 +00003873 return true;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003874
Douglas Gregor1ccc8412010-11-07 23:05:16 +00003875 Converted.push_back(Arg.getArgument());
Douglas Gregorda0fb532009-11-11 19:31:23 +00003876 break;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003877
Douglas Gregorda0fb532009-11-11 19:31:23 +00003878 case TemplateArgument::Expression:
3879 case TemplateArgument::Type:
3880 // We have a template template parameter but the template
3881 // argument does not refer to a template.
Richard Smith3f1b5d02011-05-05 21:57:07 +00003882 Diag(Arg.getLocation(), diag::err_template_arg_must_be_template)
Richard Smith2bf7fdb2013-01-02 11:42:31 +00003883 << getLangOpts().CPlusPlus11;
Douglas Gregorda0fb532009-11-11 19:31:23 +00003884 return true;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003885
Douglas Gregorda0fb532009-11-11 19:31:23 +00003886 case TemplateArgument::Declaration:
David Blaikie8a40f702012-01-17 06:56:22 +00003887 llvm_unreachable("Declaration argument with template template parameter");
Douglas Gregorda0fb532009-11-11 19:31:23 +00003888 case TemplateArgument::Integral:
David Blaikie8a40f702012-01-17 06:56:22 +00003889 llvm_unreachable("Integral argument with template template parameter");
Eli Friedmanb826a002012-09-26 02:36:12 +00003890 case TemplateArgument::NullPtr:
3891 llvm_unreachable("Null pointer argument with template template parameter");
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003892
Douglas Gregorda0fb532009-11-11 19:31:23 +00003893 case TemplateArgument::Pack:
Jeffrey Yasskin1615d452009-12-12 05:05:38 +00003894 llvm_unreachable("Caller must expand template argument packs");
Douglas Gregorda0fb532009-11-11 19:31:23 +00003895 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003896
Douglas Gregorda0fb532009-11-11 19:31:23 +00003897 return false;
3898}
3899
Simon Pilgrim6905d222016-12-30 22:55:33 +00003900/// \brief Diagnose an arity mismatch in the
Douglas Gregor8e072612012-02-03 07:34:46 +00003901static bool diagnoseArityMismatch(Sema &S, TemplateDecl *Template,
3902 SourceLocation TemplateLoc,
3903 TemplateArgumentListInfo &TemplateArgs) {
3904 TemplateParameterList *Params = Template->getTemplateParameters();
3905 unsigned NumParams = Params->size();
3906 unsigned NumArgs = TemplateArgs.size();
3907
3908 SourceRange Range;
3909 if (NumArgs > NumParams)
Simon Pilgrim6905d222016-12-30 22:55:33 +00003910 Range = SourceRange(TemplateArgs[NumParams].getLocation(),
Douglas Gregor8e072612012-02-03 07:34:46 +00003911 TemplateArgs.getRAngleLoc());
3912 S.Diag(TemplateLoc, diag::err_template_arg_list_different_arity)
3913 << (NumArgs > NumParams)
Richard Smith0c062b42017-01-14 02:19:59 +00003914 << (int)S.getTemplateNameKindForDiagnostics(TemplateName(Template))
Douglas Gregor8e072612012-02-03 07:34:46 +00003915 << Template << Range;
3916 S.Diag(Template->getLocation(), diag::note_template_decl_here)
3917 << Params->getSourceRange();
3918 return true;
3919}
3920
Richard Smith1fde8ec2012-09-07 02:06:42 +00003921/// \brief Check whether the template parameter is a pack expansion, and if so,
3922/// determine the number of parameters produced by that expansion. For instance:
3923///
3924/// \code
3925/// template<typename ...Ts> struct A {
3926/// template<Ts ...NTs, template<Ts> class ...TTs, typename ...Us> struct B;
3927/// };
3928/// \endcode
3929///
3930/// In \c A<int,int>::B, \c NTs and \c TTs have expanded pack size 2, and \c Us
3931/// is not a pack expansion, so returns an empty Optional.
David Blaikie05785d12013-02-20 22:23:23 +00003932static Optional<unsigned> getExpandedPackSize(NamedDecl *Param) {
Richard Smith1fde8ec2012-09-07 02:06:42 +00003933 if (NonTypeTemplateParmDecl *NTTP
3934 = dyn_cast<NonTypeTemplateParmDecl>(Param)) {
3935 if (NTTP->isExpandedParameterPack())
3936 return NTTP->getNumExpansionTypes();
3937 }
3938
3939 if (TemplateTemplateParmDecl *TTP
3940 = dyn_cast<TemplateTemplateParmDecl>(Param)) {
3941 if (TTP->isExpandedParameterPack())
3942 return TTP->getNumExpansionTemplateParameters();
3943 }
3944
David Blaikie7a30dc52013-02-21 01:47:18 +00003945 return None;
Richard Smith1fde8ec2012-09-07 02:06:42 +00003946}
3947
Richard Smith35c1df52015-06-17 20:16:32 +00003948/// Diagnose a missing template argument.
3949template<typename TemplateParmDecl>
3950static bool diagnoseMissingArgument(Sema &S, SourceLocation Loc,
3951 TemplateDecl *TD,
3952 const TemplateParmDecl *D,
3953 TemplateArgumentListInfo &Args) {
3954 // Dig out the most recent declaration of the template parameter; there may be
3955 // declarations of the template that are more recent than TD.
3956 D = cast<TemplateParmDecl>(cast<TemplateDecl>(TD->getMostRecentDecl())
3957 ->getTemplateParameters()
3958 ->getParam(D->getIndex()));
3959
3960 // If there's a default argument that's not visible, diagnose that we're
3961 // missing a module import.
3962 llvm::SmallVector<Module*, 8> Modules;
3963 if (D->hasDefaultArgument() && !S.hasVisibleDefaultArgument(D, &Modules)) {
3964 S.diagnoseMissingImport(Loc, cast<NamedDecl>(TD),
3965 D->getDefaultArgumentLoc(), Modules,
3966 Sema::MissingImportKind::DefaultArgument,
Richard Smith6739a102016-05-05 00:56:12 +00003967 /*Recover*/true);
Richard Smith35c1df52015-06-17 20:16:32 +00003968 return true;
3969 }
3970
3971 // FIXME: If there's a more recent default argument that *is* visible,
3972 // diagnose that it was declared too late.
3973
3974 return diagnoseArityMismatch(S, TD, Loc, Args);
3975}
3976
Douglas Gregord32e0282009-02-09 23:23:08 +00003977/// \brief Check that the given template argument list is well-formed
3978/// for specializing the given template.
3979bool Sema::CheckTemplateArgumentList(TemplateDecl *Template,
3980 SourceLocation TemplateLoc,
Douglas Gregor739b107a2011-03-03 02:41:12 +00003981 TemplateArgumentListInfo &TemplateArgs,
Douglas Gregore3f1f352009-07-01 00:28:38 +00003982 bool PartialTemplateArgs,
Richard Smith83b11aa2014-01-09 02:22:22 +00003983 SmallVectorImpl<TemplateArgument> &Converted) {
Richard Trieu15b66532015-01-24 02:48:32 +00003984 // Make a copy of the template arguments for processing. Only make the
3985 // changes at the end when successful in matching the arguments to the
3986 // template.
3987 TemplateArgumentListInfo NewArgs = TemplateArgs;
3988
Douglas Gregord32e0282009-02-09 23:23:08 +00003989 TemplateParameterList *Params = Template->getTemplateParameters();
Douglas Gregord32e0282009-02-09 23:23:08 +00003990
Richard Trieu15b66532015-01-24 02:48:32 +00003991 SourceLocation RAngleLoc = NewArgs.getRAngleLoc();
John McCall6b51f282009-11-23 01:53:49 +00003992
Mike Stump11289f42009-09-09 15:08:12 +00003993 // C++ [temp.arg]p1:
Douglas Gregord32e0282009-02-09 23:23:08 +00003994 // [...] The type and form of each template-argument specified in
3995 // a template-id shall match the type and form specified for the
3996 // corresponding parameter declared by the template in its
3997 // template-parameter-list.
Douglas Gregor739b107a2011-03-03 02:41:12 +00003998 bool isTemplateTemplateParameter = isa<TemplateTemplateParmDecl>(Template);
Chris Lattner0e62c1c2011-07-23 10:55:15 +00003999 SmallVector<TemplateArgument, 2> ArgumentPack;
Richard Trieu15b66532015-01-24 02:48:32 +00004000 unsigned ArgIdx = 0, NumArgs = NewArgs.size();
Douglas Gregorf143cd52011-01-24 16:14:37 +00004001 LocalInstantiationScope InstScope(*this, true);
Richard Smith1fde8ec2012-09-07 02:06:42 +00004002 for (TemplateParameterList::iterator Param = Params->begin(),
4003 ParamEnd = Params->end();
4004 Param != ParamEnd; /* increment in loop */) {
4005 // If we have an expanded parameter pack, make sure we don't have too
4006 // many arguments.
David Blaikie05785d12013-02-20 22:23:23 +00004007 if (Optional<unsigned> Expansions = getExpandedPackSize(*Param)) {
Richard Smith1fde8ec2012-09-07 02:06:42 +00004008 if (*Expansions == ArgumentPack.size()) {
4009 // We're done with this parameter pack. Pack up its arguments and add
4010 // them to the list.
Eli Friedmanb826a002012-09-26 02:36:12 +00004011 Converted.push_back(
Benjamin Kramercce63472015-08-05 09:40:22 +00004012 TemplateArgument::CreatePackCopy(Context, ArgumentPack));
Eli Friedmanb826a002012-09-26 02:36:12 +00004013 ArgumentPack.clear();
4014
Richard Smith1fde8ec2012-09-07 02:06:42 +00004015 // This argument is assigned to the next parameter.
4016 ++Param;
4017 continue;
4018 } else if (ArgIdx == NumArgs && !PartialTemplateArgs) {
4019 // Not enough arguments for this parameter pack.
4020 Diag(TemplateLoc, diag::err_template_arg_list_different_arity)
4021 << false
Richard Smith0c062b42017-01-14 02:19:59 +00004022 << (int)getTemplateNameKindForDiagnostics(TemplateName(Template))
Richard Smith1fde8ec2012-09-07 02:06:42 +00004023 << Template;
4024 Diag(Template->getLocation(), diag::note_template_decl_here)
4025 << Params->getSourceRange();
4026 return true;
Douglas Gregor0231d8d2011-01-19 20:10:05 +00004027 }
Richard Smith1fde8ec2012-09-07 02:06:42 +00004028 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004029
Richard Smith1fde8ec2012-09-07 02:06:42 +00004030 if (ArgIdx < NumArgs) {
Douglas Gregor84d49a22009-11-11 21:54:23 +00004031 // Check the template argument we were given.
Richard Trieu15b66532015-01-24 02:48:32 +00004032 if (CheckTemplateArgument(*Param, NewArgs[ArgIdx], Template,
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004033 TemplateLoc, RAngleLoc,
Douglas Gregor0231d8d2011-01-19 20:10:05 +00004034 ArgumentPack.size(), Converted))
Douglas Gregor84d49a22009-11-11 21:54:23 +00004035 return true;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004036
Richard Smith96d71c32014-11-12 23:38:38 +00004037 bool PackExpansionIntoNonPack =
Richard Trieu15b66532015-01-24 02:48:32 +00004038 NewArgs[ArgIdx].getArgument().isPackExpansion() &&
Richard Smith96d71c32014-11-12 23:38:38 +00004039 (!(*Param)->isTemplateParameterPack() || getExpandedPackSize(*Param));
4040 if (PackExpansionIntoNonPack && isa<TypeAliasTemplateDecl>(Template)) {
Richard Smith83b11aa2014-01-09 02:22:22 +00004041 // Core issue 1430: we have a pack expansion as an argument to an
Richard Smith96d71c32014-11-12 23:38:38 +00004042 // alias template, and it's not part of a parameter pack. This
Richard Smith83b11aa2014-01-09 02:22:22 +00004043 // can't be canonicalized, so reject it now.
Richard Trieu15b66532015-01-24 02:48:32 +00004044 Diag(NewArgs[ArgIdx].getLocation(),
Richard Smith83b11aa2014-01-09 02:22:22 +00004045 diag::err_alias_template_expansion_into_fixed_list)
Richard Trieu15b66532015-01-24 02:48:32 +00004046 << NewArgs[ArgIdx].getSourceRange();
Richard Smith83b11aa2014-01-09 02:22:22 +00004047 Diag((*Param)->getLocation(), diag::note_template_param_here);
4048 return true;
4049 }
4050
Richard Smith1fde8ec2012-09-07 02:06:42 +00004051 // We're now done with this argument.
4052 ++ArgIdx;
4053
Douglas Gregor9abeaf52010-12-20 16:57:52 +00004054 if ((*Param)->isTemplateParameterPack()) {
4055 // The template parameter was a template parameter pack, so take the
4056 // deduced argument and place it on the argument pack. Note that we
4057 // stay on the same template parameter so that we can deduce more
4058 // arguments.
Robert Wilhelm25284cc2013-08-23 16:11:15 +00004059 ArgumentPack.push_back(Converted.pop_back_val());
Douglas Gregor9abeaf52010-12-20 16:57:52 +00004060 } else {
4061 // Move to the next template parameter.
4062 ++Param;
4063 }
Richard Smith1fde8ec2012-09-07 02:06:42 +00004064
Richard Smith96d71c32014-11-12 23:38:38 +00004065 // If we just saw a pack expansion into a non-pack, then directly convert
4066 // the remaining arguments, because we don't know what parameters they'll
4067 // match up with.
4068 if (PackExpansionIntoNonPack) {
4069 if (!ArgumentPack.empty()) {
Richard Smith1fde8ec2012-09-07 02:06:42 +00004070 // If we were part way through filling in an expanded parameter pack,
4071 // fall back to just producing individual arguments.
4072 Converted.insert(Converted.end(),
4073 ArgumentPack.begin(), ArgumentPack.end());
4074 ArgumentPack.clear();
4075 }
4076
4077 while (ArgIdx < NumArgs) {
Richard Trieu15b66532015-01-24 02:48:32 +00004078 Converted.push_back(NewArgs[ArgIdx].getArgument());
Richard Smith1fde8ec2012-09-07 02:06:42 +00004079 ++ArgIdx;
4080 }
4081
Richard Smith1fde8ec2012-09-07 02:06:42 +00004082 return false;
Douglas Gregor8e072612012-02-03 07:34:46 +00004083 }
Richard Smith1fde8ec2012-09-07 02:06:42 +00004084
Douglas Gregor84d49a22009-11-11 21:54:23 +00004085 continue;
Douglas Gregor264ec4f2009-02-17 01:05:43 +00004086 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004087
Douglas Gregor2f157c92011-06-03 02:59:40 +00004088 // If we're checking a partial template argument list, we're done.
4089 if (PartialTemplateArgs) {
4090 if ((*Param)->isTemplateParameterPack() && !ArgumentPack.empty())
Benjamin Kramercce63472015-08-05 09:40:22 +00004091 Converted.push_back(
4092 TemplateArgument::CreatePackCopy(Context, ArgumentPack));
4093
Richard Smith1fde8ec2012-09-07 02:06:42 +00004094 return false;
Douglas Gregor2f157c92011-06-03 02:59:40 +00004095 }
4096
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004097 // If we have a template parameter pack with no more corresponding
Douglas Gregor9abeaf52010-12-20 16:57:52 +00004098 // arguments, just break out now and we'll fill in the argument pack below.
Richard Smith1fde8ec2012-09-07 02:06:42 +00004099 if ((*Param)->isTemplateParameterPack()) {
4100 assert(!getExpandedPackSize(*Param) &&
4101 "Should have dealt with this already");
4102
4103 // A non-expanded parameter pack before the end of the parameter list
4104 // only occurs for an ill-formed template parameter list, unless we've
4105 // got a partial argument list for a function template, so just bail out.
4106 if (Param + 1 != ParamEnd)
4107 return true;
4108
Benjamin Kramercce63472015-08-05 09:40:22 +00004109 Converted.push_back(
4110 TemplateArgument::CreatePackCopy(Context, ArgumentPack));
Eli Friedmanb826a002012-09-26 02:36:12 +00004111 ArgumentPack.clear();
Richard Smith1fde8ec2012-09-07 02:06:42 +00004112
4113 ++Param;
4114 continue;
4115 }
4116
Douglas Gregor8e072612012-02-03 07:34:46 +00004117 // Check whether we have a default argument.
Douglas Gregor84d49a22009-11-11 21:54:23 +00004118 TemplateArgumentLoc Arg;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004119
Douglas Gregor84d49a22009-11-11 21:54:23 +00004120 // Retrieve the default template argument from the template
4121 // parameter. For each kind of template parameter, we substitute the
4122 // template arguments provided thus far and any "outer" template arguments
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004123 // (when the template parameter was part of a nested template) into
Douglas Gregor84d49a22009-11-11 21:54:23 +00004124 // the default argument.
4125 if (TemplateTypeParmDecl *TTP = dyn_cast<TemplateTypeParmDecl>(*Param)) {
Richard Smith95d83952015-06-10 20:36:34 +00004126 if (!hasVisibleDefaultArgument(TTP))
Richard Smith35c1df52015-06-17 20:16:32 +00004127 return diagnoseMissingArgument(*this, TemplateLoc, Template, TTP,
4128 NewArgs);
Douglas Gregor84d49a22009-11-11 21:54:23 +00004129
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004130 TypeSourceInfo *ArgType = SubstDefaultTemplateArgument(*this,
Douglas Gregor84d49a22009-11-11 21:54:23 +00004131 Template,
4132 TemplateLoc,
4133 RAngleLoc,
4134 TTP,
4135 Converted);
4136 if (!ArgType)
4137 return true;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004138
Douglas Gregor84d49a22009-11-11 21:54:23 +00004139 Arg = TemplateArgumentLoc(TemplateArgument(ArgType->getType()),
4140 ArgType);
4141 } else if (NonTypeTemplateParmDecl *NTTP
4142 = dyn_cast<NonTypeTemplateParmDecl>(*Param)) {
Richard Smith95d83952015-06-10 20:36:34 +00004143 if (!hasVisibleDefaultArgument(NTTP))
Richard Smith35c1df52015-06-17 20:16:32 +00004144 return diagnoseMissingArgument(*this, TemplateLoc, Template, NTTP,
4145 NewArgs);
Douglas Gregor84d49a22009-11-11 21:54:23 +00004146
John McCalldadc5752010-08-24 06:29:42 +00004147 ExprResult E = SubstDefaultTemplateArgument(*this, Template,
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004148 TemplateLoc,
4149 RAngleLoc,
4150 NTTP,
Douglas Gregor84d49a22009-11-11 21:54:23 +00004151 Converted);
4152 if (E.isInvalid())
4153 return true;
4154
Nikola Smiljanic01a75982014-05-29 10:55:11 +00004155 Expr *Ex = E.getAs<Expr>();
Douglas Gregor84d49a22009-11-11 21:54:23 +00004156 Arg = TemplateArgumentLoc(TemplateArgument(Ex), Ex);
4157 } else {
4158 TemplateTemplateParmDecl *TempParm
4159 = cast<TemplateTemplateParmDecl>(*Param);
4160
Richard Smith95d83952015-06-10 20:36:34 +00004161 if (!hasVisibleDefaultArgument(TempParm))
Richard Smith35c1df52015-06-17 20:16:32 +00004162 return diagnoseMissingArgument(*this, TemplateLoc, Template, TempParm,
4163 NewArgs);
Douglas Gregor84d49a22009-11-11 21:54:23 +00004164
Douglas Gregordf846d12011-03-02 18:46:51 +00004165 NestedNameSpecifierLoc QualifierLoc;
Douglas Gregor84d49a22009-11-11 21:54:23 +00004166 TemplateName Name = SubstDefaultTemplateArgument(*this, Template,
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004167 TemplateLoc,
4168 RAngleLoc,
Douglas Gregor84d49a22009-11-11 21:54:23 +00004169 TempParm,
Douglas Gregor9d802122011-03-02 17:09:35 +00004170 Converted,
4171 QualifierLoc);
Douglas Gregor84d49a22009-11-11 21:54:23 +00004172 if (Name.isNull())
4173 return true;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004174
Douglas Gregor9d802122011-03-02 17:09:35 +00004175 Arg = TemplateArgumentLoc(TemplateArgument(Name), QualifierLoc,
4176 TempParm->getDefaultArgument().getTemplateNameLoc());
Douglas Gregor84d49a22009-11-11 21:54:23 +00004177 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004178
Douglas Gregor84d49a22009-11-11 21:54:23 +00004179 // Introduce an instantiation record that describes where we are using
Richard Smith54f18e82016-08-31 02:15:21 +00004180 // the default template argument. We're not actually instantiating a
4181 // template here, we just create this object to put a note into the
4182 // context stack.
Alp Tokerd4a72d52013-10-08 08:09:04 +00004183 InstantiatingTemplate Inst(*this, RAngleLoc, Template, *Param, Converted,
4184 SourceRange(TemplateLoc, RAngleLoc));
4185 if (Inst.isInvalid())
Richard Smith8a874c92012-07-08 02:38:24 +00004186 return true;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004187
Douglas Gregor84d49a22009-11-11 21:54:23 +00004188 // Check the default template argument.
Douglas Gregoreebed722009-11-11 19:41:09 +00004189 if (CheckTemplateArgument(*Param, Arg, Template, TemplateLoc,
Douglas Gregor0231d8d2011-01-19 20:10:05 +00004190 RAngleLoc, 0, Converted))
Douglas Gregorda0fb532009-11-11 19:31:23 +00004191 return true;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004192
Richard Trieu15b66532015-01-24 02:48:32 +00004193 // Core issue 150 (assumed resolution): if this is a template template
4194 // parameter, keep track of the default template arguments from the
Douglas Gregor739b107a2011-03-03 02:41:12 +00004195 // template definition.
4196 if (isTemplateTemplateParameter)
Richard Trieu15b66532015-01-24 02:48:32 +00004197 NewArgs.addArgument(Arg);
4198
Douglas Gregor9abeaf52010-12-20 16:57:52 +00004199 // Move to the next template parameter and argument.
4200 ++Param;
4201 ++ArgIdx;
Douglas Gregord32e0282009-02-09 23:23:08 +00004202 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004203
Richard Smith07f79912014-06-06 16:00:50 +00004204 // If we're performing a partial argument substitution, allow any trailing
4205 // pack expansions; they might be empty. This can happen even if
4206 // PartialTemplateArgs is false (the list of arguments is complete but
4207 // still dependent).
4208 if (ArgIdx < NumArgs && CurrentInstantiationScope &&
4209 CurrentInstantiationScope->getPartiallySubstitutedPack()) {
Richard Trieu15b66532015-01-24 02:48:32 +00004210 while (ArgIdx < NumArgs && NewArgs[ArgIdx].getArgument().isPackExpansion())
4211 Converted.push_back(NewArgs[ArgIdx++].getArgument());
Richard Smith07f79912014-06-06 16:00:50 +00004212 }
4213
Douglas Gregor8e072612012-02-03 07:34:46 +00004214 // If we have any leftover arguments, then there were too many arguments.
4215 // Complain and fail.
4216 if (ArgIdx < NumArgs)
Richard Trieu15b66532015-01-24 02:48:32 +00004217 return diagnoseArityMismatch(*this, Template, TemplateLoc, NewArgs);
4218
4219 // No problems found with the new argument list, propagate changes back
4220 // to caller.
Richard Smith7d3c3ef2015-10-02 00:49:37 +00004221 TemplateArgs = std::move(NewArgs);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004222
Richard Smith1fde8ec2012-09-07 02:06:42 +00004223 return false;
Douglas Gregord32e0282009-02-09 23:23:08 +00004224}
4225
Douglas Gregor7731d3f2010-10-13 00:27:52 +00004226namespace {
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004227 class UnnamedLocalNoLinkageFinder
4228 : public TypeVisitor<UnnamedLocalNoLinkageFinder, bool>
Douglas Gregor7731d3f2010-10-13 00:27:52 +00004229 {
4230 Sema &S;
4231 SourceRange SR;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004232
Douglas Gregor7731d3f2010-10-13 00:27:52 +00004233 typedef TypeVisitor<UnnamedLocalNoLinkageFinder, bool> inherited;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004234
Douglas Gregor7731d3f2010-10-13 00:27:52 +00004235 public:
4236 UnnamedLocalNoLinkageFinder(Sema &S, SourceRange SR) : S(S), SR(SR) { }
4237
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004238 bool Visit(QualType T) {
Daniel Jasper5cad6852017-01-02 22:55:45 +00004239 return T.isNull() ? false : inherited::Visit(T.getTypePtr());
Douglas Gregor7731d3f2010-10-13 00:27:52 +00004240 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004241
Douglas Gregor7731d3f2010-10-13 00:27:52 +00004242#define TYPE(Class, Parent) \
4243 bool Visit##Class##Type(const Class##Type *);
4244#define ABSTRACT_TYPE(Class, Parent) \
4245 bool Visit##Class##Type(const Class##Type *) { return false; }
4246#define NON_CANONICAL_TYPE(Class, Parent) \
4247 bool Visit##Class##Type(const Class##Type *) { return false; }
4248#include "clang/AST/TypeNodes.def"
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004249
Douglas Gregor7731d3f2010-10-13 00:27:52 +00004250 bool VisitTagDecl(const TagDecl *Tag);
4251 bool VisitNestedNameSpecifier(NestedNameSpecifier *NNS);
4252 };
Eugene Zelenko1ced5092016-02-12 22:53:10 +00004253} // end anonymous namespace
Douglas Gregor7731d3f2010-10-13 00:27:52 +00004254
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004255bool UnnamedLocalNoLinkageFinder::VisitBuiltinType(const BuiltinType*) {
Douglas Gregor7731d3f2010-10-13 00:27:52 +00004256 return false;
4257}
4258
4259bool UnnamedLocalNoLinkageFinder::VisitComplexType(const ComplexType* T) {
4260 return Visit(T->getElementType());
4261}
4262
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004263bool UnnamedLocalNoLinkageFinder::VisitPointerType(const PointerType* T) {
Douglas Gregor7731d3f2010-10-13 00:27:52 +00004264 return Visit(T->getPointeeType());
4265}
4266
4267bool UnnamedLocalNoLinkageFinder::VisitBlockPointerType(
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004268 const BlockPointerType* T) {
Douglas Gregor7731d3f2010-10-13 00:27:52 +00004269 return Visit(T->getPointeeType());
4270}
4271
4272bool UnnamedLocalNoLinkageFinder::VisitLValueReferenceType(
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004273 const LValueReferenceType* T) {
Douglas Gregor7731d3f2010-10-13 00:27:52 +00004274 return Visit(T->getPointeeType());
4275}
4276
4277bool UnnamedLocalNoLinkageFinder::VisitRValueReferenceType(
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004278 const RValueReferenceType* T) {
Douglas Gregor7731d3f2010-10-13 00:27:52 +00004279 return Visit(T->getPointeeType());
4280}
4281
4282bool UnnamedLocalNoLinkageFinder::VisitMemberPointerType(
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004283 const MemberPointerType* T) {
Douglas Gregor7731d3f2010-10-13 00:27:52 +00004284 return Visit(T->getPointeeType()) || Visit(QualType(T->getClass(), 0));
4285}
4286
4287bool UnnamedLocalNoLinkageFinder::VisitConstantArrayType(
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004288 const ConstantArrayType* T) {
Douglas Gregor7731d3f2010-10-13 00:27:52 +00004289 return Visit(T->getElementType());
4290}
4291
4292bool UnnamedLocalNoLinkageFinder::VisitIncompleteArrayType(
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004293 const IncompleteArrayType* T) {
Douglas Gregor7731d3f2010-10-13 00:27:52 +00004294 return Visit(T->getElementType());
4295}
4296
4297bool UnnamedLocalNoLinkageFinder::VisitVariableArrayType(
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004298 const VariableArrayType* T) {
Douglas Gregor7731d3f2010-10-13 00:27:52 +00004299 return Visit(T->getElementType());
4300}
4301
4302bool UnnamedLocalNoLinkageFinder::VisitDependentSizedArrayType(
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004303 const DependentSizedArrayType* T) {
Douglas Gregor7731d3f2010-10-13 00:27:52 +00004304 return Visit(T->getElementType());
4305}
4306
4307bool UnnamedLocalNoLinkageFinder::VisitDependentSizedExtVectorType(
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004308 const DependentSizedExtVectorType* T) {
Douglas Gregor7731d3f2010-10-13 00:27:52 +00004309 return Visit(T->getElementType());
4310}
4311
4312bool UnnamedLocalNoLinkageFinder::VisitVectorType(const VectorType* T) {
4313 return Visit(T->getElementType());
4314}
4315
4316bool UnnamedLocalNoLinkageFinder::VisitExtVectorType(const ExtVectorType* T) {
4317 return Visit(T->getElementType());
4318}
4319
4320bool UnnamedLocalNoLinkageFinder::VisitFunctionProtoType(
4321 const FunctionProtoType* T) {
Aaron Ballman40bd0aa2014-03-17 15:23:01 +00004322 for (const auto &A : T->param_types()) {
4323 if (Visit(A))
Douglas Gregor7731d3f2010-10-13 00:27:52 +00004324 return true;
4325 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004326
Alp Toker314cc812014-01-25 16:55:45 +00004327 return Visit(T->getReturnType());
Douglas Gregor7731d3f2010-10-13 00:27:52 +00004328}
4329
4330bool UnnamedLocalNoLinkageFinder::VisitFunctionNoProtoType(
4331 const FunctionNoProtoType* T) {
Alp Toker314cc812014-01-25 16:55:45 +00004332 return Visit(T->getReturnType());
Douglas Gregor7731d3f2010-10-13 00:27:52 +00004333}
4334
4335bool UnnamedLocalNoLinkageFinder::VisitUnresolvedUsingType(
4336 const UnresolvedUsingType*) {
4337 return false;
4338}
4339
4340bool UnnamedLocalNoLinkageFinder::VisitTypeOfExprType(const TypeOfExprType*) {
4341 return false;
4342}
4343
4344bool UnnamedLocalNoLinkageFinder::VisitTypeOfType(const TypeOfType* T) {
4345 return Visit(T->getUnderlyingType());
4346}
4347
4348bool UnnamedLocalNoLinkageFinder::VisitDecltypeType(const DecltypeType*) {
4349 return false;
4350}
4351
Alexis Hunte852b102011-05-24 22:41:36 +00004352bool UnnamedLocalNoLinkageFinder::VisitUnaryTransformType(
4353 const UnaryTransformType*) {
4354 return false;
4355}
4356
Richard Smith30482bc2011-02-20 03:19:35 +00004357bool UnnamedLocalNoLinkageFinder::VisitAutoType(const AutoType *T) {
4358 return Visit(T->getDeducedType());
4359}
4360
Douglas Gregor7731d3f2010-10-13 00:27:52 +00004361bool UnnamedLocalNoLinkageFinder::VisitRecordType(const RecordType* T) {
4362 return VisitTagDecl(T->getDecl());
4363}
4364
4365bool UnnamedLocalNoLinkageFinder::VisitEnumType(const EnumType* T) {
4366 return VisitTagDecl(T->getDecl());
4367}
4368
4369bool UnnamedLocalNoLinkageFinder::VisitTemplateTypeParmType(
4370 const TemplateTypeParmType*) {
4371 return false;
4372}
4373
Douglas Gregorada4b792011-01-14 02:55:32 +00004374bool UnnamedLocalNoLinkageFinder::VisitSubstTemplateTypeParmPackType(
4375 const SubstTemplateTypeParmPackType *) {
4376 return false;
4377}
4378
Douglas Gregor7731d3f2010-10-13 00:27:52 +00004379bool UnnamedLocalNoLinkageFinder::VisitTemplateSpecializationType(
4380 const TemplateSpecializationType*) {
4381 return false;
4382}
4383
4384bool UnnamedLocalNoLinkageFinder::VisitInjectedClassNameType(
4385 const InjectedClassNameType* T) {
4386 return VisitTagDecl(T->getDecl());
4387}
4388
4389bool UnnamedLocalNoLinkageFinder::VisitDependentNameType(
4390 const DependentNameType* T) {
4391 return VisitNestedNameSpecifier(T->getQualifier());
4392}
4393
4394bool UnnamedLocalNoLinkageFinder::VisitDependentTemplateSpecializationType(
4395 const DependentTemplateSpecializationType* T) {
4396 return VisitNestedNameSpecifier(T->getQualifier());
4397}
4398
Douglas Gregord2fa7662010-12-20 02:24:11 +00004399bool UnnamedLocalNoLinkageFinder::VisitPackExpansionType(
4400 const PackExpansionType* T) {
4401 return Visit(T->getPattern());
4402}
4403
Douglas Gregor7731d3f2010-10-13 00:27:52 +00004404bool UnnamedLocalNoLinkageFinder::VisitObjCObjectType(const ObjCObjectType *) {
4405 return false;
4406}
4407
4408bool UnnamedLocalNoLinkageFinder::VisitObjCInterfaceType(
4409 const ObjCInterfaceType *) {
4410 return false;
4411}
4412
4413bool UnnamedLocalNoLinkageFinder::VisitObjCObjectPointerType(
4414 const ObjCObjectPointerType *) {
4415 return false;
4416}
4417
Eli Friedman0dfb8892011-10-06 23:00:33 +00004418bool UnnamedLocalNoLinkageFinder::VisitAtomicType(const AtomicType* T) {
4419 return Visit(T->getValueType());
4420}
4421
Xiuli Pan9c14e282016-01-09 12:53:17 +00004422bool UnnamedLocalNoLinkageFinder::VisitPipeType(const PipeType* T) {
4423 return false;
4424}
4425
Douglas Gregor7731d3f2010-10-13 00:27:52 +00004426bool UnnamedLocalNoLinkageFinder::VisitTagDecl(const TagDecl *Tag) {
4427 if (Tag->getDeclContext()->isFunctionOrMethod()) {
Richard Smith0bf8a4922011-10-18 20:49:44 +00004428 S.Diag(SR.getBegin(),
Richard Smith2bf7fdb2013-01-02 11:42:31 +00004429 S.getLangOpts().CPlusPlus11 ?
Richard Smith0bf8a4922011-10-18 20:49:44 +00004430 diag::warn_cxx98_compat_template_arg_local_type :
4431 diag::ext_template_arg_local_type)
Douglas Gregor7731d3f2010-10-13 00:27:52 +00004432 << S.Context.getTypeDeclType(Tag) << SR;
4433 return true;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004434 }
4435
John McCall5ea95772013-03-09 00:54:27 +00004436 if (!Tag->hasNameForLinkage()) {
Richard Smith0bf8a4922011-10-18 20:49:44 +00004437 S.Diag(SR.getBegin(),
Richard Smith2bf7fdb2013-01-02 11:42:31 +00004438 S.getLangOpts().CPlusPlus11 ?
Richard Smith0bf8a4922011-10-18 20:49:44 +00004439 diag::warn_cxx98_compat_template_arg_unnamed_type :
4440 diag::ext_template_arg_unnamed_type) << SR;
Douglas Gregor7731d3f2010-10-13 00:27:52 +00004441 S.Diag(Tag->getLocation(), diag::note_template_unnamed_type_here);
4442 return true;
4443 }
4444
4445 return false;
4446}
4447
4448bool UnnamedLocalNoLinkageFinder::VisitNestedNameSpecifier(
4449 NestedNameSpecifier *NNS) {
4450 if (NNS->getPrefix() && VisitNestedNameSpecifier(NNS->getPrefix()))
4451 return true;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004452
Douglas Gregor7731d3f2010-10-13 00:27:52 +00004453 switch (NNS->getKind()) {
4454 case NestedNameSpecifier::Identifier:
4455 case NestedNameSpecifier::Namespace:
Douglas Gregor7b26ff92011-02-24 02:36:08 +00004456 case NestedNameSpecifier::NamespaceAlias:
Douglas Gregor7731d3f2010-10-13 00:27:52 +00004457 case NestedNameSpecifier::Global:
Nikola Smiljanic67860242014-09-26 00:28:20 +00004458 case NestedNameSpecifier::Super:
Douglas Gregor7731d3f2010-10-13 00:27:52 +00004459 return false;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004460
Douglas Gregor7731d3f2010-10-13 00:27:52 +00004461 case NestedNameSpecifier::TypeSpec:
4462 case NestedNameSpecifier::TypeSpecWithTemplate:
4463 return Visit(QualType(NNS->getAsType(), 0));
4464 }
David Blaikie8a40f702012-01-17 06:56:22 +00004465 llvm_unreachable("Invalid NestedNameSpecifier::Kind!");
Douglas Gregor7731d3f2010-10-13 00:27:52 +00004466}
4467
Douglas Gregord32e0282009-02-09 23:23:08 +00004468/// \brief Check a template argument against its corresponding
4469/// template type parameter.
4470///
4471/// This routine implements the semantics of C++ [temp.arg.type]. It
4472/// returns true if an error occurred, and false otherwise.
Mike Stump11289f42009-09-09 15:08:12 +00004473bool Sema::CheckTemplateArgument(TemplateTypeParmDecl *Param,
John McCallbcd03502009-12-07 02:54:59 +00004474 TypeSourceInfo *ArgInfo) {
4475 assert(ArgInfo && "invalid TypeSourceInfo");
John McCall0ad16662009-10-29 08:12:44 +00004476 QualType Arg = ArgInfo->getType();
Douglas Gregor959d5a02010-05-22 16:17:30 +00004477 SourceRange SR = ArgInfo->getTypeLoc().getSourceRange();
Chandler Carruth9bb67f42010-09-03 21:12:34 +00004478
4479 if (Arg->isVariablyModifiedType()) {
4480 return Diag(SR.getBegin(), diag::err_variably_modified_template_arg) << Arg;
Douglas Gregor8364e6b2009-12-21 23:17:24 +00004481 } else if (Context.hasSameUnqualifiedType(Arg, Context.OverloadTy)) {
Douglas Gregor8364e6b2009-12-21 23:17:24 +00004482 return Diag(SR.getBegin(), diag::err_template_arg_overload_type) << SR;
Douglas Gregord32e0282009-02-09 23:23:08 +00004483 }
4484
Douglas Gregor7731d3f2010-10-13 00:27:52 +00004485 // C++03 [temp.arg.type]p2:
4486 // A local type, a type with no linkage, an unnamed type or a type
4487 // compounded from any of these types shall not be used as a
4488 // template-argument for a template type-parameter.
4489 //
Richard Smith0bf8a4922011-10-18 20:49:44 +00004490 // C++11 allows these, and even in C++03 we allow them as an extension with
Douglas Gregor7731d3f2010-10-13 00:27:52 +00004491 // a warning.
Daniel Jasper5cad6852017-01-02 22:55:45 +00004492 if (LangOpts.CPlusPlus11 || Arg->hasUnnamedOrLocalType()) {
Douglas Gregor7731d3f2010-10-13 00:27:52 +00004493 UnnamedLocalNoLinkageFinder Finder(*this, SR);
4494 (void)Finder.Visit(Context.getCanonicalType(Arg));
4495 }
4496
Douglas Gregord32e0282009-02-09 23:23:08 +00004497 return false;
4498}
4499
Douglas Gregor20fdef32012-04-10 17:08:25 +00004500enum NullPointerValueKind {
4501 NPV_NotNullPointer,
4502 NPV_NullPointer,
4503 NPV_Error
4504};
4505
4506/// \brief Determine whether the given template argument is a null pointer
4507/// value of the appropriate type.
4508static NullPointerValueKind
4509isNullPointerValueTemplateArgument(Sema &S, NonTypeTemplateParmDecl *Param,
4510 QualType ParamType, Expr *Arg) {
4511 if (Arg->isValueDependent() || Arg->isTypeDependent())
4512 return NPV_NotNullPointer;
David Majnemer69c3ddc2015-09-11 20:18:09 +00004513
Richard Smithdb0ac552015-12-18 22:40:25 +00004514 if (!S.isCompleteType(Arg->getExprLoc(), ParamType))
David Majnemerb54368c2015-09-11 20:55:29 +00004515 llvm_unreachable(
4516 "Incomplete parameter type in isNullPointerValueTemplateArgument!");
David Majnemer69c3ddc2015-09-11 20:18:09 +00004517
David Majnemer5c734ad2014-08-14 00:49:23 +00004518 if (!S.getLangOpts().CPlusPlus11)
Douglas Gregor20fdef32012-04-10 17:08:25 +00004519 return NPV_NotNullPointer;
Simon Pilgrim6905d222016-12-30 22:55:33 +00004520
Douglas Gregor20fdef32012-04-10 17:08:25 +00004521 // Determine whether we have a constant expression.
Douglas Gregor350880c2012-04-10 19:03:30 +00004522 ExprResult ArgRV = S.DefaultFunctionArrayConversion(Arg);
4523 if (ArgRV.isInvalid())
4524 return NPV_Error;
Nikola Smiljanic01a75982014-05-29 10:55:11 +00004525 Arg = ArgRV.get();
Simon Pilgrim6905d222016-12-30 22:55:33 +00004526
Douglas Gregor20fdef32012-04-10 17:08:25 +00004527 Expr::EvalResult EvalResult;
Dmitri Gribenkof8579502013-01-12 19:30:44 +00004528 SmallVector<PartialDiagnosticAt, 8> Notes;
Douglas Gregor350880c2012-04-10 19:03:30 +00004529 EvalResult.Diag = &Notes;
Douglas Gregor20fdef32012-04-10 17:08:25 +00004530 if (!Arg->EvaluateAsRValue(EvalResult, S.Context) ||
Douglas Gregor350880c2012-04-10 19:03:30 +00004531 EvalResult.HasSideEffects) {
4532 SourceLocation DiagLoc = Arg->getExprLoc();
Simon Pilgrim6905d222016-12-30 22:55:33 +00004533
Douglas Gregor350880c2012-04-10 19:03:30 +00004534 // If our only note is the usual "invalid subexpression" note, just point
4535 // the caret at its location rather than producing an essentially
4536 // redundant note.
4537 if (Notes.size() == 1 && Notes[0].second.getDiagID() ==
4538 diag::note_invalid_subexpr_in_const_expr) {
4539 DiagLoc = Notes[0].first;
4540 Notes.clear();
4541 }
Simon Pilgrim6905d222016-12-30 22:55:33 +00004542
Douglas Gregor350880c2012-04-10 19:03:30 +00004543 S.Diag(DiagLoc, diag::err_template_arg_not_address_constant)
4544 << Arg->getType() << Arg->getSourceRange();
4545 for (unsigned I = 0, N = Notes.size(); I != N; ++I)
4546 S.Diag(Notes[I].first, Notes[I].second);
Simon Pilgrim6905d222016-12-30 22:55:33 +00004547
Douglas Gregor350880c2012-04-10 19:03:30 +00004548 S.Diag(Param->getLocation(), diag::note_template_param_here);
4549 return NPV_Error;
4550 }
Simon Pilgrim6905d222016-12-30 22:55:33 +00004551
Douglas Gregor20fdef32012-04-10 17:08:25 +00004552 // C++11 [temp.arg.nontype]p1:
4553 // - an address constant expression of type std::nullptr_t
4554 if (Arg->getType()->isNullPtrType())
4555 return NPV_NullPointer;
Simon Pilgrim6905d222016-12-30 22:55:33 +00004556
Douglas Gregor20fdef32012-04-10 17:08:25 +00004557 // - a constant expression that evaluates to a null pointer value (4.10); or
4558 // - a constant expression that evaluates to a null member pointer value
4559 // (4.11); or
4560 if ((EvalResult.Val.isLValue() && !EvalResult.Val.getLValueBase()) ||
4561 (EvalResult.Val.isMemberPointer() &&
4562 !EvalResult.Val.getMemberPointerDecl())) {
4563 // If our expression has an appropriate type, we've succeeded.
4564 bool ObjCLifetimeConversion;
4565 if (S.Context.hasSameUnqualifiedType(Arg->getType(), ParamType) ||
4566 S.IsQualificationConversion(Arg->getType(), ParamType, false,
4567 ObjCLifetimeConversion))
4568 return NPV_NullPointer;
Simon Pilgrim6905d222016-12-30 22:55:33 +00004569
Douglas Gregor20fdef32012-04-10 17:08:25 +00004570 // The types didn't match, but we know we got a null pointer; complain,
4571 // then recover as if the types were correct.
4572 S.Diag(Arg->getExprLoc(), diag::err_template_arg_wrongtype_null_constant)
4573 << Arg->getType() << ParamType << Arg->getSourceRange();
4574 S.Diag(Param->getLocation(), diag::note_template_param_here);
4575 return NPV_NullPointer;
4576 }
4577
4578 // If we don't have a null pointer value, but we do have a NULL pointer
4579 // constant, suggest a cast to the appropriate type.
4580 if (Arg->isNullPointerConstant(S.Context, Expr::NPC_NeverValueDependent)) {
4581 std::string Code = "static_cast<" + ParamType.getAsString() + ">(";
4582 S.Diag(Arg->getExprLoc(), diag::err_template_arg_untyped_null_constant)
Alp Tokerb6cc5922014-05-03 03:45:55 +00004583 << ParamType << FixItHint::CreateInsertion(Arg->getLocStart(), Code)
4584 << FixItHint::CreateInsertion(S.getLocForEndOfToken(Arg->getLocEnd()),
4585 ")");
Douglas Gregor20fdef32012-04-10 17:08:25 +00004586 S.Diag(Param->getLocation(), diag::note_template_param_here);
4587 return NPV_NullPointer;
4588 }
Simon Pilgrim6905d222016-12-30 22:55:33 +00004589
Douglas Gregor20fdef32012-04-10 17:08:25 +00004590 // FIXME: If we ever want to support general, address-constant expressions
4591 // as non-type template arguments, we should return the ExprResult here to
4592 // be interpreted by the caller.
4593 return NPV_NotNullPointer;
4594}
4595
David Majnemer61c39a12013-08-23 05:39:39 +00004596/// \brief Checks whether the given template argument is compatible with its
4597/// template parameter.
4598static bool CheckTemplateArgumentIsCompatibleWithParameter(
4599 Sema &S, NonTypeTemplateParmDecl *Param, QualType ParamType, Expr *ArgIn,
4600 Expr *Arg, QualType ArgType) {
4601 bool ObjCLifetimeConversion;
4602 if (ParamType->isPointerType() &&
4603 !ParamType->getAs<PointerType>()->getPointeeType()->isFunctionType() &&
4604 S.IsQualificationConversion(ArgType, ParamType, false,
4605 ObjCLifetimeConversion)) {
4606 // For pointer-to-object types, qualification conversions are
4607 // permitted.
4608 } else {
4609 if (const ReferenceType *ParamRef = ParamType->getAs<ReferenceType>()) {
4610 if (!ParamRef->getPointeeType()->isFunctionType()) {
4611 // C++ [temp.arg.nontype]p5b3:
4612 // For a non-type template-parameter of type reference to
4613 // object, no conversions apply. The type referred to by the
4614 // reference may be more cv-qualified than the (otherwise
4615 // identical) type of the template- argument. The
4616 // template-parameter is bound directly to the
4617 // template-argument, which shall be an lvalue.
4618
4619 // FIXME: Other qualifiers?
4620 unsigned ParamQuals = ParamRef->getPointeeType().getCVRQualifiers();
4621 unsigned ArgQuals = ArgType.getCVRQualifiers();
4622
4623 if ((ParamQuals | ArgQuals) != ParamQuals) {
4624 S.Diag(Arg->getLocStart(),
4625 diag::err_template_arg_ref_bind_ignores_quals)
4626 << ParamType << Arg->getType() << Arg->getSourceRange();
4627 S.Diag(Param->getLocation(), diag::note_template_param_here);
4628 return true;
4629 }
4630 }
4631 }
4632
4633 // At this point, the template argument refers to an object or
4634 // function with external linkage. We now need to check whether the
4635 // argument and parameter types are compatible.
4636 if (!S.Context.hasSameUnqualifiedType(ArgType,
4637 ParamType.getNonReferenceType())) {
4638 // We can't perform this conversion or binding.
4639 if (ParamType->isReferenceType())
4640 S.Diag(Arg->getLocStart(), diag::err_template_arg_no_ref_bind)
4641 << ParamType << ArgIn->getType() << Arg->getSourceRange();
4642 else
4643 S.Diag(Arg->getLocStart(), diag::err_template_arg_not_convertible)
4644 << ArgIn->getType() << ParamType << Arg->getSourceRange();
4645 S.Diag(Param->getLocation(), diag::note_template_param_here);
4646 return true;
4647 }
4648 }
4649
4650 return false;
4651}
4652
Douglas Gregorccb07762009-02-11 19:52:55 +00004653/// \brief Checks whether the given template argument is the address
4654/// of an object or function according to C++ [temp.arg.nontype]p1.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004655static bool
Douglas Gregorb242683d2010-04-01 18:32:35 +00004656CheckTemplateArgumentAddressOfObjectOrFunction(Sema &S,
4657 NonTypeTemplateParmDecl *Param,
4658 QualType ParamType,
4659 Expr *ArgIn,
4660 TemplateArgument &Converted) {
Douglas Gregorccb07762009-02-11 19:52:55 +00004661 bool Invalid = false;
Douglas Gregorb242683d2010-04-01 18:32:35 +00004662 Expr *Arg = ArgIn;
4663 QualType ArgType = Arg->getType();
Douglas Gregorccb07762009-02-11 19:52:55 +00004664
Douglas Gregorb242683d2010-04-01 18:32:35 +00004665 bool AddressTaken = false;
4666 SourceLocation AddrOpLoc;
David Majnemer61c39a12013-08-23 05:39:39 +00004667 if (S.getLangOpts().MicrosoftExt) {
4668 // Microsoft Visual C++ strips all casts, allows an arbitrary number of
4669 // dereference and address-of operators.
4670 Arg = Arg->IgnoreParenCasts();
4671
4672 bool ExtWarnMSTemplateArg = false;
4673 UnaryOperatorKind FirstOpKind;
4674 SourceLocation FirstOpLoc;
4675 while (UnaryOperator *UnOp = dyn_cast<UnaryOperator>(Arg)) {
4676 UnaryOperatorKind UnOpKind = UnOp->getOpcode();
4677 if (UnOpKind == UO_Deref)
4678 ExtWarnMSTemplateArg = true;
4679 if (UnOpKind == UO_AddrOf || UnOpKind == UO_Deref) {
4680 Arg = UnOp->getSubExpr()->IgnoreParenCasts();
4681 if (!AddrOpLoc.isValid()) {
4682 FirstOpKind = UnOpKind;
4683 FirstOpLoc = UnOp->getOperatorLoc();
4684 }
4685 } else
4686 break;
Douglas Gregorb242683d2010-04-01 18:32:35 +00004687 }
David Majnemer61c39a12013-08-23 05:39:39 +00004688 if (FirstOpLoc.isValid()) {
4689 if (ExtWarnMSTemplateArg)
4690 S.Diag(ArgIn->getLocStart(), diag::ext_ms_deref_template_argument)
4691 << ArgIn->getSourceRange();
John McCall7c454bb2011-07-15 05:09:51 +00004692
David Majnemer61c39a12013-08-23 05:39:39 +00004693 if (FirstOpKind == UO_AddrOf)
4694 AddressTaken = true;
4695 else if (Arg->getType()->isPointerType()) {
4696 // We cannot let pointers get dereferenced here, that is obviously not a
4697 // constant expression.
4698 assert(FirstOpKind == UO_Deref);
4699 S.Diag(Arg->getLocStart(), diag::err_template_arg_not_decl_ref)
4700 << Arg->getSourceRange();
4701 }
4702 }
4703 } else {
4704 // See through any implicit casts we added to fix the type.
4705 Arg = Arg->IgnoreImpCasts();
John McCall7c454bb2011-07-15 05:09:51 +00004706
David Majnemer61c39a12013-08-23 05:39:39 +00004707 // C++ [temp.arg.nontype]p1:
4708 //
4709 // A template-argument for a non-type, non-template
4710 // template-parameter shall be one of: [...]
4711 //
4712 // -- the address of an object or function with external
4713 // linkage, including function templates and function
4714 // template-ids but excluding non-static class members,
4715 // expressed as & id-expression where the & is optional if
4716 // the name refers to a function or array, or if the
4717 // corresponding template-parameter is a reference; or
4718
4719 // In C++98/03 mode, give an extension warning on any extra parentheses.
4720 // See http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_defects.html#773
4721 bool ExtraParens = false;
4722 while (ParenExpr *Parens = dyn_cast<ParenExpr>(Arg)) {
4723 if (!Invalid && !ExtraParens) {
4724 S.Diag(Arg->getLocStart(),
4725 S.getLangOpts().CPlusPlus11
4726 ? diag::warn_cxx98_compat_template_arg_extra_parens
4727 : diag::ext_template_arg_extra_parens)
4728 << Arg->getSourceRange();
4729 ExtraParens = true;
4730 }
4731
4732 Arg = Parens->getSubExpr();
4733 }
4734
4735 while (SubstNonTypeTemplateParmExpr *subst =
4736 dyn_cast<SubstNonTypeTemplateParmExpr>(Arg))
4737 Arg = subst->getReplacement()->IgnoreImpCasts();
4738
4739 if (UnaryOperator *UnOp = dyn_cast<UnaryOperator>(Arg)) {
4740 if (UnOp->getOpcode() == UO_AddrOf) {
4741 Arg = UnOp->getSubExpr();
4742 AddressTaken = true;
4743 AddrOpLoc = UnOp->getOperatorLoc();
4744 }
4745 }
4746
4747 while (SubstNonTypeTemplateParmExpr *subst =
4748 dyn_cast<SubstNonTypeTemplateParmExpr>(Arg))
4749 Arg = subst->getReplacement()->IgnoreImpCasts();
4750 }
John McCall7c454bb2011-07-15 05:09:51 +00004751
David Majnemer07910d62014-06-26 07:48:46 +00004752 DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(Arg);
4753 ValueDecl *Entity = DRE ? DRE->getDecl() : nullptr;
4754
4755 // If our parameter has pointer type, check for a null template value.
4756 if (ParamType->isPointerType() || ParamType->isNullPtrType()) {
4757 NullPointerValueKind NPV;
4758 // dllimport'd entities aren't constant but are available inside of template
4759 // arguments.
4760 if (Entity && Entity->hasAttr<DLLImportAttr>())
4761 NPV = NPV_NotNullPointer;
4762 else
4763 NPV = isNullPointerValueTemplateArgument(S, Param, ParamType, ArgIn);
4764 switch (NPV) {
4765 case NPV_NullPointer:
4766 S.Diag(Arg->getExprLoc(), diag::warn_cxx98_compat_template_arg_null);
Richard Smith78bb36f2014-07-24 02:27:39 +00004767 Converted = TemplateArgument(S.Context.getCanonicalType(ParamType),
4768 /*isNullPtr=*/true);
David Majnemer07910d62014-06-26 07:48:46 +00004769 return false;
4770
4771 case NPV_Error:
4772 return true;
4773
4774 case NPV_NotNullPointer:
4775 break;
4776 }
4777 }
4778
Chandler Carruth724a8a12010-01-31 10:01:20 +00004779 // Stop checking the precise nature of the argument if it is value dependent,
4780 // it should be checked when instantiated.
Douglas Gregorb242683d2010-04-01 18:32:35 +00004781 if (Arg->isValueDependent()) {
John McCallc3007a22010-10-26 07:05:15 +00004782 Converted = TemplateArgument(ArgIn);
Chandler Carruth724a8a12010-01-31 10:01:20 +00004783 return false;
Douglas Gregorb242683d2010-04-01 18:32:35 +00004784 }
David Majnemer61c39a12013-08-23 05:39:39 +00004785
4786 if (isa<CXXUuidofExpr>(Arg)) {
4787 if (CheckTemplateArgumentIsCompatibleWithParameter(S, Param, ParamType,
4788 ArgIn, Arg, ArgType))
4789 return true;
4790
4791 Converted = TemplateArgument(ArgIn);
4792 return false;
4793 }
4794
Douglas Gregor31f55dc2012-04-06 22:40:38 +00004795 if (!DRE) {
4796 S.Diag(Arg->getLocStart(), diag::err_template_arg_not_decl_ref)
4797 << Arg->getSourceRange();
4798 S.Diag(Param->getLocation(), diag::note_template_param_here);
4799 return true;
4800 }
Chandler Carruth724a8a12010-01-31 10:01:20 +00004801
Douglas Gregorccb07762009-02-11 19:52:55 +00004802 // Cannot refer to non-static data members
David Majnemer6bedcfa2013-10-26 06:12:44 +00004803 if (isa<FieldDecl>(Entity) || isa<IndirectFieldDecl>(Entity)) {
Daniel Dunbar62ee6412012-03-09 18:35:03 +00004804 S.Diag(Arg->getLocStart(), diag::err_template_arg_field)
David Majnemer6bedcfa2013-10-26 06:12:44 +00004805 << Entity << Arg->getSourceRange();
Douglas Gregorb242683d2010-04-01 18:32:35 +00004806 S.Diag(Param->getLocation(), diag::note_template_param_here);
4807 return true;
4808 }
Douglas Gregorccb07762009-02-11 19:52:55 +00004809
4810 // Cannot refer to non-static member functions
Richard Smith9380e0e2012-04-04 21:11:30 +00004811 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(Entity)) {
Douglas Gregorb242683d2010-04-01 18:32:35 +00004812 if (!Method->isStatic()) {
Daniel Dunbar62ee6412012-03-09 18:35:03 +00004813 S.Diag(Arg->getLocStart(), diag::err_template_arg_method)
Douglas Gregorccb07762009-02-11 19:52:55 +00004814 << Method << Arg->getSourceRange();
Douglas Gregorb242683d2010-04-01 18:32:35 +00004815 S.Diag(Param->getLocation(), diag::note_template_param_here);
4816 return true;
4817 }
Richard Smith9380e0e2012-04-04 21:11:30 +00004818 }
Mike Stump11289f42009-09-09 15:08:12 +00004819
Richard Smith9380e0e2012-04-04 21:11:30 +00004820 FunctionDecl *Func = dyn_cast<FunctionDecl>(Entity);
4821 VarDecl *Var = dyn_cast<VarDecl>(Entity);
Douglas Gregorccb07762009-02-11 19:52:55 +00004822
Richard Smith9380e0e2012-04-04 21:11:30 +00004823 // A non-type template argument must refer to an object or function.
4824 if (!Func && !Var) {
4825 // We found something, but we don't know specifically what it is.
4826 S.Diag(Arg->getLocStart(), diag::err_template_arg_not_object_or_func)
4827 << Arg->getSourceRange();
4828 S.Diag(DRE->getDecl()->getLocation(), diag::note_template_arg_refers_here);
4829 return true;
4830 }
Douglas Gregorccb07762009-02-11 19:52:55 +00004831
Richard Smith9380e0e2012-04-04 21:11:30 +00004832 // Address / reference template args must have external linkage in C++98.
Rafael Espindola3ae00052013-05-13 00:12:11 +00004833 if (Entity->getFormalLinkage() == InternalLinkage) {
Richard Smith2bf7fdb2013-01-02 11:42:31 +00004834 S.Diag(Arg->getLocStart(), S.getLangOpts().CPlusPlus11 ?
Richard Smith9380e0e2012-04-04 21:11:30 +00004835 diag::warn_cxx98_compat_template_arg_object_internal :
4836 diag::ext_template_arg_object_internal)
4837 << !Func << Entity << Arg->getSourceRange();
4838 S.Diag(Entity->getLocation(), diag::note_template_arg_internal_object)
4839 << !Func;
Rafael Espindola3ae00052013-05-13 00:12:11 +00004840 } else if (!Entity->hasLinkage()) {
Richard Smith9380e0e2012-04-04 21:11:30 +00004841 S.Diag(Arg->getLocStart(), diag::err_template_arg_object_no_linkage)
4842 << !Func << Entity << Arg->getSourceRange();
4843 S.Diag(Entity->getLocation(), diag::note_template_arg_internal_object)
4844 << !Func;
4845 return true;
4846 }
4847
4848 if (Func) {
Douglas Gregorb242683d2010-04-01 18:32:35 +00004849 // If the template parameter has pointer type, the function decays.
4850 if (ParamType->isPointerType() && !AddressTaken)
4851 ArgType = S.Context.getPointerType(Func->getType());
4852 else if (AddressTaken && ParamType->isReferenceType()) {
4853 // If we originally had an address-of operator, but the
4854 // parameter has reference type, complain and (if things look
4855 // like they will work) drop the address-of operator.
4856 if (!S.Context.hasSameUnqualifiedType(Func->getType(),
4857 ParamType.getNonReferenceType())) {
4858 S.Diag(AddrOpLoc, diag::err_template_arg_address_of_non_pointer)
4859 << ParamType;
4860 S.Diag(Param->getLocation(), diag::note_template_param_here);
4861 return true;
4862 }
4863
4864 S.Diag(AddrOpLoc, diag::err_template_arg_address_of_non_pointer)
4865 << ParamType
4866 << FixItHint::CreateRemoval(AddrOpLoc);
4867 S.Diag(Param->getLocation(), diag::note_template_param_here);
4868
4869 ArgType = Func->getType();
4870 }
Richard Smith9380e0e2012-04-04 21:11:30 +00004871 } else {
Douglas Gregorb242683d2010-04-01 18:32:35 +00004872 // A value of reference type is not an object.
4873 if (Var->getType()->isReferenceType()) {
Daniel Dunbar62ee6412012-03-09 18:35:03 +00004874 S.Diag(Arg->getLocStart(),
Douglas Gregorb242683d2010-04-01 18:32:35 +00004875 diag::err_template_arg_reference_var)
4876 << Var->getType() << Arg->getSourceRange();
4877 S.Diag(Param->getLocation(), diag::note_template_param_here);
4878 return true;
4879 }
4880
Richard Smith9380e0e2012-04-04 21:11:30 +00004881 // A template argument must have static storage duration.
Richard Smithfd3834f2013-04-13 02:43:54 +00004882 if (Var->getTLSKind()) {
Richard Smith9380e0e2012-04-04 21:11:30 +00004883 S.Diag(Arg->getLocStart(), diag::err_template_arg_thread_local)
4884 << Arg->getSourceRange();
4885 S.Diag(Var->getLocation(), diag::note_template_arg_refers_here);
4886 return true;
4887 }
Douglas Gregorb242683d2010-04-01 18:32:35 +00004888
4889 // If the template parameter has pointer type, we must have taken
4890 // the address of this object.
4891 if (ParamType->isReferenceType()) {
4892 if (AddressTaken) {
4893 // If we originally had an address-of operator, but the
4894 // parameter has reference type, complain and (if things look
4895 // like they will work) drop the address-of operator.
4896 if (!S.Context.hasSameUnqualifiedType(Var->getType(),
4897 ParamType.getNonReferenceType())) {
4898 S.Diag(AddrOpLoc, diag::err_template_arg_address_of_non_pointer)
4899 << ParamType;
4900 S.Diag(Param->getLocation(), diag::note_template_param_here);
4901 return true;
4902 }
4903
4904 S.Diag(AddrOpLoc, diag::err_template_arg_address_of_non_pointer)
4905 << ParamType
4906 << FixItHint::CreateRemoval(AddrOpLoc);
4907 S.Diag(Param->getLocation(), diag::note_template_param_here);
4908
4909 ArgType = Var->getType();
4910 }
4911 } else if (!AddressTaken && ParamType->isPointerType()) {
4912 if (Var->getType()->isArrayType()) {
4913 // Array-to-pointer decay.
4914 ArgType = S.Context.getArrayDecayedType(Var->getType());
4915 } else {
4916 // If the template parameter has pointer type but the address of
4917 // this object was not taken, complain and (possibly) recover by
4918 // taking the address of the entity.
4919 ArgType = S.Context.getPointerType(Var->getType());
4920 if (!S.Context.hasSameUnqualifiedType(ArgType, ParamType)) {
4921 S.Diag(Arg->getLocStart(), diag::err_template_arg_not_address_of)
4922 << ParamType;
4923 S.Diag(Param->getLocation(), diag::note_template_param_here);
4924 return true;
4925 }
4926
4927 S.Diag(Arg->getLocStart(), diag::err_template_arg_not_address_of)
4928 << ParamType
4929 << FixItHint::CreateInsertion(Arg->getLocStart(), "&");
4930
4931 S.Diag(Param->getLocation(), diag::note_template_param_here);
4932 }
4933 }
Douglas Gregorccb07762009-02-11 19:52:55 +00004934 }
Mike Stump11289f42009-09-09 15:08:12 +00004935
David Majnemer61c39a12013-08-23 05:39:39 +00004936 if (CheckTemplateArgumentIsCompatibleWithParameter(S, Param, ParamType, ArgIn,
4937 Arg, ArgType))
4938 return true;
Douglas Gregorb242683d2010-04-01 18:32:35 +00004939
4940 // Create the template argument.
David Blaikie0f62c8d2014-10-16 04:21:25 +00004941 Converted =
4942 TemplateArgument(cast<ValueDecl>(Entity->getCanonicalDecl()), ParamType);
Nick Lewycky45b50522013-02-02 00:25:55 +00004943 S.MarkAnyDeclReferenced(Arg->getLocStart(), Entity, false);
Douglas Gregorb242683d2010-04-01 18:32:35 +00004944 return false;
Douglas Gregorccb07762009-02-11 19:52:55 +00004945}
4946
4947/// \brief Checks whether the given template argument is a pointer to
4948/// member constant according to C++ [temp.arg.nontype]p1.
Douglas Gregor20fdef32012-04-10 17:08:25 +00004949static bool CheckTemplateArgumentPointerToMember(Sema &S,
4950 NonTypeTemplateParmDecl *Param,
4951 QualType ParamType,
4952 Expr *&ResultArg,
4953 TemplateArgument &Converted) {
Douglas Gregorccb07762009-02-11 19:52:55 +00004954 bool Invalid = false;
4955
Douglas Gregor20fdef32012-04-10 17:08:25 +00004956 // Check for a null pointer value.
4957 Expr *Arg = ResultArg;
4958 switch (isNullPointerValueTemplateArgument(S, Param, ParamType, Arg)) {
4959 case NPV_Error:
4960 return true;
4961 case NPV_NullPointer:
Richard Smithbc8c5b52012-04-26 01:51:03 +00004962 S.Diag(Arg->getExprLoc(), diag::warn_cxx98_compat_template_arg_null);
Richard Smith78bb36f2014-07-24 02:27:39 +00004963 Converted = TemplateArgument(S.Context.getCanonicalType(ParamType),
4964 /*isNullPtr*/true);
Douglas Gregor20fdef32012-04-10 17:08:25 +00004965 return false;
4966 case NPV_NotNullPointer:
4967 break;
4968 }
4969
4970 bool ObjCLifetimeConversion;
4971 if (S.IsQualificationConversion(Arg->getType(),
4972 ParamType.getNonReferenceType(),
4973 false, ObjCLifetimeConversion)) {
4974 Arg = S.ImpCastExprToType(Arg, ParamType, CK_NoOp,
Nikola Smiljanic01a75982014-05-29 10:55:11 +00004975 Arg->getValueKind()).get();
Douglas Gregor20fdef32012-04-10 17:08:25 +00004976 ResultArg = Arg;
4977 } else if (!S.Context.hasSameUnqualifiedType(Arg->getType(),
4978 ParamType.getNonReferenceType())) {
4979 // We can't perform this conversion.
4980 S.Diag(Arg->getLocStart(), diag::err_template_arg_not_convertible)
4981 << Arg->getType() << ParamType << Arg->getSourceRange();
4982 S.Diag(Param->getLocation(), diag::note_template_param_here);
4983 return true;
4984 }
4985
Douglas Gregorccb07762009-02-11 19:52:55 +00004986 // See through any implicit casts we added to fix the type.
Eli Friedman06ed2a52009-10-20 08:27:19 +00004987 while (ImplicitCastExpr *Cast = dyn_cast<ImplicitCastExpr>(Arg))
Douglas Gregorccb07762009-02-11 19:52:55 +00004988 Arg = Cast->getSubExpr();
4989
4990 // C++ [temp.arg.nontype]p1:
Mike Stump11289f42009-09-09 15:08:12 +00004991 //
Douglas Gregorccb07762009-02-11 19:52:55 +00004992 // A template-argument for a non-type, non-template
4993 // template-parameter shall be one of: [...]
4994 //
4995 // -- a pointer to member expressed as described in 5.3.1.
Craig Topperc3ec1492014-05-26 06:22:03 +00004996 DeclRefExpr *DRE = nullptr;
Douglas Gregorccb07762009-02-11 19:52:55 +00004997
Abramo Bagnara6a0c4092010-09-13 06:06:58 +00004998 // In C++98/03 mode, give an extension warning on any extra parentheses.
4999 // See http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_defects.html#773
5000 bool ExtraParens = false;
Douglas Gregorccb07762009-02-11 19:52:55 +00005001 while (ParenExpr *Parens = dyn_cast<ParenExpr>(Arg)) {
Richard Smith0bf8a4922011-10-18 20:49:44 +00005002 if (!Invalid && !ExtraParens) {
Douglas Gregor20fdef32012-04-10 17:08:25 +00005003 S.Diag(Arg->getLocStart(),
Richard Smith2bf7fdb2013-01-02 11:42:31 +00005004 S.getLangOpts().CPlusPlus11 ?
Douglas Gregor20fdef32012-04-10 17:08:25 +00005005 diag::warn_cxx98_compat_template_arg_extra_parens :
5006 diag::ext_template_arg_extra_parens)
Douglas Gregorccb07762009-02-11 19:52:55 +00005007 << Arg->getSourceRange();
Abramo Bagnara6a0c4092010-09-13 06:06:58 +00005008 ExtraParens = true;
Douglas Gregorccb07762009-02-11 19:52:55 +00005009 }
5010
5011 Arg = Parens->getSubExpr();
5012 }
5013
John McCall7c454bb2011-07-15 05:09:51 +00005014 while (SubstNonTypeTemplateParmExpr *subst =
5015 dyn_cast<SubstNonTypeTemplateParmExpr>(Arg))
5016 Arg = subst->getReplacement()->IgnoreImpCasts();
5017
Douglas Gregor49ba3ca2009-11-12 18:38:13 +00005018 // A pointer-to-member constant written &Class::member.
5019 if (UnaryOperator *UnOp = dyn_cast<UnaryOperator>(Arg)) {
John McCalle3027922010-08-25 11:45:40 +00005020 if (UnOp->getOpcode() == UO_AddrOf) {
Douglas Gregor4bd90e52009-10-23 18:54:35 +00005021 DRE = dyn_cast<DeclRefExpr>(UnOp->getSubExpr());
5022 if (DRE && !DRE->getQualifier())
Craig Topperc3ec1492014-05-26 06:22:03 +00005023 DRE = nullptr;
Douglas Gregor4bd90e52009-10-23 18:54:35 +00005024 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005025 }
Douglas Gregor49ba3ca2009-11-12 18:38:13 +00005026 // A constant of pointer-to-member type.
5027 else if ((DRE = dyn_cast<DeclRefExpr>(Arg))) {
5028 if (ValueDecl *VD = dyn_cast<ValueDecl>(DRE->getDecl())) {
5029 if (VD->getType()->isMemberPointerType()) {
David Majnemercd053cd2013-12-10 00:40:58 +00005030 if (isa<NonTypeTemplateParmDecl>(VD)) {
Eli Friedmanb826a002012-09-26 02:36:12 +00005031 if (Arg->isTypeDependent() || Arg->isValueDependent()) {
John McCallc3007a22010-10-26 07:05:15 +00005032 Converted = TemplateArgument(Arg);
Eli Friedmanb826a002012-09-26 02:36:12 +00005033 } else {
5034 VD = cast<ValueDecl>(VD->getCanonicalDecl());
David Blaikie0f62c8d2014-10-16 04:21:25 +00005035 Converted = TemplateArgument(VD, ParamType);
Eli Friedmanb826a002012-09-26 02:36:12 +00005036 }
Douglas Gregor49ba3ca2009-11-12 18:38:13 +00005037 return Invalid;
5038 }
5039 }
5040 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005041
Craig Topperc3ec1492014-05-26 06:22:03 +00005042 DRE = nullptr;
Douglas Gregor49ba3ca2009-11-12 18:38:13 +00005043 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005044
Douglas Gregorccb07762009-02-11 19:52:55 +00005045 if (!DRE)
Douglas Gregor20fdef32012-04-10 17:08:25 +00005046 return S.Diag(Arg->getLocStart(),
5047 diag::err_template_arg_not_pointer_to_member_form)
Douglas Gregorccb07762009-02-11 19:52:55 +00005048 << Arg->getSourceRange();
5049
David Majnemer3ac84e62013-10-22 21:56:38 +00005050 if (isa<FieldDecl>(DRE->getDecl()) ||
5051 isa<IndirectFieldDecl>(DRE->getDecl()) ||
5052 isa<CXXMethodDecl>(DRE->getDecl())) {
Douglas Gregorccb07762009-02-11 19:52:55 +00005053 assert((isa<FieldDecl>(DRE->getDecl()) ||
David Majnemer3ac84e62013-10-22 21:56:38 +00005054 isa<IndirectFieldDecl>(DRE->getDecl()) ||
Douglas Gregorccb07762009-02-11 19:52:55 +00005055 !cast<CXXMethodDecl>(DRE->getDecl())->isStatic()) &&
5056 "Only non-static member pointers can make it here");
5057
5058 // Okay: this is the address of a non-static member, and therefore
5059 // a member pointer constant.
Eli Friedmanb826a002012-09-26 02:36:12 +00005060 if (Arg->isTypeDependent() || Arg->isValueDependent()) {
John McCallc3007a22010-10-26 07:05:15 +00005061 Converted = TemplateArgument(Arg);
Eli Friedmanb826a002012-09-26 02:36:12 +00005062 } else {
5063 ValueDecl *D = cast<ValueDecl>(DRE->getDecl()->getCanonicalDecl());
David Blaikie0f62c8d2014-10-16 04:21:25 +00005064 Converted = TemplateArgument(D, ParamType);
Eli Friedmanb826a002012-09-26 02:36:12 +00005065 }
Douglas Gregorccb07762009-02-11 19:52:55 +00005066 return Invalid;
5067 }
5068
5069 // We found something else, but we don't know specifically what it is.
Douglas Gregor20fdef32012-04-10 17:08:25 +00005070 S.Diag(Arg->getLocStart(),
5071 diag::err_template_arg_not_pointer_to_member_form)
5072 << Arg->getSourceRange();
5073 S.Diag(DRE->getDecl()->getLocation(), diag::note_template_arg_refers_here);
Douglas Gregorccb07762009-02-11 19:52:55 +00005074 return true;
5075}
5076
Douglas Gregord32e0282009-02-09 23:23:08 +00005077/// \brief Check a template argument against its corresponding
5078/// non-type template parameter.
5079///
Douglas Gregor463421d2009-03-03 04:44:36 +00005080/// This routine implements the semantics of C++ [temp.arg.nontype].
John Wiegley01296292011-04-08 18:41:53 +00005081/// If an error occurred, it returns ExprError(); otherwise, it
Richard Smithd663fdd2014-12-17 20:42:37 +00005082/// returns the converted template argument. \p ParamType is the
5083/// type of the non-type template parameter after it has been instantiated.
John Wiegley01296292011-04-08 18:41:53 +00005084ExprResult Sema::CheckTemplateArgument(NonTypeTemplateParmDecl *Param,
Richard Smithd663fdd2014-12-17 20:42:37 +00005085 QualType ParamType, Expr *Arg,
John Wiegley01296292011-04-08 18:41:53 +00005086 TemplateArgument &Converted,
5087 CheckTemplateArgumentKind CTAK) {
Daniel Dunbar62ee6412012-03-09 18:35:03 +00005088 SourceLocation StartLoc = Arg->getLocStart();
Douglas Gregorc40290e2009-03-09 23:48:35 +00005089
Richard Smith5f274382016-09-28 23:55:27 +00005090 // If the parameter type somehow involves auto, deduce the type now.
5091 if (getLangOpts().CPlusPlus1z && ParamType->isUndeducedType()) {
Richard Smith87d263e2016-12-25 08:05:23 +00005092 // When checking a deduced template argument, deduce from its type even if
5093 // the type is dependent, in order to check the types of non-type template
5094 // arguments line up properly in partial ordering.
5095 Optional<unsigned> Depth;
5096 if (CTAK != CTAK_Specified)
5097 Depth = Param->getDepth() + 1;
Richard Smith5f274382016-09-28 23:55:27 +00005098 if (DeduceAutoType(
5099 Context.getTrivialTypeSourceInfo(ParamType, Param->getLocation()),
Richard Smith87d263e2016-12-25 08:05:23 +00005100 Arg, ParamType, Depth) == DAR_Failed) {
Richard Smith5f274382016-09-28 23:55:27 +00005101 Diag(Arg->getExprLoc(),
5102 diag::err_non_type_template_parm_type_deduction_failure)
5103 << Param->getDeclName() << Param->getType() << Arg->getType()
5104 << Arg->getSourceRange();
5105 Diag(Param->getLocation(), diag::note_template_param_here);
5106 return ExprError();
5107 }
5108 // CheckNonTypeTemplateParameterType will produce a diagnostic if there's
5109 // an error. The error message normally references the parameter
5110 // declaration, but here we'll pass the argument location because that's
5111 // where the parameter type is deduced.
5112 ParamType = CheckNonTypeTemplateParameterType(ParamType, Arg->getExprLoc());
5113 if (ParamType.isNull()) {
5114 Diag(Param->getLocation(), diag::note_template_param_here);
5115 return ExprError();
5116 }
5117 }
5118
Richard Smithd663fdd2014-12-17 20:42:37 +00005119 // We should have already dropped all cv-qualifiers by now.
5120 assert(!ParamType.hasQualifiers() &&
5121 "non-type template parameter type cannot be qualified");
5122
5123 if (CTAK == CTAK_Deduced &&
Richard Smithd92eddf2016-12-27 06:14:37 +00005124 !Context.hasSameType(ParamType.getNonLValueExprType(Context),
Richard Smith0e617ec2016-12-27 07:56:27 +00005125 Arg->getType())) {
Richard Smith4f9b3f42016-12-26 22:28:29 +00005126 // C++ [temp.deduct.type]p17: (DR1770)
5127 // If P has a form that contains <i>, and if the type of i differs from
5128 // the type of the corresponding template parameter of the template named
5129 // by the enclosing simple-template-id, deduction fails.
5130 //
5131 // Note that CTAK will be CTAK_DeducedFromArrayBound if the form was [i]
5132 // rather than <i>.
Richard Smithd92eddf2016-12-27 06:14:37 +00005133 //
5134 // FIXME: We interpret the 'i' here as referring to the expression
5135 // denoting the non-type template parameter rather than the parameter
5136 // itself, and so strip off references before comparing types. It's
5137 // not clear how this is supposed to work for references.
Richard Smithd663fdd2014-12-17 20:42:37 +00005138 Diag(StartLoc, diag::err_deduced_non_type_template_arg_type_mismatch)
Richard Smith0e617ec2016-12-27 07:56:27 +00005139 << Arg->getType()
Richard Smithd663fdd2014-12-17 20:42:37 +00005140 << ParamType.getUnqualifiedType();
5141 Diag(Param->getLocation(), diag::note_template_param_here);
5142 return ExprError();
5143 }
5144
Richard Smith87d263e2016-12-25 08:05:23 +00005145 // If either the parameter has a dependent type or the argument is
5146 // type-dependent, there's nothing we can check now.
5147 if (ParamType->isDependentType() || Arg->isTypeDependent()) {
5148 // FIXME: Produce a cloned, canonical expression?
5149 Converted = TemplateArgument(Arg);
5150 return Arg;
5151 }
5152
Richard Smithe5945872017-01-06 22:52:53 +00005153 // The initialization of the parameter from the argument is
5154 // a constant-evaluated context.
5155 EnterExpressionEvaluationContext ConstantEvaluated(*this,
5156 Sema::ConstantEvaluated);
5157
Richard Smith410cc892014-11-26 03:26:53 +00005158 if (getLangOpts().CPlusPlus1z) {
Richard Smith410cc892014-11-26 03:26:53 +00005159 // C++1z [temp.arg.nontype]p1:
5160 // A template-argument for a non-type template parameter shall be
5161 // a converted constant expression of the type of the template-parameter.
5162 APValue Value;
5163 ExprResult ArgResult = CheckConvertedConstantExpression(
5164 Arg, ParamType, Value, CCEK_TemplateArg);
5165 if (ArgResult.isInvalid())
5166 return ExprError();
5167
Richard Smith52e624f2016-12-21 21:42:57 +00005168 // For a value-dependent argument, CheckConvertedConstantExpression is
5169 // permitted (and expected) to be unable to determine a value.
5170 if (ArgResult.get()->isValueDependent()) {
Richard Smith01bfa682016-12-27 02:02:09 +00005171 Converted = TemplateArgument(ArgResult.get());
5172 return ArgResult;
Richard Smith52e624f2016-12-21 21:42:57 +00005173 }
5174
Richard Smithd663fdd2014-12-17 20:42:37 +00005175 QualType CanonParamType = Context.getCanonicalType(ParamType);
5176
Richard Smith410cc892014-11-26 03:26:53 +00005177 // Convert the APValue to a TemplateArgument.
5178 switch (Value.getKind()) {
5179 case APValue::Uninitialized:
5180 assert(ParamType->isNullPtrType());
Richard Smithd663fdd2014-12-17 20:42:37 +00005181 Converted = TemplateArgument(CanonParamType, /*isNullPtr*/true);
Richard Smith410cc892014-11-26 03:26:53 +00005182 break;
5183 case APValue::Int:
5184 assert(ParamType->isIntegralOrEnumerationType());
Richard Smithd663fdd2014-12-17 20:42:37 +00005185 Converted = TemplateArgument(Context, Value.getInt(), CanonParamType);
Richard Smith410cc892014-11-26 03:26:53 +00005186 break;
5187 case APValue::MemberPointer: {
5188 assert(ParamType->isMemberPointerType());
5189
5190 // FIXME: We need TemplateArgument representation and mangling for these.
5191 if (!Value.getMemberPointerPath().empty()) {
5192 Diag(Arg->getLocStart(),
5193 diag::err_template_arg_member_ptr_base_derived_not_supported)
5194 << Value.getMemberPointerDecl() << ParamType
5195 << Arg->getSourceRange();
5196 return ExprError();
5197 }
5198
5199 auto *VD = const_cast<ValueDecl*>(Value.getMemberPointerDecl());
Richard Smithd663fdd2014-12-17 20:42:37 +00005200 Converted = VD ? TemplateArgument(VD, CanonParamType)
5201 : TemplateArgument(CanonParamType, /*isNullPtr*/true);
Richard Smith410cc892014-11-26 03:26:53 +00005202 break;
5203 }
5204 case APValue::LValue: {
5205 // For a non-type template-parameter of pointer or reference type,
5206 // the value of the constant expression shall not refer to
Richard Smithd663fdd2014-12-17 20:42:37 +00005207 assert(ParamType->isPointerType() || ParamType->isReferenceType() ||
5208 ParamType->isNullPtrType());
Richard Smith410cc892014-11-26 03:26:53 +00005209 // -- a temporary object
5210 // -- a string literal
5211 // -- the result of a typeid expression, or
5212 // -- a predefind __func__ variable
5213 if (auto *E = Value.getLValueBase().dyn_cast<const Expr*>()) {
5214 if (isa<CXXUuidofExpr>(E)) {
5215 Converted = TemplateArgument(const_cast<Expr*>(E));
5216 break;
5217 }
5218 Diag(Arg->getLocStart(), diag::err_template_arg_not_decl_ref)
5219 << Arg->getSourceRange();
5220 return ExprError();
5221 }
5222 auto *VD = const_cast<ValueDecl *>(
5223 Value.getLValueBase().dyn_cast<const ValueDecl *>());
5224 // -- a subobject
5225 if (Value.hasLValuePath() && Value.getLValuePath().size() == 1 &&
5226 VD && VD->getType()->isArrayType() &&
5227 Value.getLValuePath()[0].ArrayIndex == 0 &&
5228 !Value.isLValueOnePastTheEnd() && ParamType->isPointerType()) {
5229 // Per defect report (no number yet):
5230 // ... other than a pointer to the first element of a complete array
5231 // object.
5232 } else if (!Value.hasLValuePath() || Value.getLValuePath().size() ||
5233 Value.isLValueOnePastTheEnd()) {
5234 Diag(StartLoc, diag::err_non_type_template_arg_subobject)
5235 << Value.getAsString(Context, ParamType);
5236 return ExprError();
5237 }
Richard Smithd663fdd2014-12-17 20:42:37 +00005238 assert((VD || !ParamType->isReferenceType()) &&
Richard Smith410cc892014-11-26 03:26:53 +00005239 "null reference should not be a constant expression");
Richard Smithd663fdd2014-12-17 20:42:37 +00005240 assert((!VD || !ParamType->isNullPtrType()) &&
5241 "non-null value of type nullptr_t?");
5242 Converted = VD ? TemplateArgument(VD, CanonParamType)
5243 : TemplateArgument(CanonParamType, /*isNullPtr*/true);
Richard Smith410cc892014-11-26 03:26:53 +00005244 break;
5245 }
5246 case APValue::AddrLabelDiff:
5247 return Diag(StartLoc, diag::err_non_type_template_arg_addr_label_diff);
5248 case APValue::Float:
5249 case APValue::ComplexInt:
5250 case APValue::ComplexFloat:
5251 case APValue::Vector:
5252 case APValue::Array:
5253 case APValue::Struct:
5254 case APValue::Union:
5255 llvm_unreachable("invalid kind for template argument");
5256 }
5257
5258 return ArgResult.get();
5259 }
5260
Douglas Gregor86560402009-02-10 23:36:10 +00005261 // C++ [temp.arg.nontype]p5:
5262 // The following conversions are performed on each expression used
5263 // as a non-type template-argument. If a non-type
5264 // template-argument cannot be converted to the type of the
5265 // corresponding template-parameter then the program is
5266 // ill-formed.
Douglas Gregorb90df602010-06-16 00:17:44 +00005267 if (ParamType->isIntegralOrEnumerationType()) {
Richard Smithf8379a02012-01-18 23:55:52 +00005268 // C++11:
5269 // -- for a non-type template-parameter of integral or
5270 // enumeration type, conversions permitted in a converted
5271 // constant expression are applied.
5272 //
5273 // C++98:
5274 // -- for a non-type template-parameter of integral or
5275 // enumeration type, integral promotions (4.5) and integral
5276 // conversions (4.7) are applied.
5277
Richard Smith2bf7fdb2013-01-02 11:42:31 +00005278 if (getLangOpts().CPlusPlus11) {
Richard Smithf8379a02012-01-18 23:55:52 +00005279 // C++ [temp.arg.nontype]p1:
5280 // A template-argument for a non-type, non-template template-parameter
5281 // shall be one of:
5282 //
5283 // -- for a non-type template-parameter of integral or enumeration
5284 // type, a converted constant expression of the type of the
5285 // template-parameter; or
5286 llvm::APSInt Value;
5287 ExprResult ArgResult =
5288 CheckConvertedConstantExpression(Arg, ParamType, Value,
5289 CCEK_TemplateArg);
5290 if (ArgResult.isInvalid())
5291 return ExprError();
5292
Richard Smith01bfa682016-12-27 02:02:09 +00005293 // We can't check arbitrary value-dependent arguments.
5294 if (ArgResult.get()->isValueDependent()) {
5295 Converted = TemplateArgument(ArgResult.get());
5296 return ArgResult;
5297 }
5298
Richard Smithf8379a02012-01-18 23:55:52 +00005299 // Widen the argument value to sizeof(parameter type). This is almost
5300 // always a no-op, except when the parameter type is bool. In
5301 // that case, this may extend the argument from 1 bit to 8 bits.
5302 QualType IntegerType = ParamType;
5303 if (const EnumType *Enum = IntegerType->getAs<EnumType>())
5304 IntegerType = Enum->getDecl()->getIntegerType();
5305 Value = Value.extOrTrunc(Context.getTypeSize(IntegerType));
5306
Benjamin Kramer6003ad52012-06-07 15:09:51 +00005307 Converted = TemplateArgument(Context, Value,
5308 Context.getCanonicalType(ParamType));
Richard Smithf8379a02012-01-18 23:55:52 +00005309 return ArgResult;
5310 }
5311
Richard Smith08b12f12011-10-27 22:11:44 +00005312 ExprResult ArgResult = DefaultLvalueConversion(Arg);
5313 if (ArgResult.isInvalid())
5314 return ExprError();
Nikola Smiljanic01a75982014-05-29 10:55:11 +00005315 Arg = ArgResult.get();
Richard Smith08b12f12011-10-27 22:11:44 +00005316
5317 QualType ArgType = Arg->getType();
5318
Douglas Gregor86560402009-02-10 23:36:10 +00005319 // C++ [temp.arg.nontype]p1:
5320 // A template-argument for a non-type, non-template
5321 // template-parameter shall be one of:
5322 //
5323 // -- an integral constant-expression of integral or enumeration
5324 // type; or
5325 // -- the name of a non-type template-parameter; or
5326 SourceLocation NonConstantLoc;
Douglas Gregor264ec4f2009-02-17 01:05:43 +00005327 llvm::APSInt Value;
Douglas Gregorb90df602010-06-16 00:17:44 +00005328 if (!ArgType->isIntegralOrEnumerationType()) {
Daniel Dunbar62ee6412012-03-09 18:35:03 +00005329 Diag(Arg->getLocStart(),
Douglas Gregor86560402009-02-10 23:36:10 +00005330 diag::err_template_arg_not_integral_or_enumeral)
5331 << ArgType << Arg->getSourceRange();
5332 Diag(Param->getLocation(), diag::note_template_param_here);
John Wiegley01296292011-04-08 18:41:53 +00005333 return ExprError();
Richard Smithf4c51d92012-02-04 09:53:13 +00005334 } else if (!Arg->isValueDependent()) {
Douglas Gregore2b37442012-05-04 22:38:52 +00005335 class TmplArgICEDiagnoser : public VerifyICEDiagnoser {
5336 QualType T;
Simon Pilgrim6905d222016-12-30 22:55:33 +00005337
Douglas Gregore2b37442012-05-04 22:38:52 +00005338 public:
5339 TmplArgICEDiagnoser(QualType T) : T(T) { }
Craig Toppere14c0f82014-03-12 04:55:44 +00005340
5341 void diagnoseNotICE(Sema &S, SourceLocation Loc,
5342 SourceRange SR) override {
Douglas Gregore2b37442012-05-04 22:38:52 +00005343 S.Diag(Loc, diag::err_template_arg_not_ice) << T << SR;
5344 }
5345 } Diagnoser(ArgType);
5346
5347 Arg = VerifyIntegerConstantExpression(Arg, &Value, Diagnoser,
Nikola Smiljanic01a75982014-05-29 10:55:11 +00005348 false).get();
Richard Smithf4c51d92012-02-04 09:53:13 +00005349 if (!Arg)
5350 return ExprError();
Douglas Gregor86560402009-02-10 23:36:10 +00005351 }
5352
Richard Smithd663fdd2014-12-17 20:42:37 +00005353 // From here on out, all we care about is the unqualified form
5354 // of the argument type.
Douglas Gregord5cb1dd2010-03-28 02:42:43 +00005355 ArgType = ArgType.getUnqualifiedType();
Douglas Gregor86560402009-02-10 23:36:10 +00005356
5357 // Try to convert the argument to the parameter's type.
Douglas Gregor4d0c38a2009-11-04 21:50:46 +00005358 if (Context.hasSameType(ParamType, ArgType)) {
Douglas Gregor86560402009-02-10 23:36:10 +00005359 // Okay: no conversion necessary
John McCall8cb679e2010-11-15 09:13:47 +00005360 } else if (ParamType->isBooleanType()) {
5361 // This is an integral-to-boolean conversion.
Nikola Smiljanic01a75982014-05-29 10:55:11 +00005362 Arg = ImpCastExprToType(Arg, ParamType, CK_IntegralToBoolean).get();
Douglas Gregor86560402009-02-10 23:36:10 +00005363 } else if (IsIntegralPromotion(Arg, ArgType, ParamType) ||
5364 !ParamType->isEnumeralType()) {
5365 // This is an integral promotion or conversion.
Nikola Smiljanic01a75982014-05-29 10:55:11 +00005366 Arg = ImpCastExprToType(Arg, ParamType, CK_IntegralCast).get();
Douglas Gregor86560402009-02-10 23:36:10 +00005367 } else {
5368 // We can't perform this conversion.
Daniel Dunbar62ee6412012-03-09 18:35:03 +00005369 Diag(Arg->getLocStart(),
Douglas Gregor86560402009-02-10 23:36:10 +00005370 diag::err_template_arg_not_convertible)
Richard Smithd663fdd2014-12-17 20:42:37 +00005371 << Arg->getType() << ParamType << Arg->getSourceRange();
Douglas Gregor86560402009-02-10 23:36:10 +00005372 Diag(Param->getLocation(), diag::note_template_param_here);
John Wiegley01296292011-04-08 18:41:53 +00005373 return ExprError();
Douglas Gregor86560402009-02-10 23:36:10 +00005374 }
5375
Douglas Gregorb4f4d512011-05-04 21:55:00 +00005376 // Add the value of this argument to the list of converted
5377 // arguments. We use the bitwidth and signedness of the template
5378 // parameter.
5379 if (Arg->isValueDependent()) {
5380 // The argument is value-dependent. Create a new
5381 // TemplateArgument with the converted expression.
5382 Converted = TemplateArgument(Arg);
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00005383 return Arg;
Douglas Gregorb4f4d512011-05-04 21:55:00 +00005384 }
5385
Douglas Gregor52aba872009-03-14 00:20:21 +00005386 QualType IntegerType = Context.getCanonicalType(ParamType);
John McCall9dd450b2009-09-21 23:43:11 +00005387 if (const EnumType *Enum = IntegerType->getAs<EnumType>())
Douglas Gregor74eba0b2009-06-11 18:10:32 +00005388 IntegerType = Context.getCanonicalType(Enum->getDecl()->getIntegerType());
Douglas Gregor52aba872009-03-14 00:20:21 +00005389
Douglas Gregorb4f4d512011-05-04 21:55:00 +00005390 if (ParamType->isBooleanType()) {
5391 // Value must be zero or one.
5392 Value = Value != 0;
5393 unsigned AllowedBits = Context.getTypeSize(IntegerType);
5394 if (Value.getBitWidth() != AllowedBits)
5395 Value = Value.extOrTrunc(AllowedBits);
Douglas Gregor6ab2fa82011-05-20 16:38:50 +00005396 Value.setIsSigned(IntegerType->isSignedIntegerOrEnumerationType());
Douglas Gregorb4f4d512011-05-04 21:55:00 +00005397 } else {
Douglas Gregorbb3d7862010-03-26 02:38:37 +00005398 llvm::APSInt OldValue = Value;
Simon Pilgrim6905d222016-12-30 22:55:33 +00005399
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005400 // Coerce the template argument's value to the value it will have
Douglas Gregorbb3d7862010-03-26 02:38:37 +00005401 // based on the template parameter's type.
Douglas Gregora14cb9f2010-03-26 00:39:40 +00005402 unsigned AllowedBits = Context.getTypeSize(IntegerType);
Douglas Gregora14cb9f2010-03-26 00:39:40 +00005403 if (Value.getBitWidth() != AllowedBits)
Jay Foad6d4db0c2010-12-07 08:25:34 +00005404 Value = Value.extOrTrunc(AllowedBits);
Douglas Gregor6ab2fa82011-05-20 16:38:50 +00005405 Value.setIsSigned(IntegerType->isSignedIntegerOrEnumerationType());
Simon Pilgrim6905d222016-12-30 22:55:33 +00005406
Douglas Gregorbb3d7862010-03-26 02:38:37 +00005407 // Complain if an unsigned parameter received a negative value.
Douglas Gregor6ab2fa82011-05-20 16:38:50 +00005408 if (IntegerType->isUnsignedIntegerOrEnumerationType()
Douglas Gregorb4f4d512011-05-04 21:55:00 +00005409 && (OldValue.isSigned() && OldValue.isNegative())) {
Daniel Dunbar62ee6412012-03-09 18:35:03 +00005410 Diag(Arg->getLocStart(), diag::warn_template_arg_negative)
Douglas Gregorbb3d7862010-03-26 02:38:37 +00005411 << OldValue.toString(10) << Value.toString(10) << Param->getType()
5412 << Arg->getSourceRange();
5413 Diag(Param->getLocation(), diag::note_template_param_here);
5414 }
Simon Pilgrim6905d222016-12-30 22:55:33 +00005415
Douglas Gregorbb3d7862010-03-26 02:38:37 +00005416 // Complain if we overflowed the template parameter's type.
5417 unsigned RequiredBits;
Douglas Gregor6ab2fa82011-05-20 16:38:50 +00005418 if (IntegerType->isUnsignedIntegerOrEnumerationType())
Douglas Gregorbb3d7862010-03-26 02:38:37 +00005419 RequiredBits = OldValue.getActiveBits();
5420 else if (OldValue.isUnsigned())
5421 RequiredBits = OldValue.getActiveBits() + 1;
5422 else
5423 RequiredBits = OldValue.getMinSignedBits();
5424 if (RequiredBits > AllowedBits) {
Daniel Dunbar62ee6412012-03-09 18:35:03 +00005425 Diag(Arg->getLocStart(),
Douglas Gregorbb3d7862010-03-26 02:38:37 +00005426 diag::warn_template_arg_too_large)
5427 << OldValue.toString(10) << Value.toString(10) << Param->getType()
5428 << Arg->getSourceRange();
5429 Diag(Param->getLocation(), diag::note_template_param_here);
5430 }
Douglas Gregor52aba872009-03-14 00:20:21 +00005431 }
Douglas Gregor264ec4f2009-02-17 01:05:43 +00005432
Benjamin Kramer6003ad52012-06-07 15:09:51 +00005433 Converted = TemplateArgument(Context, Value,
Simon Pilgrim6905d222016-12-30 22:55:33 +00005434 ParamType->isEnumeralType()
Douglas Gregor3d63a9e2011-08-09 01:55:14 +00005435 ? Context.getCanonicalType(ParamType)
5436 : IntegerType);
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00005437 return Arg;
Douglas Gregor86560402009-02-10 23:36:10 +00005438 }
Douglas Gregor3a7796b2009-02-11 00:19:33 +00005439
Richard Smith08b12f12011-10-27 22:11:44 +00005440 QualType ArgType = Arg->getType();
John McCall16df1e52010-03-30 21:47:33 +00005441 DeclAccessPair FoundResult; // temporary for ResolveOverloadedFunction
5442
Douglas Gregor6f233ef2009-02-11 01:18:59 +00005443 // Handle pointer-to-function, reference-to-function, and
5444 // pointer-to-member-function all in (roughly) the same way.
5445 if (// -- For a non-type template-parameter of type pointer to
5446 // function, only the function-to-pointer conversion (4.3) is
5447 // applied. If the template-argument represents a set of
5448 // overloaded functions (or a pointer to such), the matching
5449 // function is selected from the set (13.4).
5450 (ParamType->isPointerType() &&
Ted Kremenekc23c7e62009-07-29 21:53:49 +00005451 ParamType->getAs<PointerType>()->getPointeeType()->isFunctionType()) ||
Douglas Gregor6f233ef2009-02-11 01:18:59 +00005452 // -- For a non-type template-parameter of type reference to
5453 // function, no conversions apply. If the template-argument
5454 // represents a set of overloaded functions, the matching
5455 // function is selected from the set (13.4).
5456 (ParamType->isReferenceType() &&
Ted Kremenekc23c7e62009-07-29 21:53:49 +00005457 ParamType->getAs<ReferenceType>()->getPointeeType()->isFunctionType()) ||
Douglas Gregor6f233ef2009-02-11 01:18:59 +00005458 // -- For a non-type template-parameter of type pointer to
5459 // member function, no conversions apply. If the
5460 // template-argument represents a set of overloaded member
5461 // functions, the matching member function is selected from
5462 // the set (13.4).
5463 (ParamType->isMemberPointerType() &&
Ted Kremenekc23c7e62009-07-29 21:53:49 +00005464 ParamType->getAs<MemberPointerType>()->getPointeeType()
Douglas Gregor6f233ef2009-02-11 01:18:59 +00005465 ->isFunctionType())) {
Douglas Gregorb242683d2010-04-01 18:32:35 +00005466
Douglas Gregor064fdb22010-04-14 23:11:21 +00005467 if (Arg->getType() == Context.OverloadTy) {
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005468 if (FunctionDecl *Fn = ResolveAddressOfOverloadedFunction(Arg, ParamType,
Douglas Gregor064fdb22010-04-14 23:11:21 +00005469 true,
5470 FoundResult)) {
Daniel Dunbar62ee6412012-03-09 18:35:03 +00005471 if (DiagnoseUseOfDecl(Fn, Arg->getLocStart()))
John Wiegley01296292011-04-08 18:41:53 +00005472 return ExprError();
Douglas Gregor064fdb22010-04-14 23:11:21 +00005473
5474 Arg = FixOverloadedFunctionReference(Arg, FoundResult, Fn);
5475 ArgType = Arg->getType();
5476 } else
John Wiegley01296292011-04-08 18:41:53 +00005477 return ExprError();
Douglas Gregor3a7796b2009-02-11 00:19:33 +00005478 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005479
John Wiegley01296292011-04-08 18:41:53 +00005480 if (!ParamType->isMemberPointerType()) {
5481 if (CheckTemplateArgumentAddressOfObjectOrFunction(*this, Param,
5482 ParamType,
5483 Arg, Converted))
5484 return ExprError();
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00005485 return Arg;
John Wiegley01296292011-04-08 18:41:53 +00005486 }
Douglas Gregorb242683d2010-04-01 18:32:35 +00005487
Douglas Gregor20fdef32012-04-10 17:08:25 +00005488 if (CheckTemplateArgumentPointerToMember(*this, Param, ParamType, Arg,
5489 Converted))
John Wiegley01296292011-04-08 18:41:53 +00005490 return ExprError();
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00005491 return Arg;
Douglas Gregor3a7796b2009-02-11 00:19:33 +00005492 }
5493
Chris Lattner696197c2009-02-20 21:37:53 +00005494 if (ParamType->isPointerType()) {
Douglas Gregor6f233ef2009-02-11 01:18:59 +00005495 // -- for a non-type template-parameter of type pointer to
5496 // object, qualification conversions (4.4) and the
5497 // array-to-pointer conversion (4.2) are applied.
Sebastian Redl576fd422009-05-10 18:38:11 +00005498 // C++0x also allows a value of std::nullptr_t.
Eli Friedmana170cd62010-08-05 02:49:48 +00005499 assert(ParamType->getPointeeType()->isIncompleteOrObjectType() &&
Douglas Gregor6f233ef2009-02-11 01:18:59 +00005500 "Only object pointers allowed here");
Douglas Gregora9faa442009-02-11 00:44:29 +00005501
John Wiegley01296292011-04-08 18:41:53 +00005502 if (CheckTemplateArgumentAddressOfObjectOrFunction(*this, Param,
5503 ParamType,
5504 Arg, Converted))
5505 return ExprError();
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00005506 return Arg;
Douglas Gregora9faa442009-02-11 00:44:29 +00005507 }
Mike Stump11289f42009-09-09 15:08:12 +00005508
Ted Kremenekc23c7e62009-07-29 21:53:49 +00005509 if (const ReferenceType *ParamRefType = ParamType->getAs<ReferenceType>()) {
Douglas Gregor6f233ef2009-02-11 01:18:59 +00005510 // -- For a non-type template-parameter of type reference to
5511 // object, no conversions apply. The type referred to by the
5512 // reference may be more cv-qualified than the (otherwise
5513 // identical) type of the template-argument. The
5514 // template-parameter is bound directly to the
5515 // template-argument, which must be an lvalue.
Eli Friedmana170cd62010-08-05 02:49:48 +00005516 assert(ParamRefType->getPointeeType()->isIncompleteOrObjectType() &&
Douglas Gregor6f233ef2009-02-11 01:18:59 +00005517 "Only object references allowed here");
Douglas Gregora9faa442009-02-11 00:44:29 +00005518
Douglas Gregor064fdb22010-04-14 23:11:21 +00005519 if (Arg->getType() == Context.OverloadTy) {
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005520 if (FunctionDecl *Fn = ResolveAddressOfOverloadedFunction(Arg,
5521 ParamRefType->getPointeeType(),
Douglas Gregor064fdb22010-04-14 23:11:21 +00005522 true,
5523 FoundResult)) {
Daniel Dunbar62ee6412012-03-09 18:35:03 +00005524 if (DiagnoseUseOfDecl(Fn, Arg->getLocStart()))
John Wiegley01296292011-04-08 18:41:53 +00005525 return ExprError();
Douglas Gregor064fdb22010-04-14 23:11:21 +00005526
5527 Arg = FixOverloadedFunctionReference(Arg, FoundResult, Fn);
5528 ArgType = Arg->getType();
5529 } else
John Wiegley01296292011-04-08 18:41:53 +00005530 return ExprError();
Douglas Gregor6f233ef2009-02-11 01:18:59 +00005531 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005532
John Wiegley01296292011-04-08 18:41:53 +00005533 if (CheckTemplateArgumentAddressOfObjectOrFunction(*this, Param,
5534 ParamType,
5535 Arg, Converted))
5536 return ExprError();
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00005537 return Arg;
Douglas Gregor6f233ef2009-02-11 01:18:59 +00005538 }
Douglas Gregor0e558532009-02-11 16:16:59 +00005539
Douglas Gregor20fdef32012-04-10 17:08:25 +00005540 // Deal with parameters of type std::nullptr_t.
5541 if (ParamType->isNullPtrType()) {
5542 if (Arg->isTypeDependent() || Arg->isValueDependent()) {
5543 Converted = TemplateArgument(Arg);
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00005544 return Arg;
Douglas Gregor20fdef32012-04-10 17:08:25 +00005545 }
Simon Pilgrim6905d222016-12-30 22:55:33 +00005546
Douglas Gregor20fdef32012-04-10 17:08:25 +00005547 switch (isNullPointerValueTemplateArgument(*this, Param, ParamType, Arg)) {
5548 case NPV_NotNullPointer:
5549 Diag(Arg->getExprLoc(), diag::err_template_arg_not_convertible)
5550 << Arg->getType() << ParamType;
5551 Diag(Param->getLocation(), diag::note_template_param_here);
5552 return ExprError();
Simon Pilgrim6905d222016-12-30 22:55:33 +00005553
Douglas Gregor20fdef32012-04-10 17:08:25 +00005554 case NPV_Error:
5555 return ExprError();
Simon Pilgrim6905d222016-12-30 22:55:33 +00005556
Douglas Gregor20fdef32012-04-10 17:08:25 +00005557 case NPV_NullPointer:
Richard Smithbc8c5b52012-04-26 01:51:03 +00005558 Diag(Arg->getExprLoc(), diag::warn_cxx98_compat_template_arg_null);
Richard Smith78bb36f2014-07-24 02:27:39 +00005559 Converted = TemplateArgument(Context.getCanonicalType(ParamType),
5560 /*isNullPtr*/true);
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00005561 return Arg;
Douglas Gregor20fdef32012-04-10 17:08:25 +00005562 }
5563 }
5564
Douglas Gregor0e558532009-02-11 16:16:59 +00005565 // -- For a non-type template-parameter of type pointer to data
5566 // member, qualification conversions (4.4) are applied.
5567 assert(ParamType->isMemberPointerType() && "Only pointers to members remain");
5568
Douglas Gregor20fdef32012-04-10 17:08:25 +00005569 if (CheckTemplateArgumentPointerToMember(*this, Param, ParamType, Arg,
5570 Converted))
John Wiegley01296292011-04-08 18:41:53 +00005571 return ExprError();
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00005572 return Arg;
Douglas Gregord32e0282009-02-09 23:23:08 +00005573}
5574
Richard Smith26b86ea2016-12-31 21:41:23 +00005575static void DiagnoseTemplateParameterListArityMismatch(
5576 Sema &S, TemplateParameterList *New, TemplateParameterList *Old,
5577 Sema::TemplateParameterListEqualKind Kind, SourceLocation TemplateArgLoc);
5578
Douglas Gregord32e0282009-02-09 23:23:08 +00005579/// \brief Check a template argument against its corresponding
5580/// template template parameter.
5581///
5582/// This routine implements the semantics of C++ [temp.arg.template].
5583/// It returns true if an error occurred, and false otherwise.
5584bool Sema::CheckTemplateArgument(TemplateTemplateParmDecl *Param,
Reid Kleckner377c1592014-06-10 23:29:48 +00005585 TemplateArgumentLoc &Arg,
Richard Smith1fde8ec2012-09-07 02:06:42 +00005586 unsigned ArgumentPackIndex) {
Eli Friedmanb826a002012-09-26 02:36:12 +00005587 TemplateName Name = Arg.getArgument().getAsTemplateOrTemplatePattern();
Douglas Gregor9167f8b2009-11-11 01:00:40 +00005588 TemplateDecl *Template = Name.getAsTemplateDecl();
5589 if (!Template) {
5590 // Any dependent template name is fine.
5591 assert(Name.isDependent() && "Non-dependent template isn't a declaration?");
5592 return false;
5593 }
Douglas Gregor85e0f662009-02-10 00:24:35 +00005594
Richard Smith26b86ea2016-12-31 21:41:23 +00005595 if (Template->isInvalidDecl())
5596 return true;
5597
Richard Smith3f1b5d02011-05-05 21:57:07 +00005598 // C++0x [temp.arg.template]p1:
Douglas Gregor85e0f662009-02-10 00:24:35 +00005599 // A template-argument for a template template-parameter shall be
Richard Smith3f1b5d02011-05-05 21:57:07 +00005600 // the name of a class template or an alias template, expressed as an
5601 // id-expression. When the template-argument names a class template, only
Douglas Gregor85e0f662009-02-10 00:24:35 +00005602 // primary class templates are considered when matching the
5603 // template template argument with the corresponding parameter;
5604 // partial specializations are not considered even if their
5605 // parameter lists match that of the template template parameter.
Douglas Gregord5222052009-06-12 19:43:02 +00005606 //
5607 // Note that we also allow template template parameters here, which
5608 // will happen when we are dealing with, e.g., class template
5609 // partial specializations.
Mike Stump11289f42009-09-09 15:08:12 +00005610 if (!isa<ClassTemplateDecl>(Template) &&
Richard Smith3f1b5d02011-05-05 21:57:07 +00005611 !isa<TemplateTemplateParmDecl>(Template) &&
David Majnemerc2406d42016-07-11 17:09:56 +00005612 !isa<TypeAliasTemplateDecl>(Template) &&
5613 !isa<BuiltinTemplateDecl>(Template)) {
5614 assert(isa<FunctionTemplateDecl>(Template) &&
5615 "Only function templates are possible here");
Faisal Valib8b04f82016-03-26 20:46:45 +00005616 Diag(Arg.getLocation(), diag::err_template_arg_not_valid_template);
David Majnemerc2406d42016-07-11 17:09:56 +00005617 Diag(Template->getLocation(), diag::note_template_arg_refers_here_func)
5618 << Template;
Douglas Gregor85e0f662009-02-10 00:24:35 +00005619 }
5620
Richard Smith1fde8ec2012-09-07 02:06:42 +00005621 TemplateParameterList *Params = Param->getTemplateParameters();
5622 if (Param->isExpandedParameterPack())
5623 Params = Param->getExpansionTemplateParameters(ArgumentPackIndex);
5624
Richard Smith26b86ea2016-12-31 21:41:23 +00005625 // C++1z [temp.arg.template]p3: (DR 150)
5626 // A template-argument matches a template template-parameter P when P
5627 // is at least as specialized as the template-argument A.
5628 if (getLangOpts().RelaxedTemplateTemplateArgs) {
5629 // Quick check for the common case:
5630 // If P contains a parameter pack, then A [...] matches P if each of A's
5631 // template parameters matches the corresponding template parameter in
5632 // the template-parameter-list of P.
5633 if (TemplateParameterListsAreEqual(
5634 Template->getTemplateParameters(), Params, false,
5635 TPL_TemplateTemplateArgumentMatch, Arg.getLocation()))
5636 return false;
5637
5638 if (isTemplateTemplateParameterAtLeastAsSpecializedAs(Params, Template,
5639 Arg.getLocation()))
5640 return false;
5641 // FIXME: Produce better diagnostics for deduction failures.
5642 }
5643
Douglas Gregor85e0f662009-02-10 00:24:35 +00005644 return !TemplateParameterListsAreEqual(Template->getTemplateParameters(),
Richard Smith1fde8ec2012-09-07 02:06:42 +00005645 Params,
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005646 true,
Douglas Gregor19ac2d62009-11-12 16:20:59 +00005647 TPL_TemplateTemplateArgumentMatch,
Douglas Gregor9167f8b2009-11-11 01:00:40 +00005648 Arg.getLocation());
Douglas Gregord32e0282009-02-09 23:23:08 +00005649}
5650
Douglas Gregord5cb1dd2010-03-28 02:42:43 +00005651/// \brief Given a non-type template argument that refers to a
5652/// declaration and the type of its corresponding non-type template
5653/// parameter, produce an expression that properly refers to that
5654/// declaration.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005655ExprResult
Douglas Gregord5cb1dd2010-03-28 02:42:43 +00005656Sema::BuildExpressionFromDeclTemplateArgument(const TemplateArgument &Arg,
5657 QualType ParamType,
5658 SourceLocation Loc) {
David Blaikiedc601e32013-02-27 22:10:40 +00005659 // C++ [temp.param]p8:
5660 //
5661 // A non-type template-parameter of type "array of T" or
5662 // "function returning T" is adjusted to be of type "pointer to
5663 // T" or "pointer to function returning T", respectively.
5664 if (ParamType->isArrayType())
5665 ParamType = Context.getArrayDecayedType(ParamType);
5666 else if (ParamType->isFunctionType())
5667 ParamType = Context.getPointerType(ParamType);
5668
Douglas Gregor31f55dc2012-04-06 22:40:38 +00005669 // For a NULL non-type template argument, return nullptr casted to the
5670 // parameter's type.
Eli Friedmanb826a002012-09-26 02:36:12 +00005671 if (Arg.getKind() == TemplateArgument::NullPtr) {
Douglas Gregor31f55dc2012-04-06 22:40:38 +00005672 return ImpCastExprToType(
5673 new (Context) CXXNullPtrLiteralExpr(Context.NullPtrTy, Loc),
5674 ParamType,
5675 ParamType->getAs<MemberPointerType>()
5676 ? CK_NullToMemberPointer
5677 : CK_NullToPointer);
5678 }
Eli Friedmanb826a002012-09-26 02:36:12 +00005679 assert(Arg.getKind() == TemplateArgument::Declaration &&
5680 "Only declaration template arguments permitted here");
5681
Douglas Gregord5cb1dd2010-03-28 02:42:43 +00005682 ValueDecl *VD = cast<ValueDecl>(Arg.getAsDecl());
5683
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005684 if (VD->getDeclContext()->isRecord() &&
David Majnemer3ae0bfa2013-10-26 05:02:13 +00005685 (isa<CXXMethodDecl>(VD) || isa<FieldDecl>(VD) ||
5686 isa<IndirectFieldDecl>(VD))) {
Douglas Gregord5cb1dd2010-03-28 02:42:43 +00005687 // If the value is a class member, we might have a pointer-to-member.
5688 // Determine whether the non-type template template parameter is of
5689 // pointer-to-member type. If so, we need to build an appropriate
5690 // expression for a pointer-to-member, since a "normal" DeclRefExpr
5691 // would refer to the member itself.
5692 if (ParamType->isMemberPointerType()) {
5693 QualType ClassType
5694 = Context.getTypeDeclType(cast<RecordDecl>(VD->getDeclContext()));
5695 NestedNameSpecifier *Qualifier
Craig Topperc3ec1492014-05-26 06:22:03 +00005696 = NestedNameSpecifier::Create(Context, nullptr, false,
John McCallb268a282010-08-23 23:25:46 +00005697 ClassType.getTypePtr());
Douglas Gregord5cb1dd2010-03-28 02:42:43 +00005698 CXXScopeSpec SS;
Douglas Gregor869ad452011-02-24 17:54:50 +00005699 SS.MakeTrivial(Context, Qualifier, Loc);
John McCallfeb624a2010-11-23 20:48:44 +00005700
5701 // The actual value-ness of this is unimportant, but for
5702 // internal consistency's sake, references to instance methods
5703 // are r-values.
5704 ExprValueKind VK = VK_LValue;
5705 if (isa<CXXMethodDecl>(VD) && cast<CXXMethodDecl>(VD)->isInstance())
5706 VK = VK_RValue;
5707
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005708 ExprResult RefExpr = BuildDeclRefExpr(VD,
John McCall7decc9e2010-11-18 06:31:45 +00005709 VD->getType().getNonReferenceType(),
John McCallfeb624a2010-11-23 20:48:44 +00005710 VK,
John McCall7decc9e2010-11-18 06:31:45 +00005711 Loc,
5712 &SS);
Douglas Gregord5cb1dd2010-03-28 02:42:43 +00005713 if (RefExpr.isInvalid())
5714 return ExprError();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005715
John McCalle3027922010-08-25 11:45:40 +00005716 RefExpr = CreateBuiltinUnaryOp(Loc, UO_AddrOf, RefExpr.get());
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005717
Douglas Gregorfabf95d2010-04-30 21:46:38 +00005718 // We might need to perform a trailing qualification conversion, since
5719 // the element type on the parameter could be more qualified than the
5720 // element type in the expression we constructed.
John McCall31168b02011-06-15 23:02:42 +00005721 bool ObjCLifetimeConversion;
Douglas Gregorfabf95d2010-04-30 21:46:38 +00005722 if (IsQualificationConversion(((Expr*) RefExpr.get())->getType(),
John McCall31168b02011-06-15 23:02:42 +00005723 ParamType.getUnqualifiedType(), false,
5724 ObjCLifetimeConversion))
Nikola Smiljanic01a75982014-05-29 10:55:11 +00005725 RefExpr = ImpCastExprToType(RefExpr.get(), ParamType.getUnqualifiedType(), CK_NoOp);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005726
Douglas Gregord5cb1dd2010-03-28 02:42:43 +00005727 assert(!RefExpr.isInvalid() &&
5728 Context.hasSameType(((Expr*) RefExpr.get())->getType(),
Douglas Gregorfabf95d2010-04-30 21:46:38 +00005729 ParamType.getUnqualifiedType()));
Benjamin Kramer62b95d82012-08-23 21:35:17 +00005730 return RefExpr;
Douglas Gregord5cb1dd2010-03-28 02:42:43 +00005731 }
5732 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005733
Douglas Gregord5cb1dd2010-03-28 02:42:43 +00005734 QualType T = VD->getType().getNonReferenceType();
Douglas Gregoreffe2a12013-01-16 00:52:15 +00005735
Douglas Gregord5cb1dd2010-03-28 02:42:43 +00005736 if (ParamType->isPointerType()) {
Douglas Gregorb242683d2010-04-01 18:32:35 +00005737 // When the non-type template parameter is a pointer, take the
5738 // address of the declaration.
John McCall7decc9e2010-11-18 06:31:45 +00005739 ExprResult RefExpr = BuildDeclRefExpr(VD, T, VK_LValue, Loc);
Douglas Gregord5cb1dd2010-03-28 02:42:43 +00005740 if (RefExpr.isInvalid())
5741 return ExprError();
Douglas Gregorb242683d2010-04-01 18:32:35 +00005742
5743 if (T->isFunctionType() || T->isArrayType()) {
5744 // Decay functions and arrays.
Nikola Smiljanic01a75982014-05-29 10:55:11 +00005745 RefExpr = DefaultFunctionArrayConversion(RefExpr.get());
John Wiegley01296292011-04-08 18:41:53 +00005746 if (RefExpr.isInvalid())
5747 return ExprError();
Douglas Gregorb242683d2010-04-01 18:32:35 +00005748
Benjamin Kramer62b95d82012-08-23 21:35:17 +00005749 return RefExpr;
Douglas Gregord5cb1dd2010-03-28 02:42:43 +00005750 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005751
Douglas Gregorb242683d2010-04-01 18:32:35 +00005752 // Take the address of everything else
John McCalle3027922010-08-25 11:45:40 +00005753 return CreateBuiltinUnaryOp(Loc, UO_AddrOf, RefExpr.get());
Douglas Gregord5cb1dd2010-03-28 02:42:43 +00005754 }
5755
John McCall7decc9e2010-11-18 06:31:45 +00005756 ExprValueKind VK = VK_RValue;
5757
Douglas Gregord5cb1dd2010-03-28 02:42:43 +00005758 // If the non-type template parameter has reference type, qualify the
5759 // resulting declaration reference with the extra qualifiers on the
5760 // type that the reference refers to.
John McCall7decc9e2010-11-18 06:31:45 +00005761 if (const ReferenceType *TargetRef = ParamType->getAs<ReferenceType>()) {
5762 VK = VK_LValue;
5763 T = Context.getQualifiedType(T,
5764 TargetRef->getPointeeType().getQualifiers());
Douglas Gregoreffe2a12013-01-16 00:52:15 +00005765 } else if (isa<FunctionDecl>(VD)) {
5766 // References to functions are always lvalues.
5767 VK = VK_LValue;
John McCall7decc9e2010-11-18 06:31:45 +00005768 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005769
John McCall7decc9e2010-11-18 06:31:45 +00005770 return BuildDeclRefExpr(VD, T, VK, Loc);
Douglas Gregord5cb1dd2010-03-28 02:42:43 +00005771}
5772
5773/// \brief Construct a new expression that refers to the given
5774/// integral template argument with the given source-location
5775/// information.
5776///
5777/// This routine takes care of the mapping from an integral template
5778/// argument (which may have any integral type) to the appropriate
5779/// literal value.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005780ExprResult
Douglas Gregord5cb1dd2010-03-28 02:42:43 +00005781Sema::BuildExpressionFromIntegralTemplateArgument(const TemplateArgument &Arg,
5782 SourceLocation Loc) {
5783 assert(Arg.getKind() == TemplateArgument::Integral &&
Douglas Gregora8bac7f2011-01-10 07:32:04 +00005784 "Operation is only valid for integral template arguments");
Benjamin Kramer3d3ddce2012-11-21 17:42:47 +00005785 QualType OrigT = Arg.getIntegralType();
5786
5787 // If this is an enum type that we're instantiating, we need to use an integer
5788 // type the same size as the enumerator. We don't want to build an
5789 // IntegerLiteral with enum type. The integer type of an enum type can be of
5790 // any integral type with C++11 enum classes, make sure we create the right
5791 // type of literal for it.
5792 QualType T = OrigT;
5793 if (const EnumType *ET = OrigT->getAs<EnumType>())
5794 T = ET->getDecl()->getIntegerType();
5795
5796 Expr *E;
Douglas Gregorfb65e592011-07-27 05:40:30 +00005797 if (T->isAnyCharacterType()) {
Aaron Ballman9a17c852016-01-07 20:59:26 +00005798 // This does not need to handle u8 character literals because those are
5799 // of type char, and so can also be covered by an ASCII character literal.
Douglas Gregorfb65e592011-07-27 05:40:30 +00005800 CharacterLiteral::CharacterKind Kind;
5801 if (T->isWideCharType())
5802 Kind = CharacterLiteral::Wide;
5803 else if (T->isChar16Type())
5804 Kind = CharacterLiteral::UTF16;
5805 else if (T->isChar32Type())
5806 Kind = CharacterLiteral::UTF32;
5807 else
5808 Kind = CharacterLiteral::Ascii;
5809
Benjamin Kramer3d3ddce2012-11-21 17:42:47 +00005810 E = new (Context) CharacterLiteral(Arg.getAsIntegral().getZExtValue(),
5811 Kind, T, Loc);
5812 } else if (T->isBooleanType()) {
5813 E = new (Context) CXXBoolLiteralExpr(Arg.getAsIntegral().getBoolValue(),
5814 T, Loc);
5815 } else if (T->isNullPtrType()) {
5816 E = new (Context) CXXNullPtrLiteralExpr(Context.NullPtrTy, Loc);
5817 } else {
5818 E = IntegerLiteral::Create(Context, Arg.getAsIntegral(), T, Loc);
Douglas Gregorfb65e592011-07-27 05:40:30 +00005819 }
5820
Benjamin Kramer3d3ddce2012-11-21 17:42:47 +00005821 if (OrigT->isEnumeralType()) {
John McCall6730e4d2011-07-15 07:47:58 +00005822 // FIXME: This is a hack. We need a better way to handle substituted
5823 // non-type template parameters.
Craig Topperc3ec1492014-05-26 06:22:03 +00005824 E = CStyleCastExpr::Create(Context, OrigT, VK_RValue, CK_IntegralCast, E,
5825 nullptr,
Benjamin Kramer3d3ddce2012-11-21 17:42:47 +00005826 Context.getTrivialTypeSourceInfo(OrigT, Loc),
John McCall6730e4d2011-07-15 07:47:58 +00005827 Loc, Loc);
5828 }
Simon Pilgrim6905d222016-12-30 22:55:33 +00005829
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00005830 return E;
Douglas Gregord5cb1dd2010-03-28 02:42:43 +00005831}
5832
Richard Smith43a833b2017-01-09 23:54:33 +00005833static bool isDependentOnOuter(NonTypeTemplateParmDecl *NTTP) {
5834 if (NTTP->getDepth() == 0 || !NTTP->getType()->isDependentType())
5835 return false;
5836 DependencyChecker Checker(NTTP->getDepth(), /*IgnoreNonTypeDependent*/ false,
5837 /*FindLessThanDepth*/ true);
5838 Checker.TraverseType(NTTP->getType());
5839 return Checker.Match;
5840}
5841
Douglas Gregor641040a2011-01-12 23:45:44 +00005842/// \brief Match two template parameters within template parameter lists.
5843static bool MatchTemplateParameterKind(Sema &S, NamedDecl *New, NamedDecl *Old,
5844 bool Complain,
5845 Sema::TemplateParameterListEqualKind Kind,
5846 SourceLocation TemplateArgLoc) {
5847 // Check the actual kind (type, non-type, template).
5848 if (Old->getKind() != New->getKind()) {
5849 if (Complain) {
5850 unsigned NextDiag = diag::err_template_param_different_kind;
5851 if (TemplateArgLoc.isValid()) {
5852 S.Diag(TemplateArgLoc, diag::err_template_arg_template_params_mismatch);
5853 NextDiag = diag::note_template_param_different_kind;
5854 }
5855 S.Diag(New->getLocation(), NextDiag)
5856 << (Kind != Sema::TPL_TemplateMatch);
5857 S.Diag(Old->getLocation(), diag::note_template_prev_declaration)
5858 << (Kind != Sema::TPL_TemplateMatch);
5859 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005860
Douglas Gregor641040a2011-01-12 23:45:44 +00005861 return false;
5862 }
5863
Richard Smith26b86ea2016-12-31 21:41:23 +00005864 // Check that both are parameter packs or neither are parameter packs.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005865 // However, if we are matching a template template argument to a
Douglas Gregorfd4344b2011-01-13 00:08:50 +00005866 // template template parameter, the template template parameter can have
5867 // a parameter pack where the template template argument does not.
5868 if (Old->isTemplateParameterPack() != New->isTemplateParameterPack() &&
5869 !(Kind == Sema::TPL_TemplateTemplateArgumentMatch &&
5870 Old->isTemplateParameterPack())) {
Douglas Gregor641040a2011-01-12 23:45:44 +00005871 if (Complain) {
5872 unsigned NextDiag = diag::err_template_parameter_pack_non_pack;
5873 if (TemplateArgLoc.isValid()) {
5874 S.Diag(TemplateArgLoc,
5875 diag::err_template_arg_template_params_mismatch);
5876 NextDiag = diag::note_template_parameter_pack_non_pack;
5877 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005878
Douglas Gregor641040a2011-01-12 23:45:44 +00005879 unsigned ParamKind = isa<TemplateTypeParmDecl>(New)? 0
5880 : isa<NonTypeTemplateParmDecl>(New)? 1
5881 : 2;
5882 S.Diag(New->getLocation(), NextDiag)
5883 << ParamKind << New->isParameterPack();
5884 S.Diag(Old->getLocation(), diag::note_template_parameter_pack_here)
5885 << ParamKind << Old->isParameterPack();
5886 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005887
Douglas Gregor641040a2011-01-12 23:45:44 +00005888 return false;
5889 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005890
Douglas Gregor641040a2011-01-12 23:45:44 +00005891 // For non-type template parameters, check the type of the parameter.
5892 if (NonTypeTemplateParmDecl *OldNTTP
5893 = dyn_cast<NonTypeTemplateParmDecl>(Old)) {
5894 NonTypeTemplateParmDecl *NewNTTP = cast<NonTypeTemplateParmDecl>(New);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005895
Douglas Gregor641040a2011-01-12 23:45:44 +00005896 // If we are matching a template template argument to a template
5897 // template parameter and one of the non-type template parameter types
Richard Smith43a833b2017-01-09 23:54:33 +00005898 // is dependent on an outer template's parameter, then we must wait until
5899 // template instantiation time to actually compare the arguments.
Douglas Gregor641040a2011-01-12 23:45:44 +00005900 if (Kind == Sema::TPL_TemplateTemplateArgumentMatch &&
Richard Smith43a833b2017-01-09 23:54:33 +00005901 (isDependentOnOuter(OldNTTP) || isDependentOnOuter(NewNTTP)))
Douglas Gregor641040a2011-01-12 23:45:44 +00005902 return true;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005903
Douglas Gregor641040a2011-01-12 23:45:44 +00005904 if (!S.Context.hasSameType(OldNTTP->getType(), NewNTTP->getType())) {
5905 if (Complain) {
5906 unsigned NextDiag = diag::err_template_nontype_parm_different_type;
5907 if (TemplateArgLoc.isValid()) {
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005908 S.Diag(TemplateArgLoc,
Douglas Gregor641040a2011-01-12 23:45:44 +00005909 diag::err_template_arg_template_params_mismatch);
5910 NextDiag = diag::note_template_nontype_parm_different_type;
5911 }
5912 S.Diag(NewNTTP->getLocation(), NextDiag)
5913 << NewNTTP->getType()
5914 << (Kind != Sema::TPL_TemplateMatch);
5915 S.Diag(OldNTTP->getLocation(),
5916 diag::note_template_nontype_parm_prev_declaration)
5917 << OldNTTP->getType();
5918 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005919
Douglas Gregor641040a2011-01-12 23:45:44 +00005920 return false;
5921 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005922
Douglas Gregor641040a2011-01-12 23:45:44 +00005923 return true;
5924 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005925
Douglas Gregor641040a2011-01-12 23:45:44 +00005926 // For template template parameters, check the template parameter types.
5927 // The template parameter lists of template template
5928 // parameters must agree.
5929 if (TemplateTemplateParmDecl *OldTTP
5930 = dyn_cast<TemplateTemplateParmDecl>(Old)) {
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005931 TemplateTemplateParmDecl *NewTTP = cast<TemplateTemplateParmDecl>(New);
Douglas Gregor641040a2011-01-12 23:45:44 +00005932 return S.TemplateParameterListsAreEqual(NewTTP->getTemplateParameters(),
5933 OldTTP->getTemplateParameters(),
5934 Complain,
5935 (Kind == Sema::TPL_TemplateMatch
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005936 ? Sema::TPL_TemplateTemplateParmMatch
Douglas Gregor641040a2011-01-12 23:45:44 +00005937 : Kind),
5938 TemplateArgLoc);
5939 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005940
Douglas Gregor641040a2011-01-12 23:45:44 +00005941 return true;
5942}
Douglas Gregord5cb1dd2010-03-28 02:42:43 +00005943
Douglas Gregorfd4344b2011-01-13 00:08:50 +00005944/// \brief Diagnose a known arity mismatch when comparing template argument
5945/// lists.
5946static
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005947void DiagnoseTemplateParameterListArityMismatch(Sema &S,
Douglas Gregorfd4344b2011-01-13 00:08:50 +00005948 TemplateParameterList *New,
5949 TemplateParameterList *Old,
5950 Sema::TemplateParameterListEqualKind Kind,
5951 SourceLocation TemplateArgLoc) {
5952 unsigned NextDiag = diag::err_template_param_list_different_arity;
5953 if (TemplateArgLoc.isValid()) {
5954 S.Diag(TemplateArgLoc, diag::err_template_arg_template_params_mismatch);
5955 NextDiag = diag::note_template_param_list_different_arity;
5956 }
5957 S.Diag(New->getTemplateLoc(), NextDiag)
5958 << (New->size() > Old->size())
5959 << (Kind != Sema::TPL_TemplateMatch)
5960 << SourceRange(New->getTemplateLoc(), New->getRAngleLoc());
5961 S.Diag(Old->getTemplateLoc(), diag::note_template_prev_declaration)
5962 << (Kind != Sema::TPL_TemplateMatch)
5963 << SourceRange(Old->getTemplateLoc(), Old->getRAngleLoc());
5964}
5965
Douglas Gregorcd72ba92009-02-06 22:42:48 +00005966/// \brief Determine whether the given template parameter lists are
5967/// equivalent.
5968///
Mike Stump11289f42009-09-09 15:08:12 +00005969/// \param New The new template parameter list, typically written in the
Douglas Gregorcd72ba92009-02-06 22:42:48 +00005970/// source code as part of a new template declaration.
5971///
5972/// \param Old The old template parameter list, typically found via
5973/// name lookup of the template declared with this template parameter
5974/// list.
5975///
5976/// \param Complain If true, this routine will produce a diagnostic if
5977/// the template parameter lists are not equivalent.
5978///
Douglas Gregor19ac2d62009-11-12 16:20:59 +00005979/// \param Kind describes how we are to match the template parameter lists.
Douglas Gregor85e0f662009-02-10 00:24:35 +00005980///
5981/// \param TemplateArgLoc If this source location is valid, then we
5982/// are actually checking the template parameter list of a template
5983/// argument (New) against the template parameter list of its
5984/// corresponding template template parameter (Old). We produce
5985/// slightly different diagnostics in this scenario.
5986///
Douglas Gregorcd72ba92009-02-06 22:42:48 +00005987/// \returns True if the template parameter lists are equal, false
5988/// otherwise.
Mike Stump11289f42009-09-09 15:08:12 +00005989bool
Douglas Gregorcd72ba92009-02-06 22:42:48 +00005990Sema::TemplateParameterListsAreEqual(TemplateParameterList *New,
5991 TemplateParameterList *Old,
5992 bool Complain,
Douglas Gregor19ac2d62009-11-12 16:20:59 +00005993 TemplateParameterListEqualKind Kind,
Douglas Gregor85e0f662009-02-10 00:24:35 +00005994 SourceLocation TemplateArgLoc) {
Douglas Gregorfd4344b2011-01-13 00:08:50 +00005995 if (Old->size() != New->size() && Kind != TPL_TemplateTemplateArgumentMatch) {
5996 if (Complain)
5997 DiagnoseTemplateParameterListArityMismatch(*this, New, Old, Kind,
5998 TemplateArgLoc);
Douglas Gregorcd72ba92009-02-06 22:42:48 +00005999
6000 return false;
6001 }
6002
Douglas Gregor641040a2011-01-12 23:45:44 +00006003 // C++0x [temp.arg.template]p3:
6004 // A template-argument matches a template template-parameter (call it P)
NAKAMURA Takumi7c288862011-01-27 07:09:49 +00006005 // when each of the template parameters in the template-parameter-list of
Richard Smith3f1b5d02011-05-05 21:57:07 +00006006 // the template-argument's corresponding class template or alias template
NAKAMURA Takumi7c288862011-01-27 07:09:49 +00006007 // (call it A) matches the corresponding template parameter in the
Douglas Gregorfd4344b2011-01-13 00:08:50 +00006008 // template-parameter-list of P. [...]
6009 TemplateParameterList::iterator NewParm = New->begin();
6010 TemplateParameterList::iterator NewParmEnd = New->end();
Douglas Gregorcd72ba92009-02-06 22:42:48 +00006011 for (TemplateParameterList::iterator OldParm = Old->begin(),
Douglas Gregorfd4344b2011-01-13 00:08:50 +00006012 OldParmEnd = Old->end();
6013 OldParm != OldParmEnd; ++OldParm) {
Douglas Gregor018778a2011-01-13 18:47:47 +00006014 if (Kind != TPL_TemplateTemplateArgumentMatch ||
6015 !(*OldParm)->isTemplateParameterPack()) {
Douglas Gregorfd4344b2011-01-13 00:08:50 +00006016 if (NewParm == NewParmEnd) {
6017 if (Complain)
6018 DiagnoseTemplateParameterListArityMismatch(*this, New, Old, Kind,
6019 TemplateArgLoc);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006020
Douglas Gregorfd4344b2011-01-13 00:08:50 +00006021 return false;
6022 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006023
Douglas Gregorfd4344b2011-01-13 00:08:50 +00006024 if (!MatchTemplateParameterKind(*this, *NewParm, *OldParm, Complain,
6025 Kind, TemplateArgLoc))
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006026 return false;
6027
Douglas Gregorfd4344b2011-01-13 00:08:50 +00006028 ++NewParm;
6029 continue;
6030 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006031
Douglas Gregorfd4344b2011-01-13 00:08:50 +00006032 // C++0x [temp.arg.template]p3:
NAKAMURA Takumi7c288862011-01-27 07:09:49 +00006033 // [...] When P's template- parameter-list contains a template parameter
6034 // pack (14.5.3), the template parameter pack will match zero or more
6035 // template parameters or template parameter packs in the
Douglas Gregorfd4344b2011-01-13 00:08:50 +00006036 // template-parameter-list of A with the same type and form as the
6037 // template parameter pack in P (ignoring whether those template
6038 // parameters are template parameter packs).
6039 for (; NewParm != NewParmEnd; ++NewParm) {
6040 if (!MatchTemplateParameterKind(*this, *NewParm, *OldParm, Complain,
6041 Kind, TemplateArgLoc))
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006042 return false;
Douglas Gregorfd4344b2011-01-13 00:08:50 +00006043 }
Douglas Gregorcd72ba92009-02-06 22:42:48 +00006044 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006045
Douglas Gregorfd4344b2011-01-13 00:08:50 +00006046 // Make sure we exhausted all of the arguments.
6047 if (NewParm != NewParmEnd) {
6048 if (Complain)
6049 DiagnoseTemplateParameterListArityMismatch(*this, New, Old, Kind,
6050 TemplateArgLoc);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006051
Douglas Gregorfd4344b2011-01-13 00:08:50 +00006052 return false;
6053 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006054
Douglas Gregorcd72ba92009-02-06 22:42:48 +00006055 return true;
6056}
6057
6058/// \brief Check whether a template can be declared within this scope.
6059///
6060/// If the template declaration is valid in this scope, returns
6061/// false. Otherwise, issues a diagnostic and returns true.
Mike Stump11289f42009-09-09 15:08:12 +00006062bool
Douglas Gregor1d5e9f92009-08-25 17:23:04 +00006063Sema::CheckTemplateDeclScope(Scope *S, TemplateParameterList *TemplateParams) {
Douglas Gregordd847ba2011-11-03 16:37:14 +00006064 if (!S)
6065 return false;
6066
Douglas Gregorcd72ba92009-02-06 22:42:48 +00006067 // Find the nearest enclosing declaration scope.
6068 while ((S->getFlags() & Scope::DeclScope) == 0 ||
6069 (S->getFlags() & Scope::TemplateParamScope) != 0)
6070 S = S->getParent();
Mike Stump11289f42009-09-09 15:08:12 +00006071
Benjamin Kramer35e6fee2014-02-02 16:35:43 +00006072 // C++ [temp]p4:
6073 // A template [...] shall not have C linkage.
Ted Kremenekc37877d2013-10-08 17:08:03 +00006074 DeclContext *Ctx = S->getEntity();
Alex Lorenz560ae562016-11-02 15:46:34 +00006075 if (Ctx && Ctx->isExternCContext()) {
6076 Diag(TemplateParams->getTemplateLoc(), diag::err_template_linkage)
6077 << TemplateParams->getSourceRange();
6078 if (const LinkageSpecDecl *LSD = Ctx->getExternCContext())
6079 Diag(LSD->getExternLoc(), diag::note_extern_c_begins_here);
6080 return true;
6081 }
Richard Smith8df390f2016-09-08 23:14:54 +00006082 Ctx = Ctx->getRedeclContext();
Douglas Gregorcd72ba92009-02-06 22:42:48 +00006083
Benjamin Kramer35e6fee2014-02-02 16:35:43 +00006084 // C++ [temp]p2:
6085 // A template-declaration can appear only as a namespace scope or
6086 // class scope declaration.
David Majnemer766e2592013-10-22 04:14:18 +00006087 if (Ctx) {
6088 if (Ctx->isFileContext())
6089 return false;
6090 if (CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(Ctx)) {
6091 // C++ [temp.mem]p2:
6092 // A local class shall not have member templates.
6093 if (RD->isLocalClass())
6094 return Diag(TemplateParams->getTemplateLoc(),
6095 diag::err_template_inside_local_class)
6096 << TemplateParams->getSourceRange();
6097 else
6098 return false;
6099 }
6100 }
Douglas Gregorcd72ba92009-02-06 22:42:48 +00006101
Mike Stump11289f42009-09-09 15:08:12 +00006102 return Diag(TemplateParams->getTemplateLoc(),
Douglas Gregor1d5e9f92009-08-25 17:23:04 +00006103 diag::err_template_outside_namespace_or_class_scope)
6104 << TemplateParams->getSourceRange();
Douglas Gregorcd72ba92009-02-06 22:42:48 +00006105}
Douglas Gregor67a65642009-02-17 23:15:12 +00006106
Douglas Gregor54888652009-10-07 00:13:32 +00006107/// \brief Determine what kind of template specialization the given declaration
6108/// is.
Douglas Gregor0bc8a212012-01-14 15:55:47 +00006109static TemplateSpecializationKind getTemplateSpecializationKind(Decl *D) {
Douglas Gregor54888652009-10-07 00:13:32 +00006110 if (!D)
6111 return TSK_Undeclared;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006112
Douglas Gregorbbe8f462009-10-08 15:14:33 +00006113 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(D))
6114 return Record->getTemplateSpecializationKind();
Douglas Gregor54888652009-10-07 00:13:32 +00006115 if (FunctionDecl *Function = dyn_cast<FunctionDecl>(D))
6116 return Function->getTemplateSpecializationKind();
Douglas Gregor86d142a2009-10-08 07:24:58 +00006117 if (VarDecl *Var = dyn_cast<VarDecl>(D))
6118 return Var->getTemplateSpecializationKind();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006119
Douglas Gregor54888652009-10-07 00:13:32 +00006120 return TSK_Undeclared;
6121}
6122
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006123/// \brief Check whether a specialization is well-formed in the current
Douglas Gregorba8e1ac2009-10-14 23:50:59 +00006124/// context.
Douglas Gregorf47b9112009-02-25 22:02:03 +00006125///
Douglas Gregorba8e1ac2009-10-14 23:50:59 +00006126/// This routine determines whether a template specialization can be declared
6127/// in the current context (C++ [temp.expl.spec]p2).
Douglas Gregor54888652009-10-07 00:13:32 +00006128///
6129/// \param S the semantic analysis object for which this check is being
6130/// performed.
6131///
6132/// \param Specialized the entity being specialized or instantiated, which
6133/// may be a kind of template (class template, function template, etc.) or
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006134/// a member of a class template (member function, static data member,
Douglas Gregor54888652009-10-07 00:13:32 +00006135/// member class).
6136///
6137/// \param PrevDecl the previous declaration of this entity, if any.
6138///
6139/// \param Loc the location of the explicit specialization or instantiation of
6140/// this entity.
6141///
6142/// \param IsPartialSpecialization whether this is a partial specialization of
6143/// a class template.
6144///
Douglas Gregor54888652009-10-07 00:13:32 +00006145/// \returns true if there was an error that we cannot recover from, false
6146/// otherwise.
6147static bool CheckTemplateSpecializationScope(Sema &S,
6148 NamedDecl *Specialized,
6149 NamedDecl *PrevDecl,
6150 SourceLocation Loc,
Douglas Gregorba8e1ac2009-10-14 23:50:59 +00006151 bool IsPartialSpecialization) {
Douglas Gregor54888652009-10-07 00:13:32 +00006152 // Keep these "kind" numbers in sync with the %select statements in the
6153 // various diagnostics emitted by this routine.
6154 int EntityKind = 0;
Ted Kremenek7f1f3f62011-01-14 22:31:36 +00006155 if (isa<ClassTemplateDecl>(Specialized))
Douglas Gregor54888652009-10-07 00:13:32 +00006156 EntityKind = IsPartialSpecialization? 1 : 0;
Larisse Voufo39a1e502013-08-06 01:03:05 +00006157 else if (isa<VarTemplateDecl>(Specialized))
6158 EntityKind = IsPartialSpecialization ? 3 : 2;
Ted Kremenek7f1f3f62011-01-14 22:31:36 +00006159 else if (isa<FunctionTemplateDecl>(Specialized))
Douglas Gregor54888652009-10-07 00:13:32 +00006160 EntityKind = 4;
Larisse Voufo39a1e502013-08-06 01:03:05 +00006161 else if (isa<CXXMethodDecl>(Specialized))
Douglas Gregor54888652009-10-07 00:13:32 +00006162 EntityKind = 5;
Larisse Voufo39a1e502013-08-06 01:03:05 +00006163 else if (isa<VarDecl>(Specialized))
Richard Smith7d137e32012-03-23 03:33:32 +00006164 EntityKind = 6;
Larisse Voufo39a1e502013-08-06 01:03:05 +00006165 else if (isa<RecordDecl>(Specialized))
6166 EntityKind = 7;
6167 else if (isa<EnumDecl>(Specialized) && S.getLangOpts().CPlusPlus11)
6168 EntityKind = 8;
Douglas Gregor54888652009-10-07 00:13:32 +00006169 else {
Richard Smith7d137e32012-03-23 03:33:32 +00006170 S.Diag(Loc, diag::err_template_spec_unknown_kind)
Richard Smith2bf7fdb2013-01-02 11:42:31 +00006171 << S.getLangOpts().CPlusPlus11;
Douglas Gregorba8e1ac2009-10-14 23:50:59 +00006172 S.Diag(Specialized->getLocation(), diag::note_specialized_entity);
Douglas Gregor54888652009-10-07 00:13:32 +00006173 return true;
6174 }
6175
Douglas Gregorf47b9112009-02-25 22:02:03 +00006176 // C++ [temp.expl.spec]p2:
6177 // An explicit specialization shall be declared in the namespace
6178 // of which the template is a member, or, for member templates, in
6179 // the namespace of which the enclosing class or enclosing class
6180 // template is a member. An explicit specialization of a member
6181 // function, member class or static data member of a class
6182 // template shall be declared in the namespace of which the class
6183 // template is a member. Such a declaration may also be a
6184 // definition. If the declaration is not a definition, the
6185 // specialization may be defined later in the name- space in which
6186 // the explicit specialization was declared, or in a namespace
6187 // that encloses the one in which the explicit specialization was
6188 // declared.
Sebastian Redl50c68252010-08-31 00:36:30 +00006189 if (S.CurContext->getRedeclContext()->isFunctionOrMethod()) {
Douglas Gregor54888652009-10-07 00:13:32 +00006190 S.Diag(Loc, diag::err_template_spec_decl_function_scope)
Douglas Gregorba8e1ac2009-10-14 23:50:59 +00006191 << Specialized;
Douglas Gregorf47b9112009-02-25 22:02:03 +00006192 return true;
6193 }
Douglas Gregore4b05162009-10-07 17:21:34 +00006194
Douglas Gregor40fb7442009-10-07 17:30:37 +00006195 if (S.CurContext->isRecord() && !IsPartialSpecialization) {
David Blaikiebbafb8a2012-03-11 07:00:24 +00006196 if (S.getLangOpts().MicrosoftExt) {
Francois Pichet00c7e6c2011-08-14 03:52:19 +00006197 // Do not warn for class scope explicit specialization during
6198 // instantiation, warning was already emitted during pattern
6199 // semantic analysis.
6200 if (!S.ActiveTemplateInstantiations.size())
6201 S.Diag(Loc, diag::ext_function_specialization_in_class)
6202 << Specialized;
6203 } else {
6204 S.Diag(Loc, diag::err_template_spec_decl_class_scope)
6205 << Specialized;
6206 return true;
6207 }
Douglas Gregor40fb7442009-10-07 17:30:37 +00006208 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006209
Douglas Gregor44e5a0a2011-10-20 16:41:18 +00006210 if (S.CurContext->isRecord() &&
6211 !S.CurContext->Equals(Specialized->getDeclContext())) {
6212 // Make sure that we're specializing in the right record context.
6213 // Otherwise, things can go horribly wrong.
6214 S.Diag(Loc, diag::err_template_spec_decl_class_scope)
6215 << Specialized;
6216 return true;
6217 }
Simon Pilgrim6905d222016-12-30 22:55:33 +00006218
Douglas Gregore4b05162009-10-07 17:21:34 +00006219 // C++ [temp.class.spec]p6:
6220 // A class template partial specialization may be declared or redeclared
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006221 // in any namespace scope in which its definition may be defined (14.5.1
6222 // and 14.5.2).
Richard Smitha98f8fc2013-12-07 05:09:50 +00006223 DeclContext *SpecializedContext
Douglas Gregor54888652009-10-07 00:13:32 +00006224 = Specialized->getDeclContext()->getEnclosingNamespaceContext();
Douglas Gregore4b05162009-10-07 17:21:34 +00006225 DeclContext *DC = S.CurContext->getEnclosingNamespaceContext();
Richard Smitha98f8fc2013-12-07 05:09:50 +00006226
6227 // Make sure that this redeclaration (or definition) occurs in an enclosing
6228 // namespace.
6229 // Note that HandleDeclarator() performs this check for explicit
6230 // specializations of function templates, static data members, and member
6231 // functions, so we skip the check here for those kinds of entities.
6232 // FIXME: HandleDeclarator's diagnostics aren't quite as good, though.
6233 // Should we refactor that check, so that it occurs later?
6234 if (!DC->Encloses(SpecializedContext) &&
6235 !(isa<FunctionTemplateDecl>(Specialized) ||
6236 isa<FunctionDecl>(Specialized) ||
6237 isa<VarTemplateDecl>(Specialized) ||
6238 isa<VarDecl>(Specialized))) {
6239 if (isa<TranslationUnitDecl>(SpecializedContext))
6240 S.Diag(Loc, diag::err_template_spec_redecl_global_scope)
6241 << EntityKind << Specialized;
Alexey Bataev0068cb22015-03-20 07:21:46 +00006242 else if (isa<NamespaceDecl>(SpecializedContext)) {
6243 int Diag = diag::err_template_spec_redecl_out_of_scope;
6244 if (S.getLangOpts().MicrosoftExt)
6245 Diag = diag::ext_ms_template_spec_redecl_out_of_scope;
6246 S.Diag(Loc, Diag) << EntityKind << Specialized
6247 << cast<NamedDecl>(SpecializedContext);
6248 } else
Richard Smitha98f8fc2013-12-07 05:09:50 +00006249 llvm_unreachable("unexpected namespace context for specialization");
6250
6251 S.Diag(Specialized->getLocation(), diag::note_specialized_entity);
6252 } else if ((!PrevDecl ||
6253 getTemplateSpecializationKind(PrevDecl) == TSK_Undeclared ||
6254 getTemplateSpecializationKind(PrevDecl) ==
6255 TSK_ImplicitInstantiation)) {
Douglas Gregorb1aab432010-09-12 05:08:28 +00006256 // C++ [temp.exp.spec]p2:
6257 // An explicit specialization shall be declared in the namespace of which
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006258 // the template is a member, or, for member templates, in the namespace
Douglas Gregorb1aab432010-09-12 05:08:28 +00006259 // of which the enclosing class or enclosing class template is a member.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006260 // An explicit specialization of a member function, member class or
6261 // static data member of a class template shall be declared in the
Douglas Gregorb1aab432010-09-12 05:08:28 +00006262 // namespace of which the class template is a member.
6263 //
Richard Smitha98f8fc2013-12-07 05:09:50 +00006264 // C++11 [temp.expl.spec]p2:
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006265 // An explicit specialization shall be declared in a namespace enclosing
Douglas Gregorb1aab432010-09-12 05:08:28 +00006266 // the specialized template.
Richard Smitha98f8fc2013-12-07 05:09:50 +00006267 // C++11 [temp.explicit]p3:
6268 // An explicit instantiation shall appear in an enclosing namespace of its
6269 // template.
Richard Smith0bf8a4922011-10-18 20:49:44 +00006270 if (!DC->InEnclosingNamespaceSetOf(SpecializedContext)) {
Richard Smith2bf7fdb2013-01-02 11:42:31 +00006271 bool IsCPlusPlus11Extension = DC->Encloses(SpecializedContext);
Richard Smith0bf8a4922011-10-18 20:49:44 +00006272 if (isa<TranslationUnitDecl>(SpecializedContext)) {
Richard Smith2bf7fdb2013-01-02 11:42:31 +00006273 assert(!IsCPlusPlus11Extension &&
Richard Smith0bf8a4922011-10-18 20:49:44 +00006274 "DC encloses TU but isn't in enclosing namespace set");
6275 S.Diag(Loc, diag::err_template_spec_decl_out_of_scope_global)
Douglas Gregor8ce63152010-09-12 05:24:55 +00006276 << EntityKind << Specialized;
Richard Smith0bf8a4922011-10-18 20:49:44 +00006277 } else if (isa<NamespaceDecl>(SpecializedContext)) {
6278 int Diag;
Richard Smith2bf7fdb2013-01-02 11:42:31 +00006279 if (!IsCPlusPlus11Extension)
Richard Smith0bf8a4922011-10-18 20:49:44 +00006280 Diag = diag::err_template_spec_decl_out_of_scope;
Richard Smith2bf7fdb2013-01-02 11:42:31 +00006281 else if (!S.getLangOpts().CPlusPlus11)
Richard Smith0bf8a4922011-10-18 20:49:44 +00006282 Diag = diag::ext_template_spec_decl_out_of_scope;
6283 else
6284 Diag = diag::warn_cxx98_compat_template_spec_decl_out_of_scope;
6285 S.Diag(Loc, Diag)
6286 << EntityKind << Specialized << cast<NamedDecl>(SpecializedContext);
6287 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006288
Douglas Gregorba8e1ac2009-10-14 23:50:59 +00006289 S.Diag(Specialized->getLocation(), diag::note_specialized_entity);
Douglas Gregorf47b9112009-02-25 22:02:03 +00006290 }
Douglas Gregorf47b9112009-02-25 22:02:03 +00006291 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006292
Douglas Gregorf47b9112009-02-25 22:02:03 +00006293 return false;
6294}
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006295
Richard Smith57aae072016-12-28 02:37:25 +00006296static SourceRange findTemplateParameterInType(unsigned Depth, Expr *E) {
6297 if (!E->isTypeDependent())
Richard Smith6056d5e2014-02-09 00:54:43 +00006298 return SourceLocation();
Richard Smith57aae072016-12-28 02:37:25 +00006299 DependencyChecker Checker(Depth, /*IgnoreNonTypeDependent*/true);
Richard Smith6056d5e2014-02-09 00:54:43 +00006300 Checker.TraverseStmt(E);
Richard Smith57aae072016-12-28 02:37:25 +00006301 if (Checker.MatchLoc.isInvalid())
Richard Smith6056d5e2014-02-09 00:54:43 +00006302 return E->getSourceRange();
6303 return Checker.MatchLoc;
6304}
6305
6306static SourceRange findTemplateParameter(unsigned Depth, TypeLoc TL) {
6307 if (!TL.getType()->isDependentType())
6308 return SourceLocation();
Richard Smith57aae072016-12-28 02:37:25 +00006309 DependencyChecker Checker(Depth, /*IgnoreNonTypeDependent*/true);
Richard Smith6056d5e2014-02-09 00:54:43 +00006310 Checker.TraverseTypeLoc(TL);
Richard Smith57aae072016-12-28 02:37:25 +00006311 if (Checker.MatchLoc.isInvalid())
Richard Smith6056d5e2014-02-09 00:54:43 +00006312 return TL.getSourceRange();
6313 return Checker.MatchLoc;
6314}
6315
Larisse Voufo39a1e502013-08-06 01:03:05 +00006316/// \brief Subroutine of Sema::CheckTemplatePartialSpecializationArgs
Douglas Gregor875b6fe2011-01-03 21:13:47 +00006317/// that checks non-type template partial specialization arguments.
Larisse Voufo39a1e502013-08-06 01:03:05 +00006318static bool CheckNonTypeTemplatePartialSpecializationArgs(
Richard Smith6056d5e2014-02-09 00:54:43 +00006319 Sema &S, SourceLocation TemplateNameLoc, NonTypeTemplateParmDecl *Param,
6320 const TemplateArgument *Args, unsigned NumArgs, bool IsDefaultArgument) {
Douglas Gregor875b6fe2011-01-03 21:13:47 +00006321 for (unsigned I = 0; I != NumArgs; ++I) {
6322 if (Args[I].getKind() == TemplateArgument::Pack) {
Larisse Voufo39a1e502013-08-06 01:03:05 +00006323 if (CheckNonTypeTemplatePartialSpecializationArgs(
Richard Smith6056d5e2014-02-09 00:54:43 +00006324 S, TemplateNameLoc, Param, Args[I].pack_begin(),
6325 Args[I].pack_size(), IsDefaultArgument))
Douglas Gregor875b6fe2011-01-03 21:13:47 +00006326 return true;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006327
Douglas Gregor8cfd2ba2009-06-12 21:21:02 +00006328 continue;
Douglas Gregor875b6fe2011-01-03 21:13:47 +00006329 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006330
Eli Friedmanb826a002012-09-26 02:36:12 +00006331 if (Args[I].getKind() != TemplateArgument::Expression)
Douglas Gregor8cfd2ba2009-06-12 21:21:02 +00006332 continue;
Eli Friedmanb826a002012-09-26 02:36:12 +00006333
6334 Expr *ArgExpr = Args[I].getAsExpr();
Douglas Gregor8cfd2ba2009-06-12 21:21:02 +00006335
Douglas Gregor98318c22011-01-03 21:37:45 +00006336 // We can have a pack expansion of any of the bullets below.
Douglas Gregor875b6fe2011-01-03 21:13:47 +00006337 if (PackExpansionExpr *Expansion = dyn_cast<PackExpansionExpr>(ArgExpr))
6338 ArgExpr = Expansion->getPattern();
Douglas Gregorca4686d2011-01-04 23:35:54 +00006339
6340 // Strip off any implicit casts we added as part of type checking.
6341 while (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(ArgExpr))
6342 ArgExpr = ICE->getSubExpr();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006343
Douglas Gregor8cfd2ba2009-06-12 21:21:02 +00006344 // C++ [temp.class.spec]p8:
6345 // A non-type argument is non-specialized if it is the name of a
6346 // non-type parameter. All other non-type arguments are
6347 // specialized.
6348 //
6349 // Below, we check the two conditions that only apply to
6350 // specialized non-type arguments, so skip any non-specialized
6351 // arguments.
6352 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(ArgExpr))
Douglas Gregorca4686d2011-01-04 23:35:54 +00006353 if (isa<NonTypeTemplateParmDecl>(DRE->getDecl()))
Douglas Gregor8cfd2ba2009-06-12 21:21:02 +00006354 continue;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006355
Douglas Gregor8cfd2ba2009-06-12 21:21:02 +00006356 // C++ [temp.class.spec]p9:
6357 // Within the argument list of a class template partial
6358 // specialization, the following restrictions apply:
6359 // -- A partially specialized non-type argument expression
6360 // shall not involve a template parameter of the partial
6361 // specialization except when the argument expression is a
6362 // simple identifier.
Richard Smith57aae072016-12-28 02:37:25 +00006363 // -- The type of a template parameter corresponding to a
6364 // specialized non-type argument shall not be dependent on a
6365 // parameter of the specialization.
6366 // DR1315 removes the first bullet, leaving an incoherent set of rules.
6367 // We implement a compromise between the original rules and DR1315:
6368 // -- A specialized non-type template argument shall not be
6369 // type-dependent and the corresponding template parameter
6370 // shall have a non-dependent type.
Richard Smith6056d5e2014-02-09 00:54:43 +00006371 SourceRange ParamUseRange =
Richard Smith57aae072016-12-28 02:37:25 +00006372 findTemplateParameterInType(Param->getDepth(), ArgExpr);
Richard Smith6056d5e2014-02-09 00:54:43 +00006373 if (ParamUseRange.isValid()) {
6374 if (IsDefaultArgument) {
6375 S.Diag(TemplateNameLoc,
6376 diag::err_dependent_non_type_arg_in_partial_spec);
6377 S.Diag(ParamUseRange.getBegin(),
6378 diag::note_dependent_non_type_default_arg_in_partial_spec)
6379 << ParamUseRange;
6380 } else {
6381 S.Diag(ParamUseRange.getBegin(),
6382 diag::err_dependent_non_type_arg_in_partial_spec)
6383 << ParamUseRange;
6384 }
Douglas Gregor8cfd2ba2009-06-12 21:21:02 +00006385 return true;
6386 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006387
Richard Smith6056d5e2014-02-09 00:54:43 +00006388 ParamUseRange = findTemplateParameter(
Richard Smith57aae072016-12-28 02:37:25 +00006389 Param->getDepth(), Param->getTypeSourceInfo()->getTypeLoc());
Richard Smith6056d5e2014-02-09 00:54:43 +00006390 if (ParamUseRange.isValid()) {
6391 S.Diag(IsDefaultArgument ? TemplateNameLoc : ArgExpr->getLocStart(),
6392 diag::err_dependent_typed_non_type_arg_in_partial_spec)
Richard Smith57aae072016-12-28 02:37:25 +00006393 << Param->getType();
Richard Smith6056d5e2014-02-09 00:54:43 +00006394 S.Diag(Param->getLocation(), diag::note_template_param_here)
Richard Smith57aae072016-12-28 02:37:25 +00006395 << (IsDefaultArgument ? ParamUseRange : SourceRange())
6396 << ParamUseRange;
Douglas Gregor8cfd2ba2009-06-12 21:21:02 +00006397 return true;
6398 }
6399 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006400
Douglas Gregor875b6fe2011-01-03 21:13:47 +00006401 return false;
6402}
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006403
Douglas Gregor875b6fe2011-01-03 21:13:47 +00006404/// \brief Check the non-type template arguments of a class template
6405/// partial specialization according to C++ [temp.class.spec]p9.
6406///
Richard Smith6056d5e2014-02-09 00:54:43 +00006407/// \param TemplateNameLoc the location of the template name.
Simon Pilgrim6905d222016-12-30 22:55:33 +00006408/// \param PrimaryTemplate the template parameters of the primary class
Richard Smith6056d5e2014-02-09 00:54:43 +00006409/// template.
6410/// \param NumExplicit the number of explicitly-specified template arguments.
James Dennett634962f2012-06-14 21:40:34 +00006411/// \param TemplateArgs the template arguments of the class template
Richard Smith6056d5e2014-02-09 00:54:43 +00006412/// partial specialization.
Douglas Gregor875b6fe2011-01-03 21:13:47 +00006413///
Richard Smith6056d5e2014-02-09 00:54:43 +00006414/// \returns \c true if there was an error, \c false otherwise.
Richard Smith57aae072016-12-28 02:37:25 +00006415bool Sema::CheckTemplatePartialSpecializationArgs(
6416 SourceLocation TemplateNameLoc, TemplateDecl *PrimaryTemplate,
6417 unsigned NumExplicit, ArrayRef<TemplateArgument> TemplateArgs) {
6418 // We have to be conservative when checking a template in a dependent
6419 // context.
6420 if (PrimaryTemplate->getDeclContext()->isDependentContext())
6421 return false;
Douglas Gregor875b6fe2011-01-03 21:13:47 +00006422
Richard Smith57aae072016-12-28 02:37:25 +00006423 TemplateParameterList *TemplateParams =
6424 PrimaryTemplate->getTemplateParameters();
Douglas Gregor875b6fe2011-01-03 21:13:47 +00006425 for (unsigned I = 0, N = TemplateParams->size(); I != N; ++I) {
6426 NonTypeTemplateParmDecl *Param
6427 = dyn_cast<NonTypeTemplateParmDecl>(TemplateParams->getParam(I));
6428 if (!Param)
6429 continue;
6430
Richard Smith57aae072016-12-28 02:37:25 +00006431 if (CheckNonTypeTemplatePartialSpecializationArgs(*this, TemplateNameLoc,
6432 Param, &TemplateArgs[I],
6433 1, I >= NumExplicit))
Douglas Gregor875b6fe2011-01-03 21:13:47 +00006434 return true;
6435 }
Douglas Gregor8cfd2ba2009-06-12 21:21:02 +00006436
6437 return false;
6438}
6439
John McCall48871652010-08-21 09:40:31 +00006440DeclResult
John McCall9bb74a52009-07-31 02:45:11 +00006441Sema::ActOnClassTemplateSpecialization(Scope *S, unsigned TagSpec,
6442 TagUseKind TUK,
Mike Stump11289f42009-09-09 15:08:12 +00006443 SourceLocation KWLoc,
Douglas Gregor3c7cd6a2011-09-09 20:53:38 +00006444 SourceLocation ModulePrivateLoc,
Richard Smith4b55a9c2014-04-17 03:29:33 +00006445 TemplateIdAnnotation &TemplateId,
Douglas Gregor67a65642009-02-17 23:15:12 +00006446 AttributeList *Attr,
Richard Smithc7e6ff02015-05-18 20:36:47 +00006447 MultiTemplateParamsArg
6448 TemplateParameterLists,
6449 SkipBodyInfo *SkipBody) {
Douglas Gregor2208a292009-09-26 20:57:03 +00006450 assert(TUK != TUK_Reference && "References are not specializations");
John McCall06f6fe8d2009-09-04 01:14:41 +00006451
Richard Smith4b55a9c2014-04-17 03:29:33 +00006452 CXXScopeSpec &SS = TemplateId.SS;
6453
Abramo Bagnara60804e12011-03-18 15:16:37 +00006454 // NOTE: KWLoc is the location of the tag keyword. This will instead
6455 // store the location of the outermost template keyword in the declaration.
6456 SourceLocation TemplateKWLoc = TemplateParameterLists.size() > 0
Richard Smith4b55a9c2014-04-17 03:29:33 +00006457 ? TemplateParameterLists[0]->getTemplateLoc() : KWLoc;
6458 SourceLocation TemplateNameLoc = TemplateId.TemplateNameLoc;
6459 SourceLocation LAngleLoc = TemplateId.LAngleLoc;
6460 SourceLocation RAngleLoc = TemplateId.RAngleLoc;
Abramo Bagnara60804e12011-03-18 15:16:37 +00006461
Douglas Gregor67a65642009-02-17 23:15:12 +00006462 // Find the class template we're specializing
Richard Smith4b55a9c2014-04-17 03:29:33 +00006463 TemplateName Name = TemplateId.Template.get();
Mike Stump11289f42009-09-09 15:08:12 +00006464 ClassTemplateDecl *ClassTemplate
Douglas Gregordd6c0352009-11-12 00:46:20 +00006465 = dyn_cast_or_null<ClassTemplateDecl>(Name.getAsTemplateDecl());
6466
6467 if (!ClassTemplate) {
6468 Diag(TemplateNameLoc, diag::err_not_class_template_specialization)
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006469 << (Name.getAsTemplateDecl() &&
Douglas Gregordd6c0352009-11-12 00:46:20 +00006470 isa<TemplateTemplateParmDecl>(Name.getAsTemplateDecl()));
6471 return true;
6472 }
Douglas Gregor67a65642009-02-17 23:15:12 +00006473
Douglas Gregor5c0405d2009-10-07 22:35:40 +00006474 bool isExplicitSpecialization = false;
Douglas Gregor2373c592009-05-31 09:31:02 +00006475 bool isPartialSpecialization = false;
6476
Douglas Gregorf47b9112009-02-25 22:02:03 +00006477 // Check the validity of the template headers that introduce this
6478 // template.
Douglas Gregor2208a292009-09-26 20:57:03 +00006479 // FIXME: We probably shouldn't complain about these headers for
6480 // friend declarations.
Douglas Gregor5f0e2522010-07-14 23:14:12 +00006481 bool Invalid = false;
Robert Wilhelmf2d2e8f2013-07-21 15:20:44 +00006482 TemplateParameterList *TemplateParams =
6483 MatchTemplateParametersToScopeSpecifier(
Richard Smith4b55a9c2014-04-17 03:29:33 +00006484 KWLoc, TemplateNameLoc, SS, &TemplateId,
6485 TemplateParameterLists, TUK == TUK_Friend, isExplicitSpecialization,
6486 Invalid);
Douglas Gregor5f0e2522010-07-14 23:14:12 +00006487 if (Invalid)
6488 return true;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006489
Douglas Gregor1d5e9f92009-08-25 17:23:04 +00006490 if (TemplateParams && TemplateParams->size() > 0) {
6491 isPartialSpecialization = true;
Douglas Gregorf47b9112009-02-25 22:02:03 +00006492
Douglas Gregorec9518b2010-12-21 08:14:57 +00006493 if (TUK == TUK_Friend) {
6494 Diag(KWLoc, diag::err_partial_specialization_friend)
6495 << SourceRange(LAngleLoc, RAngleLoc);
6496 return true;
6497 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006498
Douglas Gregor1d5e9f92009-08-25 17:23:04 +00006499 // C++ [temp.class.spec]p10:
6500 // The template parameter list of a specialization shall not
6501 // contain default template argument values.
6502 for (unsigned I = 0, N = TemplateParams->size(); I != N; ++I) {
6503 Decl *Param = TemplateParams->getParam(I);
6504 if (TemplateTypeParmDecl *TTP = dyn_cast<TemplateTypeParmDecl>(Param)) {
6505 if (TTP->hasDefaultArgument()) {
Mike Stump11289f42009-09-09 15:08:12 +00006506 Diag(TTP->getDefaultArgumentLoc(),
Douglas Gregor1d5e9f92009-08-25 17:23:04 +00006507 diag::err_default_arg_in_partial_spec);
John McCall0ad16662009-10-29 08:12:44 +00006508 TTP->removeDefaultArgument();
Douglas Gregor1d5e9f92009-08-25 17:23:04 +00006509 }
6510 } else if (NonTypeTemplateParmDecl *NTTP
6511 = dyn_cast<NonTypeTemplateParmDecl>(Param)) {
6512 if (Expr *DefArg = NTTP->getDefaultArgument()) {
Mike Stump11289f42009-09-09 15:08:12 +00006513 Diag(NTTP->getDefaultArgumentLoc(),
Douglas Gregor1d5e9f92009-08-25 17:23:04 +00006514 diag::err_default_arg_in_partial_spec)
6515 << DefArg->getSourceRange();
Abramo Bagnara656e3002010-06-09 09:26:05 +00006516 NTTP->removeDefaultArgument();
Douglas Gregor1d5e9f92009-08-25 17:23:04 +00006517 }
6518 } else {
6519 TemplateTemplateParmDecl *TTP = cast<TemplateTemplateParmDecl>(Param);
Douglas Gregor9167f8b2009-11-11 01:00:40 +00006520 if (TTP->hasDefaultArgument()) {
6521 Diag(TTP->getDefaultArgument().getLocation(),
Douglas Gregor1d5e9f92009-08-25 17:23:04 +00006522 diag::err_default_arg_in_partial_spec)
Douglas Gregor9167f8b2009-11-11 01:00:40 +00006523 << TTP->getDefaultArgument().getSourceRange();
Abramo Bagnara656e3002010-06-09 09:26:05 +00006524 TTP->removeDefaultArgument();
Douglas Gregord5222052009-06-12 19:43:02 +00006525 }
6526 }
6527 }
Douglas Gregor3a88c1d2009-10-13 14:39:41 +00006528 } else if (TemplateParams) {
6529 if (TUK == TUK_Friend)
6530 Diag(KWLoc, diag::err_template_spec_friend)
Douglas Gregora771f462010-03-31 17:46:05 +00006531 << FixItHint::CreateRemoval(
Douglas Gregor3a88c1d2009-10-13 14:39:41 +00006532 SourceRange(TemplateParams->getTemplateLoc(),
6533 TemplateParams->getRAngleLoc()))
6534 << SourceRange(LAngleLoc, RAngleLoc);
6535 else
6536 isExplicitSpecialization = true;
Richard Smith4b55a9c2014-04-17 03:29:33 +00006537 } else {
6538 assert(TUK == TUK_Friend && "should have a 'template<>' for this decl");
Douglas Gregor5c0405d2009-10-07 22:35:40 +00006539 }
Douglas Gregorf47b9112009-02-25 22:02:03 +00006540
Douglas Gregor67a65642009-02-17 23:15:12 +00006541 // Check that the specialization uses the same tag kind as the
6542 // original template.
Abramo Bagnara6150c882010-05-11 21:36:43 +00006543 TagTypeKind Kind = TypeWithKeyword::getTagTypeKindForTypeSpec(TagSpec);
6544 assert(Kind != TTK_Enum && "Invalid enum tag in class template spec!");
Douglas Gregord9034f02009-05-14 16:41:31 +00006545 if (!isAcceptableTagRedeclaration(ClassTemplate->getTemplatedDecl(),
Richard Trieucaa33d32011-06-10 03:11:26 +00006546 Kind, TUK == TUK_Definition, KWLoc,
Justin Bognerc6ecb7c2015-07-10 23:05:47 +00006547 ClassTemplate->getIdentifier())) {
Mike Stump11289f42009-09-09 15:08:12 +00006548 Diag(KWLoc, diag::err_use_with_wrong_tag)
Douglas Gregor170512f2009-04-01 23:51:29 +00006549 << ClassTemplate
Douglas Gregora771f462010-03-31 17:46:05 +00006550 << FixItHint::CreateReplacement(KWLoc,
Douglas Gregor170512f2009-04-01 23:51:29 +00006551 ClassTemplate->getTemplatedDecl()->getKindName());
Mike Stump11289f42009-09-09 15:08:12 +00006552 Diag(ClassTemplate->getTemplatedDecl()->getLocation(),
Douglas Gregor67a65642009-02-17 23:15:12 +00006553 diag::note_previous_use);
6554 Kind = ClassTemplate->getTemplatedDecl()->getTagKind();
6555 }
6556
Douglas Gregorc40290e2009-03-09 23:48:35 +00006557 // Translate the parser's template argument list in our AST format.
Richard Smith4b55a9c2014-04-17 03:29:33 +00006558 TemplateArgumentListInfo TemplateArgs =
6559 makeTemplateArgumentListInfo(*this, TemplateId);
Douglas Gregorc40290e2009-03-09 23:48:35 +00006560
Douglas Gregor14406932011-01-03 20:35:03 +00006561 // Check for unexpanded parameter packs in any of the template arguments.
6562 for (unsigned I = 0, N = TemplateArgs.size(); I != N; ++I)
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006563 if (DiagnoseUnexpandedParameterPack(TemplateArgs[I],
Douglas Gregor14406932011-01-03 20:35:03 +00006564 UPPC_PartialSpecialization))
6565 return true;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006566
Douglas Gregor67a65642009-02-17 23:15:12 +00006567 // Check that the template argument list is well-formed for this
6568 // template.
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006569 SmallVector<TemplateArgument, 4> Converted;
John McCall6b51f282009-11-23 01:53:49 +00006570 if (CheckTemplateArgumentList(ClassTemplate, TemplateNameLoc,
6571 TemplateArgs, false, Converted))
Douglas Gregorc08f4892009-03-25 00:13:59 +00006572 return true;
Douglas Gregor67a65642009-02-17 23:15:12 +00006573
Douglas Gregor2373c592009-05-31 09:31:02 +00006574 // Find the class template (partial) specialization declaration that
Douglas Gregor67a65642009-02-17 23:15:12 +00006575 // corresponds to these arguments.
Douglas Gregord5222052009-06-12 19:43:02 +00006576 if (isPartialSpecialization) {
Richard Smith57aae072016-12-28 02:37:25 +00006577 if (CheckTemplatePartialSpecializationArgs(TemplateNameLoc, ClassTemplate,
6578 TemplateArgs.size(), Converted))
Douglas Gregor8cfd2ba2009-06-12 21:21:02 +00006579 return true;
6580
Richard Smith57aae072016-12-28 02:37:25 +00006581 // FIXME: Move this to CheckTemplatePartialSpecializationArgs so we
6582 // also do it during instantiation.
Douglas Gregor678d76c2011-07-01 01:22:09 +00006583 bool InstantiationDependent;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006584 if (!Name.isDependent() &&
Douglas Gregor92354b62010-02-09 00:37:32 +00006585 !TemplateSpecializationType::anyDependentTemplateArguments(
David Majnemer6fbeee32016-07-07 04:43:07 +00006586 TemplateArgs.arguments(), InstantiationDependent)) {
Douglas Gregor92354b62010-02-09 00:37:32 +00006587 Diag(TemplateNameLoc, diag::err_partial_spec_fully_specialized)
6588 << ClassTemplate->getDeclName();
6589 isPartialSpecialization = false;
Douglas Gregor92354b62010-02-09 00:37:32 +00006590 }
6591 }
Argyrios Kyrtzidis47470f22010-07-20 13:59:28 +00006592
Craig Topperc3ec1492014-05-26 06:22:03 +00006593 void *InsertPos = nullptr;
6594 ClassTemplateSpecializationDecl *PrevDecl = nullptr;
Douglas Gregor2373c592009-05-31 09:31:02 +00006595
6596 if (isPartialSpecialization)
Argyrios Kyrtzidis47470f22010-07-20 13:59:28 +00006597 // FIXME: Template parameter list matters, too
Craig Topper7e0daca2014-06-26 04:58:53 +00006598 PrevDecl = ClassTemplate->findPartialSpecialization(Converted, InsertPos);
Douglas Gregor2373c592009-05-31 09:31:02 +00006599 else
Craig Topper7e0daca2014-06-26 04:58:53 +00006600 PrevDecl = ClassTemplate->findSpecialization(Converted, InsertPos);
Douglas Gregor67a65642009-02-17 23:15:12 +00006601
Craig Topperc3ec1492014-05-26 06:22:03 +00006602 ClassTemplateSpecializationDecl *Specialization = nullptr;
Douglas Gregor67a65642009-02-17 23:15:12 +00006603
Douglas Gregorf47b9112009-02-25 22:02:03 +00006604 // Check whether we can declare a class template specialization in
6605 // the current scope.
Douglas Gregor2208a292009-09-26 20:57:03 +00006606 if (TUK != TUK_Friend &&
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006607 CheckTemplateSpecializationScope(*this, ClassTemplate, PrevDecl,
6608 TemplateNameLoc,
Douglas Gregorba8e1ac2009-10-14 23:50:59 +00006609 isPartialSpecialization))
Douglas Gregorc08f4892009-03-25 00:13:59 +00006610 return true;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006611
Douglas Gregor15301382009-07-30 17:40:51 +00006612 // The canonical type
6613 QualType CanonType;
Richard Smith871cd4c2014-05-23 21:00:28 +00006614 if (isPartialSpecialization) {
Douglas Gregor15301382009-07-30 17:40:51 +00006615 // Build the canonical type that describes the converted template
6616 // arguments of the class template partial specialization.
Douglas Gregor92354b62010-02-09 00:37:32 +00006617 TemplateName CanonTemplate = Context.getCanonicalTemplateName(Name);
6618 CanonType = Context.getTemplateSpecializationType(CanonTemplate,
David Majnemer6fbeee32016-07-07 04:43:07 +00006619 Converted);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006620
6621 if (Context.hasSameType(CanonType,
Douglas Gregordd7ec4632010-12-23 17:13:55 +00006622 ClassTemplate->getInjectedClassNameSpecialization())) {
6623 // C++ [temp.class.spec]p9b3:
6624 //
6625 // -- The argument list of the specialization shall not be identical
6626 // to the implicit argument list of the primary template.
Richard Smith0e617ec2016-12-27 07:56:27 +00006627 //
6628 // This rule has since been removed, because it's redundant given DR1495,
6629 // but we keep it because it produces better diagnostics and recovery.
Douglas Gregordd7ec4632010-12-23 17:13:55 +00006630 Diag(TemplateNameLoc, diag::err_partial_spec_args_match_primary_template)
Richard Smith300e0c32013-09-24 04:49:23 +00006631 << /*class template*/0 << (TUK == TUK_Definition)
Douglas Gregor26701a42011-09-09 02:06:17 +00006632 << FixItHint::CreateRemoval(SourceRange(LAngleLoc, RAngleLoc));
Douglas Gregordd7ec4632010-12-23 17:13:55 +00006633 return CheckClassTemplate(S, TagSpec, TUK, KWLoc, SS,
6634 ClassTemplate->getIdentifier(),
6635 TemplateNameLoc,
6636 Attr,
6637 TemplateParams,
Douglas Gregor2820e692011-09-09 19:05:14 +00006638 AS_none, /*ModulePrivateLoc=*/SourceLocation(),
Nikola Smiljanic4fc91532014-07-17 01:59:34 +00006639 /*FriendLoc*/SourceLocation(),
Abramo Bagnara60804e12011-03-18 15:16:37 +00006640 TemplateParameterLists.size() - 1,
Benjamin Kramercc4c49d2012-08-23 23:38:35 +00006641 TemplateParameterLists.data());
Douglas Gregordd7ec4632010-12-23 17:13:55 +00006642 }
Douglas Gregor15301382009-07-30 17:40:51 +00006643
Douglas Gregor2373c592009-05-31 09:31:02 +00006644 // Create a new class template partial specialization declaration node.
Douglas Gregor2373c592009-05-31 09:31:02 +00006645 ClassTemplatePartialSpecializationDecl *PrevPartial
6646 = cast_or_null<ClassTemplatePartialSpecializationDecl>(PrevDecl);
Mike Stump11289f42009-09-09 15:08:12 +00006647 ClassTemplatePartialSpecializationDecl *Partial
Douglas Gregore9029562010-05-06 00:28:52 +00006648 = ClassTemplatePartialSpecializationDecl::Create(Context, Kind,
Douglas Gregor2373c592009-05-31 09:31:02 +00006649 ClassTemplate->getDeclContext(),
Abramo Bagnara29c2d462011-03-09 14:09:51 +00006650 KWLoc, TemplateNameLoc,
Anders Carlsson1b28c3e2009-06-05 04:06:48 +00006651 TemplateParams,
6652 ClassTemplate,
David Majnemer8b622692016-07-03 21:17:51 +00006653 Converted,
John McCall6b51f282009-11-23 01:53:49 +00006654 TemplateArgs,
John McCalle78aac42010-03-10 03:28:59 +00006655 CanonType,
Richard Smithb2f61b42013-08-22 23:27:37 +00006656 PrevPartial);
John McCall3e11ebe2010-03-15 10:12:16 +00006657 SetNestedNameSpecifier(Partial, SS);
Abramo Bagnara60804e12011-03-18 15:16:37 +00006658 if (TemplateParameterLists.size() > 1 && SS.isSet()) {
Benjamin Kramer9cc210652015-08-05 09:40:49 +00006659 Partial->setTemplateParameterListsInfo(
6660 Context, TemplateParameterLists.drop_back(1));
Abramo Bagnarada41d0c2010-06-12 08:15:14 +00006661 }
Douglas Gregor2373c592009-05-31 09:31:02 +00006662
Argyrios Kyrtzidis47470f22010-07-20 13:59:28 +00006663 if (!PrevPartial)
6664 ClassTemplate->AddPartialSpecialization(Partial, InsertPos);
Douglas Gregor2373c592009-05-31 09:31:02 +00006665 Specialization = Partial;
Douglas Gregor91772d12009-06-13 00:26:55 +00006666
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006667 // If we are providing an explicit specialization of a member class
Douglas Gregor21610382009-10-29 00:04:11 +00006668 // template specialization, make a note of that.
6669 if (PrevPartial && PrevPartial->getInstantiatedFromMember())
6670 PrevPartial->setMemberSpecialization();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006671
Richard Smith57aae072016-12-28 02:37:25 +00006672 CheckTemplatePartialSpecialization(Partial);
Douglas Gregor67a65642009-02-17 23:15:12 +00006673 } else {
6674 // Create a new class template specialization declaration node for
Douglas Gregor2208a292009-09-26 20:57:03 +00006675 // this explicit specialization or friend declaration.
Douglas Gregor67a65642009-02-17 23:15:12 +00006676 Specialization
Douglas Gregore9029562010-05-06 00:28:52 +00006677 = ClassTemplateSpecializationDecl::Create(Context, Kind,
Douglas Gregor67a65642009-02-17 23:15:12 +00006678 ClassTemplate->getDeclContext(),
Abramo Bagnara29c2d462011-03-09 14:09:51 +00006679 KWLoc, TemplateNameLoc,
Mike Stump11289f42009-09-09 15:08:12 +00006680 ClassTemplate,
David Majnemer8b622692016-07-03 21:17:51 +00006681 Converted,
Douglas Gregor67a65642009-02-17 23:15:12 +00006682 PrevDecl);
John McCall3e11ebe2010-03-15 10:12:16 +00006683 SetNestedNameSpecifier(Specialization, SS);
Abramo Bagnara60804e12011-03-18 15:16:37 +00006684 if (TemplateParameterLists.size() > 0) {
Douglas Gregor20527e22010-06-15 17:44:38 +00006685 Specialization->setTemplateParameterListsInfo(Context,
Benjamin Kramer9cc210652015-08-05 09:40:49 +00006686 TemplateParameterLists);
Abramo Bagnarada41d0c2010-06-12 08:15:14 +00006687 }
Douglas Gregor67a65642009-02-17 23:15:12 +00006688
Argyrios Kyrtzidis47470f22010-07-20 13:59:28 +00006689 if (!PrevDecl)
6690 ClassTemplate->AddSpecialization(Specialization, InsertPos);
Douglas Gregor15301382009-07-30 17:40:51 +00006691
David Majnemer678f50b2015-11-18 19:49:19 +00006692 if (CurContext->isDependentContext()) {
6693 // -fms-extensions permits specialization of nested classes without
6694 // fully specializing the outer class(es).
6695 assert(getLangOpts().MicrosoftExt &&
6696 "Only possible with -fms-extensions!");
6697 TemplateName CanonTemplate = Context.getCanonicalTemplateName(Name);
6698 CanonType = Context.getTemplateSpecializationType(
David Majnemer6fbeee32016-07-07 04:43:07 +00006699 CanonTemplate, Converted);
David Majnemer678f50b2015-11-18 19:49:19 +00006700 } else {
6701 CanonType = Context.getTypeDeclType(Specialization);
6702 }
Douglas Gregor67a65642009-02-17 23:15:12 +00006703 }
6704
Douglas Gregor06db9f52009-10-12 20:18:28 +00006705 // C++ [temp.expl.spec]p6:
6706 // If a template, a member template or the member of a class template is
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006707 // explicitly specialized then that specialization shall be declared
Douglas Gregor06db9f52009-10-12 20:18:28 +00006708 // before the first use of that specialization that would cause an implicit
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006709 // instantiation to take place, in every translation unit in which such a
Douglas Gregor06db9f52009-10-12 20:18:28 +00006710 // use occurs; no diagnostic is required.
6711 if (PrevDecl && PrevDecl->getPointOfInstantiation().isValid()) {
Douglas Gregorc854c662010-02-26 06:03:23 +00006712 bool Okay = false;
Douglas Gregor0bc8a212012-01-14 15:55:47 +00006713 for (Decl *Prev = PrevDecl; Prev; Prev = Prev->getPreviousDecl()) {
Douglas Gregorc854c662010-02-26 06:03:23 +00006714 // Is there any previous explicit specialization declaration?
6715 if (getTemplateSpecializationKind(Prev) == TSK_ExplicitSpecialization) {
6716 Okay = true;
6717 break;
6718 }
6719 }
Douglas Gregor06db9f52009-10-12 20:18:28 +00006720
Douglas Gregorc854c662010-02-26 06:03:23 +00006721 if (!Okay) {
6722 SourceRange Range(TemplateNameLoc, RAngleLoc);
6723 Diag(TemplateNameLoc, diag::err_specialization_after_instantiation)
6724 << Context.getTypeDeclType(Specialization) << Range;
6725
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006726 Diag(PrevDecl->getPointOfInstantiation(),
Douglas Gregorc854c662010-02-26 06:03:23 +00006727 diag::note_instantiation_required_here)
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006728 << (PrevDecl->getTemplateSpecializationKind()
Douglas Gregor06db9f52009-10-12 20:18:28 +00006729 != TSK_ImplicitInstantiation);
Douglas Gregorc854c662010-02-26 06:03:23 +00006730 return true;
6731 }
Douglas Gregor06db9f52009-10-12 20:18:28 +00006732 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006733
Douglas Gregor2208a292009-09-26 20:57:03 +00006734 // If this is not a friend, note that this is an explicit specialization.
6735 if (TUK != TUK_Friend)
6736 Specialization->setSpecializationKind(TSK_ExplicitSpecialization);
Douglas Gregor67a65642009-02-17 23:15:12 +00006737
6738 // Check that this isn't a redefinition of this specialization.
John McCall9bb74a52009-07-31 02:45:11 +00006739 if (TUK == TUK_Definition) {
Richard Smithc7e6ff02015-05-18 20:36:47 +00006740 RecordDecl *Def = Specialization->getDefinition();
6741 NamedDecl *Hidden = nullptr;
6742 if (Def && SkipBody && !hasVisibleDefinition(Def, &Hidden)) {
6743 SkipBody->ShouldSkip = true;
6744 makeMergedDefinitionVisible(Hidden, KWLoc);
6745 // From here on out, treat this as just a redeclaration.
6746 TUK = TUK_Declaration;
6747 } else if (Def) {
Douglas Gregor67a65642009-02-17 23:15:12 +00006748 SourceRange Range(TemplateNameLoc, RAngleLoc);
Richard Smith792c22d2016-12-24 04:09:05 +00006749 Diag(TemplateNameLoc, diag::err_redefinition) << Specialization << Range;
Douglas Gregor67a65642009-02-17 23:15:12 +00006750 Diag(Def->getLocation(), diag::note_previous_definition);
6751 Specialization->setInvalidDecl();
Douglas Gregorc08f4892009-03-25 00:13:59 +00006752 return true;
Douglas Gregor67a65642009-02-17 23:15:12 +00006753 }
6754 }
6755
John McCall659a3372010-12-18 03:30:47 +00006756 if (Attr)
6757 ProcessDeclAttributeList(S, Specialization, Attr);
6758
Richard Smith034b94a2012-08-17 03:20:55 +00006759 // Add alignment attributes if necessary; these attributes are checked when
6760 // the ASTContext lays out the structure.
6761 if (TUK == TUK_Definition) {
6762 AddAlignmentAttributesForRecord(Specialization);
6763 AddMsStructLayoutForRecord(Specialization);
6764 }
6765
Douglas Gregor3c7cd6a2011-09-09 20:53:38 +00006766 if (ModulePrivateLoc.isValid())
6767 Diag(Specialization->getLocation(), diag::err_module_private_specialization)
6768 << (isPartialSpecialization? 1 : 0)
6769 << FixItHint::CreateRemoval(ModulePrivateLoc);
Simon Pilgrim6905d222016-12-30 22:55:33 +00006770
Douglas Gregord56a91e2009-02-26 22:19:44 +00006771 // Build the fully-sugared type for this class template
6772 // specialization as the user wrote in the specialization
6773 // itself. This means that we'll pretty-print the type retrieved
6774 // from the specialization's declaration the way that the user
6775 // actually wrote the specialization, rather than formatting the
6776 // name based on the "canonical" representation used to store the
6777 // template arguments in the specialization.
John McCalle78aac42010-03-10 03:28:59 +00006778 TypeSourceInfo *WrittenTy
6779 = Context.getTemplateSpecializationTypeInfo(Name, TemplateNameLoc,
6780 TemplateArgs, CanonType);
Abramo Bagnara8075c852010-06-12 07:44:57 +00006781 if (TUK != TUK_Friend) {
Douglas Gregor2208a292009-09-26 20:57:03 +00006782 Specialization->setTypeAsWritten(WrittenTy);
Abramo Bagnara60804e12011-03-18 15:16:37 +00006783 Specialization->setTemplateKeywordLoc(TemplateKWLoc);
Abramo Bagnara8075c852010-06-12 07:44:57 +00006784 }
Douglas Gregor67a65642009-02-17 23:15:12 +00006785
Douglas Gregor1e249f82009-02-25 22:18:32 +00006786 // C++ [temp.expl.spec]p9:
6787 // A template explicit specialization is in the scope of the
6788 // namespace in which the template was defined.
6789 //
6790 // We actually implement this paragraph where we set the semantic
6791 // context (in the creation of the ClassTemplateSpecializationDecl),
6792 // but we also maintain the lexical context where the actual
6793 // definition occurs.
Douglas Gregor67a65642009-02-17 23:15:12 +00006794 Specialization->setLexicalDeclContext(CurContext);
Mike Stump11289f42009-09-09 15:08:12 +00006795
Douglas Gregor67a65642009-02-17 23:15:12 +00006796 // We may be starting the definition of this specialization.
John McCall9bb74a52009-07-31 02:45:11 +00006797 if (TUK == TUK_Definition)
Douglas Gregor67a65642009-02-17 23:15:12 +00006798 Specialization->startDefinition();
6799
Douglas Gregor2208a292009-09-26 20:57:03 +00006800 if (TUK == TUK_Friend) {
6801 FriendDecl *Friend = FriendDecl::Create(Context, CurContext,
6802 TemplateNameLoc,
John McCall15ad0962010-03-25 18:04:51 +00006803 WrittenTy,
Douglas Gregor2208a292009-09-26 20:57:03 +00006804 /*FIXME:*/KWLoc);
6805 Friend->setAccess(AS_public);
6806 CurContext->addDecl(Friend);
6807 } else {
6808 // Add the specialization into its lexical context, so that it can
6809 // be seen when iterating through the list of declarations in that
6810 // context. However, specializations are not found by name lookup.
6811 CurContext->addDecl(Specialization);
6812 }
John McCall48871652010-08-21 09:40:31 +00006813 return Specialization;
Douglas Gregor67a65642009-02-17 23:15:12 +00006814}
Douglas Gregor333489b2009-03-27 23:10:48 +00006815
John McCall48871652010-08-21 09:40:31 +00006816Decl *Sema::ActOnTemplateDeclarator(Scope *S,
Douglas Gregorb52fabb2009-06-23 23:11:28 +00006817 MultiTemplateParamsArg TemplateParameterLists,
John McCall48871652010-08-21 09:40:31 +00006818 Declarator &D) {
Benjamin Kramer62b95d82012-08-23 21:35:17 +00006819 Decl *NewDecl = HandleDeclarator(S, D, TemplateParameterLists);
Dmitri Gribenko34df2202012-07-31 22:37:06 +00006820 ActOnDocumentableDecl(NewDecl);
6821 return NewDecl;
Douglas Gregorb52fabb2009-06-23 23:11:28 +00006822}
6823
John McCall4f7ced62010-02-11 01:33:53 +00006824/// \brief Strips various properties off an implicit instantiation
6825/// that has just been explicitly specialized.
6826static void StripImplicitInstantiation(NamedDecl *D) {
Nico Webere4974382014-12-19 23:52:45 +00006827 D->dropAttr<DLLImportAttr>();
6828 D->dropAttr<DLLExportAttr>();
John McCall4f7ced62010-02-11 01:33:53 +00006829
Nico Webere4974382014-12-19 23:52:45 +00006830 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D))
John McCall4f7ced62010-02-11 01:33:53 +00006831 FD->setInlineSpecified(false);
John McCall4f7ced62010-02-11 01:33:53 +00006832}
6833
Nico Webera8f80b32012-01-09 19:52:25 +00006834/// \brief Compute the diagnostic location for an explicit instantiation
6835// declaration or definition.
6836static SourceLocation DiagLocForExplicitInstantiation(
Douglas Gregor0bc8a212012-01-14 15:55:47 +00006837 NamedDecl* D, SourceLocation PointOfInstantiation) {
Nico Webera8f80b32012-01-09 19:52:25 +00006838 // Explicit instantiations following a specialization have no effect and
6839 // hence no PointOfInstantiation. In that case, walk decl backwards
6840 // until a valid name loc is found.
6841 SourceLocation PrevDiagLoc = PointOfInstantiation;
Douglas Gregor0bc8a212012-01-14 15:55:47 +00006842 for (Decl *Prev = D; Prev && !PrevDiagLoc.isValid();
6843 Prev = Prev->getPreviousDecl()) {
Nico Webera8f80b32012-01-09 19:52:25 +00006844 PrevDiagLoc = Prev->getLocation();
6845 }
6846 assert(PrevDiagLoc.isValid() &&
6847 "Explicit instantiation without point of instantiation?");
6848 return PrevDiagLoc;
6849}
6850
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006851/// \brief Diagnose cases where we have an explicit template specialization
Douglas Gregord6ba93d2009-10-15 15:54:05 +00006852/// before/after an explicit template instantiation, producing diagnostics
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006853/// for those cases where they are required and determining whether the
Douglas Gregord6ba93d2009-10-15 15:54:05 +00006854/// new specialization/instantiation will have any effect.
6855///
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006856/// \param NewLoc the location of the new explicit specialization or
Douglas Gregord6ba93d2009-10-15 15:54:05 +00006857/// instantiation.
6858///
6859/// \param NewTSK the kind of the new explicit specialization or instantiation.
6860///
6861/// \param PrevDecl the previous declaration of the entity.
6862///
6863/// \param PrevTSK the kind of the old explicit specialization or instantiatin.
6864///
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006865/// \param PrevPointOfInstantiation if valid, indicates where the previus
Douglas Gregord6ba93d2009-10-15 15:54:05 +00006866/// declaration was instantiated (either implicitly or explicitly).
6867///
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006868/// \param HasNoEffect will be set to true to indicate that the new
Douglas Gregord6ba93d2009-10-15 15:54:05 +00006869/// specialization or instantiation has no effect and should be ignored.
6870///
6871/// \returns true if there was an error that should prevent the introduction of
6872/// the new declaration into the AST, false otherwise.
Douglas Gregor1d957a32009-10-27 18:42:08 +00006873bool
6874Sema::CheckSpecializationInstantiationRedecl(SourceLocation NewLoc,
6875 TemplateSpecializationKind NewTSK,
6876 NamedDecl *PrevDecl,
6877 TemplateSpecializationKind PrevTSK,
6878 SourceLocation PrevPointOfInstantiation,
Abramo Bagnara8075c852010-06-12 07:44:57 +00006879 bool &HasNoEffect) {
6880 HasNoEffect = false;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006881
Douglas Gregord6ba93d2009-10-15 15:54:05 +00006882 switch (NewTSK) {
6883 case TSK_Undeclared:
6884 case TSK_ImplicitInstantiation:
David Majnemer192d1792013-11-27 08:20:38 +00006885 assert(
6886 (PrevTSK == TSK_Undeclared || PrevTSK == TSK_ImplicitInstantiation) &&
6887 "previous declaration must be implicit!");
6888 return false;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006889
Douglas Gregord6ba93d2009-10-15 15:54:05 +00006890 case TSK_ExplicitSpecialization:
6891 switch (PrevTSK) {
6892 case TSK_Undeclared:
6893 case TSK_ExplicitSpecialization:
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006894 // Okay, we're just specializing something that is either already
Douglas Gregord6ba93d2009-10-15 15:54:05 +00006895 // explicitly specialized or has merely been mentioned without any
6896 // instantiation.
6897 return false;
6898
6899 case TSK_ImplicitInstantiation:
6900 if (PrevPointOfInstantiation.isInvalid()) {
6901 // The declaration itself has not actually been instantiated, so it is
6902 // still okay to specialize it.
John McCall4f7ced62010-02-11 01:33:53 +00006903 StripImplicitInstantiation(PrevDecl);
Douglas Gregord6ba93d2009-10-15 15:54:05 +00006904 return false;
6905 }
6906 // Fall through
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006907
Douglas Gregord6ba93d2009-10-15 15:54:05 +00006908 case TSK_ExplicitInstantiationDeclaration:
6909 case TSK_ExplicitInstantiationDefinition:
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006910 assert((PrevTSK == TSK_ImplicitInstantiation ||
6911 PrevPointOfInstantiation.isValid()) &&
Douglas Gregord6ba93d2009-10-15 15:54:05 +00006912 "Explicit instantiation without point of instantiation?");
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006913
Douglas Gregord6ba93d2009-10-15 15:54:05 +00006914 // C++ [temp.expl.spec]p6:
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006915 // If a template, a member template or the member of a class template
Douglas Gregord6ba93d2009-10-15 15:54:05 +00006916 // is explicitly specialized then that specialization shall be declared
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006917 // before the first use of that specialization that would cause an
Douglas Gregord6ba93d2009-10-15 15:54:05 +00006918 // implicit instantiation to take place, in every translation unit in
6919 // which such a use occurs; no diagnostic is required.
Douglas Gregor0bc8a212012-01-14 15:55:47 +00006920 for (Decl *Prev = PrevDecl; Prev; Prev = Prev->getPreviousDecl()) {
Douglas Gregorc854c662010-02-26 06:03:23 +00006921 // Is there any previous explicit specialization declaration?
6922 if (getTemplateSpecializationKind(Prev) == TSK_ExplicitSpecialization)
6923 return false;
6924 }
6925
Douglas Gregor1d957a32009-10-27 18:42:08 +00006926 Diag(NewLoc, diag::err_specialization_after_instantiation)
Douglas Gregord6ba93d2009-10-15 15:54:05 +00006927 << PrevDecl;
Douglas Gregor1d957a32009-10-27 18:42:08 +00006928 Diag(PrevPointOfInstantiation, diag::note_instantiation_required_here)
Douglas Gregord6ba93d2009-10-15 15:54:05 +00006929 << (PrevTSK != TSK_ImplicitInstantiation);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006930
Douglas Gregord6ba93d2009-10-15 15:54:05 +00006931 return true;
6932 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006933
Douglas Gregord6ba93d2009-10-15 15:54:05 +00006934 case TSK_ExplicitInstantiationDeclaration:
6935 switch (PrevTSK) {
6936 case TSK_ExplicitInstantiationDeclaration:
6937 // This explicit instantiation declaration is redundant (that's okay).
Abramo Bagnara8075c852010-06-12 07:44:57 +00006938 HasNoEffect = true;
Douglas Gregord6ba93d2009-10-15 15:54:05 +00006939 return false;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006940
Douglas Gregord6ba93d2009-10-15 15:54:05 +00006941 case TSK_Undeclared:
6942 case TSK_ImplicitInstantiation:
6943 // We're explicitly instantiating something that may have already been
6944 // implicitly instantiated; that's fine.
6945 return false;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006946
Douglas Gregord6ba93d2009-10-15 15:54:05 +00006947 case TSK_ExplicitSpecialization:
6948 // C++0x [temp.explicit]p4:
6949 // For a given set of template parameters, if an explicit instantiation
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006950 // of a template appears after a declaration of an explicit
Douglas Gregord6ba93d2009-10-15 15:54:05 +00006951 // specialization for that template, the explicit instantiation has no
6952 // effect.
Abramo Bagnara8075c852010-06-12 07:44:57 +00006953 HasNoEffect = true;
Douglas Gregord6ba93d2009-10-15 15:54:05 +00006954 return false;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006955
Douglas Gregord6ba93d2009-10-15 15:54:05 +00006956 case TSK_ExplicitInstantiationDefinition:
6957 // C++0x [temp.explicit]p10:
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006958 // If an entity is the subject of both an explicit instantiation
6959 // declaration and an explicit instantiation definition in the same
Douglas Gregord6ba93d2009-10-15 15:54:05 +00006960 // translation unit, the definition shall follow the declaration.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006961 Diag(NewLoc,
Douglas Gregor1d957a32009-10-27 18:42:08 +00006962 diag::err_explicit_instantiation_declaration_after_definition);
Nico Weberd3bdadf2011-12-23 20:58:04 +00006963
6964 // Explicit instantiations following a specialization have no effect and
6965 // hence no PrevPointOfInstantiation. In that case, walk decl backwards
6966 // until a valid name loc is found.
Nico Webera8f80b32012-01-09 19:52:25 +00006967 Diag(DiagLocForExplicitInstantiation(PrevDecl, PrevPointOfInstantiation),
6968 diag::note_explicit_instantiation_definition_here);
Abramo Bagnara8075c852010-06-12 07:44:57 +00006969 HasNoEffect = true;
Douglas Gregord6ba93d2009-10-15 15:54:05 +00006970 return false;
6971 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006972
Douglas Gregord6ba93d2009-10-15 15:54:05 +00006973 case TSK_ExplicitInstantiationDefinition:
6974 switch (PrevTSK) {
6975 case TSK_Undeclared:
6976 case TSK_ImplicitInstantiation:
6977 // We're explicitly instantiating something that may have already been
6978 // implicitly instantiated; that's fine.
6979 return false;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006980
Douglas Gregord6ba93d2009-10-15 15:54:05 +00006981 case TSK_ExplicitSpecialization:
6982 // C++ DR 259, C++0x [temp.explicit]p4:
6983 // For a given set of template parameters, if an explicit
6984 // instantiation of a template appears after a declaration of
6985 // an explicit specialization for that template, the explicit
6986 // instantiation has no effect.
Richard Smithe4caa482016-08-31 23:23:25 +00006987 Diag(NewLoc, diag::warn_explicit_instantiation_after_specialization)
Richard Smith0bf8a4922011-10-18 20:49:44 +00006988 << PrevDecl;
6989 Diag(PrevDecl->getLocation(),
6990 diag::note_previous_template_specialization);
Abramo Bagnara8075c852010-06-12 07:44:57 +00006991 HasNoEffect = true;
Douglas Gregord6ba93d2009-10-15 15:54:05 +00006992 return false;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006993
Douglas Gregord6ba93d2009-10-15 15:54:05 +00006994 case TSK_ExplicitInstantiationDeclaration:
6995 // We're explicity instantiating a definition for something for which we
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006996 // were previously asked to suppress instantiations. That's fine.
Nico Weberd3bdadf2011-12-23 20:58:04 +00006997
6998 // C++0x [temp.explicit]p4:
6999 // For a given set of template parameters, if an explicit instantiation
7000 // of a template appears after a declaration of an explicit
7001 // specialization for that template, the explicit instantiation has no
7002 // effect.
Douglas Gregor0bc8a212012-01-14 15:55:47 +00007003 for (Decl *Prev = PrevDecl; Prev; Prev = Prev->getPreviousDecl()) {
Nico Weberd3bdadf2011-12-23 20:58:04 +00007004 // Is there any previous explicit specialization declaration?
7005 if (getTemplateSpecializationKind(Prev) == TSK_ExplicitSpecialization) {
7006 HasNoEffect = true;
7007 break;
7008 }
7009 }
7010
Douglas Gregord6ba93d2009-10-15 15:54:05 +00007011 return false;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007012
Douglas Gregord6ba93d2009-10-15 15:54:05 +00007013 case TSK_ExplicitInstantiationDefinition:
7014 // C++0x [temp.spec]p5:
7015 // For a given template and a given set of template-arguments,
7016 // - an explicit instantiation definition shall appear at most once
7017 // in a program,
Will Wilsoneadcdbb2014-05-09 09:52:13 +00007018
7019 // MSVCCompat: MSVC silently ignores duplicate explicit instantiations.
7020 Diag(NewLoc, (getLangOpts().MSVCCompat)
Richard Smith1b98ccc2014-07-19 01:39:17 +00007021 ? diag::ext_explicit_instantiation_duplicate
Will Wilsoneadcdbb2014-05-09 09:52:13 +00007022 : diag::err_explicit_instantiation_duplicate)
7023 << PrevDecl;
Nico Webera8f80b32012-01-09 19:52:25 +00007024 Diag(DiagLocForExplicitInstantiation(PrevDecl, PrevPointOfInstantiation),
Douglas Gregor1d957a32009-10-27 18:42:08 +00007025 diag::note_previous_explicit_instantiation);
Abramo Bagnara8075c852010-06-12 07:44:57 +00007026 HasNoEffect = true;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007027 return false;
Douglas Gregord6ba93d2009-10-15 15:54:05 +00007028 }
Douglas Gregord6ba93d2009-10-15 15:54:05 +00007029 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007030
David Blaikie83d382b2011-09-23 05:06:16 +00007031 llvm_unreachable("Missing specialization/instantiation case?");
Douglas Gregord6ba93d2009-10-15 15:54:05 +00007032}
7033
John McCallb9c78482010-04-08 09:05:18 +00007034/// \brief Perform semantic analysis for the given dependent function
James Dennettf14a6e52012-06-15 22:23:43 +00007035/// template specialization.
John McCallb9c78482010-04-08 09:05:18 +00007036///
James Dennettf14a6e52012-06-15 22:23:43 +00007037/// The only possible way to get a dependent function template specialization
7038/// is with a friend declaration, like so:
7039///
7040/// \code
7041/// template \<class T> void foo(T);
7042/// template \<class T> class A {
John McCallb9c78482010-04-08 09:05:18 +00007043/// friend void foo<>(T);
7044/// };
James Dennettf14a6e52012-06-15 22:23:43 +00007045/// \endcode
John McCallb9c78482010-04-08 09:05:18 +00007046///
7047/// There really isn't any useful analysis we can do here, so we
7048/// just store the information.
7049bool
7050Sema::CheckDependentFunctionTemplateSpecialization(FunctionDecl *FD,
7051 const TemplateArgumentListInfo &ExplicitTemplateArgs,
7052 LookupResult &Previous) {
7053 // Remove anything from Previous that isn't a function template in
7054 // the correct context.
Sebastian Redl50c68252010-08-31 00:36:30 +00007055 DeclContext *FDLookupContext = FD->getDeclContext()->getRedeclContext();
John McCallb9c78482010-04-08 09:05:18 +00007056 LookupResult::Filter F = Previous.makeFilter();
7057 while (F.hasNext()) {
7058 NamedDecl *D = F.next()->getUnderlyingDecl();
7059 if (!isa<FunctionTemplateDecl>(D) ||
Sebastian Redl50c68252010-08-31 00:36:30 +00007060 !FDLookupContext->InEnclosingNamespaceSetOf(
7061 D->getDeclContext()->getRedeclContext()))
John McCallb9c78482010-04-08 09:05:18 +00007062 F.erase();
7063 }
7064 F.done();
7065
7066 // Should this be diagnosed here?
7067 if (Previous.empty()) return true;
7068
7069 FD->setDependentTemplateSpecialization(Context, Previous.asUnresolvedSet(),
7070 ExplicitTemplateArgs);
7071 return false;
7072}
7073
Abramo Bagnara02ccd282010-05-20 15:32:11 +00007074/// \brief Perform semantic analysis for the given function template
Douglas Gregor3a923c2d2009-09-24 23:14:47 +00007075/// specialization.
7076///
Abramo Bagnara02ccd282010-05-20 15:32:11 +00007077/// This routine performs all of the semantic analysis required for an
Douglas Gregor3a923c2d2009-09-24 23:14:47 +00007078/// explicit function template specialization. On successful completion,
7079/// the function declaration \p FD will become a function template
7080/// specialization.
7081///
7082/// \param FD the function declaration, which will be updated to become a
7083/// function template specialization.
7084///
Abramo Bagnara02ccd282010-05-20 15:32:11 +00007085/// \param ExplicitTemplateArgs the explicitly-provided template arguments,
7086/// if any. Note that this may be valid info even when 0 arguments are
7087/// explicitly provided as in, e.g., \c void sort<>(char*, char*);
7088/// as it anyway contains info on the angle brackets locations.
Douglas Gregor3a923c2d2009-09-24 23:14:47 +00007089///
Francois Pichet3a44e432011-07-08 06:21:47 +00007090/// \param Previous the set of declarations that may be specialized by
Abramo Bagnara02ccd282010-05-20 15:32:11 +00007091/// this function specialization.
Larisse Voufo98b20f12013-07-19 23:00:19 +00007092bool Sema::CheckFunctionTemplateSpecialization(
7093 FunctionDecl *FD, TemplateArgumentListInfo *ExplicitTemplateArgs,
7094 LookupResult &Previous) {
Douglas Gregor3a923c2d2009-09-24 23:14:47 +00007095 // The set of function template specializations that could match this
7096 // explicit function template specialization.
John McCall58cc69d2010-01-27 01:50:18 +00007097 UnresolvedSet<8> Candidates;
George Burgess IV3e3bb95b2015-12-02 21:58:08 +00007098 TemplateSpecCandidateSet FailedCandidates(FD->getLocation(),
7099 /*ForTakingAddress=*/false);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007100
Richard Smith7d3c3ef2015-10-02 00:49:37 +00007101 llvm::SmallDenseMap<FunctionDecl *, TemplateArgumentListInfo, 8>
7102 ConvertedTemplateArgs;
7103
Sebastian Redl50c68252010-08-31 00:36:30 +00007104 DeclContext *FDLookupContext = FD->getDeclContext()->getRedeclContext();
John McCall1f82f242009-11-18 22:49:29 +00007105 for (LookupResult::iterator I = Previous.begin(), E = Previous.end();
7106 I != E; ++I) {
7107 NamedDecl *Ovl = (*I)->getUnderlyingDecl();
7108 if (FunctionTemplateDecl *FunTmpl = dyn_cast<FunctionTemplateDecl>(Ovl)) {
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007109 // Only consider templates found within the same semantic lookup scope as
Douglas Gregor3a923c2d2009-09-24 23:14:47 +00007110 // FD.
Sebastian Redl50c68252010-08-31 00:36:30 +00007111 if (!FDLookupContext->InEnclosingNamespaceSetOf(
7112 Ovl->getDeclContext()->getRedeclContext()))
Douglas Gregor3a923c2d2009-09-24 23:14:47 +00007113 continue;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007114
Richard Smith574f4f62013-01-14 05:37:29 +00007115 // When matching a constexpr member function template specialization
7116 // against the primary template, we don't yet know whether the
7117 // specialization has an implicit 'const' (because we don't know whether
7118 // it will be a static member function until we know which template it
7119 // specializes), so adjust it now assuming it specializes this template.
7120 QualType FT = FD->getType();
7121 if (FD->isConstexpr()) {
Rafael Espindola92045bc2013-11-19 21:07:04 +00007122 CXXMethodDecl *OldMD =
7123 dyn_cast<CXXMethodDecl>(FunTmpl->getTemplatedDecl());
Richard Smith574f4f62013-01-14 05:37:29 +00007124 if (OldMD && OldMD->isConst()) {
Rafael Espindola92045bc2013-11-19 21:07:04 +00007125 const FunctionProtoType *FPT = FT->castAs<FunctionProtoType>();
Richard Smith574f4f62013-01-14 05:37:29 +00007126 FunctionProtoType::ExtProtoInfo EPI = FPT->getExtProtoInfo();
7127 EPI.TypeQuals |= Qualifiers::Const;
Alp Toker314cc812014-01-25 16:55:45 +00007128 FT = Context.getFunctionType(FPT->getReturnType(),
Alp Toker9cacbab2014-01-20 20:26:09 +00007129 FPT->getParamTypes(), EPI);
Richard Smith574f4f62013-01-14 05:37:29 +00007130 }
7131 }
7132
Richard Smith7d3c3ef2015-10-02 00:49:37 +00007133 TemplateArgumentListInfo Args;
7134 if (ExplicitTemplateArgs)
7135 Args = *ExplicitTemplateArgs;
7136
Douglas Gregor3a923c2d2009-09-24 23:14:47 +00007137 // C++ [temp.expl.spec]p11:
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007138 // A trailing template-argument can be left unspecified in the
7139 // template-id naming an explicit function template specialization
Douglas Gregor3a923c2d2009-09-24 23:14:47 +00007140 // provided it can be deduced from the function argument type.
7141 // Perform template argument deduction to determine whether we may be
7142 // specializing this template.
7143 // FIXME: It is somewhat wasteful to build
Larisse Voufo98b20f12013-07-19 23:00:19 +00007144 TemplateDeductionInfo Info(FailedCandidates.getLocation());
Craig Topperc3ec1492014-05-26 06:22:03 +00007145 FunctionDecl *Specialization = nullptr;
Richard Smith32983682013-12-14 03:18:05 +00007146 if (TemplateDeductionResult TDK = DeduceTemplateArguments(
7147 cast<FunctionTemplateDecl>(FunTmpl->getFirstDecl()),
Richard Smithc2bebe92016-05-11 20:37:46 +00007148 ExplicitTemplateArgs ? &Args : nullptr, FT, Specialization,
7149 Info)) {
Larisse Voufo98b20f12013-07-19 23:00:19 +00007150 // Template argument deduction failed; record why it failed, so
Douglas Gregor3a923c2d2009-09-24 23:14:47 +00007151 // that we can provide nifty diagnostics.
Richard Smithc2bebe92016-05-11 20:37:46 +00007152 FailedCandidates.addCandidate().set(
7153 I.getPair(), FunTmpl->getTemplatedDecl(),
7154 MakeDeductionFailureInfo(Context, TDK, Info));
Douglas Gregor3a923c2d2009-09-24 23:14:47 +00007155 (void)TDK;
7156 continue;
7157 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007158
Artem Belevich64135c32016-12-08 19:38:13 +00007159 // Target attributes are part of the cuda function signature, so
7160 // the deduced template's cuda target must match that of the
7161 // specialization. Given that C++ template deduction does not
7162 // take target attributes into account, we reject candidates
7163 // here that have a different target.
Artem Belevich13e9b4d2016-12-07 19:27:16 +00007164 if (LangOpts.CUDA &&
Artem Belevich64135c32016-12-08 19:38:13 +00007165 IdentifyCUDATarget(Specialization,
7166 /* IgnoreImplicitHDAttributes = */ true) !=
7167 IdentifyCUDATarget(FD, /* IgnoreImplicitHDAttributes = */ true)) {
Artem Belevich13e9b4d2016-12-07 19:27:16 +00007168 FailedCandidates.addCandidate().set(
7169 I.getPair(), FunTmpl->getTemplatedDecl(),
7170 MakeDeductionFailureInfo(Context, TDK_CUDATargetMismatch, Info));
7171 continue;
7172 }
7173
Douglas Gregor3a923c2d2009-09-24 23:14:47 +00007174 // Record this candidate.
Richard Smith7d3c3ef2015-10-02 00:49:37 +00007175 if (ExplicitTemplateArgs)
7176 ConvertedTemplateArgs[Specialization] = std::move(Args);
John McCall58cc69d2010-01-27 01:50:18 +00007177 Candidates.addDecl(Specialization, I.getAccess());
Douglas Gregor3a923c2d2009-09-24 23:14:47 +00007178 }
7179 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007180
Douglas Gregor5de279c2009-09-26 03:41:46 +00007181 // Find the most specialized function template.
Larisse Voufo98b20f12013-07-19 23:00:19 +00007182 UnresolvedSetIterator Result = getMostSpecialized(
Richard Smith35e1da22013-09-10 22:59:25 +00007183 Candidates.begin(), Candidates.end(), FailedCandidates,
Larisse Voufo98b20f12013-07-19 23:00:19 +00007184 FD->getLocation(),
7185 PDiag(diag::err_function_template_spec_no_match) << FD->getDeclName(),
7186 PDiag(diag::err_function_template_spec_ambiguous)
Craig Topperc3ec1492014-05-26 06:22:03 +00007187 << FD->getDeclName() << (ExplicitTemplateArgs != nullptr),
Larisse Voufo98b20f12013-07-19 23:00:19 +00007188 PDiag(diag::note_function_template_spec_matched));
7189
John McCall58cc69d2010-01-27 01:50:18 +00007190 if (Result == Candidates.end())
Douglas Gregor3a923c2d2009-09-24 23:14:47 +00007191 return true;
John McCall58cc69d2010-01-27 01:50:18 +00007192
7193 // Ignore access information; it doesn't figure into redeclaration checking.
7194 FunctionDecl *Specialization = cast<FunctionDecl>(*Result);
Abramo Bagnarab9893d62011-03-04 17:20:30 +00007195
Nathan Wilson83839122016-04-09 02:55:27 +00007196 // C++ Concepts TS [dcl.spec.concept]p7: A program shall not declare [...]
7197 // an explicit specialization (14.8.3) [...] of a concept definition.
7198 if (Specialization->getPrimaryTemplate()->isConcept()) {
7199 Diag(FD->getLocation(), diag::err_concept_specialized)
7200 << 0 /*function*/ << 1 /*explicitly specialized*/;
7201 Diag(Specialization->getLocation(), diag::note_previous_declaration);
7202 return true;
7203 }
7204
Abramo Bagnarab9893d62011-03-04 17:20:30 +00007205 FunctionTemplateSpecializationInfo *SpecInfo
7206 = Specialization->getTemplateSpecializationInfo();
7207 assert(SpecInfo && "Function template specialization info missing?");
Francois Pichet3a44e432011-07-08 06:21:47 +00007208
7209 // Note: do not overwrite location info if previous template
7210 // specialization kind was explicit.
7211 TemplateSpecializationKind TSK = SpecInfo->getTemplateSpecializationKind();
Richard Smith5b8b3db2012-02-20 23:28:05 +00007212 if (TSK == TSK_Undeclared || TSK == TSK_ImplicitInstantiation) {
Francois Pichet3a44e432011-07-08 06:21:47 +00007213 Specialization->setLocation(FD->getLocation());
Richard Smith5b8b3db2012-02-20 23:28:05 +00007214 // C++11 [dcl.constexpr]p1: An explicit specialization of a constexpr
7215 // function can differ from the template declaration with respect to
7216 // the constexpr specifier.
7217 Specialization->setConstexpr(FD->isConstexpr());
7218 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007219
Douglas Gregor3a923c2d2009-09-24 23:14:47 +00007220 // FIXME: Check if the prior specialization has a point of instantiation.
Douglas Gregor06db9f52009-10-12 20:18:28 +00007221 // If so, we have run afoul of .
John McCall816d75b2010-03-24 07:46:06 +00007222
7223 // If this is a friend declaration, then we're not really declaring
7224 // an explicit specialization.
7225 bool isFriend = (FD->getFriendObjectKind() != Decl::FOK_None);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007226
Douglas Gregor54888652009-10-07 00:13:32 +00007227 // Check the scope of this explicit specialization.
John McCall816d75b2010-03-24 07:46:06 +00007228 if (!isFriend &&
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007229 CheckTemplateSpecializationScope(*this,
Douglas Gregor54888652009-10-07 00:13:32 +00007230 Specialization->getPrimaryTemplate(),
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007231 Specialization, FD->getLocation(),
Douglas Gregorba8e1ac2009-10-14 23:50:59 +00007232 false))
Douglas Gregor54888652009-10-07 00:13:32 +00007233 return true;
Douglas Gregor06db9f52009-10-12 20:18:28 +00007234
7235 // C++ [temp.expl.spec]p6:
7236 // If a template, a member template or the member of a class template is
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007237 // explicitly specialized then that specialization shall be declared
Douglas Gregor06db9f52009-10-12 20:18:28 +00007238 // before the first use of that specialization that would cause an implicit
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007239 // instantiation to take place, in every translation unit in which such a
Douglas Gregor06db9f52009-10-12 20:18:28 +00007240 // use occurs; no diagnostic is required.
Abramo Bagnara8075c852010-06-12 07:44:57 +00007241 bool HasNoEffect = false;
John McCall816d75b2010-03-24 07:46:06 +00007242 if (!isFriend &&
7243 CheckSpecializationInstantiationRedecl(FD->getLocation(),
John McCall4f7ced62010-02-11 01:33:53 +00007244 TSK_ExplicitSpecialization,
7245 Specialization,
7246 SpecInfo->getTemplateSpecializationKind(),
7247 SpecInfo->getPointOfInstantiation(),
Abramo Bagnara8075c852010-06-12 07:44:57 +00007248 HasNoEffect))
Douglas Gregor06db9f52009-10-12 20:18:28 +00007249 return true;
Simon Pilgrim6905d222016-12-30 22:55:33 +00007250
Douglas Gregor3a923c2d2009-09-24 23:14:47 +00007251 // Mark the prior declaration as an explicit specialization, so that later
7252 // clients know that this is an explicit specialization.
Argyrios Kyrtzidis1b30d9c2010-08-15 01:15:20 +00007253 if (!isFriend) {
Faisal Vali81a88be2016-06-14 03:23:15 +00007254 // Since explicit specializations do not inherit '=delete' from their
7255 // primary function template - check if the 'specialization' that was
7256 // implicitly generated (during template argument deduction for partial
7257 // ordering) from the most specialized of all the function templates that
7258 // 'FD' could have been specializing, has a 'deleted' definition. If so,
7259 // first check that it was implicitly generated during template argument
7260 // deduction by making sure it wasn't referenced, and then reset the deleted
7261 // flag to not-deleted, so that we can inherit that information from 'FD'.
7262 if (Specialization->isDeleted() && !SpecInfo->isExplicitSpecialization() &&
7263 !Specialization->getCanonicalDecl()->isReferenced()) {
7264 assert(
7265 Specialization->getCanonicalDecl() == Specialization &&
7266 "This must be the only existing declaration of this specialization");
7267 Specialization->setDeletedAsWritten(false);
Faisal Vali5e9e8ac2016-04-17 17:32:04 +00007268 }
John McCall816d75b2010-03-24 07:46:06 +00007269 SpecInfo->setTemplateSpecializationKind(TSK_ExplicitSpecialization);
Argyrios Kyrtzidis1b30d9c2010-08-15 01:15:20 +00007270 MarkUnusedFileScopedDecl(Specialization);
7271 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007272
Douglas Gregor3a923c2d2009-09-24 23:14:47 +00007273 // Turn the given function declaration into a function template
7274 // specialization, with the template arguments from the previous
7275 // specialization.
Abramo Bagnara02ccd282010-05-20 15:32:11 +00007276 // Take copies of (semantic and syntactic) template argument lists.
7277 const TemplateArgumentList* TemplArgs = new (Context)
7278 TemplateArgumentList(Specialization->getTemplateSpecializationArgs());
Richard Smith7d3c3ef2015-10-02 00:49:37 +00007279 FD->setFunctionTemplateSpecialization(
7280 Specialization->getPrimaryTemplate(), TemplArgs, /*InsertPos=*/nullptr,
7281 SpecInfo->getTemplateSpecializationKind(),
7282 ExplicitTemplateArgs ? &ConvertedTemplateArgs[Specialization] : nullptr);
Rafael Espindola6ae7e502013-04-03 19:27:57 +00007283
Artem Belevich64135c32016-12-08 19:38:13 +00007284 // A function template specialization inherits the target attributes
7285 // of its template. (We require the attributes explicitly in the
7286 // code to match, but a template may have implicit attributes by
7287 // virtue e.g. of being constexpr, and it passes these implicit
7288 // attributes on to its specializations.)
7289 if (LangOpts.CUDA)
7290 inheritCUDATargetAttrs(FD, *Specialization->getPrimaryTemplate());
7291
Douglas Gregor3a923c2d2009-09-24 23:14:47 +00007292 // The "previous declaration" for this function template specialization is
7293 // the prior function template specialization.
John McCall1f82f242009-11-18 22:49:29 +00007294 Previous.clear();
7295 Previous.addDecl(Specialization);
Douglas Gregor3a923c2d2009-09-24 23:14:47 +00007296 return false;
7297}
7298
Douglas Gregor86d142a2009-10-08 07:24:58 +00007299/// \brief Perform semantic analysis for the given non-template member
Douglas Gregor5c0405d2009-10-07 22:35:40 +00007300/// specialization.
7301///
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007302/// This routine performs all of the semantic analysis required for an
Douglas Gregor5c0405d2009-10-07 22:35:40 +00007303/// explicit member function specialization. On successful completion,
7304/// the function declaration \p FD will become a member function
7305/// specialization.
7306///
Douglas Gregor86d142a2009-10-08 07:24:58 +00007307/// \param Member the member declaration, which will be updated to become a
7308/// specialization.
Douglas Gregor5c0405d2009-10-07 22:35:40 +00007309///
John McCall1f82f242009-11-18 22:49:29 +00007310/// \param Previous the set of declarations, one of which may be specialized
7311/// by this function specialization; the set will be modified to contain the
7312/// redeclared member.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007313bool
John McCall1f82f242009-11-18 22:49:29 +00007314Sema::CheckMemberSpecialization(NamedDecl *Member, LookupResult &Previous) {
Douglas Gregor86d142a2009-10-08 07:24:58 +00007315 assert(!isa<TemplateDecl>(Member) && "Only for non-template members");
John McCalle820e5e2010-04-13 20:37:33 +00007316
Douglas Gregor86d142a2009-10-08 07:24:58 +00007317 // Try to find the member we are instantiating.
Richard Smith22e7cc62016-05-24 00:01:49 +00007318 NamedDecl *FoundInstantiation = nullptr;
Craig Topperc3ec1492014-05-26 06:22:03 +00007319 NamedDecl *Instantiation = nullptr;
7320 NamedDecl *InstantiatedFrom = nullptr;
7321 MemberSpecializationInfo *MSInfo = nullptr;
Douglas Gregor06db9f52009-10-12 20:18:28 +00007322
John McCall1f82f242009-11-18 22:49:29 +00007323 if (Previous.empty()) {
Douglas Gregor86d142a2009-10-08 07:24:58 +00007324 // Nowhere to look anyway.
7325 } else if (FunctionDecl *Function = dyn_cast<FunctionDecl>(Member)) {
John McCall1f82f242009-11-18 22:49:29 +00007326 for (LookupResult::iterator I = Previous.begin(), E = Previous.end();
7327 I != E; ++I) {
7328 NamedDecl *D = (*I)->getUnderlyingDecl();
7329 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D)) {
Rafael Espindola66747222013-12-10 00:59:31 +00007330 QualType Adjusted = Function->getType();
7331 if (!hasExplicitCallingConv(Adjusted))
7332 Adjusted = adjustCCAndNoReturn(Adjusted, Method->getType());
7333 if (Context.hasSameType(Adjusted, Method->getType())) {
Richard Smith22e7cc62016-05-24 00:01:49 +00007334 FoundInstantiation = *I;
Douglas Gregor86d142a2009-10-08 07:24:58 +00007335 Instantiation = Method;
7336 InstantiatedFrom = Method->getInstantiatedFromMemberFunction();
Douglas Gregor06db9f52009-10-12 20:18:28 +00007337 MSInfo = Method->getMemberSpecializationInfo();
Douglas Gregor86d142a2009-10-08 07:24:58 +00007338 break;
7339 }
Douglas Gregor5c0405d2009-10-07 22:35:40 +00007340 }
7341 }
Douglas Gregor86d142a2009-10-08 07:24:58 +00007342 } else if (isa<VarDecl>(Member)) {
John McCall1f82f242009-11-18 22:49:29 +00007343 VarDecl *PrevVar;
7344 if (Previous.isSingleResult() &&
7345 (PrevVar = dyn_cast<VarDecl>(Previous.getFoundDecl())))
Douglas Gregor86d142a2009-10-08 07:24:58 +00007346 if (PrevVar->isStaticDataMember()) {
Richard Smith22e7cc62016-05-24 00:01:49 +00007347 FoundInstantiation = Previous.getRepresentativeDecl();
John McCall1f82f242009-11-18 22:49:29 +00007348 Instantiation = PrevVar;
Douglas Gregor86d142a2009-10-08 07:24:58 +00007349 InstantiatedFrom = PrevVar->getInstantiatedFromStaticDataMember();
Douglas Gregor06db9f52009-10-12 20:18:28 +00007350 MSInfo = PrevVar->getMemberSpecializationInfo();
Douglas Gregor86d142a2009-10-08 07:24:58 +00007351 }
7352 } else if (isa<RecordDecl>(Member)) {
John McCall1f82f242009-11-18 22:49:29 +00007353 CXXRecordDecl *PrevRecord;
7354 if (Previous.isSingleResult() &&
7355 (PrevRecord = dyn_cast<CXXRecordDecl>(Previous.getFoundDecl()))) {
Richard Smith22e7cc62016-05-24 00:01:49 +00007356 FoundInstantiation = Previous.getRepresentativeDecl();
John McCall1f82f242009-11-18 22:49:29 +00007357 Instantiation = PrevRecord;
Douglas Gregor86d142a2009-10-08 07:24:58 +00007358 InstantiatedFrom = PrevRecord->getInstantiatedFromMemberClass();
Douglas Gregor06db9f52009-10-12 20:18:28 +00007359 MSInfo = PrevRecord->getMemberSpecializationInfo();
Douglas Gregor86d142a2009-10-08 07:24:58 +00007360 }
Richard Smith7d137e32012-03-23 03:33:32 +00007361 } else if (isa<EnumDecl>(Member)) {
7362 EnumDecl *PrevEnum;
7363 if (Previous.isSingleResult() &&
7364 (PrevEnum = dyn_cast<EnumDecl>(Previous.getFoundDecl()))) {
Richard Smith22e7cc62016-05-24 00:01:49 +00007365 FoundInstantiation = Previous.getRepresentativeDecl();
Richard Smith7d137e32012-03-23 03:33:32 +00007366 Instantiation = PrevEnum;
7367 InstantiatedFrom = PrevEnum->getInstantiatedFromMemberEnum();
7368 MSInfo = PrevEnum->getMemberSpecializationInfo();
7369 }
Douglas Gregor5c0405d2009-10-07 22:35:40 +00007370 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007371
Douglas Gregor5c0405d2009-10-07 22:35:40 +00007372 if (!Instantiation) {
Douglas Gregor86d142a2009-10-08 07:24:58 +00007373 // There is no previous declaration that matches. Since member
Douglas Gregor5c0405d2009-10-07 22:35:40 +00007374 // specializations are always out-of-line, the caller will complain about
7375 // this mismatch later.
7376 return false;
7377 }
John McCalle820e5e2010-04-13 20:37:33 +00007378
7379 // If this is a friend, just bail out here before we start turning
7380 // things into explicit specializations.
7381 if (Member->getFriendObjectKind() != Decl::FOK_None) {
7382 // Preserve instantiation information.
7383 if (InstantiatedFrom && isa<CXXMethodDecl>(Member)) {
7384 cast<CXXMethodDecl>(Member)->setInstantiationOfMemberFunction(
7385 cast<CXXMethodDecl>(InstantiatedFrom),
7386 cast<CXXMethodDecl>(Instantiation)->getTemplateSpecializationKind());
7387 } else if (InstantiatedFrom && isa<CXXRecordDecl>(Member)) {
7388 cast<CXXRecordDecl>(Member)->setInstantiationOfMemberClass(
7389 cast<CXXRecordDecl>(InstantiatedFrom),
7390 cast<CXXRecordDecl>(Instantiation)->getTemplateSpecializationKind());
7391 }
7392
7393 Previous.clear();
Richard Smith22e7cc62016-05-24 00:01:49 +00007394 Previous.addDecl(FoundInstantiation);
John McCalle820e5e2010-04-13 20:37:33 +00007395 return false;
7396 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007397
Douglas Gregor86d142a2009-10-08 07:24:58 +00007398 // Make sure that this is a specialization of a member.
7399 if (!InstantiatedFrom) {
7400 Diag(Member->getLocation(), diag::err_spec_member_not_instantiated)
7401 << Member;
Douglas Gregor5c0405d2009-10-07 22:35:40 +00007402 Diag(Instantiation->getLocation(), diag::note_specialized_decl);
7403 return true;
7404 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007405
Douglas Gregor06db9f52009-10-12 20:18:28 +00007406 // C++ [temp.expl.spec]p6:
7407 // If a template, a member template or the member of a class template is
Nico Weberd3bdadf2011-12-23 20:58:04 +00007408 // explicitly specialized then that specialization shall be declared
Douglas Gregor06db9f52009-10-12 20:18:28 +00007409 // before the first use of that specialization that would cause an implicit
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007410 // instantiation to take place, in every translation unit in which such a
Douglas Gregor06db9f52009-10-12 20:18:28 +00007411 // use occurs; no diagnostic is required.
7412 assert(MSInfo && "Member specialization info missing?");
John McCall4f7ced62010-02-11 01:33:53 +00007413
Abramo Bagnara8075c852010-06-12 07:44:57 +00007414 bool HasNoEffect = false;
John McCall4f7ced62010-02-11 01:33:53 +00007415 if (CheckSpecializationInstantiationRedecl(Member->getLocation(),
7416 TSK_ExplicitSpecialization,
7417 Instantiation,
7418 MSInfo->getTemplateSpecializationKind(),
7419 MSInfo->getPointOfInstantiation(),
Abramo Bagnara8075c852010-06-12 07:44:57 +00007420 HasNoEffect))
Douglas Gregor06db9f52009-10-12 20:18:28 +00007421 return true;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007422
Douglas Gregor5c0405d2009-10-07 22:35:40 +00007423 // Check the scope of this explicit specialization.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007424 if (CheckTemplateSpecializationScope(*this,
Douglas Gregor86d142a2009-10-08 07:24:58 +00007425 InstantiatedFrom,
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007426 Instantiation, Member->getLocation(),
Douglas Gregorba8e1ac2009-10-14 23:50:59 +00007427 false))
Douglas Gregor5c0405d2009-10-07 22:35:40 +00007428 return true;
Douglas Gregord801b062009-10-07 23:56:10 +00007429
Douglas Gregor86d142a2009-10-08 07:24:58 +00007430 // Note that this is an explicit instantiation of a member.
Douglas Gregorbbe8f462009-10-08 15:14:33 +00007431 // the original declaration to note that it is an explicit specialization
7432 // (if it was previously an implicit instantiation). This latter step
7433 // makes bookkeeping easier.
Douglas Gregor86d142a2009-10-08 07:24:58 +00007434 if (isa<FunctionDecl>(Member)) {
Douglas Gregorbbe8f462009-10-08 15:14:33 +00007435 FunctionDecl *InstantiationFunction = cast<FunctionDecl>(Instantiation);
7436 if (InstantiationFunction->getTemplateSpecializationKind() ==
7437 TSK_ImplicitInstantiation) {
7438 InstantiationFunction->setTemplateSpecializationKind(
7439 TSK_ExplicitSpecialization);
7440 InstantiationFunction->setLocation(Member->getLocation());
Faisal Vali5e9e8ac2016-04-17 17:32:04 +00007441 // Explicit specializations of member functions of class templates do not
7442 // inherit '=delete' from the member function they are specializing.
7443 if (InstantiationFunction->isDeleted()) {
7444 assert(InstantiationFunction->getCanonicalDecl() ==
7445 InstantiationFunction);
Richard Smith5f274382016-09-28 23:55:27 +00007446 InstantiationFunction->setDeletedAsWritten(false);
Faisal Vali5e9e8ac2016-04-17 17:32:04 +00007447 }
Douglas Gregorbbe8f462009-10-08 15:14:33 +00007448 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007449
Douglas Gregor86d142a2009-10-08 07:24:58 +00007450 cast<FunctionDecl>(Member)->setInstantiationOfMemberFunction(
7451 cast<CXXMethodDecl>(InstantiatedFrom),
7452 TSK_ExplicitSpecialization);
Argyrios Kyrtzidis1b30d9c2010-08-15 01:15:20 +00007453 MarkUnusedFileScopedDecl(InstantiationFunction);
Douglas Gregor86d142a2009-10-08 07:24:58 +00007454 } else if (isa<VarDecl>(Member)) {
Douglas Gregorbbe8f462009-10-08 15:14:33 +00007455 VarDecl *InstantiationVar = cast<VarDecl>(Instantiation);
7456 if (InstantiationVar->getTemplateSpecializationKind() ==
7457 TSK_ImplicitInstantiation) {
7458 InstantiationVar->setTemplateSpecializationKind(
7459 TSK_ExplicitSpecialization);
7460 InstantiationVar->setLocation(Member->getLocation());
7461 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007462
Larisse Voufo39a1e502013-08-06 01:03:05 +00007463 cast<VarDecl>(Member)->setInstantiationOfStaticDataMember(
7464 cast<VarDecl>(InstantiatedFrom), TSK_ExplicitSpecialization);
Argyrios Kyrtzidis1b30d9c2010-08-15 01:15:20 +00007465 MarkUnusedFileScopedDecl(InstantiationVar);
Richard Smith7d137e32012-03-23 03:33:32 +00007466 } else if (isa<CXXRecordDecl>(Member)) {
Douglas Gregorbbe8f462009-10-08 15:14:33 +00007467 CXXRecordDecl *InstantiationClass = cast<CXXRecordDecl>(Instantiation);
7468 if (InstantiationClass->getTemplateSpecializationKind() ==
7469 TSK_ImplicitInstantiation) {
7470 InstantiationClass->setTemplateSpecializationKind(
7471 TSK_ExplicitSpecialization);
7472 InstantiationClass->setLocation(Member->getLocation());
7473 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007474
Douglas Gregor86d142a2009-10-08 07:24:58 +00007475 cast<CXXRecordDecl>(Member)->setInstantiationOfMemberClass(
Douglas Gregorbbe8f462009-10-08 15:14:33 +00007476 cast<CXXRecordDecl>(InstantiatedFrom),
7477 TSK_ExplicitSpecialization);
Richard Smith7d137e32012-03-23 03:33:32 +00007478 } else {
7479 assert(isa<EnumDecl>(Member) && "Only member enums remain");
7480 EnumDecl *InstantiationEnum = cast<EnumDecl>(Instantiation);
7481 if (InstantiationEnum->getTemplateSpecializationKind() ==
7482 TSK_ImplicitInstantiation) {
7483 InstantiationEnum->setTemplateSpecializationKind(
7484 TSK_ExplicitSpecialization);
7485 InstantiationEnum->setLocation(Member->getLocation());
7486 }
7487
7488 cast<EnumDecl>(Member)->setInstantiationOfMemberEnum(
7489 cast<EnumDecl>(InstantiatedFrom), TSK_ExplicitSpecialization);
Douglas Gregor86d142a2009-10-08 07:24:58 +00007490 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007491
Douglas Gregor5c0405d2009-10-07 22:35:40 +00007492 // Save the caller the trouble of having to figure out which declaration
7493 // this specialization matches.
John McCall1f82f242009-11-18 22:49:29 +00007494 Previous.clear();
Richard Smith22e7cc62016-05-24 00:01:49 +00007495 Previous.addDecl(FoundInstantiation);
Douglas Gregor5c0405d2009-10-07 22:35:40 +00007496 return false;
7497}
7498
Douglas Gregore47f5a72009-10-14 23:41:34 +00007499/// \brief Check the scope of an explicit instantiation.
Douglas Gregor6cc1df52010-07-13 00:10:04 +00007500///
7501/// \returns true if a serious error occurs, false otherwise.
7502static bool CheckExplicitInstantiationScope(Sema &S, NamedDecl *D,
Douglas Gregore47f5a72009-10-14 23:41:34 +00007503 SourceLocation InstLoc,
7504 bool WasQualifiedName) {
Sebastian Redl50c68252010-08-31 00:36:30 +00007505 DeclContext *OrigContext= D->getDeclContext()->getEnclosingNamespaceContext();
7506 DeclContext *CurContext = S.CurContext->getRedeclContext();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007507
Douglas Gregor6cc1df52010-07-13 00:10:04 +00007508 if (CurContext->isRecord()) {
7509 S.Diag(InstLoc, diag::err_explicit_instantiation_in_class)
7510 << D;
7511 return true;
7512 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007513
Richard Smith050d2612011-10-18 02:28:33 +00007514 // C++11 [temp.explicit]p3:
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007515 // An explicit instantiation shall appear in an enclosing namespace of its
Richard Smith050d2612011-10-18 02:28:33 +00007516 // template. If the name declared in the explicit instantiation is an
7517 // unqualified name, the explicit instantiation shall appear in the
7518 // namespace where its template is declared or, if that namespace is inline
7519 // (7.3.1), any namespace from its enclosing namespace set.
Douglas Gregore47f5a72009-10-14 23:41:34 +00007520 //
7521 // This is DR275, which we do not retroactively apply to C++98/03.
Richard Smith050d2612011-10-18 02:28:33 +00007522 if (WasQualifiedName) {
7523 if (CurContext->Encloses(OrigContext))
7524 return false;
7525 } else {
7526 if (CurContext->InEnclosingNamespaceSetOf(OrigContext))
7527 return false;
7528 }
7529
7530 if (NamespaceDecl *NS = dyn_cast<NamespaceDecl>(OrigContext)) {
7531 if (WasQualifiedName)
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007532 S.Diag(InstLoc,
Richard Smith2bf7fdb2013-01-02 11:42:31 +00007533 S.getLangOpts().CPlusPlus11?
Richard Smith050d2612011-10-18 02:28:33 +00007534 diag::err_explicit_instantiation_out_of_scope :
7535 diag::warn_explicit_instantiation_out_of_scope_0x)
Douglas Gregore47f5a72009-10-14 23:41:34 +00007536 << D << NS;
7537 else
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007538 S.Diag(InstLoc,
Richard Smith2bf7fdb2013-01-02 11:42:31 +00007539 S.getLangOpts().CPlusPlus11?
Richard Smith050d2612011-10-18 02:28:33 +00007540 diag::err_explicit_instantiation_unqualified_wrong_namespace :
7541 diag::warn_explicit_instantiation_unqualified_wrong_namespace_0x)
7542 << D << NS;
7543 } else
7544 S.Diag(InstLoc,
Richard Smith2bf7fdb2013-01-02 11:42:31 +00007545 S.getLangOpts().CPlusPlus11?
Richard Smith050d2612011-10-18 02:28:33 +00007546 diag::err_explicit_instantiation_must_be_global :
7547 diag::warn_explicit_instantiation_must_be_global_0x)
7548 << D;
Douglas Gregore47f5a72009-10-14 23:41:34 +00007549 S.Diag(D->getLocation(), diag::note_explicit_instantiation_here);
Douglas Gregor6cc1df52010-07-13 00:10:04 +00007550 return false;
Douglas Gregore47f5a72009-10-14 23:41:34 +00007551}
7552
7553/// \brief Determine whether the given scope specifier has a template-id in it.
7554static bool ScopeSpecifierHasTemplateId(const CXXScopeSpec &SS) {
7555 if (!SS.isSet())
7556 return false;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007557
Richard Smith050d2612011-10-18 02:28:33 +00007558 // C++11 [temp.explicit]p3:
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007559 // If the explicit instantiation is for a member function, a member class
Douglas Gregore47f5a72009-10-14 23:41:34 +00007560 // or a static data member of a class template specialization, the name of
7561 // the class template specialization in the qualified-id for the member
7562 // name shall be a simple-template-id.
7563 //
7564 // C++98 has the same restriction, just worded differently.
Aaron Ballman4a979672014-01-03 13:56:08 +00007565 for (NestedNameSpecifier *NNS = SS.getScopeRep(); NNS;
7566 NNS = NNS->getPrefix())
John McCall424cec92011-01-19 06:33:43 +00007567 if (const Type *T = NNS->getAsType())
Douglas Gregore47f5a72009-10-14 23:41:34 +00007568 if (isa<TemplateSpecializationType>(T))
7569 return true;
7570
7571 return false;
7572}
7573
Shoaib Meenaifc78d7c2016-12-05 18:01:35 +00007574/// Make a dllexport or dllimport attr on a class template specialization take
7575/// effect.
7576static void dllExportImportClassTemplateSpecialization(
7577 Sema &S, ClassTemplateSpecializationDecl *Def) {
7578 auto *A = cast_or_null<InheritableAttr>(getDLLAttr(Def));
7579 assert(A && "dllExportImportClassTemplateSpecialization called "
7580 "on Def without dllexport or dllimport");
7581
7582 // We reject explicit instantiations in class scope, so there should
7583 // never be any delayed exported classes to worry about.
7584 assert(S.DelayedDllExportClasses.empty() &&
7585 "delayed exports present at explicit instantiation");
7586 S.checkClassLevelDLLAttribute(Def);
7587
7588 // Propagate attribute to base class templates.
7589 for (auto &B : Def->bases()) {
7590 if (auto *BT = dyn_cast_or_null<ClassTemplateSpecializationDecl>(
7591 B.getType()->getAsCXXRecordDecl()))
7592 S.propagateDLLAttrToBaseClassTemplate(Def, A, BT, B.getLocStart());
7593 }
7594
7595 S.referenceDLLExportedClassMethods();
7596}
7597
Douglas Gregor2ec748c2009-05-14 00:28:11 +00007598// Explicit instantiation of a class template specialization
John McCallfaf5fb42010-08-26 23:41:50 +00007599DeclResult
Mike Stump11289f42009-09-09 15:08:12 +00007600Sema::ActOnExplicitInstantiation(Scope *S,
Douglas Gregor43e75172009-09-04 06:33:52 +00007601 SourceLocation ExternLoc,
7602 SourceLocation TemplateLoc,
Mike Stump11289f42009-09-09 15:08:12 +00007603 unsigned TagSpec,
Douglas Gregora1f49972009-05-13 00:25:59 +00007604 SourceLocation KWLoc,
7605 const CXXScopeSpec &SS,
7606 TemplateTy TemplateD,
7607 SourceLocation TemplateNameLoc,
7608 SourceLocation LAngleLoc,
7609 ASTTemplateArgsPtr TemplateArgsIn,
Douglas Gregora1f49972009-05-13 00:25:59 +00007610 SourceLocation RAngleLoc,
7611 AttributeList *Attr) {
7612 // Find the class template we're specializing
Serge Pavlov9ddb76e2013-08-27 13:15:56 +00007613 TemplateName Name = TemplateD.get();
Richard Smith392497b2013-06-22 22:03:31 +00007614 TemplateDecl *TD = Name.getAsTemplateDecl();
Douglas Gregora1f49972009-05-13 00:25:59 +00007615 // Check that the specialization uses the same tag kind as the
7616 // original template.
Abramo Bagnara6150c882010-05-11 21:36:43 +00007617 TagTypeKind Kind = TypeWithKeyword::getTagTypeKindForTypeSpec(TagSpec);
7618 assert(Kind != TTK_Enum &&
7619 "Invalid enum tag in class template explicit instantiation!");
Richard Smith392497b2013-06-22 22:03:31 +00007620
Richard Trieu265c3442016-04-05 21:13:54 +00007621 ClassTemplateDecl *ClassTemplate = dyn_cast<ClassTemplateDecl>(TD);
7622
7623 if (!ClassTemplate) {
Reid Kleckner1a4ab7e2016-12-09 19:47:58 +00007624 NonTagKind NTK = getNonTagTypeDeclKind(TD, Kind);
7625 Diag(TemplateNameLoc, diag::err_tag_reference_non_tag) << TD << NTK << Kind;
Richard Trieu265c3442016-04-05 21:13:54 +00007626 Diag(TD->getLocation(), diag::note_previous_use);
Richard Smith392497b2013-06-22 22:03:31 +00007627 return true;
7628 }
7629
Douglas Gregord9034f02009-05-14 16:41:31 +00007630 if (!isAcceptableTagRedeclaration(ClassTemplate->getTemplatedDecl(),
Richard Trieucaa33d32011-06-10 03:11:26 +00007631 Kind, /*isDefinition*/false, KWLoc,
Justin Bognerc6ecb7c2015-07-10 23:05:47 +00007632 ClassTemplate->getIdentifier())) {
Mike Stump11289f42009-09-09 15:08:12 +00007633 Diag(KWLoc, diag::err_use_with_wrong_tag)
Douglas Gregora1f49972009-05-13 00:25:59 +00007634 << ClassTemplate
Douglas Gregora771f462010-03-31 17:46:05 +00007635 << FixItHint::CreateReplacement(KWLoc,
Douglas Gregora1f49972009-05-13 00:25:59 +00007636 ClassTemplate->getTemplatedDecl()->getKindName());
Mike Stump11289f42009-09-09 15:08:12 +00007637 Diag(ClassTemplate->getTemplatedDecl()->getLocation(),
Douglas Gregora1f49972009-05-13 00:25:59 +00007638 diag::note_previous_use);
7639 Kind = ClassTemplate->getTemplatedDecl()->getTagKind();
7640 }
7641
Douglas Gregore47f5a72009-10-14 23:41:34 +00007642 // C++0x [temp.explicit]p2:
7643 // There are two forms of explicit instantiation: an explicit instantiation
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007644 // definition and an explicit instantiation declaration. An explicit
7645 // instantiation declaration begins with the extern keyword. [...]
Hans Wennborgfd76d912015-01-15 21:18:30 +00007646 TemplateSpecializationKind TSK = ExternLoc.isInvalid()
7647 ? TSK_ExplicitInstantiationDefinition
7648 : TSK_ExplicitInstantiationDeclaration;
7649
7650 if (TSK == TSK_ExplicitInstantiationDeclaration) {
7651 // Check for dllexport class template instantiation declarations.
7652 for (AttributeList *A = Attr; A; A = A->getNext()) {
7653 if (A->getKind() == AttributeList::AT_DLLExport) {
7654 Diag(ExternLoc,
7655 diag::warn_attribute_dllexport_explicit_instantiation_decl);
7656 Diag(A->getLoc(), diag::note_attribute);
7657 break;
7658 }
7659 }
7660
7661 if (auto *A = ClassTemplate->getTemplatedDecl()->getAttr<DLLExportAttr>()) {
7662 Diag(ExternLoc,
7663 diag::warn_attribute_dllexport_explicit_instantiation_decl);
7664 Diag(A->getLocation(), diag::note_attribute);
7665 }
7666 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007667
Hans Wennborga86a83b2016-05-26 19:42:56 +00007668 // In MSVC mode, dllimported explicit instantiation definitions are treated as
7669 // instantiation declarations for most purposes.
7670 bool DLLImportExplicitInstantiationDef = false;
7671 if (TSK == TSK_ExplicitInstantiationDefinition &&
7672 Context.getTargetInfo().getCXXABI().isMicrosoft()) {
7673 // Check for dllimport class template instantiation definitions.
7674 bool DLLImport =
7675 ClassTemplate->getTemplatedDecl()->getAttr<DLLImportAttr>();
7676 for (AttributeList *A = Attr; A; A = A->getNext()) {
7677 if (A->getKind() == AttributeList::AT_DLLImport)
7678 DLLImport = true;
7679 if (A->getKind() == AttributeList::AT_DLLExport) {
7680 // dllexport trumps dllimport here.
7681 DLLImport = false;
7682 break;
7683 }
7684 }
7685 if (DLLImport) {
7686 TSK = TSK_ExplicitInstantiationDeclaration;
7687 DLLImportExplicitInstantiationDef = true;
7688 }
7689 }
7690
Douglas Gregora1f49972009-05-13 00:25:59 +00007691 // Translate the parser's template argument list in our AST format.
John McCall6b51f282009-11-23 01:53:49 +00007692 TemplateArgumentListInfo TemplateArgs(LAngleLoc, RAngleLoc);
Douglas Gregorb53edfb2009-11-10 19:49:08 +00007693 translateTemplateArguments(TemplateArgsIn, TemplateArgs);
Douglas Gregora1f49972009-05-13 00:25:59 +00007694
7695 // Check that the template argument list is well-formed for this
7696 // template.
Chris Lattner0e62c1c2011-07-23 10:55:15 +00007697 SmallVector<TemplateArgument, 4> Converted;
John McCall6b51f282009-11-23 01:53:49 +00007698 if (CheckTemplateArgumentList(ClassTemplate, TemplateNameLoc,
7699 TemplateArgs, false, Converted))
Douglas Gregora1f49972009-05-13 00:25:59 +00007700 return true;
7701
Douglas Gregora1f49972009-05-13 00:25:59 +00007702 // Find the class template specialization declaration that
7703 // corresponds to these arguments.
Craig Topperc3ec1492014-05-26 06:22:03 +00007704 void *InsertPos = nullptr;
Douglas Gregora1f49972009-05-13 00:25:59 +00007705 ClassTemplateSpecializationDecl *PrevDecl
Craig Topper7e0daca2014-06-26 04:58:53 +00007706 = ClassTemplate->findSpecialization(Converted, InsertPos);
Douglas Gregora1f49972009-05-13 00:25:59 +00007707
Abramo Bagnara8075c852010-06-12 07:44:57 +00007708 TemplateSpecializationKind PrevDecl_TSK
7709 = PrevDecl ? PrevDecl->getTemplateSpecializationKind() : TSK_Undeclared;
7710
Douglas Gregor54888652009-10-07 00:13:32 +00007711 // C++0x [temp.explicit]p2:
7712 // [...] An explicit instantiation shall appear in an enclosing
7713 // namespace of its template. [...]
7714 //
7715 // This is C++ DR 275.
Douglas Gregor6cc1df52010-07-13 00:10:04 +00007716 if (CheckExplicitInstantiationScope(*this, ClassTemplate, TemplateNameLoc,
7717 SS.isSet()))
7718 return true;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007719
Craig Topperc3ec1492014-05-26 06:22:03 +00007720 ClassTemplateSpecializationDecl *Specialization = nullptr;
Douglas Gregora1f49972009-05-13 00:25:59 +00007721
Abramo Bagnara8075c852010-06-12 07:44:57 +00007722 bool HasNoEffect = false;
Douglas Gregora1f49972009-05-13 00:25:59 +00007723 if (PrevDecl) {
Douglas Gregor1d957a32009-10-27 18:42:08 +00007724 if (CheckSpecializationInstantiationRedecl(TemplateNameLoc, TSK,
Abramo Bagnara8075c852010-06-12 07:44:57 +00007725 PrevDecl, PrevDecl_TSK,
Douglas Gregor12e49d32009-10-15 22:53:21 +00007726 PrevDecl->getPointOfInstantiation(),
Abramo Bagnara8075c852010-06-12 07:44:57 +00007727 HasNoEffect))
John McCall48871652010-08-21 09:40:31 +00007728 return PrevDecl;
Douglas Gregora1f49972009-05-13 00:25:59 +00007729
Abramo Bagnara8075c852010-06-12 07:44:57 +00007730 // Even though HasNoEffect == true means that this explicit instantiation
7731 // has no effect on semantics, we go on to put its syntax in the AST.
7732
7733 if (PrevDecl_TSK == TSK_ImplicitInstantiation ||
7734 PrevDecl_TSK == TSK_Undeclared) {
Douglas Gregor4aa04b12009-09-11 21:19:12 +00007735 // Since the only prior class template specialization with these
7736 // arguments was referenced but not declared, reuse that
Abramo Bagnara8075c852010-06-12 07:44:57 +00007737 // declaration node as our own, updating the source location
7738 // for the template name to reflect our new declaration.
7739 // (Other source locations will be updated later.)
Douglas Gregor4aa04b12009-09-11 21:19:12 +00007740 Specialization = PrevDecl;
7741 Specialization->setLocation(TemplateNameLoc);
Craig Topperc3ec1492014-05-26 06:22:03 +00007742 PrevDecl = nullptr;
Douglas Gregor4aa04b12009-09-11 21:19:12 +00007743 }
Hans Wennborga86a83b2016-05-26 19:42:56 +00007744
7745 if (PrevDecl_TSK == TSK_ExplicitInstantiationDeclaration &&
7746 DLLImportExplicitInstantiationDef) {
7747 // The new specialization might add a dllimport attribute.
7748 HasNoEffect = false;
7749 }
Douglas Gregor12e49d32009-10-15 22:53:21 +00007750 }
Abramo Bagnara8075c852010-06-12 07:44:57 +00007751
Douglas Gregor4aa04b12009-09-11 21:19:12 +00007752 if (!Specialization) {
Douglas Gregora1f49972009-05-13 00:25:59 +00007753 // Create a new class template specialization declaration node for
7754 // this explicit specialization.
7755 Specialization
Douglas Gregore9029562010-05-06 00:28:52 +00007756 = ClassTemplateSpecializationDecl::Create(Context, Kind,
Douglas Gregora1f49972009-05-13 00:25:59 +00007757 ClassTemplate->getDeclContext(),
Abramo Bagnara29c2d462011-03-09 14:09:51 +00007758 KWLoc, TemplateNameLoc,
Douglas Gregora1f49972009-05-13 00:25:59 +00007759 ClassTemplate,
David Majnemer8b622692016-07-03 21:17:51 +00007760 Converted,
Douglas Gregor1ccc8412010-11-07 23:05:16 +00007761 PrevDecl);
John McCall3e11ebe2010-03-15 10:12:16 +00007762 SetNestedNameSpecifier(Specialization, SS);
Douglas Gregora1f49972009-05-13 00:25:59 +00007763
Argyrios Kyrtzidis47470f22010-07-20 13:59:28 +00007764 if (!HasNoEffect && !PrevDecl) {
Abramo Bagnara8075c852010-06-12 07:44:57 +00007765 // Insert the new specialization.
Argyrios Kyrtzidis47470f22010-07-20 13:59:28 +00007766 ClassTemplate->AddSpecialization(Specialization, InsertPos);
Abramo Bagnara8075c852010-06-12 07:44:57 +00007767 }
Douglas Gregora1f49972009-05-13 00:25:59 +00007768 }
7769
7770 // Build the fully-sugared type for this explicit instantiation as
7771 // the user wrote in the explicit instantiation itself. This means
7772 // that we'll pretty-print the type retrieved from the
7773 // specialization's declaration the way that the user actually wrote
7774 // the explicit instantiation, rather than formatting the name based
7775 // on the "canonical" representation used to store the template
7776 // arguments in the specialization.
John McCalle78aac42010-03-10 03:28:59 +00007777 TypeSourceInfo *WrittenTy
7778 = Context.getTemplateSpecializationTypeInfo(Name, TemplateNameLoc,
7779 TemplateArgs,
Douglas Gregora1f49972009-05-13 00:25:59 +00007780 Context.getTypeDeclType(Specialization));
7781 Specialization->setTypeAsWritten(WrittenTy);
Douglas Gregora1f49972009-05-13 00:25:59 +00007782
Abramo Bagnara8075c852010-06-12 07:44:57 +00007783 // Set source locations for keywords.
7784 Specialization->setExternLoc(ExternLoc);
7785 Specialization->setTemplateKeywordLoc(TemplateLoc);
Argyrios Kyrtzidisd798c052016-07-15 18:11:33 +00007786 Specialization->setBraceRange(SourceRange());
Abramo Bagnara8075c852010-06-12 07:44:57 +00007787
Shoaib Meenai5adfb5a2017-01-13 01:28:34 +00007788 bool PreviouslyDLLExported = Specialization->hasAttr<DLLExportAttr>();
Rafael Espindola0b062072012-01-03 06:04:21 +00007789 if (Attr)
7790 ProcessDeclAttributeList(S, Specialization, Attr);
7791
Abramo Bagnara8075c852010-06-12 07:44:57 +00007792 // Add the explicit instantiation into its lexical context. However,
7793 // since explicit instantiations are never found by name lookup, we
7794 // just put it into the declaration context directly.
7795 Specialization->setLexicalDeclContext(CurContext);
7796 CurContext->addDecl(Specialization);
7797
7798 // Syntax is now OK, so return if it has no other effect on semantics.
7799 if (HasNoEffect) {
7800 // Set the template specialization kind.
7801 Specialization->setTemplateSpecializationKind(TSK);
John McCall48871652010-08-21 09:40:31 +00007802 return Specialization;
Douglas Gregor0681a352009-11-25 06:01:46 +00007803 }
Douglas Gregora1f49972009-05-13 00:25:59 +00007804
7805 // C++ [temp.explicit]p3:
Douglas Gregora1f49972009-05-13 00:25:59 +00007806 // A definition of a class template or class member template
7807 // shall be in scope at the point of the explicit instantiation of
7808 // the class template or class member template.
7809 //
7810 // This check comes when we actually try to perform the
7811 // instantiation.
Douglas Gregor12e49d32009-10-15 22:53:21 +00007812 ClassTemplateSpecializationDecl *Def
7813 = cast_or_null<ClassTemplateSpecializationDecl>(
Douglas Gregor0a5a2212010-02-11 01:04:33 +00007814 Specialization->getDefinition());
Douglas Gregor12e49d32009-10-15 22:53:21 +00007815 if (!Def)
Douglas Gregoref6ab412009-10-27 06:26:26 +00007816 InstantiateClassTemplateSpecialization(TemplateNameLoc, Specialization, TSK);
Abramo Bagnara8075c852010-06-12 07:44:57 +00007817 else if (TSK == TSK_ExplicitInstantiationDefinition) {
Douglas Gregor88d292c2010-05-13 16:44:06 +00007818 MarkVTableUsed(TemplateNameLoc, Specialization, true);
Abramo Bagnara8075c852010-06-12 07:44:57 +00007819 Specialization->setPointOfInstantiation(Def->getPointOfInstantiation());
7820 }
Douglas Gregor88d292c2010-05-13 16:44:06 +00007821
Douglas Gregor1d957a32009-10-27 18:42:08 +00007822 // Instantiate the members of this class template specialization.
7823 Def = cast_or_null<ClassTemplateSpecializationDecl>(
Douglas Gregor0a5a2212010-02-11 01:04:33 +00007824 Specialization->getDefinition());
Rafael Espindola8d04f062010-03-22 23:12:48 +00007825 if (Def) {
Rafael Espindolafa1708fd2010-03-23 19:55:22 +00007826 TemplateSpecializationKind Old_TSK = Def->getTemplateSpecializationKind();
Rafael Espindolafa1708fd2010-03-23 19:55:22 +00007827 // Fix a TSK_ExplicitInstantiationDeclaration followed by a
7828 // TSK_ExplicitInstantiationDefinition
7829 if (Old_TSK == TSK_ExplicitInstantiationDeclaration &&
Hans Wennborga86a83b2016-05-26 19:42:56 +00007830 (TSK == TSK_ExplicitInstantiationDefinition ||
7831 DLLImportExplicitInstantiationDef)) {
Richard Smitheb36ddf2014-04-24 22:45:46 +00007832 // FIXME: Need to notify the ASTMutationListener that we did this.
Rafael Espindolafa1708fd2010-03-23 19:55:22 +00007833 Def->setTemplateSpecializationKind(TSK);
Rafael Espindola8d04f062010-03-22 23:12:48 +00007834
Hans Wennborgc0875502015-06-09 00:39:05 +00007835 if (!getDLLAttr(Def) && getDLLAttr(Specialization) &&
Shoaib Meenaiab3f96c2016-11-09 23:52:20 +00007836 (Context.getTargetInfo().getCXXABI().isMicrosoft() ||
7837 Context.getTargetInfo().getTriple().isWindowsItaniumEnvironment())) {
Hans Wennborgc0875502015-06-09 00:39:05 +00007838 // In the MS ABI, an explicit instantiation definition can add a dll
7839 // attribute to a template with a previous instantiation declaration.
7840 // MinGW doesn't allow this.
Hans Wennborg17f9b442015-05-27 00:06:45 +00007841 auto *A = cast<InheritableAttr>(
7842 getDLLAttr(Specialization)->clone(getASTContext()));
7843 A->setInherited(true);
7844 Def->addAttr(A);
Shoaib Meenaifc78d7c2016-12-05 18:01:35 +00007845 dllExportImportClassTemplateSpecialization(*this, Def);
Hans Wennborg17f9b442015-05-27 00:06:45 +00007846 }
7847 }
7848
Shoaib Meenaifc78d7c2016-12-05 18:01:35 +00007849 // Fix a TSK_ImplicitInstantiation followed by a
7850 // TSK_ExplicitInstantiationDefinition
Shoaib Meenai5adfb5a2017-01-13 01:28:34 +00007851 bool NewlyDLLExported =
7852 !PreviouslyDLLExported && Specialization->hasAttr<DLLExportAttr>();
7853 if (Old_TSK == TSK_ImplicitInstantiation && NewlyDLLExported &&
Shoaib Meenaifc78d7c2016-12-05 18:01:35 +00007854 (Context.getTargetInfo().getCXXABI().isMicrosoft() ||
7855 Context.getTargetInfo().getTriple().isWindowsItaniumEnvironment())) {
7856 // In the MS ABI, an explicit instantiation definition can add a dll
7857 // attribute to a template with a previous implicit instantiation.
7858 // MinGW doesn't allow this. We limit clang to only adding dllexport, to
7859 // avoid potentially strange codegen behavior. For example, if we extend
7860 // this conditional to dllimport, and we have a source file calling a
7861 // method on an implicitly instantiated template class instance and then
7862 // declaring a dllimport explicit instantiation definition for the same
7863 // template class, the codegen for the method call will not respect the
7864 // dllimport, while it will with cl. The Def will already have the DLL
7865 // attribute, since the Def and Specialization will be the same in the
7866 // case of Old_TSK == TSK_ImplicitInstantiation, and we already added the
7867 // attribute to the Specialization; we just need to make it take effect.
7868 assert(Def == Specialization &&
7869 "Def and Specialization should match for implicit instantiation");
7870 dllExportImportClassTemplateSpecialization(*this, Def);
7871 }
7872
Argyrios Kyrtzidis322d8532015-09-11 01:44:56 +00007873 // Set the template specialization kind. Make sure it is set before
7874 // instantiating the members which will trigger ASTConsumer callbacks.
7875 Specialization->setTemplateSpecializationKind(TSK);
Douglas Gregor12e49d32009-10-15 22:53:21 +00007876 InstantiateClassTemplateSpecializationMembers(TemplateNameLoc, Def, TSK);
Argyrios Kyrtzidis322d8532015-09-11 01:44:56 +00007877 } else {
7878
7879 // Set the template specialization kind.
7880 Specialization->setTemplateSpecializationKind(TSK);
Rafael Espindola8d04f062010-03-22 23:12:48 +00007881 }
Douglas Gregora1f49972009-05-13 00:25:59 +00007882
John McCall48871652010-08-21 09:40:31 +00007883 return Specialization;
Douglas Gregora1f49972009-05-13 00:25:59 +00007884}
7885
Douglas Gregor2ec748c2009-05-14 00:28:11 +00007886// Explicit instantiation of a member class of a class template.
John McCall48871652010-08-21 09:40:31 +00007887DeclResult
Mike Stump11289f42009-09-09 15:08:12 +00007888Sema::ActOnExplicitInstantiation(Scope *S,
Douglas Gregor43e75172009-09-04 06:33:52 +00007889 SourceLocation ExternLoc,
7890 SourceLocation TemplateLoc,
Mike Stump11289f42009-09-09 15:08:12 +00007891 unsigned TagSpec,
Douglas Gregor2ec748c2009-05-14 00:28:11 +00007892 SourceLocation KWLoc,
Jeffrey Yasskinc76498d2010-04-08 16:38:48 +00007893 CXXScopeSpec &SS,
Douglas Gregor2ec748c2009-05-14 00:28:11 +00007894 IdentifierInfo *Name,
7895 SourceLocation NameLoc,
7896 AttributeList *Attr) {
7897
Douglas Gregord6ab8742009-05-28 23:31:59 +00007898 bool Owned = false;
John McCall7f41d982009-09-11 04:59:25 +00007899 bool IsDependent = false;
John McCallfaf5fb42010-08-26 23:41:50 +00007900 Decl *TagD = ActOnTag(S, TagSpec, Sema::TUK_Reference,
John McCall48871652010-08-21 09:40:31 +00007901 KWLoc, SS, Name, NameLoc, Attr, AS_none,
Douglas Gregor2820e692011-09-09 19:05:14 +00007902 /*ModulePrivateLoc=*/SourceLocation(),
Benjamin Kramercc4c49d2012-08-23 23:38:35 +00007903 MultiTemplateParamsArg(), Owned, IsDependent,
Richard Smith649c7b062014-01-08 00:56:48 +00007904 SourceLocation(), false, TypeResult(),
7905 /*IsTypeSpecifier*/false);
John McCall7f41d982009-09-11 04:59:25 +00007906 assert(!IsDependent && "explicit instantiation of dependent name not yet handled");
7907
Douglas Gregor2ec748c2009-05-14 00:28:11 +00007908 if (!TagD)
7909 return true;
7910
John McCall48871652010-08-21 09:40:31 +00007911 TagDecl *Tag = cast<TagDecl>(TagD);
Richard Smith7d137e32012-03-23 03:33:32 +00007912 assert(!Tag->isEnum() && "shouldn't see enumerations here");
Douglas Gregor2ec748c2009-05-14 00:28:11 +00007913
Douglas Gregorb8006faf2009-05-27 17:30:49 +00007914 if (Tag->isInvalidDecl())
7915 return true;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007916
Douglas Gregor2ec748c2009-05-14 00:28:11 +00007917 CXXRecordDecl *Record = cast<CXXRecordDecl>(Tag);
7918 CXXRecordDecl *Pattern = Record->getInstantiatedFromMemberClass();
7919 if (!Pattern) {
7920 Diag(TemplateLoc, diag::err_explicit_instantiation_nontemplate_type)
7921 << Context.getTypeDeclType(Record);
7922 Diag(Record->getLocation(), diag::note_nontemplate_decl_here);
7923 return true;
7924 }
7925
Douglas Gregore47f5a72009-10-14 23:41:34 +00007926 // C++0x [temp.explicit]p2:
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007927 // If the explicit instantiation is for a class or member class, the
7928 // elaborated-type-specifier in the declaration shall include a
Douglas Gregore47f5a72009-10-14 23:41:34 +00007929 // simple-template-id.
7930 //
7931 // C++98 has the same restriction, just worded differently.
7932 if (!ScopeSpecifierHasTemplateId(SS))
Douglas Gregor010815a2010-06-16 16:26:47 +00007933 Diag(TemplateLoc, diag::ext_explicit_instantiation_without_qualified_id)
Douglas Gregore47f5a72009-10-14 23:41:34 +00007934 << Record << SS.getRange();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007935
Douglas Gregore47f5a72009-10-14 23:41:34 +00007936 // C++0x [temp.explicit]p2:
7937 // There are two forms of explicit instantiation: an explicit instantiation
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007938 // definition and an explicit instantiation declaration. An explicit
Douglas Gregore47f5a72009-10-14 23:41:34 +00007939 // instantiation declaration begins with the extern keyword. [...]
Douglas Gregor5d851972009-10-14 21:46:58 +00007940 TemplateSpecializationKind TSK
7941 = ExternLoc.isInvalid()? TSK_ExplicitInstantiationDefinition
7942 : TSK_ExplicitInstantiationDeclaration;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007943
Douglas Gregor2ec748c2009-05-14 00:28:11 +00007944 // C++0x [temp.explicit]p2:
7945 // [...] An explicit instantiation shall appear in an enclosing
7946 // namespace of its template. [...]
7947 //
7948 // This is C++ DR 275.
Douglas Gregore47f5a72009-10-14 23:41:34 +00007949 CheckExplicitInstantiationScope(*this, Record, NameLoc, true);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007950
Douglas Gregord6ba93d2009-10-15 15:54:05 +00007951 // Verify that it is okay to explicitly instantiate here.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007952 CXXRecordDecl *PrevDecl
Douglas Gregorec9fd132012-01-14 16:38:05 +00007953 = cast_or_null<CXXRecordDecl>(Record->getPreviousDecl());
Douglas Gregor0a5a2212010-02-11 01:04:33 +00007954 if (!PrevDecl && Record->getDefinition())
Douglas Gregor8f003d02009-10-15 18:07:02 +00007955 PrevDecl = Record;
7956 if (PrevDecl) {
Douglas Gregord6ba93d2009-10-15 15:54:05 +00007957 MemberSpecializationInfo *MSInfo = PrevDecl->getMemberSpecializationInfo();
Abramo Bagnara8075c852010-06-12 07:44:57 +00007958 bool HasNoEffect = false;
Douglas Gregord6ba93d2009-10-15 15:54:05 +00007959 assert(MSInfo && "No member specialization information?");
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007960 if (CheckSpecializationInstantiationRedecl(TemplateLoc, TSK,
Douglas Gregord6ba93d2009-10-15 15:54:05 +00007961 PrevDecl,
7962 MSInfo->getTemplateSpecializationKind(),
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007963 MSInfo->getPointOfInstantiation(),
Abramo Bagnara8075c852010-06-12 07:44:57 +00007964 HasNoEffect))
Douglas Gregord6ba93d2009-10-15 15:54:05 +00007965 return true;
Abramo Bagnara8075c852010-06-12 07:44:57 +00007966 if (HasNoEffect)
Douglas Gregord6ba93d2009-10-15 15:54:05 +00007967 return TagD;
7968 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007969
Douglas Gregor12e49d32009-10-15 22:53:21 +00007970 CXXRecordDecl *RecordDef
Douglas Gregor0a5a2212010-02-11 01:04:33 +00007971 = cast_or_null<CXXRecordDecl>(Record->getDefinition());
Douglas Gregor12e49d32009-10-15 22:53:21 +00007972 if (!RecordDef) {
Douglas Gregor68edf132009-10-15 12:53:22 +00007973 // C++ [temp.explicit]p3:
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007974 // A definition of a member class of a class template shall be in scope
Douglas Gregor68edf132009-10-15 12:53:22 +00007975 // at the point of an explicit instantiation of the member class.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007976 CXXRecordDecl *Def
Douglas Gregor0a5a2212010-02-11 01:04:33 +00007977 = cast_or_null<CXXRecordDecl>(Pattern->getDefinition());
Douglas Gregor68edf132009-10-15 12:53:22 +00007978 if (!Def) {
Douglas Gregora8b89d22009-10-15 14:05:49 +00007979 Diag(TemplateLoc, diag::err_explicit_instantiation_undefined_member)
7980 << 0 << Record->getDeclName() << Record->getDeclContext();
Douglas Gregor68edf132009-10-15 12:53:22 +00007981 Diag(Pattern->getLocation(), diag::note_forward_declaration)
7982 << Pattern;
7983 return true;
Douglas Gregor1d957a32009-10-27 18:42:08 +00007984 } else {
7985 if (InstantiateClass(NameLoc, Record, Def,
7986 getTemplateInstantiationArgs(Record),
7987 TSK))
7988 return true;
7989
Douglas Gregor0a5a2212010-02-11 01:04:33 +00007990 RecordDef = cast_or_null<CXXRecordDecl>(Record->getDefinition());
Douglas Gregor1d957a32009-10-27 18:42:08 +00007991 if (!RecordDef)
7992 return true;
7993 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007994 }
7995
Douglas Gregor1d957a32009-10-27 18:42:08 +00007996 // Instantiate all of the members of the class.
7997 InstantiateClassMembers(NameLoc, RecordDef,
7998 getTemplateInstantiationArgs(Record), TSK);
Douglas Gregor2ec748c2009-05-14 00:28:11 +00007999
Douglas Gregor88d292c2010-05-13 16:44:06 +00008000 if (TSK == TSK_ExplicitInstantiationDefinition)
8001 MarkVTableUsed(NameLoc, RecordDef, true);
8002
Mike Stump87c57ac2009-05-16 07:39:55 +00008003 // FIXME: We don't have any representation for explicit instantiations of
8004 // member classes. Such a representation is not needed for compilation, but it
8005 // should be available for clients that want to see all of the declarations in
8006 // the source code.
Douglas Gregor2ec748c2009-05-14 00:28:11 +00008007 return TagD;
8008}
8009
John McCallfaf5fb42010-08-26 23:41:50 +00008010DeclResult Sema::ActOnExplicitInstantiation(Scope *S,
8011 SourceLocation ExternLoc,
8012 SourceLocation TemplateLoc,
8013 Declarator &D) {
Douglas Gregor450f00842009-09-25 18:43:00 +00008014 // Explicit instantiations always require a name.
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00008015 // TODO: check if/when DNInfo should replace Name.
8016 DeclarationNameInfo NameInfo = GetNameForDeclarator(D);
8017 DeclarationName Name = NameInfo.getName();
Douglas Gregor450f00842009-09-25 18:43:00 +00008018 if (!Name) {
8019 if (!D.isInvalidType())
Daniel Dunbar62ee6412012-03-09 18:35:03 +00008020 Diag(D.getDeclSpec().getLocStart(),
Douglas Gregor450f00842009-09-25 18:43:00 +00008021 diag::err_explicit_instantiation_requires_name)
8022 << D.getDeclSpec().getSourceRange()
8023 << D.getSourceRange();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00008024
Douglas Gregor450f00842009-09-25 18:43:00 +00008025 return true;
8026 }
8027
8028 // The scope passed in may not be a decl scope. Zip up the scope tree until
8029 // we find one that is.
8030 while ((S->getFlags() & Scope::DeclScope) == 0 ||
8031 (S->getFlags() & Scope::TemplateParamScope) != 0)
8032 S = S->getParent();
8033
8034 // Determine the type of the declaration.
John McCall8cb7bdf2010-06-04 23:28:52 +00008035 TypeSourceInfo *T = GetTypeForDeclarator(D, S);
8036 QualType R = T->getType();
Douglas Gregor450f00842009-09-25 18:43:00 +00008037 if (R.isNull())
8038 return true;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00008039
Douglas Gregor781ba6e2011-05-21 18:53:30 +00008040 // C++ [dcl.stc]p1:
Simon Pilgrim6905d222016-12-30 22:55:33 +00008041 // A storage-class-specifier shall not be specified in [...] an explicit
Douglas Gregor781ba6e2011-05-21 18:53:30 +00008042 // instantiation (14.7.2) directive.
Douglas Gregor450f00842009-09-25 18:43:00 +00008043 if (D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_typedef) {
Douglas Gregor450f00842009-09-25 18:43:00 +00008044 Diag(D.getIdentifierLoc(), diag::err_explicit_instantiation_of_typedef)
8045 << Name;
8046 return true;
Simon Pilgrim6905d222016-12-30 22:55:33 +00008047 } else if (D.getDeclSpec().getStorageClassSpec()
Douglas Gregor781ba6e2011-05-21 18:53:30 +00008048 != DeclSpec::SCS_unspecified) {
8049 // Complain about then remove the storage class specifier.
8050 Diag(D.getIdentifierLoc(), diag::err_explicit_instantiation_storage_class)
8051 << FixItHint::CreateRemoval(D.getDeclSpec().getStorageClassSpecLoc());
Simon Pilgrim6905d222016-12-30 22:55:33 +00008052
Douglas Gregor781ba6e2011-05-21 18:53:30 +00008053 D.getMutableDeclSpec().ClearStorageClassSpecs();
Douglas Gregor450f00842009-09-25 18:43:00 +00008054 }
8055
Douglas Gregor3c74d412009-10-14 20:14:33 +00008056 // C++0x [temp.explicit]p1:
8057 // [...] An explicit instantiation of a function template shall not use the
8058 // inline or constexpr specifiers.
8059 // Presumably, this also applies to member functions of class templates as
8060 // well.
Richard Smith83c19292011-10-18 03:44:03 +00008061 if (D.getDeclSpec().isInlineSpecified())
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00008062 Diag(D.getDeclSpec().getInlineSpecLoc(),
Richard Smith2bf7fdb2013-01-02 11:42:31 +00008063 getLangOpts().CPlusPlus11 ?
Richard Smith83c19292011-10-18 03:44:03 +00008064 diag::err_explicit_instantiation_inline :
8065 diag::warn_explicit_instantiation_inline_0x)
Richard Smith465841e2011-10-14 19:58:02 +00008066 << FixItHint::CreateRemoval(D.getDeclSpec().getInlineSpecLoc());
Larisse Voufo39a1e502013-08-06 01:03:05 +00008067 if (D.getDeclSpec().isConstexprSpecified() && R->isFunctionType())
Richard Smith465841e2011-10-14 19:58:02 +00008068 // FIXME: Add a fix-it to remove the 'constexpr' and add a 'const' if one is
8069 // not already specified.
8070 Diag(D.getDeclSpec().getConstexprSpecLoc(),
8071 diag::err_explicit_instantiation_constexpr);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00008072
Nathan Wilsonde498452016-02-08 05:34:00 +00008073 // C++ Concepts TS [dcl.spec.concept]p1: The concept specifier shall be
8074 // applied only to the definition of a function template or variable template,
8075 // declared in namespace scope.
8076 if (D.getDeclSpec().isConceptSpecified()) {
8077 Diag(D.getDeclSpec().getConceptSpecLoc(),
8078 diag::err_concept_specified_specialization) << 0;
8079 return true;
8080 }
8081
Douglas Gregore47f5a72009-10-14 23:41:34 +00008082 // C++0x [temp.explicit]p2:
8083 // There are two forms of explicit instantiation: an explicit instantiation
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00008084 // definition and an explicit instantiation declaration. An explicit
8085 // instantiation declaration begins with the extern keyword. [...]
Douglas Gregor450f00842009-09-25 18:43:00 +00008086 TemplateSpecializationKind TSK
8087 = ExternLoc.isInvalid()? TSK_ExplicitInstantiationDefinition
8088 : TSK_ExplicitInstantiationDeclaration;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00008089
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00008090 LookupResult Previous(*this, NameInfo, LookupOrdinaryName);
John McCall27b18f82009-11-17 02:14:36 +00008091 LookupParsedName(Previous, S, &D.getCXXScopeSpec());
Douglas Gregor450f00842009-09-25 18:43:00 +00008092
8093 if (!R->isFunctionType()) {
8094 // C++ [temp.explicit]p1:
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00008095 // A [...] static data member of a class template can be explicitly
8096 // instantiated from the member definition associated with its class
Douglas Gregor450f00842009-09-25 18:43:00 +00008097 // template.
Larisse Voufo39a1e502013-08-06 01:03:05 +00008098 // C++1y [temp.explicit]p1:
8099 // A [...] variable [...] template specialization can be explicitly
8100 // instantiated from its template.
John McCall27b18f82009-11-17 02:14:36 +00008101 if (Previous.isAmbiguous())
8102 return true;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00008103
John McCall67c00872009-12-02 08:25:40 +00008104 VarDecl *Prev = Previous.getAsSingle<VarDecl>();
Larisse Voufo39a1e502013-08-06 01:03:05 +00008105 VarTemplateDecl *PrevTemplate = Previous.getAsSingle<VarTemplateDecl>();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00008106
Larisse Voufo39a1e502013-08-06 01:03:05 +00008107 if (!PrevTemplate) {
8108 if (!Prev || !Prev->isStaticDataMember()) {
8109 // We expect to see a data data member here.
8110 Diag(D.getIdentifierLoc(), diag::err_explicit_instantiation_not_known)
8111 << Name;
8112 for (LookupResult::iterator P = Previous.begin(), PEnd = Previous.end();
8113 P != PEnd; ++P)
8114 Diag((*P)->getLocation(), diag::note_explicit_instantiation_here);
8115 return true;
8116 }
8117
8118 if (!Prev->getInstantiatedFromStaticDataMember()) {
8119 // FIXME: Check for explicit specialization?
8120 Diag(D.getIdentifierLoc(),
8121 diag::err_explicit_instantiation_data_member_not_instantiated)
8122 << Prev;
8123 Diag(Prev->getLocation(), diag::note_explicit_instantiation_here);
8124 // FIXME: Can we provide a note showing where this was declared?
8125 return true;
8126 }
8127 } else {
8128 // Explicitly instantiate a variable template.
8129
8130 // C++1y [dcl.spec.auto]p6:
8131 // ... A program that uses auto or decltype(auto) in a context not
8132 // explicitly allowed in this section is ill-formed.
8133 //
8134 // This includes auto-typed variable template instantiations.
8135 if (R->isUndeducedType()) {
8136 Diag(T->getTypeLoc().getLocStart(),
8137 diag::err_auto_not_allowed_var_inst);
8138 return true;
8139 }
8140
Richard Smithef985ac2013-09-18 02:10:12 +00008141 if (D.getName().getKind() != UnqualifiedId::IK_TemplateId) {
8142 // C++1y [temp.explicit]p3:
8143 // If the explicit instantiation is for a variable, the unqualified-id
8144 // in the declaration shall be a template-id.
8145 Diag(D.getIdentifierLoc(),
8146 diag::err_explicit_instantiation_without_template_id)
8147 << PrevTemplate;
8148 Diag(PrevTemplate->getLocation(),
8149 diag::note_explicit_instantiation_here);
8150 return true;
Larisse Voufo39a1e502013-08-06 01:03:05 +00008151 }
8152
Nathan Wilson83839122016-04-09 02:55:27 +00008153 // C++ Concepts TS [dcl.spec.concept]p7: A program shall not declare an
8154 // explicit instantiation (14.8.2) [...] of a concept definition.
8155 if (PrevTemplate->isConcept()) {
8156 Diag(D.getIdentifierLoc(), diag::err_concept_specialized)
8157 << 1 /*variable*/ << 0 /*explicitly instantiated*/;
8158 Diag(PrevTemplate->getLocation(), diag::note_previous_declaration);
8159 return true;
8160 }
8161
Richard Smithef985ac2013-09-18 02:10:12 +00008162 // Translate the parser's template argument list into our AST format.
Richard Smith4b55a9c2014-04-17 03:29:33 +00008163 TemplateArgumentListInfo TemplateArgs =
8164 makeTemplateArgumentListInfo(*this, *D.getName().TemplateId);
Richard Smithef985ac2013-09-18 02:10:12 +00008165
Larisse Voufo39a1e502013-08-06 01:03:05 +00008166 DeclResult Res = CheckVarTemplateId(PrevTemplate, TemplateLoc,
8167 D.getIdentifierLoc(), TemplateArgs);
8168 if (Res.isInvalid())
8169 return true;
8170
8171 // Ignore access control bits, we don't need them for redeclaration
8172 // checking.
8173 Prev = cast<VarDecl>(Res.get());
Douglas Gregor450f00842009-09-25 18:43:00 +00008174 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00008175
Douglas Gregore47f5a72009-10-14 23:41:34 +00008176 // C++0x [temp.explicit]p2:
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00008177 // If the explicit instantiation is for a member function, a member class
Douglas Gregore47f5a72009-10-14 23:41:34 +00008178 // or a static data member of a class template specialization, the name of
8179 // the class template specialization in the qualified-id for the member
8180 // name shall be a simple-template-id.
8181 //
8182 // C++98 has the same restriction, just worded differently.
Larisse Voufo39a1e502013-08-06 01:03:05 +00008183 //
Richard Smith5977d872013-09-18 21:55:14 +00008184 // This does not apply to variable template specializations, where the
8185 // template-id is in the unqualified-id instead.
8186 if (!ScopeSpecifierHasTemplateId(D.getCXXScopeSpec()) && !PrevTemplate)
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00008187 Diag(D.getIdentifierLoc(),
Douglas Gregor010815a2010-06-16 16:26:47 +00008188 diag::ext_explicit_instantiation_without_qualified_id)
Douglas Gregore47f5a72009-10-14 23:41:34 +00008189 << Prev << D.getCXXScopeSpec().getRange();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00008190
Douglas Gregore47f5a72009-10-14 23:41:34 +00008191 // Check the scope of this explicit instantiation.
8192 CheckExplicitInstantiationScope(*this, Prev, D.getIdentifierLoc(), true);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00008193
Douglas Gregord6ba93d2009-10-15 15:54:05 +00008194 // Verify that it is okay to explicitly instantiate here.
Richard Smith8809a0c2013-09-27 20:14:12 +00008195 TemplateSpecializationKind PrevTSK = Prev->getTemplateSpecializationKind();
8196 SourceLocation POI = Prev->getPointOfInstantiation();
Abramo Bagnara8075c852010-06-12 07:44:57 +00008197 bool HasNoEffect = false;
Douglas Gregor1d957a32009-10-27 18:42:08 +00008198 if (CheckSpecializationInstantiationRedecl(D.getIdentifierLoc(), TSK, Prev,
Larisse Voufo39a1e502013-08-06 01:03:05 +00008199 PrevTSK, POI, HasNoEffect))
Douglas Gregord6ba93d2009-10-15 15:54:05 +00008200 return true;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00008201
Larisse Voufo39a1e502013-08-06 01:03:05 +00008202 if (!HasNoEffect) {
8203 // Instantiate static data member or variable template.
8204
8205 Prev->setTemplateSpecializationKind(TSK, D.getIdentifierLoc());
8206 if (PrevTemplate) {
8207 // Merge attributes.
8208 if (AttributeList *Attr = D.getDeclSpec().getAttributes().getList())
8209 ProcessDeclAttributeList(S, Prev, Attr);
8210 }
8211 if (TSK == TSK_ExplicitInstantiationDefinition)
8212 InstantiateVariableDefinition(D.getIdentifierLoc(), Prev);
8213 }
8214
8215 // Check the new variable specialization against the parsed input.
8216 if (PrevTemplate && Prev && !Context.hasSameType(Prev->getType(), R)) {
8217 Diag(T->getTypeLoc().getLocStart(),
8218 diag::err_invalid_var_template_spec_type)
8219 << 0 << PrevTemplate << R << Prev->getType();
8220 Diag(PrevTemplate->getLocation(), diag::note_template_declared_here)
8221 << 2 << PrevTemplate->getDeclName();
8222 return true;
8223 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00008224
Douglas Gregor450f00842009-09-25 18:43:00 +00008225 // FIXME: Create an ExplicitInstantiation node?
Craig Topperc3ec1492014-05-26 06:22:03 +00008226 return (Decl*) nullptr;
Douglas Gregor450f00842009-09-25 18:43:00 +00008227 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00008228
8229 // If the declarator is a template-id, translate the parser's template
Douglas Gregor0e876e02009-09-25 23:53:26 +00008230 // argument list into our AST format.
Douglas Gregord90fd522009-09-25 21:45:23 +00008231 bool HasExplicitTemplateArgs = false;
John McCall6b51f282009-11-23 01:53:49 +00008232 TemplateArgumentListInfo TemplateArgs;
Douglas Gregor7861a802009-11-03 01:35:08 +00008233 if (D.getName().getKind() == UnqualifiedId::IK_TemplateId) {
Richard Smith4b55a9c2014-04-17 03:29:33 +00008234 TemplateArgs = makeTemplateArgumentListInfo(*this, *D.getName().TemplateId);
Douglas Gregord90fd522009-09-25 21:45:23 +00008235 HasExplicitTemplateArgs = true;
8236 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00008237
Douglas Gregor450f00842009-09-25 18:43:00 +00008238 // C++ [temp.explicit]p1:
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00008239 // A [...] function [...] can be explicitly instantiated from its template.
8240 // A member function [...] of a class template can be explicitly
8241 // instantiated from the member definition associated with its class
Douglas Gregor450f00842009-09-25 18:43:00 +00008242 // template.
John McCall58cc69d2010-01-27 01:50:18 +00008243 UnresolvedSet<8> Matches;
Artem Belevich13e9b4d2016-12-07 19:27:16 +00008244 AttributeList *Attr = D.getDeclSpec().getAttributes().getList();
Larisse Voufo98b20f12013-07-19 23:00:19 +00008245 TemplateSpecCandidateSet FailedCandidates(D.getIdentifierLoc());
Douglas Gregor450f00842009-09-25 18:43:00 +00008246 for (LookupResult::iterator P = Previous.begin(), PEnd = Previous.end();
8247 P != PEnd; ++P) {
8248 NamedDecl *Prev = *P;
Douglas Gregord90fd522009-09-25 21:45:23 +00008249 if (!HasExplicitTemplateArgs) {
8250 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(Prev)) {
Richard Smithbaa47832016-12-01 02:11:49 +00008251 QualType Adjusted = adjustCCAndNoReturn(R, Method->getType(),
8252 /*AdjustExceptionSpec*/true);
Rafael Espindola6edca7d2013-12-01 16:54:29 +00008253 if (Context.hasSameUnqualifiedType(Method->getType(), Adjusted)) {
Douglas Gregord90fd522009-09-25 21:45:23 +00008254 Matches.clear();
Douglas Gregorea0a0a92010-01-11 18:40:55 +00008255
John McCall58cc69d2010-01-27 01:50:18 +00008256 Matches.addDecl(Method, P.getAccess());
Douglas Gregorea0a0a92010-01-11 18:40:55 +00008257 if (Method->getTemplateSpecializationKind() == TSK_Undeclared)
8258 break;
Douglas Gregord90fd522009-09-25 21:45:23 +00008259 }
Douglas Gregor450f00842009-09-25 18:43:00 +00008260 }
8261 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00008262
Douglas Gregor450f00842009-09-25 18:43:00 +00008263 FunctionTemplateDecl *FunTmpl = dyn_cast<FunctionTemplateDecl>(Prev);
8264 if (!FunTmpl)
8265 continue;
8266
Larisse Voufo98b20f12013-07-19 23:00:19 +00008267 TemplateDeductionInfo Info(FailedCandidates.getLocation());
Craig Topperc3ec1492014-05-26 06:22:03 +00008268 FunctionDecl *Specialization = nullptr;
Douglas Gregor450f00842009-09-25 18:43:00 +00008269 if (TemplateDeductionResult TDK
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00008270 = DeduceTemplateArguments(FunTmpl,
Craig Topperc3ec1492014-05-26 06:22:03 +00008271 (HasExplicitTemplateArgs ? &TemplateArgs
8272 : nullptr),
Douglas Gregor450f00842009-09-25 18:43:00 +00008273 R, Specialization, Info)) {
Larisse Voufo98b20f12013-07-19 23:00:19 +00008274 // Keep track of almost-matches.
8275 FailedCandidates.addCandidate()
Richard Smithc2bebe92016-05-11 20:37:46 +00008276 .set(P.getPair(), FunTmpl->getTemplatedDecl(),
Larisse Voufo98b20f12013-07-19 23:00:19 +00008277 MakeDeductionFailureInfo(Context, TDK, Info));
Douglas Gregor450f00842009-09-25 18:43:00 +00008278 (void)TDK;
8279 continue;
8280 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00008281
Artem Belevich64135c32016-12-08 19:38:13 +00008282 // Target attributes are part of the cuda function signature, so
8283 // the cuda target of the instantiated function must match that of its
8284 // template. Given that C++ template deduction does not take
8285 // target attributes into account, we reject candidates here that
8286 // have a different target.
8287 if (LangOpts.CUDA &&
8288 IdentifyCUDATarget(Specialization,
8289 /* IgnoreImplicitHDAttributes = */ true) !=
8290 IdentifyCUDATarget(Attr)) {
8291 FailedCandidates.addCandidate().set(
8292 P.getPair(), FunTmpl->getTemplatedDecl(),
8293 MakeDeductionFailureInfo(Context, TDK_CUDATargetMismatch, Info));
8294 continue;
Artem Belevich13e9b4d2016-12-07 19:27:16 +00008295 }
8296
John McCall58cc69d2010-01-27 01:50:18 +00008297 Matches.addDecl(Specialization, P.getAccess());
Douglas Gregor450f00842009-09-25 18:43:00 +00008298 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00008299
Douglas Gregor450f00842009-09-25 18:43:00 +00008300 // Find the most specialized function template specialization.
Larisse Voufo98b20f12013-07-19 23:00:19 +00008301 UnresolvedSetIterator Result = getMostSpecialized(
Richard Smith35e1da22013-09-10 22:59:25 +00008302 Matches.begin(), Matches.end(), FailedCandidates,
Larisse Voufo98b20f12013-07-19 23:00:19 +00008303 D.getIdentifierLoc(),
8304 PDiag(diag::err_explicit_instantiation_not_known) << Name,
8305 PDiag(diag::err_explicit_instantiation_ambiguous) << Name,
8306 PDiag(diag::note_explicit_instantiation_candidate));
Douglas Gregor450f00842009-09-25 18:43:00 +00008307
John McCall58cc69d2010-01-27 01:50:18 +00008308 if (Result == Matches.end())
Douglas Gregor450f00842009-09-25 18:43:00 +00008309 return true;
John McCall58cc69d2010-01-27 01:50:18 +00008310
8311 // Ignore access control bits, we don't need them for redeclaration checking.
8312 FunctionDecl *Specialization = cast<FunctionDecl>(*Result);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00008313
Alexey Bataev73983912014-11-06 10:10:50 +00008314 // C++11 [except.spec]p4
8315 // In an explicit instantiation an exception-specification may be specified,
8316 // but is not required.
8317 // If an exception-specification is specified in an explicit instantiation
8318 // directive, it shall be compatible with the exception-specifications of
8319 // other declarations of that function.
8320 if (auto *FPT = R->getAs<FunctionProtoType>())
8321 if (FPT->hasExceptionSpec()) {
8322 unsigned DiagID =
8323 diag::err_mismatched_exception_spec_explicit_instantiation;
8324 if (getLangOpts().MicrosoftExt)
8325 DiagID = diag::ext_mismatched_exception_spec_explicit_instantiation;
8326 bool Result = CheckEquivalentExceptionSpec(
8327 PDiag(DiagID) << Specialization->getType(),
8328 PDiag(diag::note_explicit_instantiation_here),
8329 Specialization->getType()->getAs<FunctionProtoType>(),
8330 Specialization->getLocation(), FPT, D.getLocStart());
8331 // In Microsoft mode, mismatching exception specifications just cause a
8332 // warning.
8333 if (!getLangOpts().MicrosoftExt && Result)
8334 return true;
8335 }
8336
Douglas Gregor3d7e69f2009-10-15 17:21:20 +00008337 if (Specialization->getTemplateSpecializationKind() == TSK_Undeclared) {
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00008338 Diag(D.getIdentifierLoc(),
Douglas Gregor450f00842009-09-25 18:43:00 +00008339 diag::err_explicit_instantiation_member_function_not_instantiated)
8340 << Specialization
8341 << (Specialization->getTemplateSpecializationKind() ==
8342 TSK_ExplicitSpecialization);
8343 Diag(Specialization->getLocation(), diag::note_explicit_instantiation_here);
8344 return true;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00008345 }
8346
Douglas Gregorec9fd132012-01-14 16:38:05 +00008347 FunctionDecl *PrevDecl = Specialization->getPreviousDecl();
Douglas Gregor8f003d02009-10-15 18:07:02 +00008348 if (!PrevDecl && Specialization->isThisDeclarationADefinition())
8349 PrevDecl = Specialization;
8350
Douglas Gregor3d7e69f2009-10-15 17:21:20 +00008351 if (PrevDecl) {
Abramo Bagnara8075c852010-06-12 07:44:57 +00008352 bool HasNoEffect = false;
Douglas Gregor1d957a32009-10-27 18:42:08 +00008353 if (CheckSpecializationInstantiationRedecl(D.getIdentifierLoc(), TSK,
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00008354 PrevDecl,
8355 PrevDecl->getTemplateSpecializationKind(),
Douglas Gregor3d7e69f2009-10-15 17:21:20 +00008356 PrevDecl->getPointOfInstantiation(),
Abramo Bagnara8075c852010-06-12 07:44:57 +00008357 HasNoEffect))
Douglas Gregor3d7e69f2009-10-15 17:21:20 +00008358 return true;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00008359
Douglas Gregor3d7e69f2009-10-15 17:21:20 +00008360 // FIXME: We may still want to build some representation of this
8361 // explicit specialization.
Abramo Bagnara8075c852010-06-12 07:44:57 +00008362 if (HasNoEffect)
Craig Topperc3ec1492014-05-26 06:22:03 +00008363 return (Decl*) nullptr;
Douglas Gregor3d7e69f2009-10-15 17:21:20 +00008364 }
Anders Carlsson65e6d132009-11-24 05:34:41 +00008365
8366 Specialization->setTemplateSpecializationKind(TSK, D.getIdentifierLoc());
Rafael Espindola2aa7acf2012-01-04 05:40:59 +00008367 if (Attr)
8368 ProcessDeclAttributeList(S, Specialization, Attr);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00008369
Richard Smitheb36ddf2014-04-24 22:45:46 +00008370 if (Specialization->isDefined()) {
8371 // Let the ASTConsumer know that this function has been explicitly
8372 // instantiated now, and its linkage might have changed.
8373 Consumer.HandleTopLevelDecl(DeclGroupRef(Specialization));
8374 } else if (TSK == TSK_ExplicitInstantiationDefinition)
Chandler Carruthcfe41db2010-08-25 08:27:02 +00008375 InstantiateFunctionDefinition(D.getIdentifierLoc(), Specialization);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00008376
Douglas Gregore47f5a72009-10-14 23:41:34 +00008377 // C++0x [temp.explicit]p2:
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00008378 // If the explicit instantiation is for a member function, a member class
Douglas Gregore47f5a72009-10-14 23:41:34 +00008379 // or a static data member of a class template specialization, the name of
8380 // the class template specialization in the qualified-id for the member
8381 // name shall be a simple-template-id.
8382 //
8383 // C++98 has the same restriction, just worded differently.
Douglas Gregor3d7e69f2009-10-15 17:21:20 +00008384 FunctionTemplateDecl *FunTmpl = Specialization->getPrimaryTemplate();
Douglas Gregor7861a802009-11-03 01:35:08 +00008385 if (D.getName().getKind() != UnqualifiedId::IK_TemplateId && !FunTmpl &&
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00008386 D.getCXXScopeSpec().isSet() &&
Douglas Gregore47f5a72009-10-14 23:41:34 +00008387 !ScopeSpecifierHasTemplateId(D.getCXXScopeSpec()))
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00008388 Diag(D.getIdentifierLoc(),
Douglas Gregor010815a2010-06-16 16:26:47 +00008389 diag::ext_explicit_instantiation_without_qualified_id)
Douglas Gregore47f5a72009-10-14 23:41:34 +00008390 << Specialization << D.getCXXScopeSpec().getRange();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00008391
Nathan Wilson83839122016-04-09 02:55:27 +00008392 // C++ Concepts TS [dcl.spec.concept]p7: A program shall not declare an
8393 // explicit instantiation (14.8.2) [...] of a concept definition.
8394 if (FunTmpl && FunTmpl->isConcept() &&
8395 !D.getDeclSpec().isConceptSpecified()) {
8396 Diag(D.getIdentifierLoc(), diag::err_concept_specialized)
8397 << 0 /*function*/ << 0 /*explicitly instantiated*/;
8398 Diag(FunTmpl->getLocation(), diag::note_previous_declaration);
8399 return true;
8400 }
8401
Douglas Gregore47f5a72009-10-14 23:41:34 +00008402 CheckExplicitInstantiationScope(*this,
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00008403 FunTmpl? (NamedDecl *)FunTmpl
Douglas Gregore47f5a72009-10-14 23:41:34 +00008404 : Specialization->getInstantiatedFromMemberFunction(),
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00008405 D.getIdentifierLoc(),
Douglas Gregore47f5a72009-10-14 23:41:34 +00008406 D.getCXXScopeSpec().isSet());
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00008407
Douglas Gregor450f00842009-09-25 18:43:00 +00008408 // FIXME: Create some kind of ExplicitInstantiationDecl here.
Craig Topperc3ec1492014-05-26 06:22:03 +00008409 return (Decl*) nullptr;
Douglas Gregor450f00842009-09-25 18:43:00 +00008410}
8411
John McCallfaf5fb42010-08-26 23:41:50 +00008412TypeResult
John McCall7f41d982009-09-11 04:59:25 +00008413Sema::ActOnDependentTag(Scope *S, unsigned TagSpec, TagUseKind TUK,
8414 const CXXScopeSpec &SS, IdentifierInfo *Name,
8415 SourceLocation TagLoc, SourceLocation NameLoc) {
8416 // This has to hold, because SS is expected to be defined.
8417 assert(Name && "Expected a name in a dependent tag");
8418
Aaron Ballman4a979672014-01-03 13:56:08 +00008419 NestedNameSpecifier *NNS = SS.getScopeRep();
John McCall7f41d982009-09-11 04:59:25 +00008420 if (!NNS)
8421 return true;
8422
Abramo Bagnara6150c882010-05-11 21:36:43 +00008423 TagTypeKind Kind = TypeWithKeyword::getTagTypeKindForTypeSpec(TagSpec);
Daniel Dunbarf4b37e12010-04-01 16:50:48 +00008424
Douglas Gregorba41d012010-04-24 16:38:41 +00008425 if (TUK == TUK_Declaration || TUK == TUK_Definition) {
8426 Diag(NameLoc, diag::err_dependent_tag_decl)
Abramo Bagnara6150c882010-05-11 21:36:43 +00008427 << (TUK == TUK_Definition) << Kind << SS.getRange();
Douglas Gregorba41d012010-04-24 16:38:41 +00008428 return true;
8429 }
Abramo Bagnara6150c882010-05-11 21:36:43 +00008430
Douglas Gregore7c20652011-03-02 00:47:37 +00008431 // Create the resulting type.
Abramo Bagnara6150c882010-05-11 21:36:43 +00008432 ElaboratedTypeKeyword Kwd = TypeWithKeyword::getKeywordForTagTypeKind(Kind);
Douglas Gregore7c20652011-03-02 00:47:37 +00008433 QualType Result = Context.getDependentNameType(Kwd, NNS, Name);
Simon Pilgrim6905d222016-12-30 22:55:33 +00008434
Douglas Gregore7c20652011-03-02 00:47:37 +00008435 // Create type-source location information for this type.
8436 TypeLocBuilder TLB;
8437 DependentNameTypeLoc TL = TLB.push<DependentNameTypeLoc>(Result);
Abramo Bagnara9033e2b2012-02-06 19:09:27 +00008438 TL.setElaboratedKeywordLoc(TagLoc);
Douglas Gregore7c20652011-03-02 00:47:37 +00008439 TL.setQualifierLoc(SS.getWithLocInContext(Context));
8440 TL.setNameLoc(NameLoc);
8441 return CreateParsedType(Result, TLB.getTypeSourceInfo(Context, Result));
John McCall7f41d982009-09-11 04:59:25 +00008442}
8443
John McCallfaf5fb42010-08-26 23:41:50 +00008444TypeResult
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00008445Sema::ActOnTypenameType(Scope *S, SourceLocation TypenameLoc,
8446 const CXXScopeSpec &SS, const IdentifierInfo &II,
Douglas Gregorf7d77712010-06-16 22:31:08 +00008447 SourceLocation IdLoc) {
Douglas Gregor9cbc22b2011-02-28 22:42:13 +00008448 if (SS.isInvalid())
Douglas Gregor333489b2009-03-27 23:10:48 +00008449 return true;
Simon Pilgrim6905d222016-12-30 22:55:33 +00008450
Richard Smith0bf8a4922011-10-18 20:49:44 +00008451 if (TypenameLoc.isValid() && S && !S->getTemplateParamParent())
8452 Diag(TypenameLoc,
Richard Smith2bf7fdb2013-01-02 11:42:31 +00008453 getLangOpts().CPlusPlus11 ?
Richard Smith0bf8a4922011-10-18 20:49:44 +00008454 diag::warn_cxx98_compat_typename_outside_of_template :
8455 diag::ext_typename_outside_of_template)
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00008456 << FixItHint::CreateRemoval(TypenameLoc);
8457
Douglas Gregor3d0da5f2011-03-01 01:34:45 +00008458 NestedNameSpecifierLoc QualifierLoc = SS.getWithLocInContext(Context);
Douglas Gregor844cb502011-03-01 18:12:44 +00008459 QualType T = CheckTypenameType(TypenameLoc.isValid()? ETK_Typename : ETK_None,
8460 TypenameLoc, QualifierLoc, II, IdLoc);
Douglas Gregorfe3d7d02009-04-01 21:51:26 +00008461 if (T.isNull())
8462 return true;
John McCall99b2fe52010-04-29 23:50:39 +00008463
8464 TypeSourceInfo *TSI = Context.CreateTypeSourceInfo(T);
8465 if (isa<DependentNameType>(T)) {
David Blaikie6adc78e2013-02-18 22:06:02 +00008466 DependentNameTypeLoc TL = TSI->getTypeLoc().castAs<DependentNameTypeLoc>();
Abramo Bagnara9033e2b2012-02-06 19:09:27 +00008467 TL.setElaboratedKeywordLoc(TypenameLoc);
Douglas Gregor3d0da5f2011-03-01 01:34:45 +00008468 TL.setQualifierLoc(QualifierLoc);
John McCallf7bcc812010-05-28 23:32:21 +00008469 TL.setNameLoc(IdLoc);
John McCall99b2fe52010-04-29 23:50:39 +00008470 } else {
David Blaikie6adc78e2013-02-18 22:06:02 +00008471 ElaboratedTypeLoc TL = TSI->getTypeLoc().castAs<ElaboratedTypeLoc>();
Abramo Bagnara9033e2b2012-02-06 19:09:27 +00008472 TL.setElaboratedKeywordLoc(TypenameLoc);
Douglas Gregor844cb502011-03-01 18:12:44 +00008473 TL.setQualifierLoc(QualifierLoc);
David Blaikie6adc78e2013-02-18 22:06:02 +00008474 TL.getNamedTypeLoc().castAs<TypeSpecTypeLoc>().setNameLoc(IdLoc);
John McCall99b2fe52010-04-29 23:50:39 +00008475 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00008476
John McCallba7bf592010-08-24 05:47:05 +00008477 return CreateParsedType(T, TSI);
Douglas Gregor333489b2009-03-27 23:10:48 +00008478}
8479
John McCallfaf5fb42010-08-26 23:41:50 +00008480TypeResult
Abramo Bagnara48c05be2012-02-06 14:41:24 +00008481Sema::ActOnTypenameType(Scope *S,
8482 SourceLocation TypenameLoc,
8483 const CXXScopeSpec &SS,
8484 SourceLocation TemplateKWLoc,
Douglas Gregorb09518c2011-02-27 22:46:49 +00008485 TemplateTy TemplateIn,
8486 SourceLocation TemplateNameLoc,
8487 SourceLocation LAngleLoc,
8488 ASTTemplateArgsPtr TemplateArgsIn,
8489 SourceLocation RAngleLoc) {
Richard Smith0bf8a4922011-10-18 20:49:44 +00008490 if (TypenameLoc.isValid() && S && !S->getTemplateParamParent())
8491 Diag(TypenameLoc,
Richard Smith2bf7fdb2013-01-02 11:42:31 +00008492 getLangOpts().CPlusPlus11 ?
Richard Smith0bf8a4922011-10-18 20:49:44 +00008493 diag::warn_cxx98_compat_typename_outside_of_template :
8494 diag::ext_typename_outside_of_template)
8495 << FixItHint::CreateRemoval(TypenameLoc);
Simon Pilgrim6905d222016-12-30 22:55:33 +00008496
Douglas Gregorb09518c2011-02-27 22:46:49 +00008497 // Translate the parser's template argument list in our AST format.
8498 TemplateArgumentListInfo TemplateArgs(LAngleLoc, RAngleLoc);
8499 translateTemplateArguments(TemplateArgsIn, TemplateArgs);
Simon Pilgrim6905d222016-12-30 22:55:33 +00008500
Douglas Gregorb09518c2011-02-27 22:46:49 +00008501 TemplateName Template = TemplateIn.get();
Douglas Gregor84a6a0a2011-03-01 16:44:30 +00008502 if (DependentTemplateName *DTN = Template.getAsDependentTemplateName()) {
8503 // Construct a dependent template specialization type.
8504 assert(DTN && "dependent template has non-dependent name?");
Aaron Ballman4a979672014-01-03 13:56:08 +00008505 assert(DTN->getQualifier() == SS.getScopeRep());
Douglas Gregor84a6a0a2011-03-01 16:44:30 +00008506 QualType T = Context.getDependentTemplateSpecializationType(ETK_Typename,
8507 DTN->getQualifier(),
8508 DTN->getIdentifier(),
8509 TemplateArgs);
Simon Pilgrim6905d222016-12-30 22:55:33 +00008510
Douglas Gregor84a6a0a2011-03-01 16:44:30 +00008511 // Create source-location information for this type.
John McCallf7bcc812010-05-28 23:32:21 +00008512 TypeLocBuilder Builder;
Simon Pilgrim6905d222016-12-30 22:55:33 +00008513 DependentTemplateSpecializationTypeLoc SpecTL
Douglas Gregor84a6a0a2011-03-01 16:44:30 +00008514 = Builder.push<DependentTemplateSpecializationTypeLoc>(T);
Abramo Bagnara48c05be2012-02-06 14:41:24 +00008515 SpecTL.setElaboratedKeywordLoc(TypenameLoc);
8516 SpecTL.setQualifierLoc(SS.getWithLocInContext(Context));
Abramo Bagnarae0a70b22012-02-06 22:45:07 +00008517 SpecTL.setTemplateKeywordLoc(TemplateKWLoc);
Abramo Bagnara48c05be2012-02-06 14:41:24 +00008518 SpecTL.setTemplateNameLoc(TemplateNameLoc);
Douglas Gregorb09518c2011-02-27 22:46:49 +00008519 SpecTL.setLAngleLoc(LAngleLoc);
8520 SpecTL.setRAngleLoc(RAngleLoc);
Douglas Gregorb09518c2011-02-27 22:46:49 +00008521 for (unsigned I = 0, N = TemplateArgs.size(); I != N; ++I)
8522 SpecTL.setArgLocInfo(I, TemplateArgs[I].getLocInfo());
Douglas Gregor84a6a0a2011-03-01 16:44:30 +00008523 return CreateParsedType(T, Builder.getTypeSourceInfo(Context, T));
Douglas Gregor12bbfe12009-09-02 13:05:45 +00008524 }
Simon Pilgrim6905d222016-12-30 22:55:33 +00008525
Douglas Gregor84a6a0a2011-03-01 16:44:30 +00008526 QualType T = CheckTemplateIdType(Template, TemplateNameLoc, TemplateArgs);
8527 if (T.isNull())
8528 return true;
Simon Pilgrim6905d222016-12-30 22:55:33 +00008529
Abramo Bagnara48c05be2012-02-06 14:41:24 +00008530 // Provide source-location information for the template specialization type.
Douglas Gregorb09518c2011-02-27 22:46:49 +00008531 TypeLocBuilder Builder;
Abramo Bagnara48c05be2012-02-06 14:41:24 +00008532 TemplateSpecializationTypeLoc SpecTL
Douglas Gregor84a6a0a2011-03-01 16:44:30 +00008533 = Builder.push<TemplateSpecializationTypeLoc>(T);
Abramo Bagnara48c05be2012-02-06 14:41:24 +00008534 SpecTL.setTemplateKeywordLoc(TemplateKWLoc);
8535 SpecTL.setTemplateNameLoc(TemplateNameLoc);
Douglas Gregorb09518c2011-02-27 22:46:49 +00008536 SpecTL.setLAngleLoc(LAngleLoc);
8537 SpecTL.setRAngleLoc(RAngleLoc);
Douglas Gregorb09518c2011-02-27 22:46:49 +00008538 for (unsigned I = 0, N = TemplateArgs.size(); I != N; ++I)
8539 SpecTL.setArgLocInfo(I, TemplateArgs[I].getLocInfo());
Simon Pilgrim6905d222016-12-30 22:55:33 +00008540
Douglas Gregor84a6a0a2011-03-01 16:44:30 +00008541 T = Context.getElaboratedType(ETK_Typename, SS.getScopeRep(), T);
8542 ElaboratedTypeLoc TL = Builder.push<ElaboratedTypeLoc>(T);
Abramo Bagnara9033e2b2012-02-06 19:09:27 +00008543 TL.setElaboratedKeywordLoc(TypenameLoc);
Douglas Gregor844cb502011-03-01 18:12:44 +00008544 TL.setQualifierLoc(SS.getWithLocInContext(Context));
Simon Pilgrim6905d222016-12-30 22:55:33 +00008545
Douglas Gregor84a6a0a2011-03-01 16:44:30 +00008546 TypeSourceInfo *TSI = Builder.getTypeSourceInfo(Context, T);
8547 return CreateParsedType(T, TSI);
Douglas Gregordce2b622009-04-01 00:28:59 +00008548}
8549
Douglas Gregorb09518c2011-02-27 22:46:49 +00008550
Richard Smith6f8d2c62012-05-09 05:17:00 +00008551/// Determine whether this failed name lookup should be treated as being
8552/// disabled by a usage of std::enable_if.
8553static bool isEnableIf(NestedNameSpecifierLoc NNS, const IdentifierInfo &II,
8554 SourceRange &CondRange) {
8555 // We must be looking for a ::type...
8556 if (!II.isStr("type"))
8557 return false;
8558
8559 // ... within an explicitly-written template specialization...
8560 if (!NNS || !NNS.getNestedNameSpecifier()->getAsType())
8561 return false;
8562 TypeLoc EnableIfTy = NNS.getTypeLoc();
David Blaikie6adc78e2013-02-18 22:06:02 +00008563 TemplateSpecializationTypeLoc EnableIfTSTLoc =
8564 EnableIfTy.getAs<TemplateSpecializationTypeLoc>();
8565 if (!EnableIfTSTLoc || EnableIfTSTLoc.getNumArgs() == 0)
Richard Smith6f8d2c62012-05-09 05:17:00 +00008566 return false;
8567 const TemplateSpecializationType *EnableIfTST =
David Blaikie6adc78e2013-02-18 22:06:02 +00008568 cast<TemplateSpecializationType>(EnableIfTSTLoc.getTypePtr());
Richard Smith6f8d2c62012-05-09 05:17:00 +00008569
8570 // ... which names a complete class template declaration...
8571 const TemplateDecl *EnableIfDecl =
8572 EnableIfTST->getTemplateName().getAsTemplateDecl();
8573 if (!EnableIfDecl || EnableIfTST->isIncompleteType())
8574 return false;
8575
8576 // ... called "enable_if".
8577 const IdentifierInfo *EnableIfII =
8578 EnableIfDecl->getDeclName().getAsIdentifierInfo();
8579 if (!EnableIfII || !EnableIfII->isStr("enable_if"))
8580 return false;
8581
8582 // Assume the first template argument is the condition.
David Blaikie6adc78e2013-02-18 22:06:02 +00008583 CondRange = EnableIfTSTLoc.getArgLoc(0).getSourceRange();
Richard Smith6f8d2c62012-05-09 05:17:00 +00008584 return true;
8585}
8586
Douglas Gregor333489b2009-03-27 23:10:48 +00008587/// \brief Build the type that describes a C++ typename specifier,
8588/// e.g., "typename T::type".
8589QualType
Simon Pilgrim6905d222016-12-30 22:55:33 +00008590Sema::CheckTypenameType(ElaboratedTypeKeyword Keyword,
Douglas Gregor9cbc22b2011-02-28 22:42:13 +00008591 SourceLocation KeywordLoc,
Simon Pilgrim6905d222016-12-30 22:55:33 +00008592 NestedNameSpecifierLoc QualifierLoc,
Douglas Gregor9cbc22b2011-02-28 22:42:13 +00008593 const IdentifierInfo &II,
Abramo Bagnarad7548482010-05-19 21:37:53 +00008594 SourceLocation IILoc) {
John McCall0b66eb32010-05-01 00:40:08 +00008595 CXXScopeSpec SS;
Douglas Gregor9cbc22b2011-02-28 22:42:13 +00008596 SS.Adopt(QualifierLoc);
Douglas Gregor333489b2009-03-27 23:10:48 +00008597
John McCall0b66eb32010-05-01 00:40:08 +00008598 DeclContext *Ctx = computeDeclContext(SS);
8599 if (!Ctx) {
8600 // If the nested-name-specifier is dependent and couldn't be
8601 // resolved to a type, build a typename type.
Douglas Gregor9cbc22b2011-02-28 22:42:13 +00008602 assert(QualifierLoc.getNestedNameSpecifier()->isDependent());
Simon Pilgrim6905d222016-12-30 22:55:33 +00008603 return Context.getDependentNameType(Keyword,
8604 QualifierLoc.getNestedNameSpecifier(),
Douglas Gregor9cbc22b2011-02-28 22:42:13 +00008605 &II);
Douglas Gregorc9f9b862009-05-11 19:58:34 +00008606 }
Douglas Gregor333489b2009-03-27 23:10:48 +00008607
John McCall0b66eb32010-05-01 00:40:08 +00008608 // If the nested-name-specifier refers to the current instantiation,
8609 // the "typename" keyword itself is superfluous. In C++03, the
8610 // program is actually ill-formed. However, DR 382 (in C++0x CD1)
8611 // allows such extraneous "typename" keywords, and we retroactively
Douglas Gregorc9d26822010-06-14 22:07:54 +00008612 // apply this DR to C++03 code with only a warning. In any case we continue.
Douglas Gregorc9f9b862009-05-11 19:58:34 +00008613
John McCall0b66eb32010-05-01 00:40:08 +00008614 if (RequireCompleteDeclContext(SS, Ctx))
8615 return QualType();
Douglas Gregor333489b2009-03-27 23:10:48 +00008616
8617 DeclarationName Name(&II);
Abramo Bagnarad7548482010-05-19 21:37:53 +00008618 LookupResult Result(*this, Name, IILoc, LookupOrdinaryName);
Nikola Smiljanicfce370e2014-12-01 23:15:01 +00008619 LookupQualifiedName(Result, Ctx, SS);
Douglas Gregor333489b2009-03-27 23:10:48 +00008620 unsigned DiagID = 0;
Craig Topperc3ec1492014-05-26 06:22:03 +00008621 Decl *Referenced = nullptr;
John McCall27b18f82009-11-17 02:14:36 +00008622 switch (Result.getResultKind()) {
Richard Smith6f8d2c62012-05-09 05:17:00 +00008623 case LookupResult::NotFound: {
8624 // If we're looking up 'type' within a template named 'enable_if', produce
8625 // a more specific diagnostic.
8626 SourceRange CondRange;
8627 if (isEnableIf(QualifierLoc, II, CondRange)) {
8628 Diag(CondRange.getBegin(), diag::err_typename_nested_not_found_enable_if)
8629 << Ctx << CondRange;
8630 return QualType();
8631 }
8632
Douglas Gregore40876a2009-10-13 21:16:44 +00008633 DiagID = diag::err_typename_nested_not_found;
Douglas Gregor333489b2009-03-27 23:10:48 +00008634 break;
Richard Smith6f8d2c62012-05-09 05:17:00 +00008635 }
Douglas Gregoraed2efb2010-12-09 00:06:27 +00008636
8637 case LookupResult::FoundUnresolvedValue: {
8638 // We found a using declaration that is a value. Most likely, the using
8639 // declaration itself is meant to have the 'typename' keyword.
Douglas Gregor9cbc22b2011-02-28 22:42:13 +00008640 SourceRange FullRange(KeywordLoc.isValid() ? KeywordLoc : SS.getBeginLoc(),
Douglas Gregoraed2efb2010-12-09 00:06:27 +00008641 IILoc);
8642 Diag(IILoc, diag::err_typename_refers_to_using_value_decl)
8643 << Name << Ctx << FullRange;
8644 if (UnresolvedUsingValueDecl *Using
8645 = dyn_cast<UnresolvedUsingValueDecl>(Result.getRepresentativeDecl())){
Douglas Gregora9d87bc2011-02-25 00:36:19 +00008646 SourceLocation Loc = Using->getQualifierLoc().getBeginLoc();
Douglas Gregoraed2efb2010-12-09 00:06:27 +00008647 Diag(Loc, diag::note_using_value_decl_missing_typename)
8648 << FixItHint::CreateInsertion(Loc, "typename ");
8649 }
8650 }
8651 // Fall through to create a dependent typename type, from which we can recover
8652 // better.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00008653
Douglas Gregord0d2ee02010-01-15 01:44:47 +00008654 case LookupResult::NotFoundInCurrentInstantiation:
8655 // Okay, it's a member of an unknown instantiation.
Simon Pilgrim6905d222016-12-30 22:55:33 +00008656 return Context.getDependentNameType(Keyword,
8657 QualifierLoc.getNestedNameSpecifier(),
Douglas Gregor9cbc22b2011-02-28 22:42:13 +00008658 &II);
Douglas Gregor333489b2009-03-27 23:10:48 +00008659
8660 case LookupResult::Found:
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00008661 if (TypeDecl *Type = dyn_cast<TypeDecl>(Result.getFoundDecl())) {
Abramo Bagnara6150c882010-05-11 21:36:43 +00008662 // We found a type. Build an ElaboratedType, since the
8663 // typename-specifier was just sugar.
Nico Weber72889432014-09-06 01:25:55 +00008664 MarkAnyDeclReferenced(Type->getLocation(), Type, /*OdrUse=*/false);
Simon Pilgrim6905d222016-12-30 22:55:33 +00008665 return Context.getElaboratedType(ETK_Typename,
Douglas Gregor9cbc22b2011-02-28 22:42:13 +00008666 QualifierLoc.getNestedNameSpecifier(),
Abramo Bagnara6150c882010-05-11 21:36:43 +00008667 Context.getTypeDeclType(Type));
Douglas Gregor333489b2009-03-27 23:10:48 +00008668 }
8669
8670 DiagID = diag::err_typename_nested_not_type;
John McCall9f3059a2009-10-09 21:13:30 +00008671 Referenced = Result.getFoundDecl();
Douglas Gregor333489b2009-03-27 23:10:48 +00008672 break;
8673
8674 case LookupResult::FoundOverloaded:
8675 DiagID = diag::err_typename_nested_not_type;
8676 Referenced = *Result.begin();
8677 break;
8678
John McCall6538c932009-10-10 05:48:19 +00008679 case LookupResult::Ambiguous:
Douglas Gregor333489b2009-03-27 23:10:48 +00008680 return QualType();
8681 }
8682
8683 // If we get here, it's because name lookup did not find a
8684 // type. Emit an appropriate diagnostic and return an error.
Douglas Gregor9cbc22b2011-02-28 22:42:13 +00008685 SourceRange FullRange(KeywordLoc.isValid() ? KeywordLoc : SS.getBeginLoc(),
Abramo Bagnarad7548482010-05-19 21:37:53 +00008686 IILoc);
8687 Diag(IILoc, DiagID) << FullRange << Name << Ctx;
Douglas Gregor333489b2009-03-27 23:10:48 +00008688 if (Referenced)
8689 Diag(Referenced->getLocation(), diag::note_typename_refers_here)
8690 << Name;
8691 return QualType();
8692}
Douglas Gregor15acfb92009-08-06 16:20:37 +00008693
8694namespace {
8695 // See Sema::RebuildTypeInCurrentInstantiation
Benjamin Kramer337e3a52009-11-28 19:45:26 +00008696 class CurrentInstantiationRebuilder
Mike Stump11289f42009-09-09 15:08:12 +00008697 : public TreeTransform<CurrentInstantiationRebuilder> {
Douglas Gregor15acfb92009-08-06 16:20:37 +00008698 SourceLocation Loc;
8699 DeclarationName Entity;
Mike Stump11289f42009-09-09 15:08:12 +00008700
Douglas Gregor15acfb92009-08-06 16:20:37 +00008701 public:
Douglas Gregor14cf7522010-04-30 18:55:50 +00008702 typedef TreeTransform<CurrentInstantiationRebuilder> inherited;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00008703
Mike Stump11289f42009-09-09 15:08:12 +00008704 CurrentInstantiationRebuilder(Sema &SemaRef,
Douglas Gregor15acfb92009-08-06 16:20:37 +00008705 SourceLocation Loc,
Mike Stump11289f42009-09-09 15:08:12 +00008706 DeclarationName Entity)
8707 : TreeTransform<CurrentInstantiationRebuilder>(SemaRef),
Douglas Gregor15acfb92009-08-06 16:20:37 +00008708 Loc(Loc), Entity(Entity) { }
Mike Stump11289f42009-09-09 15:08:12 +00008709
8710 /// \brief Determine whether the given type \p T has already been
Douglas Gregor15acfb92009-08-06 16:20:37 +00008711 /// transformed.
8712 ///
8713 /// For the purposes of type reconstruction, a type has already been
8714 /// transformed if it is NULL or if it is not dependent.
8715 bool AlreadyTransformed(QualType T) {
8716 return T.isNull() || !T->isDependentType();
8717 }
Mike Stump11289f42009-09-09 15:08:12 +00008718
8719 /// \brief Returns the location of the entity whose type is being
Douglas Gregor15acfb92009-08-06 16:20:37 +00008720 /// rebuilt.
8721 SourceLocation getBaseLocation() { return Loc; }
Mike Stump11289f42009-09-09 15:08:12 +00008722
Douglas Gregor15acfb92009-08-06 16:20:37 +00008723 /// \brief Returns the name of the entity whose type is being rebuilt.
8724 DeclarationName getBaseEntity() { return Entity; }
Mike Stump11289f42009-09-09 15:08:12 +00008725
Douglas Gregoref6ab412009-10-27 06:26:26 +00008726 /// \brief Sets the "base" location and entity when that
8727 /// information is known based on another transformation.
8728 void setBase(SourceLocation Loc, DeclarationName Entity) {
8729 this->Loc = Loc;
8730 this->Entity = Entity;
8731 }
Simon Pilgrim6905d222016-12-30 22:55:33 +00008732
Douglas Gregor0c46b2b2012-02-13 22:00:16 +00008733 ExprResult TransformLambdaExpr(LambdaExpr *E) {
8734 // Lambdas never need to be transformed.
8735 return E;
8736 }
Douglas Gregor15acfb92009-08-06 16:20:37 +00008737 };
Eugene Zelenko1ced5092016-02-12 22:53:10 +00008738} // end anonymous namespace
Douglas Gregor15acfb92009-08-06 16:20:37 +00008739
Douglas Gregor15acfb92009-08-06 16:20:37 +00008740/// \brief Rebuilds a type within the context of the current instantiation.
8741///
Mike Stump11289f42009-09-09 15:08:12 +00008742/// The type \p T is part of the type of an out-of-line member definition of
Douglas Gregor15acfb92009-08-06 16:20:37 +00008743/// a class template (or class template partial specialization) that was parsed
Mike Stump11289f42009-09-09 15:08:12 +00008744/// and constructed before we entered the scope of the class template (or
Douglas Gregor15acfb92009-08-06 16:20:37 +00008745/// partial specialization thereof). This routine will rebuild that type now
8746/// that we have entered the declarator's scope, which may produce different
8747/// canonical types, e.g.,
8748///
8749/// \code
8750/// template<typename T>
8751/// struct X {
8752/// typedef T* pointer;
8753/// pointer data();
8754/// };
8755///
8756/// template<typename T>
8757/// typename X<T>::pointer X<T>::data() { ... }
8758/// \endcode
8759///
Douglas Gregorc1d2d8a2010-03-31 17:34:00 +00008760/// Here, the type "typename X<T>::pointer" will be created as a DependentNameType,
Douglas Gregor15acfb92009-08-06 16:20:37 +00008761/// since we do not know that we can look into X<T> when we parsed the type.
8762/// This function will rebuild the type, performing the lookup of "pointer"
Abramo Bagnara6150c882010-05-11 21:36:43 +00008763/// in X<T> and returning an ElaboratedType whose canonical type is the same
Douglas Gregor15acfb92009-08-06 16:20:37 +00008764/// as the canonical type of T*, allowing the return types of the out-of-line
8765/// definition and the declaration to match.
John McCall99b2fe52010-04-29 23:50:39 +00008766TypeSourceInfo *Sema::RebuildTypeInCurrentInstantiation(TypeSourceInfo *T,
8767 SourceLocation Loc,
8768 DeclarationName Name) {
8769 if (!T || !T->getType()->isDependentType())
Douglas Gregor15acfb92009-08-06 16:20:37 +00008770 return T;
Mike Stump11289f42009-09-09 15:08:12 +00008771
Douglas Gregor15acfb92009-08-06 16:20:37 +00008772 CurrentInstantiationRebuilder Rebuilder(*this, Loc, Name);
8773 return Rebuilder.TransformType(T);
Benjamin Kramer854d7de2009-08-11 22:33:06 +00008774}
Douglas Gregorbe999392009-09-15 16:23:51 +00008775
John McCalldadc5752010-08-24 06:29:42 +00008776ExprResult Sema::RebuildExprInCurrentInstantiation(Expr *E) {
John McCallba7bf592010-08-24 05:47:05 +00008777 CurrentInstantiationRebuilder Rebuilder(*this, E->getExprLoc(),
8778 DeclarationName());
8779 return Rebuilder.TransformExpr(E);
8780}
8781
John McCall99b2fe52010-04-29 23:50:39 +00008782bool Sema::RebuildNestedNameSpecifierInCurrentInstantiation(CXXScopeSpec &SS) {
Simon Pilgrim6905d222016-12-30 22:55:33 +00008783 if (SS.isInvalid())
Douglas Gregor10176412011-02-25 16:07:42 +00008784 return true;
John McCall2408e322010-04-27 00:57:59 +00008785
Douglas Gregor10176412011-02-25 16:07:42 +00008786 NestedNameSpecifierLoc QualifierLoc = SS.getWithLocInContext(Context);
John McCall2408e322010-04-27 00:57:59 +00008787 CurrentInstantiationRebuilder Rebuilder(*this, SS.getRange().getBegin(),
8788 DeclarationName());
Simon Pilgrim6905d222016-12-30 22:55:33 +00008789 NestedNameSpecifierLoc Rebuilt
Douglas Gregor10176412011-02-25 16:07:42 +00008790 = Rebuilder.TransformNestedNameSpecifierLoc(QualifierLoc);
Simon Pilgrim6905d222016-12-30 22:55:33 +00008791 if (!Rebuilt)
Douglas Gregor10176412011-02-25 16:07:42 +00008792 return true;
John McCall99b2fe52010-04-29 23:50:39 +00008793
Douglas Gregor10176412011-02-25 16:07:42 +00008794 SS.Adopt(Rebuilt);
John McCall99b2fe52010-04-29 23:50:39 +00008795 return false;
John McCall2408e322010-04-27 00:57:59 +00008796}
8797
Douglas Gregor041b0842011-10-14 15:31:12 +00008798/// \brief Rebuild the template parameters now that we know we're in a current
8799/// instantiation.
8800bool Sema::RebuildTemplateParamsInCurrentInstantiation(
8801 TemplateParameterList *Params) {
8802 for (unsigned I = 0, N = Params->size(); I != N; ++I) {
8803 Decl *Param = Params->getParam(I);
Simon Pilgrim6905d222016-12-30 22:55:33 +00008804
Douglas Gregor041b0842011-10-14 15:31:12 +00008805 // There is nothing to rebuild in a type parameter.
8806 if (isa<TemplateTypeParmDecl>(Param))
8807 continue;
Simon Pilgrim6905d222016-12-30 22:55:33 +00008808
Douglas Gregor041b0842011-10-14 15:31:12 +00008809 // Rebuild the template parameter list of a template template parameter.
Simon Pilgrim6905d222016-12-30 22:55:33 +00008810 if (TemplateTemplateParmDecl *TTP
Douglas Gregor041b0842011-10-14 15:31:12 +00008811 = dyn_cast<TemplateTemplateParmDecl>(Param)) {
8812 if (RebuildTemplateParamsInCurrentInstantiation(
8813 TTP->getTemplateParameters()))
8814 return true;
Simon Pilgrim6905d222016-12-30 22:55:33 +00008815
Douglas Gregor041b0842011-10-14 15:31:12 +00008816 continue;
8817 }
Simon Pilgrim6905d222016-12-30 22:55:33 +00008818
Douglas Gregor041b0842011-10-14 15:31:12 +00008819 // Rebuild the type of a non-type template parameter.
8820 NonTypeTemplateParmDecl *NTTP = cast<NonTypeTemplateParmDecl>(Param);
Simon Pilgrim6905d222016-12-30 22:55:33 +00008821 TypeSourceInfo *NewTSI
8822 = RebuildTypeInCurrentInstantiation(NTTP->getTypeSourceInfo(),
8823 NTTP->getLocation(),
Douglas Gregor041b0842011-10-14 15:31:12 +00008824 NTTP->getDeclName());
8825 if (!NewTSI)
8826 return true;
Simon Pilgrim6905d222016-12-30 22:55:33 +00008827
Douglas Gregor041b0842011-10-14 15:31:12 +00008828 if (NewTSI != NTTP->getTypeSourceInfo()) {
8829 NTTP->setTypeSourceInfo(NewTSI);
8830 NTTP->setType(NewTSI->getType());
8831 }
8832 }
Simon Pilgrim6905d222016-12-30 22:55:33 +00008833
Douglas Gregor041b0842011-10-14 15:31:12 +00008834 return false;
8835}
8836
Douglas Gregorbe999392009-09-15 16:23:51 +00008837/// \brief Produces a formatted string that describes the binding of
8838/// template parameters to template arguments.
8839std::string
8840Sema::getTemplateArgumentBindingsText(const TemplateParameterList *Params,
8841 const TemplateArgumentList &Args) {
Douglas Gregor1ccc8412010-11-07 23:05:16 +00008842 return getTemplateArgumentBindingsText(Params, Args.data(), Args.size());
Douglas Gregore62e6a02009-11-11 19:13:48 +00008843}
8844
8845std::string
8846Sema::getTemplateArgumentBindingsText(const TemplateParameterList *Params,
8847 const TemplateArgument *Args,
8848 unsigned NumArgs) {
Dylan Noblesmith2c1dd272012-02-05 02:13:05 +00008849 SmallString<128> Str;
Douglas Gregor0192c232010-12-20 16:52:59 +00008850 llvm::raw_svector_ostream Out(Str);
Douglas Gregorbe999392009-09-15 16:23:51 +00008851
Douglas Gregore62e6a02009-11-11 19:13:48 +00008852 if (!Params || Params->size() == 0 || NumArgs == 0)
Douglas Gregor0192c232010-12-20 16:52:59 +00008853 return std::string();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00008854
Douglas Gregorbe999392009-09-15 16:23:51 +00008855 for (unsigned I = 0, N = Params->size(); I != N; ++I) {
Douglas Gregore62e6a02009-11-11 19:13:48 +00008856 if (I >= NumArgs)
8857 break;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00008858
Douglas Gregorbe999392009-09-15 16:23:51 +00008859 if (I == 0)
Douglas Gregor0192c232010-12-20 16:52:59 +00008860 Out << "[with ";
Douglas Gregorbe999392009-09-15 16:23:51 +00008861 else
Douglas Gregor0192c232010-12-20 16:52:59 +00008862 Out << ", ";
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00008863
Douglas Gregorbe999392009-09-15 16:23:51 +00008864 if (const IdentifierInfo *Id = Params->getParam(I)->getIdentifier()) {
Douglas Gregor0192c232010-12-20 16:52:59 +00008865 Out << Id->getName();
Douglas Gregorbe999392009-09-15 16:23:51 +00008866 } else {
Douglas Gregor0192c232010-12-20 16:52:59 +00008867 Out << '$' << I;
Douglas Gregorbe999392009-09-15 16:23:51 +00008868 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00008869
Douglas Gregor0192c232010-12-20 16:52:59 +00008870 Out << " = ";
Douglas Gregor75acd922011-09-27 23:30:47 +00008871 Args[I].print(getPrintingPolicy(), Out);
Douglas Gregorbe999392009-09-15 16:23:51 +00008872 }
Douglas Gregor0192c232010-12-20 16:52:59 +00008873
8874 Out << ']';
8875 return Out.str();
Douglas Gregorbe999392009-09-15 16:23:51 +00008876}
Francois Pichet1c229c02011-04-22 22:18:13 +00008877
Richard Smithe40f2ba2013-08-07 21:41:30 +00008878void Sema::MarkAsLateParsedTemplate(FunctionDecl *FD, Decl *FnD,
8879 CachedTokens &Toks) {
Francois Pichet1c229c02011-04-22 22:18:13 +00008880 if (!FD)
8881 return;
Richard Smithe40f2ba2013-08-07 21:41:30 +00008882
Justin Lebar28f09c52016-10-10 16:26:08 +00008883 auto LPT = llvm::make_unique<LateParsedTemplate>();
Richard Smithe40f2ba2013-08-07 21:41:30 +00008884
8885 // Take tokens to avoid allocations
8886 LPT->Toks.swap(Toks);
8887 LPT->D = FnD;
Justin Lebar28f09c52016-10-10 16:26:08 +00008888 LateParsedTemplateMap.insert(std::make_pair(FD, std::move(LPT)));
Richard Smithe40f2ba2013-08-07 21:41:30 +00008889
8890 FD->setLateTemplateParsed(true);
8891}
8892
8893void Sema::UnmarkAsLateParsedTemplate(FunctionDecl *FD) {
8894 if (!FD)
8895 return;
8896 FD->setLateTemplateParsed(false);
8897}
Francois Pichet1c229c02011-04-22 22:18:13 +00008898
8899bool Sema::IsInsideALocalClassWithinATemplateFunction() {
8900 DeclContext *DC = CurContext;
8901
8902 while (DC) {
8903 if (CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(CurContext)) {
8904 const FunctionDecl *FD = RD->isLocalClass();
8905 return (FD && FD->getTemplatedKind() != FunctionDecl::TK_NonTemplate);
8906 } else if (DC->isTranslationUnit() || DC->isNamespace())
8907 return false;
8908
8909 DC = DC->getParent();
8910 }
8911 return false;
8912}
Richard Smith6739a102016-05-05 00:56:12 +00008913
Benjamin Kramera0a13c32016-08-06 11:21:04 +00008914namespace {
Richard Smith6739a102016-05-05 00:56:12 +00008915/// \brief Walk the path from which a declaration was instantiated, and check
8916/// that every explicit specialization along that path is visible. This enforces
8917/// C++ [temp.expl.spec]/6:
8918///
8919/// If a template, a member template or a member of a class template is
8920/// explicitly specialized then that specialization shall be declared before
8921/// the first use of that specialization that would cause an implicit
8922/// instantiation to take place, in every translation unit in which such a
8923/// use occurs; no diagnostic is required.
8924///
8925/// and also C++ [temp.class.spec]/1:
8926///
8927/// A partial specialization shall be declared before the first use of a
8928/// class template specialization that would make use of the partial
8929/// specialization as the result of an implicit or explicit instantiation
8930/// in every translation unit in which such a use occurs; no diagnostic is
8931/// required.
8932class ExplicitSpecializationVisibilityChecker {
8933 Sema &S;
8934 SourceLocation Loc;
8935 llvm::SmallVector<Module *, 8> Modules;
8936
8937public:
8938 ExplicitSpecializationVisibilityChecker(Sema &S, SourceLocation Loc)
8939 : S(S), Loc(Loc) {}
8940
8941 void check(NamedDecl *ND) {
8942 if (auto *FD = dyn_cast<FunctionDecl>(ND))
8943 return checkImpl(FD);
8944 if (auto *RD = dyn_cast<CXXRecordDecl>(ND))
8945 return checkImpl(RD);
8946 if (auto *VD = dyn_cast<VarDecl>(ND))
8947 return checkImpl(VD);
8948 if (auto *ED = dyn_cast<EnumDecl>(ND))
8949 return checkImpl(ED);
8950 }
8951
8952private:
8953 void diagnose(NamedDecl *D, bool IsPartialSpec) {
8954 auto Kind = IsPartialSpec ? Sema::MissingImportKind::PartialSpecialization
8955 : Sema::MissingImportKind::ExplicitSpecialization;
8956 const bool Recover = true;
8957
8958 // If we got a custom set of modules (because only a subset of the
8959 // declarations are interesting), use them, otherwise let
8960 // diagnoseMissingImport intelligently pick some.
8961 if (Modules.empty())
8962 S.diagnoseMissingImport(Loc, D, Kind, Recover);
8963 else
8964 S.diagnoseMissingImport(Loc, D, D->getLocation(), Modules, Kind, Recover);
8965 }
8966
8967 // Check a specific declaration. There are three problematic cases:
8968 //
8969 // 1) The declaration is an explicit specialization of a template
8970 // specialization.
8971 // 2) The declaration is an explicit specialization of a member of an
8972 // templated class.
8973 // 3) The declaration is an instantiation of a template, and that template
8974 // is an explicit specialization of a member of a templated class.
8975 //
8976 // We don't need to go any deeper than that, as the instantiation of the
8977 // surrounding class / etc is not triggered by whatever triggered this
8978 // instantiation, and thus should be checked elsewhere.
8979 template<typename SpecDecl>
8980 void checkImpl(SpecDecl *Spec) {
8981 bool IsHiddenExplicitSpecialization = false;
8982 if (Spec->getTemplateSpecializationKind() == TSK_ExplicitSpecialization) {
8983 IsHiddenExplicitSpecialization =
8984 Spec->getMemberSpecializationInfo()
8985 ? !S.hasVisibleMemberSpecialization(Spec, &Modules)
8986 : !S.hasVisibleDeclaration(Spec);
8987 } else {
8988 checkInstantiated(Spec);
8989 }
8990
8991 if (IsHiddenExplicitSpecialization)
8992 diagnose(Spec->getMostRecentDecl(), false);
8993 }
8994
8995 void checkInstantiated(FunctionDecl *FD) {
8996 if (auto *TD = FD->getPrimaryTemplate())
8997 checkTemplate(TD);
8998 }
8999
9000 void checkInstantiated(CXXRecordDecl *RD) {
9001 auto *SD = dyn_cast<ClassTemplateSpecializationDecl>(RD);
9002 if (!SD)
9003 return;
9004
9005 auto From = SD->getSpecializedTemplateOrPartial();
9006 if (auto *TD = From.dyn_cast<ClassTemplateDecl *>())
9007 checkTemplate(TD);
9008 else if (auto *TD =
9009 From.dyn_cast<ClassTemplatePartialSpecializationDecl *>()) {
9010 if (!S.hasVisibleDeclaration(TD))
9011 diagnose(TD, true);
9012 checkTemplate(TD);
9013 }
9014 }
9015
9016 void checkInstantiated(VarDecl *RD) {
9017 auto *SD = dyn_cast<VarTemplateSpecializationDecl>(RD);
9018 if (!SD)
9019 return;
9020
9021 auto From = SD->getSpecializedTemplateOrPartial();
9022 if (auto *TD = From.dyn_cast<VarTemplateDecl *>())
9023 checkTemplate(TD);
9024 else if (auto *TD =
9025 From.dyn_cast<VarTemplatePartialSpecializationDecl *>()) {
9026 if (!S.hasVisibleDeclaration(TD))
9027 diagnose(TD, true);
9028 checkTemplate(TD);
9029 }
9030 }
9031
9032 void checkInstantiated(EnumDecl *FD) {}
9033
9034 template<typename TemplDecl>
9035 void checkTemplate(TemplDecl *TD) {
9036 if (TD->isMemberSpecialization()) {
9037 if (!S.hasVisibleMemberSpecialization(TD, &Modules))
9038 diagnose(TD->getMostRecentDecl(), false);
9039 }
9040 }
9041};
Benjamin Kramera0a13c32016-08-06 11:21:04 +00009042} // end anonymous namespace
Richard Smith6739a102016-05-05 00:56:12 +00009043
9044void Sema::checkSpecializationVisibility(SourceLocation Loc, NamedDecl *Spec) {
9045 if (!getLangOpts().Modules)
9046 return;
9047
9048 ExplicitSpecializationVisibilityChecker(*this, Loc).check(Spec);
9049}
9050
9051/// \brief Check whether a template partial specialization that we've discovered
9052/// is hidden, and produce suitable diagnostics if so.
9053void Sema::checkPartialSpecializationVisibility(SourceLocation Loc,
9054 NamedDecl *Spec) {
9055 llvm::SmallVector<Module *, 8> Modules;
9056 if (!hasVisibleDeclaration(Spec, &Modules))
9057 diagnoseMissingImport(Loc, Spec, Spec->getLocation(), Modules,
9058 MissingImportKind::PartialSpecialization,
9059 /*Recover*/true);
9060}