blob: 65ae962c3bf71a02308c3befad2e26a895e8e92b [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
Douglas Gregor50a3cdd2012-03-10 23:52:41 +000091void Sema::FilterAcceptableTemplateNames(LookupResult &R,
92 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();
Douglas Gregor50a3cdd2012-03-10 23:52:41 +000098 NamedDecl *Repl = isAcceptableTemplateName(Context, Orig,
99 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;
134
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");
Douglas Gregorbf3a8262012-01-12 16:11:24 +0000268
269 // 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);
Douglas Gregor50a3cdd2012-03-10 23:52:41 +0000315
316 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
432 if (!MightBeCxx11UnevalField && !isAddressOfOperand &&
433 isa<CXXMethodDecl>(DC) && cast<CXXMethodDecl>(DC)->isInstance()) {
John McCall87fe5d52010-05-20 01:18:31 +0000434 QualType ThisType = cast<CXXMethodDecl>(DC)->getThisType(Context);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000435
John McCalle66edc12009-11-24 19:00:30 +0000436 // Since the 'this' expression is synthesized, we don't need to
437 // perform the double-lookup check.
Craig Topperc3ec1492014-05-26 06:22:03 +0000438 NamedDecl *FirstQualifierInScope = nullptr;
John McCalle66edc12009-11-24 19:00:30 +0000439
Nikola Smiljanic03ff2592014-05-29 14:05:12 +0000440 return CXXDependentScopeMemberExpr::Create(
441 Context, /*This*/ nullptr, ThisType, /*IsArrow*/ true,
442 /*Op*/ SourceLocation(), SS.getWithLocInContext(Context), TemplateKWLoc,
443 FirstQualifierInScope, NameInfo, TemplateArgs);
John McCalle66edc12009-11-24 19:00:30 +0000444 }
445
Abramo Bagnara7945c982012-01-27 09:46:47 +0000446 return BuildDependentDeclRefExpr(SS, TemplateKWLoc, NameInfo, TemplateArgs);
John McCalle66edc12009-11-24 19:00:30 +0000447}
448
John McCalldadc5752010-08-24 06:29:42 +0000449ExprResult
John McCalle66edc12009-11-24 19:00:30 +0000450Sema::BuildDependentDeclRefExpr(const CXXScopeSpec &SS,
Abramo Bagnara7945c982012-01-27 09:46:47 +0000451 SourceLocation TemplateKWLoc,
Abramo Bagnarad6d2f182010-08-11 22:01:17 +0000452 const DeclarationNameInfo &NameInfo,
John McCalle66edc12009-11-24 19:00:30 +0000453 const TemplateArgumentListInfo *TemplateArgs) {
Nikola Smiljanic03ff2592014-05-29 14:05:12 +0000454 return DependentScopeDeclRefExpr::Create(
455 Context, SS.getWithLocInContext(Context), TemplateKWLoc, NameInfo,
456 TemplateArgs);
Douglas Gregor55ad91f2008-12-18 19:37:40 +0000457}
458
Vassil Vassilevb21ee082016-08-18 22:01:25 +0000459
460/// Determine whether we would be unable to instantiate this template (because
461/// it either has no definition, or is in the process of being instantiated).
462bool Sema::DiagnoseUninstantiableTemplate(SourceLocation PointOfInstantiation,
463 NamedDecl *Instantiation,
464 bool InstantiatedFromMember,
465 const NamedDecl *Pattern,
466 const NamedDecl *PatternDef,
467 TemplateSpecializationKind TSK,
468 bool Complain /*= true*/) {
Richard Smithedbc6e92016-10-14 21:41:24 +0000469 assert(isa<TagDecl>(Instantiation) || isa<FunctionDecl>(Instantiation) ||
470 isa<VarDecl>(Instantiation));
Vassil Vassilevb21ee082016-08-18 22:01:25 +0000471
Richard Smithedbc6e92016-10-14 21:41:24 +0000472 bool IsEntityBeingDefined = false;
473 if (const TagDecl *TD = dyn_cast_or_null<TagDecl>(PatternDef))
474 IsEntityBeingDefined = TD->isBeingDefined();
475
476 if (PatternDef && !IsEntityBeingDefined) {
Vassil Vassilevb21ee082016-08-18 22:01:25 +0000477 NamedDecl *SuggestedDef = nullptr;
478 if (!hasVisibleDefinition(const_cast<NamedDecl*>(PatternDef), &SuggestedDef,
479 /*OnlyNeedComplete*/false)) {
480 // If we're allowed to diagnose this and recover, do so.
481 bool Recover = Complain && !isSFINAEContext();
482 if (Complain)
483 diagnoseMissingImport(PointOfInstantiation, SuggestedDef,
484 Sema::MissingImportKind::Definition, Recover);
485 return !Recover;
486 }
487 return false;
488 }
489
Richard Smith6f4e2e02016-08-23 19:41:39 +0000490 if (!Complain || (PatternDef && PatternDef->isInvalidDecl()))
491 return true;
Vassil Vassilevb21ee082016-08-18 22:01:25 +0000492
Richard Smithedbc6e92016-10-14 21:41:24 +0000493 llvm::Optional<unsigned> Note;
Vassil Vassilevb21ee082016-08-18 22:01:25 +0000494 QualType InstantiationTy;
495 if (TagDecl *TD = dyn_cast<TagDecl>(Instantiation))
496 InstantiationTy = Context.getTypeDeclType(TD);
Richard Smith6f4e2e02016-08-23 19:41:39 +0000497 if (PatternDef) {
Vassil Vassilevb21ee082016-08-18 22:01:25 +0000498 Diag(PointOfInstantiation,
499 diag::err_template_instantiate_within_definition)
Richard Smithedbc6e92016-10-14 21:41:24 +0000500 << /*implicit|explicit*/(TSK != TSK_ImplicitInstantiation)
Vassil Vassilevb21ee082016-08-18 22:01:25 +0000501 << InstantiationTy;
502 // Not much point in noting the template declaration here, since
503 // we're lexically inside it.
504 Instantiation->setInvalidDecl();
505 } else if (InstantiatedFromMember) {
Richard Smith6f4e2e02016-08-23 19:41:39 +0000506 if (isa<FunctionDecl>(Instantiation)) {
507 Diag(PointOfInstantiation,
508 diag::err_explicit_instantiation_undefined_member)
Richard Smithedbc6e92016-10-14 21:41:24 +0000509 << /*member function*/ 1 << Instantiation->getDeclName()
510 << Instantiation->getDeclContext();
511 Note = diag::note_explicit_instantiation_here;
Richard Smith6f4e2e02016-08-23 19:41:39 +0000512 } else {
Richard Smithedbc6e92016-10-14 21:41:24 +0000513 assert(isa<TagDecl>(Instantiation) && "Must be a TagDecl!");
Richard Smith6f4e2e02016-08-23 19:41:39 +0000514 Diag(PointOfInstantiation,
515 diag::err_implicit_instantiate_member_undefined)
516 << InstantiationTy;
Richard Smithedbc6e92016-10-14 21:41:24 +0000517 Note = diag::note_member_declared_at;
Richard Smith6f4e2e02016-08-23 19:41:39 +0000518 }
Vassil Vassilevb21ee082016-08-18 22:01:25 +0000519 } else {
Richard Smithedbc6e92016-10-14 21:41:24 +0000520 if (isa<FunctionDecl>(Instantiation)) {
Richard Smith6f4e2e02016-08-23 19:41:39 +0000521 Diag(PointOfInstantiation,
522 diag::err_explicit_instantiation_undefined_func_template)
523 << Pattern;
Richard Smithedbc6e92016-10-14 21:41:24 +0000524 Note = diag::note_explicit_instantiation_here;
525 } else if (isa<TagDecl>(Instantiation)) {
Richard Smith6f4e2e02016-08-23 19:41:39 +0000526 Diag(PointOfInstantiation, diag::err_template_instantiate_undefined)
527 << (TSK != TSK_ImplicitInstantiation)
528 << InstantiationTy;
Richard Smithedbc6e92016-10-14 21:41:24 +0000529 Note = diag::note_template_decl_here;
530 } else {
531 assert(isa<VarDecl>(Instantiation) && "Must be a VarDecl!");
532 if (isa<VarTemplateSpecializationDecl>(Instantiation)) {
533 Diag(PointOfInstantiation,
534 diag::err_explicit_instantiation_undefined_var_template)
535 << Instantiation;
536 Instantiation->setInvalidDecl();
537 } else
538 Diag(PointOfInstantiation,
539 diag::err_explicit_instantiation_undefined_member)
540 << /*static data member*/ 2 << Instantiation->getDeclName()
541 << Instantiation->getDeclContext();
542 Note = diag::note_explicit_instantiation_here;
543 }
Vassil Vassilevb21ee082016-08-18 22:01:25 +0000544 }
Richard Smithedbc6e92016-10-14 21:41:24 +0000545 if (Note) // Diagnostics were emitted.
546 Diag(Pattern->getLocation(), Note.getValue());
Vassil Vassilevb21ee082016-08-18 22:01:25 +0000547
548 // In general, Instantiation isn't marked invalid to get more than one
549 // error for multiple undefined instantiations. But the code that does
550 // explicit declaration -> explicit definition conversion can't handle
551 // invalid declarations, so mark as invalid in that case.
552 if (TSK == TSK_ExplicitInstantiationDeclaration)
553 Instantiation->setInvalidDecl();
554 return true;
555}
556
Douglas Gregor5101c242008-12-05 18:15:24 +0000557/// DiagnoseTemplateParameterShadow - Produce a diagnostic complaining
558/// that the template parameter 'PrevDecl' is being shadowed by a new
559/// declaration at location Loc. Returns true to indicate that this is
560/// an error, and false otherwise.
Douglas Gregorf4ef4d22011-10-20 17:58:49 +0000561void Sema::DiagnoseTemplateParameterShadow(SourceLocation Loc, Decl *PrevDecl) {
Douglas Gregor5daeee22008-12-08 18:40:42 +0000562 assert(PrevDecl->isTemplateParameter() && "Not a template parameter");
Douglas Gregor5101c242008-12-05 18:15:24 +0000563
564 // Microsoft Visual C++ permits template parameters to be shadowed.
David Blaikiebbafb8a2012-03-11 07:00:24 +0000565 if (getLangOpts().MicrosoftExt)
Douglas Gregorf4ef4d22011-10-20 17:58:49 +0000566 return;
Douglas Gregor5101c242008-12-05 18:15:24 +0000567
568 // C++ [temp.local]p4:
569 // A template-parameter shall not be redeclared within its
570 // scope (including nested scopes).
Mike Stump11289f42009-09-09 15:08:12 +0000571 Diag(Loc, diag::err_template_param_shadow)
Douglas Gregor5101c242008-12-05 18:15:24 +0000572 << cast<NamedDecl>(PrevDecl)->getDeclName();
573 Diag(PrevDecl->getLocation(), diag::note_template_param_here);
Douglas Gregor5101c242008-12-05 18:15:24 +0000574}
575
Douglas Gregor463421d2009-03-03 04:44:36 +0000576/// AdjustDeclIfTemplate - If the given decl happens to be a template, reset
Douglas Gregorded2d7b2009-02-04 19:02:06 +0000577/// the parameter D to reference the templated declaration and return a pointer
578/// to the template declaration. Otherwise, do nothing to D and return null.
John McCall48871652010-08-21 09:40:31 +0000579TemplateDecl *Sema::AdjustDeclIfTemplate(Decl *&D) {
580 if (TemplateDecl *Temp = dyn_cast_or_null<TemplateDecl>(D)) {
581 D = Temp->getTemplatedDecl();
Douglas Gregorded2d7b2009-02-04 19:02:06 +0000582 return Temp;
583 }
Craig Topperc3ec1492014-05-26 06:22:03 +0000584 return nullptr;
Douglas Gregorded2d7b2009-02-04 19:02:06 +0000585}
586
Douglas Gregoreb29d182011-01-05 17:40:24 +0000587ParsedTemplateArgument ParsedTemplateArgument::getTemplatePackExpansion(
588 SourceLocation EllipsisLoc) const {
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000589 assert(Kind == Template &&
Douglas Gregoreb29d182011-01-05 17:40:24 +0000590 "Only template template arguments can be pack expansions here");
591 assert(getAsTemplate().get().containsUnexpandedParameterPack() &&
592 "Template template argument pack expansion without packs");
593 ParsedTemplateArgument Result(*this);
594 Result.EllipsisLoc = EllipsisLoc;
595 return Result;
596}
597
Douglas Gregor9167f8b2009-11-11 01:00:40 +0000598static TemplateArgumentLoc translateTemplateArgument(Sema &SemaRef,
599 const ParsedTemplateArgument &Arg) {
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000600
Douglas Gregor9167f8b2009-11-11 01:00:40 +0000601 switch (Arg.getKind()) {
602 case ParsedTemplateArgument::Type: {
John McCallbcd03502009-12-07 02:54:59 +0000603 TypeSourceInfo *DI;
Douglas Gregor9167f8b2009-11-11 01:00:40 +0000604 QualType T = SemaRef.GetTypeFromParser(Arg.getAsType(), &DI);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000605 if (!DI)
John McCallbcd03502009-12-07 02:54:59 +0000606 DI = SemaRef.Context.getTrivialTypeSourceInfo(T, Arg.getLocation());
Douglas Gregor9167f8b2009-11-11 01:00:40 +0000607 return TemplateArgumentLoc(TemplateArgument(T), DI);
608 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000609
Douglas Gregor9167f8b2009-11-11 01:00:40 +0000610 case ParsedTemplateArgument::NonType: {
611 Expr *E = static_cast<Expr *>(Arg.getAsExpr());
612 return TemplateArgumentLoc(TemplateArgument(E), E);
613 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000614
Douglas Gregor9167f8b2009-11-11 01:00:40 +0000615 case ParsedTemplateArgument::Template: {
John McCall3e56fd42010-08-23 07:28:44 +0000616 TemplateName Template = Arg.getAsTemplate().get();
Douglas Gregore1d60df2011-01-14 23:41:42 +0000617 TemplateArgument TArg;
618 if (Arg.getEllipsisLoc().isValid())
David Blaikie05785d12013-02-20 22:23:23 +0000619 TArg = TemplateArgument(Template, Optional<unsigned int>());
Douglas Gregore1d60df2011-01-14 23:41:42 +0000620 else
621 TArg = Template;
622 return TemplateArgumentLoc(TArg,
Douglas Gregor9d802122011-03-02 17:09:35 +0000623 Arg.getScopeSpec().getWithLocInContext(
624 SemaRef.Context),
Douglas Gregoreb29d182011-01-05 17:40:24 +0000625 Arg.getLocation(),
626 Arg.getEllipsisLoc());
Douglas Gregor9167f8b2009-11-11 01:00:40 +0000627 }
628 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000629
Jeffrey Yasskin1615d452009-12-12 05:05:38 +0000630 llvm_unreachable("Unhandled parsed template argument");
Douglas Gregor9167f8b2009-11-11 01:00:40 +0000631}
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000632
Douglas Gregor9167f8b2009-11-11 01:00:40 +0000633/// \brief Translates template arguments as provided by the parser
634/// into template arguments used by semantic analysis.
John McCall6b51f282009-11-23 01:53:49 +0000635void Sema::translateTemplateArguments(const ASTTemplateArgsPtr &TemplateArgsIn,
636 TemplateArgumentListInfo &TemplateArgs) {
Douglas Gregor9167f8b2009-11-11 01:00:40 +0000637 for (unsigned I = 0, Last = TemplateArgsIn.size(); I != Last; ++I)
John McCall6b51f282009-11-23 01:53:49 +0000638 TemplateArgs.addArgument(translateTemplateArgument(*this,
639 TemplateArgsIn[I]));
Douglas Gregor9167f8b2009-11-11 01:00:40 +0000640}
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000641
Richard Smithb80d5402013-06-25 22:21:36 +0000642static void maybeDiagnoseTemplateParameterShadow(Sema &SemaRef, Scope *S,
643 SourceLocation Loc,
644 IdentifierInfo *Name) {
645 NamedDecl *PrevDecl = SemaRef.LookupSingleName(
646 S, Name, Loc, Sema::LookupOrdinaryName, Sema::ForRedeclaration);
647 if (PrevDecl && PrevDecl->isTemplateParameter())
648 SemaRef.DiagnoseTemplateParameterShadow(Loc, PrevDecl);
649}
650
Douglas Gregor5101c242008-12-05 18:15:24 +0000651/// ActOnTypeParameter - Called when a C++ template type parameter
652/// (e.g., "typename T") has been parsed. Typename specifies whether
653/// the keyword "typename" was used to declare the type parameter
654/// (otherwise, "class" was used), and KeyLoc is the location of the
655/// "class" or "typename" keyword. ParamName is the name of the
656/// parameter (NULL indicates an unnamed template parameter) and
Chandler Carruth08836322011-05-01 00:51:33 +0000657/// ParamNameLoc is the location of the parameter name (if any).
Douglas Gregor5101c242008-12-05 18:15:24 +0000658/// If the type parameter has a default argument, it will be added
659/// later via ActOnTypeParameterDefault.
Nikola Smiljanic69fdc9f2014-06-06 02:58:59 +0000660Decl *Sema::ActOnTypeParameter(Scope *S, bool Typename,
John McCall48871652010-08-21 09:40:31 +0000661 SourceLocation EllipsisLoc,
662 SourceLocation KeyLoc,
663 IdentifierInfo *ParamName,
664 SourceLocation ParamNameLoc,
665 unsigned Depth, unsigned Position,
666 SourceLocation EqualLoc,
John McCallba7bf592010-08-24 05:47:05 +0000667 ParsedType DefaultArg) {
Mike Stump11289f42009-09-09 15:08:12 +0000668 assert(S->isTemplateParamScope() &&
669 "Template type parameter not in template parameter scope!");
Douglas Gregor5101c242008-12-05 18:15:24 +0000670
Douglas Gregorcd72ba92009-02-06 22:42:48 +0000671 SourceLocation Loc = ParamNameLoc;
672 if (!ParamName)
673 Loc = KeyLoc;
674
Nikola Smiljanic69fdc9f2014-06-06 02:58:59 +0000675 bool IsParameterPack = EllipsisLoc.isValid();
Douglas Gregor5101c242008-12-05 18:15:24 +0000676 TemplateTypeParmDecl *Param
John McCallf7b2fb52010-01-22 00:28:27 +0000677 = TemplateTypeParmDecl::Create(Context, Context.getTranslationUnitDecl(),
Abramo Bagnarab3185b02011-03-06 15:48:19 +0000678 KeyLoc, Loc, Depth, Position, ParamName,
Nikola Smiljanic69fdc9f2014-06-06 02:58:59 +0000679 Typename, IsParameterPack);
Douglas Gregorfd7c2252011-03-04 17:52:15 +0000680 Param->setAccess(AS_public);
Douglas Gregor5101c242008-12-05 18:15:24 +0000681
682 if (ParamName) {
Richard Smithb80d5402013-06-25 22:21:36 +0000683 maybeDiagnoseTemplateParameterShadow(*this, S, ParamNameLoc, ParamName);
684
Douglas Gregor5101c242008-12-05 18:15:24 +0000685 // Add the template parameter into the current scope.
John McCall48871652010-08-21 09:40:31 +0000686 S->AddDecl(Param);
Douglas Gregor5101c242008-12-05 18:15:24 +0000687 IdResolver.AddDecl(Param);
688 }
689
Douglas Gregorf5500772011-01-05 15:48:55 +0000690 // C++0x [temp.param]p9:
691 // A default template-argument may be specified for any kind of
692 // template-parameter that is not a template parameter pack.
Nikola Smiljanic69fdc9f2014-06-06 02:58:59 +0000693 if (DefaultArg && IsParameterPack) {
Douglas Gregorf5500772011-01-05 15:48:55 +0000694 Diag(EqualLoc, diag::err_template_param_pack_default_arg);
David Blaikieefdccaa2016-01-15 23:43:34 +0000695 DefaultArg = nullptr;
Douglas Gregorf5500772011-01-05 15:48:55 +0000696 }
697
Douglas Gregordc13ded2010-07-01 00:00:45 +0000698 // Handle the default argument, if provided.
699 if (DefaultArg) {
700 TypeSourceInfo *DefaultTInfo;
701 GetTypeFromParser(DefaultArg, &DefaultTInfo);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000702
Douglas Gregordc13ded2010-07-01 00:00:45 +0000703 assert(DefaultTInfo && "expected source information for type");
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000704
Douglas Gregor6ff1fbf2010-12-16 08:48:57 +0000705 // Check for unexpanded parameter packs.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000706 if (DiagnoseUnexpandedParameterPack(Loc, DefaultTInfo,
Douglas Gregor6ff1fbf2010-12-16 08:48:57 +0000707 UPPC_DefaultArgument))
708 return Param;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000709
Douglas Gregordc13ded2010-07-01 00:00:45 +0000710 // Check the template argument itself.
711 if (CheckTemplateArgument(Param, DefaultTInfo)) {
712 Param->setInvalidDecl();
John McCall48871652010-08-21 09:40:31 +0000713 return Param;
Douglas Gregordc13ded2010-07-01 00:00:45 +0000714 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000715
Richard Smith1469b912015-06-10 00:29:03 +0000716 Param->setDefaultArgument(DefaultTInfo);
Douglas Gregordc13ded2010-07-01 00:00:45 +0000717 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000718
John McCall48871652010-08-21 09:40:31 +0000719 return Param;
Douglas Gregor5101c242008-12-05 18:15:24 +0000720}
721
Douglas Gregor463421d2009-03-03 04:44:36 +0000722/// \brief Check that the type of a non-type template parameter is
723/// well-formed.
724///
725/// \returns the (possibly-promoted) parameter type if valid;
726/// otherwise, produces a diagnostic and returns a NULL type.
Mike Stump11289f42009-09-09 15:08:12 +0000727QualType
Douglas Gregor463421d2009-03-03 04:44:36 +0000728Sema::CheckNonTypeTemplateParameterType(QualType T, SourceLocation Loc) {
Douglas Gregora09387d2010-05-23 19:57:01 +0000729 // We don't allow variably-modified types as the type of non-type template
730 // parameters.
731 if (T->isVariablyModifiedType()) {
732 Diag(Loc, diag::err_variably_modified_nontype_template_param)
733 << T;
734 return QualType();
735 }
736
Douglas Gregor463421d2009-03-03 04:44:36 +0000737 // C++ [temp.param]p4:
738 //
739 // A non-type template-parameter shall have one of the following
740 // (optionally cv-qualified) types:
741 //
742 // -- integral or enumeration type,
Douglas Gregorb90df602010-06-16 00:17:44 +0000743 if (T->isIntegralOrEnumerationType() ||
Mike Stump11289f42009-09-09 15:08:12 +0000744 // -- pointer to object or pointer to function,
Eli Friedmana170cd62010-08-05 02:49:48 +0000745 T->isPointerType() ||
Mike Stump11289f42009-09-09 15:08:12 +0000746 // -- reference to object or reference to function,
Douglas Gregor463421d2009-03-03 04:44:36 +0000747 T->isReferenceType() ||
Douglas Gregor80af3132011-05-21 23:15:46 +0000748 // -- pointer to member,
Douglas Gregor463421d2009-03-03 04:44:36 +0000749 T->isMemberPointerType() ||
Douglas Gregor80af3132011-05-21 23:15:46 +0000750 // -- std::nullptr_t.
751 T->isNullPtrType() ||
Douglas Gregor463421d2009-03-03 04:44:36 +0000752 // If T is a dependent type, we can't do the check now, so we
753 // assume that it is well-formed.
Richard Smith5f274382016-09-28 23:55:27 +0000754 T->isDependentType() ||
755 // Allow use of auto in template parameter declarations.
756 T->isUndeducedType()) {
757 if (T->isUndeducedType()) {
758 Diag(Loc, diag::warn_cxx14_compat_template_nontype_parm_auto_type)
759 << QualType(T->getContainedAutoType(), 0);
760 }
Richard Smithd0e1c952012-03-13 07:21:50 +0000761 // C++ [temp.param]p5: The top-level cv-qualifiers on the template-parameter
762 // are ignored when determining its type.
763 return T.getUnqualifiedType();
764 }
765
Douglas Gregor463421d2009-03-03 04:44:36 +0000766 // C++ [temp.param]p8:
767 //
768 // A non-type template-parameter of type "array of T" or
769 // "function returning T" is adjusted to be of type "pointer to
770 // T" or "pointer to function returning T", respectively.
Richard Smithd663fdd2014-12-17 20:42:37 +0000771 else if (T->isArrayType() || T->isFunctionType())
772 return Context.getDecayedType(T);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000773
Douglas Gregor463421d2009-03-03 04:44:36 +0000774 Diag(Loc, diag::err_template_nontype_parm_bad_type)
775 << T;
776
777 return QualType();
778}
779
John McCall48871652010-08-21 09:40:31 +0000780Decl *Sema::ActOnNonTypeTemplateParameter(Scope *S, Declarator &D,
781 unsigned Depth,
782 unsigned Position,
783 SourceLocation EqualLoc,
John McCallb268a282010-08-23 23:25:46 +0000784 Expr *Default) {
John McCall8cb7bdf2010-06-04 23:28:52 +0000785 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
786 QualType T = TInfo->getType();
Douglas Gregor5101c242008-12-05 18:15:24 +0000787
Douglas Gregorded2d7b2009-02-04 19:02:06 +0000788 assert(S->isTemplateParamScope() &&
789 "Non-type template parameter not in template parameter scope!");
Douglas Gregor5101c242008-12-05 18:15:24 +0000790 bool Invalid = false;
791
Douglas Gregor38ee75e2010-12-16 15:36:43 +0000792 T = CheckNonTypeTemplateParameterType(T, D.getIdentifierLoc());
793 if (T.isNull()) {
Douglas Gregor463421d2009-03-03 04:44:36 +0000794 T = Context.IntTy; // Recover with an 'int' type.
Douglas Gregorce0fc86f2009-03-09 16:46:39 +0000795 Invalid = true;
796 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000797
Richard Smithb80d5402013-06-25 22:21:36 +0000798 IdentifierInfo *ParamName = D.getIdentifier();
Douglas Gregorda3cc0d2010-12-23 23:51:58 +0000799 bool IsParameterPack = D.hasEllipsis();
Douglas Gregor5101c242008-12-05 18:15:24 +0000800 NonTypeTemplateParmDecl *Param
John McCallf7b2fb52010-01-22 00:28:27 +0000801 = NonTypeTemplateParmDecl::Create(Context, Context.getTranslationUnitDecl(),
Daniel Dunbar62ee6412012-03-09 18:35:03 +0000802 D.getLocStart(),
John McCallf7b2fb52010-01-22 00:28:27 +0000803 D.getIdentifierLoc(),
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000804 Depth, Position, ParamName, T,
Douglas Gregorda3cc0d2010-12-23 23:51:58 +0000805 IsParameterPack, TInfo);
Douglas Gregorfd7c2252011-03-04 17:52:15 +0000806 Param->setAccess(AS_public);
Richard Smithb80d5402013-06-25 22:21:36 +0000807
Douglas Gregor5101c242008-12-05 18:15:24 +0000808 if (Invalid)
809 Param->setInvalidDecl();
810
Richard Smithb80d5402013-06-25 22:21:36 +0000811 if (ParamName) {
812 maybeDiagnoseTemplateParameterShadow(*this, S, D.getIdentifierLoc(),
813 ParamName);
814
Douglas Gregor5101c242008-12-05 18:15:24 +0000815 // Add the template parameter into the current scope.
John McCall48871652010-08-21 09:40:31 +0000816 S->AddDecl(Param);
Douglas Gregor5101c242008-12-05 18:15:24 +0000817 IdResolver.AddDecl(Param);
818 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000819
Douglas Gregorf5500772011-01-05 15:48:55 +0000820 // C++0x [temp.param]p9:
821 // A default template-argument may be specified for any kind of
822 // template-parameter that is not a template parameter pack.
823 if (Default && IsParameterPack) {
824 Diag(EqualLoc, diag::err_template_param_pack_default_arg);
Craig Topperc3ec1492014-05-26 06:22:03 +0000825 Default = nullptr;
Douglas Gregorf5500772011-01-05 15:48:55 +0000826 }
827
Douglas Gregordc13ded2010-07-01 00:00:45 +0000828 // Check the well-formedness of the default template argument, if provided.
Douglas Gregorda3cc0d2010-12-23 23:51:58 +0000829 if (Default) {
Douglas Gregor6ff1fbf2010-12-16 08:48:57 +0000830 // Check for unexpanded parameter packs.
831 if (DiagnoseUnexpandedParameterPack(Default, UPPC_DefaultArgument))
832 return Param;
833
Douglas Gregordc13ded2010-07-01 00:00:45 +0000834 TemplateArgument Converted;
Richard Smithd663fdd2014-12-17 20:42:37 +0000835 ExprResult DefaultRes =
836 CheckTemplateArgument(Param, Param->getType(), Default, Converted);
John Wiegley01296292011-04-08 18:41:53 +0000837 if (DefaultRes.isInvalid()) {
Douglas Gregordc13ded2010-07-01 00:00:45 +0000838 Param->setInvalidDecl();
John McCall48871652010-08-21 09:40:31 +0000839 return Param;
Douglas Gregordc13ded2010-07-01 00:00:45 +0000840 }
Nikola Smiljanic01a75982014-05-29 10:55:11 +0000841 Default = DefaultRes.get();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000842
Richard Smith1469b912015-06-10 00:29:03 +0000843 Param->setDefaultArgument(Default);
Douglas Gregordc13ded2010-07-01 00:00:45 +0000844 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000845
John McCall48871652010-08-21 09:40:31 +0000846 return Param;
Douglas Gregor5101c242008-12-05 18:15:24 +0000847}
Douglas Gregorb9bd8a92008-12-24 02:52:09 +0000848
Douglas Gregorded2d7b2009-02-04 19:02:06 +0000849/// ActOnTemplateTemplateParameter - Called when a C++ template template
James Dennett2a4d13c2012-06-15 07:13:21 +0000850/// parameter (e.g. T in template <template \<typename> class T> class array)
Douglas Gregorded2d7b2009-02-04 19:02:06 +0000851/// has been parsed. S is the current scope.
John McCall48871652010-08-21 09:40:31 +0000852Decl *Sema::ActOnTemplateTemplateParameter(Scope* S,
853 SourceLocation TmpLoc,
Richard Trieu9becef62011-09-09 03:18:59 +0000854 TemplateParameterList *Params,
Douglas Gregorf5500772011-01-05 15:48:55 +0000855 SourceLocation EllipsisLoc,
John McCall48871652010-08-21 09:40:31 +0000856 IdentifierInfo *Name,
857 SourceLocation NameLoc,
858 unsigned Depth,
859 unsigned Position,
860 SourceLocation EqualLoc,
Douglas Gregorf5500772011-01-05 15:48:55 +0000861 ParsedTemplateArgument Default) {
Douglas Gregorded2d7b2009-02-04 19:02:06 +0000862 assert(S->isTemplateParamScope() &&
863 "Template template parameter not in template parameter scope!");
864
865 // Construct the parameter object.
Douglas Gregorf5500772011-01-05 15:48:55 +0000866 bool IsParameterPack = EllipsisLoc.isValid();
Douglas Gregorded2d7b2009-02-04 19:02:06 +0000867 TemplateTemplateParmDecl *Param =
John McCallf7b2fb52010-01-22 00:28:27 +0000868 TemplateTemplateParmDecl::Create(Context, Context.getTranslationUnitDecl(),
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000869 NameLoc.isInvalid()? TmpLoc : NameLoc,
870 Depth, Position, IsParameterPack,
Douglas Gregorf5500772011-01-05 15:48:55 +0000871 Name, Params);
Douglas Gregorfd7c2252011-03-04 17:52:15 +0000872 Param->setAccess(AS_public);
873
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000874 // If the template template parameter has a name, then link the identifier
Douglas Gregordc13ded2010-07-01 00:00:45 +0000875 // into the scope and lookup mechanisms.
Douglas Gregorded2d7b2009-02-04 19:02:06 +0000876 if (Name) {
Richard Smithb80d5402013-06-25 22:21:36 +0000877 maybeDiagnoseTemplateParameterShadow(*this, S, NameLoc, Name);
878
John McCall48871652010-08-21 09:40:31 +0000879 S->AddDecl(Param);
Douglas Gregorded2d7b2009-02-04 19:02:06 +0000880 IdResolver.AddDecl(Param);
881 }
882
Douglas Gregor6ff1fbf2010-12-16 08:48:57 +0000883 if (Params->size() == 0) {
884 Diag(Param->getLocation(), diag::err_template_template_parm_no_parms)
885 << SourceRange(Params->getLAngleLoc(), Params->getRAngleLoc());
886 Param->setInvalidDecl();
887 }
888
Douglas Gregorf5500772011-01-05 15:48:55 +0000889 // C++0x [temp.param]p9:
890 // A default template-argument may be specified for any kind of
891 // template-parameter that is not a template parameter pack.
892 if (IsParameterPack && !Default.isInvalid()) {
893 Diag(EqualLoc, diag::err_template_param_pack_default_arg);
894 Default = ParsedTemplateArgument();
895 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000896
Douglas Gregordc13ded2010-07-01 00:00:45 +0000897 if (!Default.isInvalid()) {
898 // Check only that we have a template template argument. We don't want to
899 // try to check well-formedness now, because our template template parameter
900 // might have dependent types in its template parameters, which we wouldn't
901 // be able to match now.
902 //
903 // If none of the template template parameter's template arguments mention
904 // other template parameters, we could actually perform more checking here.
905 // However, it isn't worth doing.
906 TemplateArgumentLoc DefaultArg = translateTemplateArgument(*this, Default);
907 if (DefaultArg.getArgument().getAsTemplate().isNull()) {
Faisal Valib8b04f82016-03-26 20:46:45 +0000908 Diag(DefaultArg.getLocation(), diag::err_template_arg_not_valid_template)
Douglas Gregordc13ded2010-07-01 00:00:45 +0000909 << DefaultArg.getSourceRange();
John McCall48871652010-08-21 09:40:31 +0000910 return Param;
Douglas Gregordc13ded2010-07-01 00:00:45 +0000911 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000912
Douglas Gregor6ff1fbf2010-12-16 08:48:57 +0000913 // Check for unexpanded parameter packs.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000914 if (DiagnoseUnexpandedParameterPack(DefaultArg.getLocation(),
Douglas Gregor6ff1fbf2010-12-16 08:48:57 +0000915 DefaultArg.getArgument().getAsTemplate(),
916 UPPC_DefaultArgument))
917 return Param;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000918
Richard Smith1469b912015-06-10 00:29:03 +0000919 Param->setDefaultArgument(Context, DefaultArg);
Douglas Gregordba32632009-02-10 19:49:53 +0000920 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000921
John McCall48871652010-08-21 09:40:31 +0000922 return Param;
Douglas Gregordba32632009-02-10 19:49:53 +0000923}
924
Hubert Tongf608c052016-04-29 18:05:37 +0000925/// ActOnTemplateParameterList - Builds a TemplateParameterList, optionally
926/// constrained by RequiresClause, that contains the template parameters in
927/// Params.
Richard Trieu9becef62011-09-09 03:18:59 +0000928TemplateParameterList *
Douglas Gregorb9bd8a92008-12-24 02:52:09 +0000929Sema::ActOnTemplateParameterList(unsigned Depth,
930 SourceLocation ExportLoc,
Mike Stump11289f42009-09-09 15:08:12 +0000931 SourceLocation TemplateLoc,
Douglas Gregorb9bd8a92008-12-24 02:52:09 +0000932 SourceLocation LAngleLoc,
Craig Topper96225a52015-12-24 23:58:25 +0000933 ArrayRef<Decl *> Params,
Hubert Tongf608c052016-04-29 18:05:37 +0000934 SourceLocation RAngleLoc,
935 Expr *RequiresClause) {
Douglas Gregorb9bd8a92008-12-24 02:52:09 +0000936 if (ExportLoc.isValid())
Douglas Gregor5c80a27b2009-11-25 18:55:14 +0000937 Diag(ExportLoc, diag::warn_template_export_unsupported);
Douglas Gregorb9bd8a92008-12-24 02:52:09 +0000938
David Majnemer902f8c62015-12-27 07:16:27 +0000939 return TemplateParameterList::Create(
940 Context, TemplateLoc, LAngleLoc,
941 llvm::makeArrayRef((NamedDecl *const *)Params.data(), Params.size()),
Hubert Tonge4a0c0e2016-07-30 22:33:34 +0000942 RAngleLoc, RequiresClause);
Douglas Gregorb9bd8a92008-12-24 02:52:09 +0000943}
Douglas Gregorded2d7b2009-02-04 19:02:06 +0000944
John McCall3e11ebe2010-03-15 10:12:16 +0000945static void SetNestedNameSpecifier(TagDecl *T, const CXXScopeSpec &SS) {
946 if (SS.isSet())
Douglas Gregor14454802011-02-25 02:25:35 +0000947 T->setQualifierInfo(SS.getWithLocInContext(T->getASTContext()));
John McCall3e11ebe2010-03-15 10:12:16 +0000948}
949
John McCallfaf5fb42010-08-26 23:41:50 +0000950DeclResult
John McCall9bb74a52009-07-31 02:45:11 +0000951Sema::CheckClassTemplate(Scope *S, unsigned TagSpec, TagUseKind TUK,
Jeffrey Yasskinc76498d2010-04-08 16:38:48 +0000952 SourceLocation KWLoc, CXXScopeSpec &SS,
Douglas Gregorcd72ba92009-02-06 22:42:48 +0000953 IdentifierInfo *Name, SourceLocation NameLoc,
954 AttributeList *Attr,
Douglas Gregor1d5e9f92009-08-25 17:23:04 +0000955 TemplateParameterList *TemplateParams,
Douglas Gregor2820e692011-09-09 19:05:14 +0000956 AccessSpecifier AS, SourceLocation ModulePrivateLoc,
Nikola Smiljanic4fc91532014-07-17 01:59:34 +0000957 SourceLocation FriendLoc,
Abramo Bagnara0adf29a2011-03-10 13:28:31 +0000958 unsigned NumOuterTemplateParamLists,
Richard Smithbe3980b2015-03-27 00:41:57 +0000959 TemplateParameterList** OuterTemplateParamLists,
Richard Smithd9ba2242015-05-07 03:54:19 +0000960 SkipBodyInfo *SkipBody) {
Mike Stump11289f42009-09-09 15:08:12 +0000961 assert(TemplateParams && TemplateParams->size() > 0 &&
Douglas Gregor1d5e9f92009-08-25 17:23:04 +0000962 "No template parameters");
John McCall9bb74a52009-07-31 02:45:11 +0000963 assert(TUK != TUK_Reference && "Can only declare or define class templates");
Douglas Gregordba32632009-02-10 19:49:53 +0000964 bool Invalid = false;
Douglas Gregorcd72ba92009-02-06 22:42:48 +0000965
966 // Check that we can declare a template here.
Douglas Gregor1d5e9f92009-08-25 17:23:04 +0000967 if (CheckTemplateDeclScope(S, TemplateParams))
Douglas Gregorc08f4892009-03-25 00:13:59 +0000968 return true;
Douglas Gregorcd72ba92009-02-06 22:42:48 +0000969
Abramo Bagnara6150c882010-05-11 21:36:43 +0000970 TagTypeKind Kind = TypeWithKeyword::getTagTypeKindForTypeSpec(TagSpec);
971 assert(Kind != TTK_Enum && "can't build template of enumerated type");
Douglas Gregorcd72ba92009-02-06 22:42:48 +0000972
973 // There is no such thing as an unnamed class template.
974 if (!Name) {
975 Diag(KWLoc, diag::err_template_unnamed_class);
Douglas Gregorc08f4892009-03-25 00:13:59 +0000976 return true;
Douglas Gregorcd72ba92009-02-06 22:42:48 +0000977 }
978
Richard Smith6483d222012-04-21 01:27:54 +0000979 // Find any previous declaration with this name. For a friend with no
980 // scope explicitly specified, we only look for tag declarations (per
981 // C++11 [basic.lookup.elab]p2).
Douglas Gregor1d5e9f92009-08-25 17:23:04 +0000982 DeclContext *SemanticContext;
Richard Smith6483d222012-04-21 01:27:54 +0000983 LookupResult Previous(*this, Name, NameLoc,
984 (SS.isEmpty() && TUK == TUK_Friend)
985 ? LookupTagName : LookupOrdinaryName,
John McCall5cebab12009-11-18 07:57:50 +0000986 ForRedeclaration);
Douglas Gregor1d5e9f92009-08-25 17:23:04 +0000987 if (SS.isNotEmpty() && !SS.isInvalid()) {
988 SemanticContext = computeDeclContext(SS, true);
989 if (!SemanticContext) {
Douglas Gregor67daacb2012-03-30 16:20:47 +0000990 // FIXME: Horrible, horrible hack! We can't currently represent this
991 // in the AST, and historically we have just ignored such friend
992 // class templates, so don't complain here.
Richard Smithcd556eb2013-11-08 18:59:56 +0000993 Diag(NameLoc, TUK == TUK_Friend
994 ? diag::warn_template_qualified_friend_ignored
995 : diag::err_template_qualified_declarator_no_match)
Douglas Gregor67daacb2012-03-30 16:20:47 +0000996 << SS.getScopeRep() << SS.getRange();
Richard Smithcd556eb2013-11-08 18:59:56 +0000997 return TUK != TUK_Friend;
Douglas Gregor1d5e9f92009-08-25 17:23:04 +0000998 }
Mike Stump11289f42009-09-09 15:08:12 +0000999
John McCall0b66eb32010-05-01 00:40:08 +00001000 if (RequireCompleteDeclContext(SS, SemanticContext))
1001 return true;
1002
Douglas Gregor041b0842011-10-14 15:31:12 +00001003 // If we're adding a template to a dependent context, we may need to
1004 // rebuilding some of the types used within the template parameter list,
1005 // now that we know what the current instantiation is.
1006 if (SemanticContext->isDependentContext()) {
1007 ContextRAII SavedContext(*this, SemanticContext);
1008 if (RebuildTemplateParamsInCurrentInstantiation(TemplateParams))
1009 Invalid = true;
Douglas Gregorb7d17dd2012-03-28 16:01:27 +00001010 } else if (TUK != TUK_Friend && TUK != TUK_Reference)
1011 diagnoseQualifiedDeclaration(SS, SemanticContext, Name, NameLoc);
Richard Smith6483d222012-04-21 01:27:54 +00001012
John McCall27b18f82009-11-17 02:14:36 +00001013 LookupQualifiedName(Previous, SemanticContext);
Douglas Gregor1d5e9f92009-08-25 17:23:04 +00001014 } else {
1015 SemanticContext = CurContext;
Richard Smith88fe69c2015-07-06 01:45:27 +00001016
1017 // C++14 [class.mem]p14:
1018 // If T is the name of a class, then each of the following shall have a
1019 // name different from T:
1020 // -- every member template of class T
1021 if (TUK != TUK_Friend &&
1022 DiagnoseClassNameShadow(SemanticContext,
1023 DeclarationNameInfo(Name, NameLoc)))
1024 return true;
1025
John McCall27b18f82009-11-17 02:14:36 +00001026 LookupName(Previous, S);
Douglas Gregor1d5e9f92009-08-25 17:23:04 +00001027 }
Mike Stump11289f42009-09-09 15:08:12 +00001028
Douglas Gregorce40e2e2010-04-12 16:00:01 +00001029 if (Previous.isAmbiguous())
1030 return true;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001031
Craig Topperc3ec1492014-05-26 06:22:03 +00001032 NamedDecl *PrevDecl = nullptr;
Douglas Gregorcd72ba92009-02-06 22:42:48 +00001033 if (Previous.begin() != Previous.end())
Douglas Gregorce40e2e2010-04-12 16:00:01 +00001034 PrevDecl = (*Previous.begin())->getUnderlyingDecl();
Douglas Gregorcd72ba92009-02-06 22:42:48 +00001035
Serge Pavlove50bf752016-06-10 04:39:07 +00001036 if (PrevDecl && PrevDecl->isTemplateParameter()) {
1037 // Maybe we will complain about the shadowed template parameter.
1038 DiagnoseTemplateParameterShadow(NameLoc, PrevDecl);
1039 // Just pretend that we didn't see the previous declaration.
1040 PrevDecl = nullptr;
1041 }
1042
Douglas Gregorcd72ba92009-02-06 22:42:48 +00001043 // If there is a previous declaration with the same name, check
1044 // whether this is a valid redeclaration.
Mike Stump11289f42009-09-09 15:08:12 +00001045 ClassTemplateDecl *PrevClassTemplate
Douglas Gregorcd72ba92009-02-06 22:42:48 +00001046 = dyn_cast_or_null<ClassTemplateDecl>(PrevDecl);
Douglas Gregor7f34bae2009-10-09 21:11:42 +00001047
1048 // We may have found the injected-class-name of a class template,
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001049 // class template partial specialization, or class template specialization.
Douglas Gregor7f34bae2009-10-09 21:11:42 +00001050 // In these cases, grab the template that is being defined or specialized.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001051 if (!PrevClassTemplate && PrevDecl && isa<CXXRecordDecl>(PrevDecl) &&
Douglas Gregor7f34bae2009-10-09 21:11:42 +00001052 cast<CXXRecordDecl>(PrevDecl)->isInjectedClassName()) {
1053 PrevDecl = cast<CXXRecordDecl>(PrevDecl->getDeclContext());
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001054 PrevClassTemplate
Douglas Gregor7f34bae2009-10-09 21:11:42 +00001055 = cast<CXXRecordDecl>(PrevDecl)->getDescribedClassTemplate();
1056 if (!PrevClassTemplate && isa<ClassTemplateSpecializationDecl>(PrevDecl)) {
1057 PrevClassTemplate
1058 = cast<ClassTemplateSpecializationDecl>(PrevDecl)
1059 ->getSpecializedTemplate();
1060 }
1061 }
1062
John McCalld43784f2009-12-18 11:25:59 +00001063 if (TUK == TUK_Friend) {
John McCall90d3bb92009-12-17 23:21:11 +00001064 // C++ [namespace.memdef]p3:
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001065 // [...] When looking for a prior declaration of a class or a function
1066 // declared as a friend, and when the name of the friend class or
John McCall90d3bb92009-12-17 23:21:11 +00001067 // function is neither a qualified name nor a template-id, scopes outside
1068 // the innermost enclosing namespace scope are not considered.
Douglas Gregorb74b1032010-04-18 17:37:40 +00001069 if (!SS.isSet()) {
1070 DeclContext *OutermostContext = CurContext;
1071 while (!OutermostContext->isFileContext())
1072 OutermostContext = OutermostContext->getLookupParent();
John McCalld43784f2009-12-18 11:25:59 +00001073
Richard Smith61e582f2012-04-20 07:12:26 +00001074 if (PrevDecl &&
Douglas Gregorb74b1032010-04-18 17:37:40 +00001075 (OutermostContext->Equals(PrevDecl->getDeclContext()) ||
1076 OutermostContext->Encloses(PrevDecl->getDeclContext()))) {
1077 SemanticContext = PrevDecl->getDeclContext();
1078 } else {
1079 // Declarations in outer scopes don't matter. However, the outermost
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001080 // context we computed is the semantic context for our new
Douglas Gregorb74b1032010-04-18 17:37:40 +00001081 // declaration.
Craig Topperc3ec1492014-05-26 06:22:03 +00001082 PrevDecl = PrevClassTemplate = nullptr;
Douglas Gregorb74b1032010-04-18 17:37:40 +00001083 SemanticContext = OutermostContext;
Richard Smith6483d222012-04-21 01:27:54 +00001084
1085 // Check that the chosen semantic context doesn't already contain a
1086 // declaration of this name as a non-tag type.
Richard Smithfc805ca2015-07-06 04:43:58 +00001087 Previous.clear(LookupOrdinaryName);
Richard Smith6483d222012-04-21 01:27:54 +00001088 DeclContext *LookupContext = SemanticContext;
1089 while (LookupContext->isTransparentContext())
1090 LookupContext = LookupContext->getLookupParent();
1091 LookupQualifiedName(Previous, LookupContext);
1092
1093 if (Previous.isAmbiguous())
1094 return true;
1095
1096 if (Previous.begin() != Previous.end())
1097 PrevDecl = (*Previous.begin())->getUnderlyingDecl();
Douglas Gregorb74b1032010-04-18 17:37:40 +00001098 }
John McCall90d3bb92009-12-17 23:21:11 +00001099 }
Richard Smith72bcaec2013-12-05 04:30:04 +00001100 } else if (PrevDecl &&
Richard Smithfc805ca2015-07-06 04:43:58 +00001101 !isDeclInScope(Previous.getRepresentativeDecl(), SemanticContext,
1102 S, SS.isValid()))
Craig Topperc3ec1492014-05-26 06:22:03 +00001103 PrevDecl = PrevClassTemplate = nullptr;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001104
Richard Smithfc805ca2015-07-06 04:43:58 +00001105 if (auto *Shadow = dyn_cast_or_null<UsingShadowDecl>(
1106 PrevDecl ? Previous.getRepresentativeDecl() : nullptr)) {
1107 if (SS.isEmpty() &&
1108 !(PrevClassTemplate &&
1109 PrevClassTemplate->getDeclContext()->getRedeclContext()->Equals(
1110 SemanticContext->getRedeclContext()))) {
1111 Diag(KWLoc, diag::err_using_decl_conflict_reverse);
1112 Diag(Shadow->getTargetDecl()->getLocation(),
1113 diag::note_using_decl_target);
1114 Diag(Shadow->getUsingDecl()->getLocation(), diag::note_using_decl) << 0;
1115 // Recover by ignoring the old declaration.
1116 PrevDecl = PrevClassTemplate = nullptr;
1117 }
1118 }
1119
Douglas Gregorcd72ba92009-02-06 22:42:48 +00001120 if (PrevClassTemplate) {
Richard Smithe85e1762012-04-22 02:13:50 +00001121 // Ensure that the template parameter lists are compatible. Skip this check
1122 // for a friend in a dependent context: the template parameter list itself
1123 // could be dependent.
1124 if (!(TUK == TUK_Friend && CurContext->isDependentContext()) &&
1125 !TemplateParameterListsAreEqual(TemplateParams,
Douglas Gregorcd72ba92009-02-06 22:42:48 +00001126 PrevClassTemplate->getTemplateParameters(),
Douglas Gregor19ac2d62009-11-12 16:20:59 +00001127 /*Complain=*/true,
1128 TPL_TemplateMatch))
Douglas Gregorc08f4892009-03-25 00:13:59 +00001129 return true;
Douglas Gregorcd72ba92009-02-06 22:42:48 +00001130
1131 // C++ [temp.class]p4:
1132 // In a redeclaration, partial specialization, explicit
1133 // specialization or explicit instantiation of a class template,
1134 // the class-key shall agree in kind with the original class
1135 // template declaration (7.1.5.3).
1136 RecordDecl *PrevRecordDecl = PrevClassTemplate->getTemplatedDecl();
Richard Trieucaa33d32011-06-10 03:11:26 +00001137 if (!isAcceptableTagRedeclaration(PrevRecordDecl, Kind,
Justin Bognerc6ecb7c2015-07-10 23:05:47 +00001138 TUK == TUK_Definition, KWLoc, Name)) {
Mike Stump11289f42009-09-09 15:08:12 +00001139 Diag(KWLoc, diag::err_use_with_wrong_tag)
Douglas Gregor170512f2009-04-01 23:51:29 +00001140 << Name
Douglas Gregora771f462010-03-31 17:46:05 +00001141 << FixItHint::CreateReplacement(KWLoc, PrevRecordDecl->getKindName());
Douglas Gregorcd72ba92009-02-06 22:42:48 +00001142 Diag(PrevRecordDecl->getLocation(), diag::note_previous_use);
Douglas Gregor170512f2009-04-01 23:51:29 +00001143 Kind = PrevRecordDecl->getTagKind();
Douglas Gregorcd72ba92009-02-06 22:42:48 +00001144 }
1145
Douglas Gregorcd72ba92009-02-06 22:42:48 +00001146 // Check for redefinition of this class template.
John McCall9bb74a52009-07-31 02:45:11 +00001147 if (TUK == TUK_Definition) {
Douglas Gregor0a5a2212010-02-11 01:04:33 +00001148 if (TagDecl *Def = PrevRecordDecl->getDefinition()) {
Richard Smithbe3980b2015-03-27 00:41:57 +00001149 // If we have a prior definition that is not visible, treat this as
1150 // simply making that previous definition visible.
1151 NamedDecl *Hidden = nullptr;
1152 if (SkipBody && !hasVisibleDefinition(Def, &Hidden)) {
Richard Smithd9ba2242015-05-07 03:54:19 +00001153 SkipBody->ShouldSkip = true;
Richard Smithbe3980b2015-03-27 00:41:57 +00001154 auto *Tmpl = cast<CXXRecordDecl>(Hidden)->getDescribedClassTemplate();
1155 assert(Tmpl && "original definition of a class template is not a "
1156 "class template?");
Richard Smithd9ba2242015-05-07 03:54:19 +00001157 makeMergedDefinitionVisible(Hidden, KWLoc);
1158 makeMergedDefinitionVisible(Tmpl, KWLoc);
Richard Smithbe3980b2015-03-27 00:41:57 +00001159 return Def;
1160 }
1161
Douglas Gregorcd72ba92009-02-06 22:42:48 +00001162 Diag(NameLoc, diag::err_redefinition) << Name;
1163 Diag(Def->getLocation(), diag::note_previous_definition);
1164 // FIXME: Would it make sense to try to "forget" the previous
1165 // definition, as part of error recovery?
Douglas Gregorc08f4892009-03-25 00:13:59 +00001166 return true;
Douglas Gregorcd72ba92009-02-06 22:42:48 +00001167 }
Serge Pavlove50bf752016-06-10 04:39:07 +00001168 }
Douglas Gregorcd72ba92009-02-06 22:42:48 +00001169 } else if (PrevDecl) {
1170 // C++ [temp]p5:
1171 // A class template shall not have the same name as any other
1172 // template, class, function, object, enumeration, enumerator,
1173 // namespace, or type in the same scope (3.3), except as specified
1174 // in (14.5.4).
1175 Diag(NameLoc, diag::err_redefinition_different_kind) << Name;
1176 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
Douglas Gregorc08f4892009-03-25 00:13:59 +00001177 return true;
Douglas Gregorcd72ba92009-02-06 22:42:48 +00001178 }
1179
Douglas Gregordba32632009-02-10 19:49:53 +00001180 // Check the template parameter list of this declaration, possibly
1181 // merging in the template parameter list from the previous class
Richard Smithe85e1762012-04-22 02:13:50 +00001182 // template declaration. Skip this check for a friend in a dependent
1183 // context, because the template parameter list might be dependent.
1184 if (!(TUK == TUK_Friend && CurContext->isDependentContext()) &&
David Majnemerba8f17a2013-06-25 22:08:55 +00001185 CheckTemplateParameterList(
1186 TemplateParams,
Craig Topperc3ec1492014-05-26 06:22:03 +00001187 PrevClassTemplate ? PrevClassTemplate->getTemplateParameters()
1188 : nullptr,
David Majnemerba8f17a2013-06-25 22:08:55 +00001189 (SS.isSet() && SemanticContext && SemanticContext->isRecord() &&
1190 SemanticContext->isDependentContext())
1191 ? TPC_ClassTemplateMember
1192 : TUK == TUK_Friend ? TPC_FriendClassTemplate
1193 : TPC_ClassTemplate))
Douglas Gregordba32632009-02-10 19:49:53 +00001194 Invalid = true;
Mike Stump11289f42009-09-09 15:08:12 +00001195
Douglas Gregorce40e2e2010-04-12 16:00:01 +00001196 if (SS.isSet()) {
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001197 // If the name of the template was qualified, we must be defining the
Douglas Gregorce40e2e2010-04-12 16:00:01 +00001198 // template out-of-line.
Richard Smithe85e1762012-04-22 02:13:50 +00001199 if (!SS.isInvalid() && !Invalid && !PrevClassTemplate) {
1200 Diag(NameLoc, TUK == TUK_Friend ? diag::err_friend_decl_does_not_match
Richard Smith114394f2013-08-09 04:35:01 +00001201 : diag::err_member_decl_does_not_match)
1202 << Name << SemanticContext << /*IsDefinition*/true << SS.getRange();
Douglas Gregorfe0055e2011-11-01 21:35:16 +00001203 Invalid = true;
1204 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001205 }
1206
Mike Stump11289f42009-09-09 15:08:12 +00001207 CXXRecordDecl *NewClass =
Abramo Bagnara29c2d462011-03-09 14:09:51 +00001208 CXXRecordDecl::Create(Context, Kind, SemanticContext, KWLoc, NameLoc, Name,
Mike Stump11289f42009-09-09 15:08:12 +00001209 PrevClassTemplate?
Craig Topperc3ec1492014-05-26 06:22:03 +00001210 PrevClassTemplate->getTemplatedDecl() : nullptr,
Douglas Gregor1ec5e9f2009-05-15 19:11:46 +00001211 /*DelayTypeCreation=*/true);
John McCall3e11ebe2010-03-15 10:12:16 +00001212 SetNestedNameSpecifier(NewClass, SS);
Abramo Bagnara0adf29a2011-03-10 13:28:31 +00001213 if (NumOuterTemplateParamLists > 0)
Benjamin Kramer9cc210652015-08-05 09:40:49 +00001214 NewClass->setTemplateParameterListsInfo(
1215 Context, llvm::makeArrayRef(OuterTemplateParamLists,
1216 NumOuterTemplateParamLists));
Douglas Gregorcd72ba92009-02-06 22:42:48 +00001217
Eli Friedmanedb6f5d2012-02-10 02:02:21 +00001218 // Add alignment attributes if necessary; these attributes are checked when
1219 // the ASTContext lays out the structure.
Eli Friedman0415f3e12012-08-08 21:08:34 +00001220 if (TUK == TUK_Definition) {
1221 AddAlignmentAttributesForRecord(NewClass);
1222 AddMsStructLayoutForRecord(NewClass);
1223 }
Eli Friedmanedb6f5d2012-02-10 02:02:21 +00001224
Douglas Gregorcd72ba92009-02-06 22:42:48 +00001225 ClassTemplateDecl *NewTemplate
1226 = ClassTemplateDecl::Create(Context, SemanticContext, NameLoc,
1227 DeclarationName(Name), TemplateParams,
Douglas Gregor90a1a652009-03-19 17:26:29 +00001228 NewClass, PrevClassTemplate);
Douglas Gregor97f1f1c2009-03-26 00:10:35 +00001229 NewClass->setDescribedClassTemplate(NewTemplate);
Douglas Gregoref15bdb2011-09-09 18:32:39 +00001230
Douglas Gregor21823bf2011-12-20 18:11:52 +00001231 if (ModulePrivateLoc.isValid())
Douglas Gregoref15bdb2011-09-09 18:32:39 +00001232 NewTemplate->setModulePrivate();
Douglas Gregor26701a42011-09-09 02:06:17 +00001233
Douglas Gregor1ec5e9f2009-05-15 19:11:46 +00001234 // Build the type for the class template declaration now.
Douglas Gregor9961ce92010-07-08 18:37:38 +00001235 QualType T = NewTemplate->getInjectedClassNameSpecialization();
John McCalle78aac42010-03-10 03:28:59 +00001236 T = Context.getInjectedClassNameType(NewClass, T);
Douglas Gregor1ec5e9f2009-05-15 19:11:46 +00001237 assert(T->isDependentType() && "Class template type is not dependent?");
1238 (void)T;
1239
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001240 // If we are providing an explicit specialization of a member that is a
Douglas Gregorcf915552009-10-13 16:30:37 +00001241 // class template, make a note of that.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001242 if (PrevClassTemplate &&
Douglas Gregorcf915552009-10-13 16:30:37 +00001243 PrevClassTemplate->getInstantiatedFromMemberTemplate())
1244 PrevClassTemplate->setMemberSpecialization();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001245
Anders Carlsson137108d2009-03-26 01:24:28 +00001246 // Set the access specifier.
Douglas Gregor31feb332012-03-17 23:06:31 +00001247 if (!Invalid && TUK != TUK_Friend && NewTemplate->getDeclContext()->isRecord())
John McCall27b5c252009-09-14 21:59:20 +00001248 SetMemberAccessSpecifier(NewTemplate, PrevClassTemplate, AS);
Mike Stump11289f42009-09-09 15:08:12 +00001249
Douglas Gregorcd72ba92009-02-06 22:42:48 +00001250 // Set the lexical context of these templates
1251 NewClass->setLexicalDeclContext(CurContext);
1252 NewTemplate->setLexicalDeclContext(CurContext);
1253
John McCall9bb74a52009-07-31 02:45:11 +00001254 if (TUK == TUK_Definition)
Douglas Gregorcd72ba92009-02-06 22:42:48 +00001255 NewClass->startDefinition();
1256
1257 if (Attr)
Douglas Gregor758a8692009-06-17 21:51:59 +00001258 ProcessDeclAttributeList(S, NewClass, Attr);
Douglas Gregorcd72ba92009-02-06 22:42:48 +00001259
Rafael Espindola0c6c4052012-08-22 14:52:14 +00001260 if (PrevClassTemplate)
1261 mergeDeclAttributes(NewClass, PrevClassTemplate->getTemplatedDecl());
1262
Rafael Espindola385c0422012-07-13 18:04:45 +00001263 AddPushedVisibilityAttribute(NewClass);
1264
Richard Smith234ff472014-08-23 00:49:01 +00001265 if (TUK != TUK_Friend) {
1266 // Per C++ [basic.scope.temp]p2, skip the template parameter scopes.
1267 Scope *Outer = S;
1268 while ((Outer->getFlags() & Scope::TemplateParamScope) != 0)
1269 Outer = Outer->getParent();
1270 PushOnScopeChains(NewTemplate, Outer);
1271 } else {
Douglas Gregor3dad8422009-09-26 06:47:28 +00001272 if (PrevClassTemplate && PrevClassTemplate->getAccess() != AS_none) {
John McCall27b5c252009-09-14 21:59:20 +00001273 NewTemplate->setAccess(PrevClassTemplate->getAccess());
Douglas Gregor3dad8422009-09-26 06:47:28 +00001274 NewClass->setAccess(PrevClassTemplate->getAccess());
1275 }
John McCall27b5c252009-09-14 21:59:20 +00001276
Richard Smith64017682013-07-17 23:53:16 +00001277 NewTemplate->setObjectOfFriendDecl();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001278
John McCall27b5c252009-09-14 21:59:20 +00001279 // Friend templates are visible in fairly strange ways.
1280 if (!CurContext->isDependentContext()) {
Sebastian Redl50c68252010-08-31 00:36:30 +00001281 DeclContext *DC = SemanticContext->getRedeclContext();
Richard Smith05afe5e2012-03-13 03:12:56 +00001282 DC->makeDeclVisibleInContext(NewTemplate);
John McCall27b5c252009-09-14 21:59:20 +00001283 if (Scope *EnclosingScope = getScopeForDeclContext(S, DC))
1284 PushOnScopeChains(NewTemplate, EnclosingScope,
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001285 /* AddToContext = */ false);
John McCall27b5c252009-09-14 21:59:20 +00001286 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001287
Nikola Smiljanic4fc91532014-07-17 01:59:34 +00001288 FriendDecl *Friend = FriendDecl::Create(
1289 Context, CurContext, NewClass->getLocation(), NewTemplate, FriendLoc);
Douglas Gregor3dad8422009-09-26 06:47:28 +00001290 Friend->setAccess(AS_public);
1291 CurContext->addDecl(Friend);
John McCall27b5c252009-09-14 21:59:20 +00001292 }
Douglas Gregorcd72ba92009-02-06 22:42:48 +00001293
Douglas Gregordba32632009-02-10 19:49:53 +00001294 if (Invalid) {
1295 NewTemplate->setInvalidDecl();
1296 NewClass->setInvalidDecl();
1297 }
Rafael Espindolaeca5cd22012-07-13 01:19:08 +00001298
Dmitri Gribenko34df2202012-07-31 22:37:06 +00001299 ActOnDocumentableDecl(NewTemplate);
1300
John McCall48871652010-08-21 09:40:31 +00001301 return NewTemplate;
Douglas Gregorcd72ba92009-02-06 22:42:48 +00001302}
1303
Douglas Gregored5731f2009-11-25 17:50:39 +00001304/// \brief Diagnose the presence of a default template argument on a
1305/// template parameter, which is ill-formed in certain contexts.
1306///
1307/// \returns true if the default template argument should be dropped.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001308static bool DiagnoseDefaultTemplateArgument(Sema &S,
Douglas Gregored5731f2009-11-25 17:50:39 +00001309 Sema::TemplateParamListContext TPC,
1310 SourceLocation ParamLoc,
1311 SourceRange DefArgRange) {
1312 switch (TPC) {
1313 case Sema::TPC_ClassTemplate:
Larisse Voufo39a1e502013-08-06 01:03:05 +00001314 case Sema::TPC_VarTemplate:
Richard Smith3f1b5d02011-05-05 21:57:07 +00001315 case Sema::TPC_TypeAliasTemplate:
Douglas Gregored5731f2009-11-25 17:50:39 +00001316 return false;
1317
1318 case Sema::TPC_FunctionTemplate:
Douglas Gregora99fb4c2011-02-04 04:20:44 +00001319 case Sema::TPC_FriendFunctionTemplateDefinition:
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001320 // C++ [temp.param]p9:
Douglas Gregored5731f2009-11-25 17:50:39 +00001321 // A default template-argument shall not be specified in a
1322 // function template declaration or a function template
1323 // definition [...]
Douglas Gregora99fb4c2011-02-04 04:20:44 +00001324 // If a friend function template declaration specifies a default
1325 // template-argument, that declaration shall be a definition and shall be
1326 // the only declaration of the function template in the translation unit.
1327 // (C++98/03 doesn't have this wording; see DR226).
Richard Smith2bf7fdb2013-01-02 11:42:31 +00001328 S.Diag(ParamLoc, S.getLangOpts().CPlusPlus11 ?
Richard Smith0bf8a4922011-10-18 20:49:44 +00001329 diag::warn_cxx98_compat_template_parameter_default_in_function_template
1330 : diag::ext_template_parameter_default_in_function_template)
1331 << DefArgRange;
Douglas Gregored5731f2009-11-25 17:50:39 +00001332 return false;
1333
1334 case Sema::TPC_ClassTemplateMember:
1335 // C++0x [temp.param]p9:
1336 // A default template-argument shall not be specified in the
1337 // template-parameter-lists of the definition of a member of a
1338 // class template that appears outside of the member's class.
1339 S.Diag(ParamLoc, diag::err_template_parameter_default_template_member)
1340 << DefArgRange;
1341 return true;
1342
David Majnemerba8f17a2013-06-25 22:08:55 +00001343 case Sema::TPC_FriendClassTemplate:
Douglas Gregored5731f2009-11-25 17:50:39 +00001344 case Sema::TPC_FriendFunctionTemplate:
1345 // C++ [temp.param]p9:
1346 // A default template-argument shall not be specified in a
1347 // friend template declaration.
1348 S.Diag(ParamLoc, diag::err_template_parameter_default_friend_template)
1349 << DefArgRange;
1350 return true;
1351
1352 // FIXME: C++0x [temp.param]p9 allows default template-arguments
1353 // for friend function templates if there is only a single
1354 // declaration (and it is a definition). Strange!
1355 }
1356
David Blaikie8a40f702012-01-17 06:56:22 +00001357 llvm_unreachable("Invalid TemplateParamListContext!");
Douglas Gregored5731f2009-11-25 17:50:39 +00001358}
1359
Douglas Gregor38ee75e2010-12-16 15:36:43 +00001360/// \brief Check for unexpanded parameter packs within the template parameters
1361/// of a template template parameter, recursively.
Benjamin Kramer8aef5962011-03-26 12:38:21 +00001362static bool DiagnoseUnexpandedParameterPacks(Sema &S,
1363 TemplateTemplateParmDecl *TTP) {
Richard Smith1fde8ec2012-09-07 02:06:42 +00001364 // A template template parameter which is a parameter pack is also a pack
1365 // expansion.
1366 if (TTP->isParameterPack())
1367 return false;
1368
Douglas Gregor38ee75e2010-12-16 15:36:43 +00001369 TemplateParameterList *Params = TTP->getTemplateParameters();
1370 for (unsigned I = 0, N = Params->size(); I != N; ++I) {
1371 NamedDecl *P = Params->getParam(I);
1372 if (NonTypeTemplateParmDecl *NTTP = dyn_cast<NonTypeTemplateParmDecl>(P)) {
Richard Smith1fde8ec2012-09-07 02:06:42 +00001373 if (!NTTP->isParameterPack() &&
1374 S.DiagnoseUnexpandedParameterPack(NTTP->getLocation(),
Douglas Gregor38ee75e2010-12-16 15:36:43 +00001375 NTTP->getTypeSourceInfo(),
1376 Sema::UPPC_NonTypeTemplateParameterType))
1377 return true;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001378
Douglas Gregor38ee75e2010-12-16 15:36:43 +00001379 continue;
1380 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001381
1382 if (TemplateTemplateParmDecl *InnerTTP
Douglas Gregor38ee75e2010-12-16 15:36:43 +00001383 = dyn_cast<TemplateTemplateParmDecl>(P))
1384 if (DiagnoseUnexpandedParameterPacks(S, InnerTTP))
1385 return true;
1386 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001387
Douglas Gregor38ee75e2010-12-16 15:36:43 +00001388 return false;
1389}
1390
Douglas Gregordba32632009-02-10 19:49:53 +00001391/// \brief Checks the validity of a template parameter list, possibly
1392/// considering the template parameter list from a previous
1393/// declaration.
1394///
1395/// If an "old" template parameter list is provided, it must be
1396/// equivalent (per TemplateParameterListsAreEqual) to the "new"
1397/// template parameter list.
1398///
1399/// \param NewParams Template parameter list for a new template
1400/// declaration. This template parameter list will be updated with any
1401/// default arguments that are carried through from the previous
1402/// template parameter list.
1403///
1404/// \param OldParams If provided, template parameter list from a
1405/// previous declaration of the same template. Default template
1406/// arguments will be merged from the old template parameter list to
1407/// the new template parameter list.
1408///
Douglas Gregored5731f2009-11-25 17:50:39 +00001409/// \param TPC Describes the context in which we are checking the given
1410/// template parameter list.
1411///
Douglas Gregordba32632009-02-10 19:49:53 +00001412/// \returns true if an error occurred, false otherwise.
1413bool Sema::CheckTemplateParameterList(TemplateParameterList *NewParams,
Douglas Gregored5731f2009-11-25 17:50:39 +00001414 TemplateParameterList *OldParams,
1415 TemplateParamListContext TPC) {
Douglas Gregordba32632009-02-10 19:49:53 +00001416 bool Invalid = false;
Mike Stump11289f42009-09-09 15:08:12 +00001417
Douglas Gregordba32632009-02-10 19:49:53 +00001418 // C++ [temp.param]p10:
1419 // The set of default template-arguments available for use with a
1420 // template declaration or definition is obtained by merging the
1421 // default arguments from the definition (if in scope) and all
1422 // declarations in scope in the same way default function
1423 // arguments are (8.3.6).
1424 bool SawDefaultArgument = false;
1425 SourceLocation PreviousDefaultArgLoc;
Douglas Gregord32e0282009-02-09 23:23:08 +00001426
Mike Stumpc89c8e32009-02-11 23:03:27 +00001427 // Dummy initialization to avoid warnings.
Douglas Gregor5bd22da2009-02-11 20:46:19 +00001428 TemplateParameterList::iterator OldParam = NewParams->end();
Douglas Gregordba32632009-02-10 19:49:53 +00001429 if (OldParams)
1430 OldParam = OldParams->begin();
1431
Douglas Gregor0693def2011-01-27 01:40:17 +00001432 bool RemoveDefaultArguments = false;
Douglas Gregordba32632009-02-10 19:49:53 +00001433 for (TemplateParameterList::iterator NewParam = NewParams->begin(),
1434 NewParamEnd = NewParams->end();
1435 NewParam != NewParamEnd; ++NewParam) {
1436 // Variables used to diagnose redundant default arguments
1437 bool RedundantDefaultArg = false;
1438 SourceLocation OldDefaultLoc;
1439 SourceLocation NewDefaultLoc;
1440
David Blaikie651c73c2011-10-19 05:19:50 +00001441 // Variable used to diagnose missing default arguments
Douglas Gregordba32632009-02-10 19:49:53 +00001442 bool MissingDefaultArg = false;
1443
David Blaikie651c73c2011-10-19 05:19:50 +00001444 // Variable used to diagnose non-final parameter packs
1445 bool SawParameterPack = false;
Anders Carlsson327865d2009-06-12 23:20:15 +00001446
Douglas Gregordba32632009-02-10 19:49:53 +00001447 if (TemplateTypeParmDecl *NewTypeParm
1448 = dyn_cast<TemplateTypeParmDecl>(*NewParam)) {
Douglas Gregored5731f2009-11-25 17:50:39 +00001449 // Check the presence of a default argument here.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001450 if (NewTypeParm->hasDefaultArgument() &&
1451 DiagnoseDefaultTemplateArgument(*this, TPC,
1452 NewTypeParm->getLocation(),
Douglas Gregored5731f2009-11-25 17:50:39 +00001453 NewTypeParm->getDefaultArgumentInfo()->getTypeLoc()
Abramo Bagnara1108e7b2010-05-20 10:00:11 +00001454 .getSourceRange()))
Douglas Gregored5731f2009-11-25 17:50:39 +00001455 NewTypeParm->removeDefaultArgument();
1456
1457 // Merge default arguments for template type parameters.
Mike Stump11289f42009-09-09 15:08:12 +00001458 TemplateTypeParmDecl *OldTypeParm
Craig Topperc3ec1492014-05-26 06:22:03 +00001459 = OldParams? cast<TemplateTypeParmDecl>(*OldParam) : nullptr;
Anders Carlsson327865d2009-06-12 23:20:15 +00001460 if (NewTypeParm->isParameterPack()) {
1461 assert(!NewTypeParm->hasDefaultArgument() &&
1462 "Parameter packs can't have a default argument!");
1463 SawParameterPack = true;
Richard Smithe7bd6de2015-06-10 20:30:23 +00001464 } else if (OldTypeParm && hasVisibleDefaultArgument(OldTypeParm) &&
John McCall0ad16662009-10-29 08:12:44 +00001465 NewTypeParm->hasDefaultArgument()) {
Douglas Gregordba32632009-02-10 19:49:53 +00001466 OldDefaultLoc = OldTypeParm->getDefaultArgumentLoc();
1467 NewDefaultLoc = NewTypeParm->getDefaultArgumentLoc();
1468 SawDefaultArgument = true;
1469 RedundantDefaultArg = true;
1470 PreviousDefaultArgLoc = NewDefaultLoc;
1471 } else if (OldTypeParm && OldTypeParm->hasDefaultArgument()) {
1472 // Merge the default argument from the old declaration to the
1473 // new declaration.
Richard Smith1469b912015-06-10 00:29:03 +00001474 NewTypeParm->setInheritedDefaultArgument(Context, OldTypeParm);
Douglas Gregordba32632009-02-10 19:49:53 +00001475 PreviousDefaultArgLoc = OldTypeParm->getDefaultArgumentLoc();
1476 } else if (NewTypeParm->hasDefaultArgument()) {
1477 SawDefaultArgument = true;
1478 PreviousDefaultArgLoc = NewTypeParm->getDefaultArgumentLoc();
1479 } else if (SawDefaultArgument)
1480 MissingDefaultArg = true;
Mike Stump12b8ce12009-08-04 21:02:39 +00001481 } else if (NonTypeTemplateParmDecl *NewNonTypeParm
Douglas Gregordba32632009-02-10 19:49:53 +00001482 = dyn_cast<NonTypeTemplateParmDecl>(*NewParam)) {
Douglas Gregor38ee75e2010-12-16 15:36:43 +00001483 // Check for unexpanded parameter packs.
Richard Smith1fde8ec2012-09-07 02:06:42 +00001484 if (!NewNonTypeParm->isParameterPack() &&
1485 DiagnoseUnexpandedParameterPack(NewNonTypeParm->getLocation(),
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001486 NewNonTypeParm->getTypeSourceInfo(),
Douglas Gregor38ee75e2010-12-16 15:36:43 +00001487 UPPC_NonTypeTemplateParameterType)) {
1488 Invalid = true;
1489 continue;
1490 }
1491
Douglas Gregored5731f2009-11-25 17:50:39 +00001492 // Check the presence of a default argument here.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001493 if (NewNonTypeParm->hasDefaultArgument() &&
1494 DiagnoseDefaultTemplateArgument(*this, TPC,
1495 NewNonTypeParm->getLocation(),
Douglas Gregored5731f2009-11-25 17:50:39 +00001496 NewNonTypeParm->getDefaultArgument()->getSourceRange())) {
Abramo Bagnara656e3002010-06-09 09:26:05 +00001497 NewNonTypeParm->removeDefaultArgument();
Douglas Gregored5731f2009-11-25 17:50:39 +00001498 }
1499
Mike Stump12b8ce12009-08-04 21:02:39 +00001500 // Merge default arguments for non-type template parameters
Douglas Gregordba32632009-02-10 19:49:53 +00001501 NonTypeTemplateParmDecl *OldNonTypeParm
Craig Topperc3ec1492014-05-26 06:22:03 +00001502 = OldParams? cast<NonTypeTemplateParmDecl>(*OldParam) : nullptr;
Douglas Gregor0018cdc2011-01-05 16:19:19 +00001503 if (NewNonTypeParm->isParameterPack()) {
1504 assert(!NewNonTypeParm->hasDefaultArgument() &&
1505 "Parameter packs can't have a default argument!");
Richard Smith1fde8ec2012-09-07 02:06:42 +00001506 if (!NewNonTypeParm->isPackExpansion())
1507 SawParameterPack = true;
Richard Smithe7bd6de2015-06-10 20:30:23 +00001508 } else if (OldNonTypeParm && hasVisibleDefaultArgument(OldNonTypeParm) &&
Richard Smith35828f12013-07-22 03:31:14 +00001509 NewNonTypeParm->hasDefaultArgument()) {
Douglas Gregordba32632009-02-10 19:49:53 +00001510 OldDefaultLoc = OldNonTypeParm->getDefaultArgumentLoc();
1511 NewDefaultLoc = NewNonTypeParm->getDefaultArgumentLoc();
1512 SawDefaultArgument = true;
1513 RedundantDefaultArg = true;
1514 PreviousDefaultArgLoc = NewDefaultLoc;
1515 } else if (OldNonTypeParm && OldNonTypeParm->hasDefaultArgument()) {
1516 // Merge the default argument from the old declaration to the
1517 // new declaration.
Richard Smith1469b912015-06-10 00:29:03 +00001518 NewNonTypeParm->setInheritedDefaultArgument(Context, OldNonTypeParm);
Douglas Gregordba32632009-02-10 19:49:53 +00001519 PreviousDefaultArgLoc = OldNonTypeParm->getDefaultArgumentLoc();
1520 } else if (NewNonTypeParm->hasDefaultArgument()) {
1521 SawDefaultArgument = true;
1522 PreviousDefaultArgLoc = NewNonTypeParm->getDefaultArgumentLoc();
1523 } else if (SawDefaultArgument)
Mike Stump11289f42009-09-09 15:08:12 +00001524 MissingDefaultArg = true;
Mike Stump12b8ce12009-08-04 21:02:39 +00001525 } else {
Douglas Gregordba32632009-02-10 19:49:53 +00001526 TemplateTemplateParmDecl *NewTemplateParm
1527 = cast<TemplateTemplateParmDecl>(*NewParam);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001528
Douglas Gregor38ee75e2010-12-16 15:36:43 +00001529 // Check for unexpanded parameter packs, recursively.
Douglas Gregor4a2a8f72011-10-25 03:44:56 +00001530 if (::DiagnoseUnexpandedParameterPacks(*this, NewTemplateParm)) {
Douglas Gregor38ee75e2010-12-16 15:36:43 +00001531 Invalid = true;
1532 continue;
1533 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001534
David Blaikie651c73c2011-10-19 05:19:50 +00001535 // Check the presence of a default argument here.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001536 if (NewTemplateParm->hasDefaultArgument() &&
1537 DiagnoseDefaultTemplateArgument(*this, TPC,
1538 NewTemplateParm->getLocation(),
Douglas Gregored5731f2009-11-25 17:50:39 +00001539 NewTemplateParm->getDefaultArgument().getSourceRange()))
Abramo Bagnara656e3002010-06-09 09:26:05 +00001540 NewTemplateParm->removeDefaultArgument();
Douglas Gregored5731f2009-11-25 17:50:39 +00001541
1542 // Merge default arguments for template template parameters
Douglas Gregordba32632009-02-10 19:49:53 +00001543 TemplateTemplateParmDecl *OldTemplateParm
Craig Topperc3ec1492014-05-26 06:22:03 +00001544 = OldParams? cast<TemplateTemplateParmDecl>(*OldParam) : nullptr;
Douglas Gregor0018cdc2011-01-05 16:19:19 +00001545 if (NewTemplateParm->isParameterPack()) {
1546 assert(!NewTemplateParm->hasDefaultArgument() &&
1547 "Parameter packs can't have a default argument!");
Richard Smith1fde8ec2012-09-07 02:06:42 +00001548 if (!NewTemplateParm->isPackExpansion())
1549 SawParameterPack = true;
Richard Smithe7bd6de2015-06-10 20:30:23 +00001550 } else if (OldTemplateParm &&
1551 hasVisibleDefaultArgument(OldTemplateParm) &&
1552 NewTemplateParm->hasDefaultArgument()) {
Douglas Gregor9167f8b2009-11-11 01:00:40 +00001553 OldDefaultLoc = OldTemplateParm->getDefaultArgument().getLocation();
1554 NewDefaultLoc = NewTemplateParm->getDefaultArgument().getLocation();
Douglas Gregordba32632009-02-10 19:49:53 +00001555 SawDefaultArgument = true;
1556 RedundantDefaultArg = true;
1557 PreviousDefaultArgLoc = NewDefaultLoc;
1558 } else if (OldTemplateParm && OldTemplateParm->hasDefaultArgument()) {
1559 // Merge the default argument from the old declaration to the
1560 // new declaration.
Richard Smith1469b912015-06-10 00:29:03 +00001561 NewTemplateParm->setInheritedDefaultArgument(Context, OldTemplateParm);
Douglas Gregor9167f8b2009-11-11 01:00:40 +00001562 PreviousDefaultArgLoc
1563 = OldTemplateParm->getDefaultArgument().getLocation();
Douglas Gregordba32632009-02-10 19:49:53 +00001564 } else if (NewTemplateParm->hasDefaultArgument()) {
1565 SawDefaultArgument = true;
Douglas Gregor9167f8b2009-11-11 01:00:40 +00001566 PreviousDefaultArgLoc
1567 = NewTemplateParm->getDefaultArgument().getLocation();
Douglas Gregordba32632009-02-10 19:49:53 +00001568 } else if (SawDefaultArgument)
Mike Stump11289f42009-09-09 15:08:12 +00001569 MissingDefaultArg = true;
Douglas Gregordba32632009-02-10 19:49:53 +00001570 }
1571
Richard Smith1fde8ec2012-09-07 02:06:42 +00001572 // C++11 [temp.param]p11:
David Blaikie651c73c2011-10-19 05:19:50 +00001573 // If a template parameter of a primary class template or alias template
1574 // is a template parameter pack, it shall be the last template parameter.
Richard Smith1fde8ec2012-09-07 02:06:42 +00001575 if (SawParameterPack && (NewParam + 1) != NewParamEnd &&
Larisse Voufo39a1e502013-08-06 01:03:05 +00001576 (TPC == TPC_ClassTemplate || TPC == TPC_VarTemplate ||
1577 TPC == TPC_TypeAliasTemplate)) {
David Blaikie651c73c2011-10-19 05:19:50 +00001578 Diag((*NewParam)->getLocation(),
1579 diag::err_template_param_pack_must_be_last_template_parameter);
1580 Invalid = true;
1581 }
1582
Douglas Gregordba32632009-02-10 19:49:53 +00001583 if (RedundantDefaultArg) {
1584 // C++ [temp.param]p12:
1585 // A template-parameter shall not be given default arguments
1586 // by two different declarations in the same scope.
1587 Diag(NewDefaultLoc, diag::err_template_param_default_arg_redefinition);
1588 Diag(OldDefaultLoc, diag::note_template_param_prev_default_arg);
1589 Invalid = true;
Douglas Gregor8b481d82011-02-04 03:57:22 +00001590 } else if (MissingDefaultArg && TPC != TPC_FunctionTemplate) {
Douglas Gregordba32632009-02-10 19:49:53 +00001591 // C++ [temp.param]p11:
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001592 // If a template-parameter of a class template has a default
1593 // template-argument, each subsequent template-parameter shall either
Douglas Gregor7dba51f2011-01-05 16:21:17 +00001594 // have a default template-argument supplied or be a template parameter
1595 // pack.
Mike Stump11289f42009-09-09 15:08:12 +00001596 Diag((*NewParam)->getLocation(),
Douglas Gregordba32632009-02-10 19:49:53 +00001597 diag::err_template_param_default_arg_missing);
1598 Diag(PreviousDefaultArgLoc, diag::note_template_param_prev_default_arg);
1599 Invalid = true;
Douglas Gregor0693def2011-01-27 01:40:17 +00001600 RemoveDefaultArguments = true;
Douglas Gregordba32632009-02-10 19:49:53 +00001601 }
1602
1603 // If we have an old template parameter list that we're merging
1604 // in, move on to the next parameter.
1605 if (OldParams)
1606 ++OldParam;
1607 }
1608
Douglas Gregor0693def2011-01-27 01:40:17 +00001609 // We were missing some default arguments at the end of the list, so remove
1610 // all of the default arguments.
1611 if (RemoveDefaultArguments) {
1612 for (TemplateParameterList::iterator NewParam = NewParams->begin(),
1613 NewParamEnd = NewParams->end();
1614 NewParam != NewParamEnd; ++NewParam) {
1615 if (TemplateTypeParmDecl *TTP = dyn_cast<TemplateTypeParmDecl>(*NewParam))
1616 TTP->removeDefaultArgument();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001617 else if (NonTypeTemplateParmDecl *NTTP
Douglas Gregor0693def2011-01-27 01:40:17 +00001618 = dyn_cast<NonTypeTemplateParmDecl>(*NewParam))
1619 NTTP->removeDefaultArgument();
1620 else
1621 cast<TemplateTemplateParmDecl>(*NewParam)->removeDefaultArgument();
1622 }
1623 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001624
Douglas Gregordba32632009-02-10 19:49:53 +00001625 return Invalid;
1626}
Douglas Gregord32e0282009-02-09 23:23:08 +00001627
John McCalla020a012010-10-20 05:44:58 +00001628namespace {
1629
1630/// A class which looks for a use of a certain level of template
1631/// parameter.
1632struct DependencyChecker : RecursiveASTVisitor<DependencyChecker> {
1633 typedef RecursiveASTVisitor<DependencyChecker> super;
1634
1635 unsigned Depth;
1636 bool Match;
Richard Smith6056d5e2014-02-09 00:54:43 +00001637 SourceLocation MatchLoc;
1638
1639 DependencyChecker(unsigned Depth) : Depth(Depth), Match(false) {}
John McCalla020a012010-10-20 05:44:58 +00001640
1641 DependencyChecker(TemplateParameterList *Params) : Match(false) {
1642 NamedDecl *ND = Params->getParam(0);
1643 if (TemplateTypeParmDecl *PD = dyn_cast<TemplateTypeParmDecl>(ND)) {
1644 Depth = PD->getDepth();
1645 } else if (NonTypeTemplateParmDecl *PD =
1646 dyn_cast<NonTypeTemplateParmDecl>(ND)) {
1647 Depth = PD->getDepth();
1648 } else {
1649 Depth = cast<TemplateTemplateParmDecl>(ND)->getDepth();
1650 }
1651 }
1652
Richard Smith6056d5e2014-02-09 00:54:43 +00001653 bool Matches(unsigned ParmDepth, SourceLocation Loc = SourceLocation()) {
John McCalla020a012010-10-20 05:44:58 +00001654 if (ParmDepth >= Depth) {
1655 Match = true;
Richard Smith6056d5e2014-02-09 00:54:43 +00001656 MatchLoc = Loc;
John McCalla020a012010-10-20 05:44:58 +00001657 return true;
1658 }
1659 return false;
1660 }
1661
Richard Smith6056d5e2014-02-09 00:54:43 +00001662 bool VisitTemplateTypeParmTypeLoc(TemplateTypeParmTypeLoc TL) {
1663 return !Matches(TL.getTypePtr()->getDepth(), TL.getNameLoc());
1664 }
1665
John McCalla020a012010-10-20 05:44:58 +00001666 bool VisitTemplateTypeParmType(const TemplateTypeParmType *T) {
1667 return !Matches(T->getDepth());
1668 }
1669
1670 bool TraverseTemplateName(TemplateName N) {
1671 if (TemplateTemplateParmDecl *PD =
1672 dyn_cast_or_null<TemplateTemplateParmDecl>(N.getAsTemplateDecl()))
Richard Smith6056d5e2014-02-09 00:54:43 +00001673 if (Matches(PD->getDepth()))
1674 return false;
John McCalla020a012010-10-20 05:44:58 +00001675 return super::TraverseTemplateName(N);
1676 }
1677
1678 bool VisitDeclRefExpr(DeclRefExpr *E) {
1679 if (NonTypeTemplateParmDecl *PD =
Richard Smith6056d5e2014-02-09 00:54:43 +00001680 dyn_cast<NonTypeTemplateParmDecl>(E->getDecl()))
1681 if (Matches(PD->getDepth(), E->getExprLoc()))
John McCalla020a012010-10-20 05:44:58 +00001682 return false;
John McCalla020a012010-10-20 05:44:58 +00001683 return super::VisitDeclRefExpr(E);
1684 }
Richard Smith6056d5e2014-02-09 00:54:43 +00001685
1686 bool VisitSubstTemplateTypeParmType(const SubstTemplateTypeParmType *T) {
1687 return TraverseType(T->getReplacementType());
1688 }
1689
1690 bool
1691 VisitSubstTemplateTypeParmPackType(const SubstTemplateTypeParmPackType *T) {
1692 return TraverseTemplateArgument(T->getArgumentPack());
1693 }
1694
Douglas Gregora6a7e3c2011-05-13 00:34:01 +00001695 bool TraverseInjectedClassNameType(const InjectedClassNameType *T) {
1696 return TraverseType(T->getInjectedSpecializationType());
1697 }
John McCalla020a012010-10-20 05:44:58 +00001698};
Eugene Zelenko1ced5092016-02-12 22:53:10 +00001699} // end anonymous namespace
John McCalla020a012010-10-20 05:44:58 +00001700
Douglas Gregor972fe532011-05-10 18:27:06 +00001701/// Determines whether a given type depends on the given parameter
John McCalla020a012010-10-20 05:44:58 +00001702/// list.
1703static bool
Douglas Gregor972fe532011-05-10 18:27:06 +00001704DependsOnTemplateParameters(QualType T, TemplateParameterList *Params) {
John McCalla020a012010-10-20 05:44:58 +00001705 DependencyChecker Checker(Params);
Douglas Gregor972fe532011-05-10 18:27:06 +00001706 Checker.TraverseType(T);
John McCalla020a012010-10-20 05:44:58 +00001707 return Checker.Match;
1708}
1709
Douglas Gregor972fe532011-05-10 18:27:06 +00001710// Find the source range corresponding to the named type in the given
1711// nested-name-specifier, if any.
1712static SourceRange getRangeOfTypeInNestedNameSpecifier(ASTContext &Context,
1713 QualType T,
1714 const CXXScopeSpec &SS) {
1715 NestedNameSpecifierLoc NNSLoc(SS.getScopeRep(), SS.location_data());
1716 while (NestedNameSpecifier *NNS = NNSLoc.getNestedNameSpecifier()) {
1717 if (const Type *CurType = NNS->getAsType()) {
1718 if (Context.hasSameUnqualifiedType(T, QualType(CurType, 0)))
1719 return NNSLoc.getTypeLoc().getSourceRange();
1720 } else
1721 break;
1722
1723 NNSLoc = NNSLoc.getPrefix();
1724 }
1725
1726 return SourceRange();
1727}
1728
Mike Stump11289f42009-09-09 15:08:12 +00001729/// \brief Match the given template parameter lists to the given scope
Douglas Gregord8d297c2009-07-21 23:53:31 +00001730/// specifier, returning the template parameter list that applies to the
1731/// name.
1732///
1733/// \param DeclStartLoc the start of the declaration that has a scope
1734/// specifier or a template parameter list.
Mike Stump11289f42009-09-09 15:08:12 +00001735///
Douglas Gregor972fe532011-05-10 18:27:06 +00001736/// \param DeclLoc The location of the declaration itself.
1737///
Douglas Gregord8d297c2009-07-21 23:53:31 +00001738/// \param SS the scope specifier that will be matched to the given template
1739/// parameter lists. This scope specifier precedes a qualified name that is
1740/// being declared.
1741///
Richard Smith4b55a9c2014-04-17 03:29:33 +00001742/// \param TemplateId The template-id following the scope specifier, if there
1743/// is one. Used to check for a missing 'template<>'.
1744///
Douglas Gregord8d297c2009-07-21 23:53:31 +00001745/// \param ParamLists the template parameter lists, from the outermost to the
1746/// innermost template parameter lists.
1747///
John McCalle820e5e2010-04-13 20:37:33 +00001748/// \param IsFriend Whether to apply the slightly different rules for
1749/// matching template parameters to scope specifiers in friend
1750/// declarations.
1751///
Douglas Gregor5c0405d2009-10-07 22:35:40 +00001752/// \param IsExplicitSpecialization will be set true if the entity being
1753/// declared is an explicit specialization, false otherwise.
1754///
Mike Stump11289f42009-09-09 15:08:12 +00001755/// \returns the template parameter list, if any, that corresponds to the
Douglas Gregord8d297c2009-07-21 23:53:31 +00001756/// name that is preceded by the scope specifier @p SS. This template
Abramo Bagnara60804e12011-03-18 15:16:37 +00001757/// parameter list may have template parameters (if we're declaring a
Mike Stump11289f42009-09-09 15:08:12 +00001758/// template) or may have no template parameters (if we're declaring a
Abramo Bagnara60804e12011-03-18 15:16:37 +00001759/// template specialization), or may be NULL (if what we're declaring isn't
Douglas Gregord8d297c2009-07-21 23:53:31 +00001760/// itself a template).
Robert Wilhelmf2d2e8f2013-07-21 15:20:44 +00001761TemplateParameterList *Sema::MatchTemplateParametersToScopeSpecifier(
1762 SourceLocation DeclStartLoc, SourceLocation DeclLoc, const CXXScopeSpec &SS,
Richard Smith4b55a9c2014-04-17 03:29:33 +00001763 TemplateIdAnnotation *TemplateId,
Robert Wilhelmf2d2e8f2013-07-21 15:20:44 +00001764 ArrayRef<TemplateParameterList *> ParamLists, bool IsFriend,
1765 bool &IsExplicitSpecialization, bool &Invalid) {
Douglas Gregor5c0405d2009-10-07 22:35:40 +00001766 IsExplicitSpecialization = false;
Douglas Gregor972fe532011-05-10 18:27:06 +00001767 Invalid = false;
1768
1769 // The sequence of nested types to which we will match up the template
1770 // parameter lists. We first build this list by starting with the type named
1771 // by the nested-name-specifier and walking out until we run out of types.
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001772 SmallVector<QualType, 4> NestedTypes;
Douglas Gregor972fe532011-05-10 18:27:06 +00001773 QualType T;
Douglas Gregor9d07dfa2011-05-15 17:27:27 +00001774 if (SS.getScopeRep()) {
1775 if (CXXRecordDecl *Record
1776 = dyn_cast_or_null<CXXRecordDecl>(computeDeclContext(SS, true)))
1777 T = Context.getTypeDeclType(Record);
1778 else
1779 T = QualType(SS.getScopeRep()->getAsType(), 0);
1780 }
Douglas Gregor972fe532011-05-10 18:27:06 +00001781
1782 // If we found an explicit specialization that prevents us from needing
1783 // 'template<>' headers, this will be set to the location of that
1784 // explicit specialization.
1785 SourceLocation ExplicitSpecLoc;
1786
1787 while (!T.isNull()) {
1788 NestedTypes.push_back(T);
1789
1790 // Retrieve the parent of a record type.
1791 if (CXXRecordDecl *Record = T->getAsCXXRecordDecl()) {
1792 // If this type is an explicit specialization, we're done.
1793 if (ClassTemplateSpecializationDecl *Spec
1794 = dyn_cast<ClassTemplateSpecializationDecl>(Record)) {
1795 if (!isa<ClassTemplatePartialSpecializationDecl>(Spec) &&
1796 Spec->getSpecializationKind() == TSK_ExplicitSpecialization) {
1797 ExplicitSpecLoc = Spec->getLocation();
1798 break;
Douglas Gregor65911492009-11-23 12:11:45 +00001799 }
Douglas Gregor972fe532011-05-10 18:27:06 +00001800 } else if (Record->getTemplateSpecializationKind()
1801 == TSK_ExplicitSpecialization) {
1802 ExplicitSpecLoc = Record->getLocation();
John McCalle820e5e2010-04-13 20:37:33 +00001803 break;
1804 }
Douglas Gregor972fe532011-05-10 18:27:06 +00001805
1806 if (TypeDecl *Parent = dyn_cast<TypeDecl>(Record->getParent()))
1807 T = Context.getTypeDeclType(Parent);
1808 else
1809 T = QualType();
1810 continue;
1811 }
1812
1813 if (const TemplateSpecializationType *TST
1814 = T->getAs<TemplateSpecializationType>()) {
1815 if (TemplateDecl *Template = TST->getTemplateName().getAsTemplateDecl()) {
1816 if (TypeDecl *Parent = dyn_cast<TypeDecl>(Template->getDeclContext()))
1817 T = Context.getTypeDeclType(Parent);
1818 else
1819 T = QualType();
1820 continue;
Douglas Gregord8d297c2009-07-21 23:53:31 +00001821 }
Douglas Gregor972fe532011-05-10 18:27:06 +00001822 }
1823
1824 // Look one step prior in a dependent template specialization type.
1825 if (const DependentTemplateSpecializationType *DependentTST
1826 = T->getAs<DependentTemplateSpecializationType>()) {
1827 if (NestedNameSpecifier *NNS = DependentTST->getQualifier())
1828 T = QualType(NNS->getAsType(), 0);
1829 else
1830 T = QualType();
1831 continue;
1832 }
1833
1834 // Look one step prior in a dependent name type.
1835 if (const DependentNameType *DependentName = T->getAs<DependentNameType>()){
1836 if (NestedNameSpecifier *NNS = DependentName->getQualifier())
1837 T = QualType(NNS->getAsType(), 0);
1838 else
1839 T = QualType();
1840 continue;
1841 }
1842
1843 // Retrieve the parent of an enumeration type.
1844 if (const EnumType *EnumT = T->getAs<EnumType>()) {
1845 // FIXME: Forward-declared enums require a TSK_ExplicitSpecialization
1846 // check here.
1847 EnumDecl *Enum = EnumT->getDecl();
1848
1849 // Get to the parent type.
1850 if (TypeDecl *Parent = dyn_cast<TypeDecl>(Enum->getParent()))
1851 T = Context.getTypeDeclType(Parent);
1852 else
1853 T = QualType();
1854 continue;
Douglas Gregord8d297c2009-07-21 23:53:31 +00001855 }
Mike Stump11289f42009-09-09 15:08:12 +00001856
Douglas Gregor972fe532011-05-10 18:27:06 +00001857 T = QualType();
1858 }
1859 // Reverse the nested types list, since we want to traverse from the outermost
1860 // to the innermost while checking template-parameter-lists.
1861 std::reverse(NestedTypes.begin(), NestedTypes.end());
Douglas Gregor15301382009-07-30 17:40:51 +00001862
Douglas Gregor972fe532011-05-10 18:27:06 +00001863 // C++0x [temp.expl.spec]p17:
1864 // A member or a member template may be nested within many
1865 // enclosing class templates. In an explicit specialization for
1866 // such a member, the member declaration shall be preceded by a
1867 // template<> for each enclosing class template that is
1868 // explicitly specialized.
Douglas Gregor522d5eb2011-06-06 15:22:55 +00001869 bool SawNonEmptyTemplateParameterList = false;
Richard Smith11a80dc2014-04-17 03:52:20 +00001870
NAKAMURA Takumide4077a2014-04-17 08:57:09 +00001871 auto CheckExplicitSpecialization = [&](SourceRange Range, bool Recovery) {
Richard Smith11a80dc2014-04-17 03:52:20 +00001872 if (SawNonEmptyTemplateParameterList) {
1873 Diag(DeclLoc, diag::err_specialize_member_of_template)
1874 << !Recovery << Range;
1875 Invalid = true;
1876 IsExplicitSpecialization = false;
1877 return true;
1878 }
1879
1880 return false;
1881 };
1882
1883 auto DiagnoseMissingExplicitSpecialization = [&] (SourceRange Range) {
1884 // Check that we can have an explicit specialization here.
1885 if (CheckExplicitSpecialization(Range, true))
1886 return true;
1887
1888 // We don't have a template header, but we should.
1889 SourceLocation ExpectedTemplateLoc;
1890 if (!ParamLists.empty())
1891 ExpectedTemplateLoc = ParamLists[0]->getTemplateLoc();
1892 else
1893 ExpectedTemplateLoc = DeclStartLoc;
1894
1895 Diag(DeclLoc, diag::err_template_spec_needs_header)
1896 << Range
1897 << FixItHint::CreateInsertion(ExpectedTemplateLoc, "template<> ");
1898 return false;
1899 };
1900
Douglas Gregor972fe532011-05-10 18:27:06 +00001901 unsigned ParamIdx = 0;
1902 for (unsigned TypeIdx = 0, NumTypes = NestedTypes.size(); TypeIdx != NumTypes;
1903 ++TypeIdx) {
1904 T = NestedTypes[TypeIdx];
1905
1906 // Whether we expect a 'template<>' header.
1907 bool NeedEmptyTemplateHeader = false;
1908
1909 // Whether we expect a template header with parameters.
1910 bool NeedNonemptyTemplateHeader = false;
1911
1912 // For a dependent type, the set of template parameters that we
1913 // expect to see.
Craig Topperc3ec1492014-05-26 06:22:03 +00001914 TemplateParameterList *ExpectedTemplateParams = nullptr;
Douglas Gregor972fe532011-05-10 18:27:06 +00001915
Douglas Gregor373af9b2011-05-11 23:26:17 +00001916 // C++0x [temp.expl.spec]p15:
1917 // A member or a member template may be nested within many enclosing
1918 // class templates. In an explicit specialization for such a member, the
1919 // member declaration shall be preceded by a template<> for each
1920 // enclosing class template that is explicitly specialized.
Douglas Gregor972fe532011-05-10 18:27:06 +00001921 if (CXXRecordDecl *Record = T->getAsCXXRecordDecl()) {
1922 if (ClassTemplatePartialSpecializationDecl *Partial
1923 = dyn_cast<ClassTemplatePartialSpecializationDecl>(Record)) {
1924 ExpectedTemplateParams = Partial->getTemplateParameters();
1925 NeedNonemptyTemplateHeader = true;
1926 } else if (Record->isDependentType()) {
1927 if (Record->getDescribedClassTemplate()) {
John McCall2408e322010-04-27 00:57:59 +00001928 ExpectedTemplateParams = Record->getDescribedClassTemplate()
Douglas Gregor972fe532011-05-10 18:27:06 +00001929 ->getTemplateParameters();
1930 NeedNonemptyTemplateHeader = true;
1931 }
1932 } else if (ClassTemplateSpecializationDecl *Spec
1933 = dyn_cast<ClassTemplateSpecializationDecl>(Record)) {
1934 // C++0x [temp.expl.spec]p4:
1935 // Members of an explicitly specialized class template are defined
1936 // in the same manner as members of normal classes, and not using
1937 // the template<> syntax.
1938 if (Spec->getSpecializationKind() != TSK_ExplicitSpecialization)
1939 NeedEmptyTemplateHeader = true;
1940 else
Douglas Gregorb32e8252011-06-01 22:37:07 +00001941 continue;
Douglas Gregor972fe532011-05-10 18:27:06 +00001942 } else if (Record->getTemplateSpecializationKind()) {
1943 if (Record->getTemplateSpecializationKind()
Douglas Gregor373af9b2011-05-11 23:26:17 +00001944 != TSK_ExplicitSpecialization &&
1945 TypeIdx == NumTypes - 1)
1946 IsExplicitSpecialization = true;
1947
1948 continue;
Douglas Gregor972fe532011-05-10 18:27:06 +00001949 }
1950 } else if (const TemplateSpecializationType *TST
1951 = T->getAs<TemplateSpecializationType>()) {
Nico Weber28900612015-01-30 02:35:21 +00001952 if (TemplateDecl *Template = TST->getTemplateName().getAsTemplateDecl()) {
Douglas Gregor972fe532011-05-10 18:27:06 +00001953 ExpectedTemplateParams = Template->getTemplateParameters();
1954 NeedNonemptyTemplateHeader = true;
1955 }
1956 } else if (T->getAs<DependentTemplateSpecializationType>()) {
1957 // FIXME: We actually could/should check the template arguments here
1958 // against the corresponding template parameter list.
1959 NeedNonemptyTemplateHeader = false;
1960 }
1961
Douglas Gregor522d5eb2011-06-06 15:22:55 +00001962 // C++ [temp.expl.spec]p16:
1963 // In an explicit specialization declaration for a member of a class
1964 // template or a member template that ap- pears in namespace scope, the
1965 // member template and some of its enclosing class templates may remain
1966 // unspecialized, except that the declaration shall not explicitly
1967 // specialize a class member template if its en- closing class templates
1968 // are not explicitly specialized as well.
Robert Wilhelmf2d2e8f2013-07-21 15:20:44 +00001969 if (ParamIdx < ParamLists.size()) {
Douglas Gregor522d5eb2011-06-06 15:22:55 +00001970 if (ParamLists[ParamIdx]->size() == 0) {
NAKAMURA Takumide4077a2014-04-17 08:57:09 +00001971 if (CheckExplicitSpecialization(ParamLists[ParamIdx]->getSourceRange(),
1972 false))
Craig Topperc3ec1492014-05-26 06:22:03 +00001973 return nullptr;
Douglas Gregor522d5eb2011-06-06 15:22:55 +00001974 } else
1975 SawNonEmptyTemplateParameterList = true;
1976 }
1977
Douglas Gregor972fe532011-05-10 18:27:06 +00001978 if (NeedEmptyTemplateHeader) {
1979 // If we're on the last of the types, and we need a 'template<>' header
1980 // here, then it's an explicit specialization.
1981 if (TypeIdx == NumTypes - 1)
1982 IsExplicitSpecialization = true;
Robert Wilhelmf2d2e8f2013-07-21 15:20:44 +00001983
1984 if (ParamIdx < ParamLists.size()) {
Douglas Gregor972fe532011-05-10 18:27:06 +00001985 if (ParamLists[ParamIdx]->size() > 0) {
1986 // The header has template parameters when it shouldn't. Complain.
1987 Diag(ParamLists[ParamIdx]->getTemplateLoc(),
1988 diag::err_template_param_list_matches_nontemplate)
1989 << T
1990 << SourceRange(ParamLists[ParamIdx]->getLAngleLoc(),
1991 ParamLists[ParamIdx]->getRAngleLoc())
1992 << getRangeOfTypeInNestedNameSpecifier(Context, T, SS);
1993 Invalid = true;
Craig Topperc3ec1492014-05-26 06:22:03 +00001994 return nullptr;
Douglas Gregor972fe532011-05-10 18:27:06 +00001995 }
Richard Smith11a80dc2014-04-17 03:52:20 +00001996
Douglas Gregor972fe532011-05-10 18:27:06 +00001997 // Consume this template header.
1998 ++ParamIdx;
1999 continue;
Douglas Gregor972fe532011-05-10 18:27:06 +00002000 }
Richard Smith11a80dc2014-04-17 03:52:20 +00002001
2002 if (!IsFriend)
2003 if (DiagnoseMissingExplicitSpecialization(
2004 getRangeOfTypeInNestedNameSpecifier(Context, T, SS)))
Craig Topperc3ec1492014-05-26 06:22:03 +00002005 return nullptr;
Richard Smith11a80dc2014-04-17 03:52:20 +00002006
Douglas Gregor972fe532011-05-10 18:27:06 +00002007 continue;
2008 }
Richard Smith11a80dc2014-04-17 03:52:20 +00002009
Douglas Gregor972fe532011-05-10 18:27:06 +00002010 if (NeedNonemptyTemplateHeader) {
2011 // In friend declarations we can have template-ids which don't
2012 // depend on the corresponding template parameter lists. But
2013 // assume that empty parameter lists are supposed to match this
2014 // template-id.
2015 if (IsFriend && T->isDependentType()) {
Robert Wilhelmf2d2e8f2013-07-21 15:20:44 +00002016 if (ParamIdx < ParamLists.size() &&
Douglas Gregor972fe532011-05-10 18:27:06 +00002017 DependsOnTemplateParameters(T, ParamLists[ParamIdx]))
Craig Topperc3ec1492014-05-26 06:22:03 +00002018 ExpectedTemplateParams = nullptr;
Douglas Gregor972fe532011-05-10 18:27:06 +00002019 else
2020 continue;
Mike Stump11289f42009-09-09 15:08:12 +00002021 }
Douglas Gregored5731f2009-11-25 17:50:39 +00002022
Robert Wilhelmf2d2e8f2013-07-21 15:20:44 +00002023 if (ParamIdx < ParamLists.size()) {
2024 // Check the template parameter list, if we can.
Douglas Gregor972fe532011-05-10 18:27:06 +00002025 if (ExpectedTemplateParams &&
2026 !TemplateParameterListsAreEqual(ParamLists[ParamIdx],
2027 ExpectedTemplateParams,
2028 true, TPL_TemplateMatch))
2029 Invalid = true;
Craig Topperc3ec1492014-05-26 06:22:03 +00002030
Douglas Gregor972fe532011-05-10 18:27:06 +00002031 if (!Invalid &&
Craig Topperc3ec1492014-05-26 06:22:03 +00002032 CheckTemplateParameterList(ParamLists[ParamIdx], nullptr,
Douglas Gregor972fe532011-05-10 18:27:06 +00002033 TPC_ClassTemplateMember))
2034 Invalid = true;
2035
2036 ++ParamIdx;
2037 continue;
2038 }
2039
2040 Diag(DeclLoc, diag::err_template_spec_needs_template_parameters)
2041 << T
2042 << getRangeOfTypeInNestedNameSpecifier(Context, T, SS);
2043 Invalid = true;
2044 continue;
2045 }
Douglas Gregord8d297c2009-07-21 23:53:31 +00002046 }
Richard Smith4b55a9c2014-04-17 03:29:33 +00002047
Douglas Gregord8d297c2009-07-21 23:53:31 +00002048 // If there were at least as many template-ids as there were template
2049 // parameter lists, then there are no template parameter lists remaining for
2050 // the declaration itself.
Richard Smith4b55a9c2014-04-17 03:29:33 +00002051 if (ParamIdx >= ParamLists.size()) {
2052 if (TemplateId && !IsFriend) {
Richard Smith4b55a9c2014-04-17 03:29:33 +00002053 // We don't have a template header for the declaration itself, but we
2054 // should.
Richard Smith4b55a9c2014-04-17 03:29:33 +00002055 IsExplicitSpecialization = true;
Richard Smith11a80dc2014-04-17 03:52:20 +00002056 DiagnoseMissingExplicitSpecialization(SourceRange(TemplateId->LAngleLoc,
2057 TemplateId->RAngleLoc));
Richard Smith4b55a9c2014-04-17 03:29:33 +00002058
2059 // Fabricate an empty template parameter list for the invented header.
2060 return TemplateParameterList::Create(Context, SourceLocation(),
David Majnemer902f8c62015-12-27 07:16:27 +00002061 SourceLocation(), None,
Hubert Tonge4a0c0e2016-07-30 22:33:34 +00002062 SourceLocation(), nullptr);
Richard Smith4b55a9c2014-04-17 03:29:33 +00002063 }
2064
Craig Topperc3ec1492014-05-26 06:22:03 +00002065 return nullptr;
Richard Smith4b55a9c2014-04-17 03:29:33 +00002066 }
Mike Stump11289f42009-09-09 15:08:12 +00002067
Douglas Gregord8d297c2009-07-21 23:53:31 +00002068 // If there were too many template parameter lists, complain about that now.
Robert Wilhelmf2d2e8f2013-07-21 15:20:44 +00002069 if (ParamIdx < ParamLists.size() - 1) {
Douglas Gregor972fe532011-05-10 18:27:06 +00002070 bool HasAnyExplicitSpecHeader = false;
2071 bool AllExplicitSpecHeaders = true;
Robert Wilhelmf2d2e8f2013-07-21 15:20:44 +00002072 for (unsigned I = ParamIdx, E = ParamLists.size() - 1; I != E; ++I) {
Douglas Gregor972fe532011-05-10 18:27:06 +00002073 if (ParamLists[I]->size() == 0)
2074 HasAnyExplicitSpecHeader = true;
2075 else
2076 AllExplicitSpecHeaders = false;
Douglas Gregord8d297c2009-07-21 23:53:31 +00002077 }
Robert Wilhelmf2d2e8f2013-07-21 15:20:44 +00002078
Douglas Gregor972fe532011-05-10 18:27:06 +00002079 Diag(ParamLists[ParamIdx]->getTemplateLoc(),
Robert Wilhelmf2d2e8f2013-07-21 15:20:44 +00002080 AllExplicitSpecHeaders ? diag::warn_template_spec_extra_headers
2081 : diag::err_template_spec_extra_headers)
2082 << SourceRange(ParamLists[ParamIdx]->getTemplateLoc(),
2083 ParamLists[ParamLists.size() - 2]->getRAngleLoc());
Douglas Gregor972fe532011-05-10 18:27:06 +00002084
2085 // If there was a specialization somewhere, such that 'template<>' is
2086 // not required, and there were any 'template<>' headers, note where the
2087 // specialization occurred.
2088 if (ExplicitSpecLoc.isValid() && HasAnyExplicitSpecHeader)
2089 Diag(ExplicitSpecLoc,
2090 diag::note_explicit_template_spec_does_not_need_header)
2091 << NestedTypes.back();
2092
2093 // We have a template parameter list with no corresponding scope, which
2094 // means that the resulting template declaration can't be instantiated
2095 // properly (we'll end up with dependent nodes when we shouldn't).
2096 if (!AllExplicitSpecHeaders)
2097 Invalid = true;
Douglas Gregord8d297c2009-07-21 23:53:31 +00002098 }
Mike Stump11289f42009-09-09 15:08:12 +00002099
Douglas Gregor522d5eb2011-06-06 15:22:55 +00002100 // C++ [temp.expl.spec]p16:
2101 // In an explicit specialization declaration for a member of a class
2102 // template or a member template that ap- pears in namespace scope, the
2103 // member template and some of its enclosing class templates may remain
2104 // unspecialized, except that the declaration shall not explicitly
2105 // specialize a class member template if its en- closing class templates
2106 // are not explicitly specialized as well.
Richard Smith11a80dc2014-04-17 03:52:20 +00002107 if (ParamLists.back()->size() == 0 &&
NAKAMURA Takumide4077a2014-04-17 08:57:09 +00002108 CheckExplicitSpecialization(ParamLists[ParamIdx]->getSourceRange(),
2109 false))
Craig Topperc3ec1492014-05-26 06:22:03 +00002110 return nullptr;
Richard Smith11a80dc2014-04-17 03:52:20 +00002111
Douglas Gregord8d297c2009-07-21 23:53:31 +00002112 // Return the last template parameter list, which corresponds to the
2113 // entity being declared.
Robert Wilhelmf2d2e8f2013-07-21 15:20:44 +00002114 return ParamLists.back();
Douglas Gregord8d297c2009-07-21 23:53:31 +00002115}
2116
Douglas Gregor8b6070b2011-03-04 21:37:14 +00002117void Sema::NoteAllFoundTemplates(TemplateName Name) {
2118 if (TemplateDecl *Template = Name.getAsTemplateDecl()) {
2119 Diag(Template->getLocation(), diag::note_template_declared_here)
Larisse Voufo39a1e502013-08-06 01:03:05 +00002120 << (isa<FunctionTemplateDecl>(Template)
2121 ? 0
2122 : isa<ClassTemplateDecl>(Template)
2123 ? 1
2124 : isa<VarTemplateDecl>(Template)
2125 ? 2
2126 : isa<TypeAliasTemplateDecl>(Template) ? 3 : 4)
2127 << Template->getDeclName();
Douglas Gregor8b6070b2011-03-04 21:37:14 +00002128 return;
2129 }
2130
2131 if (OverloadedTemplateStorage *OST = Name.getAsOverloadedTemplate()) {
2132 for (OverloadedTemplateStorage::iterator I = OST->begin(),
2133 IEnd = OST->end();
2134 I != IEnd; ++I)
2135 Diag((*I)->getLocation(), diag::note_template_declared_here)
2136 << 0 << (*I)->getDeclName();
2137
2138 return;
2139 }
2140}
2141
David Majnemerd9b1a4f2015-11-04 03:40:30 +00002142static QualType
2143checkBuiltinTemplateIdType(Sema &SemaRef, BuiltinTemplateDecl *BTD,
2144 const SmallVectorImpl<TemplateArgument> &Converted,
2145 SourceLocation TemplateLoc,
2146 TemplateArgumentListInfo &TemplateArgs) {
2147 ASTContext &Context = SemaRef.getASTContext();
2148 switch (BTD->getBuiltinTemplateKind()) {
Eric Fiselier6ad68552016-07-01 01:24:09 +00002149 case BTK__make_integer_seq: {
David Majnemerd9b1a4f2015-11-04 03:40:30 +00002150 // Specializations of __make_integer_seq<S, T, N> are treated like
2151 // S<T, 0, ..., N-1>.
2152
2153 // C++14 [inteseq.intseq]p1:
2154 // T shall be an integer type.
2155 if (!Converted[1].getAsType()->isIntegralType(Context)) {
2156 SemaRef.Diag(TemplateArgs[1].getLocation(),
2157 diag::err_integer_sequence_integral_element_type);
2158 return QualType();
2159 }
2160
2161 // C++14 [inteseq.make]p1:
2162 // If N is negative the program is ill-formed.
2163 TemplateArgument NumArgsArg = Converted[2];
2164 llvm::APSInt NumArgs = NumArgsArg.getAsIntegral();
2165 if (NumArgs < 0) {
2166 SemaRef.Diag(TemplateArgs[2].getLocation(),
2167 diag::err_integer_sequence_negative_length);
2168 return QualType();
2169 }
2170
2171 QualType ArgTy = NumArgsArg.getIntegralType();
2172 TemplateArgumentListInfo SyntheticTemplateArgs;
2173 // The type argument gets reused as the first template argument in the
2174 // synthetic template argument list.
2175 SyntheticTemplateArgs.addArgument(TemplateArgs[1]);
2176 // Expand N into 0 ... N-1.
2177 for (llvm::APSInt I(NumArgs.getBitWidth(), NumArgs.isUnsigned());
2178 I < NumArgs; ++I) {
2179 TemplateArgument TA(Context, I, ArgTy);
Richard Smith7873de02016-08-11 22:25:46 +00002180 SyntheticTemplateArgs.addArgument(SemaRef.getTrivialTemplateArgumentLoc(
2181 TA, ArgTy, TemplateArgs[2].getLocation()));
David Majnemerd9b1a4f2015-11-04 03:40:30 +00002182 }
2183 // The first template argument will be reused as the template decl that
2184 // our synthetic template arguments will be applied to.
2185 return SemaRef.CheckTemplateIdType(Converted[0].getAsTemplate(),
2186 TemplateLoc, SyntheticTemplateArgs);
2187 }
Eric Fiselier6ad68552016-07-01 01:24:09 +00002188
2189 case BTK__type_pack_element:
2190 // Specializations of
2191 // __type_pack_element<Index, T_1, ..., T_N>
2192 // are treated like T_Index.
2193 assert(Converted.size() == 2 &&
2194 "__type_pack_element should be given an index and a parameter pack");
2195
2196 // If the Index is out of bounds, the program is ill-formed.
2197 TemplateArgument IndexArg = Converted[0], Ts = Converted[1];
2198 llvm::APSInt Index = IndexArg.getAsIntegral();
2199 assert(Index >= 0 && "the index used with __type_pack_element should be of "
2200 "type std::size_t, and hence be non-negative");
2201 if (Index >= Ts.pack_size()) {
2202 SemaRef.Diag(TemplateArgs[0].getLocation(),
2203 diag::err_type_pack_element_out_of_bounds);
2204 return QualType();
2205 }
2206
2207 // We simply return the type at index `Index`.
2208 auto Nth = std::next(Ts.pack_begin(), Index.getExtValue());
2209 return Nth->getAsType();
2210 }
David Majnemerd9b1a4f2015-11-04 03:40:30 +00002211 llvm_unreachable("unexpected BuiltinTemplateDecl!");
2212}
2213
Douglas Gregordc572a32009-03-30 22:58:21 +00002214QualType Sema::CheckTemplateIdType(TemplateName Name,
2215 SourceLocation TemplateLoc,
Douglas Gregor739b107a2011-03-03 02:41:12 +00002216 TemplateArgumentListInfo &TemplateArgs) {
John McCalld9dfe3a2011-06-30 08:33:18 +00002217 DependentTemplateName *DTN
2218 = Name.getUnderlying().getAsDependentTemplateName();
Richard Smith3f1b5d02011-05-05 21:57:07 +00002219 if (DTN && DTN->isIdentifier())
2220 // When building a template-id where the template-name is dependent,
2221 // assume the template is a type template. Either our assumption is
2222 // correct, or the code is ill-formed and will be diagnosed when the
2223 // dependent name is substituted.
2224 return Context.getDependentTemplateSpecializationType(ETK_None,
2225 DTN->getQualifier(),
2226 DTN->getIdentifier(),
2227 TemplateArgs);
2228
Douglas Gregordc572a32009-03-30 22:58:21 +00002229 TemplateDecl *Template = Name.getAsTemplateDecl();
Richard Smith8f658062013-12-04 00:56:29 +00002230 if (!Template || isa<FunctionTemplateDecl>(Template) ||
2231 isa<VarTemplateDecl>(Template)) {
Douglas Gregor8b6070b2011-03-04 21:37:14 +00002232 // We might have a substituted template template parameter pack. If so,
2233 // build a template specialization type for it.
2234 if (Name.getAsSubstTemplateTemplateParmPack())
2235 return Context.getTemplateSpecializationType(Name, TemplateArgs);
Richard Smith3f1b5d02011-05-05 21:57:07 +00002236
Douglas Gregor8b6070b2011-03-04 21:37:14 +00002237 Diag(TemplateLoc, diag::err_template_id_not_a_type)
2238 << Name;
2239 NoteAllFoundTemplates(Name);
2240 return QualType();
Douglas Gregorb67535d2009-03-31 00:43:58 +00002241 }
Douglas Gregordc572a32009-03-30 22:58:21 +00002242
Douglas Gregorc40290e2009-03-09 23:48:35 +00002243 // Check that the template argument list is well-formed for this
2244 // template.
Chris Lattner0e62c1c2011-07-23 10:55:15 +00002245 SmallVector<TemplateArgument, 4> Converted;
John McCall6b51f282009-11-23 01:53:49 +00002246 if (CheckTemplateArgumentList(Template, TemplateLoc, TemplateArgs,
Richard Smith83b11aa2014-01-09 02:22:22 +00002247 false, Converted))
Douglas Gregorc40290e2009-03-09 23:48:35 +00002248 return QualType();
2249
Douglas Gregorc40290e2009-03-09 23:48:35 +00002250 QualType CanonType;
2251
Douglas Gregor678d76c2011-07-01 01:22:09 +00002252 bool InstantiationDependent = false;
Richard Smith83b11aa2014-01-09 02:22:22 +00002253 if (TypeAliasTemplateDecl *AliasTemplate =
2254 dyn_cast<TypeAliasTemplateDecl>(Template)) {
Richard Smith3f1b5d02011-05-05 21:57:07 +00002255 // Find the canonical type for this type alias template specialization.
2256 TypeAliasDecl *Pattern = AliasTemplate->getTemplatedDecl();
2257 if (Pattern->isInvalidDecl())
2258 return QualType();
2259
2260 TemplateArgumentList TemplateArgs(TemplateArgumentList::OnStack,
David Majnemer8b622692016-07-03 21:17:51 +00002261 Converted);
Richard Smith3f1b5d02011-05-05 21:57:07 +00002262
2263 // Only substitute for the innermost template argument list.
2264 MultiLevelTemplateArgumentList TemplateArgLists;
Richard Smith0c4a34b2011-05-14 15:04:18 +00002265 TemplateArgLists.addOuterTemplateArguments(&TemplateArgs);
Richard Smith5e96d832011-05-12 00:06:17 +00002266 unsigned Depth = AliasTemplate->getTemplateParameters()->getDepth();
2267 for (unsigned I = 0; I < Depth; ++I)
Richard Smith841d8b22013-05-17 03:04:50 +00002268 TemplateArgLists.addOuterTemplateArguments(None);
Richard Smith3f1b5d02011-05-05 21:57:07 +00002269
Richard Smith802c4b72012-08-23 06:16:52 +00002270 LocalInstantiationScope Scope(*this);
Richard Smith3f1b5d02011-05-05 21:57:07 +00002271 InstantiatingTemplate Inst(*this, TemplateLoc, Template);
Alp Tokerd4a72d52013-10-08 08:09:04 +00002272 if (Inst.isInvalid())
Richard Smith8a874c92012-07-08 02:38:24 +00002273 return QualType();
Richard Smith802c4b72012-08-23 06:16:52 +00002274
Richard Smith3f1b5d02011-05-05 21:57:07 +00002275 CanonType = SubstType(Pattern->getUnderlyingType(),
2276 TemplateArgLists, AliasTemplate->getLocation(),
2277 AliasTemplate->getDeclName());
2278 if (CanonType.isNull())
2279 return QualType();
2280 } else if (Name.isDependent() ||
2281 TemplateSpecializationType::anyDependentTemplateArguments(
Douglas Gregor678d76c2011-07-01 01:22:09 +00002282 TemplateArgs, InstantiationDependent)) {
Douglas Gregorc40290e2009-03-09 23:48:35 +00002283 // This class template specialization is a dependent
2284 // type. Therefore, its canonical type is another class template
2285 // specialization type that contains all of the converted
2286 // arguments in canonical form. This ensures that, e.g., A<T> and
2287 // A<T, T> have identical types when A is declared as:
2288 //
2289 // template<typename T, typename U = T> struct A;
Douglas Gregor6bc50582009-05-07 06:41:52 +00002290 TemplateName CanonName = Context.getCanonicalTemplateName(Name);
Mike Stump11289f42009-09-09 15:08:12 +00002291 CanonType = Context.getTemplateSpecializationType(CanonName,
David Majnemer6fbeee32016-07-07 04:43:07 +00002292 Converted);
Mike Stump11289f42009-09-09 15:08:12 +00002293
Douglas Gregora8e02e72009-07-28 23:00:59 +00002294 // FIXME: CanonType is not actually the canonical type, and unfortunately
John McCall0ad16662009-10-29 08:12:44 +00002295 // it is a TemplateSpecializationType that we will never use again.
Douglas Gregora8e02e72009-07-28 23:00:59 +00002296 // In the future, we need to teach getTemplateSpecializationType to only
2297 // build the canonical type and return that to us.
2298 CanonType = Context.getCanonicalType(CanonType);
John McCall2408e322010-04-27 00:57:59 +00002299
2300 // This might work out to be a current instantiation, in which
2301 // case the canonical type needs to be the InjectedClassNameType.
2302 //
2303 // TODO: in theory this could be a simple hashtable lookup; most
2304 // changes to CurContext don't change the set of current
2305 // instantiations.
2306 if (isa<ClassTemplateDecl>(Template)) {
2307 for (DeclContext *Ctx = CurContext; Ctx; Ctx = Ctx->getLookupParent()) {
2308 // If we get out to a namespace, we're done.
2309 if (Ctx->isFileContext()) break;
2310
2311 // If this isn't a record, keep looking.
2312 CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(Ctx);
2313 if (!Record) continue;
2314
2315 // Look for one of the two cases with InjectedClassNameTypes
2316 // and check whether it's the same template.
2317 if (!isa<ClassTemplatePartialSpecializationDecl>(Record) &&
2318 !Record->getDescribedClassTemplate())
2319 continue;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002320
John McCall2408e322010-04-27 00:57:59 +00002321 // Fetch the injected class name type and check whether its
2322 // injected type is equal to the type we just built.
2323 QualType ICNT = Context.getTypeDeclType(Record);
2324 QualType Injected = cast<InjectedClassNameType>(ICNT)
2325 ->getInjectedSpecializationType();
2326
2327 if (CanonType != Injected->getCanonicalTypeInternal())
2328 continue;
2329
2330 // If so, the canonical type of this TST is the injected
2331 // class name type of the record we just found.
2332 assert(ICNT.isCanonical());
2333 CanonType = ICNT;
John McCall2408e322010-04-27 00:57:59 +00002334 break;
2335 }
2336 }
Mike Stump11289f42009-09-09 15:08:12 +00002337 } else if (ClassTemplateDecl *ClassTemplate
Douglas Gregordc572a32009-03-30 22:58:21 +00002338 = dyn_cast<ClassTemplateDecl>(Template)) {
Douglas Gregorc40290e2009-03-09 23:48:35 +00002339 // Find the class template specialization declaration that
2340 // corresponds to these arguments.
Craig Topperc3ec1492014-05-26 06:22:03 +00002341 void *InsertPos = nullptr;
Douglas Gregorc40290e2009-03-09 23:48:35 +00002342 ClassTemplateSpecializationDecl *Decl
Craig Topper7e0daca2014-06-26 04:58:53 +00002343 = ClassTemplate->findSpecialization(Converted, InsertPos);
Douglas Gregorc40290e2009-03-09 23:48:35 +00002344 if (!Decl) {
2345 // This is the first time we have referenced this class template
2346 // specialization. Create the canonical declaration and add it to
2347 // the set of specializations.
Mike Stump11289f42009-09-09 15:08:12 +00002348 Decl = ClassTemplateSpecializationDecl::Create(Context,
Douglas Gregore9029562010-05-06 00:28:52 +00002349 ClassTemplate->getTemplatedDecl()->getTagKind(),
2350 ClassTemplate->getDeclContext(),
Abramo Bagnarafd3a4552011-10-03 20:34:03 +00002351 ClassTemplate->getTemplatedDecl()->getLocStart(),
Abramo Bagnara29c2d462011-03-09 14:09:51 +00002352 ClassTemplate->getLocation(),
Douglas Gregor1ccc8412010-11-07 23:05:16 +00002353 ClassTemplate,
David Majnemer8b622692016-07-03 21:17:51 +00002354 Converted, nullptr);
Argyrios Kyrtzidis47470f22010-07-20 13:59:28 +00002355 ClassTemplate->AddSpecialization(Decl, InsertPos);
Abramo Bagnara02b95532012-09-05 09:05:18 +00002356 if (ClassTemplate->isOutOfLine())
2357 Decl->setLexicalDeclContext(ClassTemplate->getLexicalDeclContext());
Douglas Gregorc40290e2009-03-09 23:48:35 +00002358 }
2359
Chandler Carruth2acfb222013-09-27 22:14:40 +00002360 // Diagnose uses of this specialization.
2361 (void)DiagnoseUseOfDecl(Decl, TemplateLoc);
2362
Douglas Gregorc40290e2009-03-09 23:48:35 +00002363 CanonType = Context.getTypeDeclType(Decl);
John McCalle78aac42010-03-10 03:28:59 +00002364 assert(isa<RecordType>(CanonType) &&
2365 "type of non-dependent specialization is not a RecordType");
David Majnemerd9b1a4f2015-11-04 03:40:30 +00002366 } else if (auto *BTD = dyn_cast<BuiltinTemplateDecl>(Template)) {
2367 CanonType = checkBuiltinTemplateIdType(*this, BTD, Converted, TemplateLoc,
2368 TemplateArgs);
Douglas Gregorc40290e2009-03-09 23:48:35 +00002369 }
Mike Stump11289f42009-09-09 15:08:12 +00002370
Douglas Gregorc40290e2009-03-09 23:48:35 +00002371 // Build the fully-sugared type for this class template
2372 // specialization, which refers back to the class template
2373 // specialization we created or found.
John McCall30576cd2010-06-13 09:25:03 +00002374 return Context.getTemplateSpecializationType(Name, TemplateArgs, CanonType);
Douglas Gregorc40290e2009-03-09 23:48:35 +00002375}
2376
John McCallfaf5fb42010-08-26 23:41:50 +00002377TypeResult
Abramo Bagnara48c05be2012-02-06 14:41:24 +00002378Sema::ActOnTemplateIdType(CXXScopeSpec &SS, SourceLocation TemplateKWLoc,
Douglas Gregore7c20652011-03-02 00:47:37 +00002379 TemplateTy TemplateD, SourceLocation TemplateLoc,
Mike Stump11289f42009-09-09 15:08:12 +00002380 SourceLocation LAngleLoc,
Douglas Gregordc572a32009-03-30 22:58:21 +00002381 ASTTemplateArgsPtr TemplateArgsIn,
Abramo Bagnara4244b432012-01-27 08:46:19 +00002382 SourceLocation RAngleLoc,
2383 bool IsCtorOrDtorName) {
Douglas Gregore7c20652011-03-02 00:47:37 +00002384 if (SS.isInvalid())
2385 return true;
2386
Serge Pavlov9ddb76e2013-08-27 13:15:56 +00002387 TemplateName Template = TemplateD.get();
Douglas Gregor8bf42052009-02-09 18:46:07 +00002388
Douglas Gregorc40290e2009-03-09 23:48:35 +00002389 // Translate the parser's template argument list in our AST format.
John McCall6b51f282009-11-23 01:53:49 +00002390 TemplateArgumentListInfo TemplateArgs(LAngleLoc, RAngleLoc);
Douglas Gregorb53edfb2009-11-10 19:49:08 +00002391 translateTemplateArguments(TemplateArgsIn, TemplateArgs);
Douglas Gregord32e0282009-02-09 23:23:08 +00002392
Douglas Gregor5a064722011-02-28 17:23:35 +00002393 if (DependentTemplateName *DTN = Template.getAsDependentTemplateName()) {
Abramo Bagnara4244b432012-01-27 08:46:19 +00002394 QualType T
2395 = Context.getDependentTemplateSpecializationType(ETK_None,
2396 DTN->getQualifier(),
2397 DTN->getIdentifier(),
2398 TemplateArgs);
2399 // Build type-source information.
Douglas Gregor5a064722011-02-28 17:23:35 +00002400 TypeLocBuilder TLB;
2401 DependentTemplateSpecializationTypeLoc SpecTL
2402 = TLB.push<DependentTemplateSpecializationTypeLoc>(T);
Abramo Bagnara48c05be2012-02-06 14:41:24 +00002403 SpecTL.setElaboratedKeywordLoc(SourceLocation());
2404 SpecTL.setQualifierLoc(SS.getWithLocInContext(Context));
Abramo Bagnarae0a70b22012-02-06 22:45:07 +00002405 SpecTL.setTemplateKeywordLoc(TemplateKWLoc);
Abramo Bagnara48c05be2012-02-06 14:41:24 +00002406 SpecTL.setTemplateNameLoc(TemplateLoc);
Douglas Gregor5a064722011-02-28 17:23:35 +00002407 SpecTL.setLAngleLoc(LAngleLoc);
2408 SpecTL.setRAngleLoc(RAngleLoc);
Douglas Gregor5a064722011-02-28 17:23:35 +00002409 for (unsigned I = 0, N = SpecTL.getNumArgs(); I != N; ++I)
2410 SpecTL.setArgLocInfo(I, TemplateArgs[I].getLocInfo());
2411 return CreateParsedType(T, TLB.getTypeSourceInfo(Context, T));
2412 }
2413
John McCall6b51f282009-11-23 01:53:49 +00002414 QualType Result = CheckTemplateIdType(Template, TemplateLoc, TemplateArgs);
Douglas Gregorfe3d7d02009-04-01 21:51:26 +00002415
2416 if (Result.isNull())
2417 return true;
2418
Douglas Gregore7c20652011-03-02 00:47:37 +00002419 // Build type-source information.
Abramo Bagnara48c05be2012-02-06 14:41:24 +00002420 TypeLocBuilder TLB;
Douglas Gregore7c20652011-03-02 00:47:37 +00002421 TemplateSpecializationTypeLoc SpecTL
2422 = TLB.push<TemplateSpecializationTypeLoc>(Result);
Abramo Bagnara48c05be2012-02-06 14:41:24 +00002423 SpecTL.setTemplateKeywordLoc(TemplateKWLoc);
Douglas Gregore7c20652011-03-02 00:47:37 +00002424 SpecTL.setTemplateNameLoc(TemplateLoc);
2425 SpecTL.setLAngleLoc(LAngleLoc);
2426 SpecTL.setRAngleLoc(RAngleLoc);
2427 for (unsigned i = 0, e = SpecTL.getNumArgs(); i != e; ++i)
2428 SpecTL.setArgLocInfo(i, TemplateArgs[i].getLocInfo());
John McCall0ad16662009-10-29 08:12:44 +00002429
Abramo Bagnara4244b432012-01-27 08:46:19 +00002430 // NOTE: avoid constructing an ElaboratedTypeLoc if this is a
2431 // constructor or destructor name (in such a case, the scope specifier
2432 // will be attached to the enclosing Decl or Expr node).
2433 if (SS.isNotEmpty() && !IsCtorOrDtorName) {
Douglas Gregore7c20652011-03-02 00:47:37 +00002434 // Create an elaborated-type-specifier containing the nested-name-specifier.
2435 Result = Context.getElaboratedType(ETK_None, SS.getScopeRep(), Result);
2436 ElaboratedTypeLoc ElabTL = TLB.push<ElaboratedTypeLoc>(Result);
Abramo Bagnara9033e2b2012-02-06 19:09:27 +00002437 ElabTL.setElaboratedKeywordLoc(SourceLocation());
Douglas Gregore7c20652011-03-02 00:47:37 +00002438 ElabTL.setQualifierLoc(SS.getWithLocInContext(Context));
2439 }
2440
2441 return CreateParsedType(Result, TLB.getTypeSourceInfo(Context, Result));
John McCalld8fe9af2009-09-08 17:47:29 +00002442}
John McCall06f6fe8d2009-09-04 01:14:41 +00002443
Douglas Gregore7c20652011-03-02 00:47:37 +00002444TypeResult Sema::ActOnTagTemplateIdType(TagUseKind TUK,
John McCallfaf5fb42010-08-26 23:41:50 +00002445 TypeSpecifierType TagSpec,
Douglas Gregore7c20652011-03-02 00:47:37 +00002446 SourceLocation TagLoc,
2447 CXXScopeSpec &SS,
Abramo Bagnara48c05be2012-02-06 14:41:24 +00002448 SourceLocation TemplateKWLoc,
2449 TemplateTy TemplateD,
Douglas Gregore7c20652011-03-02 00:47:37 +00002450 SourceLocation TemplateLoc,
2451 SourceLocation LAngleLoc,
2452 ASTTemplateArgsPtr TemplateArgsIn,
2453 SourceLocation RAngleLoc) {
Serge Pavlov9ddb76e2013-08-27 13:15:56 +00002454 TemplateName Template = TemplateD.get();
Douglas Gregore7c20652011-03-02 00:47:37 +00002455
2456 // Translate the parser's template argument list in our AST format.
2457 TemplateArgumentListInfo TemplateArgs(LAngleLoc, RAngleLoc);
2458 translateTemplateArguments(TemplateArgsIn, TemplateArgs);
2459
2460 // Determine the tag kind
Abramo Bagnara6150c882010-05-11 21:36:43 +00002461 TagTypeKind TagKind = TypeWithKeyword::getTagTypeKindForTypeSpec(TagSpec);
Douglas Gregore7c20652011-03-02 00:47:37 +00002462 ElaboratedTypeKeyword Keyword
2463 = TypeWithKeyword::getKeywordForTagTypeKind(TagKind);
Mike Stump11289f42009-09-09 15:08:12 +00002464
Douglas Gregore7c20652011-03-02 00:47:37 +00002465 if (DependentTemplateName *DTN = Template.getAsDependentTemplateName()) {
2466 QualType T = Context.getDependentTemplateSpecializationType(Keyword,
2467 DTN->getQualifier(),
2468 DTN->getIdentifier(),
2469 TemplateArgs);
2470
2471 // Build type-source information.
2472 TypeLocBuilder TLB;
2473 DependentTemplateSpecializationTypeLoc SpecTL
Abramo Bagnara48c05be2012-02-06 14:41:24 +00002474 = TLB.push<DependentTemplateSpecializationTypeLoc>(T);
2475 SpecTL.setElaboratedKeywordLoc(TagLoc);
2476 SpecTL.setQualifierLoc(SS.getWithLocInContext(Context));
Abramo Bagnarae0a70b22012-02-06 22:45:07 +00002477 SpecTL.setTemplateKeywordLoc(TemplateKWLoc);
Abramo Bagnara48c05be2012-02-06 14:41:24 +00002478 SpecTL.setTemplateNameLoc(TemplateLoc);
Douglas Gregore7c20652011-03-02 00:47:37 +00002479 SpecTL.setLAngleLoc(LAngleLoc);
2480 SpecTL.setRAngleLoc(RAngleLoc);
Douglas Gregore7c20652011-03-02 00:47:37 +00002481 for (unsigned I = 0, N = SpecTL.getNumArgs(); I != N; ++I)
2482 SpecTL.setArgLocInfo(I, TemplateArgs[I].getLocInfo());
2483 return CreateParsedType(T, TLB.getTypeSourceInfo(Context, T));
2484 }
Richard Smith3f1b5d02011-05-05 21:57:07 +00002485
2486 if (TypeAliasTemplateDecl *TAT =
2487 dyn_cast_or_null<TypeAliasTemplateDecl>(Template.getAsTemplateDecl())) {
2488 // C++0x [dcl.type.elab]p2:
2489 // If the identifier resolves to a typedef-name or the simple-template-id
2490 // resolves to an alias template specialization, the
2491 // elaborated-type-specifier is ill-formed.
Reid Kleckner1a4ab7e2016-12-09 19:47:58 +00002492 Diag(TemplateLoc, diag::err_tag_reference_non_tag)
2493 << TAT << NTK_TypeAliasTemplate << TagKind;
Richard Smith3f1b5d02011-05-05 21:57:07 +00002494 Diag(TAT->getLocation(), diag::note_declared_at);
2495 }
Douglas Gregore7c20652011-03-02 00:47:37 +00002496
2497 QualType Result = CheckTemplateIdType(Template, TemplateLoc, TemplateArgs);
2498 if (Result.isNull())
Matt Beaumont-Gay045bde42011-08-25 23:22:24 +00002499 return TypeResult(true);
Douglas Gregore7c20652011-03-02 00:47:37 +00002500
2501 // Check the tag kind
2502 if (const RecordType *RT = Result->getAs<RecordType>()) {
John McCalld8fe9af2009-09-08 17:47:29 +00002503 RecordDecl *D = RT->getDecl();
Douglas Gregore7c20652011-03-02 00:47:37 +00002504
John McCalld8fe9af2009-09-08 17:47:29 +00002505 IdentifierInfo *Id = D->getIdentifier();
2506 assert(Id && "templated class must have an identifier");
Douglas Gregore7c20652011-03-02 00:47:37 +00002507
Richard Trieucaa33d32011-06-10 03:11:26 +00002508 if (!isAcceptableTagRedeclaration(D, TagKind, TUK == TUK_Definition,
Justin Bognerc6ecb7c2015-07-10 23:05:47 +00002509 TagLoc, Id)) {
John McCalld8fe9af2009-09-08 17:47:29 +00002510 Diag(TagLoc, diag::err_use_with_wrong_tag)
Douglas Gregore7c20652011-03-02 00:47:37 +00002511 << Result
Douglas Gregora771f462010-03-31 17:46:05 +00002512 << FixItHint::CreateReplacement(SourceRange(TagLoc), D->getKindName());
John McCall7f41d982009-09-11 04:59:25 +00002513 Diag(D->getLocation(), diag::note_previous_use);
John McCall06f6fe8d2009-09-04 01:14:41 +00002514 }
2515 }
Abramo Bagnara48c05be2012-02-06 14:41:24 +00002516
Douglas Gregore7c20652011-03-02 00:47:37 +00002517 // Provide source-location information for the template specialization.
2518 TypeLocBuilder TLB;
2519 TemplateSpecializationTypeLoc SpecTL
2520 = TLB.push<TemplateSpecializationTypeLoc>(Result);
Abramo Bagnara48c05be2012-02-06 14:41:24 +00002521 SpecTL.setTemplateKeywordLoc(TemplateKWLoc);
Douglas Gregore7c20652011-03-02 00:47:37 +00002522 SpecTL.setTemplateNameLoc(TemplateLoc);
2523 SpecTL.setLAngleLoc(LAngleLoc);
2524 SpecTL.setRAngleLoc(RAngleLoc);
2525 for (unsigned i = 0, e = SpecTL.getNumArgs(); i != e; ++i)
2526 SpecTL.setArgLocInfo(i, TemplateArgs[i].getLocInfo());
John McCall06f6fe8d2009-09-04 01:14:41 +00002527
Douglas Gregore7c20652011-03-02 00:47:37 +00002528 // Construct an elaborated type containing the nested-name-specifier (if any)
Abramo Bagnara48c05be2012-02-06 14:41:24 +00002529 // and tag keyword.
Douglas Gregore7c20652011-03-02 00:47:37 +00002530 Result = Context.getElaboratedType(Keyword, SS.getScopeRep(), Result);
2531 ElaboratedTypeLoc ElabTL = TLB.push<ElaboratedTypeLoc>(Result);
Abramo Bagnara9033e2b2012-02-06 19:09:27 +00002532 ElabTL.setElaboratedKeywordLoc(TagLoc);
Douglas Gregore7c20652011-03-02 00:47:37 +00002533 ElabTL.setQualifierLoc(SS.getWithLocInContext(Context));
2534 return CreateParsedType(Result, TLB.getTypeSourceInfo(Context, Result));
Douglas Gregor8bf42052009-02-09 18:46:07 +00002535}
2536
Larisse Voufo39a1e502013-08-06 01:03:05 +00002537static bool CheckTemplatePartialSpecializationArgs(
Richard Smith6056d5e2014-02-09 00:54:43 +00002538 Sema &S, SourceLocation NameLoc, TemplateParameterList *TemplateParams,
2539 unsigned ExplicitArgs, SmallVectorImpl<TemplateArgument> &TemplateArgs);
Larisse Voufo39a1e502013-08-06 01:03:05 +00002540
2541static bool CheckTemplateSpecializationScope(Sema &S, NamedDecl *Specialized,
2542 NamedDecl *PrevDecl,
2543 SourceLocation Loc,
2544 bool IsPartialSpecialization);
2545
2546static TemplateSpecializationKind getTemplateSpecializationKind(Decl *D);
Larisse Voufo39a1e502013-08-06 01:03:05 +00002547
Richard Smith300e0c32013-09-24 04:49:23 +00002548static bool isTemplateArgumentTemplateParameter(
2549 const TemplateArgument &Arg, unsigned Depth, unsigned Index) {
2550 switch (Arg.getKind()) {
2551 case TemplateArgument::Null:
2552 case TemplateArgument::NullPtr:
2553 case TemplateArgument::Integral:
2554 case TemplateArgument::Declaration:
2555 case TemplateArgument::Pack:
2556 case TemplateArgument::TemplateExpansion:
2557 return false;
2558
2559 case TemplateArgument::Type: {
2560 QualType Type = Arg.getAsType();
2561 const TemplateTypeParmType *TPT =
2562 Arg.getAsType()->getAs<TemplateTypeParmType>();
2563 return TPT && !Type.hasQualifiers() &&
2564 TPT->getDepth() == Depth && TPT->getIndex() == Index;
2565 }
2566
2567 case TemplateArgument::Expression: {
2568 DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(Arg.getAsExpr());
2569 if (!DRE || !DRE->getDecl())
2570 return false;
2571 const NonTypeTemplateParmDecl *NTTP =
2572 dyn_cast<NonTypeTemplateParmDecl>(DRE->getDecl());
2573 return NTTP && NTTP->getDepth() == Depth && NTTP->getIndex() == Index;
2574 }
2575
2576 case TemplateArgument::Template:
2577 const TemplateTemplateParmDecl *TTP =
2578 dyn_cast_or_null<TemplateTemplateParmDecl>(
2579 Arg.getAsTemplateOrTemplatePattern().getAsTemplateDecl());
2580 return TTP && TTP->getDepth() == Depth && TTP->getIndex() == Index;
2581 }
2582 llvm_unreachable("unexpected kind of template argument");
2583}
2584
2585static bool isSameAsPrimaryTemplate(TemplateParameterList *Params,
2586 ArrayRef<TemplateArgument> Args) {
2587 if (Params->size() != Args.size())
2588 return false;
2589
2590 unsigned Depth = Params->getDepth();
2591
2592 for (unsigned I = 0, N = Args.size(); I != N; ++I) {
2593 TemplateArgument Arg = Args[I];
2594
2595 // If the parameter is a pack expansion, the argument must be a pack
2596 // whose only element is a pack expansion.
2597 if (Params->getParam(I)->isParameterPack()) {
2598 if (Arg.getKind() != TemplateArgument::Pack || Arg.pack_size() != 1 ||
2599 !Arg.pack_begin()->isPackExpansion())
2600 return false;
2601 Arg = Arg.pack_begin()->getPackExpansionPattern();
2602 }
2603
2604 if (!isTemplateArgumentTemplateParameter(Arg, Depth, I))
2605 return false;
2606 }
2607
2608 return true;
2609}
2610
Richard Smith4b55a9c2014-04-17 03:29:33 +00002611/// Convert the parser's template argument list representation into our form.
2612static TemplateArgumentListInfo
2613makeTemplateArgumentListInfo(Sema &S, TemplateIdAnnotation &TemplateId) {
2614 TemplateArgumentListInfo TemplateArgs(TemplateId.LAngleLoc,
2615 TemplateId.RAngleLoc);
2616 ASTTemplateArgsPtr TemplateArgsPtr(TemplateId.getTemplateArgs(),
2617 TemplateId.NumArgs);
2618 S.translateTemplateArguments(TemplateArgsPtr, TemplateArgs);
2619 return TemplateArgs;
2620}
2621
Larisse Voufo39a1e502013-08-06 01:03:05 +00002622DeclResult Sema::ActOnVarTemplateSpecialization(
Richard Smithbeef3452014-01-16 23:39:20 +00002623 Scope *S, Declarator &D, TypeSourceInfo *DI, SourceLocation TemplateKWLoc,
Craig Topperc79e5e32014-10-31 06:57:13 +00002624 TemplateParameterList *TemplateParams, StorageClass SC,
Richard Smithbeef3452014-01-16 23:39:20 +00002625 bool IsPartialSpecialization) {
Larisse Voufo39a1e502013-08-06 01:03:05 +00002626 // D must be variable template id.
2627 assert(D.getName().getKind() == UnqualifiedId::IK_TemplateId &&
2628 "Variable template specialization is declared with a template it.");
2629
2630 TemplateIdAnnotation *TemplateId = D.getName().TemplateId;
Richard Smith4b55a9c2014-04-17 03:29:33 +00002631 TemplateArgumentListInfo TemplateArgs =
2632 makeTemplateArgumentListInfo(*this, *TemplateId);
Larisse Voufo39a1e502013-08-06 01:03:05 +00002633 SourceLocation TemplateNameLoc = D.getIdentifierLoc();
2634 SourceLocation LAngleLoc = TemplateId->LAngleLoc;
2635 SourceLocation RAngleLoc = TemplateId->RAngleLoc;
Richard Smith4b55a9c2014-04-17 03:29:33 +00002636
Richard Smithbeef3452014-01-16 23:39:20 +00002637 TemplateName Name = TemplateId->Template.get();
2638
2639 // The template-id must name a variable template.
2640 VarTemplateDecl *VarTemplate =
Karthik Bhat967c13d2014-05-08 13:16:20 +00002641 dyn_cast_or_null<VarTemplateDecl>(Name.getAsTemplateDecl());
2642 if (!VarTemplate) {
2643 NamedDecl *FnTemplate;
2644 if (auto *OTS = Name.getAsOverloadedTemplate())
2645 FnTemplate = *OTS->begin();
2646 else
2647 FnTemplate = dyn_cast_or_null<FunctionTemplateDecl>(Name.getAsTemplateDecl());
2648 if (FnTemplate)
2649 return Diag(D.getIdentifierLoc(), diag::err_var_spec_no_template_but_method)
2650 << FnTemplate->getDeclName();
Richard Smithbeef3452014-01-16 23:39:20 +00002651 return Diag(D.getIdentifierLoc(), diag::err_var_spec_no_template)
2652 << IsPartialSpecialization;
Karthik Bhat967c13d2014-05-08 13:16:20 +00002653 }
Larisse Voufo39a1e502013-08-06 01:03:05 +00002654
2655 // Check for unexpanded parameter packs in any of the template arguments.
2656 for (unsigned I = 0, N = TemplateArgs.size(); I != N; ++I)
2657 if (DiagnoseUnexpandedParameterPack(TemplateArgs[I],
2658 UPPC_PartialSpecialization))
2659 return true;
2660
2661 // Check that the template argument list is well-formed for this
2662 // template.
2663 SmallVector<TemplateArgument, 4> Converted;
2664 if (CheckTemplateArgumentList(VarTemplate, TemplateNameLoc, TemplateArgs,
2665 false, Converted))
2666 return true;
2667
Larisse Voufo39a1e502013-08-06 01:03:05 +00002668 // Find the variable template (partial) specialization declaration that
2669 // corresponds to these arguments.
2670 if (IsPartialSpecialization) {
2671 if (CheckTemplatePartialSpecializationArgs(
Richard Smith6056d5e2014-02-09 00:54:43 +00002672 *this, TemplateNameLoc, VarTemplate->getTemplateParameters(),
2673 TemplateArgs.size(), Converted))
Larisse Voufo39a1e502013-08-06 01:03:05 +00002674 return true;
2675
2676 bool InstantiationDependent;
2677 if (!Name.isDependent() &&
2678 !TemplateSpecializationType::anyDependentTemplateArguments(
David Majnemer6fbeee32016-07-07 04:43:07 +00002679 TemplateArgs.arguments(),
Larisse Voufo39a1e502013-08-06 01:03:05 +00002680 InstantiationDependent)) {
2681 Diag(TemplateNameLoc, diag::err_partial_spec_fully_specialized)
2682 << VarTemplate->getDeclName();
2683 IsPartialSpecialization = false;
2684 }
Richard Smith300e0c32013-09-24 04:49:23 +00002685
2686 if (isSameAsPrimaryTemplate(VarTemplate->getTemplateParameters(),
2687 Converted)) {
2688 // C++ [temp.class.spec]p9b3:
2689 //
2690 // -- The argument list of the specialization shall not be identical
2691 // to the implicit argument list of the primary template.
2692 Diag(TemplateNameLoc, diag::err_partial_spec_args_match_primary_template)
2693 << /*variable template*/ 1
2694 << /*is definition*/(SC != SC_Extern && !CurContext->isRecord())
2695 << FixItHint::CreateRemoval(SourceRange(LAngleLoc, RAngleLoc));
2696 // FIXME: Recover from this by treating the declaration as a redeclaration
2697 // of the primary template.
2698 return true;
2699 }
Larisse Voufo39a1e502013-08-06 01:03:05 +00002700 }
2701
Craig Topperc3ec1492014-05-26 06:22:03 +00002702 void *InsertPos = nullptr;
2703 VarTemplateSpecializationDecl *PrevDecl = nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00002704
2705 if (IsPartialSpecialization)
2706 // FIXME: Template parameter list matters too
Craig Topper7e0daca2014-06-26 04:58:53 +00002707 PrevDecl = VarTemplate->findPartialSpecialization(Converted, InsertPos);
Larisse Voufo39a1e502013-08-06 01:03:05 +00002708 else
Craig Topper7e0daca2014-06-26 04:58:53 +00002709 PrevDecl = VarTemplate->findSpecialization(Converted, InsertPos);
Larisse Voufo39a1e502013-08-06 01:03:05 +00002710
Craig Topperc3ec1492014-05-26 06:22:03 +00002711 VarTemplateSpecializationDecl *Specialization = nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00002712
2713 // Check whether we can declare a variable template specialization in
2714 // the current scope.
2715 if (CheckTemplateSpecializationScope(*this, VarTemplate, PrevDecl,
2716 TemplateNameLoc,
2717 IsPartialSpecialization))
2718 return true;
2719
2720 if (PrevDecl && PrevDecl->getSpecializationKind() == TSK_Undeclared) {
2721 // Since the only prior variable template specialization with these
2722 // arguments was referenced but not declared, reuse that
2723 // declaration node as our own, updating its source location and
2724 // the list of outer template parameters to reflect our new declaration.
2725 Specialization = PrevDecl;
2726 Specialization->setLocation(TemplateNameLoc);
Craig Topperc3ec1492014-05-26 06:22:03 +00002727 PrevDecl = nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00002728 } else if (IsPartialSpecialization) {
2729 // Create a new class template partial specialization declaration node.
2730 VarTemplatePartialSpecializationDecl *PrevPartial =
2731 cast_or_null<VarTemplatePartialSpecializationDecl>(PrevDecl);
Larisse Voufo39a1e502013-08-06 01:03:05 +00002732 VarTemplatePartialSpecializationDecl *Partial =
2733 VarTemplatePartialSpecializationDecl::Create(
2734 Context, VarTemplate->getDeclContext(), TemplateKWLoc,
2735 TemplateNameLoc, TemplateParams, VarTemplate, DI->getType(), DI, SC,
David Majnemer8b622692016-07-03 21:17:51 +00002736 Converted, TemplateArgs);
Larisse Voufo39a1e502013-08-06 01:03:05 +00002737
2738 if (!PrevPartial)
2739 VarTemplate->AddPartialSpecialization(Partial, InsertPos);
2740 Specialization = Partial;
2741
2742 // If we are providing an explicit specialization of a member variable
2743 // template specialization, make a note of that.
2744 if (PrevPartial && PrevPartial->getInstantiatedFromMember())
Larisse Voufo4cda4612013-08-22 00:28:27 +00002745 PrevPartial->setMemberSpecialization();
Larisse Voufo39a1e502013-08-06 01:03:05 +00002746
2747 // Check that all of the template parameters of the variable template
2748 // partial specialization are deducible from the template
2749 // arguments. If not, this variable template partial specialization
2750 // will never be used.
2751 llvm::SmallBitVector DeducibleParams(TemplateParams->size());
2752 MarkUsedTemplateParameters(Partial->getTemplateArgs(), true,
2753 TemplateParams->getDepth(), DeducibleParams);
2754
2755 if (!DeducibleParams.all()) {
2756 unsigned NumNonDeducible =
2757 DeducibleParams.size() - DeducibleParams.count();
2758 Diag(TemplateNameLoc, diag::warn_partial_specs_not_deducible)
Richard Smith300e0c32013-09-24 04:49:23 +00002759 << /*variable template*/ 1 << (NumNonDeducible > 1)
2760 << SourceRange(TemplateNameLoc, RAngleLoc);
Larisse Voufo39a1e502013-08-06 01:03:05 +00002761 for (unsigned I = 0, N = DeducibleParams.size(); I != N; ++I) {
2762 if (!DeducibleParams[I]) {
2763 NamedDecl *Param = cast<NamedDecl>(TemplateParams->getParam(I));
2764 if (Param->getDeclName())
2765 Diag(Param->getLocation(), diag::note_partial_spec_unused_parameter)
2766 << Param->getDeclName();
2767 else
2768 Diag(Param->getLocation(), diag::note_partial_spec_unused_parameter)
David Blaikieabe1a392014-04-02 05:58:29 +00002769 << "(anonymous)";
Larisse Voufo39a1e502013-08-06 01:03:05 +00002770 }
2771 }
2772 }
2773 } else {
2774 // Create a new class template specialization declaration node for
2775 // this explicit specialization or friend declaration.
2776 Specialization = VarTemplateSpecializationDecl::Create(
2777 Context, VarTemplate->getDeclContext(), TemplateKWLoc, TemplateNameLoc,
David Majnemer8b622692016-07-03 21:17:51 +00002778 VarTemplate, DI->getType(), DI, SC, Converted);
Larisse Voufo39a1e502013-08-06 01:03:05 +00002779 Specialization->setTemplateArgsInfo(TemplateArgs);
2780
2781 if (!PrevDecl)
2782 VarTemplate->AddSpecialization(Specialization, InsertPos);
2783 }
2784
2785 // C++ [temp.expl.spec]p6:
2786 // If a template, a member template or the member of a class template is
2787 // explicitly specialized then that specialization shall be declared
2788 // before the first use of that specialization that would cause an implicit
2789 // instantiation to take place, in every translation unit in which such a
2790 // use occurs; no diagnostic is required.
2791 if (PrevDecl && PrevDecl->getPointOfInstantiation().isValid()) {
2792 bool Okay = false;
2793 for (Decl *Prev = PrevDecl; Prev; Prev = Prev->getPreviousDecl()) {
2794 // Is there any previous explicit specialization declaration?
2795 if (getTemplateSpecializationKind(Prev) == TSK_ExplicitSpecialization) {
2796 Okay = true;
2797 break;
2798 }
2799 }
2800
2801 if (!Okay) {
2802 SourceRange Range(TemplateNameLoc, RAngleLoc);
2803 Diag(TemplateNameLoc, diag::err_specialization_after_instantiation)
2804 << Name << Range;
2805
2806 Diag(PrevDecl->getPointOfInstantiation(),
2807 diag::note_instantiation_required_here)
2808 << (PrevDecl->getTemplateSpecializationKind() !=
2809 TSK_ImplicitInstantiation);
2810 return true;
2811 }
2812 }
2813
2814 Specialization->setTemplateKeywordLoc(TemplateKWLoc);
2815 Specialization->setLexicalDeclContext(CurContext);
2816
2817 // Add the specialization into its lexical context, so that it can
2818 // be seen when iterating through the list of declarations in that
2819 // context. However, specializations are not found by name lookup.
2820 CurContext->addDecl(Specialization);
2821
2822 // Note that this is an explicit specialization.
2823 Specialization->setSpecializationKind(TSK_ExplicitSpecialization);
2824
2825 if (PrevDecl) {
2826 // Check that this isn't a redefinition of this specialization,
2827 // merging with previous declarations.
2828 LookupResult PrevSpec(*this, GetNameForDeclarator(D), LookupOrdinaryName,
2829 ForRedeclaration);
2830 PrevSpec.addDecl(PrevDecl);
2831 D.setRedeclaration(CheckVariableDeclaration(Specialization, PrevSpec));
Larisse Voufo4cda4612013-08-22 00:28:27 +00002832 } else if (Specialization->isStaticDataMember() &&
2833 Specialization->isOutOfLine()) {
2834 Specialization->setAccess(VarTemplate->getAccess());
Larisse Voufo39a1e502013-08-06 01:03:05 +00002835 }
2836
2837 // Link instantiations of static data members back to the template from
2838 // which they were instantiated.
2839 if (Specialization->isStaticDataMember())
2840 Specialization->setInstantiationOfStaticDataMember(
2841 VarTemplate->getTemplatedDecl(),
2842 Specialization->getSpecializationKind());
2843
2844 return Specialization;
2845}
2846
2847namespace {
2848/// \brief A partial specialization whose template arguments have matched
2849/// a given template-id.
2850struct PartialSpecMatchResult {
2851 VarTemplatePartialSpecializationDecl *Partial;
2852 TemplateArgumentList *Args;
2853};
Eugene Zelenko1ced5092016-02-12 22:53:10 +00002854} // end anonymous namespace
Larisse Voufo39a1e502013-08-06 01:03:05 +00002855
2856DeclResult
2857Sema::CheckVarTemplateId(VarTemplateDecl *Template, SourceLocation TemplateLoc,
2858 SourceLocation TemplateNameLoc,
2859 const TemplateArgumentListInfo &TemplateArgs) {
2860 assert(Template && "A variable template id without template?");
2861
2862 // Check that the template argument list is well-formed for this template.
2863 SmallVector<TemplateArgument, 4> Converted;
Larisse Voufo39a1e502013-08-06 01:03:05 +00002864 if (CheckTemplateArgumentList(
2865 Template, TemplateNameLoc,
2866 const_cast<TemplateArgumentListInfo &>(TemplateArgs), false,
Richard Smith83b11aa2014-01-09 02:22:22 +00002867 Converted))
Larisse Voufo39a1e502013-08-06 01:03:05 +00002868 return true;
2869
2870 // Find the variable template specialization declaration that
2871 // corresponds to these arguments.
Craig Topperc3ec1492014-05-26 06:22:03 +00002872 void *InsertPos = nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00002873 if (VarTemplateSpecializationDecl *Spec = Template->findSpecialization(
Richard Smith6739a102016-05-05 00:56:12 +00002874 Converted, InsertPos)) {
2875 checkSpecializationVisibility(TemplateNameLoc, Spec);
Larisse Voufo39a1e502013-08-06 01:03:05 +00002876 // If we already have a variable template specialization, return it.
2877 return Spec;
Richard Smith6739a102016-05-05 00:56:12 +00002878 }
Larisse Voufo39a1e502013-08-06 01:03:05 +00002879
2880 // This is the first time we have referenced this variable template
2881 // specialization. Create the canonical declaration and add it to
2882 // the set of specializations, based on the closest partial specialization
2883 // that it represents. That is,
2884 VarDecl *InstantiationPattern = Template->getTemplatedDecl();
2885 TemplateArgumentList TemplateArgList(TemplateArgumentList::OnStack,
David Majnemer8b622692016-07-03 21:17:51 +00002886 Converted);
Larisse Voufo39a1e502013-08-06 01:03:05 +00002887 TemplateArgumentList *InstantiationArgs = &TemplateArgList;
2888 bool AmbiguousPartialSpec = false;
2889 typedef PartialSpecMatchResult MatchResult;
2890 SmallVector<MatchResult, 4> Matched;
2891 SourceLocation PointOfInstantiation = TemplateNameLoc;
George Burgess IV3e3bb95b2015-12-02 21:58:08 +00002892 TemplateSpecCandidateSet FailedCandidates(PointOfInstantiation,
2893 /*ForTakingAddress=*/false);
Larisse Voufo39a1e502013-08-06 01:03:05 +00002894
2895 // 1. Attempt to find the closest partial specialization that this
2896 // specializes, if any.
2897 // If any of the template arguments is dependent, then this is probably
2898 // a placeholder for an incomplete declarative context; which must be
2899 // complete by instantiation time. Thus, do not search through the partial
2900 // specializations yet.
Larisse Voufo30616382013-08-23 22:21:36 +00002901 // TODO: Unify with InstantiateClassTemplateSpecialization()?
2902 // Perhaps better after unification of DeduceTemplateArguments() and
2903 // getMoreSpecializedPartialSpecialization().
Larisse Voufo39a1e502013-08-06 01:03:05 +00002904 bool InstantiationDependent = false;
2905 if (!TemplateSpecializationType::anyDependentTemplateArguments(
2906 TemplateArgs, InstantiationDependent)) {
2907
2908 SmallVector<VarTemplatePartialSpecializationDecl *, 4> PartialSpecs;
2909 Template->getPartialSpecializations(PartialSpecs);
2910
2911 for (unsigned I = 0, N = PartialSpecs.size(); I != N; ++I) {
2912 VarTemplatePartialSpecializationDecl *Partial = PartialSpecs[I];
2913 TemplateDeductionInfo Info(FailedCandidates.getLocation());
2914
2915 if (TemplateDeductionResult Result =
2916 DeduceTemplateArguments(Partial, TemplateArgList, Info)) {
2917 // Store the failed-deduction information for use in diagnostics, later.
Larisse Voufo30616382013-08-23 22:21:36 +00002918 // TODO: Actually use the failed-deduction info?
Richard Smithc2bebe92016-05-11 20:37:46 +00002919 FailedCandidates.addCandidate().set(
2920 DeclAccessPair::make(Template, AS_public), Partial,
2921 MakeDeductionFailureInfo(Context, Result, Info));
Larisse Voufo39a1e502013-08-06 01:03:05 +00002922 (void)Result;
2923 } else {
2924 Matched.push_back(PartialSpecMatchResult());
2925 Matched.back().Partial = Partial;
2926 Matched.back().Args = Info.take();
2927 }
2928 }
2929
Larisse Voufo39a1e502013-08-06 01:03:05 +00002930 if (Matched.size() >= 1) {
2931 SmallVector<MatchResult, 4>::iterator Best = Matched.begin();
2932 if (Matched.size() == 1) {
2933 // -- If exactly one matching specialization is found, the
2934 // instantiation is generated from that specialization.
2935 // We don't need to do anything for this.
2936 } else {
2937 // -- If more than one matching specialization is found, the
2938 // partial order rules (14.5.4.2) are used to determine
2939 // whether one of the specializations is more specialized
2940 // than the others. If none of the specializations is more
2941 // specialized than all of the other matching
2942 // specializations, then the use of the variable template is
2943 // ambiguous and the program is ill-formed.
2944 for (SmallVector<MatchResult, 4>::iterator P = Best + 1,
2945 PEnd = Matched.end();
2946 P != PEnd; ++P) {
2947 if (getMoreSpecializedPartialSpecialization(P->Partial, Best->Partial,
2948 PointOfInstantiation) ==
2949 P->Partial)
2950 Best = P;
2951 }
2952
2953 // Determine if the best partial specialization is more specialized than
2954 // the others.
2955 for (SmallVector<MatchResult, 4>::iterator P = Matched.begin(),
2956 PEnd = Matched.end();
2957 P != PEnd; ++P) {
2958 if (P != Best && getMoreSpecializedPartialSpecialization(
2959 P->Partial, Best->Partial,
2960 PointOfInstantiation) != Best->Partial) {
2961 AmbiguousPartialSpec = true;
2962 break;
2963 }
2964 }
2965 }
2966
2967 // Instantiate using the best variable template partial specialization.
2968 InstantiationPattern = Best->Partial;
2969 InstantiationArgs = Best->Args;
2970 } else {
2971 // -- If no match is found, the instantiation is generated
2972 // from the primary template.
2973 // InstantiationPattern = Template->getTemplatedDecl();
2974 }
2975 }
2976
Larisse Voufo39a1e502013-08-06 01:03:05 +00002977 // 2. Create the canonical declaration.
Richard Smith6739a102016-05-05 00:56:12 +00002978 // Note that we do not instantiate a definition until we see an odr-use
2979 // in DoMarkVarDeclReferenced().
Larisse Voufo39a1e502013-08-06 01:03:05 +00002980 // FIXME: LateAttrs et al.?
2981 VarTemplateSpecializationDecl *Decl = BuildVarTemplateInstantiation(
2982 Template, InstantiationPattern, *InstantiationArgs, TemplateArgs,
2983 Converted, TemplateNameLoc, InsertPos /*, LateAttrs, StartingScope*/);
2984 if (!Decl)
2985 return true;
2986
2987 if (AmbiguousPartialSpec) {
2988 // Partial ordering did not produce a clear winner. Complain.
2989 Decl->setInvalidDecl();
2990 Diag(PointOfInstantiation, diag::err_partial_spec_ordering_ambiguous)
2991 << Decl;
2992
2993 // Print the matching partial specializations.
Yaron Keren1cb81462016-11-16 13:45:34 +00002994 for (MatchResult P : Matched)
2995 Diag(P.Partial->getLocation(), diag::note_partial_spec_match)
2996 << getTemplateArgumentBindingsText(P.Partial->getTemplateParameters(),
2997 *P.Args);
Larisse Voufo39a1e502013-08-06 01:03:05 +00002998 return true;
2999 }
3000
3001 if (VarTemplatePartialSpecializationDecl *D =
3002 dyn_cast<VarTemplatePartialSpecializationDecl>(InstantiationPattern))
3003 Decl->setInstantiationOf(D, InstantiationArgs);
3004
Richard Smith6739a102016-05-05 00:56:12 +00003005 checkSpecializationVisibility(TemplateNameLoc, Decl);
3006
Larisse Voufo39a1e502013-08-06 01:03:05 +00003007 assert(Decl && "No variable template specialization?");
3008 return Decl;
3009}
3010
3011ExprResult
3012Sema::CheckVarTemplateId(const CXXScopeSpec &SS,
3013 const DeclarationNameInfo &NameInfo,
3014 VarTemplateDecl *Template, SourceLocation TemplateLoc,
3015 const TemplateArgumentListInfo *TemplateArgs) {
3016
3017 DeclResult Decl = CheckVarTemplateId(Template, TemplateLoc, NameInfo.getLoc(),
3018 *TemplateArgs);
3019 if (Decl.isInvalid())
3020 return ExprError();
3021
3022 VarDecl *Var = cast<VarDecl>(Decl.get());
3023 if (!Var->getTemplateSpecializationKind())
3024 Var->setTemplateSpecializationKind(TSK_ImplicitInstantiation,
3025 NameInfo.getLoc());
3026
3027 // Build an ordinary singleton decl ref.
3028 return BuildDeclarationNameExpr(SS, NameInfo, Var,
Craig Topperc3ec1492014-05-26 06:22:03 +00003029 /*FoundD=*/nullptr, TemplateArgs);
Larisse Voufo39a1e502013-08-06 01:03:05 +00003030}
3031
John McCalldadc5752010-08-24 06:29:42 +00003032ExprResult Sema::BuildTemplateIdExpr(const CXXScopeSpec &SS,
Abramo Bagnara7945c982012-01-27 09:46:47 +00003033 SourceLocation TemplateKWLoc,
Douglas Gregor0da1d432011-02-28 20:01:57 +00003034 LookupResult &R,
3035 bool RequiresADL,
Abramo Bagnara65f7c3d2012-02-06 14:31:00 +00003036 const TemplateArgumentListInfo *TemplateArgs) {
Douglas Gregora727cb92009-06-30 22:34:41 +00003037 // FIXME: Can we do any checking at this point? I guess we could check the
3038 // template arguments that we have against the template name, if the template
Mike Stump11289f42009-09-09 15:08:12 +00003039 // name refers to a single template. That's not a terribly common case,
Douglas Gregora727cb92009-06-30 22:34:41 +00003040 // though.
Douglas Gregorb491ed32011-02-19 21:32:49 +00003041 // foo<int> could identify a single function unambiguously
3042 // This approach does NOT work, since f<int>(1);
3043 // gets resolved prior to resorting to overload resolution
3044 // i.e., template<class T> void f(double);
3045 // vs template<class T, class U> void f(U);
John McCalle66edc12009-11-24 19:00:30 +00003046
3047 // These should be filtered out by our callers.
3048 assert(!R.empty() && "empty lookup results when building templateid");
3049 assert(!R.isAmbiguous() && "ambiguous lookup when building templateid");
3050
Larisse Voufo39a1e502013-08-06 01:03:05 +00003051 // In C++1y, check variable template ids.
Richard Smithd7d11ef2014-02-03 20:09:56 +00003052 bool InstantiationDependent;
3053 if (R.getAsSingle<VarTemplateDecl>() &&
3054 !TemplateSpecializationType::anyDependentTemplateArguments(
3055 *TemplateArgs, InstantiationDependent)) {
3056 return CheckVarTemplateId(SS, R.getLookupNameInfo(),
3057 R.getAsSingle<VarTemplateDecl>(),
3058 TemplateKWLoc, TemplateArgs);
Larisse Voufo39a1e502013-08-06 01:03:05 +00003059 }
3060
John McCall58cc69d2010-01-27 01:50:18 +00003061 // We don't want lookup warnings at this point.
3062 R.suppressDiagnostics();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003063
John McCalle66edc12009-11-24 19:00:30 +00003064 UnresolvedLookupExpr *ULE
Douglas Gregora6e053e2010-12-15 01:34:56 +00003065 = UnresolvedLookupExpr::Create(Context, R.getNamingClass(),
Douglas Gregor0da1d432011-02-28 20:01:57 +00003066 SS.getWithLocInContext(Context),
Abramo Bagnara7945c982012-01-27 09:46:47 +00003067 TemplateKWLoc,
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00003068 R.getLookupNameInfo(),
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003069 RequiresADL, TemplateArgs,
Douglas Gregor30a4f4c2010-05-23 18:57:34 +00003070 R.begin(), R.end());
John McCalle66edc12009-11-24 19:00:30 +00003071
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00003072 return ULE;
Douglas Gregora727cb92009-06-30 22:34:41 +00003073}
3074
John McCalle66edc12009-11-24 19:00:30 +00003075// We actually only call this from template instantiation.
John McCalldadc5752010-08-24 06:29:42 +00003076ExprResult
Jeffrey Yasskinc76498d2010-04-08 16:38:48 +00003077Sema::BuildQualifiedTemplateIdExpr(CXXScopeSpec &SS,
Abramo Bagnara7945c982012-01-27 09:46:47 +00003078 SourceLocation TemplateKWLoc,
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00003079 const DeclarationNameInfo &NameInfo,
Abramo Bagnara65f7c3d2012-02-06 14:31:00 +00003080 const TemplateArgumentListInfo *TemplateArgs) {
Larisse Voufo39a1e502013-08-06 01:03:05 +00003081
Abramo Bagnara65f7c3d2012-02-06 14:31:00 +00003082 assert(TemplateArgs || TemplateKWLoc.isValid());
John McCalle66edc12009-11-24 19:00:30 +00003083 DeclContext *DC;
3084 if (!(DC = computeDeclContext(SS, false)) ||
3085 DC->isDependentContext() ||
John McCall0b66eb32010-05-01 00:40:08 +00003086 RequireCompleteDeclContext(SS, DC))
Reid Kleckner034531d2014-12-18 18:17:42 +00003087 return BuildDependentDeclRefExpr(SS, TemplateKWLoc, NameInfo, TemplateArgs);
Mike Stump11289f42009-09-09 15:08:12 +00003088
Douglas Gregor786123d2010-05-21 23:18:07 +00003089 bool MemberOfUnknownSpecialization;
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00003090 LookupResult R(*this, NameInfo, LookupOrdinaryName);
Craig Topperc3ec1492014-05-26 06:22:03 +00003091 LookupTemplateName(R, (Scope*)nullptr, SS, QualType(), /*Entering*/ false,
Douglas Gregor786123d2010-05-21 23:18:07 +00003092 MemberOfUnknownSpecialization);
Mike Stump11289f42009-09-09 15:08:12 +00003093
John McCalle66edc12009-11-24 19:00:30 +00003094 if (R.isAmbiguous())
3095 return ExprError();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003096
John McCalle66edc12009-11-24 19:00:30 +00003097 if (R.empty()) {
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00003098 Diag(NameInfo.getLoc(), diag::err_template_kw_refers_to_non_template)
3099 << NameInfo.getName() << SS.getRange();
John McCalle66edc12009-11-24 19:00:30 +00003100 return ExprError();
3101 }
3102
3103 if (ClassTemplateDecl *Temp = R.getAsSingle<ClassTemplateDecl>()) {
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00003104 Diag(NameInfo.getLoc(), diag::err_template_kw_refers_to_class_template)
Aaron Ballman4a979672014-01-03 13:56:08 +00003105 << SS.getScopeRep()
Reid Kleckner32506ed2014-06-12 23:03:48 +00003106 << NameInfo.getName().getAsString() << SS.getRange();
John McCalle66edc12009-11-24 19:00:30 +00003107 Diag(Temp->getLocation(), diag::note_referenced_class_template);
3108 return ExprError();
3109 }
3110
Abramo Bagnara7945c982012-01-27 09:46:47 +00003111 return BuildTemplateIdExpr(SS, TemplateKWLoc, R, /*ADL*/ false, TemplateArgs);
Douglas Gregora727cb92009-06-30 22:34:41 +00003112}
3113
Douglas Gregorb67535d2009-03-31 00:43:58 +00003114/// \brief Form a dependent template name.
3115///
3116/// This action forms a dependent template name given the template
3117/// name and its (presumably dependent) scope specifier. For
3118/// example, given "MetaFun::template apply", the scope specifier \p
3119/// SS will be "MetaFun::", \p TemplateKWLoc contains the location
3120/// of the "template" keyword, and "apply" is the \p Name.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003121TemplateNameKind Sema::ActOnDependentTemplateName(Scope *S,
Douglas Gregorbb119652010-06-16 23:00:59 +00003122 CXXScopeSpec &SS,
Abramo Bagnara7945c982012-01-27 09:46:47 +00003123 SourceLocation TemplateKWLoc,
Douglas Gregorbb119652010-06-16 23:00:59 +00003124 UnqualifiedId &Name,
John McCallba7bf592010-08-24 05:47:05 +00003125 ParsedType ObjectType,
Douglas Gregorbb119652010-06-16 23:00:59 +00003126 bool EnteringContext,
3127 TemplateTy &Result) {
Richard Smith0bf8a4922011-10-18 20:49:44 +00003128 if (TemplateKWLoc.isValid() && S && !S->getTemplateParamParent())
3129 Diag(TemplateKWLoc,
Richard Smith2bf7fdb2013-01-02 11:42:31 +00003130 getLangOpts().CPlusPlus11 ?
Richard Smith0bf8a4922011-10-18 20:49:44 +00003131 diag::warn_cxx98_compat_template_outside_of_template :
3132 diag::ext_template_outside_of_template)
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003133 << FixItHint::CreateRemoval(TemplateKWLoc);
3134
Craig Topperc3ec1492014-05-26 06:22:03 +00003135 DeclContext *LookupCtx = nullptr;
Douglas Gregor9abe2372010-01-19 16:01:07 +00003136 if (SS.isSet())
3137 LookupCtx = computeDeclContext(SS, EnteringContext);
3138 if (!LookupCtx && ObjectType)
John McCallba7bf592010-08-24 05:47:05 +00003139 LookupCtx = computeDeclContext(ObjectType.get());
Douglas Gregor9abe2372010-01-19 16:01:07 +00003140 if (LookupCtx) {
Douglas Gregorb67535d2009-03-31 00:43:58 +00003141 // C++0x [temp.names]p5:
3142 // If a name prefixed by the keyword template is not the name of
3143 // a template, the program is ill-formed. [Note: the keyword
3144 // template may not be applied to non-template members of class
3145 // templates. -end note ] [ Note: as is the case with the
3146 // typename prefix, the template prefix is allowed in cases
3147 // where it is not strictly necessary; i.e., when the
3148 // nested-name-specifier or the expression on the left of the ->
3149 // or . is not dependent on a template-parameter, or the use
3150 // does not appear in the scope of a template. -end note]
3151 //
3152 // Note: C++03 was more strict here, because it banned the use of
3153 // the "template" keyword prior to a template-name that was not a
3154 // dependent name. C++ DR468 relaxed this requirement (the
3155 // "template" keyword is now permitted). We follow the C++0x
Douglas Gregorc9d26822010-06-14 22:07:54 +00003156 // rules, even in C++03 mode with a warning, retroactively applying the DR.
Douglas Gregor786123d2010-05-21 23:18:07 +00003157 bool MemberOfUnknownSpecialization;
Richard Smithaf416962012-11-15 00:31:27 +00003158 TemplateNameKind TNK = isTemplateName(S, SS, TemplateKWLoc.isValid(), Name,
Abramo Bagnara7c5dee42010-08-06 12:11:11 +00003159 ObjectType, EnteringContext, Result,
Douglas Gregor786123d2010-05-21 23:18:07 +00003160 MemberOfUnknownSpecialization);
Douglas Gregor9abe2372010-01-19 16:01:07 +00003161 if (TNK == TNK_Non_template && LookupCtx->isDependentContext() &&
3162 isa<CXXRecordDecl>(LookupCtx) &&
Douglas Gregor5ecbb1b2011-03-11 23:27:41 +00003163 (!cast<CXXRecordDecl>(LookupCtx)->hasDefinition() ||
3164 cast<CXXRecordDecl>(LookupCtx)->hasAnyDependentBases())) {
Douglas Gregorbb119652010-06-16 23:00:59 +00003165 // This is a dependent template. Handle it below.
Douglas Gregord2e6a452010-01-14 17:47:39 +00003166 } else if (TNK == TNK_Non_template) {
Daniel Dunbar62ee6412012-03-09 18:35:03 +00003167 Diag(Name.getLocStart(),
Douglas Gregor3cf81312009-11-03 23:16:33 +00003168 diag::err_template_kw_refers_to_non_template)
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00003169 << GetNameFromUnqualifiedId(Name).getName()
Douglas Gregorb22ee882010-05-05 05:58:24 +00003170 << Name.getSourceRange()
3171 << TemplateKWLoc;
Douglas Gregorbb119652010-06-16 23:00:59 +00003172 return TNK_Non_template;
Douglas Gregord2e6a452010-01-14 17:47:39 +00003173 } else {
3174 // We found something; return it.
Douglas Gregorbb119652010-06-16 23:00:59 +00003175 return TNK;
Douglas Gregorb67535d2009-03-31 00:43:58 +00003176 }
Douglas Gregorb67535d2009-03-31 00:43:58 +00003177 }
3178
Aaron Ballman4a979672014-01-03 13:56:08 +00003179 NestedNameSpecifier *Qualifier = SS.getScopeRep();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003180
Douglas Gregor3cf81312009-11-03 23:16:33 +00003181 switch (Name.getKind()) {
3182 case UnqualifiedId::IK_Identifier:
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003183 Result = TemplateTy::make(Context.getDependentTemplateName(Qualifier,
Douglas Gregorbb119652010-06-16 23:00:59 +00003184 Name.Identifier));
3185 return TNK_Dependent_template_name;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003186
Douglas Gregor71395fa2009-11-04 00:56:37 +00003187 case UnqualifiedId::IK_OperatorFunctionId:
Douglas Gregorbb119652010-06-16 23:00:59 +00003188 Result = TemplateTy::make(Context.getDependentTemplateName(Qualifier,
Douglas Gregor71395fa2009-11-04 00:56:37 +00003189 Name.OperatorFunctionId.Operator));
Richard Smith72bfbd82013-12-04 00:28:23 +00003190 return TNK_Function_template;
Alexis Hunted0530f2009-11-28 08:58:14 +00003191
3192 case UnqualifiedId::IK_LiteralOperatorId:
Richard Smithd091dc12013-12-05 00:58:33 +00003193 llvm_unreachable("literal operator id cannot have a dependent scope");
Alexis Hunted0530f2009-11-28 08:58:14 +00003194
Douglas Gregor3cf81312009-11-03 23:16:33 +00003195 default:
3196 break;
3197 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003198
Daniel Dunbar62ee6412012-03-09 18:35:03 +00003199 Diag(Name.getLocStart(),
Douglas Gregor3cf81312009-11-03 23:16:33 +00003200 diag::err_template_kw_refers_to_non_template)
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00003201 << GetNameFromUnqualifiedId(Name).getName()
Douglas Gregorb22ee882010-05-05 05:58:24 +00003202 << Name.getSourceRange()
3203 << TemplateKWLoc;
Douglas Gregorbb119652010-06-16 23:00:59 +00003204 return TNK_Non_template;
Douglas Gregorb67535d2009-03-31 00:43:58 +00003205}
3206
Mike Stump11289f42009-09-09 15:08:12 +00003207bool Sema::CheckTemplateTypeArgument(TemplateTypeParmDecl *Param,
Reid Kleckner377c1592014-06-10 23:29:48 +00003208 TemplateArgumentLoc &AL,
Chris Lattner0e62c1c2011-07-23 10:55:15 +00003209 SmallVectorImpl<TemplateArgument> &Converted) {
John McCall0ad16662009-10-29 08:12:44 +00003210 const TemplateArgument &Arg = AL.getArgument();
Reid Kleckner377c1592014-06-10 23:29:48 +00003211 QualType ArgType;
3212 TypeSourceInfo *TSI = nullptr;
John McCall0ad16662009-10-29 08:12:44 +00003213
Anders Carlssonc8cbb2d2009-06-13 00:33:33 +00003214 // Check template type parameter.
Jeffrey Yasskin823015d2010-04-08 00:03:06 +00003215 switch(Arg.getKind()) {
3216 case TemplateArgument::Type:
Anders Carlssonc8cbb2d2009-06-13 00:33:33 +00003217 // C++ [temp.arg.type]p1:
3218 // A template-argument for a template-parameter which is a
3219 // type shall be a type-id.
Reid Kleckner377c1592014-06-10 23:29:48 +00003220 ArgType = Arg.getAsType();
3221 TSI = AL.getTypeSourceInfo();
Jeffrey Yasskin823015d2010-04-08 00:03:06 +00003222 break;
3223 case TemplateArgument::Template: {
3224 // We have a template type parameter but the template argument
3225 // is a template without any arguments.
3226 SourceRange SR = AL.getSourceRange();
3227 TemplateName Name = Arg.getAsTemplate();
3228 Diag(SR.getBegin(), diag::err_template_missing_args)
3229 << Name << SR;
3230 if (TemplateDecl *Decl = Name.getAsTemplateDecl())
3231 Diag(Decl->getLocation(), diag::note_template_decl_here);
Anders Carlssonc8cbb2d2009-06-13 00:33:33 +00003232
Jeffrey Yasskin823015d2010-04-08 00:03:06 +00003233 return true;
3234 }
Kaelyn Uhrain864d0b02012-05-18 23:42:49 +00003235 case TemplateArgument::Expression: {
3236 // We have a template type parameter but the template argument is an
3237 // expression; see if maybe it is missing the "typename" keyword.
3238 CXXScopeSpec SS;
3239 DeclarationNameInfo NameInfo;
3240
3241 if (DeclRefExpr *ArgExpr = dyn_cast<DeclRefExpr>(Arg.getAsExpr())) {
3242 SS.Adopt(ArgExpr->getQualifierLoc());
3243 NameInfo = ArgExpr->getNameInfo();
3244 } else if (DependentScopeDeclRefExpr *ArgExpr =
3245 dyn_cast<DependentScopeDeclRefExpr>(Arg.getAsExpr())) {
3246 SS.Adopt(ArgExpr->getQualifierLoc());
3247 NameInfo = ArgExpr->getNameInfo();
3248 } else if (CXXDependentScopeMemberExpr *ArgExpr =
3249 dyn_cast<CXXDependentScopeMemberExpr>(Arg.getAsExpr())) {
Kaelyn Uhrain055e9472012-06-08 01:07:26 +00003250 if (ArgExpr->isImplicitAccess()) {
3251 SS.Adopt(ArgExpr->getQualifierLoc());
3252 NameInfo = ArgExpr->getMemberNameInfo();
3253 }
Kaelyn Uhrain864d0b02012-05-18 23:42:49 +00003254 }
3255
Reid Kleckner377c1592014-06-10 23:29:48 +00003256 if (auto *II = NameInfo.getName().getAsIdentifierInfo()) {
Kaelyn Uhrain864d0b02012-05-18 23:42:49 +00003257 LookupResult Result(*this, NameInfo, LookupOrdinaryName);
3258 LookupParsedName(Result, CurScope, &SS);
3259
Kaelyn Uhrain055e9472012-06-08 01:07:26 +00003260 if (Result.getAsSingle<TypeDecl>() ||
3261 Result.getResultKind() ==
Reid Kleckner377c1592014-06-10 23:29:48 +00003262 LookupResult::NotFoundInCurrentInstantiation) {
3263 // Suggest that the user add 'typename' before the NNS.
Kaelyn Uhrain864d0b02012-05-18 23:42:49 +00003264 SourceLocation Loc = AL.getSourceRange().getBegin();
Reid Kleckner377c1592014-06-10 23:29:48 +00003265 Diag(Loc, getLangOpts().MSVCCompat
3266 ? diag::ext_ms_template_type_arg_missing_typename
3267 : diag::err_template_arg_must_be_type_suggest)
3268 << FixItHint::CreateInsertion(Loc, "typename ");
Kaelyn Uhrain864d0b02012-05-18 23:42:49 +00003269 Diag(Param->getLocation(), diag::note_template_param_here);
Reid Kleckner377c1592014-06-10 23:29:48 +00003270
3271 // Recover by synthesizing a type using the location information that we
3272 // already have.
3273 ArgType =
3274 Context.getDependentNameType(ETK_Typename, SS.getScopeRep(), II);
3275 TypeLocBuilder TLB;
3276 DependentNameTypeLoc TL = TLB.push<DependentNameTypeLoc>(ArgType);
3277 TL.setElaboratedKeywordLoc(SourceLocation(/*synthesized*/));
3278 TL.setQualifierLoc(SS.getWithLocInContext(Context));
3279 TL.setNameLoc(NameInfo.getLoc());
3280 TSI = TLB.getTypeSourceInfo(Context, ArgType);
3281
3282 // Overwrite our input TemplateArgumentLoc so that we can recover
3283 // properly.
3284 AL = TemplateArgumentLoc(TemplateArgument(ArgType),
3285 TemplateArgumentLocInfo(TSI));
3286
3287 break;
Kaelyn Uhrain864d0b02012-05-18 23:42:49 +00003288 }
3289 }
3290 // fallthrough
3291 }
Jeffrey Yasskin823015d2010-04-08 00:03:06 +00003292 default: {
Anders Carlssonc8cbb2d2009-06-13 00:33:33 +00003293 // We have a template type parameter but the template argument
3294 // is not a type.
John McCall0d07eb32009-10-29 18:45:58 +00003295 SourceRange SR = AL.getSourceRange();
3296 Diag(SR.getBegin(), diag::err_template_arg_must_be_type) << SR;
Anders Carlssonc8cbb2d2009-06-13 00:33:33 +00003297 Diag(Param->getLocation(), diag::note_template_param_here);
Mike Stump11289f42009-09-09 15:08:12 +00003298
Anders Carlssonc8cbb2d2009-06-13 00:33:33 +00003299 return true;
Mike Stump11289f42009-09-09 15:08:12 +00003300 }
Jeffrey Yasskin823015d2010-04-08 00:03:06 +00003301 }
Anders Carlssonc8cbb2d2009-06-13 00:33:33 +00003302
Reid Kleckner377c1592014-06-10 23:29:48 +00003303 if (CheckTemplateArgument(Param, TSI))
Anders Carlssonc8cbb2d2009-06-13 00:33:33 +00003304 return true;
Mike Stump11289f42009-09-09 15:08:12 +00003305
Anders Carlssonc8cbb2d2009-06-13 00:33:33 +00003306 // Add the converted template type argument.
Reid Kleckner377c1592014-06-10 23:29:48 +00003307 ArgType = Context.getCanonicalType(ArgType);
Douglas Gregore46db902011-06-17 22:11:49 +00003308
3309 // Objective-C ARC:
3310 // If an explicitly-specified template argument type is a lifetime type
3311 // with no lifetime qualifier, the __strong lifetime qualifier is inferred.
David Blaikiebbafb8a2012-03-11 07:00:24 +00003312 if (getLangOpts().ObjCAutoRefCount &&
Douglas Gregore46db902011-06-17 22:11:49 +00003313 ArgType->isObjCLifetimeType() &&
3314 !ArgType.getObjCLifetime()) {
3315 Qualifiers Qs;
3316 Qs.setObjCLifetime(Qualifiers::OCL_Strong);
3317 ArgType = Context.getQualifiedType(ArgType, Qs);
3318 }
3319
3320 Converted.push_back(TemplateArgument(ArgType));
Anders Carlssonc8cbb2d2009-06-13 00:33:33 +00003321 return false;
3322}
3323
Douglas Gregor36d7c5f2009-11-09 19:17:50 +00003324/// \brief Substitute template arguments into the default template argument for
3325/// the given template type parameter.
3326///
3327/// \param SemaRef the semantic analysis object for which we are performing
3328/// the substitution.
3329///
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003330/// \param Template the template that we are synthesizing template arguments
Douglas Gregor36d7c5f2009-11-09 19:17:50 +00003331/// for.
3332///
3333/// \param TemplateLoc the location of the template name that started the
3334/// template-id we are checking.
3335///
3336/// \param RAngleLoc the location of the right angle bracket ('>') that
3337/// terminates the template-id.
3338///
3339/// \param Param the template template parameter whose default we are
3340/// substituting into.
3341///
3342/// \param Converted the list of template arguments provided for template
3343/// parameters that precede \p Param in the template parameter list.
Douglas Gregor36d7c5f2009-11-09 19:17:50 +00003344/// \returns the substituted template argument, or NULL if an error occurred.
John McCallbcd03502009-12-07 02:54:59 +00003345static TypeSourceInfo *
Douglas Gregor36d7c5f2009-11-09 19:17:50 +00003346SubstDefaultTemplateArgument(Sema &SemaRef,
3347 TemplateDecl *Template,
3348 SourceLocation TemplateLoc,
3349 SourceLocation RAngleLoc,
3350 TemplateTypeParmDecl *Param,
Chris Lattner0e62c1c2011-07-23 10:55:15 +00003351 SmallVectorImpl<TemplateArgument> &Converted) {
John McCallbcd03502009-12-07 02:54:59 +00003352 TypeSourceInfo *ArgType = Param->getDefaultArgumentInfo();
Douglas Gregor36d7c5f2009-11-09 19:17:50 +00003353
3354 // If the argument type is dependent, instantiate it now based
3355 // on the previously-computed template arguments.
3356 if (ArgType->getType()->isDependentType()) {
Douglas Gregor36d7c5f2009-11-09 19:17:50 +00003357 Sema::InstantiatingTemplate Inst(SemaRef, TemplateLoc,
Richard Smith54f18e82016-08-31 02:15:21 +00003358 Param, Template, Converted,
Douglas Gregor36d7c5f2009-11-09 19:17:50 +00003359 SourceRange(TemplateLoc, RAngleLoc));
Alp Tokerd4a72d52013-10-08 08:09:04 +00003360 if (Inst.isInvalid())
Craig Topperc3ec1492014-05-26 06:22:03 +00003361 return nullptr;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003362
David Majnemer8b622692016-07-03 21:17:51 +00003363 TemplateArgumentList TemplateArgs(TemplateArgumentList::OnStack, Converted);
David Majnemer89189202013-08-28 23:48:32 +00003364
3365 // Only substitute for the innermost template argument list.
3366 MultiLevelTemplateArgumentList TemplateArgLists;
3367 TemplateArgLists.addOuterTemplateArguments(&TemplateArgs);
3368 for (unsigned i = 0, e = Param->getDepth(); i != e; ++i)
3369 TemplateArgLists.addOuterTemplateArguments(None);
3370
Argyrios Kyrtzidis6fe744c2012-04-25 18:39:17 +00003371 Sema::ContextRAII SavedContext(SemaRef, Template->getDeclContext());
David Majnemer89189202013-08-28 23:48:32 +00003372 ArgType =
3373 SemaRef.SubstType(ArgType, TemplateArgLists,
3374 Param->getDefaultArgumentLoc(), Param->getDeclName());
Douglas Gregor36d7c5f2009-11-09 19:17:50 +00003375 }
3376
3377 return ArgType;
3378}
3379
3380/// \brief Substitute template arguments into the default template argument for
3381/// the given non-type template parameter.
3382///
3383/// \param SemaRef the semantic analysis object for which we are performing
3384/// the substitution.
3385///
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003386/// \param Template the template that we are synthesizing template arguments
Douglas Gregor36d7c5f2009-11-09 19:17:50 +00003387/// for.
3388///
3389/// \param TemplateLoc the location of the template name that started the
3390/// template-id we are checking.
3391///
3392/// \param RAngleLoc the location of the right angle bracket ('>') that
3393/// terminates the template-id.
3394///
Douglas Gregor9167f8b2009-11-11 01:00:40 +00003395/// \param Param the non-type template parameter whose default we are
Douglas Gregor36d7c5f2009-11-09 19:17:50 +00003396/// substituting into.
3397///
3398/// \param Converted the list of template arguments provided for template
3399/// parameters that precede \p Param in the template parameter list.
3400///
3401/// \returns the substituted template argument, or NULL if an error occurred.
John McCalldadc5752010-08-24 06:29:42 +00003402static ExprResult
Douglas Gregor36d7c5f2009-11-09 19:17:50 +00003403SubstDefaultTemplateArgument(Sema &SemaRef,
3404 TemplateDecl *Template,
3405 SourceLocation TemplateLoc,
3406 SourceLocation RAngleLoc,
3407 NonTypeTemplateParmDecl *Param,
Chris Lattner0e62c1c2011-07-23 10:55:15 +00003408 SmallVectorImpl<TemplateArgument> &Converted) {
Douglas Gregor36d7c5f2009-11-09 19:17:50 +00003409 Sema::InstantiatingTemplate Inst(SemaRef, TemplateLoc,
Richard Smith54f18e82016-08-31 02:15:21 +00003410 Param, Template, Converted,
Douglas Gregor36d7c5f2009-11-09 19:17:50 +00003411 SourceRange(TemplateLoc, RAngleLoc));
Alp Tokerd4a72d52013-10-08 08:09:04 +00003412 if (Inst.isInvalid())
Richard Smith8a874c92012-07-08 02:38:24 +00003413 return ExprError();
Douglas Gregor36d7c5f2009-11-09 19:17:50 +00003414
David Majnemer8b622692016-07-03 21:17:51 +00003415 TemplateArgumentList TemplateArgs(TemplateArgumentList::OnStack, Converted);
David Majnemer89189202013-08-28 23:48:32 +00003416
3417 // Only substitute for the innermost template argument list.
3418 MultiLevelTemplateArgumentList TemplateArgLists;
3419 TemplateArgLists.addOuterTemplateArguments(&TemplateArgs);
3420 for (unsigned i = 0, e = Param->getDepth(); i != e; ++i)
3421 TemplateArgLists.addOuterTemplateArguments(None);
3422
Faisal Vali48401eb2015-11-19 19:20:17 +00003423 EnterExpressionEvaluationContext ConstantEvaluated(SemaRef,
3424 Sema::ConstantEvaluated);
David Majnemer89189202013-08-28 23:48:32 +00003425 return SemaRef.SubstExpr(Param->getDefaultArgument(), TemplateArgLists);
Douglas Gregor36d7c5f2009-11-09 19:17:50 +00003426}
3427
Douglas Gregor9167f8b2009-11-11 01:00:40 +00003428/// \brief Substitute template arguments into the default template argument for
3429/// the given template template parameter.
3430///
3431/// \param SemaRef the semantic analysis object for which we are performing
3432/// the substitution.
3433///
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003434/// \param Template the template that we are synthesizing template arguments
Douglas Gregor9167f8b2009-11-11 01:00:40 +00003435/// for.
3436///
3437/// \param TemplateLoc the location of the template name that started the
3438/// template-id we are checking.
3439///
3440/// \param RAngleLoc the location of the right angle bracket ('>') that
3441/// terminates the template-id.
3442///
3443/// \param Param the template template parameter whose default we are
3444/// substituting into.
3445///
3446/// \param Converted the list of template arguments provided for template
3447/// parameters that precede \p Param in the template parameter list.
3448///
Douglas Gregordf846d12011-03-02 18:46:51 +00003449/// \param QualifierLoc Will be set to the nested-name-specifier (with
3450/// source-location information) that precedes the template name.
Douglas Gregor9d802122011-03-02 17:09:35 +00003451///
Douglas Gregor9167f8b2009-11-11 01:00:40 +00003452/// \returns the substituted template argument, or NULL if an error occurred.
3453static TemplateName
3454SubstDefaultTemplateArgument(Sema &SemaRef,
3455 TemplateDecl *Template,
3456 SourceLocation TemplateLoc,
3457 SourceLocation RAngleLoc,
3458 TemplateTemplateParmDecl *Param,
Chris Lattner0e62c1c2011-07-23 10:55:15 +00003459 SmallVectorImpl<TemplateArgument> &Converted,
Douglas Gregor9d802122011-03-02 17:09:35 +00003460 NestedNameSpecifierLoc &QualifierLoc) {
Richard Smith54f18e82016-08-31 02:15:21 +00003461 Sema::InstantiatingTemplate Inst(
3462 SemaRef, TemplateLoc, TemplateParameter(Param), Template, Converted,
3463 SourceRange(TemplateLoc, RAngleLoc));
Alp Tokerd4a72d52013-10-08 08:09:04 +00003464 if (Inst.isInvalid())
Richard Smith8a874c92012-07-08 02:38:24 +00003465 return TemplateName();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003466
David Majnemer8b622692016-07-03 21:17:51 +00003467 TemplateArgumentList TemplateArgs(TemplateArgumentList::OnStack, Converted);
David Majnemer89189202013-08-28 23:48:32 +00003468
3469 // Only substitute for the innermost template argument list.
3470 MultiLevelTemplateArgumentList TemplateArgLists;
3471 TemplateArgLists.addOuterTemplateArguments(&TemplateArgs);
3472 for (unsigned i = 0, e = Param->getDepth(); i != e; ++i)
3473 TemplateArgLists.addOuterTemplateArguments(None);
3474
Argyrios Kyrtzidis6fe744c2012-04-25 18:39:17 +00003475 Sema::ContextRAII SavedContext(SemaRef, Template->getDeclContext());
David Majnemer89189202013-08-28 23:48:32 +00003476 // Substitute into the nested-name-specifier first,
Douglas Gregordf846d12011-03-02 18:46:51 +00003477 QualifierLoc = Param->getDefaultArgument().getTemplateQualifierLoc();
Douglas Gregor9d802122011-03-02 17:09:35 +00003478 if (QualifierLoc) {
David Majnemer89189202013-08-28 23:48:32 +00003479 QualifierLoc =
3480 SemaRef.SubstNestedNameSpecifierLoc(QualifierLoc, TemplateArgLists);
Douglas Gregor9d802122011-03-02 17:09:35 +00003481 if (!QualifierLoc)
3482 return TemplateName();
3483 }
David Majnemer89189202013-08-28 23:48:32 +00003484
3485 return SemaRef.SubstTemplateName(
3486 QualifierLoc,
3487 Param->getDefaultArgument().getArgument().getAsTemplate(),
3488 Param->getDefaultArgument().getTemplateNameLoc(),
3489 TemplateArgLists);
Douglas Gregor9167f8b2009-11-11 01:00:40 +00003490}
3491
Douglas Gregor5c80a27b2009-11-25 18:55:14 +00003492/// \brief If the given template parameter has a default template
3493/// argument, substitute into that default template argument and
3494/// return the corresponding template argument.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003495TemplateArgumentLoc
Douglas Gregor5c80a27b2009-11-25 18:55:14 +00003496Sema::SubstDefaultTemplateArgumentIfAvailable(TemplateDecl *Template,
3497 SourceLocation TemplateLoc,
3498 SourceLocation RAngleLoc,
3499 Decl *Param,
Richard Smithc87b9382013-07-04 01:01:24 +00003500 SmallVectorImpl<TemplateArgument>
3501 &Converted,
3502 bool &HasDefaultArg) {
3503 HasDefaultArg = false;
3504
3505 if (TemplateTypeParmDecl *TypeParm = dyn_cast<TemplateTypeParmDecl>(Param)) {
Richard Smith95d83952015-06-10 20:36:34 +00003506 if (!hasVisibleDefaultArgument(TypeParm))
Douglas Gregor5c80a27b2009-11-25 18:55:14 +00003507 return TemplateArgumentLoc();
3508
Richard Smithc87b9382013-07-04 01:01:24 +00003509 HasDefaultArg = true;
John McCallbcd03502009-12-07 02:54:59 +00003510 TypeSourceInfo *DI = SubstDefaultTemplateArgument(*this, Template,
Douglas Gregor5c80a27b2009-11-25 18:55:14 +00003511 TemplateLoc,
3512 RAngleLoc,
3513 TypeParm,
3514 Converted);
3515 if (DI)
3516 return TemplateArgumentLoc(TemplateArgument(DI->getType()), DI);
3517
3518 return TemplateArgumentLoc();
3519 }
3520
3521 if (NonTypeTemplateParmDecl *NonTypeParm
3522 = dyn_cast<NonTypeTemplateParmDecl>(Param)) {
Richard Smith95d83952015-06-10 20:36:34 +00003523 if (!hasVisibleDefaultArgument(NonTypeParm))
Douglas Gregor5c80a27b2009-11-25 18:55:14 +00003524 return TemplateArgumentLoc();
3525
Richard Smithc87b9382013-07-04 01:01:24 +00003526 HasDefaultArg = true;
John McCalldadc5752010-08-24 06:29:42 +00003527 ExprResult Arg = SubstDefaultTemplateArgument(*this, Template,
Douglas Gregor9d802122011-03-02 17:09:35 +00003528 TemplateLoc,
3529 RAngleLoc,
3530 NonTypeParm,
3531 Converted);
Douglas Gregor5c80a27b2009-11-25 18:55:14 +00003532 if (Arg.isInvalid())
3533 return TemplateArgumentLoc();
3534
Nikola Smiljanic01a75982014-05-29 10:55:11 +00003535 Expr *ArgE = Arg.getAs<Expr>();
Douglas Gregor5c80a27b2009-11-25 18:55:14 +00003536 return TemplateArgumentLoc(TemplateArgument(ArgE), ArgE);
3537 }
3538
3539 TemplateTemplateParmDecl *TempTempParm
3540 = cast<TemplateTemplateParmDecl>(Param);
Richard Smith95d83952015-06-10 20:36:34 +00003541 if (!hasVisibleDefaultArgument(TempTempParm))
Douglas Gregor5c80a27b2009-11-25 18:55:14 +00003542 return TemplateArgumentLoc();
3543
Richard Smithc87b9382013-07-04 01:01:24 +00003544 HasDefaultArg = true;
Douglas Gregordf846d12011-03-02 18:46:51 +00003545 NestedNameSpecifierLoc QualifierLoc;
Douglas Gregor5c80a27b2009-11-25 18:55:14 +00003546 TemplateName TName = SubstDefaultTemplateArgument(*this, Template,
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003547 TemplateLoc,
Douglas Gregor5c80a27b2009-11-25 18:55:14 +00003548 RAngleLoc,
3549 TempTempParm,
Douglas Gregor9d802122011-03-02 17:09:35 +00003550 Converted,
3551 QualifierLoc);
Douglas Gregor5c80a27b2009-11-25 18:55:14 +00003552 if (TName.isNull())
3553 return TemplateArgumentLoc();
3554
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003555 return TemplateArgumentLoc(TemplateArgument(TName),
Douglas Gregor9d802122011-03-02 17:09:35 +00003556 TempTempParm->getDefaultArgument().getTemplateQualifierLoc(),
Douglas Gregor5c80a27b2009-11-25 18:55:14 +00003557 TempTempParm->getDefaultArgument().getTemplateNameLoc());
3558}
3559
Douglas Gregorda0fb532009-11-11 19:31:23 +00003560/// \brief Check that the given template argument corresponds to the given
3561/// template parameter.
Douglas Gregor0231d8d2011-01-19 20:10:05 +00003562///
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003563/// \param Param The template parameter against which the argument will be
Douglas Gregor0231d8d2011-01-19 20:10:05 +00003564/// checked.
3565///
Richard Trieu15b66532015-01-24 02:48:32 +00003566/// \param Arg The template argument, which may be updated due to conversions.
Douglas Gregor0231d8d2011-01-19 20:10:05 +00003567///
3568/// \param Template The template in which the template argument resides.
3569///
3570/// \param TemplateLoc The location of the template name for the template
3571/// whose argument list we're matching.
3572///
3573/// \param RAngleLoc The location of the right angle bracket ('>') that closes
3574/// the template argument list.
3575///
3576/// \param ArgumentPackIndex The index into the argument pack where this
3577/// argument will be placed. Only valid if the parameter is a parameter pack.
3578///
3579/// \param Converted The checked, converted argument will be added to the
3580/// end of this small vector.
3581///
3582/// \param CTAK Describes how we arrived at this particular template argument:
3583/// explicitly written, deduced, etc.
3584///
3585/// \returns true on error, false otherwise.
Douglas Gregorda0fb532009-11-11 19:31:23 +00003586bool Sema::CheckTemplateArgument(NamedDecl *Param,
Reid Kleckner377c1592014-06-10 23:29:48 +00003587 TemplateArgumentLoc &Arg,
Douglas Gregorca4686d2011-01-04 23:35:54 +00003588 NamedDecl *Template,
Douglas Gregorda0fb532009-11-11 19:31:23 +00003589 SourceLocation TemplateLoc,
Douglas Gregorda0fb532009-11-11 19:31:23 +00003590 SourceLocation RAngleLoc,
Douglas Gregor0231d8d2011-01-19 20:10:05 +00003591 unsigned ArgumentPackIndex,
Chris Lattner0e62c1c2011-07-23 10:55:15 +00003592 SmallVectorImpl<TemplateArgument> &Converted,
Douglas Gregord5cb1dd2010-03-28 02:42:43 +00003593 CheckTemplateArgumentKind CTAK) {
Douglas Gregoreebed722009-11-11 19:41:09 +00003594 // Check template type parameters.
3595 if (TemplateTypeParmDecl *TTP = dyn_cast<TemplateTypeParmDecl>(Param))
Douglas Gregorda0fb532009-11-11 19:31:23 +00003596 return CheckTemplateTypeArgument(TTP, Arg, Converted);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003597
Douglas Gregoreebed722009-11-11 19:41:09 +00003598 // Check non-type template parameters.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003599 if (NonTypeTemplateParmDecl *NTTP =dyn_cast<NonTypeTemplateParmDecl>(Param)) {
Douglas Gregorda0fb532009-11-11 19:31:23 +00003600 // Do substitution on the type of the non-type template parameter
Peter Collingbourne01687632010-12-10 17:08:53 +00003601 // with the template arguments we've seen thus far. But if the
3602 // template has a dependent context then we cannot substitute yet.
Douglas Gregorda0fb532009-11-11 19:31:23 +00003603 QualType NTTPType = NTTP->getType();
Douglas Gregor0231d8d2011-01-19 20:10:05 +00003604 if (NTTP->isParameterPack() && NTTP->isExpandedParameterPack())
3605 NTTPType = NTTP->getExpansionType(ArgumentPackIndex);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003606
Peter Collingbourne01687632010-12-10 17:08:53 +00003607 if (NTTPType->isDependentType() &&
3608 !isa<TemplateTemplateParmDecl>(Template) &&
3609 !Template->getDeclContext()->isDependentContext()) {
Douglas Gregorda0fb532009-11-11 19:31:23 +00003610 // Do substitution on the type of the non-type template parameter.
3611 InstantiatingTemplate Inst(*this, TemplateLoc, Template,
Richard Smith80934652012-07-16 01:09:10 +00003612 NTTP, Converted,
Douglas Gregorda0fb532009-11-11 19:31:23 +00003613 SourceRange(TemplateLoc, RAngleLoc));
Alp Tokerd4a72d52013-10-08 08:09:04 +00003614 if (Inst.isInvalid())
Richard Smith8a874c92012-07-08 02:38:24 +00003615 return true;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003616
3617 TemplateArgumentList TemplateArgs(TemplateArgumentList::OnStack,
David Majnemer8b622692016-07-03 21:17:51 +00003618 Converted);
Douglas Gregorda0fb532009-11-11 19:31:23 +00003619 NTTPType = SubstType(NTTPType,
3620 MultiLevelTemplateArgumentList(TemplateArgs),
3621 NTTP->getLocation(),
3622 NTTP->getDeclName());
3623 // If that worked, check the non-type template parameter type
3624 // for validity.
3625 if (!NTTPType.isNull())
3626 NTTPType = CheckNonTypeTemplateParameterType(NTTPType,
3627 NTTP->getLocation());
3628 if (NTTPType.isNull())
3629 return true;
3630 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003631
Douglas Gregorda0fb532009-11-11 19:31:23 +00003632 switch (Arg.getArgument().getKind()) {
3633 case TemplateArgument::Null:
David Blaikie83d382b2011-09-23 05:06:16 +00003634 llvm_unreachable("Should never see a NULL template argument here");
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003635
Douglas Gregorda0fb532009-11-11 19:31:23 +00003636 case TemplateArgument::Expression: {
Douglas Gregorda0fb532009-11-11 19:31:23 +00003637 TemplateArgument Result;
John Wiegley01296292011-04-08 18:41:53 +00003638 ExprResult Res =
3639 CheckTemplateArgument(NTTP, NTTPType, Arg.getArgument().getAsExpr(),
3640 Result, CTAK);
3641 if (Res.isInvalid())
Douglas Gregorda0fb532009-11-11 19:31:23 +00003642 return true;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003643
Richard Trieu15b66532015-01-24 02:48:32 +00003644 // If the resulting expression is new, then use it in place of the
3645 // old expression in the template argument.
3646 if (Res.get() != Arg.getArgument().getAsExpr()) {
3647 TemplateArgument TA(Res.get());
3648 Arg = TemplateArgumentLoc(TA, Res.get());
3649 }
3650
Douglas Gregor1ccc8412010-11-07 23:05:16 +00003651 Converted.push_back(Result);
Douglas Gregorda0fb532009-11-11 19:31:23 +00003652 break;
3653 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003654
Douglas Gregorda0fb532009-11-11 19:31:23 +00003655 case TemplateArgument::Declaration:
3656 case TemplateArgument::Integral:
Eli Friedmanb826a002012-09-26 02:36:12 +00003657 case TemplateArgument::NullPtr:
Douglas Gregorda0fb532009-11-11 19:31:23 +00003658 // We've already checked this template argument, so just copy
3659 // it to the list of converted arguments.
Douglas Gregor1ccc8412010-11-07 23:05:16 +00003660 Converted.push_back(Arg.getArgument());
Douglas Gregorda0fb532009-11-11 19:31:23 +00003661 break;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003662
Douglas Gregorda0fb532009-11-11 19:31:23 +00003663 case TemplateArgument::Template:
Douglas Gregore4ff4b52011-01-05 18:58:31 +00003664 case TemplateArgument::TemplateExpansion:
Douglas Gregorda0fb532009-11-11 19:31:23 +00003665 // We were given a template template argument. It may not be ill-formed;
3666 // see below.
3667 if (DependentTemplateName *DTN
Douglas Gregore4ff4b52011-01-05 18:58:31 +00003668 = Arg.getArgument().getAsTemplateOrTemplatePattern()
3669 .getAsDependentTemplateName()) {
Douglas Gregorda0fb532009-11-11 19:31:23 +00003670 // We have a template argument such as \c T::template X, which we
3671 // parsed as a template template argument. However, since we now
3672 // know that we need a non-type template argument, convert this
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00003673 // template name into an expression.
3674
3675 DeclarationNameInfo NameInfo(DTN->getIdentifier(),
3676 Arg.getTemplateNameLoc());
3677
Douglas Gregor3a43fd62011-02-25 20:49:16 +00003678 CXXScopeSpec SS;
Douglas Gregor9d802122011-03-02 17:09:35 +00003679 SS.Adopt(Arg.getTemplateQualifierLoc());
Abramo Bagnara7945c982012-01-27 09:46:47 +00003680 // FIXME: the template-template arg was a DependentTemplateName,
3681 // so it was provided with a template keyword. However, its source
3682 // location is not stored in the template argument structure.
3683 SourceLocation TemplateKWLoc;
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00003684 ExprResult E = DependentScopeDeclRefExpr::Create(
3685 Context, SS.getWithLocInContext(Context), TemplateKWLoc, NameInfo,
3686 nullptr);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003687
Douglas Gregore4ff4b52011-01-05 18:58:31 +00003688 // If we parsed the template argument as a pack expansion, create a
3689 // pack expansion expression.
3690 if (Arg.getArgument().getKind() == TemplateArgument::TemplateExpansion){
Nikola Smiljanic01a75982014-05-29 10:55:11 +00003691 E = ActOnPackExpansion(E.get(), Arg.getTemplateEllipsisLoc());
John Wiegley01296292011-04-08 18:41:53 +00003692 if (E.isInvalid())
Douglas Gregore4ff4b52011-01-05 18:58:31 +00003693 return true;
Douglas Gregore4ff4b52011-01-05 18:58:31 +00003694 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003695
Douglas Gregorda0fb532009-11-11 19:31:23 +00003696 TemplateArgument Result;
Nikola Smiljanic01a75982014-05-29 10:55:11 +00003697 E = CheckTemplateArgument(NTTP, NTTPType, E.get(), Result);
John Wiegley01296292011-04-08 18:41:53 +00003698 if (E.isInvalid())
Douglas Gregorda0fb532009-11-11 19:31:23 +00003699 return true;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003700
Douglas Gregor1ccc8412010-11-07 23:05:16 +00003701 Converted.push_back(Result);
Douglas Gregorda0fb532009-11-11 19:31:23 +00003702 break;
3703 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003704
Douglas Gregorda0fb532009-11-11 19:31:23 +00003705 // We have a template argument that actually does refer to a class
Richard Smith3f1b5d02011-05-05 21:57:07 +00003706 // template, alias template, or template template parameter, and
Douglas Gregorda0fb532009-11-11 19:31:23 +00003707 // therefore cannot be a non-type template argument.
3708 Diag(Arg.getLocation(), diag::err_template_arg_must_be_expr)
3709 << Arg.getSourceRange();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003710
Douglas Gregorda0fb532009-11-11 19:31:23 +00003711 Diag(Param->getLocation(), diag::note_template_param_here);
3712 return true;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003713
Douglas Gregorda0fb532009-11-11 19:31:23 +00003714 case TemplateArgument::Type: {
3715 // We have a non-type template parameter but the template
3716 // argument is a type.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003717
Douglas Gregorda0fb532009-11-11 19:31:23 +00003718 // C++ [temp.arg]p2:
3719 // In a template-argument, an ambiguity between a type-id and
3720 // an expression is resolved to a type-id, regardless of the
3721 // form of the corresponding template-parameter.
3722 //
3723 // We warn specifically about this case, since it can be rather
3724 // confusing for users.
3725 QualType T = Arg.getArgument().getAsType();
3726 SourceRange SR = Arg.getSourceRange();
3727 if (T->isFunctionType())
3728 Diag(SR.getBegin(), diag::err_template_arg_nontype_ambig) << SR << T;
3729 else
3730 Diag(SR.getBegin(), diag::err_template_arg_must_be_expr) << SR;
3731 Diag(Param->getLocation(), diag::note_template_param_here);
3732 return true;
3733 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003734
Douglas Gregorda0fb532009-11-11 19:31:23 +00003735 case TemplateArgument::Pack:
Jeffrey Yasskin1615d452009-12-12 05:05:38 +00003736 llvm_unreachable("Caller must expand template argument packs");
Douglas Gregorda0fb532009-11-11 19:31:23 +00003737 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003738
Douglas Gregorda0fb532009-11-11 19:31:23 +00003739 return false;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003740 }
3741
3742
Douglas Gregorda0fb532009-11-11 19:31:23 +00003743 // Check template template parameters.
3744 TemplateTemplateParmDecl *TempParm = cast<TemplateTemplateParmDecl>(Param);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003745
Douglas Gregorda0fb532009-11-11 19:31:23 +00003746 // Substitute into the template parameter list of the template
3747 // template parameter, since previously-supplied template arguments
3748 // may appear within the template template parameter.
3749 {
3750 // Set up a template instantiation context.
3751 LocalInstantiationScope Scope(*this);
3752 InstantiatingTemplate Inst(*this, TemplateLoc, Template,
Richard Smith80934652012-07-16 01:09:10 +00003753 TempParm, Converted,
Douglas Gregorda0fb532009-11-11 19:31:23 +00003754 SourceRange(TemplateLoc, RAngleLoc));
Alp Tokerd4a72d52013-10-08 08:09:04 +00003755 if (Inst.isInvalid())
Richard Smith8a874c92012-07-08 02:38:24 +00003756 return true;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003757
David Majnemer8b622692016-07-03 21:17:51 +00003758 TemplateArgumentList TemplateArgs(TemplateArgumentList::OnStack, Converted);
Douglas Gregorda0fb532009-11-11 19:31:23 +00003759 TempParm = cast_or_null<TemplateTemplateParmDecl>(
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003760 SubstDecl(TempParm, CurContext,
Douglas Gregorda0fb532009-11-11 19:31:23 +00003761 MultiLevelTemplateArgumentList(TemplateArgs)));
3762 if (!TempParm)
3763 return true;
Douglas Gregorda0fb532009-11-11 19:31:23 +00003764 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003765
Douglas Gregorda0fb532009-11-11 19:31:23 +00003766 switch (Arg.getArgument().getKind()) {
3767 case TemplateArgument::Null:
David Blaikie83d382b2011-09-23 05:06:16 +00003768 llvm_unreachable("Should never see a NULL template argument here");
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003769
Douglas Gregorda0fb532009-11-11 19:31:23 +00003770 case TemplateArgument::Template:
Douglas Gregore4ff4b52011-01-05 18:58:31 +00003771 case TemplateArgument::TemplateExpansion:
Richard Smith1fde8ec2012-09-07 02:06:42 +00003772 if (CheckTemplateArgument(TempParm, Arg, ArgumentPackIndex))
Douglas Gregorda0fb532009-11-11 19:31:23 +00003773 return true;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003774
Douglas Gregor1ccc8412010-11-07 23:05:16 +00003775 Converted.push_back(Arg.getArgument());
Douglas Gregorda0fb532009-11-11 19:31:23 +00003776 break;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003777
Douglas Gregorda0fb532009-11-11 19:31:23 +00003778 case TemplateArgument::Expression:
3779 case TemplateArgument::Type:
3780 // We have a template template parameter but the template
3781 // argument does not refer to a template.
Richard Smith3f1b5d02011-05-05 21:57:07 +00003782 Diag(Arg.getLocation(), diag::err_template_arg_must_be_template)
Richard Smith2bf7fdb2013-01-02 11:42:31 +00003783 << getLangOpts().CPlusPlus11;
Douglas Gregorda0fb532009-11-11 19:31:23 +00003784 return true;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003785
Douglas Gregorda0fb532009-11-11 19:31:23 +00003786 case TemplateArgument::Declaration:
David Blaikie8a40f702012-01-17 06:56:22 +00003787 llvm_unreachable("Declaration argument with template template parameter");
Douglas Gregorda0fb532009-11-11 19:31:23 +00003788 case TemplateArgument::Integral:
David Blaikie8a40f702012-01-17 06:56:22 +00003789 llvm_unreachable("Integral argument with template template parameter");
Eli Friedmanb826a002012-09-26 02:36:12 +00003790 case TemplateArgument::NullPtr:
3791 llvm_unreachable("Null pointer argument with template template parameter");
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003792
Douglas Gregorda0fb532009-11-11 19:31:23 +00003793 case TemplateArgument::Pack:
Jeffrey Yasskin1615d452009-12-12 05:05:38 +00003794 llvm_unreachable("Caller must expand template argument packs");
Douglas Gregorda0fb532009-11-11 19:31:23 +00003795 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003796
Douglas Gregorda0fb532009-11-11 19:31:23 +00003797 return false;
3798}
3799
Douglas Gregor8e072612012-02-03 07:34:46 +00003800/// \brief Diagnose an arity mismatch in the
3801static bool diagnoseArityMismatch(Sema &S, TemplateDecl *Template,
3802 SourceLocation TemplateLoc,
3803 TemplateArgumentListInfo &TemplateArgs) {
3804 TemplateParameterList *Params = Template->getTemplateParameters();
3805 unsigned NumParams = Params->size();
3806 unsigned NumArgs = TemplateArgs.size();
3807
3808 SourceRange Range;
3809 if (NumArgs > NumParams)
3810 Range = SourceRange(TemplateArgs[NumParams].getLocation(),
3811 TemplateArgs.getRAngleLoc());
3812 S.Diag(TemplateLoc, diag::err_template_arg_list_different_arity)
3813 << (NumArgs > NumParams)
3814 << (isa<ClassTemplateDecl>(Template)? 0 :
3815 isa<FunctionTemplateDecl>(Template)? 1 :
3816 isa<TemplateTemplateParmDecl>(Template)? 2 : 3)
3817 << Template << Range;
3818 S.Diag(Template->getLocation(), diag::note_template_decl_here)
3819 << Params->getSourceRange();
3820 return true;
3821}
3822
Richard Smith1fde8ec2012-09-07 02:06:42 +00003823/// \brief Check whether the template parameter is a pack expansion, and if so,
3824/// determine the number of parameters produced by that expansion. For instance:
3825///
3826/// \code
3827/// template<typename ...Ts> struct A {
3828/// template<Ts ...NTs, template<Ts> class ...TTs, typename ...Us> struct B;
3829/// };
3830/// \endcode
3831///
3832/// In \c A<int,int>::B, \c NTs and \c TTs have expanded pack size 2, and \c Us
3833/// is not a pack expansion, so returns an empty Optional.
David Blaikie05785d12013-02-20 22:23:23 +00003834static Optional<unsigned> getExpandedPackSize(NamedDecl *Param) {
Richard Smith1fde8ec2012-09-07 02:06:42 +00003835 if (NonTypeTemplateParmDecl *NTTP
3836 = dyn_cast<NonTypeTemplateParmDecl>(Param)) {
3837 if (NTTP->isExpandedParameterPack())
3838 return NTTP->getNumExpansionTypes();
3839 }
3840
3841 if (TemplateTemplateParmDecl *TTP
3842 = dyn_cast<TemplateTemplateParmDecl>(Param)) {
3843 if (TTP->isExpandedParameterPack())
3844 return TTP->getNumExpansionTemplateParameters();
3845 }
3846
David Blaikie7a30dc52013-02-21 01:47:18 +00003847 return None;
Richard Smith1fde8ec2012-09-07 02:06:42 +00003848}
3849
Richard Smith35c1df52015-06-17 20:16:32 +00003850/// Diagnose a missing template argument.
3851template<typename TemplateParmDecl>
3852static bool diagnoseMissingArgument(Sema &S, SourceLocation Loc,
3853 TemplateDecl *TD,
3854 const TemplateParmDecl *D,
3855 TemplateArgumentListInfo &Args) {
3856 // Dig out the most recent declaration of the template parameter; there may be
3857 // declarations of the template that are more recent than TD.
3858 D = cast<TemplateParmDecl>(cast<TemplateDecl>(TD->getMostRecentDecl())
3859 ->getTemplateParameters()
3860 ->getParam(D->getIndex()));
3861
3862 // If there's a default argument that's not visible, diagnose that we're
3863 // missing a module import.
3864 llvm::SmallVector<Module*, 8> Modules;
3865 if (D->hasDefaultArgument() && !S.hasVisibleDefaultArgument(D, &Modules)) {
3866 S.diagnoseMissingImport(Loc, cast<NamedDecl>(TD),
3867 D->getDefaultArgumentLoc(), Modules,
3868 Sema::MissingImportKind::DefaultArgument,
Richard Smith6739a102016-05-05 00:56:12 +00003869 /*Recover*/true);
Richard Smith35c1df52015-06-17 20:16:32 +00003870 return true;
3871 }
3872
3873 // FIXME: If there's a more recent default argument that *is* visible,
3874 // diagnose that it was declared too late.
3875
3876 return diagnoseArityMismatch(S, TD, Loc, Args);
3877}
3878
Douglas Gregord32e0282009-02-09 23:23:08 +00003879/// \brief Check that the given template argument list is well-formed
3880/// for specializing the given template.
3881bool Sema::CheckTemplateArgumentList(TemplateDecl *Template,
3882 SourceLocation TemplateLoc,
Douglas Gregor739b107a2011-03-03 02:41:12 +00003883 TemplateArgumentListInfo &TemplateArgs,
Douglas Gregore3f1f352009-07-01 00:28:38 +00003884 bool PartialTemplateArgs,
Richard Smith83b11aa2014-01-09 02:22:22 +00003885 SmallVectorImpl<TemplateArgument> &Converted) {
Richard Trieu15b66532015-01-24 02:48:32 +00003886 // Make a copy of the template arguments for processing. Only make the
3887 // changes at the end when successful in matching the arguments to the
3888 // template.
3889 TemplateArgumentListInfo NewArgs = TemplateArgs;
3890
Douglas Gregord32e0282009-02-09 23:23:08 +00003891 TemplateParameterList *Params = Template->getTemplateParameters();
Douglas Gregord32e0282009-02-09 23:23:08 +00003892
Richard Trieu15b66532015-01-24 02:48:32 +00003893 SourceLocation RAngleLoc = NewArgs.getRAngleLoc();
John McCall6b51f282009-11-23 01:53:49 +00003894
Mike Stump11289f42009-09-09 15:08:12 +00003895 // C++ [temp.arg]p1:
Douglas Gregord32e0282009-02-09 23:23:08 +00003896 // [...] The type and form of each template-argument specified in
3897 // a template-id shall match the type and form specified for the
3898 // corresponding parameter declared by the template in its
3899 // template-parameter-list.
Douglas Gregor739b107a2011-03-03 02:41:12 +00003900 bool isTemplateTemplateParameter = isa<TemplateTemplateParmDecl>(Template);
Chris Lattner0e62c1c2011-07-23 10:55:15 +00003901 SmallVector<TemplateArgument, 2> ArgumentPack;
Richard Trieu15b66532015-01-24 02:48:32 +00003902 unsigned ArgIdx = 0, NumArgs = NewArgs.size();
Douglas Gregorf143cd52011-01-24 16:14:37 +00003903 LocalInstantiationScope InstScope(*this, true);
Richard Smith1fde8ec2012-09-07 02:06:42 +00003904 for (TemplateParameterList::iterator Param = Params->begin(),
3905 ParamEnd = Params->end();
3906 Param != ParamEnd; /* increment in loop */) {
3907 // If we have an expanded parameter pack, make sure we don't have too
3908 // many arguments.
David Blaikie05785d12013-02-20 22:23:23 +00003909 if (Optional<unsigned> Expansions = getExpandedPackSize(*Param)) {
Richard Smith1fde8ec2012-09-07 02:06:42 +00003910 if (*Expansions == ArgumentPack.size()) {
3911 // We're done with this parameter pack. Pack up its arguments and add
3912 // them to the list.
Eli Friedmanb826a002012-09-26 02:36:12 +00003913 Converted.push_back(
Benjamin Kramercce63472015-08-05 09:40:22 +00003914 TemplateArgument::CreatePackCopy(Context, ArgumentPack));
Eli Friedmanb826a002012-09-26 02:36:12 +00003915 ArgumentPack.clear();
3916
Richard Smith1fde8ec2012-09-07 02:06:42 +00003917 // This argument is assigned to the next parameter.
3918 ++Param;
3919 continue;
3920 } else if (ArgIdx == NumArgs && !PartialTemplateArgs) {
3921 // Not enough arguments for this parameter pack.
3922 Diag(TemplateLoc, diag::err_template_arg_list_different_arity)
3923 << false
3924 << (isa<ClassTemplateDecl>(Template)? 0 :
3925 isa<FunctionTemplateDecl>(Template)? 1 :
3926 isa<TemplateTemplateParmDecl>(Template)? 2 : 3)
3927 << Template;
3928 Diag(Template->getLocation(), diag::note_template_decl_here)
3929 << Params->getSourceRange();
3930 return true;
Douglas Gregor0231d8d2011-01-19 20:10:05 +00003931 }
Richard Smith1fde8ec2012-09-07 02:06:42 +00003932 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003933
Richard Smith1fde8ec2012-09-07 02:06:42 +00003934 if (ArgIdx < NumArgs) {
Douglas Gregor84d49a22009-11-11 21:54:23 +00003935 // Check the template argument we were given.
Richard Trieu15b66532015-01-24 02:48:32 +00003936 if (CheckTemplateArgument(*Param, NewArgs[ArgIdx], Template,
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003937 TemplateLoc, RAngleLoc,
Douglas Gregor0231d8d2011-01-19 20:10:05 +00003938 ArgumentPack.size(), Converted))
Douglas Gregor84d49a22009-11-11 21:54:23 +00003939 return true;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003940
Richard Smith96d71c32014-11-12 23:38:38 +00003941 bool PackExpansionIntoNonPack =
Richard Trieu15b66532015-01-24 02:48:32 +00003942 NewArgs[ArgIdx].getArgument().isPackExpansion() &&
Richard Smith96d71c32014-11-12 23:38:38 +00003943 (!(*Param)->isTemplateParameterPack() || getExpandedPackSize(*Param));
3944 if (PackExpansionIntoNonPack && isa<TypeAliasTemplateDecl>(Template)) {
Richard Smith83b11aa2014-01-09 02:22:22 +00003945 // Core issue 1430: we have a pack expansion as an argument to an
Richard Smith96d71c32014-11-12 23:38:38 +00003946 // alias template, and it's not part of a parameter pack. This
Richard Smith83b11aa2014-01-09 02:22:22 +00003947 // can't be canonicalized, so reject it now.
Richard Trieu15b66532015-01-24 02:48:32 +00003948 Diag(NewArgs[ArgIdx].getLocation(),
Richard Smith83b11aa2014-01-09 02:22:22 +00003949 diag::err_alias_template_expansion_into_fixed_list)
Richard Trieu15b66532015-01-24 02:48:32 +00003950 << NewArgs[ArgIdx].getSourceRange();
Richard Smith83b11aa2014-01-09 02:22:22 +00003951 Diag((*Param)->getLocation(), diag::note_template_param_here);
3952 return true;
3953 }
3954
Richard Smith1fde8ec2012-09-07 02:06:42 +00003955 // We're now done with this argument.
3956 ++ArgIdx;
3957
Douglas Gregor9abeaf52010-12-20 16:57:52 +00003958 if ((*Param)->isTemplateParameterPack()) {
3959 // The template parameter was a template parameter pack, so take the
3960 // deduced argument and place it on the argument pack. Note that we
3961 // stay on the same template parameter so that we can deduce more
3962 // arguments.
Robert Wilhelm25284cc2013-08-23 16:11:15 +00003963 ArgumentPack.push_back(Converted.pop_back_val());
Douglas Gregor9abeaf52010-12-20 16:57:52 +00003964 } else {
3965 // Move to the next template parameter.
3966 ++Param;
3967 }
Richard Smith1fde8ec2012-09-07 02:06:42 +00003968
Richard Smith96d71c32014-11-12 23:38:38 +00003969 // If we just saw a pack expansion into a non-pack, then directly convert
3970 // the remaining arguments, because we don't know what parameters they'll
3971 // match up with.
3972 if (PackExpansionIntoNonPack) {
3973 if (!ArgumentPack.empty()) {
Richard Smith1fde8ec2012-09-07 02:06:42 +00003974 // If we were part way through filling in an expanded parameter pack,
3975 // fall back to just producing individual arguments.
3976 Converted.insert(Converted.end(),
3977 ArgumentPack.begin(), ArgumentPack.end());
3978 ArgumentPack.clear();
3979 }
3980
3981 while (ArgIdx < NumArgs) {
Richard Trieu15b66532015-01-24 02:48:32 +00003982 Converted.push_back(NewArgs[ArgIdx].getArgument());
Richard Smith1fde8ec2012-09-07 02:06:42 +00003983 ++ArgIdx;
3984 }
3985
Richard Smith1fde8ec2012-09-07 02:06:42 +00003986 return false;
Douglas Gregor8e072612012-02-03 07:34:46 +00003987 }
Richard Smith1fde8ec2012-09-07 02:06:42 +00003988
Douglas Gregor84d49a22009-11-11 21:54:23 +00003989 continue;
Douglas Gregor264ec4f2009-02-17 01:05:43 +00003990 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003991
Douglas Gregor2f157c92011-06-03 02:59:40 +00003992 // If we're checking a partial template argument list, we're done.
3993 if (PartialTemplateArgs) {
3994 if ((*Param)->isTemplateParameterPack() && !ArgumentPack.empty())
Benjamin Kramercce63472015-08-05 09:40:22 +00003995 Converted.push_back(
3996 TemplateArgument::CreatePackCopy(Context, ArgumentPack));
3997
Richard Smith1fde8ec2012-09-07 02:06:42 +00003998 return false;
Douglas Gregor2f157c92011-06-03 02:59:40 +00003999 }
4000
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004001 // If we have a template parameter pack with no more corresponding
Douglas Gregor9abeaf52010-12-20 16:57:52 +00004002 // arguments, just break out now and we'll fill in the argument pack below.
Richard Smith1fde8ec2012-09-07 02:06:42 +00004003 if ((*Param)->isTemplateParameterPack()) {
4004 assert(!getExpandedPackSize(*Param) &&
4005 "Should have dealt with this already");
4006
4007 // A non-expanded parameter pack before the end of the parameter list
4008 // only occurs for an ill-formed template parameter list, unless we've
4009 // got a partial argument list for a function template, so just bail out.
4010 if (Param + 1 != ParamEnd)
4011 return true;
4012
Benjamin Kramercce63472015-08-05 09:40:22 +00004013 Converted.push_back(
4014 TemplateArgument::CreatePackCopy(Context, ArgumentPack));
Eli Friedmanb826a002012-09-26 02:36:12 +00004015 ArgumentPack.clear();
Richard Smith1fde8ec2012-09-07 02:06:42 +00004016
4017 ++Param;
4018 continue;
4019 }
4020
Douglas Gregor8e072612012-02-03 07:34:46 +00004021 // Check whether we have a default argument.
Douglas Gregor84d49a22009-11-11 21:54:23 +00004022 TemplateArgumentLoc Arg;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004023
Douglas Gregor84d49a22009-11-11 21:54:23 +00004024 // Retrieve the default template argument from the template
4025 // parameter. For each kind of template parameter, we substitute the
4026 // template arguments provided thus far and any "outer" template arguments
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004027 // (when the template parameter was part of a nested template) into
Douglas Gregor84d49a22009-11-11 21:54:23 +00004028 // the default argument.
4029 if (TemplateTypeParmDecl *TTP = dyn_cast<TemplateTypeParmDecl>(*Param)) {
Richard Smith95d83952015-06-10 20:36:34 +00004030 if (!hasVisibleDefaultArgument(TTP))
Richard Smith35c1df52015-06-17 20:16:32 +00004031 return diagnoseMissingArgument(*this, TemplateLoc, Template, TTP,
4032 NewArgs);
Douglas Gregor84d49a22009-11-11 21:54:23 +00004033
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004034 TypeSourceInfo *ArgType = SubstDefaultTemplateArgument(*this,
Douglas Gregor84d49a22009-11-11 21:54:23 +00004035 Template,
4036 TemplateLoc,
4037 RAngleLoc,
4038 TTP,
4039 Converted);
4040 if (!ArgType)
4041 return true;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004042
Douglas Gregor84d49a22009-11-11 21:54:23 +00004043 Arg = TemplateArgumentLoc(TemplateArgument(ArgType->getType()),
4044 ArgType);
4045 } else if (NonTypeTemplateParmDecl *NTTP
4046 = dyn_cast<NonTypeTemplateParmDecl>(*Param)) {
Richard Smith95d83952015-06-10 20:36:34 +00004047 if (!hasVisibleDefaultArgument(NTTP))
Richard Smith35c1df52015-06-17 20:16:32 +00004048 return diagnoseMissingArgument(*this, TemplateLoc, Template, NTTP,
4049 NewArgs);
Douglas Gregor84d49a22009-11-11 21:54:23 +00004050
John McCalldadc5752010-08-24 06:29:42 +00004051 ExprResult E = SubstDefaultTemplateArgument(*this, Template,
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004052 TemplateLoc,
4053 RAngleLoc,
4054 NTTP,
Douglas Gregor84d49a22009-11-11 21:54:23 +00004055 Converted);
4056 if (E.isInvalid())
4057 return true;
4058
Nikola Smiljanic01a75982014-05-29 10:55:11 +00004059 Expr *Ex = E.getAs<Expr>();
Douglas Gregor84d49a22009-11-11 21:54:23 +00004060 Arg = TemplateArgumentLoc(TemplateArgument(Ex), Ex);
4061 } else {
4062 TemplateTemplateParmDecl *TempParm
4063 = cast<TemplateTemplateParmDecl>(*Param);
4064
Richard Smith95d83952015-06-10 20:36:34 +00004065 if (!hasVisibleDefaultArgument(TempParm))
Richard Smith35c1df52015-06-17 20:16:32 +00004066 return diagnoseMissingArgument(*this, TemplateLoc, Template, TempParm,
4067 NewArgs);
Douglas Gregor84d49a22009-11-11 21:54:23 +00004068
Douglas Gregordf846d12011-03-02 18:46:51 +00004069 NestedNameSpecifierLoc QualifierLoc;
Douglas Gregor84d49a22009-11-11 21:54:23 +00004070 TemplateName Name = SubstDefaultTemplateArgument(*this, Template,
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004071 TemplateLoc,
4072 RAngleLoc,
Douglas Gregor84d49a22009-11-11 21:54:23 +00004073 TempParm,
Douglas Gregor9d802122011-03-02 17:09:35 +00004074 Converted,
4075 QualifierLoc);
Douglas Gregor84d49a22009-11-11 21:54:23 +00004076 if (Name.isNull())
4077 return true;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004078
Douglas Gregor9d802122011-03-02 17:09:35 +00004079 Arg = TemplateArgumentLoc(TemplateArgument(Name), QualifierLoc,
4080 TempParm->getDefaultArgument().getTemplateNameLoc());
Douglas Gregor84d49a22009-11-11 21:54:23 +00004081 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004082
Douglas Gregor84d49a22009-11-11 21:54:23 +00004083 // Introduce an instantiation record that describes where we are using
Richard Smith54f18e82016-08-31 02:15:21 +00004084 // the default template argument. We're not actually instantiating a
4085 // template here, we just create this object to put a note into the
4086 // context stack.
Alp Tokerd4a72d52013-10-08 08:09:04 +00004087 InstantiatingTemplate Inst(*this, RAngleLoc, Template, *Param, Converted,
4088 SourceRange(TemplateLoc, RAngleLoc));
4089 if (Inst.isInvalid())
Richard Smith8a874c92012-07-08 02:38:24 +00004090 return true;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004091
Douglas Gregor84d49a22009-11-11 21:54:23 +00004092 // Check the default template argument.
Douglas Gregoreebed722009-11-11 19:41:09 +00004093 if (CheckTemplateArgument(*Param, Arg, Template, TemplateLoc,
Douglas Gregor0231d8d2011-01-19 20:10:05 +00004094 RAngleLoc, 0, Converted))
Douglas Gregorda0fb532009-11-11 19:31:23 +00004095 return true;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004096
Richard Trieu15b66532015-01-24 02:48:32 +00004097 // Core issue 150 (assumed resolution): if this is a template template
4098 // parameter, keep track of the default template arguments from the
Douglas Gregor739b107a2011-03-03 02:41:12 +00004099 // template definition.
4100 if (isTemplateTemplateParameter)
Richard Trieu15b66532015-01-24 02:48:32 +00004101 NewArgs.addArgument(Arg);
4102
Douglas Gregor9abeaf52010-12-20 16:57:52 +00004103 // Move to the next template parameter and argument.
4104 ++Param;
4105 ++ArgIdx;
Douglas Gregord32e0282009-02-09 23:23:08 +00004106 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004107
Richard Smith07f79912014-06-06 16:00:50 +00004108 // If we're performing a partial argument substitution, allow any trailing
4109 // pack expansions; they might be empty. This can happen even if
4110 // PartialTemplateArgs is false (the list of arguments is complete but
4111 // still dependent).
4112 if (ArgIdx < NumArgs && CurrentInstantiationScope &&
4113 CurrentInstantiationScope->getPartiallySubstitutedPack()) {
Richard Trieu15b66532015-01-24 02:48:32 +00004114 while (ArgIdx < NumArgs && NewArgs[ArgIdx].getArgument().isPackExpansion())
4115 Converted.push_back(NewArgs[ArgIdx++].getArgument());
Richard Smith07f79912014-06-06 16:00:50 +00004116 }
4117
Douglas Gregor8e072612012-02-03 07:34:46 +00004118 // If we have any leftover arguments, then there were too many arguments.
4119 // Complain and fail.
4120 if (ArgIdx < NumArgs)
Richard Trieu15b66532015-01-24 02:48:32 +00004121 return diagnoseArityMismatch(*this, Template, TemplateLoc, NewArgs);
4122
4123 // No problems found with the new argument list, propagate changes back
4124 // to caller.
Richard Smith7d3c3ef2015-10-02 00:49:37 +00004125 TemplateArgs = std::move(NewArgs);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004126
Richard Smith1fde8ec2012-09-07 02:06:42 +00004127 return false;
Douglas Gregord32e0282009-02-09 23:23:08 +00004128}
4129
Douglas Gregor7731d3f2010-10-13 00:27:52 +00004130namespace {
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004131 class UnnamedLocalNoLinkageFinder
4132 : public TypeVisitor<UnnamedLocalNoLinkageFinder, bool>
Douglas Gregor7731d3f2010-10-13 00:27:52 +00004133 {
4134 Sema &S;
4135 SourceRange SR;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004136
Douglas Gregor7731d3f2010-10-13 00:27:52 +00004137 typedef TypeVisitor<UnnamedLocalNoLinkageFinder, bool> inherited;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004138
Douglas Gregor7731d3f2010-10-13 00:27:52 +00004139 public:
4140 UnnamedLocalNoLinkageFinder(Sema &S, SourceRange SR) : S(S), SR(SR) { }
4141
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004142 bool Visit(QualType T) {
4143 return inherited::Visit(T.getTypePtr());
Douglas Gregor7731d3f2010-10-13 00:27:52 +00004144 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004145
Douglas Gregor7731d3f2010-10-13 00:27:52 +00004146#define TYPE(Class, Parent) \
4147 bool Visit##Class##Type(const Class##Type *);
4148#define ABSTRACT_TYPE(Class, Parent) \
4149 bool Visit##Class##Type(const Class##Type *) { return false; }
4150#define NON_CANONICAL_TYPE(Class, Parent) \
4151 bool Visit##Class##Type(const Class##Type *) { return false; }
4152#include "clang/AST/TypeNodes.def"
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004153
Douglas Gregor7731d3f2010-10-13 00:27:52 +00004154 bool VisitTagDecl(const TagDecl *Tag);
4155 bool VisitNestedNameSpecifier(NestedNameSpecifier *NNS);
4156 };
Eugene Zelenko1ced5092016-02-12 22:53:10 +00004157} // end anonymous namespace
Douglas Gregor7731d3f2010-10-13 00:27:52 +00004158
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004159bool UnnamedLocalNoLinkageFinder::VisitBuiltinType(const BuiltinType*) {
Douglas Gregor7731d3f2010-10-13 00:27:52 +00004160 return false;
4161}
4162
4163bool UnnamedLocalNoLinkageFinder::VisitComplexType(const ComplexType* T) {
4164 return Visit(T->getElementType());
4165}
4166
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004167bool UnnamedLocalNoLinkageFinder::VisitPointerType(const PointerType* T) {
Douglas Gregor7731d3f2010-10-13 00:27:52 +00004168 return Visit(T->getPointeeType());
4169}
4170
4171bool UnnamedLocalNoLinkageFinder::VisitBlockPointerType(
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004172 const BlockPointerType* T) {
Douglas Gregor7731d3f2010-10-13 00:27:52 +00004173 return Visit(T->getPointeeType());
4174}
4175
4176bool UnnamedLocalNoLinkageFinder::VisitLValueReferenceType(
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004177 const LValueReferenceType* T) {
Douglas Gregor7731d3f2010-10-13 00:27:52 +00004178 return Visit(T->getPointeeType());
4179}
4180
4181bool UnnamedLocalNoLinkageFinder::VisitRValueReferenceType(
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004182 const RValueReferenceType* T) {
Douglas Gregor7731d3f2010-10-13 00:27:52 +00004183 return Visit(T->getPointeeType());
4184}
4185
4186bool UnnamedLocalNoLinkageFinder::VisitMemberPointerType(
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004187 const MemberPointerType* T) {
Douglas Gregor7731d3f2010-10-13 00:27:52 +00004188 return Visit(T->getPointeeType()) || Visit(QualType(T->getClass(), 0));
4189}
4190
4191bool UnnamedLocalNoLinkageFinder::VisitConstantArrayType(
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004192 const ConstantArrayType* T) {
Douglas Gregor7731d3f2010-10-13 00:27:52 +00004193 return Visit(T->getElementType());
4194}
4195
4196bool UnnamedLocalNoLinkageFinder::VisitIncompleteArrayType(
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004197 const IncompleteArrayType* T) {
Douglas Gregor7731d3f2010-10-13 00:27:52 +00004198 return Visit(T->getElementType());
4199}
4200
4201bool UnnamedLocalNoLinkageFinder::VisitVariableArrayType(
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004202 const VariableArrayType* T) {
Douglas Gregor7731d3f2010-10-13 00:27:52 +00004203 return Visit(T->getElementType());
4204}
4205
4206bool UnnamedLocalNoLinkageFinder::VisitDependentSizedArrayType(
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004207 const DependentSizedArrayType* T) {
Douglas Gregor7731d3f2010-10-13 00:27:52 +00004208 return Visit(T->getElementType());
4209}
4210
4211bool UnnamedLocalNoLinkageFinder::VisitDependentSizedExtVectorType(
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004212 const DependentSizedExtVectorType* T) {
Douglas Gregor7731d3f2010-10-13 00:27:52 +00004213 return Visit(T->getElementType());
4214}
4215
4216bool UnnamedLocalNoLinkageFinder::VisitVectorType(const VectorType* T) {
4217 return Visit(T->getElementType());
4218}
4219
4220bool UnnamedLocalNoLinkageFinder::VisitExtVectorType(const ExtVectorType* T) {
4221 return Visit(T->getElementType());
4222}
4223
4224bool UnnamedLocalNoLinkageFinder::VisitFunctionProtoType(
4225 const FunctionProtoType* T) {
Aaron Ballman40bd0aa2014-03-17 15:23:01 +00004226 for (const auto &A : T->param_types()) {
4227 if (Visit(A))
Douglas Gregor7731d3f2010-10-13 00:27:52 +00004228 return true;
4229 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004230
Alp Toker314cc812014-01-25 16:55:45 +00004231 return Visit(T->getReturnType());
Douglas Gregor7731d3f2010-10-13 00:27:52 +00004232}
4233
4234bool UnnamedLocalNoLinkageFinder::VisitFunctionNoProtoType(
4235 const FunctionNoProtoType* T) {
Alp Toker314cc812014-01-25 16:55:45 +00004236 return Visit(T->getReturnType());
Douglas Gregor7731d3f2010-10-13 00:27:52 +00004237}
4238
4239bool UnnamedLocalNoLinkageFinder::VisitUnresolvedUsingType(
4240 const UnresolvedUsingType*) {
4241 return false;
4242}
4243
4244bool UnnamedLocalNoLinkageFinder::VisitTypeOfExprType(const TypeOfExprType*) {
4245 return false;
4246}
4247
4248bool UnnamedLocalNoLinkageFinder::VisitTypeOfType(const TypeOfType* T) {
4249 return Visit(T->getUnderlyingType());
4250}
4251
4252bool UnnamedLocalNoLinkageFinder::VisitDecltypeType(const DecltypeType*) {
4253 return false;
4254}
4255
Alexis Hunte852b102011-05-24 22:41:36 +00004256bool UnnamedLocalNoLinkageFinder::VisitUnaryTransformType(
4257 const UnaryTransformType*) {
4258 return false;
4259}
4260
Richard Smith30482bc2011-02-20 03:19:35 +00004261bool UnnamedLocalNoLinkageFinder::VisitAutoType(const AutoType *T) {
4262 return Visit(T->getDeducedType());
4263}
4264
Douglas Gregor7731d3f2010-10-13 00:27:52 +00004265bool UnnamedLocalNoLinkageFinder::VisitRecordType(const RecordType* T) {
4266 return VisitTagDecl(T->getDecl());
4267}
4268
4269bool UnnamedLocalNoLinkageFinder::VisitEnumType(const EnumType* T) {
4270 return VisitTagDecl(T->getDecl());
4271}
4272
4273bool UnnamedLocalNoLinkageFinder::VisitTemplateTypeParmType(
4274 const TemplateTypeParmType*) {
4275 return false;
4276}
4277
Douglas Gregorada4b792011-01-14 02:55:32 +00004278bool UnnamedLocalNoLinkageFinder::VisitSubstTemplateTypeParmPackType(
4279 const SubstTemplateTypeParmPackType *) {
4280 return false;
4281}
4282
Douglas Gregor7731d3f2010-10-13 00:27:52 +00004283bool UnnamedLocalNoLinkageFinder::VisitTemplateSpecializationType(
4284 const TemplateSpecializationType*) {
4285 return false;
4286}
4287
4288bool UnnamedLocalNoLinkageFinder::VisitInjectedClassNameType(
4289 const InjectedClassNameType* T) {
4290 return VisitTagDecl(T->getDecl());
4291}
4292
4293bool UnnamedLocalNoLinkageFinder::VisitDependentNameType(
4294 const DependentNameType* T) {
4295 return VisitNestedNameSpecifier(T->getQualifier());
4296}
4297
4298bool UnnamedLocalNoLinkageFinder::VisitDependentTemplateSpecializationType(
4299 const DependentTemplateSpecializationType* T) {
4300 return VisitNestedNameSpecifier(T->getQualifier());
4301}
4302
Douglas Gregord2fa7662010-12-20 02:24:11 +00004303bool UnnamedLocalNoLinkageFinder::VisitPackExpansionType(
4304 const PackExpansionType* T) {
4305 return Visit(T->getPattern());
4306}
4307
Douglas Gregor7731d3f2010-10-13 00:27:52 +00004308bool UnnamedLocalNoLinkageFinder::VisitObjCObjectType(const ObjCObjectType *) {
4309 return false;
4310}
4311
4312bool UnnamedLocalNoLinkageFinder::VisitObjCInterfaceType(
4313 const ObjCInterfaceType *) {
4314 return false;
4315}
4316
4317bool UnnamedLocalNoLinkageFinder::VisitObjCObjectPointerType(
4318 const ObjCObjectPointerType *) {
4319 return false;
4320}
4321
Eli Friedman0dfb8892011-10-06 23:00:33 +00004322bool UnnamedLocalNoLinkageFinder::VisitAtomicType(const AtomicType* T) {
4323 return Visit(T->getValueType());
4324}
4325
Xiuli Pan9c14e282016-01-09 12:53:17 +00004326bool UnnamedLocalNoLinkageFinder::VisitPipeType(const PipeType* T) {
4327 return false;
4328}
4329
Douglas Gregor7731d3f2010-10-13 00:27:52 +00004330bool UnnamedLocalNoLinkageFinder::VisitTagDecl(const TagDecl *Tag) {
4331 if (Tag->getDeclContext()->isFunctionOrMethod()) {
Richard Smith0bf8a4922011-10-18 20:49:44 +00004332 S.Diag(SR.getBegin(),
Richard Smith2bf7fdb2013-01-02 11:42:31 +00004333 S.getLangOpts().CPlusPlus11 ?
Richard Smith0bf8a4922011-10-18 20:49:44 +00004334 diag::warn_cxx98_compat_template_arg_local_type :
4335 diag::ext_template_arg_local_type)
Douglas Gregor7731d3f2010-10-13 00:27:52 +00004336 << S.Context.getTypeDeclType(Tag) << SR;
4337 return true;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004338 }
4339
John McCall5ea95772013-03-09 00:54:27 +00004340 if (!Tag->hasNameForLinkage()) {
Richard Smith0bf8a4922011-10-18 20:49:44 +00004341 S.Diag(SR.getBegin(),
Richard Smith2bf7fdb2013-01-02 11:42:31 +00004342 S.getLangOpts().CPlusPlus11 ?
Richard Smith0bf8a4922011-10-18 20:49:44 +00004343 diag::warn_cxx98_compat_template_arg_unnamed_type :
4344 diag::ext_template_arg_unnamed_type) << SR;
Douglas Gregor7731d3f2010-10-13 00:27:52 +00004345 S.Diag(Tag->getLocation(), diag::note_template_unnamed_type_here);
4346 return true;
4347 }
4348
4349 return false;
4350}
4351
4352bool UnnamedLocalNoLinkageFinder::VisitNestedNameSpecifier(
4353 NestedNameSpecifier *NNS) {
4354 if (NNS->getPrefix() && VisitNestedNameSpecifier(NNS->getPrefix()))
4355 return true;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004356
Douglas Gregor7731d3f2010-10-13 00:27:52 +00004357 switch (NNS->getKind()) {
4358 case NestedNameSpecifier::Identifier:
4359 case NestedNameSpecifier::Namespace:
Douglas Gregor7b26ff92011-02-24 02:36:08 +00004360 case NestedNameSpecifier::NamespaceAlias:
Douglas Gregor7731d3f2010-10-13 00:27:52 +00004361 case NestedNameSpecifier::Global:
Nikola Smiljanic67860242014-09-26 00:28:20 +00004362 case NestedNameSpecifier::Super:
Douglas Gregor7731d3f2010-10-13 00:27:52 +00004363 return false;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004364
Douglas Gregor7731d3f2010-10-13 00:27:52 +00004365 case NestedNameSpecifier::TypeSpec:
4366 case NestedNameSpecifier::TypeSpecWithTemplate:
4367 return Visit(QualType(NNS->getAsType(), 0));
4368 }
David Blaikie8a40f702012-01-17 06:56:22 +00004369 llvm_unreachable("Invalid NestedNameSpecifier::Kind!");
Douglas Gregor7731d3f2010-10-13 00:27:52 +00004370}
4371
Douglas Gregord32e0282009-02-09 23:23:08 +00004372/// \brief Check a template argument against its corresponding
4373/// template type parameter.
4374///
4375/// This routine implements the semantics of C++ [temp.arg.type]. It
4376/// returns true if an error occurred, and false otherwise.
Mike Stump11289f42009-09-09 15:08:12 +00004377bool Sema::CheckTemplateArgument(TemplateTypeParmDecl *Param,
John McCallbcd03502009-12-07 02:54:59 +00004378 TypeSourceInfo *ArgInfo) {
4379 assert(ArgInfo && "invalid TypeSourceInfo");
John McCall0ad16662009-10-29 08:12:44 +00004380 QualType Arg = ArgInfo->getType();
Douglas Gregor959d5a02010-05-22 16:17:30 +00004381 SourceRange SR = ArgInfo->getTypeLoc().getSourceRange();
Chandler Carruth9bb67f42010-09-03 21:12:34 +00004382
4383 if (Arg->isVariablyModifiedType()) {
4384 return Diag(SR.getBegin(), diag::err_variably_modified_template_arg) << Arg;
Douglas Gregor8364e6b2009-12-21 23:17:24 +00004385 } else if (Context.hasSameUnqualifiedType(Arg, Context.OverloadTy)) {
Douglas Gregor8364e6b2009-12-21 23:17:24 +00004386 return Diag(SR.getBegin(), diag::err_template_arg_overload_type) << SR;
Douglas Gregord32e0282009-02-09 23:23:08 +00004387 }
4388
Douglas Gregor7731d3f2010-10-13 00:27:52 +00004389 // C++03 [temp.arg.type]p2:
4390 // A local type, a type with no linkage, an unnamed type or a type
4391 // compounded from any of these types shall not be used as a
4392 // template-argument for a template type-parameter.
4393 //
Richard Smith0bf8a4922011-10-18 20:49:44 +00004394 // C++11 allows these, and even in C++03 we allow them as an extension with
Douglas Gregor7731d3f2010-10-13 00:27:52 +00004395 // a warning.
Alp Tokerd4a3f0e2014-06-15 23:30:39 +00004396 bool NeedsCheck;
4397 if (LangOpts.CPlusPlus11)
4398 NeedsCheck =
4399 !Diags.isIgnored(diag::warn_cxx98_compat_template_arg_unnamed_type,
4400 SR.getBegin()) ||
4401 !Diags.isIgnored(diag::warn_cxx98_compat_template_arg_local_type,
4402 SR.getBegin());
4403 else
4404 NeedsCheck = Arg->hasUnnamedOrLocalType();
4405
4406 if (NeedsCheck) {
Douglas Gregor7731d3f2010-10-13 00:27:52 +00004407 UnnamedLocalNoLinkageFinder Finder(*this, SR);
4408 (void)Finder.Visit(Context.getCanonicalType(Arg));
4409 }
4410
Douglas Gregord32e0282009-02-09 23:23:08 +00004411 return false;
4412}
4413
Douglas Gregor20fdef32012-04-10 17:08:25 +00004414enum NullPointerValueKind {
4415 NPV_NotNullPointer,
4416 NPV_NullPointer,
4417 NPV_Error
4418};
4419
4420/// \brief Determine whether the given template argument is a null pointer
4421/// value of the appropriate type.
4422static NullPointerValueKind
4423isNullPointerValueTemplateArgument(Sema &S, NonTypeTemplateParmDecl *Param,
4424 QualType ParamType, Expr *Arg) {
4425 if (Arg->isValueDependent() || Arg->isTypeDependent())
4426 return NPV_NotNullPointer;
David Majnemer69c3ddc2015-09-11 20:18:09 +00004427
Richard Smithdb0ac552015-12-18 22:40:25 +00004428 if (!S.isCompleteType(Arg->getExprLoc(), ParamType))
David Majnemerb54368c2015-09-11 20:55:29 +00004429 llvm_unreachable(
4430 "Incomplete parameter type in isNullPointerValueTemplateArgument!");
David Majnemer69c3ddc2015-09-11 20:18:09 +00004431
David Majnemer5c734ad2014-08-14 00:49:23 +00004432 if (!S.getLangOpts().CPlusPlus11)
Douglas Gregor20fdef32012-04-10 17:08:25 +00004433 return NPV_NotNullPointer;
4434
4435 // Determine whether we have a constant expression.
Douglas Gregor350880c2012-04-10 19:03:30 +00004436 ExprResult ArgRV = S.DefaultFunctionArrayConversion(Arg);
4437 if (ArgRV.isInvalid())
4438 return NPV_Error;
Nikola Smiljanic01a75982014-05-29 10:55:11 +00004439 Arg = ArgRV.get();
Douglas Gregor350880c2012-04-10 19:03:30 +00004440
Douglas Gregor20fdef32012-04-10 17:08:25 +00004441 Expr::EvalResult EvalResult;
Dmitri Gribenkof8579502013-01-12 19:30:44 +00004442 SmallVector<PartialDiagnosticAt, 8> Notes;
Douglas Gregor350880c2012-04-10 19:03:30 +00004443 EvalResult.Diag = &Notes;
Douglas Gregor20fdef32012-04-10 17:08:25 +00004444 if (!Arg->EvaluateAsRValue(EvalResult, S.Context) ||
Douglas Gregor350880c2012-04-10 19:03:30 +00004445 EvalResult.HasSideEffects) {
4446 SourceLocation DiagLoc = Arg->getExprLoc();
4447
4448 // If our only note is the usual "invalid subexpression" note, just point
4449 // the caret at its location rather than producing an essentially
4450 // redundant note.
4451 if (Notes.size() == 1 && Notes[0].second.getDiagID() ==
4452 diag::note_invalid_subexpr_in_const_expr) {
4453 DiagLoc = Notes[0].first;
4454 Notes.clear();
4455 }
4456
4457 S.Diag(DiagLoc, diag::err_template_arg_not_address_constant)
4458 << Arg->getType() << Arg->getSourceRange();
4459 for (unsigned I = 0, N = Notes.size(); I != N; ++I)
4460 S.Diag(Notes[I].first, Notes[I].second);
4461
4462 S.Diag(Param->getLocation(), diag::note_template_param_here);
4463 return NPV_Error;
4464 }
Douglas Gregor20fdef32012-04-10 17:08:25 +00004465
4466 // C++11 [temp.arg.nontype]p1:
4467 // - an address constant expression of type std::nullptr_t
4468 if (Arg->getType()->isNullPtrType())
4469 return NPV_NullPointer;
4470
4471 // - a constant expression that evaluates to a null pointer value (4.10); or
4472 // - a constant expression that evaluates to a null member pointer value
4473 // (4.11); or
4474 if ((EvalResult.Val.isLValue() && !EvalResult.Val.getLValueBase()) ||
4475 (EvalResult.Val.isMemberPointer() &&
4476 !EvalResult.Val.getMemberPointerDecl())) {
4477 // If our expression has an appropriate type, we've succeeded.
4478 bool ObjCLifetimeConversion;
4479 if (S.Context.hasSameUnqualifiedType(Arg->getType(), ParamType) ||
4480 S.IsQualificationConversion(Arg->getType(), ParamType, false,
4481 ObjCLifetimeConversion))
4482 return NPV_NullPointer;
4483
4484 // The types didn't match, but we know we got a null pointer; complain,
4485 // then recover as if the types were correct.
4486 S.Diag(Arg->getExprLoc(), diag::err_template_arg_wrongtype_null_constant)
4487 << Arg->getType() << ParamType << Arg->getSourceRange();
4488 S.Diag(Param->getLocation(), diag::note_template_param_here);
4489 return NPV_NullPointer;
4490 }
4491
4492 // If we don't have a null pointer value, but we do have a NULL pointer
4493 // constant, suggest a cast to the appropriate type.
4494 if (Arg->isNullPointerConstant(S.Context, Expr::NPC_NeverValueDependent)) {
4495 std::string Code = "static_cast<" + ParamType.getAsString() + ">(";
4496 S.Diag(Arg->getExprLoc(), diag::err_template_arg_untyped_null_constant)
Alp Tokerb6cc5922014-05-03 03:45:55 +00004497 << ParamType << FixItHint::CreateInsertion(Arg->getLocStart(), Code)
4498 << FixItHint::CreateInsertion(S.getLocForEndOfToken(Arg->getLocEnd()),
4499 ")");
Douglas Gregor20fdef32012-04-10 17:08:25 +00004500 S.Diag(Param->getLocation(), diag::note_template_param_here);
4501 return NPV_NullPointer;
4502 }
4503
4504 // FIXME: If we ever want to support general, address-constant expressions
4505 // as non-type template arguments, we should return the ExprResult here to
4506 // be interpreted by the caller.
4507 return NPV_NotNullPointer;
4508}
4509
David Majnemer61c39a12013-08-23 05:39:39 +00004510/// \brief Checks whether the given template argument is compatible with its
4511/// template parameter.
4512static bool CheckTemplateArgumentIsCompatibleWithParameter(
4513 Sema &S, NonTypeTemplateParmDecl *Param, QualType ParamType, Expr *ArgIn,
4514 Expr *Arg, QualType ArgType) {
4515 bool ObjCLifetimeConversion;
4516 if (ParamType->isPointerType() &&
4517 !ParamType->getAs<PointerType>()->getPointeeType()->isFunctionType() &&
4518 S.IsQualificationConversion(ArgType, ParamType, false,
4519 ObjCLifetimeConversion)) {
4520 // For pointer-to-object types, qualification conversions are
4521 // permitted.
4522 } else {
4523 if (const ReferenceType *ParamRef = ParamType->getAs<ReferenceType>()) {
4524 if (!ParamRef->getPointeeType()->isFunctionType()) {
4525 // C++ [temp.arg.nontype]p5b3:
4526 // For a non-type template-parameter of type reference to
4527 // object, no conversions apply. The type referred to by the
4528 // reference may be more cv-qualified than the (otherwise
4529 // identical) type of the template- argument. The
4530 // template-parameter is bound directly to the
4531 // template-argument, which shall be an lvalue.
4532
4533 // FIXME: Other qualifiers?
4534 unsigned ParamQuals = ParamRef->getPointeeType().getCVRQualifiers();
4535 unsigned ArgQuals = ArgType.getCVRQualifiers();
4536
4537 if ((ParamQuals | ArgQuals) != ParamQuals) {
4538 S.Diag(Arg->getLocStart(),
4539 diag::err_template_arg_ref_bind_ignores_quals)
4540 << ParamType << Arg->getType() << Arg->getSourceRange();
4541 S.Diag(Param->getLocation(), diag::note_template_param_here);
4542 return true;
4543 }
4544 }
4545 }
4546
4547 // At this point, the template argument refers to an object or
4548 // function with external linkage. We now need to check whether the
4549 // argument and parameter types are compatible.
4550 if (!S.Context.hasSameUnqualifiedType(ArgType,
4551 ParamType.getNonReferenceType())) {
4552 // We can't perform this conversion or binding.
4553 if (ParamType->isReferenceType())
4554 S.Diag(Arg->getLocStart(), diag::err_template_arg_no_ref_bind)
4555 << ParamType << ArgIn->getType() << Arg->getSourceRange();
4556 else
4557 S.Diag(Arg->getLocStart(), diag::err_template_arg_not_convertible)
4558 << ArgIn->getType() << ParamType << Arg->getSourceRange();
4559 S.Diag(Param->getLocation(), diag::note_template_param_here);
4560 return true;
4561 }
4562 }
4563
4564 return false;
4565}
4566
Douglas Gregorccb07762009-02-11 19:52:55 +00004567/// \brief Checks whether the given template argument is the address
4568/// of an object or function according to C++ [temp.arg.nontype]p1.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004569static bool
Douglas Gregorb242683d2010-04-01 18:32:35 +00004570CheckTemplateArgumentAddressOfObjectOrFunction(Sema &S,
4571 NonTypeTemplateParmDecl *Param,
4572 QualType ParamType,
4573 Expr *ArgIn,
4574 TemplateArgument &Converted) {
Douglas Gregorccb07762009-02-11 19:52:55 +00004575 bool Invalid = false;
Douglas Gregorb242683d2010-04-01 18:32:35 +00004576 Expr *Arg = ArgIn;
4577 QualType ArgType = Arg->getType();
Douglas Gregorccb07762009-02-11 19:52:55 +00004578
Douglas Gregorb242683d2010-04-01 18:32:35 +00004579 bool AddressTaken = false;
4580 SourceLocation AddrOpLoc;
David Majnemer61c39a12013-08-23 05:39:39 +00004581 if (S.getLangOpts().MicrosoftExt) {
4582 // Microsoft Visual C++ strips all casts, allows an arbitrary number of
4583 // dereference and address-of operators.
4584 Arg = Arg->IgnoreParenCasts();
4585
4586 bool ExtWarnMSTemplateArg = false;
4587 UnaryOperatorKind FirstOpKind;
4588 SourceLocation FirstOpLoc;
4589 while (UnaryOperator *UnOp = dyn_cast<UnaryOperator>(Arg)) {
4590 UnaryOperatorKind UnOpKind = UnOp->getOpcode();
4591 if (UnOpKind == UO_Deref)
4592 ExtWarnMSTemplateArg = true;
4593 if (UnOpKind == UO_AddrOf || UnOpKind == UO_Deref) {
4594 Arg = UnOp->getSubExpr()->IgnoreParenCasts();
4595 if (!AddrOpLoc.isValid()) {
4596 FirstOpKind = UnOpKind;
4597 FirstOpLoc = UnOp->getOperatorLoc();
4598 }
4599 } else
4600 break;
Douglas Gregorb242683d2010-04-01 18:32:35 +00004601 }
David Majnemer61c39a12013-08-23 05:39:39 +00004602 if (FirstOpLoc.isValid()) {
4603 if (ExtWarnMSTemplateArg)
4604 S.Diag(ArgIn->getLocStart(), diag::ext_ms_deref_template_argument)
4605 << ArgIn->getSourceRange();
John McCall7c454bb2011-07-15 05:09:51 +00004606
David Majnemer61c39a12013-08-23 05:39:39 +00004607 if (FirstOpKind == UO_AddrOf)
4608 AddressTaken = true;
4609 else if (Arg->getType()->isPointerType()) {
4610 // We cannot let pointers get dereferenced here, that is obviously not a
4611 // constant expression.
4612 assert(FirstOpKind == UO_Deref);
4613 S.Diag(Arg->getLocStart(), diag::err_template_arg_not_decl_ref)
4614 << Arg->getSourceRange();
4615 }
4616 }
4617 } else {
4618 // See through any implicit casts we added to fix the type.
4619 Arg = Arg->IgnoreImpCasts();
John McCall7c454bb2011-07-15 05:09:51 +00004620
David Majnemer61c39a12013-08-23 05:39:39 +00004621 // C++ [temp.arg.nontype]p1:
4622 //
4623 // A template-argument for a non-type, non-template
4624 // template-parameter shall be one of: [...]
4625 //
4626 // -- the address of an object or function with external
4627 // linkage, including function templates and function
4628 // template-ids but excluding non-static class members,
4629 // expressed as & id-expression where the & is optional if
4630 // the name refers to a function or array, or if the
4631 // corresponding template-parameter is a reference; or
4632
4633 // In C++98/03 mode, give an extension warning on any extra parentheses.
4634 // See http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_defects.html#773
4635 bool ExtraParens = false;
4636 while (ParenExpr *Parens = dyn_cast<ParenExpr>(Arg)) {
4637 if (!Invalid && !ExtraParens) {
4638 S.Diag(Arg->getLocStart(),
4639 S.getLangOpts().CPlusPlus11
4640 ? diag::warn_cxx98_compat_template_arg_extra_parens
4641 : diag::ext_template_arg_extra_parens)
4642 << Arg->getSourceRange();
4643 ExtraParens = true;
4644 }
4645
4646 Arg = Parens->getSubExpr();
4647 }
4648
4649 while (SubstNonTypeTemplateParmExpr *subst =
4650 dyn_cast<SubstNonTypeTemplateParmExpr>(Arg))
4651 Arg = subst->getReplacement()->IgnoreImpCasts();
4652
4653 if (UnaryOperator *UnOp = dyn_cast<UnaryOperator>(Arg)) {
4654 if (UnOp->getOpcode() == UO_AddrOf) {
4655 Arg = UnOp->getSubExpr();
4656 AddressTaken = true;
4657 AddrOpLoc = UnOp->getOperatorLoc();
4658 }
4659 }
4660
4661 while (SubstNonTypeTemplateParmExpr *subst =
4662 dyn_cast<SubstNonTypeTemplateParmExpr>(Arg))
4663 Arg = subst->getReplacement()->IgnoreImpCasts();
4664 }
John McCall7c454bb2011-07-15 05:09:51 +00004665
David Majnemer07910d62014-06-26 07:48:46 +00004666 DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(Arg);
4667 ValueDecl *Entity = DRE ? DRE->getDecl() : nullptr;
4668
4669 // If our parameter has pointer type, check for a null template value.
4670 if (ParamType->isPointerType() || ParamType->isNullPtrType()) {
4671 NullPointerValueKind NPV;
4672 // dllimport'd entities aren't constant but are available inside of template
4673 // arguments.
4674 if (Entity && Entity->hasAttr<DLLImportAttr>())
4675 NPV = NPV_NotNullPointer;
4676 else
4677 NPV = isNullPointerValueTemplateArgument(S, Param, ParamType, ArgIn);
4678 switch (NPV) {
4679 case NPV_NullPointer:
4680 S.Diag(Arg->getExprLoc(), diag::warn_cxx98_compat_template_arg_null);
Richard Smith78bb36f2014-07-24 02:27:39 +00004681 Converted = TemplateArgument(S.Context.getCanonicalType(ParamType),
4682 /*isNullPtr=*/true);
David Majnemer07910d62014-06-26 07:48:46 +00004683 return false;
4684
4685 case NPV_Error:
4686 return true;
4687
4688 case NPV_NotNullPointer:
4689 break;
4690 }
4691 }
4692
Chandler Carruth724a8a12010-01-31 10:01:20 +00004693 // Stop checking the precise nature of the argument if it is value dependent,
4694 // it should be checked when instantiated.
Douglas Gregorb242683d2010-04-01 18:32:35 +00004695 if (Arg->isValueDependent()) {
John McCallc3007a22010-10-26 07:05:15 +00004696 Converted = TemplateArgument(ArgIn);
Chandler Carruth724a8a12010-01-31 10:01:20 +00004697 return false;
Douglas Gregorb242683d2010-04-01 18:32:35 +00004698 }
David Majnemer61c39a12013-08-23 05:39:39 +00004699
4700 if (isa<CXXUuidofExpr>(Arg)) {
4701 if (CheckTemplateArgumentIsCompatibleWithParameter(S, Param, ParamType,
4702 ArgIn, Arg, ArgType))
4703 return true;
4704
4705 Converted = TemplateArgument(ArgIn);
4706 return false;
4707 }
4708
Douglas Gregor31f55dc2012-04-06 22:40:38 +00004709 if (!DRE) {
4710 S.Diag(Arg->getLocStart(), diag::err_template_arg_not_decl_ref)
4711 << Arg->getSourceRange();
4712 S.Diag(Param->getLocation(), diag::note_template_param_here);
4713 return true;
4714 }
Chandler Carruth724a8a12010-01-31 10:01:20 +00004715
Douglas Gregorccb07762009-02-11 19:52:55 +00004716 // Cannot refer to non-static data members
David Majnemer6bedcfa2013-10-26 06:12:44 +00004717 if (isa<FieldDecl>(Entity) || isa<IndirectFieldDecl>(Entity)) {
Daniel Dunbar62ee6412012-03-09 18:35:03 +00004718 S.Diag(Arg->getLocStart(), diag::err_template_arg_field)
David Majnemer6bedcfa2013-10-26 06:12:44 +00004719 << Entity << Arg->getSourceRange();
Douglas Gregorb242683d2010-04-01 18:32:35 +00004720 S.Diag(Param->getLocation(), diag::note_template_param_here);
4721 return true;
4722 }
Douglas Gregorccb07762009-02-11 19:52:55 +00004723
4724 // Cannot refer to non-static member functions
Richard Smith9380e0e2012-04-04 21:11:30 +00004725 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(Entity)) {
Douglas Gregorb242683d2010-04-01 18:32:35 +00004726 if (!Method->isStatic()) {
Daniel Dunbar62ee6412012-03-09 18:35:03 +00004727 S.Diag(Arg->getLocStart(), diag::err_template_arg_method)
Douglas Gregorccb07762009-02-11 19:52:55 +00004728 << Method << Arg->getSourceRange();
Douglas Gregorb242683d2010-04-01 18:32:35 +00004729 S.Diag(Param->getLocation(), diag::note_template_param_here);
4730 return true;
4731 }
Richard Smith9380e0e2012-04-04 21:11:30 +00004732 }
Mike Stump11289f42009-09-09 15:08:12 +00004733
Richard Smith9380e0e2012-04-04 21:11:30 +00004734 FunctionDecl *Func = dyn_cast<FunctionDecl>(Entity);
4735 VarDecl *Var = dyn_cast<VarDecl>(Entity);
Douglas Gregorccb07762009-02-11 19:52:55 +00004736
Richard Smith9380e0e2012-04-04 21:11:30 +00004737 // A non-type template argument must refer to an object or function.
4738 if (!Func && !Var) {
4739 // We found something, but we don't know specifically what it is.
4740 S.Diag(Arg->getLocStart(), diag::err_template_arg_not_object_or_func)
4741 << Arg->getSourceRange();
4742 S.Diag(DRE->getDecl()->getLocation(), diag::note_template_arg_refers_here);
4743 return true;
4744 }
Douglas Gregorccb07762009-02-11 19:52:55 +00004745
Richard Smith9380e0e2012-04-04 21:11:30 +00004746 // Address / reference template args must have external linkage in C++98.
Rafael Espindola3ae00052013-05-13 00:12:11 +00004747 if (Entity->getFormalLinkage() == InternalLinkage) {
Richard Smith2bf7fdb2013-01-02 11:42:31 +00004748 S.Diag(Arg->getLocStart(), S.getLangOpts().CPlusPlus11 ?
Richard Smith9380e0e2012-04-04 21:11:30 +00004749 diag::warn_cxx98_compat_template_arg_object_internal :
4750 diag::ext_template_arg_object_internal)
4751 << !Func << Entity << Arg->getSourceRange();
4752 S.Diag(Entity->getLocation(), diag::note_template_arg_internal_object)
4753 << !Func;
Rafael Espindola3ae00052013-05-13 00:12:11 +00004754 } else if (!Entity->hasLinkage()) {
Richard Smith9380e0e2012-04-04 21:11:30 +00004755 S.Diag(Arg->getLocStart(), diag::err_template_arg_object_no_linkage)
4756 << !Func << Entity << Arg->getSourceRange();
4757 S.Diag(Entity->getLocation(), diag::note_template_arg_internal_object)
4758 << !Func;
4759 return true;
4760 }
4761
4762 if (Func) {
Douglas Gregorb242683d2010-04-01 18:32:35 +00004763 // If the template parameter has pointer type, the function decays.
4764 if (ParamType->isPointerType() && !AddressTaken)
4765 ArgType = S.Context.getPointerType(Func->getType());
4766 else if (AddressTaken && ParamType->isReferenceType()) {
4767 // If we originally had an address-of operator, but the
4768 // parameter has reference type, complain and (if things look
4769 // like they will work) drop the address-of operator.
4770 if (!S.Context.hasSameUnqualifiedType(Func->getType(),
4771 ParamType.getNonReferenceType())) {
4772 S.Diag(AddrOpLoc, diag::err_template_arg_address_of_non_pointer)
4773 << ParamType;
4774 S.Diag(Param->getLocation(), diag::note_template_param_here);
4775 return true;
4776 }
4777
4778 S.Diag(AddrOpLoc, diag::err_template_arg_address_of_non_pointer)
4779 << ParamType
4780 << FixItHint::CreateRemoval(AddrOpLoc);
4781 S.Diag(Param->getLocation(), diag::note_template_param_here);
4782
4783 ArgType = Func->getType();
4784 }
Richard Smith9380e0e2012-04-04 21:11:30 +00004785 } else {
Douglas Gregorb242683d2010-04-01 18:32:35 +00004786 // A value of reference type is not an object.
4787 if (Var->getType()->isReferenceType()) {
Daniel Dunbar62ee6412012-03-09 18:35:03 +00004788 S.Diag(Arg->getLocStart(),
Douglas Gregorb242683d2010-04-01 18:32:35 +00004789 diag::err_template_arg_reference_var)
4790 << Var->getType() << Arg->getSourceRange();
4791 S.Diag(Param->getLocation(), diag::note_template_param_here);
4792 return true;
4793 }
4794
Richard Smith9380e0e2012-04-04 21:11:30 +00004795 // A template argument must have static storage duration.
Richard Smithfd3834f2013-04-13 02:43:54 +00004796 if (Var->getTLSKind()) {
Richard Smith9380e0e2012-04-04 21:11:30 +00004797 S.Diag(Arg->getLocStart(), diag::err_template_arg_thread_local)
4798 << Arg->getSourceRange();
4799 S.Diag(Var->getLocation(), diag::note_template_arg_refers_here);
4800 return true;
4801 }
Douglas Gregorb242683d2010-04-01 18:32:35 +00004802
4803 // If the template parameter has pointer type, we must have taken
4804 // the address of this object.
4805 if (ParamType->isReferenceType()) {
4806 if (AddressTaken) {
4807 // If we originally had an address-of operator, but the
4808 // parameter has reference type, complain and (if things look
4809 // like they will work) drop the address-of operator.
4810 if (!S.Context.hasSameUnqualifiedType(Var->getType(),
4811 ParamType.getNonReferenceType())) {
4812 S.Diag(AddrOpLoc, diag::err_template_arg_address_of_non_pointer)
4813 << ParamType;
4814 S.Diag(Param->getLocation(), diag::note_template_param_here);
4815 return true;
4816 }
4817
4818 S.Diag(AddrOpLoc, diag::err_template_arg_address_of_non_pointer)
4819 << ParamType
4820 << FixItHint::CreateRemoval(AddrOpLoc);
4821 S.Diag(Param->getLocation(), diag::note_template_param_here);
4822
4823 ArgType = Var->getType();
4824 }
4825 } else if (!AddressTaken && ParamType->isPointerType()) {
4826 if (Var->getType()->isArrayType()) {
4827 // Array-to-pointer decay.
4828 ArgType = S.Context.getArrayDecayedType(Var->getType());
4829 } else {
4830 // If the template parameter has pointer type but the address of
4831 // this object was not taken, complain and (possibly) recover by
4832 // taking the address of the entity.
4833 ArgType = S.Context.getPointerType(Var->getType());
4834 if (!S.Context.hasSameUnqualifiedType(ArgType, ParamType)) {
4835 S.Diag(Arg->getLocStart(), diag::err_template_arg_not_address_of)
4836 << ParamType;
4837 S.Diag(Param->getLocation(), diag::note_template_param_here);
4838 return true;
4839 }
4840
4841 S.Diag(Arg->getLocStart(), diag::err_template_arg_not_address_of)
4842 << ParamType
4843 << FixItHint::CreateInsertion(Arg->getLocStart(), "&");
4844
4845 S.Diag(Param->getLocation(), diag::note_template_param_here);
4846 }
4847 }
Douglas Gregorccb07762009-02-11 19:52:55 +00004848 }
Mike Stump11289f42009-09-09 15:08:12 +00004849
David Majnemer61c39a12013-08-23 05:39:39 +00004850 if (CheckTemplateArgumentIsCompatibleWithParameter(S, Param, ParamType, ArgIn,
4851 Arg, ArgType))
4852 return true;
Douglas Gregorb242683d2010-04-01 18:32:35 +00004853
4854 // Create the template argument.
David Blaikie0f62c8d2014-10-16 04:21:25 +00004855 Converted =
4856 TemplateArgument(cast<ValueDecl>(Entity->getCanonicalDecl()), ParamType);
Nick Lewycky45b50522013-02-02 00:25:55 +00004857 S.MarkAnyDeclReferenced(Arg->getLocStart(), Entity, false);
Douglas Gregorb242683d2010-04-01 18:32:35 +00004858 return false;
Douglas Gregorccb07762009-02-11 19:52:55 +00004859}
4860
4861/// \brief Checks whether the given template argument is a pointer to
4862/// member constant according to C++ [temp.arg.nontype]p1.
Douglas Gregor20fdef32012-04-10 17:08:25 +00004863static bool CheckTemplateArgumentPointerToMember(Sema &S,
4864 NonTypeTemplateParmDecl *Param,
4865 QualType ParamType,
4866 Expr *&ResultArg,
4867 TemplateArgument &Converted) {
Douglas Gregorccb07762009-02-11 19:52:55 +00004868 bool Invalid = false;
4869
Douglas Gregor20fdef32012-04-10 17:08:25 +00004870 // Check for a null pointer value.
4871 Expr *Arg = ResultArg;
4872 switch (isNullPointerValueTemplateArgument(S, Param, ParamType, Arg)) {
4873 case NPV_Error:
4874 return true;
4875 case NPV_NullPointer:
Richard Smithbc8c5b52012-04-26 01:51:03 +00004876 S.Diag(Arg->getExprLoc(), diag::warn_cxx98_compat_template_arg_null);
Richard Smith78bb36f2014-07-24 02:27:39 +00004877 Converted = TemplateArgument(S.Context.getCanonicalType(ParamType),
4878 /*isNullPtr*/true);
Douglas Gregor20fdef32012-04-10 17:08:25 +00004879 return false;
4880 case NPV_NotNullPointer:
4881 break;
4882 }
4883
4884 bool ObjCLifetimeConversion;
4885 if (S.IsQualificationConversion(Arg->getType(),
4886 ParamType.getNonReferenceType(),
4887 false, ObjCLifetimeConversion)) {
4888 Arg = S.ImpCastExprToType(Arg, ParamType, CK_NoOp,
Nikola Smiljanic01a75982014-05-29 10:55:11 +00004889 Arg->getValueKind()).get();
Douglas Gregor20fdef32012-04-10 17:08:25 +00004890 ResultArg = Arg;
4891 } else if (!S.Context.hasSameUnqualifiedType(Arg->getType(),
4892 ParamType.getNonReferenceType())) {
4893 // We can't perform this conversion.
4894 S.Diag(Arg->getLocStart(), diag::err_template_arg_not_convertible)
4895 << Arg->getType() << ParamType << Arg->getSourceRange();
4896 S.Diag(Param->getLocation(), diag::note_template_param_here);
4897 return true;
4898 }
4899
Douglas Gregorccb07762009-02-11 19:52:55 +00004900 // See through any implicit casts we added to fix the type.
Eli Friedman06ed2a52009-10-20 08:27:19 +00004901 while (ImplicitCastExpr *Cast = dyn_cast<ImplicitCastExpr>(Arg))
Douglas Gregorccb07762009-02-11 19:52:55 +00004902 Arg = Cast->getSubExpr();
4903
4904 // C++ [temp.arg.nontype]p1:
Mike Stump11289f42009-09-09 15:08:12 +00004905 //
Douglas Gregorccb07762009-02-11 19:52:55 +00004906 // A template-argument for a non-type, non-template
4907 // template-parameter shall be one of: [...]
4908 //
4909 // -- a pointer to member expressed as described in 5.3.1.
Craig Topperc3ec1492014-05-26 06:22:03 +00004910 DeclRefExpr *DRE = nullptr;
Douglas Gregorccb07762009-02-11 19:52:55 +00004911
Abramo Bagnara6a0c4092010-09-13 06:06:58 +00004912 // In C++98/03 mode, give an extension warning on any extra parentheses.
4913 // See http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_defects.html#773
4914 bool ExtraParens = false;
Douglas Gregorccb07762009-02-11 19:52:55 +00004915 while (ParenExpr *Parens = dyn_cast<ParenExpr>(Arg)) {
Richard Smith0bf8a4922011-10-18 20:49:44 +00004916 if (!Invalid && !ExtraParens) {
Douglas Gregor20fdef32012-04-10 17:08:25 +00004917 S.Diag(Arg->getLocStart(),
Richard Smith2bf7fdb2013-01-02 11:42:31 +00004918 S.getLangOpts().CPlusPlus11 ?
Douglas Gregor20fdef32012-04-10 17:08:25 +00004919 diag::warn_cxx98_compat_template_arg_extra_parens :
4920 diag::ext_template_arg_extra_parens)
Douglas Gregorccb07762009-02-11 19:52:55 +00004921 << Arg->getSourceRange();
Abramo Bagnara6a0c4092010-09-13 06:06:58 +00004922 ExtraParens = true;
Douglas Gregorccb07762009-02-11 19:52:55 +00004923 }
4924
4925 Arg = Parens->getSubExpr();
4926 }
4927
John McCall7c454bb2011-07-15 05:09:51 +00004928 while (SubstNonTypeTemplateParmExpr *subst =
4929 dyn_cast<SubstNonTypeTemplateParmExpr>(Arg))
4930 Arg = subst->getReplacement()->IgnoreImpCasts();
4931
Douglas Gregor49ba3ca2009-11-12 18:38:13 +00004932 // A pointer-to-member constant written &Class::member.
4933 if (UnaryOperator *UnOp = dyn_cast<UnaryOperator>(Arg)) {
John McCalle3027922010-08-25 11:45:40 +00004934 if (UnOp->getOpcode() == UO_AddrOf) {
Douglas Gregor4bd90e52009-10-23 18:54:35 +00004935 DRE = dyn_cast<DeclRefExpr>(UnOp->getSubExpr());
4936 if (DRE && !DRE->getQualifier())
Craig Topperc3ec1492014-05-26 06:22:03 +00004937 DRE = nullptr;
Douglas Gregor4bd90e52009-10-23 18:54:35 +00004938 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004939 }
Douglas Gregor49ba3ca2009-11-12 18:38:13 +00004940 // A constant of pointer-to-member type.
4941 else if ((DRE = dyn_cast<DeclRefExpr>(Arg))) {
4942 if (ValueDecl *VD = dyn_cast<ValueDecl>(DRE->getDecl())) {
4943 if (VD->getType()->isMemberPointerType()) {
David Majnemercd053cd2013-12-10 00:40:58 +00004944 if (isa<NonTypeTemplateParmDecl>(VD)) {
Eli Friedmanb826a002012-09-26 02:36:12 +00004945 if (Arg->isTypeDependent() || Arg->isValueDependent()) {
John McCallc3007a22010-10-26 07:05:15 +00004946 Converted = TemplateArgument(Arg);
Eli Friedmanb826a002012-09-26 02:36:12 +00004947 } else {
4948 VD = cast<ValueDecl>(VD->getCanonicalDecl());
David Blaikie0f62c8d2014-10-16 04:21:25 +00004949 Converted = TemplateArgument(VD, ParamType);
Eli Friedmanb826a002012-09-26 02:36:12 +00004950 }
Douglas Gregor49ba3ca2009-11-12 18:38:13 +00004951 return Invalid;
4952 }
4953 }
4954 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004955
Craig Topperc3ec1492014-05-26 06:22:03 +00004956 DRE = nullptr;
Douglas Gregor49ba3ca2009-11-12 18:38:13 +00004957 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004958
Douglas Gregorccb07762009-02-11 19:52:55 +00004959 if (!DRE)
Douglas Gregor20fdef32012-04-10 17:08:25 +00004960 return S.Diag(Arg->getLocStart(),
4961 diag::err_template_arg_not_pointer_to_member_form)
Douglas Gregorccb07762009-02-11 19:52:55 +00004962 << Arg->getSourceRange();
4963
David Majnemer3ac84e62013-10-22 21:56:38 +00004964 if (isa<FieldDecl>(DRE->getDecl()) ||
4965 isa<IndirectFieldDecl>(DRE->getDecl()) ||
4966 isa<CXXMethodDecl>(DRE->getDecl())) {
Douglas Gregorccb07762009-02-11 19:52:55 +00004967 assert((isa<FieldDecl>(DRE->getDecl()) ||
David Majnemer3ac84e62013-10-22 21:56:38 +00004968 isa<IndirectFieldDecl>(DRE->getDecl()) ||
Douglas Gregorccb07762009-02-11 19:52:55 +00004969 !cast<CXXMethodDecl>(DRE->getDecl())->isStatic()) &&
4970 "Only non-static member pointers can make it here");
4971
4972 // Okay: this is the address of a non-static member, and therefore
4973 // a member pointer constant.
Eli Friedmanb826a002012-09-26 02:36:12 +00004974 if (Arg->isTypeDependent() || Arg->isValueDependent()) {
John McCallc3007a22010-10-26 07:05:15 +00004975 Converted = TemplateArgument(Arg);
Eli Friedmanb826a002012-09-26 02:36:12 +00004976 } else {
4977 ValueDecl *D = cast<ValueDecl>(DRE->getDecl()->getCanonicalDecl());
David Blaikie0f62c8d2014-10-16 04:21:25 +00004978 Converted = TemplateArgument(D, ParamType);
Eli Friedmanb826a002012-09-26 02:36:12 +00004979 }
Douglas Gregorccb07762009-02-11 19:52:55 +00004980 return Invalid;
4981 }
4982
4983 // We found something else, but we don't know specifically what it is.
Douglas Gregor20fdef32012-04-10 17:08:25 +00004984 S.Diag(Arg->getLocStart(),
4985 diag::err_template_arg_not_pointer_to_member_form)
4986 << Arg->getSourceRange();
4987 S.Diag(DRE->getDecl()->getLocation(), diag::note_template_arg_refers_here);
Douglas Gregorccb07762009-02-11 19:52:55 +00004988 return true;
4989}
4990
Douglas Gregord32e0282009-02-09 23:23:08 +00004991/// \brief Check a template argument against its corresponding
4992/// non-type template parameter.
4993///
Douglas Gregor463421d2009-03-03 04:44:36 +00004994/// This routine implements the semantics of C++ [temp.arg.nontype].
John Wiegley01296292011-04-08 18:41:53 +00004995/// If an error occurred, it returns ExprError(); otherwise, it
Richard Smithd663fdd2014-12-17 20:42:37 +00004996/// returns the converted template argument. \p ParamType is the
4997/// type of the non-type template parameter after it has been instantiated.
John Wiegley01296292011-04-08 18:41:53 +00004998ExprResult Sema::CheckTemplateArgument(NonTypeTemplateParmDecl *Param,
Richard Smithd663fdd2014-12-17 20:42:37 +00004999 QualType ParamType, Expr *Arg,
John Wiegley01296292011-04-08 18:41:53 +00005000 TemplateArgument &Converted,
5001 CheckTemplateArgumentKind CTAK) {
Daniel Dunbar62ee6412012-03-09 18:35:03 +00005002 SourceLocation StartLoc = Arg->getLocStart();
Douglas Gregorc40290e2009-03-09 23:48:35 +00005003
Richard Smith5f274382016-09-28 23:55:27 +00005004 // If the parameter type somehow involves auto, deduce the type now.
5005 if (getLangOpts().CPlusPlus1z && ParamType->isUndeducedType()) {
5006 if (DeduceAutoType(
5007 Context.getTrivialTypeSourceInfo(ParamType, Param->getLocation()),
5008 Arg, ParamType) == DAR_Failed) {
5009 Diag(Arg->getExprLoc(),
5010 diag::err_non_type_template_parm_type_deduction_failure)
5011 << Param->getDeclName() << Param->getType() << Arg->getType()
5012 << Arg->getSourceRange();
5013 Diag(Param->getLocation(), diag::note_template_param_here);
5014 return ExprError();
5015 }
5016 // CheckNonTypeTemplateParameterType will produce a diagnostic if there's
5017 // an error. The error message normally references the parameter
5018 // declaration, but here we'll pass the argument location because that's
5019 // where the parameter type is deduced.
5020 ParamType = CheckNonTypeTemplateParameterType(ParamType, Arg->getExprLoc());
5021 if (ParamType.isNull()) {
5022 Diag(Param->getLocation(), diag::note_template_param_here);
5023 return ExprError();
5024 }
5025 }
5026
Douglas Gregor86560402009-02-10 23:36:10 +00005027 // If either the parameter has a dependent type or the argument is
5028 // type-dependent, there's nothing we can check now.
Richard Smithd663fdd2014-12-17 20:42:37 +00005029 if (ParamType->isDependentType() || Arg->isTypeDependent()) {
Douglas Gregorc40290e2009-03-09 23:48:35 +00005030 // FIXME: Produce a cloned, canonical expression?
Douglas Gregor74eba0b2009-06-11 18:10:32 +00005031 Converted = TemplateArgument(Arg);
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00005032 return Arg;
Douglas Gregorc40290e2009-03-09 23:48:35 +00005033 }
Douglas Gregor86560402009-02-10 23:36:10 +00005034
Richard Smithd663fdd2014-12-17 20:42:37 +00005035 // We should have already dropped all cv-qualifiers by now.
5036 assert(!ParamType.hasQualifiers() &&
5037 "non-type template parameter type cannot be qualified");
5038
5039 if (CTAK == CTAK_Deduced &&
5040 !Context.hasSameUnqualifiedType(ParamType, Arg->getType())) {
5041 // C++ [temp.deduct.type]p17:
5042 // If, in the declaration of a function template with a non-type
5043 // template-parameter, the non-type template-parameter is used
5044 // in an expression in the function parameter-list and, if the
5045 // corresponding template-argument is deduced, the
5046 // template-argument type shall match the type of the
5047 // template-parameter exactly, except that a template-argument
5048 // deduced from an array bound may be of any integral type.
5049 Diag(StartLoc, diag::err_deduced_non_type_template_arg_type_mismatch)
5050 << Arg->getType().getUnqualifiedType()
5051 << ParamType.getUnqualifiedType();
5052 Diag(Param->getLocation(), diag::note_template_param_here);
5053 return ExprError();
5054 }
5055
Richard Smith410cc892014-11-26 03:26:53 +00005056 if (getLangOpts().CPlusPlus1z) {
5057 // FIXME: We can do some limited checking for a value-dependent but not
5058 // type-dependent argument.
5059 if (Arg->isValueDependent()) {
5060 Converted = TemplateArgument(Arg);
5061 return Arg;
5062 }
5063
5064 // C++1z [temp.arg.nontype]p1:
5065 // A template-argument for a non-type template parameter shall be
5066 // a converted constant expression of the type of the template-parameter.
5067 APValue Value;
5068 ExprResult ArgResult = CheckConvertedConstantExpression(
5069 Arg, ParamType, Value, CCEK_TemplateArg);
5070 if (ArgResult.isInvalid())
5071 return ExprError();
5072
Richard Smithd663fdd2014-12-17 20:42:37 +00005073 QualType CanonParamType = Context.getCanonicalType(ParamType);
5074
Richard Smith410cc892014-11-26 03:26:53 +00005075 // Convert the APValue to a TemplateArgument.
5076 switch (Value.getKind()) {
5077 case APValue::Uninitialized:
5078 assert(ParamType->isNullPtrType());
Richard Smithd663fdd2014-12-17 20:42:37 +00005079 Converted = TemplateArgument(CanonParamType, /*isNullPtr*/true);
Richard Smith410cc892014-11-26 03:26:53 +00005080 break;
5081 case APValue::Int:
5082 assert(ParamType->isIntegralOrEnumerationType());
Richard Smithd663fdd2014-12-17 20:42:37 +00005083 Converted = TemplateArgument(Context, Value.getInt(), CanonParamType);
Richard Smith410cc892014-11-26 03:26:53 +00005084 break;
5085 case APValue::MemberPointer: {
5086 assert(ParamType->isMemberPointerType());
5087
5088 // FIXME: We need TemplateArgument representation and mangling for these.
5089 if (!Value.getMemberPointerPath().empty()) {
5090 Diag(Arg->getLocStart(),
5091 diag::err_template_arg_member_ptr_base_derived_not_supported)
5092 << Value.getMemberPointerDecl() << ParamType
5093 << Arg->getSourceRange();
5094 return ExprError();
5095 }
5096
5097 auto *VD = const_cast<ValueDecl*>(Value.getMemberPointerDecl());
Richard Smithd663fdd2014-12-17 20:42:37 +00005098 Converted = VD ? TemplateArgument(VD, CanonParamType)
5099 : TemplateArgument(CanonParamType, /*isNullPtr*/true);
Richard Smith410cc892014-11-26 03:26:53 +00005100 break;
5101 }
5102 case APValue::LValue: {
5103 // For a non-type template-parameter of pointer or reference type,
5104 // the value of the constant expression shall not refer to
Richard Smithd663fdd2014-12-17 20:42:37 +00005105 assert(ParamType->isPointerType() || ParamType->isReferenceType() ||
5106 ParamType->isNullPtrType());
Richard Smith410cc892014-11-26 03:26:53 +00005107 // -- a temporary object
5108 // -- a string literal
5109 // -- the result of a typeid expression, or
5110 // -- a predefind __func__ variable
5111 if (auto *E = Value.getLValueBase().dyn_cast<const Expr*>()) {
5112 if (isa<CXXUuidofExpr>(E)) {
5113 Converted = TemplateArgument(const_cast<Expr*>(E));
5114 break;
5115 }
5116 Diag(Arg->getLocStart(), diag::err_template_arg_not_decl_ref)
5117 << Arg->getSourceRange();
5118 return ExprError();
5119 }
5120 auto *VD = const_cast<ValueDecl *>(
5121 Value.getLValueBase().dyn_cast<const ValueDecl *>());
5122 // -- a subobject
5123 if (Value.hasLValuePath() && Value.getLValuePath().size() == 1 &&
5124 VD && VD->getType()->isArrayType() &&
5125 Value.getLValuePath()[0].ArrayIndex == 0 &&
5126 !Value.isLValueOnePastTheEnd() && ParamType->isPointerType()) {
5127 // Per defect report (no number yet):
5128 // ... other than a pointer to the first element of a complete array
5129 // object.
5130 } else if (!Value.hasLValuePath() || Value.getLValuePath().size() ||
5131 Value.isLValueOnePastTheEnd()) {
5132 Diag(StartLoc, diag::err_non_type_template_arg_subobject)
5133 << Value.getAsString(Context, ParamType);
5134 return ExprError();
5135 }
Richard Smithd663fdd2014-12-17 20:42:37 +00005136 assert((VD || !ParamType->isReferenceType()) &&
Richard Smith410cc892014-11-26 03:26:53 +00005137 "null reference should not be a constant expression");
Richard Smithd663fdd2014-12-17 20:42:37 +00005138 assert((!VD || !ParamType->isNullPtrType()) &&
5139 "non-null value of type nullptr_t?");
5140 Converted = VD ? TemplateArgument(VD, CanonParamType)
5141 : TemplateArgument(CanonParamType, /*isNullPtr*/true);
Richard Smith410cc892014-11-26 03:26:53 +00005142 break;
5143 }
5144 case APValue::AddrLabelDiff:
5145 return Diag(StartLoc, diag::err_non_type_template_arg_addr_label_diff);
5146 case APValue::Float:
5147 case APValue::ComplexInt:
5148 case APValue::ComplexFloat:
5149 case APValue::Vector:
5150 case APValue::Array:
5151 case APValue::Struct:
5152 case APValue::Union:
5153 llvm_unreachable("invalid kind for template argument");
5154 }
5155
5156 return ArgResult.get();
5157 }
5158
Douglas Gregor86560402009-02-10 23:36:10 +00005159 // C++ [temp.arg.nontype]p5:
5160 // The following conversions are performed on each expression used
5161 // as a non-type template-argument. If a non-type
5162 // template-argument cannot be converted to the type of the
5163 // corresponding template-parameter then the program is
5164 // ill-formed.
Douglas Gregorb90df602010-06-16 00:17:44 +00005165 if (ParamType->isIntegralOrEnumerationType()) {
Richard Smithf8379a02012-01-18 23:55:52 +00005166 // C++11:
5167 // -- for a non-type template-parameter of integral or
5168 // enumeration type, conversions permitted in a converted
5169 // constant expression are applied.
5170 //
5171 // C++98:
5172 // -- for a non-type template-parameter of integral or
5173 // enumeration type, integral promotions (4.5) and integral
5174 // conversions (4.7) are applied.
5175
Richard Smith2bf7fdb2013-01-02 11:42:31 +00005176 if (getLangOpts().CPlusPlus11) {
Richard Smithf8379a02012-01-18 23:55:52 +00005177 // We can't check arbitrary value-dependent arguments.
5178 // FIXME: If there's no viable conversion to the template parameter type,
5179 // we should be able to diagnose that prior to instantiation.
5180 if (Arg->isValueDependent()) {
5181 Converted = TemplateArgument(Arg);
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00005182 return Arg;
Richard Smithf8379a02012-01-18 23:55:52 +00005183 }
5184
5185 // C++ [temp.arg.nontype]p1:
5186 // A template-argument for a non-type, non-template template-parameter
5187 // shall be one of:
5188 //
5189 // -- for a non-type template-parameter of integral or enumeration
5190 // type, a converted constant expression of the type of the
5191 // template-parameter; or
5192 llvm::APSInt Value;
5193 ExprResult ArgResult =
5194 CheckConvertedConstantExpression(Arg, ParamType, Value,
5195 CCEK_TemplateArg);
5196 if (ArgResult.isInvalid())
5197 return ExprError();
5198
5199 // Widen the argument value to sizeof(parameter type). This is almost
5200 // always a no-op, except when the parameter type is bool. In
5201 // that case, this may extend the argument from 1 bit to 8 bits.
5202 QualType IntegerType = ParamType;
5203 if (const EnumType *Enum = IntegerType->getAs<EnumType>())
5204 IntegerType = Enum->getDecl()->getIntegerType();
5205 Value = Value.extOrTrunc(Context.getTypeSize(IntegerType));
5206
Benjamin Kramer6003ad52012-06-07 15:09:51 +00005207 Converted = TemplateArgument(Context, Value,
5208 Context.getCanonicalType(ParamType));
Richard Smithf8379a02012-01-18 23:55:52 +00005209 return ArgResult;
5210 }
5211
Richard Smith08b12f12011-10-27 22:11:44 +00005212 ExprResult ArgResult = DefaultLvalueConversion(Arg);
5213 if (ArgResult.isInvalid())
5214 return ExprError();
Nikola Smiljanic01a75982014-05-29 10:55:11 +00005215 Arg = ArgResult.get();
Richard Smith08b12f12011-10-27 22:11:44 +00005216
5217 QualType ArgType = Arg->getType();
5218
Douglas Gregor86560402009-02-10 23:36:10 +00005219 // C++ [temp.arg.nontype]p1:
5220 // A template-argument for a non-type, non-template
5221 // template-parameter shall be one of:
5222 //
5223 // -- an integral constant-expression of integral or enumeration
5224 // type; or
5225 // -- the name of a non-type template-parameter; or
5226 SourceLocation NonConstantLoc;
Douglas Gregor264ec4f2009-02-17 01:05:43 +00005227 llvm::APSInt Value;
Douglas Gregorb90df602010-06-16 00:17:44 +00005228 if (!ArgType->isIntegralOrEnumerationType()) {
Daniel Dunbar62ee6412012-03-09 18:35:03 +00005229 Diag(Arg->getLocStart(),
Douglas Gregor86560402009-02-10 23:36:10 +00005230 diag::err_template_arg_not_integral_or_enumeral)
5231 << ArgType << Arg->getSourceRange();
5232 Diag(Param->getLocation(), diag::note_template_param_here);
John Wiegley01296292011-04-08 18:41:53 +00005233 return ExprError();
Richard Smithf4c51d92012-02-04 09:53:13 +00005234 } else if (!Arg->isValueDependent()) {
Douglas Gregore2b37442012-05-04 22:38:52 +00005235 class TmplArgICEDiagnoser : public VerifyICEDiagnoser {
5236 QualType T;
5237
5238 public:
5239 TmplArgICEDiagnoser(QualType T) : T(T) { }
Craig Toppere14c0f82014-03-12 04:55:44 +00005240
5241 void diagnoseNotICE(Sema &S, SourceLocation Loc,
5242 SourceRange SR) override {
Douglas Gregore2b37442012-05-04 22:38:52 +00005243 S.Diag(Loc, diag::err_template_arg_not_ice) << T << SR;
5244 }
5245 } Diagnoser(ArgType);
5246
5247 Arg = VerifyIntegerConstantExpression(Arg, &Value, Diagnoser,
Nikola Smiljanic01a75982014-05-29 10:55:11 +00005248 false).get();
Richard Smithf4c51d92012-02-04 09:53:13 +00005249 if (!Arg)
5250 return ExprError();
Douglas Gregor86560402009-02-10 23:36:10 +00005251 }
5252
Richard Smithd663fdd2014-12-17 20:42:37 +00005253 // From here on out, all we care about is the unqualified form
5254 // of the argument type.
Douglas Gregord5cb1dd2010-03-28 02:42:43 +00005255 ArgType = ArgType.getUnqualifiedType();
Douglas Gregor86560402009-02-10 23:36:10 +00005256
5257 // Try to convert the argument to the parameter's type.
Douglas Gregor4d0c38a2009-11-04 21:50:46 +00005258 if (Context.hasSameType(ParamType, ArgType)) {
Douglas Gregor86560402009-02-10 23:36:10 +00005259 // Okay: no conversion necessary
John McCall8cb679e2010-11-15 09:13:47 +00005260 } else if (ParamType->isBooleanType()) {
5261 // This is an integral-to-boolean conversion.
Nikola Smiljanic01a75982014-05-29 10:55:11 +00005262 Arg = ImpCastExprToType(Arg, ParamType, CK_IntegralToBoolean).get();
Douglas Gregor86560402009-02-10 23:36:10 +00005263 } else if (IsIntegralPromotion(Arg, ArgType, ParamType) ||
5264 !ParamType->isEnumeralType()) {
5265 // This is an integral promotion or conversion.
Nikola Smiljanic01a75982014-05-29 10:55:11 +00005266 Arg = ImpCastExprToType(Arg, ParamType, CK_IntegralCast).get();
Douglas Gregor86560402009-02-10 23:36:10 +00005267 } else {
5268 // We can't perform this conversion.
Daniel Dunbar62ee6412012-03-09 18:35:03 +00005269 Diag(Arg->getLocStart(),
Douglas Gregor86560402009-02-10 23:36:10 +00005270 diag::err_template_arg_not_convertible)
Richard Smithd663fdd2014-12-17 20:42:37 +00005271 << Arg->getType() << ParamType << Arg->getSourceRange();
Douglas Gregor86560402009-02-10 23:36:10 +00005272 Diag(Param->getLocation(), diag::note_template_param_here);
John Wiegley01296292011-04-08 18:41:53 +00005273 return ExprError();
Douglas Gregor86560402009-02-10 23:36:10 +00005274 }
5275
Douglas Gregorb4f4d512011-05-04 21:55:00 +00005276 // Add the value of this argument to the list of converted
5277 // arguments. We use the bitwidth and signedness of the template
5278 // parameter.
5279 if (Arg->isValueDependent()) {
5280 // The argument is value-dependent. Create a new
5281 // TemplateArgument with the converted expression.
5282 Converted = TemplateArgument(Arg);
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00005283 return Arg;
Douglas Gregorb4f4d512011-05-04 21:55:00 +00005284 }
5285
Douglas Gregor52aba872009-03-14 00:20:21 +00005286 QualType IntegerType = Context.getCanonicalType(ParamType);
John McCall9dd450b2009-09-21 23:43:11 +00005287 if (const EnumType *Enum = IntegerType->getAs<EnumType>())
Douglas Gregor74eba0b2009-06-11 18:10:32 +00005288 IntegerType = Context.getCanonicalType(Enum->getDecl()->getIntegerType());
Douglas Gregor52aba872009-03-14 00:20:21 +00005289
Douglas Gregorb4f4d512011-05-04 21:55:00 +00005290 if (ParamType->isBooleanType()) {
5291 // Value must be zero or one.
5292 Value = Value != 0;
5293 unsigned AllowedBits = Context.getTypeSize(IntegerType);
5294 if (Value.getBitWidth() != AllowedBits)
5295 Value = Value.extOrTrunc(AllowedBits);
Douglas Gregor6ab2fa82011-05-20 16:38:50 +00005296 Value.setIsSigned(IntegerType->isSignedIntegerOrEnumerationType());
Douglas Gregorb4f4d512011-05-04 21:55:00 +00005297 } else {
Douglas Gregorbb3d7862010-03-26 02:38:37 +00005298 llvm::APSInt OldValue = Value;
Douglas Gregorb4f4d512011-05-04 21:55:00 +00005299
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005300 // Coerce the template argument's value to the value it will have
Douglas Gregorbb3d7862010-03-26 02:38:37 +00005301 // based on the template parameter's type.
Douglas Gregora14cb9f2010-03-26 00:39:40 +00005302 unsigned AllowedBits = Context.getTypeSize(IntegerType);
Douglas Gregora14cb9f2010-03-26 00:39:40 +00005303 if (Value.getBitWidth() != AllowedBits)
Jay Foad6d4db0c2010-12-07 08:25:34 +00005304 Value = Value.extOrTrunc(AllowedBits);
Douglas Gregor6ab2fa82011-05-20 16:38:50 +00005305 Value.setIsSigned(IntegerType->isSignedIntegerOrEnumerationType());
Douglas Gregorb4f4d512011-05-04 21:55:00 +00005306
Douglas Gregorbb3d7862010-03-26 02:38:37 +00005307 // Complain if an unsigned parameter received a negative value.
Douglas Gregor6ab2fa82011-05-20 16:38:50 +00005308 if (IntegerType->isUnsignedIntegerOrEnumerationType()
Douglas Gregorb4f4d512011-05-04 21:55:00 +00005309 && (OldValue.isSigned() && OldValue.isNegative())) {
Daniel Dunbar62ee6412012-03-09 18:35:03 +00005310 Diag(Arg->getLocStart(), diag::warn_template_arg_negative)
Douglas Gregorbb3d7862010-03-26 02:38:37 +00005311 << OldValue.toString(10) << Value.toString(10) << Param->getType()
5312 << Arg->getSourceRange();
5313 Diag(Param->getLocation(), diag::note_template_param_here);
5314 }
Douglas Gregorb4f4d512011-05-04 21:55:00 +00005315
Douglas Gregorbb3d7862010-03-26 02:38:37 +00005316 // Complain if we overflowed the template parameter's type.
5317 unsigned RequiredBits;
Douglas Gregor6ab2fa82011-05-20 16:38:50 +00005318 if (IntegerType->isUnsignedIntegerOrEnumerationType())
Douglas Gregorbb3d7862010-03-26 02:38:37 +00005319 RequiredBits = OldValue.getActiveBits();
5320 else if (OldValue.isUnsigned())
5321 RequiredBits = OldValue.getActiveBits() + 1;
5322 else
5323 RequiredBits = OldValue.getMinSignedBits();
5324 if (RequiredBits > AllowedBits) {
Daniel Dunbar62ee6412012-03-09 18:35:03 +00005325 Diag(Arg->getLocStart(),
Douglas Gregorbb3d7862010-03-26 02:38:37 +00005326 diag::warn_template_arg_too_large)
5327 << OldValue.toString(10) << Value.toString(10) << Param->getType()
5328 << Arg->getSourceRange();
5329 Diag(Param->getLocation(), diag::note_template_param_here);
5330 }
Douglas Gregor52aba872009-03-14 00:20:21 +00005331 }
Douglas Gregor264ec4f2009-02-17 01:05:43 +00005332
Benjamin Kramer6003ad52012-06-07 15:09:51 +00005333 Converted = TemplateArgument(Context, Value,
Douglas Gregor3d63a9e2011-08-09 01:55:14 +00005334 ParamType->isEnumeralType()
5335 ? Context.getCanonicalType(ParamType)
5336 : IntegerType);
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00005337 return Arg;
Douglas Gregor86560402009-02-10 23:36:10 +00005338 }
Douglas Gregor3a7796b2009-02-11 00:19:33 +00005339
Richard Smith08b12f12011-10-27 22:11:44 +00005340 QualType ArgType = Arg->getType();
John McCall16df1e52010-03-30 21:47:33 +00005341 DeclAccessPair FoundResult; // temporary for ResolveOverloadedFunction
5342
Douglas Gregor6f233ef2009-02-11 01:18:59 +00005343 // Handle pointer-to-function, reference-to-function, and
5344 // pointer-to-member-function all in (roughly) the same way.
5345 if (// -- For a non-type template-parameter of type pointer to
5346 // function, only the function-to-pointer conversion (4.3) is
5347 // applied. If the template-argument represents a set of
5348 // overloaded functions (or a pointer to such), the matching
5349 // function is selected from the set (13.4).
5350 (ParamType->isPointerType() &&
Ted Kremenekc23c7e62009-07-29 21:53:49 +00005351 ParamType->getAs<PointerType>()->getPointeeType()->isFunctionType()) ||
Douglas Gregor6f233ef2009-02-11 01:18:59 +00005352 // -- For a non-type template-parameter of type reference to
5353 // function, no conversions apply. If the template-argument
5354 // represents a set of overloaded functions, the matching
5355 // function is selected from the set (13.4).
5356 (ParamType->isReferenceType() &&
Ted Kremenekc23c7e62009-07-29 21:53:49 +00005357 ParamType->getAs<ReferenceType>()->getPointeeType()->isFunctionType()) ||
Douglas Gregor6f233ef2009-02-11 01:18:59 +00005358 // -- For a non-type template-parameter of type pointer to
5359 // member function, no conversions apply. If the
5360 // template-argument represents a set of overloaded member
5361 // functions, the matching member function is selected from
5362 // the set (13.4).
5363 (ParamType->isMemberPointerType() &&
Ted Kremenekc23c7e62009-07-29 21:53:49 +00005364 ParamType->getAs<MemberPointerType>()->getPointeeType()
Douglas Gregor6f233ef2009-02-11 01:18:59 +00005365 ->isFunctionType())) {
Douglas Gregorb242683d2010-04-01 18:32:35 +00005366
Douglas Gregor064fdb22010-04-14 23:11:21 +00005367 if (Arg->getType() == Context.OverloadTy) {
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005368 if (FunctionDecl *Fn = ResolveAddressOfOverloadedFunction(Arg, ParamType,
Douglas Gregor064fdb22010-04-14 23:11:21 +00005369 true,
5370 FoundResult)) {
Daniel Dunbar62ee6412012-03-09 18:35:03 +00005371 if (DiagnoseUseOfDecl(Fn, Arg->getLocStart()))
John Wiegley01296292011-04-08 18:41:53 +00005372 return ExprError();
Douglas Gregor064fdb22010-04-14 23:11:21 +00005373
5374 Arg = FixOverloadedFunctionReference(Arg, FoundResult, Fn);
5375 ArgType = Arg->getType();
5376 } else
John Wiegley01296292011-04-08 18:41:53 +00005377 return ExprError();
Douglas Gregor3a7796b2009-02-11 00:19:33 +00005378 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005379
John Wiegley01296292011-04-08 18:41:53 +00005380 if (!ParamType->isMemberPointerType()) {
5381 if (CheckTemplateArgumentAddressOfObjectOrFunction(*this, Param,
5382 ParamType,
5383 Arg, Converted))
5384 return ExprError();
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00005385 return Arg;
John Wiegley01296292011-04-08 18:41:53 +00005386 }
Douglas Gregorb242683d2010-04-01 18:32:35 +00005387
Douglas Gregor20fdef32012-04-10 17:08:25 +00005388 if (CheckTemplateArgumentPointerToMember(*this, Param, ParamType, Arg,
5389 Converted))
John Wiegley01296292011-04-08 18:41:53 +00005390 return ExprError();
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00005391 return Arg;
Douglas Gregor3a7796b2009-02-11 00:19:33 +00005392 }
5393
Chris Lattner696197c2009-02-20 21:37:53 +00005394 if (ParamType->isPointerType()) {
Douglas Gregor6f233ef2009-02-11 01:18:59 +00005395 // -- for a non-type template-parameter of type pointer to
5396 // object, qualification conversions (4.4) and the
5397 // array-to-pointer conversion (4.2) are applied.
Sebastian Redl576fd422009-05-10 18:38:11 +00005398 // C++0x also allows a value of std::nullptr_t.
Eli Friedmana170cd62010-08-05 02:49:48 +00005399 assert(ParamType->getPointeeType()->isIncompleteOrObjectType() &&
Douglas Gregor6f233ef2009-02-11 01:18:59 +00005400 "Only object pointers allowed here");
Douglas Gregora9faa442009-02-11 00:44:29 +00005401
John Wiegley01296292011-04-08 18:41:53 +00005402 if (CheckTemplateArgumentAddressOfObjectOrFunction(*this, Param,
5403 ParamType,
5404 Arg, Converted))
5405 return ExprError();
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00005406 return Arg;
Douglas Gregora9faa442009-02-11 00:44:29 +00005407 }
Mike Stump11289f42009-09-09 15:08:12 +00005408
Ted Kremenekc23c7e62009-07-29 21:53:49 +00005409 if (const ReferenceType *ParamRefType = ParamType->getAs<ReferenceType>()) {
Douglas Gregor6f233ef2009-02-11 01:18:59 +00005410 // -- For a non-type template-parameter of type reference to
5411 // object, no conversions apply. The type referred to by the
5412 // reference may be more cv-qualified than the (otherwise
5413 // identical) type of the template-argument. The
5414 // template-parameter is bound directly to the
5415 // template-argument, which must be an lvalue.
Eli Friedmana170cd62010-08-05 02:49:48 +00005416 assert(ParamRefType->getPointeeType()->isIncompleteOrObjectType() &&
Douglas Gregor6f233ef2009-02-11 01:18:59 +00005417 "Only object references allowed here");
Douglas Gregora9faa442009-02-11 00:44:29 +00005418
Douglas Gregor064fdb22010-04-14 23:11:21 +00005419 if (Arg->getType() == Context.OverloadTy) {
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005420 if (FunctionDecl *Fn = ResolveAddressOfOverloadedFunction(Arg,
5421 ParamRefType->getPointeeType(),
Douglas Gregor064fdb22010-04-14 23:11:21 +00005422 true,
5423 FoundResult)) {
Daniel Dunbar62ee6412012-03-09 18:35:03 +00005424 if (DiagnoseUseOfDecl(Fn, Arg->getLocStart()))
John Wiegley01296292011-04-08 18:41:53 +00005425 return ExprError();
Douglas Gregor064fdb22010-04-14 23:11:21 +00005426
5427 Arg = FixOverloadedFunctionReference(Arg, FoundResult, Fn);
5428 ArgType = Arg->getType();
5429 } else
John Wiegley01296292011-04-08 18:41:53 +00005430 return ExprError();
Douglas Gregor6f233ef2009-02-11 01:18:59 +00005431 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005432
John Wiegley01296292011-04-08 18:41:53 +00005433 if (CheckTemplateArgumentAddressOfObjectOrFunction(*this, Param,
5434 ParamType,
5435 Arg, Converted))
5436 return ExprError();
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00005437 return Arg;
Douglas Gregor6f233ef2009-02-11 01:18:59 +00005438 }
Douglas Gregor0e558532009-02-11 16:16:59 +00005439
Douglas Gregor20fdef32012-04-10 17:08:25 +00005440 // Deal with parameters of type std::nullptr_t.
5441 if (ParamType->isNullPtrType()) {
5442 if (Arg->isTypeDependent() || Arg->isValueDependent()) {
5443 Converted = TemplateArgument(Arg);
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00005444 return Arg;
Douglas Gregor20fdef32012-04-10 17:08:25 +00005445 }
5446
5447 switch (isNullPointerValueTemplateArgument(*this, Param, ParamType, Arg)) {
5448 case NPV_NotNullPointer:
5449 Diag(Arg->getExprLoc(), diag::err_template_arg_not_convertible)
5450 << Arg->getType() << ParamType;
5451 Diag(Param->getLocation(), diag::note_template_param_here);
5452 return ExprError();
5453
5454 case NPV_Error:
5455 return ExprError();
5456
5457 case NPV_NullPointer:
Richard Smithbc8c5b52012-04-26 01:51:03 +00005458 Diag(Arg->getExprLoc(), diag::warn_cxx98_compat_template_arg_null);
Richard Smith78bb36f2014-07-24 02:27:39 +00005459 Converted = TemplateArgument(Context.getCanonicalType(ParamType),
5460 /*isNullPtr*/true);
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00005461 return Arg;
Douglas Gregor20fdef32012-04-10 17:08:25 +00005462 }
5463 }
5464
Douglas Gregor0e558532009-02-11 16:16:59 +00005465 // -- For a non-type template-parameter of type pointer to data
5466 // member, qualification conversions (4.4) are applied.
5467 assert(ParamType->isMemberPointerType() && "Only pointers to members remain");
5468
Douglas Gregor20fdef32012-04-10 17:08:25 +00005469 if (CheckTemplateArgumentPointerToMember(*this, Param, ParamType, Arg,
5470 Converted))
John Wiegley01296292011-04-08 18:41:53 +00005471 return ExprError();
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00005472 return Arg;
Douglas Gregord32e0282009-02-09 23:23:08 +00005473}
5474
5475/// \brief Check a template argument against its corresponding
5476/// template template parameter.
5477///
5478/// This routine implements the semantics of C++ [temp.arg.template].
5479/// It returns true if an error occurred, and false otherwise.
5480bool Sema::CheckTemplateArgument(TemplateTemplateParmDecl *Param,
Reid Kleckner377c1592014-06-10 23:29:48 +00005481 TemplateArgumentLoc &Arg,
Richard Smith1fde8ec2012-09-07 02:06:42 +00005482 unsigned ArgumentPackIndex) {
Eli Friedmanb826a002012-09-26 02:36:12 +00005483 TemplateName Name = Arg.getArgument().getAsTemplateOrTemplatePattern();
Douglas Gregor9167f8b2009-11-11 01:00:40 +00005484 TemplateDecl *Template = Name.getAsTemplateDecl();
5485 if (!Template) {
5486 // Any dependent template name is fine.
5487 assert(Name.isDependent() && "Non-dependent template isn't a declaration?");
5488 return false;
5489 }
Douglas Gregor85e0f662009-02-10 00:24:35 +00005490
Richard Smith3f1b5d02011-05-05 21:57:07 +00005491 // C++0x [temp.arg.template]p1:
Douglas Gregor85e0f662009-02-10 00:24:35 +00005492 // A template-argument for a template template-parameter shall be
Richard Smith3f1b5d02011-05-05 21:57:07 +00005493 // the name of a class template or an alias template, expressed as an
5494 // id-expression. When the template-argument names a class template, only
Douglas Gregor85e0f662009-02-10 00:24:35 +00005495 // primary class templates are considered when matching the
5496 // template template argument with the corresponding parameter;
5497 // partial specializations are not considered even if their
5498 // parameter lists match that of the template template parameter.
Douglas Gregord5222052009-06-12 19:43:02 +00005499 //
5500 // Note that we also allow template template parameters here, which
5501 // will happen when we are dealing with, e.g., class template
5502 // partial specializations.
Mike Stump11289f42009-09-09 15:08:12 +00005503 if (!isa<ClassTemplateDecl>(Template) &&
Richard Smith3f1b5d02011-05-05 21:57:07 +00005504 !isa<TemplateTemplateParmDecl>(Template) &&
David Majnemerc2406d42016-07-11 17:09:56 +00005505 !isa<TypeAliasTemplateDecl>(Template) &&
5506 !isa<BuiltinTemplateDecl>(Template)) {
5507 assert(isa<FunctionTemplateDecl>(Template) &&
5508 "Only function templates are possible here");
Faisal Valib8b04f82016-03-26 20:46:45 +00005509 Diag(Arg.getLocation(), diag::err_template_arg_not_valid_template);
David Majnemerc2406d42016-07-11 17:09:56 +00005510 Diag(Template->getLocation(), diag::note_template_arg_refers_here_func)
5511 << Template;
Douglas Gregor85e0f662009-02-10 00:24:35 +00005512 }
5513
Richard Smith1fde8ec2012-09-07 02:06:42 +00005514 TemplateParameterList *Params = Param->getTemplateParameters();
5515 if (Param->isExpandedParameterPack())
5516 Params = Param->getExpansionTemplateParameters(ArgumentPackIndex);
5517
Douglas Gregor85e0f662009-02-10 00:24:35 +00005518 return !TemplateParameterListsAreEqual(Template->getTemplateParameters(),
Richard Smith1fde8ec2012-09-07 02:06:42 +00005519 Params,
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005520 true,
Douglas Gregor19ac2d62009-11-12 16:20:59 +00005521 TPL_TemplateTemplateArgumentMatch,
Douglas Gregor9167f8b2009-11-11 01:00:40 +00005522 Arg.getLocation());
Douglas Gregord32e0282009-02-09 23:23:08 +00005523}
5524
Douglas Gregord5cb1dd2010-03-28 02:42:43 +00005525/// \brief Given a non-type template argument that refers to a
5526/// declaration and the type of its corresponding non-type template
5527/// parameter, produce an expression that properly refers to that
5528/// declaration.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005529ExprResult
Douglas Gregord5cb1dd2010-03-28 02:42:43 +00005530Sema::BuildExpressionFromDeclTemplateArgument(const TemplateArgument &Arg,
5531 QualType ParamType,
5532 SourceLocation Loc) {
David Blaikiedc601e32013-02-27 22:10:40 +00005533 // C++ [temp.param]p8:
5534 //
5535 // A non-type template-parameter of type "array of T" or
5536 // "function returning T" is adjusted to be of type "pointer to
5537 // T" or "pointer to function returning T", respectively.
5538 if (ParamType->isArrayType())
5539 ParamType = Context.getArrayDecayedType(ParamType);
5540 else if (ParamType->isFunctionType())
5541 ParamType = Context.getPointerType(ParamType);
5542
Douglas Gregor31f55dc2012-04-06 22:40:38 +00005543 // For a NULL non-type template argument, return nullptr casted to the
5544 // parameter's type.
Eli Friedmanb826a002012-09-26 02:36:12 +00005545 if (Arg.getKind() == TemplateArgument::NullPtr) {
Douglas Gregor31f55dc2012-04-06 22:40:38 +00005546 return ImpCastExprToType(
5547 new (Context) CXXNullPtrLiteralExpr(Context.NullPtrTy, Loc),
5548 ParamType,
5549 ParamType->getAs<MemberPointerType>()
5550 ? CK_NullToMemberPointer
5551 : CK_NullToPointer);
5552 }
Eli Friedmanb826a002012-09-26 02:36:12 +00005553 assert(Arg.getKind() == TemplateArgument::Declaration &&
5554 "Only declaration template arguments permitted here");
5555
Douglas Gregord5cb1dd2010-03-28 02:42:43 +00005556 ValueDecl *VD = cast<ValueDecl>(Arg.getAsDecl());
5557
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005558 if (VD->getDeclContext()->isRecord() &&
David Majnemer3ae0bfa2013-10-26 05:02:13 +00005559 (isa<CXXMethodDecl>(VD) || isa<FieldDecl>(VD) ||
5560 isa<IndirectFieldDecl>(VD))) {
Douglas Gregord5cb1dd2010-03-28 02:42:43 +00005561 // If the value is a class member, we might have a pointer-to-member.
5562 // Determine whether the non-type template template parameter is of
5563 // pointer-to-member type. If so, we need to build an appropriate
5564 // expression for a pointer-to-member, since a "normal" DeclRefExpr
5565 // would refer to the member itself.
5566 if (ParamType->isMemberPointerType()) {
5567 QualType ClassType
5568 = Context.getTypeDeclType(cast<RecordDecl>(VD->getDeclContext()));
5569 NestedNameSpecifier *Qualifier
Craig Topperc3ec1492014-05-26 06:22:03 +00005570 = NestedNameSpecifier::Create(Context, nullptr, false,
John McCallb268a282010-08-23 23:25:46 +00005571 ClassType.getTypePtr());
Douglas Gregord5cb1dd2010-03-28 02:42:43 +00005572 CXXScopeSpec SS;
Douglas Gregor869ad452011-02-24 17:54:50 +00005573 SS.MakeTrivial(Context, Qualifier, Loc);
John McCallfeb624a2010-11-23 20:48:44 +00005574
5575 // The actual value-ness of this is unimportant, but for
5576 // internal consistency's sake, references to instance methods
5577 // are r-values.
5578 ExprValueKind VK = VK_LValue;
5579 if (isa<CXXMethodDecl>(VD) && cast<CXXMethodDecl>(VD)->isInstance())
5580 VK = VK_RValue;
5581
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005582 ExprResult RefExpr = BuildDeclRefExpr(VD,
John McCall7decc9e2010-11-18 06:31:45 +00005583 VD->getType().getNonReferenceType(),
John McCallfeb624a2010-11-23 20:48:44 +00005584 VK,
John McCall7decc9e2010-11-18 06:31:45 +00005585 Loc,
5586 &SS);
Douglas Gregord5cb1dd2010-03-28 02:42:43 +00005587 if (RefExpr.isInvalid())
5588 return ExprError();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005589
John McCalle3027922010-08-25 11:45:40 +00005590 RefExpr = CreateBuiltinUnaryOp(Loc, UO_AddrOf, RefExpr.get());
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005591
Douglas Gregorfabf95d2010-04-30 21:46:38 +00005592 // We might need to perform a trailing qualification conversion, since
5593 // the element type on the parameter could be more qualified than the
5594 // element type in the expression we constructed.
John McCall31168b02011-06-15 23:02:42 +00005595 bool ObjCLifetimeConversion;
Douglas Gregorfabf95d2010-04-30 21:46:38 +00005596 if (IsQualificationConversion(((Expr*) RefExpr.get())->getType(),
John McCall31168b02011-06-15 23:02:42 +00005597 ParamType.getUnqualifiedType(), false,
5598 ObjCLifetimeConversion))
Nikola Smiljanic01a75982014-05-29 10:55:11 +00005599 RefExpr = ImpCastExprToType(RefExpr.get(), ParamType.getUnqualifiedType(), CK_NoOp);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005600
Douglas Gregord5cb1dd2010-03-28 02:42:43 +00005601 assert(!RefExpr.isInvalid() &&
5602 Context.hasSameType(((Expr*) RefExpr.get())->getType(),
Douglas Gregorfabf95d2010-04-30 21:46:38 +00005603 ParamType.getUnqualifiedType()));
Benjamin Kramer62b95d82012-08-23 21:35:17 +00005604 return RefExpr;
Douglas Gregord5cb1dd2010-03-28 02:42:43 +00005605 }
5606 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005607
Douglas Gregord5cb1dd2010-03-28 02:42:43 +00005608 QualType T = VD->getType().getNonReferenceType();
Douglas Gregoreffe2a12013-01-16 00:52:15 +00005609
Douglas Gregord5cb1dd2010-03-28 02:42:43 +00005610 if (ParamType->isPointerType()) {
Douglas Gregorb242683d2010-04-01 18:32:35 +00005611 // When the non-type template parameter is a pointer, take the
5612 // address of the declaration.
John McCall7decc9e2010-11-18 06:31:45 +00005613 ExprResult RefExpr = BuildDeclRefExpr(VD, T, VK_LValue, Loc);
Douglas Gregord5cb1dd2010-03-28 02:42:43 +00005614 if (RefExpr.isInvalid())
5615 return ExprError();
Douglas Gregorb242683d2010-04-01 18:32:35 +00005616
5617 if (T->isFunctionType() || T->isArrayType()) {
5618 // Decay functions and arrays.
Nikola Smiljanic01a75982014-05-29 10:55:11 +00005619 RefExpr = DefaultFunctionArrayConversion(RefExpr.get());
John Wiegley01296292011-04-08 18:41:53 +00005620 if (RefExpr.isInvalid())
5621 return ExprError();
Douglas Gregorb242683d2010-04-01 18:32:35 +00005622
Benjamin Kramer62b95d82012-08-23 21:35:17 +00005623 return RefExpr;
Douglas Gregord5cb1dd2010-03-28 02:42:43 +00005624 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005625
Douglas Gregorb242683d2010-04-01 18:32:35 +00005626 // Take the address of everything else
John McCalle3027922010-08-25 11:45:40 +00005627 return CreateBuiltinUnaryOp(Loc, UO_AddrOf, RefExpr.get());
Douglas Gregord5cb1dd2010-03-28 02:42:43 +00005628 }
5629
John McCall7decc9e2010-11-18 06:31:45 +00005630 ExprValueKind VK = VK_RValue;
5631
Douglas Gregord5cb1dd2010-03-28 02:42:43 +00005632 // If the non-type template parameter has reference type, qualify the
5633 // resulting declaration reference with the extra qualifiers on the
5634 // type that the reference refers to.
John McCall7decc9e2010-11-18 06:31:45 +00005635 if (const ReferenceType *TargetRef = ParamType->getAs<ReferenceType>()) {
5636 VK = VK_LValue;
5637 T = Context.getQualifiedType(T,
5638 TargetRef->getPointeeType().getQualifiers());
Douglas Gregoreffe2a12013-01-16 00:52:15 +00005639 } else if (isa<FunctionDecl>(VD)) {
5640 // References to functions are always lvalues.
5641 VK = VK_LValue;
John McCall7decc9e2010-11-18 06:31:45 +00005642 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005643
John McCall7decc9e2010-11-18 06:31:45 +00005644 return BuildDeclRefExpr(VD, T, VK, Loc);
Douglas Gregord5cb1dd2010-03-28 02:42:43 +00005645}
5646
5647/// \brief Construct a new expression that refers to the given
5648/// integral template argument with the given source-location
5649/// information.
5650///
5651/// This routine takes care of the mapping from an integral template
5652/// argument (which may have any integral type) to the appropriate
5653/// literal value.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005654ExprResult
Douglas Gregord5cb1dd2010-03-28 02:42:43 +00005655Sema::BuildExpressionFromIntegralTemplateArgument(const TemplateArgument &Arg,
5656 SourceLocation Loc) {
5657 assert(Arg.getKind() == TemplateArgument::Integral &&
Douglas Gregora8bac7f2011-01-10 07:32:04 +00005658 "Operation is only valid for integral template arguments");
Benjamin Kramer3d3ddce2012-11-21 17:42:47 +00005659 QualType OrigT = Arg.getIntegralType();
5660
5661 // If this is an enum type that we're instantiating, we need to use an integer
5662 // type the same size as the enumerator. We don't want to build an
5663 // IntegerLiteral with enum type. The integer type of an enum type can be of
5664 // any integral type with C++11 enum classes, make sure we create the right
5665 // type of literal for it.
5666 QualType T = OrigT;
5667 if (const EnumType *ET = OrigT->getAs<EnumType>())
5668 T = ET->getDecl()->getIntegerType();
5669
5670 Expr *E;
Douglas Gregorfb65e592011-07-27 05:40:30 +00005671 if (T->isAnyCharacterType()) {
Aaron Ballman9a17c852016-01-07 20:59:26 +00005672 // This does not need to handle u8 character literals because those are
5673 // of type char, and so can also be covered by an ASCII character literal.
Douglas Gregorfb65e592011-07-27 05:40:30 +00005674 CharacterLiteral::CharacterKind Kind;
5675 if (T->isWideCharType())
5676 Kind = CharacterLiteral::Wide;
5677 else if (T->isChar16Type())
5678 Kind = CharacterLiteral::UTF16;
5679 else if (T->isChar32Type())
5680 Kind = CharacterLiteral::UTF32;
5681 else
5682 Kind = CharacterLiteral::Ascii;
5683
Benjamin Kramer3d3ddce2012-11-21 17:42:47 +00005684 E = new (Context) CharacterLiteral(Arg.getAsIntegral().getZExtValue(),
5685 Kind, T, Loc);
5686 } else if (T->isBooleanType()) {
5687 E = new (Context) CXXBoolLiteralExpr(Arg.getAsIntegral().getBoolValue(),
5688 T, Loc);
5689 } else if (T->isNullPtrType()) {
5690 E = new (Context) CXXNullPtrLiteralExpr(Context.NullPtrTy, Loc);
5691 } else {
5692 E = IntegerLiteral::Create(Context, Arg.getAsIntegral(), T, Loc);
Douglas Gregorfb65e592011-07-27 05:40:30 +00005693 }
5694
Benjamin Kramer3d3ddce2012-11-21 17:42:47 +00005695 if (OrigT->isEnumeralType()) {
John McCall6730e4d2011-07-15 07:47:58 +00005696 // FIXME: This is a hack. We need a better way to handle substituted
5697 // non-type template parameters.
Craig Topperc3ec1492014-05-26 06:22:03 +00005698 E = CStyleCastExpr::Create(Context, OrigT, VK_RValue, CK_IntegralCast, E,
5699 nullptr,
Benjamin Kramer3d3ddce2012-11-21 17:42:47 +00005700 Context.getTrivialTypeSourceInfo(OrigT, Loc),
John McCall6730e4d2011-07-15 07:47:58 +00005701 Loc, Loc);
5702 }
5703
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00005704 return E;
Douglas Gregord5cb1dd2010-03-28 02:42:43 +00005705}
5706
Douglas Gregor641040a2011-01-12 23:45:44 +00005707/// \brief Match two template parameters within template parameter lists.
5708static bool MatchTemplateParameterKind(Sema &S, NamedDecl *New, NamedDecl *Old,
5709 bool Complain,
5710 Sema::TemplateParameterListEqualKind Kind,
5711 SourceLocation TemplateArgLoc) {
5712 // Check the actual kind (type, non-type, template).
5713 if (Old->getKind() != New->getKind()) {
5714 if (Complain) {
5715 unsigned NextDiag = diag::err_template_param_different_kind;
5716 if (TemplateArgLoc.isValid()) {
5717 S.Diag(TemplateArgLoc, diag::err_template_arg_template_params_mismatch);
5718 NextDiag = diag::note_template_param_different_kind;
5719 }
5720 S.Diag(New->getLocation(), NextDiag)
5721 << (Kind != Sema::TPL_TemplateMatch);
5722 S.Diag(Old->getLocation(), diag::note_template_prev_declaration)
5723 << (Kind != Sema::TPL_TemplateMatch);
5724 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005725
Douglas Gregor641040a2011-01-12 23:45:44 +00005726 return false;
5727 }
5728
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005729 // Check that both are parameter packs are neither are parameter packs.
5730 // However, if we are matching a template template argument to a
Douglas Gregorfd4344b2011-01-13 00:08:50 +00005731 // template template parameter, the template template parameter can have
5732 // a parameter pack where the template template argument does not.
5733 if (Old->isTemplateParameterPack() != New->isTemplateParameterPack() &&
5734 !(Kind == Sema::TPL_TemplateTemplateArgumentMatch &&
5735 Old->isTemplateParameterPack())) {
Douglas Gregor641040a2011-01-12 23:45:44 +00005736 if (Complain) {
5737 unsigned NextDiag = diag::err_template_parameter_pack_non_pack;
5738 if (TemplateArgLoc.isValid()) {
5739 S.Diag(TemplateArgLoc,
5740 diag::err_template_arg_template_params_mismatch);
5741 NextDiag = diag::note_template_parameter_pack_non_pack;
5742 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005743
Douglas Gregor641040a2011-01-12 23:45:44 +00005744 unsigned ParamKind = isa<TemplateTypeParmDecl>(New)? 0
5745 : isa<NonTypeTemplateParmDecl>(New)? 1
5746 : 2;
5747 S.Diag(New->getLocation(), NextDiag)
5748 << ParamKind << New->isParameterPack();
5749 S.Diag(Old->getLocation(), diag::note_template_parameter_pack_here)
5750 << ParamKind << Old->isParameterPack();
5751 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005752
Douglas Gregor641040a2011-01-12 23:45:44 +00005753 return false;
5754 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005755
Douglas Gregor641040a2011-01-12 23:45:44 +00005756 // For non-type template parameters, check the type of the parameter.
5757 if (NonTypeTemplateParmDecl *OldNTTP
5758 = dyn_cast<NonTypeTemplateParmDecl>(Old)) {
5759 NonTypeTemplateParmDecl *NewNTTP = cast<NonTypeTemplateParmDecl>(New);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005760
Douglas Gregor641040a2011-01-12 23:45:44 +00005761 // If we are matching a template template argument to a template
5762 // template parameter and one of the non-type template parameter types
5763 // is dependent, then we must wait until template instantiation time
5764 // to actually compare the arguments.
5765 if (Kind == Sema::TPL_TemplateTemplateArgumentMatch &&
5766 (OldNTTP->getType()->isDependentType() ||
5767 NewNTTP->getType()->isDependentType()))
5768 return true;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005769
Douglas Gregor641040a2011-01-12 23:45:44 +00005770 if (!S.Context.hasSameType(OldNTTP->getType(), NewNTTP->getType())) {
5771 if (Complain) {
5772 unsigned NextDiag = diag::err_template_nontype_parm_different_type;
5773 if (TemplateArgLoc.isValid()) {
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005774 S.Diag(TemplateArgLoc,
Douglas Gregor641040a2011-01-12 23:45:44 +00005775 diag::err_template_arg_template_params_mismatch);
5776 NextDiag = diag::note_template_nontype_parm_different_type;
5777 }
5778 S.Diag(NewNTTP->getLocation(), NextDiag)
5779 << NewNTTP->getType()
5780 << (Kind != Sema::TPL_TemplateMatch);
5781 S.Diag(OldNTTP->getLocation(),
5782 diag::note_template_nontype_parm_prev_declaration)
5783 << OldNTTP->getType();
5784 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005785
Douglas Gregor641040a2011-01-12 23:45:44 +00005786 return false;
5787 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005788
Douglas Gregor641040a2011-01-12 23:45:44 +00005789 return true;
5790 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005791
Douglas Gregor641040a2011-01-12 23:45:44 +00005792 // For template template parameters, check the template parameter types.
5793 // The template parameter lists of template template
5794 // parameters must agree.
5795 if (TemplateTemplateParmDecl *OldTTP
5796 = dyn_cast<TemplateTemplateParmDecl>(Old)) {
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005797 TemplateTemplateParmDecl *NewTTP = cast<TemplateTemplateParmDecl>(New);
Douglas Gregor641040a2011-01-12 23:45:44 +00005798 return S.TemplateParameterListsAreEqual(NewTTP->getTemplateParameters(),
5799 OldTTP->getTemplateParameters(),
5800 Complain,
5801 (Kind == Sema::TPL_TemplateMatch
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005802 ? Sema::TPL_TemplateTemplateParmMatch
Douglas Gregor641040a2011-01-12 23:45:44 +00005803 : Kind),
5804 TemplateArgLoc);
5805 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005806
Douglas Gregor641040a2011-01-12 23:45:44 +00005807 return true;
5808}
Douglas Gregord5cb1dd2010-03-28 02:42:43 +00005809
Douglas Gregorfd4344b2011-01-13 00:08:50 +00005810/// \brief Diagnose a known arity mismatch when comparing template argument
5811/// lists.
5812static
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005813void DiagnoseTemplateParameterListArityMismatch(Sema &S,
Douglas Gregorfd4344b2011-01-13 00:08:50 +00005814 TemplateParameterList *New,
5815 TemplateParameterList *Old,
5816 Sema::TemplateParameterListEqualKind Kind,
5817 SourceLocation TemplateArgLoc) {
5818 unsigned NextDiag = diag::err_template_param_list_different_arity;
5819 if (TemplateArgLoc.isValid()) {
5820 S.Diag(TemplateArgLoc, diag::err_template_arg_template_params_mismatch);
5821 NextDiag = diag::note_template_param_list_different_arity;
5822 }
5823 S.Diag(New->getTemplateLoc(), NextDiag)
5824 << (New->size() > Old->size())
5825 << (Kind != Sema::TPL_TemplateMatch)
5826 << SourceRange(New->getTemplateLoc(), New->getRAngleLoc());
5827 S.Diag(Old->getTemplateLoc(), diag::note_template_prev_declaration)
5828 << (Kind != Sema::TPL_TemplateMatch)
5829 << SourceRange(Old->getTemplateLoc(), Old->getRAngleLoc());
5830}
5831
Douglas Gregorcd72ba92009-02-06 22:42:48 +00005832/// \brief Determine whether the given template parameter lists are
5833/// equivalent.
5834///
Mike Stump11289f42009-09-09 15:08:12 +00005835/// \param New The new template parameter list, typically written in the
Douglas Gregorcd72ba92009-02-06 22:42:48 +00005836/// source code as part of a new template declaration.
5837///
5838/// \param Old The old template parameter list, typically found via
5839/// name lookup of the template declared with this template parameter
5840/// list.
5841///
5842/// \param Complain If true, this routine will produce a diagnostic if
5843/// the template parameter lists are not equivalent.
5844///
Douglas Gregor19ac2d62009-11-12 16:20:59 +00005845/// \param Kind describes how we are to match the template parameter lists.
Douglas Gregor85e0f662009-02-10 00:24:35 +00005846///
5847/// \param TemplateArgLoc If this source location is valid, then we
5848/// are actually checking the template parameter list of a template
5849/// argument (New) against the template parameter list of its
5850/// corresponding template template parameter (Old). We produce
5851/// slightly different diagnostics in this scenario.
5852///
Douglas Gregorcd72ba92009-02-06 22:42:48 +00005853/// \returns True if the template parameter lists are equal, false
5854/// otherwise.
Mike Stump11289f42009-09-09 15:08:12 +00005855bool
Douglas Gregorcd72ba92009-02-06 22:42:48 +00005856Sema::TemplateParameterListsAreEqual(TemplateParameterList *New,
5857 TemplateParameterList *Old,
5858 bool Complain,
Douglas Gregor19ac2d62009-11-12 16:20:59 +00005859 TemplateParameterListEqualKind Kind,
Douglas Gregor85e0f662009-02-10 00:24:35 +00005860 SourceLocation TemplateArgLoc) {
Douglas Gregorfd4344b2011-01-13 00:08:50 +00005861 if (Old->size() != New->size() && Kind != TPL_TemplateTemplateArgumentMatch) {
5862 if (Complain)
5863 DiagnoseTemplateParameterListArityMismatch(*this, New, Old, Kind,
5864 TemplateArgLoc);
Douglas Gregorcd72ba92009-02-06 22:42:48 +00005865
5866 return false;
5867 }
5868
Douglas Gregor641040a2011-01-12 23:45:44 +00005869 // C++0x [temp.arg.template]p3:
5870 // A template-argument matches a template template-parameter (call it P)
NAKAMURA Takumi7c288862011-01-27 07:09:49 +00005871 // when each of the template parameters in the template-parameter-list of
Richard Smith3f1b5d02011-05-05 21:57:07 +00005872 // the template-argument's corresponding class template or alias template
NAKAMURA Takumi7c288862011-01-27 07:09:49 +00005873 // (call it A) matches the corresponding template parameter in the
Douglas Gregorfd4344b2011-01-13 00:08:50 +00005874 // template-parameter-list of P. [...]
5875 TemplateParameterList::iterator NewParm = New->begin();
5876 TemplateParameterList::iterator NewParmEnd = New->end();
Douglas Gregorcd72ba92009-02-06 22:42:48 +00005877 for (TemplateParameterList::iterator OldParm = Old->begin(),
Douglas Gregorfd4344b2011-01-13 00:08:50 +00005878 OldParmEnd = Old->end();
5879 OldParm != OldParmEnd; ++OldParm) {
Douglas Gregor018778a2011-01-13 18:47:47 +00005880 if (Kind != TPL_TemplateTemplateArgumentMatch ||
5881 !(*OldParm)->isTemplateParameterPack()) {
Douglas Gregorfd4344b2011-01-13 00:08:50 +00005882 if (NewParm == NewParmEnd) {
5883 if (Complain)
5884 DiagnoseTemplateParameterListArityMismatch(*this, New, Old, Kind,
5885 TemplateArgLoc);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005886
Douglas Gregorfd4344b2011-01-13 00:08:50 +00005887 return false;
5888 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005889
Douglas Gregorfd4344b2011-01-13 00:08:50 +00005890 if (!MatchTemplateParameterKind(*this, *NewParm, *OldParm, Complain,
5891 Kind, TemplateArgLoc))
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005892 return false;
5893
Douglas Gregorfd4344b2011-01-13 00:08:50 +00005894 ++NewParm;
5895 continue;
5896 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005897
Douglas Gregorfd4344b2011-01-13 00:08:50 +00005898 // C++0x [temp.arg.template]p3:
NAKAMURA Takumi7c288862011-01-27 07:09:49 +00005899 // [...] When P's template- parameter-list contains a template parameter
5900 // pack (14.5.3), the template parameter pack will match zero or more
5901 // template parameters or template parameter packs in the
Douglas Gregorfd4344b2011-01-13 00:08:50 +00005902 // template-parameter-list of A with the same type and form as the
5903 // template parameter pack in P (ignoring whether those template
5904 // parameters are template parameter packs).
5905 for (; NewParm != NewParmEnd; ++NewParm) {
5906 if (!MatchTemplateParameterKind(*this, *NewParm, *OldParm, Complain,
5907 Kind, TemplateArgLoc))
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005908 return false;
Douglas Gregorfd4344b2011-01-13 00:08:50 +00005909 }
Douglas Gregorcd72ba92009-02-06 22:42:48 +00005910 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005911
Douglas Gregorfd4344b2011-01-13 00:08:50 +00005912 // Make sure we exhausted all of the arguments.
5913 if (NewParm != NewParmEnd) {
5914 if (Complain)
5915 DiagnoseTemplateParameterListArityMismatch(*this, New, Old, Kind,
5916 TemplateArgLoc);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005917
Douglas Gregorfd4344b2011-01-13 00:08:50 +00005918 return false;
5919 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005920
Douglas Gregorcd72ba92009-02-06 22:42:48 +00005921 return true;
5922}
5923
5924/// \brief Check whether a template can be declared within this scope.
5925///
5926/// If the template declaration is valid in this scope, returns
5927/// false. Otherwise, issues a diagnostic and returns true.
Mike Stump11289f42009-09-09 15:08:12 +00005928bool
Douglas Gregor1d5e9f92009-08-25 17:23:04 +00005929Sema::CheckTemplateDeclScope(Scope *S, TemplateParameterList *TemplateParams) {
Douglas Gregordd847ba2011-11-03 16:37:14 +00005930 if (!S)
5931 return false;
5932
Douglas Gregorcd72ba92009-02-06 22:42:48 +00005933 // Find the nearest enclosing declaration scope.
5934 while ((S->getFlags() & Scope::DeclScope) == 0 ||
5935 (S->getFlags() & Scope::TemplateParamScope) != 0)
5936 S = S->getParent();
Mike Stump11289f42009-09-09 15:08:12 +00005937
Benjamin Kramer35e6fee2014-02-02 16:35:43 +00005938 // C++ [temp]p4:
5939 // A template [...] shall not have C linkage.
Ted Kremenekc37877d2013-10-08 17:08:03 +00005940 DeclContext *Ctx = S->getEntity();
Alex Lorenz560ae562016-11-02 15:46:34 +00005941 if (Ctx && Ctx->isExternCContext()) {
5942 Diag(TemplateParams->getTemplateLoc(), diag::err_template_linkage)
5943 << TemplateParams->getSourceRange();
5944 if (const LinkageSpecDecl *LSD = Ctx->getExternCContext())
5945 Diag(LSD->getExternLoc(), diag::note_extern_c_begins_here);
5946 return true;
5947 }
Richard Smith8df390f2016-09-08 23:14:54 +00005948 Ctx = Ctx->getRedeclContext();
Douglas Gregorcd72ba92009-02-06 22:42:48 +00005949
Benjamin Kramer35e6fee2014-02-02 16:35:43 +00005950 // C++ [temp]p2:
5951 // A template-declaration can appear only as a namespace scope or
5952 // class scope declaration.
David Majnemer766e2592013-10-22 04:14:18 +00005953 if (Ctx) {
5954 if (Ctx->isFileContext())
5955 return false;
5956 if (CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(Ctx)) {
5957 // C++ [temp.mem]p2:
5958 // A local class shall not have member templates.
5959 if (RD->isLocalClass())
5960 return Diag(TemplateParams->getTemplateLoc(),
5961 diag::err_template_inside_local_class)
5962 << TemplateParams->getSourceRange();
5963 else
5964 return false;
5965 }
5966 }
Douglas Gregorcd72ba92009-02-06 22:42:48 +00005967
Mike Stump11289f42009-09-09 15:08:12 +00005968 return Diag(TemplateParams->getTemplateLoc(),
Douglas Gregor1d5e9f92009-08-25 17:23:04 +00005969 diag::err_template_outside_namespace_or_class_scope)
5970 << TemplateParams->getSourceRange();
Douglas Gregorcd72ba92009-02-06 22:42:48 +00005971}
Douglas Gregor67a65642009-02-17 23:15:12 +00005972
Douglas Gregor54888652009-10-07 00:13:32 +00005973/// \brief Determine what kind of template specialization the given declaration
5974/// is.
Douglas Gregor0bc8a212012-01-14 15:55:47 +00005975static TemplateSpecializationKind getTemplateSpecializationKind(Decl *D) {
Douglas Gregor54888652009-10-07 00:13:32 +00005976 if (!D)
5977 return TSK_Undeclared;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005978
Douglas Gregorbbe8f462009-10-08 15:14:33 +00005979 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(D))
5980 return Record->getTemplateSpecializationKind();
Douglas Gregor54888652009-10-07 00:13:32 +00005981 if (FunctionDecl *Function = dyn_cast<FunctionDecl>(D))
5982 return Function->getTemplateSpecializationKind();
Douglas Gregor86d142a2009-10-08 07:24:58 +00005983 if (VarDecl *Var = dyn_cast<VarDecl>(D))
5984 return Var->getTemplateSpecializationKind();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005985
Douglas Gregor54888652009-10-07 00:13:32 +00005986 return TSK_Undeclared;
5987}
5988
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005989/// \brief Check whether a specialization is well-formed in the current
Douglas Gregorba8e1ac2009-10-14 23:50:59 +00005990/// context.
Douglas Gregorf47b9112009-02-25 22:02:03 +00005991///
Douglas Gregorba8e1ac2009-10-14 23:50:59 +00005992/// This routine determines whether a template specialization can be declared
5993/// in the current context (C++ [temp.expl.spec]p2).
Douglas Gregor54888652009-10-07 00:13:32 +00005994///
5995/// \param S the semantic analysis object for which this check is being
5996/// performed.
5997///
5998/// \param Specialized the entity being specialized or instantiated, which
5999/// may be a kind of template (class template, function template, etc.) or
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006000/// a member of a class template (member function, static data member,
Douglas Gregor54888652009-10-07 00:13:32 +00006001/// member class).
6002///
6003/// \param PrevDecl the previous declaration of this entity, if any.
6004///
6005/// \param Loc the location of the explicit specialization or instantiation of
6006/// this entity.
6007///
6008/// \param IsPartialSpecialization whether this is a partial specialization of
6009/// a class template.
6010///
Douglas Gregor54888652009-10-07 00:13:32 +00006011/// \returns true if there was an error that we cannot recover from, false
6012/// otherwise.
6013static bool CheckTemplateSpecializationScope(Sema &S,
6014 NamedDecl *Specialized,
6015 NamedDecl *PrevDecl,
6016 SourceLocation Loc,
Douglas Gregorba8e1ac2009-10-14 23:50:59 +00006017 bool IsPartialSpecialization) {
Douglas Gregor54888652009-10-07 00:13:32 +00006018 // Keep these "kind" numbers in sync with the %select statements in the
6019 // various diagnostics emitted by this routine.
6020 int EntityKind = 0;
Ted Kremenek7f1f3f62011-01-14 22:31:36 +00006021 if (isa<ClassTemplateDecl>(Specialized))
Douglas Gregor54888652009-10-07 00:13:32 +00006022 EntityKind = IsPartialSpecialization? 1 : 0;
Larisse Voufo39a1e502013-08-06 01:03:05 +00006023 else if (isa<VarTemplateDecl>(Specialized))
6024 EntityKind = IsPartialSpecialization ? 3 : 2;
Ted Kremenek7f1f3f62011-01-14 22:31:36 +00006025 else if (isa<FunctionTemplateDecl>(Specialized))
Douglas Gregor54888652009-10-07 00:13:32 +00006026 EntityKind = 4;
Larisse Voufo39a1e502013-08-06 01:03:05 +00006027 else if (isa<CXXMethodDecl>(Specialized))
Douglas Gregor54888652009-10-07 00:13:32 +00006028 EntityKind = 5;
Larisse Voufo39a1e502013-08-06 01:03:05 +00006029 else if (isa<VarDecl>(Specialized))
Richard Smith7d137e32012-03-23 03:33:32 +00006030 EntityKind = 6;
Larisse Voufo39a1e502013-08-06 01:03:05 +00006031 else if (isa<RecordDecl>(Specialized))
6032 EntityKind = 7;
6033 else if (isa<EnumDecl>(Specialized) && S.getLangOpts().CPlusPlus11)
6034 EntityKind = 8;
Douglas Gregor54888652009-10-07 00:13:32 +00006035 else {
Richard Smith7d137e32012-03-23 03:33:32 +00006036 S.Diag(Loc, diag::err_template_spec_unknown_kind)
Richard Smith2bf7fdb2013-01-02 11:42:31 +00006037 << S.getLangOpts().CPlusPlus11;
Douglas Gregorba8e1ac2009-10-14 23:50:59 +00006038 S.Diag(Specialized->getLocation(), diag::note_specialized_entity);
Douglas Gregor54888652009-10-07 00:13:32 +00006039 return true;
6040 }
6041
Douglas Gregorf47b9112009-02-25 22:02:03 +00006042 // C++ [temp.expl.spec]p2:
6043 // An explicit specialization shall be declared in the namespace
6044 // of which the template is a member, or, for member templates, in
6045 // the namespace of which the enclosing class or enclosing class
6046 // template is a member. An explicit specialization of a member
6047 // function, member class or static data member of a class
6048 // template shall be declared in the namespace of which the class
6049 // template is a member. Such a declaration may also be a
6050 // definition. If the declaration is not a definition, the
6051 // specialization may be defined later in the name- space in which
6052 // the explicit specialization was declared, or in a namespace
6053 // that encloses the one in which the explicit specialization was
6054 // declared.
Sebastian Redl50c68252010-08-31 00:36:30 +00006055 if (S.CurContext->getRedeclContext()->isFunctionOrMethod()) {
Douglas Gregor54888652009-10-07 00:13:32 +00006056 S.Diag(Loc, diag::err_template_spec_decl_function_scope)
Douglas Gregorba8e1ac2009-10-14 23:50:59 +00006057 << Specialized;
Douglas Gregorf47b9112009-02-25 22:02:03 +00006058 return true;
6059 }
Douglas Gregore4b05162009-10-07 17:21:34 +00006060
Douglas Gregor40fb7442009-10-07 17:30:37 +00006061 if (S.CurContext->isRecord() && !IsPartialSpecialization) {
David Blaikiebbafb8a2012-03-11 07:00:24 +00006062 if (S.getLangOpts().MicrosoftExt) {
Francois Pichet00c7e6c2011-08-14 03:52:19 +00006063 // Do not warn for class scope explicit specialization during
6064 // instantiation, warning was already emitted during pattern
6065 // semantic analysis.
6066 if (!S.ActiveTemplateInstantiations.size())
6067 S.Diag(Loc, diag::ext_function_specialization_in_class)
6068 << Specialized;
6069 } else {
6070 S.Diag(Loc, diag::err_template_spec_decl_class_scope)
6071 << Specialized;
6072 return true;
6073 }
Douglas Gregor40fb7442009-10-07 17:30:37 +00006074 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006075
Douglas Gregor44e5a0a2011-10-20 16:41:18 +00006076 if (S.CurContext->isRecord() &&
6077 !S.CurContext->Equals(Specialized->getDeclContext())) {
6078 // Make sure that we're specializing in the right record context.
6079 // Otherwise, things can go horribly wrong.
6080 S.Diag(Loc, diag::err_template_spec_decl_class_scope)
6081 << Specialized;
6082 return true;
6083 }
6084
Douglas Gregore4b05162009-10-07 17:21:34 +00006085 // C++ [temp.class.spec]p6:
6086 // A class template partial specialization may be declared or redeclared
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006087 // in any namespace scope in which its definition may be defined (14.5.1
6088 // and 14.5.2).
Richard Smitha98f8fc2013-12-07 05:09:50 +00006089 DeclContext *SpecializedContext
Douglas Gregor54888652009-10-07 00:13:32 +00006090 = Specialized->getDeclContext()->getEnclosingNamespaceContext();
Douglas Gregore4b05162009-10-07 17:21:34 +00006091 DeclContext *DC = S.CurContext->getEnclosingNamespaceContext();
Richard Smitha98f8fc2013-12-07 05:09:50 +00006092
6093 // Make sure that this redeclaration (or definition) occurs in an enclosing
6094 // namespace.
6095 // Note that HandleDeclarator() performs this check for explicit
6096 // specializations of function templates, static data members, and member
6097 // functions, so we skip the check here for those kinds of entities.
6098 // FIXME: HandleDeclarator's diagnostics aren't quite as good, though.
6099 // Should we refactor that check, so that it occurs later?
6100 if (!DC->Encloses(SpecializedContext) &&
6101 !(isa<FunctionTemplateDecl>(Specialized) ||
6102 isa<FunctionDecl>(Specialized) ||
6103 isa<VarTemplateDecl>(Specialized) ||
6104 isa<VarDecl>(Specialized))) {
6105 if (isa<TranslationUnitDecl>(SpecializedContext))
6106 S.Diag(Loc, diag::err_template_spec_redecl_global_scope)
6107 << EntityKind << Specialized;
Alexey Bataev0068cb22015-03-20 07:21:46 +00006108 else if (isa<NamespaceDecl>(SpecializedContext)) {
6109 int Diag = diag::err_template_spec_redecl_out_of_scope;
6110 if (S.getLangOpts().MicrosoftExt)
6111 Diag = diag::ext_ms_template_spec_redecl_out_of_scope;
6112 S.Diag(Loc, Diag) << EntityKind << Specialized
6113 << cast<NamedDecl>(SpecializedContext);
6114 } else
Richard Smitha98f8fc2013-12-07 05:09:50 +00006115 llvm_unreachable("unexpected namespace context for specialization");
6116
6117 S.Diag(Specialized->getLocation(), diag::note_specialized_entity);
6118 } else if ((!PrevDecl ||
6119 getTemplateSpecializationKind(PrevDecl) == TSK_Undeclared ||
6120 getTemplateSpecializationKind(PrevDecl) ==
6121 TSK_ImplicitInstantiation)) {
Douglas Gregorb1aab432010-09-12 05:08:28 +00006122 // C++ [temp.exp.spec]p2:
6123 // An explicit specialization shall be declared in the namespace of which
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006124 // the template is a member, or, for member templates, in the namespace
Douglas Gregorb1aab432010-09-12 05:08:28 +00006125 // of which the enclosing class or enclosing class template is a member.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006126 // An explicit specialization of a member function, member class or
6127 // static data member of a class template shall be declared in the
Douglas Gregorb1aab432010-09-12 05:08:28 +00006128 // namespace of which the class template is a member.
6129 //
Richard Smitha98f8fc2013-12-07 05:09:50 +00006130 // C++11 [temp.expl.spec]p2:
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006131 // An explicit specialization shall be declared in a namespace enclosing
Douglas Gregorb1aab432010-09-12 05:08:28 +00006132 // the specialized template.
Richard Smitha98f8fc2013-12-07 05:09:50 +00006133 // C++11 [temp.explicit]p3:
6134 // An explicit instantiation shall appear in an enclosing namespace of its
6135 // template.
Richard Smith0bf8a4922011-10-18 20:49:44 +00006136 if (!DC->InEnclosingNamespaceSetOf(SpecializedContext)) {
Richard Smith2bf7fdb2013-01-02 11:42:31 +00006137 bool IsCPlusPlus11Extension = DC->Encloses(SpecializedContext);
Richard Smith0bf8a4922011-10-18 20:49:44 +00006138 if (isa<TranslationUnitDecl>(SpecializedContext)) {
Richard Smith2bf7fdb2013-01-02 11:42:31 +00006139 assert(!IsCPlusPlus11Extension &&
Richard Smith0bf8a4922011-10-18 20:49:44 +00006140 "DC encloses TU but isn't in enclosing namespace set");
6141 S.Diag(Loc, diag::err_template_spec_decl_out_of_scope_global)
Douglas Gregor8ce63152010-09-12 05:24:55 +00006142 << EntityKind << Specialized;
Richard Smith0bf8a4922011-10-18 20:49:44 +00006143 } else if (isa<NamespaceDecl>(SpecializedContext)) {
6144 int Diag;
Richard Smith2bf7fdb2013-01-02 11:42:31 +00006145 if (!IsCPlusPlus11Extension)
Richard Smith0bf8a4922011-10-18 20:49:44 +00006146 Diag = diag::err_template_spec_decl_out_of_scope;
Richard Smith2bf7fdb2013-01-02 11:42:31 +00006147 else if (!S.getLangOpts().CPlusPlus11)
Richard Smith0bf8a4922011-10-18 20:49:44 +00006148 Diag = diag::ext_template_spec_decl_out_of_scope;
6149 else
6150 Diag = diag::warn_cxx98_compat_template_spec_decl_out_of_scope;
6151 S.Diag(Loc, Diag)
6152 << EntityKind << Specialized << cast<NamedDecl>(SpecializedContext);
6153 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006154
Douglas Gregorba8e1ac2009-10-14 23:50:59 +00006155 S.Diag(Specialized->getLocation(), diag::note_specialized_entity);
Douglas Gregorf47b9112009-02-25 22:02:03 +00006156 }
Douglas Gregorf47b9112009-02-25 22:02:03 +00006157 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006158
Douglas Gregorf47b9112009-02-25 22:02:03 +00006159 return false;
6160}
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006161
Richard Smith6056d5e2014-02-09 00:54:43 +00006162static SourceRange findTemplateParameter(unsigned Depth, Expr *E) {
6163 if (!E->isInstantiationDependent())
6164 return SourceLocation();
6165 DependencyChecker Checker(Depth);
6166 Checker.TraverseStmt(E);
6167 if (Checker.Match && Checker.MatchLoc.isInvalid())
6168 return E->getSourceRange();
6169 return Checker.MatchLoc;
6170}
6171
6172static SourceRange findTemplateParameter(unsigned Depth, TypeLoc TL) {
6173 if (!TL.getType()->isDependentType())
6174 return SourceLocation();
6175 DependencyChecker Checker(Depth);
6176 Checker.TraverseTypeLoc(TL);
6177 if (Checker.Match && Checker.MatchLoc.isInvalid())
6178 return TL.getSourceRange();
6179 return Checker.MatchLoc;
6180}
6181
Larisse Voufo39a1e502013-08-06 01:03:05 +00006182/// \brief Subroutine of Sema::CheckTemplatePartialSpecializationArgs
Douglas Gregor875b6fe2011-01-03 21:13:47 +00006183/// that checks non-type template partial specialization arguments.
Larisse Voufo39a1e502013-08-06 01:03:05 +00006184static bool CheckNonTypeTemplatePartialSpecializationArgs(
Richard Smith6056d5e2014-02-09 00:54:43 +00006185 Sema &S, SourceLocation TemplateNameLoc, NonTypeTemplateParmDecl *Param,
6186 const TemplateArgument *Args, unsigned NumArgs, bool IsDefaultArgument) {
Douglas Gregor875b6fe2011-01-03 21:13:47 +00006187 for (unsigned I = 0; I != NumArgs; ++I) {
6188 if (Args[I].getKind() == TemplateArgument::Pack) {
Larisse Voufo39a1e502013-08-06 01:03:05 +00006189 if (CheckNonTypeTemplatePartialSpecializationArgs(
Richard Smith6056d5e2014-02-09 00:54:43 +00006190 S, TemplateNameLoc, Param, Args[I].pack_begin(),
6191 Args[I].pack_size(), IsDefaultArgument))
Douglas Gregor875b6fe2011-01-03 21:13:47 +00006192 return true;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006193
Douglas Gregor8cfd2ba2009-06-12 21:21:02 +00006194 continue;
Douglas Gregor875b6fe2011-01-03 21:13:47 +00006195 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006196
Eli Friedmanb826a002012-09-26 02:36:12 +00006197 if (Args[I].getKind() != TemplateArgument::Expression)
Douglas Gregor8cfd2ba2009-06-12 21:21:02 +00006198 continue;
Eli Friedmanb826a002012-09-26 02:36:12 +00006199
6200 Expr *ArgExpr = Args[I].getAsExpr();
Douglas Gregor8cfd2ba2009-06-12 21:21:02 +00006201
Douglas Gregor98318c22011-01-03 21:37:45 +00006202 // We can have a pack expansion of any of the bullets below.
Douglas Gregor875b6fe2011-01-03 21:13:47 +00006203 if (PackExpansionExpr *Expansion = dyn_cast<PackExpansionExpr>(ArgExpr))
6204 ArgExpr = Expansion->getPattern();
Douglas Gregorca4686d2011-01-04 23:35:54 +00006205
6206 // Strip off any implicit casts we added as part of type checking.
6207 while (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(ArgExpr))
6208 ArgExpr = ICE->getSubExpr();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006209
Douglas Gregor8cfd2ba2009-06-12 21:21:02 +00006210 // C++ [temp.class.spec]p8:
6211 // A non-type argument is non-specialized if it is the name of a
6212 // non-type parameter. All other non-type arguments are
6213 // specialized.
6214 //
6215 // Below, we check the two conditions that only apply to
6216 // specialized non-type arguments, so skip any non-specialized
6217 // arguments.
6218 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(ArgExpr))
Douglas Gregorca4686d2011-01-04 23:35:54 +00006219 if (isa<NonTypeTemplateParmDecl>(DRE->getDecl()))
Douglas Gregor8cfd2ba2009-06-12 21:21:02 +00006220 continue;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006221
Douglas Gregor8cfd2ba2009-06-12 21:21:02 +00006222 // C++ [temp.class.spec]p9:
6223 // Within the argument list of a class template partial
6224 // specialization, the following restrictions apply:
6225 // -- A partially specialized non-type argument expression
6226 // shall not involve a template parameter of the partial
6227 // specialization except when the argument expression is a
6228 // simple identifier.
Richard Smith6056d5e2014-02-09 00:54:43 +00006229 SourceRange ParamUseRange =
6230 findTemplateParameter(Param->getDepth(), ArgExpr);
6231 if (ParamUseRange.isValid()) {
6232 if (IsDefaultArgument) {
6233 S.Diag(TemplateNameLoc,
6234 diag::err_dependent_non_type_arg_in_partial_spec);
6235 S.Diag(ParamUseRange.getBegin(),
6236 diag::note_dependent_non_type_default_arg_in_partial_spec)
6237 << ParamUseRange;
6238 } else {
6239 S.Diag(ParamUseRange.getBegin(),
6240 diag::err_dependent_non_type_arg_in_partial_spec)
6241 << ParamUseRange;
6242 }
Douglas Gregor8cfd2ba2009-06-12 21:21:02 +00006243 return true;
6244 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006245
Douglas Gregor8cfd2ba2009-06-12 21:21:02 +00006246 // -- The type of a template parameter corresponding to a
6247 // specialized non-type argument shall not be dependent on a
6248 // parameter of the specialization.
Richard Smith6056d5e2014-02-09 00:54:43 +00006249 //
6250 // FIXME: We need to delay this check until instantiation in some cases:
6251 //
6252 // template<template<typename> class X> struct A {
6253 // template<typename T, X<T> N> struct B;
6254 // template<typename T> struct B<T, 0>;
6255 // };
6256 // template<typename> using X = int;
6257 // A<X>::B<int, 0> b;
6258 ParamUseRange = findTemplateParameter(
6259 Param->getDepth(), Param->getTypeSourceInfo()->getTypeLoc());
6260 if (ParamUseRange.isValid()) {
6261 S.Diag(IsDefaultArgument ? TemplateNameLoc : ArgExpr->getLocStart(),
6262 diag::err_dependent_typed_non_type_arg_in_partial_spec)
6263 << Param->getType() << ParamUseRange;
6264 S.Diag(Param->getLocation(), diag::note_template_param_here)
6265 << (IsDefaultArgument ? ParamUseRange : SourceRange());
Douglas Gregor8cfd2ba2009-06-12 21:21:02 +00006266 return true;
6267 }
6268 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006269
Douglas Gregor875b6fe2011-01-03 21:13:47 +00006270 return false;
6271}
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006272
Douglas Gregor875b6fe2011-01-03 21:13:47 +00006273/// \brief Check the non-type template arguments of a class template
6274/// partial specialization according to C++ [temp.class.spec]p9.
6275///
Richard Smith6056d5e2014-02-09 00:54:43 +00006276/// \param TemplateNameLoc the location of the template name.
Douglas Gregor875b6fe2011-01-03 21:13:47 +00006277/// \param TemplateParams the template parameters of the primary class
Richard Smith6056d5e2014-02-09 00:54:43 +00006278/// template.
6279/// \param NumExplicit the number of explicitly-specified template arguments.
James Dennett634962f2012-06-14 21:40:34 +00006280/// \param TemplateArgs the template arguments of the class template
Richard Smith6056d5e2014-02-09 00:54:43 +00006281/// partial specialization.
Douglas Gregor875b6fe2011-01-03 21:13:47 +00006282///
Richard Smith6056d5e2014-02-09 00:54:43 +00006283/// \returns \c true if there was an error, \c false otherwise.
Larisse Voufo39a1e502013-08-06 01:03:05 +00006284static bool CheckTemplatePartialSpecializationArgs(
Richard Smith6056d5e2014-02-09 00:54:43 +00006285 Sema &S, SourceLocation TemplateNameLoc,
6286 TemplateParameterList *TemplateParams, unsigned NumExplicit,
Larisse Voufo39a1e502013-08-06 01:03:05 +00006287 SmallVectorImpl<TemplateArgument> &TemplateArgs) {
Douglas Gregor875b6fe2011-01-03 21:13:47 +00006288 const TemplateArgument *ArgList = TemplateArgs.data();
6289
6290 for (unsigned I = 0, N = TemplateParams->size(); I != N; ++I) {
6291 NonTypeTemplateParmDecl *Param
6292 = dyn_cast<NonTypeTemplateParmDecl>(TemplateParams->getParam(I));
6293 if (!Param)
6294 continue;
6295
Richard Smith6056d5e2014-02-09 00:54:43 +00006296 if (CheckNonTypeTemplatePartialSpecializationArgs(
6297 S, TemplateNameLoc, Param, &ArgList[I], 1, I >= NumExplicit))
Douglas Gregor875b6fe2011-01-03 21:13:47 +00006298 return true;
6299 }
Douglas Gregor8cfd2ba2009-06-12 21:21:02 +00006300
6301 return false;
6302}
6303
John McCall48871652010-08-21 09:40:31 +00006304DeclResult
John McCall9bb74a52009-07-31 02:45:11 +00006305Sema::ActOnClassTemplateSpecialization(Scope *S, unsigned TagSpec,
6306 TagUseKind TUK,
Mike Stump11289f42009-09-09 15:08:12 +00006307 SourceLocation KWLoc,
Douglas Gregor3c7cd6a2011-09-09 20:53:38 +00006308 SourceLocation ModulePrivateLoc,
Richard Smith4b55a9c2014-04-17 03:29:33 +00006309 TemplateIdAnnotation &TemplateId,
Douglas Gregor67a65642009-02-17 23:15:12 +00006310 AttributeList *Attr,
Richard Smithc7e6ff02015-05-18 20:36:47 +00006311 MultiTemplateParamsArg
6312 TemplateParameterLists,
6313 SkipBodyInfo *SkipBody) {
Douglas Gregor2208a292009-09-26 20:57:03 +00006314 assert(TUK != TUK_Reference && "References are not specializations");
John McCall06f6fe8d2009-09-04 01:14:41 +00006315
Richard Smith4b55a9c2014-04-17 03:29:33 +00006316 CXXScopeSpec &SS = TemplateId.SS;
6317
Abramo Bagnara60804e12011-03-18 15:16:37 +00006318 // NOTE: KWLoc is the location of the tag keyword. This will instead
6319 // store the location of the outermost template keyword in the declaration.
6320 SourceLocation TemplateKWLoc = TemplateParameterLists.size() > 0
Richard Smith4b55a9c2014-04-17 03:29:33 +00006321 ? TemplateParameterLists[0]->getTemplateLoc() : KWLoc;
6322 SourceLocation TemplateNameLoc = TemplateId.TemplateNameLoc;
6323 SourceLocation LAngleLoc = TemplateId.LAngleLoc;
6324 SourceLocation RAngleLoc = TemplateId.RAngleLoc;
Abramo Bagnara60804e12011-03-18 15:16:37 +00006325
Douglas Gregor67a65642009-02-17 23:15:12 +00006326 // Find the class template we're specializing
Richard Smith4b55a9c2014-04-17 03:29:33 +00006327 TemplateName Name = TemplateId.Template.get();
Mike Stump11289f42009-09-09 15:08:12 +00006328 ClassTemplateDecl *ClassTemplate
Douglas Gregordd6c0352009-11-12 00:46:20 +00006329 = dyn_cast_or_null<ClassTemplateDecl>(Name.getAsTemplateDecl());
6330
6331 if (!ClassTemplate) {
6332 Diag(TemplateNameLoc, diag::err_not_class_template_specialization)
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006333 << (Name.getAsTemplateDecl() &&
Douglas Gregordd6c0352009-11-12 00:46:20 +00006334 isa<TemplateTemplateParmDecl>(Name.getAsTemplateDecl()));
6335 return true;
6336 }
Douglas Gregor67a65642009-02-17 23:15:12 +00006337
Douglas Gregor5c0405d2009-10-07 22:35:40 +00006338 bool isExplicitSpecialization = false;
Douglas Gregor2373c592009-05-31 09:31:02 +00006339 bool isPartialSpecialization = false;
6340
Douglas Gregorf47b9112009-02-25 22:02:03 +00006341 // Check the validity of the template headers that introduce this
6342 // template.
Douglas Gregor2208a292009-09-26 20:57:03 +00006343 // FIXME: We probably shouldn't complain about these headers for
6344 // friend declarations.
Douglas Gregor5f0e2522010-07-14 23:14:12 +00006345 bool Invalid = false;
Robert Wilhelmf2d2e8f2013-07-21 15:20:44 +00006346 TemplateParameterList *TemplateParams =
6347 MatchTemplateParametersToScopeSpecifier(
Richard Smith4b55a9c2014-04-17 03:29:33 +00006348 KWLoc, TemplateNameLoc, SS, &TemplateId,
6349 TemplateParameterLists, TUK == TUK_Friend, isExplicitSpecialization,
6350 Invalid);
Douglas Gregor5f0e2522010-07-14 23:14:12 +00006351 if (Invalid)
6352 return true;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006353
Douglas Gregor1d5e9f92009-08-25 17:23:04 +00006354 if (TemplateParams && TemplateParams->size() > 0) {
6355 isPartialSpecialization = true;
Douglas Gregorf47b9112009-02-25 22:02:03 +00006356
Douglas Gregorec9518b2010-12-21 08:14:57 +00006357 if (TUK == TUK_Friend) {
6358 Diag(KWLoc, diag::err_partial_specialization_friend)
6359 << SourceRange(LAngleLoc, RAngleLoc);
6360 return true;
6361 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006362
Douglas Gregor1d5e9f92009-08-25 17:23:04 +00006363 // C++ [temp.class.spec]p10:
6364 // The template parameter list of a specialization shall not
6365 // contain default template argument values.
6366 for (unsigned I = 0, N = TemplateParams->size(); I != N; ++I) {
6367 Decl *Param = TemplateParams->getParam(I);
6368 if (TemplateTypeParmDecl *TTP = dyn_cast<TemplateTypeParmDecl>(Param)) {
6369 if (TTP->hasDefaultArgument()) {
Mike Stump11289f42009-09-09 15:08:12 +00006370 Diag(TTP->getDefaultArgumentLoc(),
Douglas Gregor1d5e9f92009-08-25 17:23:04 +00006371 diag::err_default_arg_in_partial_spec);
John McCall0ad16662009-10-29 08:12:44 +00006372 TTP->removeDefaultArgument();
Douglas Gregor1d5e9f92009-08-25 17:23:04 +00006373 }
6374 } else if (NonTypeTemplateParmDecl *NTTP
6375 = dyn_cast<NonTypeTemplateParmDecl>(Param)) {
6376 if (Expr *DefArg = NTTP->getDefaultArgument()) {
Mike Stump11289f42009-09-09 15:08:12 +00006377 Diag(NTTP->getDefaultArgumentLoc(),
Douglas Gregor1d5e9f92009-08-25 17:23:04 +00006378 diag::err_default_arg_in_partial_spec)
6379 << DefArg->getSourceRange();
Abramo Bagnara656e3002010-06-09 09:26:05 +00006380 NTTP->removeDefaultArgument();
Douglas Gregor1d5e9f92009-08-25 17:23:04 +00006381 }
6382 } else {
6383 TemplateTemplateParmDecl *TTP = cast<TemplateTemplateParmDecl>(Param);
Douglas Gregor9167f8b2009-11-11 01:00:40 +00006384 if (TTP->hasDefaultArgument()) {
6385 Diag(TTP->getDefaultArgument().getLocation(),
Douglas Gregor1d5e9f92009-08-25 17:23:04 +00006386 diag::err_default_arg_in_partial_spec)
Douglas Gregor9167f8b2009-11-11 01:00:40 +00006387 << TTP->getDefaultArgument().getSourceRange();
Abramo Bagnara656e3002010-06-09 09:26:05 +00006388 TTP->removeDefaultArgument();
Douglas Gregord5222052009-06-12 19:43:02 +00006389 }
6390 }
6391 }
Douglas Gregor3a88c1d2009-10-13 14:39:41 +00006392 } else if (TemplateParams) {
6393 if (TUK == TUK_Friend)
6394 Diag(KWLoc, diag::err_template_spec_friend)
Douglas Gregora771f462010-03-31 17:46:05 +00006395 << FixItHint::CreateRemoval(
Douglas Gregor3a88c1d2009-10-13 14:39:41 +00006396 SourceRange(TemplateParams->getTemplateLoc(),
6397 TemplateParams->getRAngleLoc()))
6398 << SourceRange(LAngleLoc, RAngleLoc);
6399 else
6400 isExplicitSpecialization = true;
Richard Smith4b55a9c2014-04-17 03:29:33 +00006401 } else {
6402 assert(TUK == TUK_Friend && "should have a 'template<>' for this decl");
Douglas Gregor5c0405d2009-10-07 22:35:40 +00006403 }
Douglas Gregorf47b9112009-02-25 22:02:03 +00006404
Douglas Gregor67a65642009-02-17 23:15:12 +00006405 // Check that the specialization uses the same tag kind as the
6406 // original template.
Abramo Bagnara6150c882010-05-11 21:36:43 +00006407 TagTypeKind Kind = TypeWithKeyword::getTagTypeKindForTypeSpec(TagSpec);
6408 assert(Kind != TTK_Enum && "Invalid enum tag in class template spec!");
Douglas Gregord9034f02009-05-14 16:41:31 +00006409 if (!isAcceptableTagRedeclaration(ClassTemplate->getTemplatedDecl(),
Richard Trieucaa33d32011-06-10 03:11:26 +00006410 Kind, TUK == TUK_Definition, KWLoc,
Justin Bognerc6ecb7c2015-07-10 23:05:47 +00006411 ClassTemplate->getIdentifier())) {
Mike Stump11289f42009-09-09 15:08:12 +00006412 Diag(KWLoc, diag::err_use_with_wrong_tag)
Douglas Gregor170512f2009-04-01 23:51:29 +00006413 << ClassTemplate
Douglas Gregora771f462010-03-31 17:46:05 +00006414 << FixItHint::CreateReplacement(KWLoc,
Douglas Gregor170512f2009-04-01 23:51:29 +00006415 ClassTemplate->getTemplatedDecl()->getKindName());
Mike Stump11289f42009-09-09 15:08:12 +00006416 Diag(ClassTemplate->getTemplatedDecl()->getLocation(),
Douglas Gregor67a65642009-02-17 23:15:12 +00006417 diag::note_previous_use);
6418 Kind = ClassTemplate->getTemplatedDecl()->getTagKind();
6419 }
6420
Douglas Gregorc40290e2009-03-09 23:48:35 +00006421 // Translate the parser's template argument list in our AST format.
Richard Smith4b55a9c2014-04-17 03:29:33 +00006422 TemplateArgumentListInfo TemplateArgs =
6423 makeTemplateArgumentListInfo(*this, TemplateId);
Douglas Gregorc40290e2009-03-09 23:48:35 +00006424
Douglas Gregor14406932011-01-03 20:35:03 +00006425 // Check for unexpanded parameter packs in any of the template arguments.
6426 for (unsigned I = 0, N = TemplateArgs.size(); I != N; ++I)
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006427 if (DiagnoseUnexpandedParameterPack(TemplateArgs[I],
Douglas Gregor14406932011-01-03 20:35:03 +00006428 UPPC_PartialSpecialization))
6429 return true;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006430
Douglas Gregor67a65642009-02-17 23:15:12 +00006431 // Check that the template argument list is well-formed for this
6432 // template.
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006433 SmallVector<TemplateArgument, 4> Converted;
John McCall6b51f282009-11-23 01:53:49 +00006434 if (CheckTemplateArgumentList(ClassTemplate, TemplateNameLoc,
6435 TemplateArgs, false, Converted))
Douglas Gregorc08f4892009-03-25 00:13:59 +00006436 return true;
Douglas Gregor67a65642009-02-17 23:15:12 +00006437
Douglas Gregor2373c592009-05-31 09:31:02 +00006438 // Find the class template (partial) specialization declaration that
Douglas Gregor67a65642009-02-17 23:15:12 +00006439 // corresponds to these arguments.
Douglas Gregord5222052009-06-12 19:43:02 +00006440 if (isPartialSpecialization) {
Larisse Voufo39a1e502013-08-06 01:03:05 +00006441 if (CheckTemplatePartialSpecializationArgs(
Richard Smith6056d5e2014-02-09 00:54:43 +00006442 *this, TemplateNameLoc, ClassTemplate->getTemplateParameters(),
6443 TemplateArgs.size(), Converted))
Douglas Gregor8cfd2ba2009-06-12 21:21:02 +00006444 return true;
6445
Douglas Gregor678d76c2011-07-01 01:22:09 +00006446 bool InstantiationDependent;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006447 if (!Name.isDependent() &&
Douglas Gregor92354b62010-02-09 00:37:32 +00006448 !TemplateSpecializationType::anyDependentTemplateArguments(
David Majnemer6fbeee32016-07-07 04:43:07 +00006449 TemplateArgs.arguments(), InstantiationDependent)) {
Douglas Gregor92354b62010-02-09 00:37:32 +00006450 Diag(TemplateNameLoc, diag::err_partial_spec_fully_specialized)
6451 << ClassTemplate->getDeclName();
6452 isPartialSpecialization = false;
Douglas Gregor92354b62010-02-09 00:37:32 +00006453 }
6454 }
Argyrios Kyrtzidis47470f22010-07-20 13:59:28 +00006455
Craig Topperc3ec1492014-05-26 06:22:03 +00006456 void *InsertPos = nullptr;
6457 ClassTemplateSpecializationDecl *PrevDecl = nullptr;
Douglas Gregor2373c592009-05-31 09:31:02 +00006458
6459 if (isPartialSpecialization)
Argyrios Kyrtzidis47470f22010-07-20 13:59:28 +00006460 // FIXME: Template parameter list matters, too
Craig Topper7e0daca2014-06-26 04:58:53 +00006461 PrevDecl = ClassTemplate->findPartialSpecialization(Converted, InsertPos);
Douglas Gregor2373c592009-05-31 09:31:02 +00006462 else
Craig Topper7e0daca2014-06-26 04:58:53 +00006463 PrevDecl = ClassTemplate->findSpecialization(Converted, InsertPos);
Douglas Gregor67a65642009-02-17 23:15:12 +00006464
Craig Topperc3ec1492014-05-26 06:22:03 +00006465 ClassTemplateSpecializationDecl *Specialization = nullptr;
Douglas Gregor67a65642009-02-17 23:15:12 +00006466
Douglas Gregorf47b9112009-02-25 22:02:03 +00006467 // Check whether we can declare a class template specialization in
6468 // the current scope.
Douglas Gregor2208a292009-09-26 20:57:03 +00006469 if (TUK != TUK_Friend &&
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006470 CheckTemplateSpecializationScope(*this, ClassTemplate, PrevDecl,
6471 TemplateNameLoc,
Douglas Gregorba8e1ac2009-10-14 23:50:59 +00006472 isPartialSpecialization))
Douglas Gregorc08f4892009-03-25 00:13:59 +00006473 return true;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006474
Douglas Gregor15301382009-07-30 17:40:51 +00006475 // The canonical type
6476 QualType CanonType;
Richard Smith871cd4c2014-05-23 21:00:28 +00006477 if (isPartialSpecialization) {
Douglas Gregor15301382009-07-30 17:40:51 +00006478 // Build the canonical type that describes the converted template
6479 // arguments of the class template partial specialization.
Douglas Gregor92354b62010-02-09 00:37:32 +00006480 TemplateName CanonTemplate = Context.getCanonicalTemplateName(Name);
6481 CanonType = Context.getTemplateSpecializationType(CanonTemplate,
David Majnemer6fbeee32016-07-07 04:43:07 +00006482 Converted);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006483
6484 if (Context.hasSameType(CanonType,
Douglas Gregordd7ec4632010-12-23 17:13:55 +00006485 ClassTemplate->getInjectedClassNameSpecialization())) {
6486 // C++ [temp.class.spec]p9b3:
6487 //
6488 // -- The argument list of the specialization shall not be identical
6489 // to the implicit argument list of the primary template.
6490 Diag(TemplateNameLoc, diag::err_partial_spec_args_match_primary_template)
Richard Smith300e0c32013-09-24 04:49:23 +00006491 << /*class template*/0 << (TUK == TUK_Definition)
Douglas Gregor26701a42011-09-09 02:06:17 +00006492 << FixItHint::CreateRemoval(SourceRange(LAngleLoc, RAngleLoc));
Douglas Gregordd7ec4632010-12-23 17:13:55 +00006493 return CheckClassTemplate(S, TagSpec, TUK, KWLoc, SS,
6494 ClassTemplate->getIdentifier(),
6495 TemplateNameLoc,
6496 Attr,
6497 TemplateParams,
Douglas Gregor2820e692011-09-09 19:05:14 +00006498 AS_none, /*ModulePrivateLoc=*/SourceLocation(),
Nikola Smiljanic4fc91532014-07-17 01:59:34 +00006499 /*FriendLoc*/SourceLocation(),
Abramo Bagnara60804e12011-03-18 15:16:37 +00006500 TemplateParameterLists.size() - 1,
Benjamin Kramercc4c49d2012-08-23 23:38:35 +00006501 TemplateParameterLists.data());
Douglas Gregordd7ec4632010-12-23 17:13:55 +00006502 }
Douglas Gregor15301382009-07-30 17:40:51 +00006503
Douglas Gregor2373c592009-05-31 09:31:02 +00006504 // Create a new class template partial specialization declaration node.
Douglas Gregor2373c592009-05-31 09:31:02 +00006505 ClassTemplatePartialSpecializationDecl *PrevPartial
6506 = cast_or_null<ClassTemplatePartialSpecializationDecl>(PrevDecl);
Mike Stump11289f42009-09-09 15:08:12 +00006507 ClassTemplatePartialSpecializationDecl *Partial
Douglas Gregore9029562010-05-06 00:28:52 +00006508 = ClassTemplatePartialSpecializationDecl::Create(Context, Kind,
Douglas Gregor2373c592009-05-31 09:31:02 +00006509 ClassTemplate->getDeclContext(),
Abramo Bagnara29c2d462011-03-09 14:09:51 +00006510 KWLoc, TemplateNameLoc,
Anders Carlsson1b28c3e2009-06-05 04:06:48 +00006511 TemplateParams,
6512 ClassTemplate,
David Majnemer8b622692016-07-03 21:17:51 +00006513 Converted,
John McCall6b51f282009-11-23 01:53:49 +00006514 TemplateArgs,
John McCalle78aac42010-03-10 03:28:59 +00006515 CanonType,
Richard Smithb2f61b42013-08-22 23:27:37 +00006516 PrevPartial);
John McCall3e11ebe2010-03-15 10:12:16 +00006517 SetNestedNameSpecifier(Partial, SS);
Abramo Bagnara60804e12011-03-18 15:16:37 +00006518 if (TemplateParameterLists.size() > 1 && SS.isSet()) {
Benjamin Kramer9cc210652015-08-05 09:40:49 +00006519 Partial->setTemplateParameterListsInfo(
6520 Context, TemplateParameterLists.drop_back(1));
Abramo Bagnarada41d0c2010-06-12 08:15:14 +00006521 }
Douglas Gregor2373c592009-05-31 09:31:02 +00006522
Argyrios Kyrtzidis47470f22010-07-20 13:59:28 +00006523 if (!PrevPartial)
6524 ClassTemplate->AddPartialSpecialization(Partial, InsertPos);
Douglas Gregor2373c592009-05-31 09:31:02 +00006525 Specialization = Partial;
Douglas Gregor91772d12009-06-13 00:26:55 +00006526
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006527 // If we are providing an explicit specialization of a member class
Douglas Gregor21610382009-10-29 00:04:11 +00006528 // template specialization, make a note of that.
6529 if (PrevPartial && PrevPartial->getInstantiatedFromMember())
6530 PrevPartial->setMemberSpecialization();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006531
Douglas Gregor91772d12009-06-13 00:26:55 +00006532 // Check that all of the template parameters of the class template
6533 // partial specialization are deducible from the template
6534 // arguments. If not, this class template partial specialization
6535 // will never be used.
Benjamin Kramere0513cb2012-01-30 16:17:39 +00006536 llvm::SmallBitVector DeducibleParams(TemplateParams->size());
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006537 MarkUsedTemplateParameters(Partial->getTemplateArgs(), true,
Douglas Gregor21610382009-10-29 00:04:11 +00006538 TemplateParams->getDepth(),
Douglas Gregore1d2ef32009-09-14 21:25:05 +00006539 DeducibleParams);
Douglas Gregor91772d12009-06-13 00:26:55 +00006540
Benjamin Kramere0513cb2012-01-30 16:17:39 +00006541 if (!DeducibleParams.all()) {
6542 unsigned NumNonDeducible = DeducibleParams.size()-DeducibleParams.count();
Douglas Gregor91772d12009-06-13 00:26:55 +00006543 Diag(TemplateNameLoc, diag::warn_partial_specs_not_deducible)
Richard Smith300e0c32013-09-24 04:49:23 +00006544 << /*class template*/0 << (NumNonDeducible > 1)
Douglas Gregor91772d12009-06-13 00:26:55 +00006545 << SourceRange(TemplateNameLoc, RAngleLoc);
6546 for (unsigned I = 0, N = DeducibleParams.size(); I != N; ++I) {
6547 if (!DeducibleParams[I]) {
6548 NamedDecl *Param = cast<NamedDecl>(TemplateParams->getParam(I));
6549 if (Param->getDeclName())
Mike Stump11289f42009-09-09 15:08:12 +00006550 Diag(Param->getLocation(),
Douglas Gregor91772d12009-06-13 00:26:55 +00006551 diag::note_partial_spec_unused_parameter)
6552 << Param->getDeclName();
6553 else
Mike Stump11289f42009-09-09 15:08:12 +00006554 Diag(Param->getLocation(),
Douglas Gregor91772d12009-06-13 00:26:55 +00006555 diag::note_partial_spec_unused_parameter)
David Blaikieabe1a392014-04-02 05:58:29 +00006556 << "(anonymous)";
Douglas Gregor91772d12009-06-13 00:26:55 +00006557 }
6558 }
6559 }
Douglas Gregor67a65642009-02-17 23:15:12 +00006560 } else {
6561 // Create a new class template specialization declaration node for
Douglas Gregor2208a292009-09-26 20:57:03 +00006562 // this explicit specialization or friend declaration.
Douglas Gregor67a65642009-02-17 23:15:12 +00006563 Specialization
Douglas Gregore9029562010-05-06 00:28:52 +00006564 = ClassTemplateSpecializationDecl::Create(Context, Kind,
Douglas Gregor67a65642009-02-17 23:15:12 +00006565 ClassTemplate->getDeclContext(),
Abramo Bagnara29c2d462011-03-09 14:09:51 +00006566 KWLoc, TemplateNameLoc,
Mike Stump11289f42009-09-09 15:08:12 +00006567 ClassTemplate,
David Majnemer8b622692016-07-03 21:17:51 +00006568 Converted,
Douglas Gregor67a65642009-02-17 23:15:12 +00006569 PrevDecl);
John McCall3e11ebe2010-03-15 10:12:16 +00006570 SetNestedNameSpecifier(Specialization, SS);
Abramo Bagnara60804e12011-03-18 15:16:37 +00006571 if (TemplateParameterLists.size() > 0) {
Douglas Gregor20527e22010-06-15 17:44:38 +00006572 Specialization->setTemplateParameterListsInfo(Context,
Benjamin Kramer9cc210652015-08-05 09:40:49 +00006573 TemplateParameterLists);
Abramo Bagnarada41d0c2010-06-12 08:15:14 +00006574 }
Douglas Gregor67a65642009-02-17 23:15:12 +00006575
Argyrios Kyrtzidis47470f22010-07-20 13:59:28 +00006576 if (!PrevDecl)
6577 ClassTemplate->AddSpecialization(Specialization, InsertPos);
Douglas Gregor15301382009-07-30 17:40:51 +00006578
David Majnemer678f50b2015-11-18 19:49:19 +00006579 if (CurContext->isDependentContext()) {
6580 // -fms-extensions permits specialization of nested classes without
6581 // fully specializing the outer class(es).
6582 assert(getLangOpts().MicrosoftExt &&
6583 "Only possible with -fms-extensions!");
6584 TemplateName CanonTemplate = Context.getCanonicalTemplateName(Name);
6585 CanonType = Context.getTemplateSpecializationType(
David Majnemer6fbeee32016-07-07 04:43:07 +00006586 CanonTemplate, Converted);
David Majnemer678f50b2015-11-18 19:49:19 +00006587 } else {
6588 CanonType = Context.getTypeDeclType(Specialization);
6589 }
Douglas Gregor67a65642009-02-17 23:15:12 +00006590 }
6591
Douglas Gregor06db9f52009-10-12 20:18:28 +00006592 // C++ [temp.expl.spec]p6:
6593 // If a template, a member template or the member of a class template is
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006594 // explicitly specialized then that specialization shall be declared
Douglas Gregor06db9f52009-10-12 20:18:28 +00006595 // before the first use of that specialization that would cause an implicit
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006596 // instantiation to take place, in every translation unit in which such a
Douglas Gregor06db9f52009-10-12 20:18:28 +00006597 // use occurs; no diagnostic is required.
6598 if (PrevDecl && PrevDecl->getPointOfInstantiation().isValid()) {
Douglas Gregorc854c662010-02-26 06:03:23 +00006599 bool Okay = false;
Douglas Gregor0bc8a212012-01-14 15:55:47 +00006600 for (Decl *Prev = PrevDecl; Prev; Prev = Prev->getPreviousDecl()) {
Douglas Gregorc854c662010-02-26 06:03:23 +00006601 // Is there any previous explicit specialization declaration?
6602 if (getTemplateSpecializationKind(Prev) == TSK_ExplicitSpecialization) {
6603 Okay = true;
6604 break;
6605 }
6606 }
Douglas Gregor06db9f52009-10-12 20:18:28 +00006607
Douglas Gregorc854c662010-02-26 06:03:23 +00006608 if (!Okay) {
6609 SourceRange Range(TemplateNameLoc, RAngleLoc);
6610 Diag(TemplateNameLoc, diag::err_specialization_after_instantiation)
6611 << Context.getTypeDeclType(Specialization) << Range;
6612
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006613 Diag(PrevDecl->getPointOfInstantiation(),
Douglas Gregorc854c662010-02-26 06:03:23 +00006614 diag::note_instantiation_required_here)
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006615 << (PrevDecl->getTemplateSpecializationKind()
Douglas Gregor06db9f52009-10-12 20:18:28 +00006616 != TSK_ImplicitInstantiation);
Douglas Gregorc854c662010-02-26 06:03:23 +00006617 return true;
6618 }
Douglas Gregor06db9f52009-10-12 20:18:28 +00006619 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006620
Douglas Gregor2208a292009-09-26 20:57:03 +00006621 // If this is not a friend, note that this is an explicit specialization.
6622 if (TUK != TUK_Friend)
6623 Specialization->setSpecializationKind(TSK_ExplicitSpecialization);
Douglas Gregor67a65642009-02-17 23:15:12 +00006624
6625 // Check that this isn't a redefinition of this specialization.
John McCall9bb74a52009-07-31 02:45:11 +00006626 if (TUK == TUK_Definition) {
Richard Smithc7e6ff02015-05-18 20:36:47 +00006627 RecordDecl *Def = Specialization->getDefinition();
6628 NamedDecl *Hidden = nullptr;
6629 if (Def && SkipBody && !hasVisibleDefinition(Def, &Hidden)) {
6630 SkipBody->ShouldSkip = true;
6631 makeMergedDefinitionVisible(Hidden, KWLoc);
6632 // From here on out, treat this as just a redeclaration.
6633 TUK = TUK_Declaration;
6634 } else if (Def) {
Douglas Gregor67a65642009-02-17 23:15:12 +00006635 SourceRange Range(TemplateNameLoc, RAngleLoc);
Mike Stump11289f42009-09-09 15:08:12 +00006636 Diag(TemplateNameLoc, diag::err_redefinition)
Douglas Gregor2373c592009-05-31 09:31:02 +00006637 << Context.getTypeDeclType(Specialization) << Range;
Douglas Gregor67a65642009-02-17 23:15:12 +00006638 Diag(Def->getLocation(), diag::note_previous_definition);
6639 Specialization->setInvalidDecl();
Douglas Gregorc08f4892009-03-25 00:13:59 +00006640 return true;
Douglas Gregor67a65642009-02-17 23:15:12 +00006641 }
6642 }
6643
John McCall659a3372010-12-18 03:30:47 +00006644 if (Attr)
6645 ProcessDeclAttributeList(S, Specialization, Attr);
6646
Richard Smith034b94a2012-08-17 03:20:55 +00006647 // Add alignment attributes if necessary; these attributes are checked when
6648 // the ASTContext lays out the structure.
6649 if (TUK == TUK_Definition) {
6650 AddAlignmentAttributesForRecord(Specialization);
6651 AddMsStructLayoutForRecord(Specialization);
6652 }
6653
Douglas Gregor3c7cd6a2011-09-09 20:53:38 +00006654 if (ModulePrivateLoc.isValid())
6655 Diag(Specialization->getLocation(), diag::err_module_private_specialization)
6656 << (isPartialSpecialization? 1 : 0)
6657 << FixItHint::CreateRemoval(ModulePrivateLoc);
6658
Douglas Gregord56a91e2009-02-26 22:19:44 +00006659 // Build the fully-sugared type for this class template
6660 // specialization as the user wrote in the specialization
6661 // itself. This means that we'll pretty-print the type retrieved
6662 // from the specialization's declaration the way that the user
6663 // actually wrote the specialization, rather than formatting the
6664 // name based on the "canonical" representation used to store the
6665 // template arguments in the specialization.
John McCalle78aac42010-03-10 03:28:59 +00006666 TypeSourceInfo *WrittenTy
6667 = Context.getTemplateSpecializationTypeInfo(Name, TemplateNameLoc,
6668 TemplateArgs, CanonType);
Abramo Bagnara8075c852010-06-12 07:44:57 +00006669 if (TUK != TUK_Friend) {
Douglas Gregor2208a292009-09-26 20:57:03 +00006670 Specialization->setTypeAsWritten(WrittenTy);
Abramo Bagnara60804e12011-03-18 15:16:37 +00006671 Specialization->setTemplateKeywordLoc(TemplateKWLoc);
Abramo Bagnara8075c852010-06-12 07:44:57 +00006672 }
Douglas Gregor67a65642009-02-17 23:15:12 +00006673
Douglas Gregor1e249f82009-02-25 22:18:32 +00006674 // C++ [temp.expl.spec]p9:
6675 // A template explicit specialization is in the scope of the
6676 // namespace in which the template was defined.
6677 //
6678 // We actually implement this paragraph where we set the semantic
6679 // context (in the creation of the ClassTemplateSpecializationDecl),
6680 // but we also maintain the lexical context where the actual
6681 // definition occurs.
Douglas Gregor67a65642009-02-17 23:15:12 +00006682 Specialization->setLexicalDeclContext(CurContext);
Mike Stump11289f42009-09-09 15:08:12 +00006683
Douglas Gregor67a65642009-02-17 23:15:12 +00006684 // We may be starting the definition of this specialization.
John McCall9bb74a52009-07-31 02:45:11 +00006685 if (TUK == TUK_Definition)
Douglas Gregor67a65642009-02-17 23:15:12 +00006686 Specialization->startDefinition();
6687
Douglas Gregor2208a292009-09-26 20:57:03 +00006688 if (TUK == TUK_Friend) {
6689 FriendDecl *Friend = FriendDecl::Create(Context, CurContext,
6690 TemplateNameLoc,
John McCall15ad0962010-03-25 18:04:51 +00006691 WrittenTy,
Douglas Gregor2208a292009-09-26 20:57:03 +00006692 /*FIXME:*/KWLoc);
6693 Friend->setAccess(AS_public);
6694 CurContext->addDecl(Friend);
6695 } else {
6696 // Add the specialization into its lexical context, so that it can
6697 // be seen when iterating through the list of declarations in that
6698 // context. However, specializations are not found by name lookup.
6699 CurContext->addDecl(Specialization);
6700 }
John McCall48871652010-08-21 09:40:31 +00006701 return Specialization;
Douglas Gregor67a65642009-02-17 23:15:12 +00006702}
Douglas Gregor333489b2009-03-27 23:10:48 +00006703
John McCall48871652010-08-21 09:40:31 +00006704Decl *Sema::ActOnTemplateDeclarator(Scope *S,
Douglas Gregorb52fabb2009-06-23 23:11:28 +00006705 MultiTemplateParamsArg TemplateParameterLists,
John McCall48871652010-08-21 09:40:31 +00006706 Declarator &D) {
Benjamin Kramer62b95d82012-08-23 21:35:17 +00006707 Decl *NewDecl = HandleDeclarator(S, D, TemplateParameterLists);
Dmitri Gribenko34df2202012-07-31 22:37:06 +00006708 ActOnDocumentableDecl(NewDecl);
6709 return NewDecl;
Douglas Gregorb52fabb2009-06-23 23:11:28 +00006710}
6711
John McCall4f7ced62010-02-11 01:33:53 +00006712/// \brief Strips various properties off an implicit instantiation
6713/// that has just been explicitly specialized.
6714static void StripImplicitInstantiation(NamedDecl *D) {
Nico Webere4974382014-12-19 23:52:45 +00006715 D->dropAttr<DLLImportAttr>();
6716 D->dropAttr<DLLExportAttr>();
John McCall4f7ced62010-02-11 01:33:53 +00006717
Nico Webere4974382014-12-19 23:52:45 +00006718 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D))
John McCall4f7ced62010-02-11 01:33:53 +00006719 FD->setInlineSpecified(false);
John McCall4f7ced62010-02-11 01:33:53 +00006720}
6721
Nico Webera8f80b32012-01-09 19:52:25 +00006722/// \brief Compute the diagnostic location for an explicit instantiation
6723// declaration or definition.
6724static SourceLocation DiagLocForExplicitInstantiation(
Douglas Gregor0bc8a212012-01-14 15:55:47 +00006725 NamedDecl* D, SourceLocation PointOfInstantiation) {
Nico Webera8f80b32012-01-09 19:52:25 +00006726 // Explicit instantiations following a specialization have no effect and
6727 // hence no PointOfInstantiation. In that case, walk decl backwards
6728 // until a valid name loc is found.
6729 SourceLocation PrevDiagLoc = PointOfInstantiation;
Douglas Gregor0bc8a212012-01-14 15:55:47 +00006730 for (Decl *Prev = D; Prev && !PrevDiagLoc.isValid();
6731 Prev = Prev->getPreviousDecl()) {
Nico Webera8f80b32012-01-09 19:52:25 +00006732 PrevDiagLoc = Prev->getLocation();
6733 }
6734 assert(PrevDiagLoc.isValid() &&
6735 "Explicit instantiation without point of instantiation?");
6736 return PrevDiagLoc;
6737}
6738
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006739/// \brief Diagnose cases where we have an explicit template specialization
Douglas Gregord6ba93d2009-10-15 15:54:05 +00006740/// before/after an explicit template instantiation, producing diagnostics
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006741/// for those cases where they are required and determining whether the
Douglas Gregord6ba93d2009-10-15 15:54:05 +00006742/// new specialization/instantiation will have any effect.
6743///
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006744/// \param NewLoc the location of the new explicit specialization or
Douglas Gregord6ba93d2009-10-15 15:54:05 +00006745/// instantiation.
6746///
6747/// \param NewTSK the kind of the new explicit specialization or instantiation.
6748///
6749/// \param PrevDecl the previous declaration of the entity.
6750///
6751/// \param PrevTSK the kind of the old explicit specialization or instantiatin.
6752///
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006753/// \param PrevPointOfInstantiation if valid, indicates where the previus
Douglas Gregord6ba93d2009-10-15 15:54:05 +00006754/// declaration was instantiated (either implicitly or explicitly).
6755///
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006756/// \param HasNoEffect will be set to true to indicate that the new
Douglas Gregord6ba93d2009-10-15 15:54:05 +00006757/// specialization or instantiation has no effect and should be ignored.
6758///
6759/// \returns true if there was an error that should prevent the introduction of
6760/// the new declaration into the AST, false otherwise.
Douglas Gregor1d957a32009-10-27 18:42:08 +00006761bool
6762Sema::CheckSpecializationInstantiationRedecl(SourceLocation NewLoc,
6763 TemplateSpecializationKind NewTSK,
6764 NamedDecl *PrevDecl,
6765 TemplateSpecializationKind PrevTSK,
6766 SourceLocation PrevPointOfInstantiation,
Abramo Bagnara8075c852010-06-12 07:44:57 +00006767 bool &HasNoEffect) {
6768 HasNoEffect = false;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006769
Douglas Gregord6ba93d2009-10-15 15:54:05 +00006770 switch (NewTSK) {
6771 case TSK_Undeclared:
6772 case TSK_ImplicitInstantiation:
David Majnemer192d1792013-11-27 08:20:38 +00006773 assert(
6774 (PrevTSK == TSK_Undeclared || PrevTSK == TSK_ImplicitInstantiation) &&
6775 "previous declaration must be implicit!");
6776 return false;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006777
Douglas Gregord6ba93d2009-10-15 15:54:05 +00006778 case TSK_ExplicitSpecialization:
6779 switch (PrevTSK) {
6780 case TSK_Undeclared:
6781 case TSK_ExplicitSpecialization:
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006782 // Okay, we're just specializing something that is either already
Douglas Gregord6ba93d2009-10-15 15:54:05 +00006783 // explicitly specialized or has merely been mentioned without any
6784 // instantiation.
6785 return false;
6786
6787 case TSK_ImplicitInstantiation:
6788 if (PrevPointOfInstantiation.isInvalid()) {
6789 // The declaration itself has not actually been instantiated, so it is
6790 // still okay to specialize it.
John McCall4f7ced62010-02-11 01:33:53 +00006791 StripImplicitInstantiation(PrevDecl);
Douglas Gregord6ba93d2009-10-15 15:54:05 +00006792 return false;
6793 }
6794 // Fall through
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006795
Douglas Gregord6ba93d2009-10-15 15:54:05 +00006796 case TSK_ExplicitInstantiationDeclaration:
6797 case TSK_ExplicitInstantiationDefinition:
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006798 assert((PrevTSK == TSK_ImplicitInstantiation ||
6799 PrevPointOfInstantiation.isValid()) &&
Douglas Gregord6ba93d2009-10-15 15:54:05 +00006800 "Explicit instantiation without point of instantiation?");
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006801
Douglas Gregord6ba93d2009-10-15 15:54:05 +00006802 // C++ [temp.expl.spec]p6:
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006803 // If a template, a member template or the member of a class template
Douglas Gregord6ba93d2009-10-15 15:54:05 +00006804 // is explicitly specialized then that specialization shall be declared
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006805 // before the first use of that specialization that would cause an
Douglas Gregord6ba93d2009-10-15 15:54:05 +00006806 // implicit instantiation to take place, in every translation unit in
6807 // which such a use occurs; no diagnostic is required.
Douglas Gregor0bc8a212012-01-14 15:55:47 +00006808 for (Decl *Prev = PrevDecl; Prev; Prev = Prev->getPreviousDecl()) {
Douglas Gregorc854c662010-02-26 06:03:23 +00006809 // Is there any previous explicit specialization declaration?
6810 if (getTemplateSpecializationKind(Prev) == TSK_ExplicitSpecialization)
6811 return false;
6812 }
6813
Douglas Gregor1d957a32009-10-27 18:42:08 +00006814 Diag(NewLoc, diag::err_specialization_after_instantiation)
Douglas Gregord6ba93d2009-10-15 15:54:05 +00006815 << PrevDecl;
Douglas Gregor1d957a32009-10-27 18:42:08 +00006816 Diag(PrevPointOfInstantiation, diag::note_instantiation_required_here)
Douglas Gregord6ba93d2009-10-15 15:54:05 +00006817 << (PrevTSK != TSK_ImplicitInstantiation);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006818
Douglas Gregord6ba93d2009-10-15 15:54:05 +00006819 return true;
6820 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006821
Douglas Gregord6ba93d2009-10-15 15:54:05 +00006822 case TSK_ExplicitInstantiationDeclaration:
6823 switch (PrevTSK) {
6824 case TSK_ExplicitInstantiationDeclaration:
6825 // This explicit instantiation declaration is redundant (that's okay).
Abramo Bagnara8075c852010-06-12 07:44:57 +00006826 HasNoEffect = true;
Douglas Gregord6ba93d2009-10-15 15:54:05 +00006827 return false;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006828
Douglas Gregord6ba93d2009-10-15 15:54:05 +00006829 case TSK_Undeclared:
6830 case TSK_ImplicitInstantiation:
6831 // We're explicitly instantiating something that may have already been
6832 // implicitly instantiated; that's fine.
6833 return false;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006834
Douglas Gregord6ba93d2009-10-15 15:54:05 +00006835 case TSK_ExplicitSpecialization:
6836 // C++0x [temp.explicit]p4:
6837 // For a given set of template parameters, if an explicit instantiation
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006838 // of a template appears after a declaration of an explicit
Douglas Gregord6ba93d2009-10-15 15:54:05 +00006839 // specialization for that template, the explicit instantiation has no
6840 // effect.
Abramo Bagnara8075c852010-06-12 07:44:57 +00006841 HasNoEffect = true;
Douglas Gregord6ba93d2009-10-15 15:54:05 +00006842 return false;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006843
Douglas Gregord6ba93d2009-10-15 15:54:05 +00006844 case TSK_ExplicitInstantiationDefinition:
6845 // C++0x [temp.explicit]p10:
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006846 // If an entity is the subject of both an explicit instantiation
6847 // declaration and an explicit instantiation definition in the same
Douglas Gregord6ba93d2009-10-15 15:54:05 +00006848 // translation unit, the definition shall follow the declaration.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006849 Diag(NewLoc,
Douglas Gregor1d957a32009-10-27 18:42:08 +00006850 diag::err_explicit_instantiation_declaration_after_definition);
Nico Weberd3bdadf2011-12-23 20:58:04 +00006851
6852 // Explicit instantiations following a specialization have no effect and
6853 // hence no PrevPointOfInstantiation. In that case, walk decl backwards
6854 // until a valid name loc is found.
Nico Webera8f80b32012-01-09 19:52:25 +00006855 Diag(DiagLocForExplicitInstantiation(PrevDecl, PrevPointOfInstantiation),
6856 diag::note_explicit_instantiation_definition_here);
Abramo Bagnara8075c852010-06-12 07:44:57 +00006857 HasNoEffect = true;
Douglas Gregord6ba93d2009-10-15 15:54:05 +00006858 return false;
6859 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006860
Douglas Gregord6ba93d2009-10-15 15:54:05 +00006861 case TSK_ExplicitInstantiationDefinition:
6862 switch (PrevTSK) {
6863 case TSK_Undeclared:
6864 case TSK_ImplicitInstantiation:
6865 // We're explicitly instantiating something that may have already been
6866 // implicitly instantiated; that's fine.
6867 return false;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006868
Douglas Gregord6ba93d2009-10-15 15:54:05 +00006869 case TSK_ExplicitSpecialization:
6870 // C++ DR 259, C++0x [temp.explicit]p4:
6871 // For a given set of template parameters, if an explicit
6872 // instantiation of a template appears after a declaration of
6873 // an explicit specialization for that template, the explicit
6874 // instantiation has no effect.
Richard Smithe4caa482016-08-31 23:23:25 +00006875 Diag(NewLoc, diag::warn_explicit_instantiation_after_specialization)
Richard Smith0bf8a4922011-10-18 20:49:44 +00006876 << PrevDecl;
6877 Diag(PrevDecl->getLocation(),
6878 diag::note_previous_template_specialization);
Abramo Bagnara8075c852010-06-12 07:44:57 +00006879 HasNoEffect = true;
Douglas Gregord6ba93d2009-10-15 15:54:05 +00006880 return false;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006881
Douglas Gregord6ba93d2009-10-15 15:54:05 +00006882 case TSK_ExplicitInstantiationDeclaration:
6883 // We're explicity instantiating a definition for something for which we
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006884 // were previously asked to suppress instantiations. That's fine.
Nico Weberd3bdadf2011-12-23 20:58:04 +00006885
6886 // C++0x [temp.explicit]p4:
6887 // For a given set of template parameters, if an explicit instantiation
6888 // of a template appears after a declaration of an explicit
6889 // specialization for that template, the explicit instantiation has no
6890 // effect.
Douglas Gregor0bc8a212012-01-14 15:55:47 +00006891 for (Decl *Prev = PrevDecl; Prev; Prev = Prev->getPreviousDecl()) {
Nico Weberd3bdadf2011-12-23 20:58:04 +00006892 // Is there any previous explicit specialization declaration?
6893 if (getTemplateSpecializationKind(Prev) == TSK_ExplicitSpecialization) {
6894 HasNoEffect = true;
6895 break;
6896 }
6897 }
6898
Douglas Gregord6ba93d2009-10-15 15:54:05 +00006899 return false;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006900
Douglas Gregord6ba93d2009-10-15 15:54:05 +00006901 case TSK_ExplicitInstantiationDefinition:
6902 // C++0x [temp.spec]p5:
6903 // For a given template and a given set of template-arguments,
6904 // - an explicit instantiation definition shall appear at most once
6905 // in a program,
Will Wilsoneadcdbb2014-05-09 09:52:13 +00006906
6907 // MSVCCompat: MSVC silently ignores duplicate explicit instantiations.
6908 Diag(NewLoc, (getLangOpts().MSVCCompat)
Richard Smith1b98ccc2014-07-19 01:39:17 +00006909 ? diag::ext_explicit_instantiation_duplicate
Will Wilsoneadcdbb2014-05-09 09:52:13 +00006910 : diag::err_explicit_instantiation_duplicate)
6911 << PrevDecl;
Nico Webera8f80b32012-01-09 19:52:25 +00006912 Diag(DiagLocForExplicitInstantiation(PrevDecl, PrevPointOfInstantiation),
Douglas Gregor1d957a32009-10-27 18:42:08 +00006913 diag::note_previous_explicit_instantiation);
Abramo Bagnara8075c852010-06-12 07:44:57 +00006914 HasNoEffect = true;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006915 return false;
Douglas Gregord6ba93d2009-10-15 15:54:05 +00006916 }
Douglas Gregord6ba93d2009-10-15 15:54:05 +00006917 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006918
David Blaikie83d382b2011-09-23 05:06:16 +00006919 llvm_unreachable("Missing specialization/instantiation case?");
Douglas Gregord6ba93d2009-10-15 15:54:05 +00006920}
6921
John McCallb9c78482010-04-08 09:05:18 +00006922/// \brief Perform semantic analysis for the given dependent function
James Dennettf14a6e52012-06-15 22:23:43 +00006923/// template specialization.
John McCallb9c78482010-04-08 09:05:18 +00006924///
James Dennettf14a6e52012-06-15 22:23:43 +00006925/// The only possible way to get a dependent function template specialization
6926/// is with a friend declaration, like so:
6927///
6928/// \code
6929/// template \<class T> void foo(T);
6930/// template \<class T> class A {
John McCallb9c78482010-04-08 09:05:18 +00006931/// friend void foo<>(T);
6932/// };
James Dennettf14a6e52012-06-15 22:23:43 +00006933/// \endcode
John McCallb9c78482010-04-08 09:05:18 +00006934///
6935/// There really isn't any useful analysis we can do here, so we
6936/// just store the information.
6937bool
6938Sema::CheckDependentFunctionTemplateSpecialization(FunctionDecl *FD,
6939 const TemplateArgumentListInfo &ExplicitTemplateArgs,
6940 LookupResult &Previous) {
6941 // Remove anything from Previous that isn't a function template in
6942 // the correct context.
Sebastian Redl50c68252010-08-31 00:36:30 +00006943 DeclContext *FDLookupContext = FD->getDeclContext()->getRedeclContext();
John McCallb9c78482010-04-08 09:05:18 +00006944 LookupResult::Filter F = Previous.makeFilter();
6945 while (F.hasNext()) {
6946 NamedDecl *D = F.next()->getUnderlyingDecl();
6947 if (!isa<FunctionTemplateDecl>(D) ||
Sebastian Redl50c68252010-08-31 00:36:30 +00006948 !FDLookupContext->InEnclosingNamespaceSetOf(
6949 D->getDeclContext()->getRedeclContext()))
John McCallb9c78482010-04-08 09:05:18 +00006950 F.erase();
6951 }
6952 F.done();
6953
6954 // Should this be diagnosed here?
6955 if (Previous.empty()) return true;
6956
6957 FD->setDependentTemplateSpecialization(Context, Previous.asUnresolvedSet(),
6958 ExplicitTemplateArgs);
6959 return false;
6960}
6961
Abramo Bagnara02ccd282010-05-20 15:32:11 +00006962/// \brief Perform semantic analysis for the given function template
Douglas Gregor3a923c2d2009-09-24 23:14:47 +00006963/// specialization.
6964///
Abramo Bagnara02ccd282010-05-20 15:32:11 +00006965/// This routine performs all of the semantic analysis required for an
Douglas Gregor3a923c2d2009-09-24 23:14:47 +00006966/// explicit function template specialization. On successful completion,
6967/// the function declaration \p FD will become a function template
6968/// specialization.
6969///
6970/// \param FD the function declaration, which will be updated to become a
6971/// function template specialization.
6972///
Abramo Bagnara02ccd282010-05-20 15:32:11 +00006973/// \param ExplicitTemplateArgs the explicitly-provided template arguments,
6974/// if any. Note that this may be valid info even when 0 arguments are
6975/// explicitly provided as in, e.g., \c void sort<>(char*, char*);
6976/// as it anyway contains info on the angle brackets locations.
Douglas Gregor3a923c2d2009-09-24 23:14:47 +00006977///
Francois Pichet3a44e432011-07-08 06:21:47 +00006978/// \param Previous the set of declarations that may be specialized by
Abramo Bagnara02ccd282010-05-20 15:32:11 +00006979/// this function specialization.
Larisse Voufo98b20f12013-07-19 23:00:19 +00006980bool Sema::CheckFunctionTemplateSpecialization(
6981 FunctionDecl *FD, TemplateArgumentListInfo *ExplicitTemplateArgs,
6982 LookupResult &Previous) {
Douglas Gregor3a923c2d2009-09-24 23:14:47 +00006983 // The set of function template specializations that could match this
6984 // explicit function template specialization.
John McCall58cc69d2010-01-27 01:50:18 +00006985 UnresolvedSet<8> Candidates;
George Burgess IV3e3bb95b2015-12-02 21:58:08 +00006986 TemplateSpecCandidateSet FailedCandidates(FD->getLocation(),
6987 /*ForTakingAddress=*/false);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006988
Richard Smith7d3c3ef2015-10-02 00:49:37 +00006989 llvm::SmallDenseMap<FunctionDecl *, TemplateArgumentListInfo, 8>
6990 ConvertedTemplateArgs;
6991
Sebastian Redl50c68252010-08-31 00:36:30 +00006992 DeclContext *FDLookupContext = FD->getDeclContext()->getRedeclContext();
John McCall1f82f242009-11-18 22:49:29 +00006993 for (LookupResult::iterator I = Previous.begin(), E = Previous.end();
6994 I != E; ++I) {
6995 NamedDecl *Ovl = (*I)->getUnderlyingDecl();
6996 if (FunctionTemplateDecl *FunTmpl = dyn_cast<FunctionTemplateDecl>(Ovl)) {
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006997 // Only consider templates found within the same semantic lookup scope as
Douglas Gregor3a923c2d2009-09-24 23:14:47 +00006998 // FD.
Sebastian Redl50c68252010-08-31 00:36:30 +00006999 if (!FDLookupContext->InEnclosingNamespaceSetOf(
7000 Ovl->getDeclContext()->getRedeclContext()))
Douglas Gregor3a923c2d2009-09-24 23:14:47 +00007001 continue;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007002
Richard Smith574f4f62013-01-14 05:37:29 +00007003 // When matching a constexpr member function template specialization
7004 // against the primary template, we don't yet know whether the
7005 // specialization has an implicit 'const' (because we don't know whether
7006 // it will be a static member function until we know which template it
7007 // specializes), so adjust it now assuming it specializes this template.
7008 QualType FT = FD->getType();
7009 if (FD->isConstexpr()) {
Rafael Espindola92045bc2013-11-19 21:07:04 +00007010 CXXMethodDecl *OldMD =
7011 dyn_cast<CXXMethodDecl>(FunTmpl->getTemplatedDecl());
Richard Smith574f4f62013-01-14 05:37:29 +00007012 if (OldMD && OldMD->isConst()) {
Rafael Espindola92045bc2013-11-19 21:07:04 +00007013 const FunctionProtoType *FPT = FT->castAs<FunctionProtoType>();
Richard Smith574f4f62013-01-14 05:37:29 +00007014 FunctionProtoType::ExtProtoInfo EPI = FPT->getExtProtoInfo();
7015 EPI.TypeQuals |= Qualifiers::Const;
Alp Toker314cc812014-01-25 16:55:45 +00007016 FT = Context.getFunctionType(FPT->getReturnType(),
Alp Toker9cacbab2014-01-20 20:26:09 +00007017 FPT->getParamTypes(), EPI);
Richard Smith574f4f62013-01-14 05:37:29 +00007018 }
7019 }
7020
Richard Smith7d3c3ef2015-10-02 00:49:37 +00007021 TemplateArgumentListInfo Args;
7022 if (ExplicitTemplateArgs)
7023 Args = *ExplicitTemplateArgs;
7024
Douglas Gregor3a923c2d2009-09-24 23:14:47 +00007025 // C++ [temp.expl.spec]p11:
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007026 // A trailing template-argument can be left unspecified in the
7027 // template-id naming an explicit function template specialization
Douglas Gregor3a923c2d2009-09-24 23:14:47 +00007028 // provided it can be deduced from the function argument type.
7029 // Perform template argument deduction to determine whether we may be
7030 // specializing this template.
7031 // FIXME: It is somewhat wasteful to build
Larisse Voufo98b20f12013-07-19 23:00:19 +00007032 TemplateDeductionInfo Info(FailedCandidates.getLocation());
Craig Topperc3ec1492014-05-26 06:22:03 +00007033 FunctionDecl *Specialization = nullptr;
Richard Smith32983682013-12-14 03:18:05 +00007034 if (TemplateDeductionResult TDK = DeduceTemplateArguments(
7035 cast<FunctionTemplateDecl>(FunTmpl->getFirstDecl()),
Richard Smithc2bebe92016-05-11 20:37:46 +00007036 ExplicitTemplateArgs ? &Args : nullptr, FT, Specialization,
7037 Info)) {
Larisse Voufo98b20f12013-07-19 23:00:19 +00007038 // Template argument deduction failed; record why it failed, so
Douglas Gregor3a923c2d2009-09-24 23:14:47 +00007039 // that we can provide nifty diagnostics.
Richard Smithc2bebe92016-05-11 20:37:46 +00007040 FailedCandidates.addCandidate().set(
7041 I.getPair(), FunTmpl->getTemplatedDecl(),
7042 MakeDeductionFailureInfo(Context, TDK, Info));
Douglas Gregor3a923c2d2009-09-24 23:14:47 +00007043 (void)TDK;
7044 continue;
7045 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007046
Artem Belevich64135c32016-12-08 19:38:13 +00007047 // Target attributes are part of the cuda function signature, so
7048 // the deduced template's cuda target must match that of the
7049 // specialization. Given that C++ template deduction does not
7050 // take target attributes into account, we reject candidates
7051 // here that have a different target.
Artem Belevich13e9b4d2016-12-07 19:27:16 +00007052 if (LangOpts.CUDA &&
Artem Belevich64135c32016-12-08 19:38:13 +00007053 IdentifyCUDATarget(Specialization,
7054 /* IgnoreImplicitHDAttributes = */ true) !=
7055 IdentifyCUDATarget(FD, /* IgnoreImplicitHDAttributes = */ true)) {
Artem Belevich13e9b4d2016-12-07 19:27:16 +00007056 FailedCandidates.addCandidate().set(
7057 I.getPair(), FunTmpl->getTemplatedDecl(),
7058 MakeDeductionFailureInfo(Context, TDK_CUDATargetMismatch, Info));
7059 continue;
7060 }
7061
Douglas Gregor3a923c2d2009-09-24 23:14:47 +00007062 // Record this candidate.
Richard Smith7d3c3ef2015-10-02 00:49:37 +00007063 if (ExplicitTemplateArgs)
7064 ConvertedTemplateArgs[Specialization] = std::move(Args);
John McCall58cc69d2010-01-27 01:50:18 +00007065 Candidates.addDecl(Specialization, I.getAccess());
Douglas Gregor3a923c2d2009-09-24 23:14:47 +00007066 }
7067 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007068
Douglas Gregor5de279c2009-09-26 03:41:46 +00007069 // Find the most specialized function template.
Larisse Voufo98b20f12013-07-19 23:00:19 +00007070 UnresolvedSetIterator Result = getMostSpecialized(
Richard Smith35e1da22013-09-10 22:59:25 +00007071 Candidates.begin(), Candidates.end(), FailedCandidates,
Larisse Voufo98b20f12013-07-19 23:00:19 +00007072 FD->getLocation(),
7073 PDiag(diag::err_function_template_spec_no_match) << FD->getDeclName(),
7074 PDiag(diag::err_function_template_spec_ambiguous)
Craig Topperc3ec1492014-05-26 06:22:03 +00007075 << FD->getDeclName() << (ExplicitTemplateArgs != nullptr),
Larisse Voufo98b20f12013-07-19 23:00:19 +00007076 PDiag(diag::note_function_template_spec_matched));
7077
John McCall58cc69d2010-01-27 01:50:18 +00007078 if (Result == Candidates.end())
Douglas Gregor3a923c2d2009-09-24 23:14:47 +00007079 return true;
John McCall58cc69d2010-01-27 01:50:18 +00007080
7081 // Ignore access information; it doesn't figure into redeclaration checking.
7082 FunctionDecl *Specialization = cast<FunctionDecl>(*Result);
Abramo Bagnarab9893d62011-03-04 17:20:30 +00007083
Nathan Wilson83839122016-04-09 02:55:27 +00007084 // C++ Concepts TS [dcl.spec.concept]p7: A program shall not declare [...]
7085 // an explicit specialization (14.8.3) [...] of a concept definition.
7086 if (Specialization->getPrimaryTemplate()->isConcept()) {
7087 Diag(FD->getLocation(), diag::err_concept_specialized)
7088 << 0 /*function*/ << 1 /*explicitly specialized*/;
7089 Diag(Specialization->getLocation(), diag::note_previous_declaration);
7090 return true;
7091 }
7092
Abramo Bagnarab9893d62011-03-04 17:20:30 +00007093 FunctionTemplateSpecializationInfo *SpecInfo
7094 = Specialization->getTemplateSpecializationInfo();
7095 assert(SpecInfo && "Function template specialization info missing?");
Francois Pichet3a44e432011-07-08 06:21:47 +00007096
7097 // Note: do not overwrite location info if previous template
7098 // specialization kind was explicit.
7099 TemplateSpecializationKind TSK = SpecInfo->getTemplateSpecializationKind();
Richard Smith5b8b3db2012-02-20 23:28:05 +00007100 if (TSK == TSK_Undeclared || TSK == TSK_ImplicitInstantiation) {
Francois Pichet3a44e432011-07-08 06:21:47 +00007101 Specialization->setLocation(FD->getLocation());
Richard Smith5b8b3db2012-02-20 23:28:05 +00007102 // C++11 [dcl.constexpr]p1: An explicit specialization of a constexpr
7103 // function can differ from the template declaration with respect to
7104 // the constexpr specifier.
7105 Specialization->setConstexpr(FD->isConstexpr());
7106 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007107
Douglas Gregor3a923c2d2009-09-24 23:14:47 +00007108 // FIXME: Check if the prior specialization has a point of instantiation.
Douglas Gregor06db9f52009-10-12 20:18:28 +00007109 // If so, we have run afoul of .
John McCall816d75b2010-03-24 07:46:06 +00007110
7111 // If this is a friend declaration, then we're not really declaring
7112 // an explicit specialization.
7113 bool isFriend = (FD->getFriendObjectKind() != Decl::FOK_None);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007114
Douglas Gregor54888652009-10-07 00:13:32 +00007115 // Check the scope of this explicit specialization.
John McCall816d75b2010-03-24 07:46:06 +00007116 if (!isFriend &&
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007117 CheckTemplateSpecializationScope(*this,
Douglas Gregor54888652009-10-07 00:13:32 +00007118 Specialization->getPrimaryTemplate(),
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007119 Specialization, FD->getLocation(),
Douglas Gregorba8e1ac2009-10-14 23:50:59 +00007120 false))
Douglas Gregor54888652009-10-07 00:13:32 +00007121 return true;
Douglas Gregor06db9f52009-10-12 20:18:28 +00007122
7123 // C++ [temp.expl.spec]p6:
7124 // If a template, a member template or the member of a class template is
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007125 // explicitly specialized then that specialization shall be declared
Douglas Gregor06db9f52009-10-12 20:18:28 +00007126 // before the first use of that specialization that would cause an implicit
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007127 // instantiation to take place, in every translation unit in which such a
Douglas Gregor06db9f52009-10-12 20:18:28 +00007128 // use occurs; no diagnostic is required.
Abramo Bagnara8075c852010-06-12 07:44:57 +00007129 bool HasNoEffect = false;
John McCall816d75b2010-03-24 07:46:06 +00007130 if (!isFriend &&
7131 CheckSpecializationInstantiationRedecl(FD->getLocation(),
John McCall4f7ced62010-02-11 01:33:53 +00007132 TSK_ExplicitSpecialization,
7133 Specialization,
7134 SpecInfo->getTemplateSpecializationKind(),
7135 SpecInfo->getPointOfInstantiation(),
Abramo Bagnara8075c852010-06-12 07:44:57 +00007136 HasNoEffect))
Douglas Gregor06db9f52009-10-12 20:18:28 +00007137 return true;
Douglas Gregor781ba6e2011-05-21 18:53:30 +00007138
Douglas Gregor3a923c2d2009-09-24 23:14:47 +00007139 // Mark the prior declaration as an explicit specialization, so that later
7140 // clients know that this is an explicit specialization.
Argyrios Kyrtzidis1b30d9c2010-08-15 01:15:20 +00007141 if (!isFriend) {
Faisal Vali81a88be2016-06-14 03:23:15 +00007142 // Since explicit specializations do not inherit '=delete' from their
7143 // primary function template - check if the 'specialization' that was
7144 // implicitly generated (during template argument deduction for partial
7145 // ordering) from the most specialized of all the function templates that
7146 // 'FD' could have been specializing, has a 'deleted' definition. If so,
7147 // first check that it was implicitly generated during template argument
7148 // deduction by making sure it wasn't referenced, and then reset the deleted
7149 // flag to not-deleted, so that we can inherit that information from 'FD'.
7150 if (Specialization->isDeleted() && !SpecInfo->isExplicitSpecialization() &&
7151 !Specialization->getCanonicalDecl()->isReferenced()) {
7152 assert(
7153 Specialization->getCanonicalDecl() == Specialization &&
7154 "This must be the only existing declaration of this specialization");
7155 Specialization->setDeletedAsWritten(false);
Faisal Vali5e9e8ac2016-04-17 17:32:04 +00007156 }
John McCall816d75b2010-03-24 07:46:06 +00007157 SpecInfo->setTemplateSpecializationKind(TSK_ExplicitSpecialization);
Argyrios Kyrtzidis1b30d9c2010-08-15 01:15:20 +00007158 MarkUnusedFileScopedDecl(Specialization);
7159 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007160
Douglas Gregor3a923c2d2009-09-24 23:14:47 +00007161 // Turn the given function declaration into a function template
7162 // specialization, with the template arguments from the previous
7163 // specialization.
Abramo Bagnara02ccd282010-05-20 15:32:11 +00007164 // Take copies of (semantic and syntactic) template argument lists.
7165 const TemplateArgumentList* TemplArgs = new (Context)
7166 TemplateArgumentList(Specialization->getTemplateSpecializationArgs());
Richard Smith7d3c3ef2015-10-02 00:49:37 +00007167 FD->setFunctionTemplateSpecialization(
7168 Specialization->getPrimaryTemplate(), TemplArgs, /*InsertPos=*/nullptr,
7169 SpecInfo->getTemplateSpecializationKind(),
7170 ExplicitTemplateArgs ? &ConvertedTemplateArgs[Specialization] : nullptr);
Rafael Espindola6ae7e502013-04-03 19:27:57 +00007171
Artem Belevich64135c32016-12-08 19:38:13 +00007172 // A function template specialization inherits the target attributes
7173 // of its template. (We require the attributes explicitly in the
7174 // code to match, but a template may have implicit attributes by
7175 // virtue e.g. of being constexpr, and it passes these implicit
7176 // attributes on to its specializations.)
7177 if (LangOpts.CUDA)
7178 inheritCUDATargetAttrs(FD, *Specialization->getPrimaryTemplate());
7179
Douglas Gregor3a923c2d2009-09-24 23:14:47 +00007180 // The "previous declaration" for this function template specialization is
7181 // the prior function template specialization.
John McCall1f82f242009-11-18 22:49:29 +00007182 Previous.clear();
7183 Previous.addDecl(Specialization);
Douglas Gregor3a923c2d2009-09-24 23:14:47 +00007184 return false;
7185}
7186
Douglas Gregor86d142a2009-10-08 07:24:58 +00007187/// \brief Perform semantic analysis for the given non-template member
Douglas Gregor5c0405d2009-10-07 22:35:40 +00007188/// specialization.
7189///
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007190/// This routine performs all of the semantic analysis required for an
Douglas Gregor5c0405d2009-10-07 22:35:40 +00007191/// explicit member function specialization. On successful completion,
7192/// the function declaration \p FD will become a member function
7193/// specialization.
7194///
Douglas Gregor86d142a2009-10-08 07:24:58 +00007195/// \param Member the member declaration, which will be updated to become a
7196/// specialization.
Douglas Gregor5c0405d2009-10-07 22:35:40 +00007197///
John McCall1f82f242009-11-18 22:49:29 +00007198/// \param Previous the set of declarations, one of which may be specialized
7199/// by this function specialization; the set will be modified to contain the
7200/// redeclared member.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007201bool
John McCall1f82f242009-11-18 22:49:29 +00007202Sema::CheckMemberSpecialization(NamedDecl *Member, LookupResult &Previous) {
Douglas Gregor86d142a2009-10-08 07:24:58 +00007203 assert(!isa<TemplateDecl>(Member) && "Only for non-template members");
John McCalle820e5e2010-04-13 20:37:33 +00007204
Douglas Gregor86d142a2009-10-08 07:24:58 +00007205 // Try to find the member we are instantiating.
Richard Smith22e7cc62016-05-24 00:01:49 +00007206 NamedDecl *FoundInstantiation = nullptr;
Craig Topperc3ec1492014-05-26 06:22:03 +00007207 NamedDecl *Instantiation = nullptr;
7208 NamedDecl *InstantiatedFrom = nullptr;
7209 MemberSpecializationInfo *MSInfo = nullptr;
Douglas Gregor06db9f52009-10-12 20:18:28 +00007210
John McCall1f82f242009-11-18 22:49:29 +00007211 if (Previous.empty()) {
Douglas Gregor86d142a2009-10-08 07:24:58 +00007212 // Nowhere to look anyway.
7213 } else if (FunctionDecl *Function = dyn_cast<FunctionDecl>(Member)) {
John McCall1f82f242009-11-18 22:49:29 +00007214 for (LookupResult::iterator I = Previous.begin(), E = Previous.end();
7215 I != E; ++I) {
7216 NamedDecl *D = (*I)->getUnderlyingDecl();
7217 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D)) {
Rafael Espindola66747222013-12-10 00:59:31 +00007218 QualType Adjusted = Function->getType();
7219 if (!hasExplicitCallingConv(Adjusted))
7220 Adjusted = adjustCCAndNoReturn(Adjusted, Method->getType());
7221 if (Context.hasSameType(Adjusted, Method->getType())) {
Richard Smith22e7cc62016-05-24 00:01:49 +00007222 FoundInstantiation = *I;
Douglas Gregor86d142a2009-10-08 07:24:58 +00007223 Instantiation = Method;
7224 InstantiatedFrom = Method->getInstantiatedFromMemberFunction();
Douglas Gregor06db9f52009-10-12 20:18:28 +00007225 MSInfo = Method->getMemberSpecializationInfo();
Douglas Gregor86d142a2009-10-08 07:24:58 +00007226 break;
7227 }
Douglas Gregor5c0405d2009-10-07 22:35:40 +00007228 }
7229 }
Douglas Gregor86d142a2009-10-08 07:24:58 +00007230 } else if (isa<VarDecl>(Member)) {
John McCall1f82f242009-11-18 22:49:29 +00007231 VarDecl *PrevVar;
7232 if (Previous.isSingleResult() &&
7233 (PrevVar = dyn_cast<VarDecl>(Previous.getFoundDecl())))
Douglas Gregor86d142a2009-10-08 07:24:58 +00007234 if (PrevVar->isStaticDataMember()) {
Richard Smith22e7cc62016-05-24 00:01:49 +00007235 FoundInstantiation = Previous.getRepresentativeDecl();
John McCall1f82f242009-11-18 22:49:29 +00007236 Instantiation = PrevVar;
Douglas Gregor86d142a2009-10-08 07:24:58 +00007237 InstantiatedFrom = PrevVar->getInstantiatedFromStaticDataMember();
Douglas Gregor06db9f52009-10-12 20:18:28 +00007238 MSInfo = PrevVar->getMemberSpecializationInfo();
Douglas Gregor86d142a2009-10-08 07:24:58 +00007239 }
7240 } else if (isa<RecordDecl>(Member)) {
John McCall1f82f242009-11-18 22:49:29 +00007241 CXXRecordDecl *PrevRecord;
7242 if (Previous.isSingleResult() &&
7243 (PrevRecord = dyn_cast<CXXRecordDecl>(Previous.getFoundDecl()))) {
Richard Smith22e7cc62016-05-24 00:01:49 +00007244 FoundInstantiation = Previous.getRepresentativeDecl();
John McCall1f82f242009-11-18 22:49:29 +00007245 Instantiation = PrevRecord;
Douglas Gregor86d142a2009-10-08 07:24:58 +00007246 InstantiatedFrom = PrevRecord->getInstantiatedFromMemberClass();
Douglas Gregor06db9f52009-10-12 20:18:28 +00007247 MSInfo = PrevRecord->getMemberSpecializationInfo();
Douglas Gregor86d142a2009-10-08 07:24:58 +00007248 }
Richard Smith7d137e32012-03-23 03:33:32 +00007249 } else if (isa<EnumDecl>(Member)) {
7250 EnumDecl *PrevEnum;
7251 if (Previous.isSingleResult() &&
7252 (PrevEnum = dyn_cast<EnumDecl>(Previous.getFoundDecl()))) {
Richard Smith22e7cc62016-05-24 00:01:49 +00007253 FoundInstantiation = Previous.getRepresentativeDecl();
Richard Smith7d137e32012-03-23 03:33:32 +00007254 Instantiation = PrevEnum;
7255 InstantiatedFrom = PrevEnum->getInstantiatedFromMemberEnum();
7256 MSInfo = PrevEnum->getMemberSpecializationInfo();
7257 }
Douglas Gregor5c0405d2009-10-07 22:35:40 +00007258 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007259
Douglas Gregor5c0405d2009-10-07 22:35:40 +00007260 if (!Instantiation) {
Douglas Gregor86d142a2009-10-08 07:24:58 +00007261 // There is no previous declaration that matches. Since member
Douglas Gregor5c0405d2009-10-07 22:35:40 +00007262 // specializations are always out-of-line, the caller will complain about
7263 // this mismatch later.
7264 return false;
7265 }
John McCalle820e5e2010-04-13 20:37:33 +00007266
7267 // If this is a friend, just bail out here before we start turning
7268 // things into explicit specializations.
7269 if (Member->getFriendObjectKind() != Decl::FOK_None) {
7270 // Preserve instantiation information.
7271 if (InstantiatedFrom && isa<CXXMethodDecl>(Member)) {
7272 cast<CXXMethodDecl>(Member)->setInstantiationOfMemberFunction(
7273 cast<CXXMethodDecl>(InstantiatedFrom),
7274 cast<CXXMethodDecl>(Instantiation)->getTemplateSpecializationKind());
7275 } else if (InstantiatedFrom && isa<CXXRecordDecl>(Member)) {
7276 cast<CXXRecordDecl>(Member)->setInstantiationOfMemberClass(
7277 cast<CXXRecordDecl>(InstantiatedFrom),
7278 cast<CXXRecordDecl>(Instantiation)->getTemplateSpecializationKind());
7279 }
7280
7281 Previous.clear();
Richard Smith22e7cc62016-05-24 00:01:49 +00007282 Previous.addDecl(FoundInstantiation);
John McCalle820e5e2010-04-13 20:37:33 +00007283 return false;
7284 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007285
Douglas Gregor86d142a2009-10-08 07:24:58 +00007286 // Make sure that this is a specialization of a member.
7287 if (!InstantiatedFrom) {
7288 Diag(Member->getLocation(), diag::err_spec_member_not_instantiated)
7289 << Member;
Douglas Gregor5c0405d2009-10-07 22:35:40 +00007290 Diag(Instantiation->getLocation(), diag::note_specialized_decl);
7291 return true;
7292 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007293
Douglas Gregor06db9f52009-10-12 20:18:28 +00007294 // C++ [temp.expl.spec]p6:
7295 // If a template, a member template or the member of a class template is
Nico Weberd3bdadf2011-12-23 20:58:04 +00007296 // explicitly specialized then that specialization shall be declared
Douglas Gregor06db9f52009-10-12 20:18:28 +00007297 // before the first use of that specialization that would cause an implicit
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007298 // instantiation to take place, in every translation unit in which such a
Douglas Gregor06db9f52009-10-12 20:18:28 +00007299 // use occurs; no diagnostic is required.
7300 assert(MSInfo && "Member specialization info missing?");
John McCall4f7ced62010-02-11 01:33:53 +00007301
Abramo Bagnara8075c852010-06-12 07:44:57 +00007302 bool HasNoEffect = false;
John McCall4f7ced62010-02-11 01:33:53 +00007303 if (CheckSpecializationInstantiationRedecl(Member->getLocation(),
7304 TSK_ExplicitSpecialization,
7305 Instantiation,
7306 MSInfo->getTemplateSpecializationKind(),
7307 MSInfo->getPointOfInstantiation(),
Abramo Bagnara8075c852010-06-12 07:44:57 +00007308 HasNoEffect))
Douglas Gregor06db9f52009-10-12 20:18:28 +00007309 return true;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007310
Douglas Gregor5c0405d2009-10-07 22:35:40 +00007311 // Check the scope of this explicit specialization.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007312 if (CheckTemplateSpecializationScope(*this,
Douglas Gregor86d142a2009-10-08 07:24:58 +00007313 InstantiatedFrom,
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007314 Instantiation, Member->getLocation(),
Douglas Gregorba8e1ac2009-10-14 23:50:59 +00007315 false))
Douglas Gregor5c0405d2009-10-07 22:35:40 +00007316 return true;
Douglas Gregord801b062009-10-07 23:56:10 +00007317
Douglas Gregor86d142a2009-10-08 07:24:58 +00007318 // Note that this is an explicit instantiation of a member.
Douglas Gregorbbe8f462009-10-08 15:14:33 +00007319 // the original declaration to note that it is an explicit specialization
7320 // (if it was previously an implicit instantiation). This latter step
7321 // makes bookkeeping easier.
Douglas Gregor86d142a2009-10-08 07:24:58 +00007322 if (isa<FunctionDecl>(Member)) {
Douglas Gregorbbe8f462009-10-08 15:14:33 +00007323 FunctionDecl *InstantiationFunction = cast<FunctionDecl>(Instantiation);
7324 if (InstantiationFunction->getTemplateSpecializationKind() ==
7325 TSK_ImplicitInstantiation) {
7326 InstantiationFunction->setTemplateSpecializationKind(
7327 TSK_ExplicitSpecialization);
7328 InstantiationFunction->setLocation(Member->getLocation());
Faisal Vali5e9e8ac2016-04-17 17:32:04 +00007329 // Explicit specializations of member functions of class templates do not
7330 // inherit '=delete' from the member function they are specializing.
7331 if (InstantiationFunction->isDeleted()) {
7332 assert(InstantiationFunction->getCanonicalDecl() ==
7333 InstantiationFunction);
Richard Smith5f274382016-09-28 23:55:27 +00007334 InstantiationFunction->setDeletedAsWritten(false);
Faisal Vali5e9e8ac2016-04-17 17:32:04 +00007335 }
Douglas Gregorbbe8f462009-10-08 15:14:33 +00007336 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007337
Douglas Gregor86d142a2009-10-08 07:24:58 +00007338 cast<FunctionDecl>(Member)->setInstantiationOfMemberFunction(
7339 cast<CXXMethodDecl>(InstantiatedFrom),
7340 TSK_ExplicitSpecialization);
Argyrios Kyrtzidis1b30d9c2010-08-15 01:15:20 +00007341 MarkUnusedFileScopedDecl(InstantiationFunction);
Douglas Gregor86d142a2009-10-08 07:24:58 +00007342 } else if (isa<VarDecl>(Member)) {
Douglas Gregorbbe8f462009-10-08 15:14:33 +00007343 VarDecl *InstantiationVar = cast<VarDecl>(Instantiation);
7344 if (InstantiationVar->getTemplateSpecializationKind() ==
7345 TSK_ImplicitInstantiation) {
7346 InstantiationVar->setTemplateSpecializationKind(
7347 TSK_ExplicitSpecialization);
7348 InstantiationVar->setLocation(Member->getLocation());
7349 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007350
Larisse Voufo39a1e502013-08-06 01:03:05 +00007351 cast<VarDecl>(Member)->setInstantiationOfStaticDataMember(
7352 cast<VarDecl>(InstantiatedFrom), TSK_ExplicitSpecialization);
Argyrios Kyrtzidis1b30d9c2010-08-15 01:15:20 +00007353 MarkUnusedFileScopedDecl(InstantiationVar);
Richard Smith7d137e32012-03-23 03:33:32 +00007354 } else if (isa<CXXRecordDecl>(Member)) {
Douglas Gregorbbe8f462009-10-08 15:14:33 +00007355 CXXRecordDecl *InstantiationClass = cast<CXXRecordDecl>(Instantiation);
7356 if (InstantiationClass->getTemplateSpecializationKind() ==
7357 TSK_ImplicitInstantiation) {
7358 InstantiationClass->setTemplateSpecializationKind(
7359 TSK_ExplicitSpecialization);
7360 InstantiationClass->setLocation(Member->getLocation());
7361 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007362
Douglas Gregor86d142a2009-10-08 07:24:58 +00007363 cast<CXXRecordDecl>(Member)->setInstantiationOfMemberClass(
Douglas Gregorbbe8f462009-10-08 15:14:33 +00007364 cast<CXXRecordDecl>(InstantiatedFrom),
7365 TSK_ExplicitSpecialization);
Richard Smith7d137e32012-03-23 03:33:32 +00007366 } else {
7367 assert(isa<EnumDecl>(Member) && "Only member enums remain");
7368 EnumDecl *InstantiationEnum = cast<EnumDecl>(Instantiation);
7369 if (InstantiationEnum->getTemplateSpecializationKind() ==
7370 TSK_ImplicitInstantiation) {
7371 InstantiationEnum->setTemplateSpecializationKind(
7372 TSK_ExplicitSpecialization);
7373 InstantiationEnum->setLocation(Member->getLocation());
7374 }
7375
7376 cast<EnumDecl>(Member)->setInstantiationOfMemberEnum(
7377 cast<EnumDecl>(InstantiatedFrom), TSK_ExplicitSpecialization);
Douglas Gregor86d142a2009-10-08 07:24:58 +00007378 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007379
Douglas Gregor5c0405d2009-10-07 22:35:40 +00007380 // Save the caller the trouble of having to figure out which declaration
7381 // this specialization matches.
John McCall1f82f242009-11-18 22:49:29 +00007382 Previous.clear();
Richard Smith22e7cc62016-05-24 00:01:49 +00007383 Previous.addDecl(FoundInstantiation);
Douglas Gregor5c0405d2009-10-07 22:35:40 +00007384 return false;
7385}
7386
Douglas Gregore47f5a72009-10-14 23:41:34 +00007387/// \brief Check the scope of an explicit instantiation.
Douglas Gregor6cc1df52010-07-13 00:10:04 +00007388///
7389/// \returns true if a serious error occurs, false otherwise.
7390static bool CheckExplicitInstantiationScope(Sema &S, NamedDecl *D,
Douglas Gregore47f5a72009-10-14 23:41:34 +00007391 SourceLocation InstLoc,
7392 bool WasQualifiedName) {
Sebastian Redl50c68252010-08-31 00:36:30 +00007393 DeclContext *OrigContext= D->getDeclContext()->getEnclosingNamespaceContext();
7394 DeclContext *CurContext = S.CurContext->getRedeclContext();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007395
Douglas Gregor6cc1df52010-07-13 00:10:04 +00007396 if (CurContext->isRecord()) {
7397 S.Diag(InstLoc, diag::err_explicit_instantiation_in_class)
7398 << D;
7399 return true;
7400 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007401
Richard Smith050d2612011-10-18 02:28:33 +00007402 // C++11 [temp.explicit]p3:
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007403 // An explicit instantiation shall appear in an enclosing namespace of its
Richard Smith050d2612011-10-18 02:28:33 +00007404 // template. If the name declared in the explicit instantiation is an
7405 // unqualified name, the explicit instantiation shall appear in the
7406 // namespace where its template is declared or, if that namespace is inline
7407 // (7.3.1), any namespace from its enclosing namespace set.
Douglas Gregore47f5a72009-10-14 23:41:34 +00007408 //
7409 // This is DR275, which we do not retroactively apply to C++98/03.
Richard Smith050d2612011-10-18 02:28:33 +00007410 if (WasQualifiedName) {
7411 if (CurContext->Encloses(OrigContext))
7412 return false;
7413 } else {
7414 if (CurContext->InEnclosingNamespaceSetOf(OrigContext))
7415 return false;
7416 }
7417
7418 if (NamespaceDecl *NS = dyn_cast<NamespaceDecl>(OrigContext)) {
7419 if (WasQualifiedName)
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007420 S.Diag(InstLoc,
Richard Smith2bf7fdb2013-01-02 11:42:31 +00007421 S.getLangOpts().CPlusPlus11?
Richard Smith050d2612011-10-18 02:28:33 +00007422 diag::err_explicit_instantiation_out_of_scope :
7423 diag::warn_explicit_instantiation_out_of_scope_0x)
Douglas Gregore47f5a72009-10-14 23:41:34 +00007424 << D << NS;
7425 else
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007426 S.Diag(InstLoc,
Richard Smith2bf7fdb2013-01-02 11:42:31 +00007427 S.getLangOpts().CPlusPlus11?
Richard Smith050d2612011-10-18 02:28:33 +00007428 diag::err_explicit_instantiation_unqualified_wrong_namespace :
7429 diag::warn_explicit_instantiation_unqualified_wrong_namespace_0x)
7430 << D << NS;
7431 } else
7432 S.Diag(InstLoc,
Richard Smith2bf7fdb2013-01-02 11:42:31 +00007433 S.getLangOpts().CPlusPlus11?
Richard Smith050d2612011-10-18 02:28:33 +00007434 diag::err_explicit_instantiation_must_be_global :
7435 diag::warn_explicit_instantiation_must_be_global_0x)
7436 << D;
Douglas Gregore47f5a72009-10-14 23:41:34 +00007437 S.Diag(D->getLocation(), diag::note_explicit_instantiation_here);
Douglas Gregor6cc1df52010-07-13 00:10:04 +00007438 return false;
Douglas Gregore47f5a72009-10-14 23:41:34 +00007439}
7440
7441/// \brief Determine whether the given scope specifier has a template-id in it.
7442static bool ScopeSpecifierHasTemplateId(const CXXScopeSpec &SS) {
7443 if (!SS.isSet())
7444 return false;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007445
Richard Smith050d2612011-10-18 02:28:33 +00007446 // C++11 [temp.explicit]p3:
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007447 // If the explicit instantiation is for a member function, a member class
Douglas Gregore47f5a72009-10-14 23:41:34 +00007448 // or a static data member of a class template specialization, the name of
7449 // the class template specialization in the qualified-id for the member
7450 // name shall be a simple-template-id.
7451 //
7452 // C++98 has the same restriction, just worded differently.
Aaron Ballman4a979672014-01-03 13:56:08 +00007453 for (NestedNameSpecifier *NNS = SS.getScopeRep(); NNS;
7454 NNS = NNS->getPrefix())
John McCall424cec92011-01-19 06:33:43 +00007455 if (const Type *T = NNS->getAsType())
Douglas Gregore47f5a72009-10-14 23:41:34 +00007456 if (isa<TemplateSpecializationType>(T))
7457 return true;
7458
7459 return false;
7460}
7461
Shoaib Meenaifc78d7c2016-12-05 18:01:35 +00007462/// Make a dllexport or dllimport attr on a class template specialization take
7463/// effect.
7464static void dllExportImportClassTemplateSpecialization(
7465 Sema &S, ClassTemplateSpecializationDecl *Def) {
7466 auto *A = cast_or_null<InheritableAttr>(getDLLAttr(Def));
7467 assert(A && "dllExportImportClassTemplateSpecialization called "
7468 "on Def without dllexport or dllimport");
7469
7470 // We reject explicit instantiations in class scope, so there should
7471 // never be any delayed exported classes to worry about.
7472 assert(S.DelayedDllExportClasses.empty() &&
7473 "delayed exports present at explicit instantiation");
7474 S.checkClassLevelDLLAttribute(Def);
7475
7476 // Propagate attribute to base class templates.
7477 for (auto &B : Def->bases()) {
7478 if (auto *BT = dyn_cast_or_null<ClassTemplateSpecializationDecl>(
7479 B.getType()->getAsCXXRecordDecl()))
7480 S.propagateDLLAttrToBaseClassTemplate(Def, A, BT, B.getLocStart());
7481 }
7482
7483 S.referenceDLLExportedClassMethods();
7484}
7485
Douglas Gregor2ec748c2009-05-14 00:28:11 +00007486// Explicit instantiation of a class template specialization
John McCallfaf5fb42010-08-26 23:41:50 +00007487DeclResult
Mike Stump11289f42009-09-09 15:08:12 +00007488Sema::ActOnExplicitInstantiation(Scope *S,
Douglas Gregor43e75172009-09-04 06:33:52 +00007489 SourceLocation ExternLoc,
7490 SourceLocation TemplateLoc,
Mike Stump11289f42009-09-09 15:08:12 +00007491 unsigned TagSpec,
Douglas Gregora1f49972009-05-13 00:25:59 +00007492 SourceLocation KWLoc,
7493 const CXXScopeSpec &SS,
7494 TemplateTy TemplateD,
7495 SourceLocation TemplateNameLoc,
7496 SourceLocation LAngleLoc,
7497 ASTTemplateArgsPtr TemplateArgsIn,
Douglas Gregora1f49972009-05-13 00:25:59 +00007498 SourceLocation RAngleLoc,
7499 AttributeList *Attr) {
7500 // Find the class template we're specializing
Serge Pavlov9ddb76e2013-08-27 13:15:56 +00007501 TemplateName Name = TemplateD.get();
Richard Smith392497b2013-06-22 22:03:31 +00007502 TemplateDecl *TD = Name.getAsTemplateDecl();
Douglas Gregora1f49972009-05-13 00:25:59 +00007503 // Check that the specialization uses the same tag kind as the
7504 // original template.
Abramo Bagnara6150c882010-05-11 21:36:43 +00007505 TagTypeKind Kind = TypeWithKeyword::getTagTypeKindForTypeSpec(TagSpec);
7506 assert(Kind != TTK_Enum &&
7507 "Invalid enum tag in class template explicit instantiation!");
Richard Smith392497b2013-06-22 22:03:31 +00007508
Richard Trieu265c3442016-04-05 21:13:54 +00007509 ClassTemplateDecl *ClassTemplate = dyn_cast<ClassTemplateDecl>(TD);
7510
7511 if (!ClassTemplate) {
Reid Kleckner1a4ab7e2016-12-09 19:47:58 +00007512 NonTagKind NTK = getNonTagTypeDeclKind(TD, Kind);
7513 Diag(TemplateNameLoc, diag::err_tag_reference_non_tag) << TD << NTK << Kind;
Richard Trieu265c3442016-04-05 21:13:54 +00007514 Diag(TD->getLocation(), diag::note_previous_use);
Richard Smith392497b2013-06-22 22:03:31 +00007515 return true;
7516 }
7517
Douglas Gregord9034f02009-05-14 16:41:31 +00007518 if (!isAcceptableTagRedeclaration(ClassTemplate->getTemplatedDecl(),
Richard Trieucaa33d32011-06-10 03:11:26 +00007519 Kind, /*isDefinition*/false, KWLoc,
Justin Bognerc6ecb7c2015-07-10 23:05:47 +00007520 ClassTemplate->getIdentifier())) {
Mike Stump11289f42009-09-09 15:08:12 +00007521 Diag(KWLoc, diag::err_use_with_wrong_tag)
Douglas Gregora1f49972009-05-13 00:25:59 +00007522 << ClassTemplate
Douglas Gregora771f462010-03-31 17:46:05 +00007523 << FixItHint::CreateReplacement(KWLoc,
Douglas Gregora1f49972009-05-13 00:25:59 +00007524 ClassTemplate->getTemplatedDecl()->getKindName());
Mike Stump11289f42009-09-09 15:08:12 +00007525 Diag(ClassTemplate->getTemplatedDecl()->getLocation(),
Douglas Gregora1f49972009-05-13 00:25:59 +00007526 diag::note_previous_use);
7527 Kind = ClassTemplate->getTemplatedDecl()->getTagKind();
7528 }
7529
Douglas Gregore47f5a72009-10-14 23:41:34 +00007530 // C++0x [temp.explicit]p2:
7531 // There are two forms of explicit instantiation: an explicit instantiation
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007532 // definition and an explicit instantiation declaration. An explicit
7533 // instantiation declaration begins with the extern keyword. [...]
Hans Wennborgfd76d912015-01-15 21:18:30 +00007534 TemplateSpecializationKind TSK = ExternLoc.isInvalid()
7535 ? TSK_ExplicitInstantiationDefinition
7536 : TSK_ExplicitInstantiationDeclaration;
7537
7538 if (TSK == TSK_ExplicitInstantiationDeclaration) {
7539 // Check for dllexport class template instantiation declarations.
7540 for (AttributeList *A = Attr; A; A = A->getNext()) {
7541 if (A->getKind() == AttributeList::AT_DLLExport) {
7542 Diag(ExternLoc,
7543 diag::warn_attribute_dllexport_explicit_instantiation_decl);
7544 Diag(A->getLoc(), diag::note_attribute);
7545 break;
7546 }
7547 }
7548
7549 if (auto *A = ClassTemplate->getTemplatedDecl()->getAttr<DLLExportAttr>()) {
7550 Diag(ExternLoc,
7551 diag::warn_attribute_dllexport_explicit_instantiation_decl);
7552 Diag(A->getLocation(), diag::note_attribute);
7553 }
7554 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007555
Hans Wennborga86a83b2016-05-26 19:42:56 +00007556 // In MSVC mode, dllimported explicit instantiation definitions are treated as
7557 // instantiation declarations for most purposes.
7558 bool DLLImportExplicitInstantiationDef = false;
7559 if (TSK == TSK_ExplicitInstantiationDefinition &&
7560 Context.getTargetInfo().getCXXABI().isMicrosoft()) {
7561 // Check for dllimport class template instantiation definitions.
7562 bool DLLImport =
7563 ClassTemplate->getTemplatedDecl()->getAttr<DLLImportAttr>();
7564 for (AttributeList *A = Attr; A; A = A->getNext()) {
7565 if (A->getKind() == AttributeList::AT_DLLImport)
7566 DLLImport = true;
7567 if (A->getKind() == AttributeList::AT_DLLExport) {
7568 // dllexport trumps dllimport here.
7569 DLLImport = false;
7570 break;
7571 }
7572 }
7573 if (DLLImport) {
7574 TSK = TSK_ExplicitInstantiationDeclaration;
7575 DLLImportExplicitInstantiationDef = true;
7576 }
7577 }
7578
Douglas Gregora1f49972009-05-13 00:25:59 +00007579 // Translate the parser's template argument list in our AST format.
John McCall6b51f282009-11-23 01:53:49 +00007580 TemplateArgumentListInfo TemplateArgs(LAngleLoc, RAngleLoc);
Douglas Gregorb53edfb2009-11-10 19:49:08 +00007581 translateTemplateArguments(TemplateArgsIn, TemplateArgs);
Douglas Gregora1f49972009-05-13 00:25:59 +00007582
7583 // Check that the template argument list is well-formed for this
7584 // template.
Chris Lattner0e62c1c2011-07-23 10:55:15 +00007585 SmallVector<TemplateArgument, 4> Converted;
John McCall6b51f282009-11-23 01:53:49 +00007586 if (CheckTemplateArgumentList(ClassTemplate, TemplateNameLoc,
7587 TemplateArgs, false, Converted))
Douglas Gregora1f49972009-05-13 00:25:59 +00007588 return true;
7589
Douglas Gregora1f49972009-05-13 00:25:59 +00007590 // Find the class template specialization declaration that
7591 // corresponds to these arguments.
Craig Topperc3ec1492014-05-26 06:22:03 +00007592 void *InsertPos = nullptr;
Douglas Gregora1f49972009-05-13 00:25:59 +00007593 ClassTemplateSpecializationDecl *PrevDecl
Craig Topper7e0daca2014-06-26 04:58:53 +00007594 = ClassTemplate->findSpecialization(Converted, InsertPos);
Douglas Gregora1f49972009-05-13 00:25:59 +00007595
Abramo Bagnara8075c852010-06-12 07:44:57 +00007596 TemplateSpecializationKind PrevDecl_TSK
7597 = PrevDecl ? PrevDecl->getTemplateSpecializationKind() : TSK_Undeclared;
7598
Douglas Gregor54888652009-10-07 00:13:32 +00007599 // C++0x [temp.explicit]p2:
7600 // [...] An explicit instantiation shall appear in an enclosing
7601 // namespace of its template. [...]
7602 //
7603 // This is C++ DR 275.
Douglas Gregor6cc1df52010-07-13 00:10:04 +00007604 if (CheckExplicitInstantiationScope(*this, ClassTemplate, TemplateNameLoc,
7605 SS.isSet()))
7606 return true;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007607
Craig Topperc3ec1492014-05-26 06:22:03 +00007608 ClassTemplateSpecializationDecl *Specialization = nullptr;
Douglas Gregora1f49972009-05-13 00:25:59 +00007609
Abramo Bagnara8075c852010-06-12 07:44:57 +00007610 bool HasNoEffect = false;
Douglas Gregora1f49972009-05-13 00:25:59 +00007611 if (PrevDecl) {
Douglas Gregor1d957a32009-10-27 18:42:08 +00007612 if (CheckSpecializationInstantiationRedecl(TemplateNameLoc, TSK,
Abramo Bagnara8075c852010-06-12 07:44:57 +00007613 PrevDecl, PrevDecl_TSK,
Douglas Gregor12e49d32009-10-15 22:53:21 +00007614 PrevDecl->getPointOfInstantiation(),
Abramo Bagnara8075c852010-06-12 07:44:57 +00007615 HasNoEffect))
John McCall48871652010-08-21 09:40:31 +00007616 return PrevDecl;
Douglas Gregora1f49972009-05-13 00:25:59 +00007617
Abramo Bagnara8075c852010-06-12 07:44:57 +00007618 // Even though HasNoEffect == true means that this explicit instantiation
7619 // has no effect on semantics, we go on to put its syntax in the AST.
7620
7621 if (PrevDecl_TSK == TSK_ImplicitInstantiation ||
7622 PrevDecl_TSK == TSK_Undeclared) {
Douglas Gregor4aa04b12009-09-11 21:19:12 +00007623 // Since the only prior class template specialization with these
7624 // arguments was referenced but not declared, reuse that
Abramo Bagnara8075c852010-06-12 07:44:57 +00007625 // declaration node as our own, updating the source location
7626 // for the template name to reflect our new declaration.
7627 // (Other source locations will be updated later.)
Douglas Gregor4aa04b12009-09-11 21:19:12 +00007628 Specialization = PrevDecl;
7629 Specialization->setLocation(TemplateNameLoc);
Craig Topperc3ec1492014-05-26 06:22:03 +00007630 PrevDecl = nullptr;
Douglas Gregor4aa04b12009-09-11 21:19:12 +00007631 }
Hans Wennborga86a83b2016-05-26 19:42:56 +00007632
7633 if (PrevDecl_TSK == TSK_ExplicitInstantiationDeclaration &&
7634 DLLImportExplicitInstantiationDef) {
7635 // The new specialization might add a dllimport attribute.
7636 HasNoEffect = false;
7637 }
Douglas Gregor12e49d32009-10-15 22:53:21 +00007638 }
Abramo Bagnara8075c852010-06-12 07:44:57 +00007639
Douglas Gregor4aa04b12009-09-11 21:19:12 +00007640 if (!Specialization) {
Douglas Gregora1f49972009-05-13 00:25:59 +00007641 // Create a new class template specialization declaration node for
7642 // this explicit specialization.
7643 Specialization
Douglas Gregore9029562010-05-06 00:28:52 +00007644 = ClassTemplateSpecializationDecl::Create(Context, Kind,
Douglas Gregora1f49972009-05-13 00:25:59 +00007645 ClassTemplate->getDeclContext(),
Abramo Bagnara29c2d462011-03-09 14:09:51 +00007646 KWLoc, TemplateNameLoc,
Douglas Gregora1f49972009-05-13 00:25:59 +00007647 ClassTemplate,
David Majnemer8b622692016-07-03 21:17:51 +00007648 Converted,
Douglas Gregor1ccc8412010-11-07 23:05:16 +00007649 PrevDecl);
John McCall3e11ebe2010-03-15 10:12:16 +00007650 SetNestedNameSpecifier(Specialization, SS);
Douglas Gregora1f49972009-05-13 00:25:59 +00007651
Argyrios Kyrtzidis47470f22010-07-20 13:59:28 +00007652 if (!HasNoEffect && !PrevDecl) {
Abramo Bagnara8075c852010-06-12 07:44:57 +00007653 // Insert the new specialization.
Argyrios Kyrtzidis47470f22010-07-20 13:59:28 +00007654 ClassTemplate->AddSpecialization(Specialization, InsertPos);
Abramo Bagnara8075c852010-06-12 07:44:57 +00007655 }
Douglas Gregora1f49972009-05-13 00:25:59 +00007656 }
7657
7658 // Build the fully-sugared type for this explicit instantiation as
7659 // the user wrote in the explicit instantiation itself. This means
7660 // that we'll pretty-print the type retrieved from the
7661 // specialization's declaration the way that the user actually wrote
7662 // the explicit instantiation, rather than formatting the name based
7663 // on the "canonical" representation used to store the template
7664 // arguments in the specialization.
John McCalle78aac42010-03-10 03:28:59 +00007665 TypeSourceInfo *WrittenTy
7666 = Context.getTemplateSpecializationTypeInfo(Name, TemplateNameLoc,
7667 TemplateArgs,
Douglas Gregora1f49972009-05-13 00:25:59 +00007668 Context.getTypeDeclType(Specialization));
7669 Specialization->setTypeAsWritten(WrittenTy);
Douglas Gregora1f49972009-05-13 00:25:59 +00007670
Abramo Bagnara8075c852010-06-12 07:44:57 +00007671 // Set source locations for keywords.
7672 Specialization->setExternLoc(ExternLoc);
7673 Specialization->setTemplateKeywordLoc(TemplateLoc);
Argyrios Kyrtzidisd798c052016-07-15 18:11:33 +00007674 Specialization->setBraceRange(SourceRange());
Abramo Bagnara8075c852010-06-12 07:44:57 +00007675
Rafael Espindola0b062072012-01-03 06:04:21 +00007676 if (Attr)
7677 ProcessDeclAttributeList(S, Specialization, Attr);
7678
Abramo Bagnara8075c852010-06-12 07:44:57 +00007679 // Add the explicit instantiation into its lexical context. However,
7680 // since explicit instantiations are never found by name lookup, we
7681 // just put it into the declaration context directly.
7682 Specialization->setLexicalDeclContext(CurContext);
7683 CurContext->addDecl(Specialization);
7684
7685 // Syntax is now OK, so return if it has no other effect on semantics.
7686 if (HasNoEffect) {
7687 // Set the template specialization kind.
7688 Specialization->setTemplateSpecializationKind(TSK);
John McCall48871652010-08-21 09:40:31 +00007689 return Specialization;
Douglas Gregor0681a352009-11-25 06:01:46 +00007690 }
Douglas Gregora1f49972009-05-13 00:25:59 +00007691
7692 // C++ [temp.explicit]p3:
Douglas Gregora1f49972009-05-13 00:25:59 +00007693 // A definition of a class template or class member template
7694 // shall be in scope at the point of the explicit instantiation of
7695 // the class template or class member template.
7696 //
7697 // This check comes when we actually try to perform the
7698 // instantiation.
Douglas Gregor12e49d32009-10-15 22:53:21 +00007699 ClassTemplateSpecializationDecl *Def
7700 = cast_or_null<ClassTemplateSpecializationDecl>(
Douglas Gregor0a5a2212010-02-11 01:04:33 +00007701 Specialization->getDefinition());
Douglas Gregor12e49d32009-10-15 22:53:21 +00007702 if (!Def)
Douglas Gregoref6ab412009-10-27 06:26:26 +00007703 InstantiateClassTemplateSpecialization(TemplateNameLoc, Specialization, TSK);
Abramo Bagnara8075c852010-06-12 07:44:57 +00007704 else if (TSK == TSK_ExplicitInstantiationDefinition) {
Douglas Gregor88d292c2010-05-13 16:44:06 +00007705 MarkVTableUsed(TemplateNameLoc, Specialization, true);
Abramo Bagnara8075c852010-06-12 07:44:57 +00007706 Specialization->setPointOfInstantiation(Def->getPointOfInstantiation());
7707 }
Douglas Gregor88d292c2010-05-13 16:44:06 +00007708
Douglas Gregor1d957a32009-10-27 18:42:08 +00007709 // Instantiate the members of this class template specialization.
7710 Def = cast_or_null<ClassTemplateSpecializationDecl>(
Douglas Gregor0a5a2212010-02-11 01:04:33 +00007711 Specialization->getDefinition());
Rafael Espindola8d04f062010-03-22 23:12:48 +00007712 if (Def) {
Rafael Espindolafa1708fd2010-03-23 19:55:22 +00007713 TemplateSpecializationKind Old_TSK = Def->getTemplateSpecializationKind();
Rafael Espindolafa1708fd2010-03-23 19:55:22 +00007714 // Fix a TSK_ExplicitInstantiationDeclaration followed by a
7715 // TSK_ExplicitInstantiationDefinition
7716 if (Old_TSK == TSK_ExplicitInstantiationDeclaration &&
Hans Wennborga86a83b2016-05-26 19:42:56 +00007717 (TSK == TSK_ExplicitInstantiationDefinition ||
7718 DLLImportExplicitInstantiationDef)) {
Richard Smitheb36ddf2014-04-24 22:45:46 +00007719 // FIXME: Need to notify the ASTMutationListener that we did this.
Rafael Espindolafa1708fd2010-03-23 19:55:22 +00007720 Def->setTemplateSpecializationKind(TSK);
Rafael Espindola8d04f062010-03-22 23:12:48 +00007721
Hans Wennborgc0875502015-06-09 00:39:05 +00007722 if (!getDLLAttr(Def) && getDLLAttr(Specialization) &&
Shoaib Meenaiab3f96c2016-11-09 23:52:20 +00007723 (Context.getTargetInfo().getCXXABI().isMicrosoft() ||
7724 Context.getTargetInfo().getTriple().isWindowsItaniumEnvironment())) {
Hans Wennborgc0875502015-06-09 00:39:05 +00007725 // In the MS ABI, an explicit instantiation definition can add a dll
7726 // attribute to a template with a previous instantiation declaration.
7727 // MinGW doesn't allow this.
Hans Wennborg17f9b442015-05-27 00:06:45 +00007728 auto *A = cast<InheritableAttr>(
7729 getDLLAttr(Specialization)->clone(getASTContext()));
7730 A->setInherited(true);
7731 Def->addAttr(A);
Shoaib Meenaifc78d7c2016-12-05 18:01:35 +00007732 dllExportImportClassTemplateSpecialization(*this, Def);
Hans Wennborg17f9b442015-05-27 00:06:45 +00007733 }
7734 }
7735
Shoaib Meenaifc78d7c2016-12-05 18:01:35 +00007736 // Fix a TSK_ImplicitInstantiation followed by a
7737 // TSK_ExplicitInstantiationDefinition
7738 if (Old_TSK == TSK_ImplicitInstantiation &&
7739 Specialization->hasAttr<DLLExportAttr>() &&
7740 (Context.getTargetInfo().getCXXABI().isMicrosoft() ||
7741 Context.getTargetInfo().getTriple().isWindowsItaniumEnvironment())) {
7742 // In the MS ABI, an explicit instantiation definition can add a dll
7743 // attribute to a template with a previous implicit instantiation.
7744 // MinGW doesn't allow this. We limit clang to only adding dllexport, to
7745 // avoid potentially strange codegen behavior. For example, if we extend
7746 // this conditional to dllimport, and we have a source file calling a
7747 // method on an implicitly instantiated template class instance and then
7748 // declaring a dllimport explicit instantiation definition for the same
7749 // template class, the codegen for the method call will not respect the
7750 // dllimport, while it will with cl. The Def will already have the DLL
7751 // attribute, since the Def and Specialization will be the same in the
7752 // case of Old_TSK == TSK_ImplicitInstantiation, and we already added the
7753 // attribute to the Specialization; we just need to make it take effect.
7754 assert(Def == Specialization &&
7755 "Def and Specialization should match for implicit instantiation");
7756 dllExportImportClassTemplateSpecialization(*this, Def);
7757 }
7758
Argyrios Kyrtzidis322d8532015-09-11 01:44:56 +00007759 // Set the template specialization kind. Make sure it is set before
7760 // instantiating the members which will trigger ASTConsumer callbacks.
7761 Specialization->setTemplateSpecializationKind(TSK);
Douglas Gregor12e49d32009-10-15 22:53:21 +00007762 InstantiateClassTemplateSpecializationMembers(TemplateNameLoc, Def, TSK);
Argyrios Kyrtzidis322d8532015-09-11 01:44:56 +00007763 } else {
7764
7765 // Set the template specialization kind.
7766 Specialization->setTemplateSpecializationKind(TSK);
Rafael Espindola8d04f062010-03-22 23:12:48 +00007767 }
Douglas Gregora1f49972009-05-13 00:25:59 +00007768
John McCall48871652010-08-21 09:40:31 +00007769 return Specialization;
Douglas Gregora1f49972009-05-13 00:25:59 +00007770}
7771
Douglas Gregor2ec748c2009-05-14 00:28:11 +00007772// Explicit instantiation of a member class of a class template.
John McCall48871652010-08-21 09:40:31 +00007773DeclResult
Mike Stump11289f42009-09-09 15:08:12 +00007774Sema::ActOnExplicitInstantiation(Scope *S,
Douglas Gregor43e75172009-09-04 06:33:52 +00007775 SourceLocation ExternLoc,
7776 SourceLocation TemplateLoc,
Mike Stump11289f42009-09-09 15:08:12 +00007777 unsigned TagSpec,
Douglas Gregor2ec748c2009-05-14 00:28:11 +00007778 SourceLocation KWLoc,
Jeffrey Yasskinc76498d2010-04-08 16:38:48 +00007779 CXXScopeSpec &SS,
Douglas Gregor2ec748c2009-05-14 00:28:11 +00007780 IdentifierInfo *Name,
7781 SourceLocation NameLoc,
7782 AttributeList *Attr) {
7783
Douglas Gregord6ab8742009-05-28 23:31:59 +00007784 bool Owned = false;
John McCall7f41d982009-09-11 04:59:25 +00007785 bool IsDependent = false;
John McCallfaf5fb42010-08-26 23:41:50 +00007786 Decl *TagD = ActOnTag(S, TagSpec, Sema::TUK_Reference,
John McCall48871652010-08-21 09:40:31 +00007787 KWLoc, SS, Name, NameLoc, Attr, AS_none,
Douglas Gregor2820e692011-09-09 19:05:14 +00007788 /*ModulePrivateLoc=*/SourceLocation(),
Benjamin Kramercc4c49d2012-08-23 23:38:35 +00007789 MultiTemplateParamsArg(), Owned, IsDependent,
Richard Smith649c7b062014-01-08 00:56:48 +00007790 SourceLocation(), false, TypeResult(),
7791 /*IsTypeSpecifier*/false);
John McCall7f41d982009-09-11 04:59:25 +00007792 assert(!IsDependent && "explicit instantiation of dependent name not yet handled");
7793
Douglas Gregor2ec748c2009-05-14 00:28:11 +00007794 if (!TagD)
7795 return true;
7796
John McCall48871652010-08-21 09:40:31 +00007797 TagDecl *Tag = cast<TagDecl>(TagD);
Richard Smith7d137e32012-03-23 03:33:32 +00007798 assert(!Tag->isEnum() && "shouldn't see enumerations here");
Douglas Gregor2ec748c2009-05-14 00:28:11 +00007799
Douglas Gregorb8006faf2009-05-27 17:30:49 +00007800 if (Tag->isInvalidDecl())
7801 return true;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007802
Douglas Gregor2ec748c2009-05-14 00:28:11 +00007803 CXXRecordDecl *Record = cast<CXXRecordDecl>(Tag);
7804 CXXRecordDecl *Pattern = Record->getInstantiatedFromMemberClass();
7805 if (!Pattern) {
7806 Diag(TemplateLoc, diag::err_explicit_instantiation_nontemplate_type)
7807 << Context.getTypeDeclType(Record);
7808 Diag(Record->getLocation(), diag::note_nontemplate_decl_here);
7809 return true;
7810 }
7811
Douglas Gregore47f5a72009-10-14 23:41:34 +00007812 // C++0x [temp.explicit]p2:
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007813 // If the explicit instantiation is for a class or member class, the
7814 // elaborated-type-specifier in the declaration shall include a
Douglas Gregore47f5a72009-10-14 23:41:34 +00007815 // simple-template-id.
7816 //
7817 // C++98 has the same restriction, just worded differently.
7818 if (!ScopeSpecifierHasTemplateId(SS))
Douglas Gregor010815a2010-06-16 16:26:47 +00007819 Diag(TemplateLoc, diag::ext_explicit_instantiation_without_qualified_id)
Douglas Gregore47f5a72009-10-14 23:41:34 +00007820 << Record << SS.getRange();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007821
Douglas Gregore47f5a72009-10-14 23:41:34 +00007822 // C++0x [temp.explicit]p2:
7823 // There are two forms of explicit instantiation: an explicit instantiation
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007824 // definition and an explicit instantiation declaration. An explicit
Douglas Gregore47f5a72009-10-14 23:41:34 +00007825 // instantiation declaration begins with the extern keyword. [...]
Douglas Gregor5d851972009-10-14 21:46:58 +00007826 TemplateSpecializationKind TSK
7827 = ExternLoc.isInvalid()? TSK_ExplicitInstantiationDefinition
7828 : TSK_ExplicitInstantiationDeclaration;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007829
Douglas Gregor2ec748c2009-05-14 00:28:11 +00007830 // C++0x [temp.explicit]p2:
7831 // [...] An explicit instantiation shall appear in an enclosing
7832 // namespace of its template. [...]
7833 //
7834 // This is C++ DR 275.
Douglas Gregore47f5a72009-10-14 23:41:34 +00007835 CheckExplicitInstantiationScope(*this, Record, NameLoc, true);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007836
Douglas Gregord6ba93d2009-10-15 15:54:05 +00007837 // Verify that it is okay to explicitly instantiate here.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007838 CXXRecordDecl *PrevDecl
Douglas Gregorec9fd132012-01-14 16:38:05 +00007839 = cast_or_null<CXXRecordDecl>(Record->getPreviousDecl());
Douglas Gregor0a5a2212010-02-11 01:04:33 +00007840 if (!PrevDecl && Record->getDefinition())
Douglas Gregor8f003d02009-10-15 18:07:02 +00007841 PrevDecl = Record;
7842 if (PrevDecl) {
Douglas Gregord6ba93d2009-10-15 15:54:05 +00007843 MemberSpecializationInfo *MSInfo = PrevDecl->getMemberSpecializationInfo();
Abramo Bagnara8075c852010-06-12 07:44:57 +00007844 bool HasNoEffect = false;
Douglas Gregord6ba93d2009-10-15 15:54:05 +00007845 assert(MSInfo && "No member specialization information?");
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007846 if (CheckSpecializationInstantiationRedecl(TemplateLoc, TSK,
Douglas Gregord6ba93d2009-10-15 15:54:05 +00007847 PrevDecl,
7848 MSInfo->getTemplateSpecializationKind(),
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007849 MSInfo->getPointOfInstantiation(),
Abramo Bagnara8075c852010-06-12 07:44:57 +00007850 HasNoEffect))
Douglas Gregord6ba93d2009-10-15 15:54:05 +00007851 return true;
Abramo Bagnara8075c852010-06-12 07:44:57 +00007852 if (HasNoEffect)
Douglas Gregord6ba93d2009-10-15 15:54:05 +00007853 return TagD;
7854 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007855
Douglas Gregor12e49d32009-10-15 22:53:21 +00007856 CXXRecordDecl *RecordDef
Douglas Gregor0a5a2212010-02-11 01:04:33 +00007857 = cast_or_null<CXXRecordDecl>(Record->getDefinition());
Douglas Gregor12e49d32009-10-15 22:53:21 +00007858 if (!RecordDef) {
Douglas Gregor68edf132009-10-15 12:53:22 +00007859 // C++ [temp.explicit]p3:
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007860 // A definition of a member class of a class template shall be in scope
Douglas Gregor68edf132009-10-15 12:53:22 +00007861 // at the point of an explicit instantiation of the member class.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007862 CXXRecordDecl *Def
Douglas Gregor0a5a2212010-02-11 01:04:33 +00007863 = cast_or_null<CXXRecordDecl>(Pattern->getDefinition());
Douglas Gregor68edf132009-10-15 12:53:22 +00007864 if (!Def) {
Douglas Gregora8b89d22009-10-15 14:05:49 +00007865 Diag(TemplateLoc, diag::err_explicit_instantiation_undefined_member)
7866 << 0 << Record->getDeclName() << Record->getDeclContext();
Douglas Gregor68edf132009-10-15 12:53:22 +00007867 Diag(Pattern->getLocation(), diag::note_forward_declaration)
7868 << Pattern;
7869 return true;
Douglas Gregor1d957a32009-10-27 18:42:08 +00007870 } else {
7871 if (InstantiateClass(NameLoc, Record, Def,
7872 getTemplateInstantiationArgs(Record),
7873 TSK))
7874 return true;
7875
Douglas Gregor0a5a2212010-02-11 01:04:33 +00007876 RecordDef = cast_or_null<CXXRecordDecl>(Record->getDefinition());
Douglas Gregor1d957a32009-10-27 18:42:08 +00007877 if (!RecordDef)
7878 return true;
7879 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007880 }
7881
Douglas Gregor1d957a32009-10-27 18:42:08 +00007882 // Instantiate all of the members of the class.
7883 InstantiateClassMembers(NameLoc, RecordDef,
7884 getTemplateInstantiationArgs(Record), TSK);
Douglas Gregor2ec748c2009-05-14 00:28:11 +00007885
Douglas Gregor88d292c2010-05-13 16:44:06 +00007886 if (TSK == TSK_ExplicitInstantiationDefinition)
7887 MarkVTableUsed(NameLoc, RecordDef, true);
7888
Mike Stump87c57ac2009-05-16 07:39:55 +00007889 // FIXME: We don't have any representation for explicit instantiations of
7890 // member classes. Such a representation is not needed for compilation, but it
7891 // should be available for clients that want to see all of the declarations in
7892 // the source code.
Douglas Gregor2ec748c2009-05-14 00:28:11 +00007893 return TagD;
7894}
7895
John McCallfaf5fb42010-08-26 23:41:50 +00007896DeclResult Sema::ActOnExplicitInstantiation(Scope *S,
7897 SourceLocation ExternLoc,
7898 SourceLocation TemplateLoc,
7899 Declarator &D) {
Douglas Gregor450f00842009-09-25 18:43:00 +00007900 // Explicit instantiations always require a name.
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00007901 // TODO: check if/when DNInfo should replace Name.
7902 DeclarationNameInfo NameInfo = GetNameForDeclarator(D);
7903 DeclarationName Name = NameInfo.getName();
Douglas Gregor450f00842009-09-25 18:43:00 +00007904 if (!Name) {
7905 if (!D.isInvalidType())
Daniel Dunbar62ee6412012-03-09 18:35:03 +00007906 Diag(D.getDeclSpec().getLocStart(),
Douglas Gregor450f00842009-09-25 18:43:00 +00007907 diag::err_explicit_instantiation_requires_name)
7908 << D.getDeclSpec().getSourceRange()
7909 << D.getSourceRange();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007910
Douglas Gregor450f00842009-09-25 18:43:00 +00007911 return true;
7912 }
7913
7914 // The scope passed in may not be a decl scope. Zip up the scope tree until
7915 // we find one that is.
7916 while ((S->getFlags() & Scope::DeclScope) == 0 ||
7917 (S->getFlags() & Scope::TemplateParamScope) != 0)
7918 S = S->getParent();
7919
7920 // Determine the type of the declaration.
John McCall8cb7bdf2010-06-04 23:28:52 +00007921 TypeSourceInfo *T = GetTypeForDeclarator(D, S);
7922 QualType R = T->getType();
Douglas Gregor450f00842009-09-25 18:43:00 +00007923 if (R.isNull())
7924 return true;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007925
Douglas Gregor781ba6e2011-05-21 18:53:30 +00007926 // C++ [dcl.stc]p1:
7927 // A storage-class-specifier shall not be specified in [...] an explicit
7928 // instantiation (14.7.2) directive.
Douglas Gregor450f00842009-09-25 18:43:00 +00007929 if (D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_typedef) {
Douglas Gregor450f00842009-09-25 18:43:00 +00007930 Diag(D.getIdentifierLoc(), diag::err_explicit_instantiation_of_typedef)
7931 << Name;
7932 return true;
Douglas Gregor781ba6e2011-05-21 18:53:30 +00007933 } else if (D.getDeclSpec().getStorageClassSpec()
7934 != DeclSpec::SCS_unspecified) {
7935 // Complain about then remove the storage class specifier.
7936 Diag(D.getIdentifierLoc(), diag::err_explicit_instantiation_storage_class)
7937 << FixItHint::CreateRemoval(D.getDeclSpec().getStorageClassSpecLoc());
7938
7939 D.getMutableDeclSpec().ClearStorageClassSpecs();
Douglas Gregor450f00842009-09-25 18:43:00 +00007940 }
7941
Douglas Gregor3c74d412009-10-14 20:14:33 +00007942 // C++0x [temp.explicit]p1:
7943 // [...] An explicit instantiation of a function template shall not use the
7944 // inline or constexpr specifiers.
7945 // Presumably, this also applies to member functions of class templates as
7946 // well.
Richard Smith83c19292011-10-18 03:44:03 +00007947 if (D.getDeclSpec().isInlineSpecified())
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007948 Diag(D.getDeclSpec().getInlineSpecLoc(),
Richard Smith2bf7fdb2013-01-02 11:42:31 +00007949 getLangOpts().CPlusPlus11 ?
Richard Smith83c19292011-10-18 03:44:03 +00007950 diag::err_explicit_instantiation_inline :
7951 diag::warn_explicit_instantiation_inline_0x)
Richard Smith465841e2011-10-14 19:58:02 +00007952 << FixItHint::CreateRemoval(D.getDeclSpec().getInlineSpecLoc());
Larisse Voufo39a1e502013-08-06 01:03:05 +00007953 if (D.getDeclSpec().isConstexprSpecified() && R->isFunctionType())
Richard Smith465841e2011-10-14 19:58:02 +00007954 // FIXME: Add a fix-it to remove the 'constexpr' and add a 'const' if one is
7955 // not already specified.
7956 Diag(D.getDeclSpec().getConstexprSpecLoc(),
7957 diag::err_explicit_instantiation_constexpr);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007958
Nathan Wilsonde498452016-02-08 05:34:00 +00007959 // C++ Concepts TS [dcl.spec.concept]p1: The concept specifier shall be
7960 // applied only to the definition of a function template or variable template,
7961 // declared in namespace scope.
7962 if (D.getDeclSpec().isConceptSpecified()) {
7963 Diag(D.getDeclSpec().getConceptSpecLoc(),
7964 diag::err_concept_specified_specialization) << 0;
7965 return true;
7966 }
7967
Douglas Gregore47f5a72009-10-14 23:41:34 +00007968 // C++0x [temp.explicit]p2:
7969 // There are two forms of explicit instantiation: an explicit instantiation
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007970 // definition and an explicit instantiation declaration. An explicit
7971 // instantiation declaration begins with the extern keyword. [...]
Douglas Gregor450f00842009-09-25 18:43:00 +00007972 TemplateSpecializationKind TSK
7973 = ExternLoc.isInvalid()? TSK_ExplicitInstantiationDefinition
7974 : TSK_ExplicitInstantiationDeclaration;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007975
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00007976 LookupResult Previous(*this, NameInfo, LookupOrdinaryName);
John McCall27b18f82009-11-17 02:14:36 +00007977 LookupParsedName(Previous, S, &D.getCXXScopeSpec());
Douglas Gregor450f00842009-09-25 18:43:00 +00007978
7979 if (!R->isFunctionType()) {
7980 // C++ [temp.explicit]p1:
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007981 // A [...] static data member of a class template can be explicitly
7982 // instantiated from the member definition associated with its class
Douglas Gregor450f00842009-09-25 18:43:00 +00007983 // template.
Larisse Voufo39a1e502013-08-06 01:03:05 +00007984 // C++1y [temp.explicit]p1:
7985 // A [...] variable [...] template specialization can be explicitly
7986 // instantiated from its template.
John McCall27b18f82009-11-17 02:14:36 +00007987 if (Previous.isAmbiguous())
7988 return true;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007989
John McCall67c00872009-12-02 08:25:40 +00007990 VarDecl *Prev = Previous.getAsSingle<VarDecl>();
Larisse Voufo39a1e502013-08-06 01:03:05 +00007991 VarTemplateDecl *PrevTemplate = Previous.getAsSingle<VarTemplateDecl>();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007992
Larisse Voufo39a1e502013-08-06 01:03:05 +00007993 if (!PrevTemplate) {
7994 if (!Prev || !Prev->isStaticDataMember()) {
7995 // We expect to see a data data member here.
7996 Diag(D.getIdentifierLoc(), diag::err_explicit_instantiation_not_known)
7997 << Name;
7998 for (LookupResult::iterator P = Previous.begin(), PEnd = Previous.end();
7999 P != PEnd; ++P)
8000 Diag((*P)->getLocation(), diag::note_explicit_instantiation_here);
8001 return true;
8002 }
8003
8004 if (!Prev->getInstantiatedFromStaticDataMember()) {
8005 // FIXME: Check for explicit specialization?
8006 Diag(D.getIdentifierLoc(),
8007 diag::err_explicit_instantiation_data_member_not_instantiated)
8008 << Prev;
8009 Diag(Prev->getLocation(), diag::note_explicit_instantiation_here);
8010 // FIXME: Can we provide a note showing where this was declared?
8011 return true;
8012 }
8013 } else {
8014 // Explicitly instantiate a variable template.
8015
8016 // C++1y [dcl.spec.auto]p6:
8017 // ... A program that uses auto or decltype(auto) in a context not
8018 // explicitly allowed in this section is ill-formed.
8019 //
8020 // This includes auto-typed variable template instantiations.
8021 if (R->isUndeducedType()) {
8022 Diag(T->getTypeLoc().getLocStart(),
8023 diag::err_auto_not_allowed_var_inst);
8024 return true;
8025 }
8026
Richard Smithef985ac2013-09-18 02:10:12 +00008027 if (D.getName().getKind() != UnqualifiedId::IK_TemplateId) {
8028 // C++1y [temp.explicit]p3:
8029 // If the explicit instantiation is for a variable, the unqualified-id
8030 // in the declaration shall be a template-id.
8031 Diag(D.getIdentifierLoc(),
8032 diag::err_explicit_instantiation_without_template_id)
8033 << PrevTemplate;
8034 Diag(PrevTemplate->getLocation(),
8035 diag::note_explicit_instantiation_here);
8036 return true;
Larisse Voufo39a1e502013-08-06 01:03:05 +00008037 }
8038
Nathan Wilson83839122016-04-09 02:55:27 +00008039 // C++ Concepts TS [dcl.spec.concept]p7: A program shall not declare an
8040 // explicit instantiation (14.8.2) [...] of a concept definition.
8041 if (PrevTemplate->isConcept()) {
8042 Diag(D.getIdentifierLoc(), diag::err_concept_specialized)
8043 << 1 /*variable*/ << 0 /*explicitly instantiated*/;
8044 Diag(PrevTemplate->getLocation(), diag::note_previous_declaration);
8045 return true;
8046 }
8047
Richard Smithef985ac2013-09-18 02:10:12 +00008048 // Translate the parser's template argument list into our AST format.
Richard Smith4b55a9c2014-04-17 03:29:33 +00008049 TemplateArgumentListInfo TemplateArgs =
8050 makeTemplateArgumentListInfo(*this, *D.getName().TemplateId);
Richard Smithef985ac2013-09-18 02:10:12 +00008051
Larisse Voufo39a1e502013-08-06 01:03:05 +00008052 DeclResult Res = CheckVarTemplateId(PrevTemplate, TemplateLoc,
8053 D.getIdentifierLoc(), TemplateArgs);
8054 if (Res.isInvalid())
8055 return true;
8056
8057 // Ignore access control bits, we don't need them for redeclaration
8058 // checking.
8059 Prev = cast<VarDecl>(Res.get());
Douglas Gregor450f00842009-09-25 18:43:00 +00008060 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00008061
Douglas Gregore47f5a72009-10-14 23:41:34 +00008062 // C++0x [temp.explicit]p2:
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00008063 // If the explicit instantiation is for a member function, a member class
Douglas Gregore47f5a72009-10-14 23:41:34 +00008064 // or a static data member of a class template specialization, the name of
8065 // the class template specialization in the qualified-id for the member
8066 // name shall be a simple-template-id.
8067 //
8068 // C++98 has the same restriction, just worded differently.
Larisse Voufo39a1e502013-08-06 01:03:05 +00008069 //
Richard Smith5977d872013-09-18 21:55:14 +00008070 // This does not apply to variable template specializations, where the
8071 // template-id is in the unqualified-id instead.
8072 if (!ScopeSpecifierHasTemplateId(D.getCXXScopeSpec()) && !PrevTemplate)
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00008073 Diag(D.getIdentifierLoc(),
Douglas Gregor010815a2010-06-16 16:26:47 +00008074 diag::ext_explicit_instantiation_without_qualified_id)
Douglas Gregore47f5a72009-10-14 23:41:34 +00008075 << Prev << D.getCXXScopeSpec().getRange();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00008076
Douglas Gregore47f5a72009-10-14 23:41:34 +00008077 // Check the scope of this explicit instantiation.
8078 CheckExplicitInstantiationScope(*this, Prev, D.getIdentifierLoc(), true);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00008079
Douglas Gregord6ba93d2009-10-15 15:54:05 +00008080 // Verify that it is okay to explicitly instantiate here.
Richard Smith8809a0c2013-09-27 20:14:12 +00008081 TemplateSpecializationKind PrevTSK = Prev->getTemplateSpecializationKind();
8082 SourceLocation POI = Prev->getPointOfInstantiation();
Abramo Bagnara8075c852010-06-12 07:44:57 +00008083 bool HasNoEffect = false;
Douglas Gregor1d957a32009-10-27 18:42:08 +00008084 if (CheckSpecializationInstantiationRedecl(D.getIdentifierLoc(), TSK, Prev,
Larisse Voufo39a1e502013-08-06 01:03:05 +00008085 PrevTSK, POI, HasNoEffect))
Douglas Gregord6ba93d2009-10-15 15:54:05 +00008086 return true;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00008087
Larisse Voufo39a1e502013-08-06 01:03:05 +00008088 if (!HasNoEffect) {
8089 // Instantiate static data member or variable template.
8090
8091 Prev->setTemplateSpecializationKind(TSK, D.getIdentifierLoc());
8092 if (PrevTemplate) {
8093 // Merge attributes.
8094 if (AttributeList *Attr = D.getDeclSpec().getAttributes().getList())
8095 ProcessDeclAttributeList(S, Prev, Attr);
8096 }
8097 if (TSK == TSK_ExplicitInstantiationDefinition)
8098 InstantiateVariableDefinition(D.getIdentifierLoc(), Prev);
8099 }
8100
8101 // Check the new variable specialization against the parsed input.
8102 if (PrevTemplate && Prev && !Context.hasSameType(Prev->getType(), R)) {
8103 Diag(T->getTypeLoc().getLocStart(),
8104 diag::err_invalid_var_template_spec_type)
8105 << 0 << PrevTemplate << R << Prev->getType();
8106 Diag(PrevTemplate->getLocation(), diag::note_template_declared_here)
8107 << 2 << PrevTemplate->getDeclName();
8108 return true;
8109 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00008110
Douglas Gregor450f00842009-09-25 18:43:00 +00008111 // FIXME: Create an ExplicitInstantiation node?
Craig Topperc3ec1492014-05-26 06:22:03 +00008112 return (Decl*) nullptr;
Douglas Gregor450f00842009-09-25 18:43:00 +00008113 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00008114
8115 // If the declarator is a template-id, translate the parser's template
Douglas Gregor0e876e02009-09-25 23:53:26 +00008116 // argument list into our AST format.
Douglas Gregord90fd522009-09-25 21:45:23 +00008117 bool HasExplicitTemplateArgs = false;
John McCall6b51f282009-11-23 01:53:49 +00008118 TemplateArgumentListInfo TemplateArgs;
Douglas Gregor7861a802009-11-03 01:35:08 +00008119 if (D.getName().getKind() == UnqualifiedId::IK_TemplateId) {
Richard Smith4b55a9c2014-04-17 03:29:33 +00008120 TemplateArgs = makeTemplateArgumentListInfo(*this, *D.getName().TemplateId);
Douglas Gregord90fd522009-09-25 21:45:23 +00008121 HasExplicitTemplateArgs = true;
8122 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00008123
Douglas Gregor450f00842009-09-25 18:43:00 +00008124 // C++ [temp.explicit]p1:
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00008125 // A [...] function [...] can be explicitly instantiated from its template.
8126 // A member function [...] of a class template can be explicitly
8127 // instantiated from the member definition associated with its class
Douglas Gregor450f00842009-09-25 18:43:00 +00008128 // template.
John McCall58cc69d2010-01-27 01:50:18 +00008129 UnresolvedSet<8> Matches;
Artem Belevich13e9b4d2016-12-07 19:27:16 +00008130 AttributeList *Attr = D.getDeclSpec().getAttributes().getList();
Larisse Voufo98b20f12013-07-19 23:00:19 +00008131 TemplateSpecCandidateSet FailedCandidates(D.getIdentifierLoc());
Douglas Gregor450f00842009-09-25 18:43:00 +00008132 for (LookupResult::iterator P = Previous.begin(), PEnd = Previous.end();
8133 P != PEnd; ++P) {
8134 NamedDecl *Prev = *P;
Douglas Gregord90fd522009-09-25 21:45:23 +00008135 if (!HasExplicitTemplateArgs) {
8136 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(Prev)) {
Richard Smithbaa47832016-12-01 02:11:49 +00008137 QualType Adjusted = adjustCCAndNoReturn(R, Method->getType(),
8138 /*AdjustExceptionSpec*/true);
Rafael Espindola6edca7d2013-12-01 16:54:29 +00008139 if (Context.hasSameUnqualifiedType(Method->getType(), Adjusted)) {
Douglas Gregord90fd522009-09-25 21:45:23 +00008140 Matches.clear();
Douglas Gregorea0a0a92010-01-11 18:40:55 +00008141
John McCall58cc69d2010-01-27 01:50:18 +00008142 Matches.addDecl(Method, P.getAccess());
Douglas Gregorea0a0a92010-01-11 18:40:55 +00008143 if (Method->getTemplateSpecializationKind() == TSK_Undeclared)
8144 break;
Douglas Gregord90fd522009-09-25 21:45:23 +00008145 }
Douglas Gregor450f00842009-09-25 18:43:00 +00008146 }
8147 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00008148
Douglas Gregor450f00842009-09-25 18:43:00 +00008149 FunctionTemplateDecl *FunTmpl = dyn_cast<FunctionTemplateDecl>(Prev);
8150 if (!FunTmpl)
8151 continue;
8152
Larisse Voufo98b20f12013-07-19 23:00:19 +00008153 TemplateDeductionInfo Info(FailedCandidates.getLocation());
Craig Topperc3ec1492014-05-26 06:22:03 +00008154 FunctionDecl *Specialization = nullptr;
Douglas Gregor450f00842009-09-25 18:43:00 +00008155 if (TemplateDeductionResult TDK
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00008156 = DeduceTemplateArguments(FunTmpl,
Craig Topperc3ec1492014-05-26 06:22:03 +00008157 (HasExplicitTemplateArgs ? &TemplateArgs
8158 : nullptr),
Douglas Gregor450f00842009-09-25 18:43:00 +00008159 R, Specialization, Info)) {
Larisse Voufo98b20f12013-07-19 23:00:19 +00008160 // Keep track of almost-matches.
8161 FailedCandidates.addCandidate()
Richard Smithc2bebe92016-05-11 20:37:46 +00008162 .set(P.getPair(), FunTmpl->getTemplatedDecl(),
Larisse Voufo98b20f12013-07-19 23:00:19 +00008163 MakeDeductionFailureInfo(Context, TDK, Info));
Douglas Gregor450f00842009-09-25 18:43:00 +00008164 (void)TDK;
8165 continue;
8166 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00008167
Artem Belevich64135c32016-12-08 19:38:13 +00008168 // Target attributes are part of the cuda function signature, so
8169 // the cuda target of the instantiated function must match that of its
8170 // template. Given that C++ template deduction does not take
8171 // target attributes into account, we reject candidates here that
8172 // have a different target.
8173 if (LangOpts.CUDA &&
8174 IdentifyCUDATarget(Specialization,
8175 /* IgnoreImplicitHDAttributes = */ true) !=
8176 IdentifyCUDATarget(Attr)) {
8177 FailedCandidates.addCandidate().set(
8178 P.getPair(), FunTmpl->getTemplatedDecl(),
8179 MakeDeductionFailureInfo(Context, TDK_CUDATargetMismatch, Info));
8180 continue;
Artem Belevich13e9b4d2016-12-07 19:27:16 +00008181 }
8182
John McCall58cc69d2010-01-27 01:50:18 +00008183 Matches.addDecl(Specialization, P.getAccess());
Douglas Gregor450f00842009-09-25 18:43:00 +00008184 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00008185
Douglas Gregor450f00842009-09-25 18:43:00 +00008186 // Find the most specialized function template specialization.
Larisse Voufo98b20f12013-07-19 23:00:19 +00008187 UnresolvedSetIterator Result = getMostSpecialized(
Richard Smith35e1da22013-09-10 22:59:25 +00008188 Matches.begin(), Matches.end(), FailedCandidates,
Larisse Voufo98b20f12013-07-19 23:00:19 +00008189 D.getIdentifierLoc(),
8190 PDiag(diag::err_explicit_instantiation_not_known) << Name,
8191 PDiag(diag::err_explicit_instantiation_ambiguous) << Name,
8192 PDiag(diag::note_explicit_instantiation_candidate));
Douglas Gregor450f00842009-09-25 18:43:00 +00008193
John McCall58cc69d2010-01-27 01:50:18 +00008194 if (Result == Matches.end())
Douglas Gregor450f00842009-09-25 18:43:00 +00008195 return true;
John McCall58cc69d2010-01-27 01:50:18 +00008196
8197 // Ignore access control bits, we don't need them for redeclaration checking.
8198 FunctionDecl *Specialization = cast<FunctionDecl>(*Result);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00008199
Alexey Bataev73983912014-11-06 10:10:50 +00008200 // C++11 [except.spec]p4
8201 // In an explicit instantiation an exception-specification may be specified,
8202 // but is not required.
8203 // If an exception-specification is specified in an explicit instantiation
8204 // directive, it shall be compatible with the exception-specifications of
8205 // other declarations of that function.
8206 if (auto *FPT = R->getAs<FunctionProtoType>())
8207 if (FPT->hasExceptionSpec()) {
8208 unsigned DiagID =
8209 diag::err_mismatched_exception_spec_explicit_instantiation;
8210 if (getLangOpts().MicrosoftExt)
8211 DiagID = diag::ext_mismatched_exception_spec_explicit_instantiation;
8212 bool Result = CheckEquivalentExceptionSpec(
8213 PDiag(DiagID) << Specialization->getType(),
8214 PDiag(diag::note_explicit_instantiation_here),
8215 Specialization->getType()->getAs<FunctionProtoType>(),
8216 Specialization->getLocation(), FPT, D.getLocStart());
8217 // In Microsoft mode, mismatching exception specifications just cause a
8218 // warning.
8219 if (!getLangOpts().MicrosoftExt && Result)
8220 return true;
8221 }
8222
Douglas Gregor3d7e69f2009-10-15 17:21:20 +00008223 if (Specialization->getTemplateSpecializationKind() == TSK_Undeclared) {
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00008224 Diag(D.getIdentifierLoc(),
Douglas Gregor450f00842009-09-25 18:43:00 +00008225 diag::err_explicit_instantiation_member_function_not_instantiated)
8226 << Specialization
8227 << (Specialization->getTemplateSpecializationKind() ==
8228 TSK_ExplicitSpecialization);
8229 Diag(Specialization->getLocation(), diag::note_explicit_instantiation_here);
8230 return true;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00008231 }
8232
Douglas Gregorec9fd132012-01-14 16:38:05 +00008233 FunctionDecl *PrevDecl = Specialization->getPreviousDecl();
Douglas Gregor8f003d02009-10-15 18:07:02 +00008234 if (!PrevDecl && Specialization->isThisDeclarationADefinition())
8235 PrevDecl = Specialization;
8236
Douglas Gregor3d7e69f2009-10-15 17:21:20 +00008237 if (PrevDecl) {
Abramo Bagnara8075c852010-06-12 07:44:57 +00008238 bool HasNoEffect = false;
Douglas Gregor1d957a32009-10-27 18:42:08 +00008239 if (CheckSpecializationInstantiationRedecl(D.getIdentifierLoc(), TSK,
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00008240 PrevDecl,
8241 PrevDecl->getTemplateSpecializationKind(),
Douglas Gregor3d7e69f2009-10-15 17:21:20 +00008242 PrevDecl->getPointOfInstantiation(),
Abramo Bagnara8075c852010-06-12 07:44:57 +00008243 HasNoEffect))
Douglas Gregor3d7e69f2009-10-15 17:21:20 +00008244 return true;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00008245
Douglas Gregor3d7e69f2009-10-15 17:21:20 +00008246 // FIXME: We may still want to build some representation of this
8247 // explicit specialization.
Abramo Bagnara8075c852010-06-12 07:44:57 +00008248 if (HasNoEffect)
Craig Topperc3ec1492014-05-26 06:22:03 +00008249 return (Decl*) nullptr;
Douglas Gregor3d7e69f2009-10-15 17:21:20 +00008250 }
Anders Carlsson65e6d132009-11-24 05:34:41 +00008251
8252 Specialization->setTemplateSpecializationKind(TSK, D.getIdentifierLoc());
Rafael Espindola2aa7acf2012-01-04 05:40:59 +00008253 if (Attr)
8254 ProcessDeclAttributeList(S, Specialization, Attr);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00008255
Richard Smitheb36ddf2014-04-24 22:45:46 +00008256 if (Specialization->isDefined()) {
8257 // Let the ASTConsumer know that this function has been explicitly
8258 // instantiated now, and its linkage might have changed.
8259 Consumer.HandleTopLevelDecl(DeclGroupRef(Specialization));
8260 } else if (TSK == TSK_ExplicitInstantiationDefinition)
Chandler Carruthcfe41db2010-08-25 08:27:02 +00008261 InstantiateFunctionDefinition(D.getIdentifierLoc(), Specialization);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00008262
Douglas Gregore47f5a72009-10-14 23:41:34 +00008263 // C++0x [temp.explicit]p2:
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00008264 // If the explicit instantiation is for a member function, a member class
Douglas Gregore47f5a72009-10-14 23:41:34 +00008265 // or a static data member of a class template specialization, the name of
8266 // the class template specialization in the qualified-id for the member
8267 // name shall be a simple-template-id.
8268 //
8269 // C++98 has the same restriction, just worded differently.
Douglas Gregor3d7e69f2009-10-15 17:21:20 +00008270 FunctionTemplateDecl *FunTmpl = Specialization->getPrimaryTemplate();
Douglas Gregor7861a802009-11-03 01:35:08 +00008271 if (D.getName().getKind() != UnqualifiedId::IK_TemplateId && !FunTmpl &&
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00008272 D.getCXXScopeSpec().isSet() &&
Douglas Gregore47f5a72009-10-14 23:41:34 +00008273 !ScopeSpecifierHasTemplateId(D.getCXXScopeSpec()))
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00008274 Diag(D.getIdentifierLoc(),
Douglas Gregor010815a2010-06-16 16:26:47 +00008275 diag::ext_explicit_instantiation_without_qualified_id)
Douglas Gregore47f5a72009-10-14 23:41:34 +00008276 << Specialization << D.getCXXScopeSpec().getRange();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00008277
Nathan Wilson83839122016-04-09 02:55:27 +00008278 // C++ Concepts TS [dcl.spec.concept]p7: A program shall not declare an
8279 // explicit instantiation (14.8.2) [...] of a concept definition.
8280 if (FunTmpl && FunTmpl->isConcept() &&
8281 !D.getDeclSpec().isConceptSpecified()) {
8282 Diag(D.getIdentifierLoc(), diag::err_concept_specialized)
8283 << 0 /*function*/ << 0 /*explicitly instantiated*/;
8284 Diag(FunTmpl->getLocation(), diag::note_previous_declaration);
8285 return true;
8286 }
8287
Douglas Gregore47f5a72009-10-14 23:41:34 +00008288 CheckExplicitInstantiationScope(*this,
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00008289 FunTmpl? (NamedDecl *)FunTmpl
Douglas Gregore47f5a72009-10-14 23:41:34 +00008290 : Specialization->getInstantiatedFromMemberFunction(),
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00008291 D.getIdentifierLoc(),
Douglas Gregore47f5a72009-10-14 23:41:34 +00008292 D.getCXXScopeSpec().isSet());
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00008293
Douglas Gregor450f00842009-09-25 18:43:00 +00008294 // FIXME: Create some kind of ExplicitInstantiationDecl here.
Craig Topperc3ec1492014-05-26 06:22:03 +00008295 return (Decl*) nullptr;
Douglas Gregor450f00842009-09-25 18:43:00 +00008296}
8297
John McCallfaf5fb42010-08-26 23:41:50 +00008298TypeResult
John McCall7f41d982009-09-11 04:59:25 +00008299Sema::ActOnDependentTag(Scope *S, unsigned TagSpec, TagUseKind TUK,
8300 const CXXScopeSpec &SS, IdentifierInfo *Name,
8301 SourceLocation TagLoc, SourceLocation NameLoc) {
8302 // This has to hold, because SS is expected to be defined.
8303 assert(Name && "Expected a name in a dependent tag");
8304
Aaron Ballman4a979672014-01-03 13:56:08 +00008305 NestedNameSpecifier *NNS = SS.getScopeRep();
John McCall7f41d982009-09-11 04:59:25 +00008306 if (!NNS)
8307 return true;
8308
Abramo Bagnara6150c882010-05-11 21:36:43 +00008309 TagTypeKind Kind = TypeWithKeyword::getTagTypeKindForTypeSpec(TagSpec);
Daniel Dunbarf4b37e12010-04-01 16:50:48 +00008310
Douglas Gregorba41d012010-04-24 16:38:41 +00008311 if (TUK == TUK_Declaration || TUK == TUK_Definition) {
8312 Diag(NameLoc, diag::err_dependent_tag_decl)
Abramo Bagnara6150c882010-05-11 21:36:43 +00008313 << (TUK == TUK_Definition) << Kind << SS.getRange();
Douglas Gregorba41d012010-04-24 16:38:41 +00008314 return true;
8315 }
Abramo Bagnara6150c882010-05-11 21:36:43 +00008316
Douglas Gregore7c20652011-03-02 00:47:37 +00008317 // Create the resulting type.
Abramo Bagnara6150c882010-05-11 21:36:43 +00008318 ElaboratedTypeKeyword Kwd = TypeWithKeyword::getKeywordForTagTypeKind(Kind);
Douglas Gregore7c20652011-03-02 00:47:37 +00008319 QualType Result = Context.getDependentNameType(Kwd, NNS, Name);
8320
8321 // Create type-source location information for this type.
8322 TypeLocBuilder TLB;
8323 DependentNameTypeLoc TL = TLB.push<DependentNameTypeLoc>(Result);
Abramo Bagnara9033e2b2012-02-06 19:09:27 +00008324 TL.setElaboratedKeywordLoc(TagLoc);
Douglas Gregore7c20652011-03-02 00:47:37 +00008325 TL.setQualifierLoc(SS.getWithLocInContext(Context));
8326 TL.setNameLoc(NameLoc);
8327 return CreateParsedType(Result, TLB.getTypeSourceInfo(Context, Result));
John McCall7f41d982009-09-11 04:59:25 +00008328}
8329
John McCallfaf5fb42010-08-26 23:41:50 +00008330TypeResult
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00008331Sema::ActOnTypenameType(Scope *S, SourceLocation TypenameLoc,
8332 const CXXScopeSpec &SS, const IdentifierInfo &II,
Douglas Gregorf7d77712010-06-16 22:31:08 +00008333 SourceLocation IdLoc) {
Douglas Gregor9cbc22b2011-02-28 22:42:13 +00008334 if (SS.isInvalid())
Douglas Gregor333489b2009-03-27 23:10:48 +00008335 return true;
Douglas Gregor9cbc22b2011-02-28 22:42:13 +00008336
Richard Smith0bf8a4922011-10-18 20:49:44 +00008337 if (TypenameLoc.isValid() && S && !S->getTemplateParamParent())
8338 Diag(TypenameLoc,
Richard Smith2bf7fdb2013-01-02 11:42:31 +00008339 getLangOpts().CPlusPlus11 ?
Richard Smith0bf8a4922011-10-18 20:49:44 +00008340 diag::warn_cxx98_compat_typename_outside_of_template :
8341 diag::ext_typename_outside_of_template)
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00008342 << FixItHint::CreateRemoval(TypenameLoc);
8343
Douglas Gregor3d0da5f2011-03-01 01:34:45 +00008344 NestedNameSpecifierLoc QualifierLoc = SS.getWithLocInContext(Context);
Douglas Gregor844cb502011-03-01 18:12:44 +00008345 QualType T = CheckTypenameType(TypenameLoc.isValid()? ETK_Typename : ETK_None,
8346 TypenameLoc, QualifierLoc, II, IdLoc);
Douglas Gregorfe3d7d02009-04-01 21:51:26 +00008347 if (T.isNull())
8348 return true;
John McCall99b2fe52010-04-29 23:50:39 +00008349
8350 TypeSourceInfo *TSI = Context.CreateTypeSourceInfo(T);
8351 if (isa<DependentNameType>(T)) {
David Blaikie6adc78e2013-02-18 22:06:02 +00008352 DependentNameTypeLoc TL = TSI->getTypeLoc().castAs<DependentNameTypeLoc>();
Abramo Bagnara9033e2b2012-02-06 19:09:27 +00008353 TL.setElaboratedKeywordLoc(TypenameLoc);
Douglas Gregor3d0da5f2011-03-01 01:34:45 +00008354 TL.setQualifierLoc(QualifierLoc);
John McCallf7bcc812010-05-28 23:32:21 +00008355 TL.setNameLoc(IdLoc);
John McCall99b2fe52010-04-29 23:50:39 +00008356 } else {
David Blaikie6adc78e2013-02-18 22:06:02 +00008357 ElaboratedTypeLoc TL = TSI->getTypeLoc().castAs<ElaboratedTypeLoc>();
Abramo Bagnara9033e2b2012-02-06 19:09:27 +00008358 TL.setElaboratedKeywordLoc(TypenameLoc);
Douglas Gregor844cb502011-03-01 18:12:44 +00008359 TL.setQualifierLoc(QualifierLoc);
David Blaikie6adc78e2013-02-18 22:06:02 +00008360 TL.getNamedTypeLoc().castAs<TypeSpecTypeLoc>().setNameLoc(IdLoc);
John McCall99b2fe52010-04-29 23:50:39 +00008361 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00008362
John McCallba7bf592010-08-24 05:47:05 +00008363 return CreateParsedType(T, TSI);
Douglas Gregor333489b2009-03-27 23:10:48 +00008364}
8365
John McCallfaf5fb42010-08-26 23:41:50 +00008366TypeResult
Abramo Bagnara48c05be2012-02-06 14:41:24 +00008367Sema::ActOnTypenameType(Scope *S,
8368 SourceLocation TypenameLoc,
8369 const CXXScopeSpec &SS,
8370 SourceLocation TemplateKWLoc,
Douglas Gregorb09518c2011-02-27 22:46:49 +00008371 TemplateTy TemplateIn,
8372 SourceLocation TemplateNameLoc,
8373 SourceLocation LAngleLoc,
8374 ASTTemplateArgsPtr TemplateArgsIn,
8375 SourceLocation RAngleLoc) {
Richard Smith0bf8a4922011-10-18 20:49:44 +00008376 if (TypenameLoc.isValid() && S && !S->getTemplateParamParent())
8377 Diag(TypenameLoc,
Richard Smith2bf7fdb2013-01-02 11:42:31 +00008378 getLangOpts().CPlusPlus11 ?
Richard Smith0bf8a4922011-10-18 20:49:44 +00008379 diag::warn_cxx98_compat_typename_outside_of_template :
8380 diag::ext_typename_outside_of_template)
8381 << FixItHint::CreateRemoval(TypenameLoc);
Douglas Gregorb09518c2011-02-27 22:46:49 +00008382
8383 // Translate the parser's template argument list in our AST format.
8384 TemplateArgumentListInfo TemplateArgs(LAngleLoc, RAngleLoc);
8385 translateTemplateArguments(TemplateArgsIn, TemplateArgs);
8386
8387 TemplateName Template = TemplateIn.get();
Douglas Gregor84a6a0a2011-03-01 16:44:30 +00008388 if (DependentTemplateName *DTN = Template.getAsDependentTemplateName()) {
8389 // Construct a dependent template specialization type.
8390 assert(DTN && "dependent template has non-dependent name?");
Aaron Ballman4a979672014-01-03 13:56:08 +00008391 assert(DTN->getQualifier() == SS.getScopeRep());
Douglas Gregor84a6a0a2011-03-01 16:44:30 +00008392 QualType T = Context.getDependentTemplateSpecializationType(ETK_Typename,
8393 DTN->getQualifier(),
8394 DTN->getIdentifier(),
8395 TemplateArgs);
Douglas Gregorb09518c2011-02-27 22:46:49 +00008396
Douglas Gregor84a6a0a2011-03-01 16:44:30 +00008397 // Create source-location information for this type.
John McCallf7bcc812010-05-28 23:32:21 +00008398 TypeLocBuilder Builder;
Douglas Gregor84a6a0a2011-03-01 16:44:30 +00008399 DependentTemplateSpecializationTypeLoc SpecTL
8400 = Builder.push<DependentTemplateSpecializationTypeLoc>(T);
Abramo Bagnara48c05be2012-02-06 14:41:24 +00008401 SpecTL.setElaboratedKeywordLoc(TypenameLoc);
8402 SpecTL.setQualifierLoc(SS.getWithLocInContext(Context));
Abramo Bagnarae0a70b22012-02-06 22:45:07 +00008403 SpecTL.setTemplateKeywordLoc(TemplateKWLoc);
Abramo Bagnara48c05be2012-02-06 14:41:24 +00008404 SpecTL.setTemplateNameLoc(TemplateNameLoc);
Douglas Gregorb09518c2011-02-27 22:46:49 +00008405 SpecTL.setLAngleLoc(LAngleLoc);
8406 SpecTL.setRAngleLoc(RAngleLoc);
Douglas Gregorb09518c2011-02-27 22:46:49 +00008407 for (unsigned I = 0, N = TemplateArgs.size(); I != N; ++I)
8408 SpecTL.setArgLocInfo(I, TemplateArgs[I].getLocInfo());
Douglas Gregor84a6a0a2011-03-01 16:44:30 +00008409 return CreateParsedType(T, Builder.getTypeSourceInfo(Context, T));
Douglas Gregor12bbfe12009-09-02 13:05:45 +00008410 }
Douglas Gregorb09518c2011-02-27 22:46:49 +00008411
Douglas Gregor84a6a0a2011-03-01 16:44:30 +00008412 QualType T = CheckTemplateIdType(Template, TemplateNameLoc, TemplateArgs);
8413 if (T.isNull())
8414 return true;
Douglas Gregorb09518c2011-02-27 22:46:49 +00008415
Abramo Bagnara48c05be2012-02-06 14:41:24 +00008416 // Provide source-location information for the template specialization type.
Douglas Gregorb09518c2011-02-27 22:46:49 +00008417 TypeLocBuilder Builder;
Abramo Bagnara48c05be2012-02-06 14:41:24 +00008418 TemplateSpecializationTypeLoc SpecTL
Douglas Gregor84a6a0a2011-03-01 16:44:30 +00008419 = Builder.push<TemplateSpecializationTypeLoc>(T);
Abramo Bagnara48c05be2012-02-06 14:41:24 +00008420 SpecTL.setTemplateKeywordLoc(TemplateKWLoc);
8421 SpecTL.setTemplateNameLoc(TemplateNameLoc);
Douglas Gregorb09518c2011-02-27 22:46:49 +00008422 SpecTL.setLAngleLoc(LAngleLoc);
8423 SpecTL.setRAngleLoc(RAngleLoc);
Douglas Gregorb09518c2011-02-27 22:46:49 +00008424 for (unsigned I = 0, N = TemplateArgs.size(); I != N; ++I)
8425 SpecTL.setArgLocInfo(I, TemplateArgs[I].getLocInfo());
8426
Douglas Gregor84a6a0a2011-03-01 16:44:30 +00008427 T = Context.getElaboratedType(ETK_Typename, SS.getScopeRep(), T);
8428 ElaboratedTypeLoc TL = Builder.push<ElaboratedTypeLoc>(T);
Abramo Bagnara9033e2b2012-02-06 19:09:27 +00008429 TL.setElaboratedKeywordLoc(TypenameLoc);
Douglas Gregor844cb502011-03-01 18:12:44 +00008430 TL.setQualifierLoc(SS.getWithLocInContext(Context));
8431
Douglas Gregor84a6a0a2011-03-01 16:44:30 +00008432 TypeSourceInfo *TSI = Builder.getTypeSourceInfo(Context, T);
8433 return CreateParsedType(T, TSI);
Douglas Gregordce2b622009-04-01 00:28:59 +00008434}
8435
Douglas Gregorb09518c2011-02-27 22:46:49 +00008436
Richard Smith6f8d2c62012-05-09 05:17:00 +00008437/// Determine whether this failed name lookup should be treated as being
8438/// disabled by a usage of std::enable_if.
8439static bool isEnableIf(NestedNameSpecifierLoc NNS, const IdentifierInfo &II,
8440 SourceRange &CondRange) {
8441 // We must be looking for a ::type...
8442 if (!II.isStr("type"))
8443 return false;
8444
8445 // ... within an explicitly-written template specialization...
8446 if (!NNS || !NNS.getNestedNameSpecifier()->getAsType())
8447 return false;
8448 TypeLoc EnableIfTy = NNS.getTypeLoc();
David Blaikie6adc78e2013-02-18 22:06:02 +00008449 TemplateSpecializationTypeLoc EnableIfTSTLoc =
8450 EnableIfTy.getAs<TemplateSpecializationTypeLoc>();
8451 if (!EnableIfTSTLoc || EnableIfTSTLoc.getNumArgs() == 0)
Richard Smith6f8d2c62012-05-09 05:17:00 +00008452 return false;
8453 const TemplateSpecializationType *EnableIfTST =
David Blaikie6adc78e2013-02-18 22:06:02 +00008454 cast<TemplateSpecializationType>(EnableIfTSTLoc.getTypePtr());
Richard Smith6f8d2c62012-05-09 05:17:00 +00008455
8456 // ... which names a complete class template declaration...
8457 const TemplateDecl *EnableIfDecl =
8458 EnableIfTST->getTemplateName().getAsTemplateDecl();
8459 if (!EnableIfDecl || EnableIfTST->isIncompleteType())
8460 return false;
8461
8462 // ... called "enable_if".
8463 const IdentifierInfo *EnableIfII =
8464 EnableIfDecl->getDeclName().getAsIdentifierInfo();
8465 if (!EnableIfII || !EnableIfII->isStr("enable_if"))
8466 return false;
8467
8468 // Assume the first template argument is the condition.
David Blaikie6adc78e2013-02-18 22:06:02 +00008469 CondRange = EnableIfTSTLoc.getArgLoc(0).getSourceRange();
Richard Smith6f8d2c62012-05-09 05:17:00 +00008470 return true;
8471}
8472
Douglas Gregor333489b2009-03-27 23:10:48 +00008473/// \brief Build the type that describes a C++ typename specifier,
8474/// e.g., "typename T::type".
8475QualType
Douglas Gregor9cbc22b2011-02-28 22:42:13 +00008476Sema::CheckTypenameType(ElaboratedTypeKeyword Keyword,
8477 SourceLocation KeywordLoc,
8478 NestedNameSpecifierLoc QualifierLoc,
8479 const IdentifierInfo &II,
Abramo Bagnarad7548482010-05-19 21:37:53 +00008480 SourceLocation IILoc) {
John McCall0b66eb32010-05-01 00:40:08 +00008481 CXXScopeSpec SS;
Douglas Gregor9cbc22b2011-02-28 22:42:13 +00008482 SS.Adopt(QualifierLoc);
Douglas Gregor333489b2009-03-27 23:10:48 +00008483
John McCall0b66eb32010-05-01 00:40:08 +00008484 DeclContext *Ctx = computeDeclContext(SS);
8485 if (!Ctx) {
8486 // If the nested-name-specifier is dependent and couldn't be
8487 // resolved to a type, build a typename type.
Douglas Gregor9cbc22b2011-02-28 22:42:13 +00008488 assert(QualifierLoc.getNestedNameSpecifier()->isDependent());
8489 return Context.getDependentNameType(Keyword,
8490 QualifierLoc.getNestedNameSpecifier(),
8491 &II);
Douglas Gregorc9f9b862009-05-11 19:58:34 +00008492 }
Douglas Gregor333489b2009-03-27 23:10:48 +00008493
John McCall0b66eb32010-05-01 00:40:08 +00008494 // If the nested-name-specifier refers to the current instantiation,
8495 // the "typename" keyword itself is superfluous. In C++03, the
8496 // program is actually ill-formed. However, DR 382 (in C++0x CD1)
8497 // allows such extraneous "typename" keywords, and we retroactively
Douglas Gregorc9d26822010-06-14 22:07:54 +00008498 // apply this DR to C++03 code with only a warning. In any case we continue.
Douglas Gregorc9f9b862009-05-11 19:58:34 +00008499
John McCall0b66eb32010-05-01 00:40:08 +00008500 if (RequireCompleteDeclContext(SS, Ctx))
8501 return QualType();
Douglas Gregor333489b2009-03-27 23:10:48 +00008502
8503 DeclarationName Name(&II);
Abramo Bagnarad7548482010-05-19 21:37:53 +00008504 LookupResult Result(*this, Name, IILoc, LookupOrdinaryName);
Nikola Smiljanicfce370e2014-12-01 23:15:01 +00008505 LookupQualifiedName(Result, Ctx, SS);
Douglas Gregor333489b2009-03-27 23:10:48 +00008506 unsigned DiagID = 0;
Craig Topperc3ec1492014-05-26 06:22:03 +00008507 Decl *Referenced = nullptr;
John McCall27b18f82009-11-17 02:14:36 +00008508 switch (Result.getResultKind()) {
Richard Smith6f8d2c62012-05-09 05:17:00 +00008509 case LookupResult::NotFound: {
8510 // If we're looking up 'type' within a template named 'enable_if', produce
8511 // a more specific diagnostic.
8512 SourceRange CondRange;
8513 if (isEnableIf(QualifierLoc, II, CondRange)) {
8514 Diag(CondRange.getBegin(), diag::err_typename_nested_not_found_enable_if)
8515 << Ctx << CondRange;
8516 return QualType();
8517 }
8518
Douglas Gregore40876a2009-10-13 21:16:44 +00008519 DiagID = diag::err_typename_nested_not_found;
Douglas Gregor333489b2009-03-27 23:10:48 +00008520 break;
Richard Smith6f8d2c62012-05-09 05:17:00 +00008521 }
Douglas Gregoraed2efb2010-12-09 00:06:27 +00008522
8523 case LookupResult::FoundUnresolvedValue: {
8524 // We found a using declaration that is a value. Most likely, the using
8525 // declaration itself is meant to have the 'typename' keyword.
Douglas Gregor9cbc22b2011-02-28 22:42:13 +00008526 SourceRange FullRange(KeywordLoc.isValid() ? KeywordLoc : SS.getBeginLoc(),
Douglas Gregoraed2efb2010-12-09 00:06:27 +00008527 IILoc);
8528 Diag(IILoc, diag::err_typename_refers_to_using_value_decl)
8529 << Name << Ctx << FullRange;
8530 if (UnresolvedUsingValueDecl *Using
8531 = dyn_cast<UnresolvedUsingValueDecl>(Result.getRepresentativeDecl())){
Douglas Gregora9d87bc2011-02-25 00:36:19 +00008532 SourceLocation Loc = Using->getQualifierLoc().getBeginLoc();
Douglas Gregoraed2efb2010-12-09 00:06:27 +00008533 Diag(Loc, diag::note_using_value_decl_missing_typename)
8534 << FixItHint::CreateInsertion(Loc, "typename ");
8535 }
8536 }
8537 // Fall through to create a dependent typename type, from which we can recover
8538 // better.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00008539
Douglas Gregord0d2ee02010-01-15 01:44:47 +00008540 case LookupResult::NotFoundInCurrentInstantiation:
8541 // Okay, it's a member of an unknown instantiation.
Douglas Gregor9cbc22b2011-02-28 22:42:13 +00008542 return Context.getDependentNameType(Keyword,
8543 QualifierLoc.getNestedNameSpecifier(),
8544 &II);
Douglas Gregor333489b2009-03-27 23:10:48 +00008545
8546 case LookupResult::Found:
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00008547 if (TypeDecl *Type = dyn_cast<TypeDecl>(Result.getFoundDecl())) {
Abramo Bagnara6150c882010-05-11 21:36:43 +00008548 // We found a type. Build an ElaboratedType, since the
8549 // typename-specifier was just sugar.
Nico Weber72889432014-09-06 01:25:55 +00008550 MarkAnyDeclReferenced(Type->getLocation(), Type, /*OdrUse=*/false);
Douglas Gregor9cbc22b2011-02-28 22:42:13 +00008551 return Context.getElaboratedType(ETK_Typename,
8552 QualifierLoc.getNestedNameSpecifier(),
Abramo Bagnara6150c882010-05-11 21:36:43 +00008553 Context.getTypeDeclType(Type));
Douglas Gregor333489b2009-03-27 23:10:48 +00008554 }
8555
8556 DiagID = diag::err_typename_nested_not_type;
John McCall9f3059a2009-10-09 21:13:30 +00008557 Referenced = Result.getFoundDecl();
Douglas Gregor333489b2009-03-27 23:10:48 +00008558 break;
8559
8560 case LookupResult::FoundOverloaded:
8561 DiagID = diag::err_typename_nested_not_type;
8562 Referenced = *Result.begin();
8563 break;
8564
John McCall6538c932009-10-10 05:48:19 +00008565 case LookupResult::Ambiguous:
Douglas Gregor333489b2009-03-27 23:10:48 +00008566 return QualType();
8567 }
8568
8569 // If we get here, it's because name lookup did not find a
8570 // type. Emit an appropriate diagnostic and return an error.
Douglas Gregor9cbc22b2011-02-28 22:42:13 +00008571 SourceRange FullRange(KeywordLoc.isValid() ? KeywordLoc : SS.getBeginLoc(),
Abramo Bagnarad7548482010-05-19 21:37:53 +00008572 IILoc);
8573 Diag(IILoc, DiagID) << FullRange << Name << Ctx;
Douglas Gregor333489b2009-03-27 23:10:48 +00008574 if (Referenced)
8575 Diag(Referenced->getLocation(), diag::note_typename_refers_here)
8576 << Name;
8577 return QualType();
8578}
Douglas Gregor15acfb92009-08-06 16:20:37 +00008579
8580namespace {
8581 // See Sema::RebuildTypeInCurrentInstantiation
Benjamin Kramer337e3a52009-11-28 19:45:26 +00008582 class CurrentInstantiationRebuilder
Mike Stump11289f42009-09-09 15:08:12 +00008583 : public TreeTransform<CurrentInstantiationRebuilder> {
Douglas Gregor15acfb92009-08-06 16:20:37 +00008584 SourceLocation Loc;
8585 DeclarationName Entity;
Mike Stump11289f42009-09-09 15:08:12 +00008586
Douglas Gregor15acfb92009-08-06 16:20:37 +00008587 public:
Douglas Gregor14cf7522010-04-30 18:55:50 +00008588 typedef TreeTransform<CurrentInstantiationRebuilder> inherited;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00008589
Mike Stump11289f42009-09-09 15:08:12 +00008590 CurrentInstantiationRebuilder(Sema &SemaRef,
Douglas Gregor15acfb92009-08-06 16:20:37 +00008591 SourceLocation Loc,
Mike Stump11289f42009-09-09 15:08:12 +00008592 DeclarationName Entity)
8593 : TreeTransform<CurrentInstantiationRebuilder>(SemaRef),
Douglas Gregor15acfb92009-08-06 16:20:37 +00008594 Loc(Loc), Entity(Entity) { }
Mike Stump11289f42009-09-09 15:08:12 +00008595
8596 /// \brief Determine whether the given type \p T has already been
Douglas Gregor15acfb92009-08-06 16:20:37 +00008597 /// transformed.
8598 ///
8599 /// For the purposes of type reconstruction, a type has already been
8600 /// transformed if it is NULL or if it is not dependent.
8601 bool AlreadyTransformed(QualType T) {
8602 return T.isNull() || !T->isDependentType();
8603 }
Mike Stump11289f42009-09-09 15:08:12 +00008604
8605 /// \brief Returns the location of the entity whose type is being
Douglas Gregor15acfb92009-08-06 16:20:37 +00008606 /// rebuilt.
8607 SourceLocation getBaseLocation() { return Loc; }
Mike Stump11289f42009-09-09 15:08:12 +00008608
Douglas Gregor15acfb92009-08-06 16:20:37 +00008609 /// \brief Returns the name of the entity whose type is being rebuilt.
8610 DeclarationName getBaseEntity() { return Entity; }
Mike Stump11289f42009-09-09 15:08:12 +00008611
Douglas Gregoref6ab412009-10-27 06:26:26 +00008612 /// \brief Sets the "base" location and entity when that
8613 /// information is known based on another transformation.
8614 void setBase(SourceLocation Loc, DeclarationName Entity) {
8615 this->Loc = Loc;
8616 this->Entity = Entity;
8617 }
Douglas Gregor0c46b2b2012-02-13 22:00:16 +00008618
8619 ExprResult TransformLambdaExpr(LambdaExpr *E) {
8620 // Lambdas never need to be transformed.
8621 return E;
8622 }
Douglas Gregor15acfb92009-08-06 16:20:37 +00008623 };
Eugene Zelenko1ced5092016-02-12 22:53:10 +00008624} // end anonymous namespace
Douglas Gregor15acfb92009-08-06 16:20:37 +00008625
Douglas Gregor15acfb92009-08-06 16:20:37 +00008626/// \brief Rebuilds a type within the context of the current instantiation.
8627///
Mike Stump11289f42009-09-09 15:08:12 +00008628/// The type \p T is part of the type of an out-of-line member definition of
Douglas Gregor15acfb92009-08-06 16:20:37 +00008629/// a class template (or class template partial specialization) that was parsed
Mike Stump11289f42009-09-09 15:08:12 +00008630/// and constructed before we entered the scope of the class template (or
Douglas Gregor15acfb92009-08-06 16:20:37 +00008631/// partial specialization thereof). This routine will rebuild that type now
8632/// that we have entered the declarator's scope, which may produce different
8633/// canonical types, e.g.,
8634///
8635/// \code
8636/// template<typename T>
8637/// struct X {
8638/// typedef T* pointer;
8639/// pointer data();
8640/// };
8641///
8642/// template<typename T>
8643/// typename X<T>::pointer X<T>::data() { ... }
8644/// \endcode
8645///
Douglas Gregorc1d2d8a2010-03-31 17:34:00 +00008646/// Here, the type "typename X<T>::pointer" will be created as a DependentNameType,
Douglas Gregor15acfb92009-08-06 16:20:37 +00008647/// since we do not know that we can look into X<T> when we parsed the type.
8648/// This function will rebuild the type, performing the lookup of "pointer"
Abramo Bagnara6150c882010-05-11 21:36:43 +00008649/// in X<T> and returning an ElaboratedType whose canonical type is the same
Douglas Gregor15acfb92009-08-06 16:20:37 +00008650/// as the canonical type of T*, allowing the return types of the out-of-line
8651/// definition and the declaration to match.
John McCall99b2fe52010-04-29 23:50:39 +00008652TypeSourceInfo *Sema::RebuildTypeInCurrentInstantiation(TypeSourceInfo *T,
8653 SourceLocation Loc,
8654 DeclarationName Name) {
8655 if (!T || !T->getType()->isDependentType())
Douglas Gregor15acfb92009-08-06 16:20:37 +00008656 return T;
Mike Stump11289f42009-09-09 15:08:12 +00008657
Douglas Gregor15acfb92009-08-06 16:20:37 +00008658 CurrentInstantiationRebuilder Rebuilder(*this, Loc, Name);
8659 return Rebuilder.TransformType(T);
Benjamin Kramer854d7de2009-08-11 22:33:06 +00008660}
Douglas Gregorbe999392009-09-15 16:23:51 +00008661
John McCalldadc5752010-08-24 06:29:42 +00008662ExprResult Sema::RebuildExprInCurrentInstantiation(Expr *E) {
John McCallba7bf592010-08-24 05:47:05 +00008663 CurrentInstantiationRebuilder Rebuilder(*this, E->getExprLoc(),
8664 DeclarationName());
8665 return Rebuilder.TransformExpr(E);
8666}
8667
John McCall99b2fe52010-04-29 23:50:39 +00008668bool Sema::RebuildNestedNameSpecifierInCurrentInstantiation(CXXScopeSpec &SS) {
Douglas Gregor10176412011-02-25 16:07:42 +00008669 if (SS.isInvalid())
8670 return true;
John McCall2408e322010-04-27 00:57:59 +00008671
Douglas Gregor10176412011-02-25 16:07:42 +00008672 NestedNameSpecifierLoc QualifierLoc = SS.getWithLocInContext(Context);
John McCall2408e322010-04-27 00:57:59 +00008673 CurrentInstantiationRebuilder Rebuilder(*this, SS.getRange().getBegin(),
8674 DeclarationName());
Douglas Gregor10176412011-02-25 16:07:42 +00008675 NestedNameSpecifierLoc Rebuilt
8676 = Rebuilder.TransformNestedNameSpecifierLoc(QualifierLoc);
8677 if (!Rebuilt)
8678 return true;
John McCall99b2fe52010-04-29 23:50:39 +00008679
Douglas Gregor10176412011-02-25 16:07:42 +00008680 SS.Adopt(Rebuilt);
John McCall99b2fe52010-04-29 23:50:39 +00008681 return false;
John McCall2408e322010-04-27 00:57:59 +00008682}
8683
Douglas Gregor041b0842011-10-14 15:31:12 +00008684/// \brief Rebuild the template parameters now that we know we're in a current
8685/// instantiation.
8686bool Sema::RebuildTemplateParamsInCurrentInstantiation(
8687 TemplateParameterList *Params) {
8688 for (unsigned I = 0, N = Params->size(); I != N; ++I) {
8689 Decl *Param = Params->getParam(I);
8690
8691 // There is nothing to rebuild in a type parameter.
8692 if (isa<TemplateTypeParmDecl>(Param))
8693 continue;
8694
8695 // Rebuild the template parameter list of a template template parameter.
8696 if (TemplateTemplateParmDecl *TTP
8697 = dyn_cast<TemplateTemplateParmDecl>(Param)) {
8698 if (RebuildTemplateParamsInCurrentInstantiation(
8699 TTP->getTemplateParameters()))
8700 return true;
8701
8702 continue;
8703 }
8704
8705 // Rebuild the type of a non-type template parameter.
8706 NonTypeTemplateParmDecl *NTTP = cast<NonTypeTemplateParmDecl>(Param);
8707 TypeSourceInfo *NewTSI
8708 = RebuildTypeInCurrentInstantiation(NTTP->getTypeSourceInfo(),
8709 NTTP->getLocation(),
8710 NTTP->getDeclName());
8711 if (!NewTSI)
8712 return true;
8713
8714 if (NewTSI != NTTP->getTypeSourceInfo()) {
8715 NTTP->setTypeSourceInfo(NewTSI);
8716 NTTP->setType(NewTSI->getType());
8717 }
8718 }
8719
8720 return false;
8721}
8722
Douglas Gregorbe999392009-09-15 16:23:51 +00008723/// \brief Produces a formatted string that describes the binding of
8724/// template parameters to template arguments.
8725std::string
8726Sema::getTemplateArgumentBindingsText(const TemplateParameterList *Params,
8727 const TemplateArgumentList &Args) {
Douglas Gregor1ccc8412010-11-07 23:05:16 +00008728 return getTemplateArgumentBindingsText(Params, Args.data(), Args.size());
Douglas Gregore62e6a02009-11-11 19:13:48 +00008729}
8730
8731std::string
8732Sema::getTemplateArgumentBindingsText(const TemplateParameterList *Params,
8733 const TemplateArgument *Args,
8734 unsigned NumArgs) {
Dylan Noblesmith2c1dd272012-02-05 02:13:05 +00008735 SmallString<128> Str;
Douglas Gregor0192c232010-12-20 16:52:59 +00008736 llvm::raw_svector_ostream Out(Str);
Douglas Gregorbe999392009-09-15 16:23:51 +00008737
Douglas Gregore62e6a02009-11-11 19:13:48 +00008738 if (!Params || Params->size() == 0 || NumArgs == 0)
Douglas Gregor0192c232010-12-20 16:52:59 +00008739 return std::string();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00008740
Douglas Gregorbe999392009-09-15 16:23:51 +00008741 for (unsigned I = 0, N = Params->size(); I != N; ++I) {
Douglas Gregore62e6a02009-11-11 19:13:48 +00008742 if (I >= NumArgs)
8743 break;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00008744
Douglas Gregorbe999392009-09-15 16:23:51 +00008745 if (I == 0)
Douglas Gregor0192c232010-12-20 16:52:59 +00008746 Out << "[with ";
Douglas Gregorbe999392009-09-15 16:23:51 +00008747 else
Douglas Gregor0192c232010-12-20 16:52:59 +00008748 Out << ", ";
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00008749
Douglas Gregorbe999392009-09-15 16:23:51 +00008750 if (const IdentifierInfo *Id = Params->getParam(I)->getIdentifier()) {
Douglas Gregor0192c232010-12-20 16:52:59 +00008751 Out << Id->getName();
Douglas Gregorbe999392009-09-15 16:23:51 +00008752 } else {
Douglas Gregor0192c232010-12-20 16:52:59 +00008753 Out << '$' << I;
Douglas Gregorbe999392009-09-15 16:23:51 +00008754 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00008755
Douglas Gregor0192c232010-12-20 16:52:59 +00008756 Out << " = ";
Douglas Gregor75acd922011-09-27 23:30:47 +00008757 Args[I].print(getPrintingPolicy(), Out);
Douglas Gregorbe999392009-09-15 16:23:51 +00008758 }
Douglas Gregor0192c232010-12-20 16:52:59 +00008759
8760 Out << ']';
8761 return Out.str();
Douglas Gregorbe999392009-09-15 16:23:51 +00008762}
Francois Pichet1c229c02011-04-22 22:18:13 +00008763
Richard Smithe40f2ba2013-08-07 21:41:30 +00008764void Sema::MarkAsLateParsedTemplate(FunctionDecl *FD, Decl *FnD,
8765 CachedTokens &Toks) {
Francois Pichet1c229c02011-04-22 22:18:13 +00008766 if (!FD)
8767 return;
Richard Smithe40f2ba2013-08-07 21:41:30 +00008768
Justin Lebar28f09c52016-10-10 16:26:08 +00008769 auto LPT = llvm::make_unique<LateParsedTemplate>();
Richard Smithe40f2ba2013-08-07 21:41:30 +00008770
8771 // Take tokens to avoid allocations
8772 LPT->Toks.swap(Toks);
8773 LPT->D = FnD;
Justin Lebar28f09c52016-10-10 16:26:08 +00008774 LateParsedTemplateMap.insert(std::make_pair(FD, std::move(LPT)));
Richard Smithe40f2ba2013-08-07 21:41:30 +00008775
8776 FD->setLateTemplateParsed(true);
8777}
8778
8779void Sema::UnmarkAsLateParsedTemplate(FunctionDecl *FD) {
8780 if (!FD)
8781 return;
8782 FD->setLateTemplateParsed(false);
8783}
Francois Pichet1c229c02011-04-22 22:18:13 +00008784
8785bool Sema::IsInsideALocalClassWithinATemplateFunction() {
8786 DeclContext *DC = CurContext;
8787
8788 while (DC) {
8789 if (CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(CurContext)) {
8790 const FunctionDecl *FD = RD->isLocalClass();
8791 return (FD && FD->getTemplatedKind() != FunctionDecl::TK_NonTemplate);
8792 } else if (DC->isTranslationUnit() || DC->isNamespace())
8793 return false;
8794
8795 DC = DC->getParent();
8796 }
8797 return false;
8798}
Richard Smith6739a102016-05-05 00:56:12 +00008799
Benjamin Kramera0a13c32016-08-06 11:21:04 +00008800namespace {
Richard Smith6739a102016-05-05 00:56:12 +00008801/// \brief Walk the path from which a declaration was instantiated, and check
8802/// that every explicit specialization along that path is visible. This enforces
8803/// C++ [temp.expl.spec]/6:
8804///
8805/// If a template, a member template or a member of a class template is
8806/// explicitly specialized then that specialization shall be declared before
8807/// the first use of that specialization that would cause an implicit
8808/// instantiation to take place, in every translation unit in which such a
8809/// use occurs; no diagnostic is required.
8810///
8811/// and also C++ [temp.class.spec]/1:
8812///
8813/// A partial specialization shall be declared before the first use of a
8814/// class template specialization that would make use of the partial
8815/// specialization as the result of an implicit or explicit instantiation
8816/// in every translation unit in which such a use occurs; no diagnostic is
8817/// required.
8818class ExplicitSpecializationVisibilityChecker {
8819 Sema &S;
8820 SourceLocation Loc;
8821 llvm::SmallVector<Module *, 8> Modules;
8822
8823public:
8824 ExplicitSpecializationVisibilityChecker(Sema &S, SourceLocation Loc)
8825 : S(S), Loc(Loc) {}
8826
8827 void check(NamedDecl *ND) {
8828 if (auto *FD = dyn_cast<FunctionDecl>(ND))
8829 return checkImpl(FD);
8830 if (auto *RD = dyn_cast<CXXRecordDecl>(ND))
8831 return checkImpl(RD);
8832 if (auto *VD = dyn_cast<VarDecl>(ND))
8833 return checkImpl(VD);
8834 if (auto *ED = dyn_cast<EnumDecl>(ND))
8835 return checkImpl(ED);
8836 }
8837
8838private:
8839 void diagnose(NamedDecl *D, bool IsPartialSpec) {
8840 auto Kind = IsPartialSpec ? Sema::MissingImportKind::PartialSpecialization
8841 : Sema::MissingImportKind::ExplicitSpecialization;
8842 const bool Recover = true;
8843
8844 // If we got a custom set of modules (because only a subset of the
8845 // declarations are interesting), use them, otherwise let
8846 // diagnoseMissingImport intelligently pick some.
8847 if (Modules.empty())
8848 S.diagnoseMissingImport(Loc, D, Kind, Recover);
8849 else
8850 S.diagnoseMissingImport(Loc, D, D->getLocation(), Modules, Kind, Recover);
8851 }
8852
8853 // Check a specific declaration. There are three problematic cases:
8854 //
8855 // 1) The declaration is an explicit specialization of a template
8856 // specialization.
8857 // 2) The declaration is an explicit specialization of a member of an
8858 // templated class.
8859 // 3) The declaration is an instantiation of a template, and that template
8860 // is an explicit specialization of a member of a templated class.
8861 //
8862 // We don't need to go any deeper than that, as the instantiation of the
8863 // surrounding class / etc is not triggered by whatever triggered this
8864 // instantiation, and thus should be checked elsewhere.
8865 template<typename SpecDecl>
8866 void checkImpl(SpecDecl *Spec) {
8867 bool IsHiddenExplicitSpecialization = false;
8868 if (Spec->getTemplateSpecializationKind() == TSK_ExplicitSpecialization) {
8869 IsHiddenExplicitSpecialization =
8870 Spec->getMemberSpecializationInfo()
8871 ? !S.hasVisibleMemberSpecialization(Spec, &Modules)
8872 : !S.hasVisibleDeclaration(Spec);
8873 } else {
8874 checkInstantiated(Spec);
8875 }
8876
8877 if (IsHiddenExplicitSpecialization)
8878 diagnose(Spec->getMostRecentDecl(), false);
8879 }
8880
8881 void checkInstantiated(FunctionDecl *FD) {
8882 if (auto *TD = FD->getPrimaryTemplate())
8883 checkTemplate(TD);
8884 }
8885
8886 void checkInstantiated(CXXRecordDecl *RD) {
8887 auto *SD = dyn_cast<ClassTemplateSpecializationDecl>(RD);
8888 if (!SD)
8889 return;
8890
8891 auto From = SD->getSpecializedTemplateOrPartial();
8892 if (auto *TD = From.dyn_cast<ClassTemplateDecl *>())
8893 checkTemplate(TD);
8894 else if (auto *TD =
8895 From.dyn_cast<ClassTemplatePartialSpecializationDecl *>()) {
8896 if (!S.hasVisibleDeclaration(TD))
8897 diagnose(TD, true);
8898 checkTemplate(TD);
8899 }
8900 }
8901
8902 void checkInstantiated(VarDecl *RD) {
8903 auto *SD = dyn_cast<VarTemplateSpecializationDecl>(RD);
8904 if (!SD)
8905 return;
8906
8907 auto From = SD->getSpecializedTemplateOrPartial();
8908 if (auto *TD = From.dyn_cast<VarTemplateDecl *>())
8909 checkTemplate(TD);
8910 else if (auto *TD =
8911 From.dyn_cast<VarTemplatePartialSpecializationDecl *>()) {
8912 if (!S.hasVisibleDeclaration(TD))
8913 diagnose(TD, true);
8914 checkTemplate(TD);
8915 }
8916 }
8917
8918 void checkInstantiated(EnumDecl *FD) {}
8919
8920 template<typename TemplDecl>
8921 void checkTemplate(TemplDecl *TD) {
8922 if (TD->isMemberSpecialization()) {
8923 if (!S.hasVisibleMemberSpecialization(TD, &Modules))
8924 diagnose(TD->getMostRecentDecl(), false);
8925 }
8926 }
8927};
Benjamin Kramera0a13c32016-08-06 11:21:04 +00008928} // end anonymous namespace
Richard Smith6739a102016-05-05 00:56:12 +00008929
8930void Sema::checkSpecializationVisibility(SourceLocation Loc, NamedDecl *Spec) {
8931 if (!getLangOpts().Modules)
8932 return;
8933
8934 ExplicitSpecializationVisibilityChecker(*this, Loc).check(Spec);
8935}
8936
8937/// \brief Check whether a template partial specialization that we've discovered
8938/// is hidden, and produce suitable diagnostics if so.
8939void Sema::checkPartialSpecializationVisibility(SourceLocation Loc,
8940 NamedDecl *Spec) {
8941 llvm::SmallVector<Module *, 8> Modules;
8942 if (!hasVisibleDeclaration(Spec, &Modules))
8943 diagnoseMissingImport(Loc, Spec, Spec->getLocation(), Modules,
8944 MissingImportKind::PartialSpecialization,
8945 /*Recover*/true);
8946}