blob: d76ca76693e2f280ef62f6bdbf078b87e8dd9224 [file] [log] [blame]
Douglas Gregor72c3f312008-12-05 18:15:24 +00001//===------- SemaTemplate.cpp - Semantic Analysis for C++ Templates -------===/
Douglas Gregor72c3f312008-12-05 18:15:24 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Douglas Gregor99ebf652009-02-27 19:31:52 +00007//===----------------------------------------------------------------------===/
Douglas Gregor72c3f312008-12-05 18:15:24 +00008//
9// This file implements semantic analysis for C++ templates.
Douglas Gregor99ebf652009-02-27 19:31:52 +000010//===----------------------------------------------------------------------===/
Douglas Gregor72c3f312008-12-05 18:15:24 +000011
John McCall2d887082010-08-25 22:03:47 +000012#include "clang/Sema/SemaInternal.h"
Douglas Gregore737f502010-08-12 20:07:10 +000013#include "clang/Sema/Lookup.h"
John McCall5f1e0942010-08-24 08:50:51 +000014#include "clang/Sema/Scope.h"
John McCall7cd088e2010-08-24 07:21:54 +000015#include "clang/Sema/Template.h"
John McCall2a7fb272010-08-25 05:32:35 +000016#include "clang/Sema/TemplateDeduction.h"
Douglas Gregor4a959d82009-08-06 16:20:37 +000017#include "TreeTransform.h"
Douglas Gregorddc29e12009-02-06 22:42:48 +000018#include "clang/AST/ASTContext.h"
Douglas Gregor898574e2008-12-05 23:32:09 +000019#include "clang/AST/Expr.h"
Douglas Gregorcc45cb32009-02-11 19:52:55 +000020#include "clang/AST/ExprCXX.h"
John McCall92b7f702010-03-11 07:50:04 +000021#include "clang/AST/DeclFriend.h"
Douglas Gregoraaba5e32009-02-04 19:02:06 +000022#include "clang/AST/DeclTemplate.h"
John McCall4e2cbb22010-10-20 05:44:58 +000023#include "clang/AST/RecursiveASTVisitor.h"
Douglas Gregor5f3aeb62010-10-13 00:27:52 +000024#include "clang/AST/TypeVisitor.h"
John McCall19510852010-08-20 18:27:03 +000025#include "clang/Sema/DeclSpec.h"
26#include "clang/Sema/ParsedTemplate.h"
Douglas Gregor72c3f312008-12-05 18:15:24 +000027#include "clang/Basic/LangOptions.h"
Douglas Gregord5a423b2009-09-25 18:43:00 +000028#include "clang/Basic/PartialDiagnostic.h"
Douglas Gregorbf4ea562009-09-15 16:23:51 +000029#include "llvm/ADT/StringExtras.h"
Douglas Gregor72c3f312008-12-05 18:15:24 +000030using namespace clang;
John McCall2a7fb272010-08-25 05:32:35 +000031using namespace sema;
Douglas Gregor72c3f312008-12-05 18:15:24 +000032
John McCall78b81052010-11-10 02:40:36 +000033// Exported for use by Parser.
34SourceRange
35clang::getTemplateParamsRange(TemplateParameterList const * const *Ps,
36 unsigned N) {
37 if (!N) return SourceRange();
38 return SourceRange(Ps[0]->getTemplateLoc(), Ps[N-1]->getRAngleLoc());
39}
40
Douglas Gregor2dd078a2009-09-02 22:59:36 +000041/// \brief Determine whether the declaration found is acceptable as the name
42/// of a template and, if so, return that template declaration. Otherwise,
43/// returns NULL.
John McCallad00b772010-06-16 08:42:20 +000044static NamedDecl *isAcceptableTemplateName(ASTContext &Context,
45 NamedDecl *Orig) {
46 NamedDecl *D = Orig->getUnderlyingDecl();
Mike Stump1eb44332009-09-09 15:08:12 +000047
Douglas Gregor2dd078a2009-09-02 22:59:36 +000048 if (isa<TemplateDecl>(D))
John McCallad00b772010-06-16 08:42:20 +000049 return Orig;
Mike Stump1eb44332009-09-09 15:08:12 +000050
Douglas Gregor2dd078a2009-09-02 22:59:36 +000051 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(D)) {
52 // C++ [temp.local]p1:
53 // Like normal (non-template) classes, class templates have an
54 // injected-class-name (Clause 9). The injected-class-name
55 // can be used with or without a template-argument-list. When
56 // it is used without a template-argument-list, it is
57 // equivalent to the injected-class-name followed by the
58 // template-parameters of the class template enclosed in
59 // <>. When it is used with a template-argument-list, it
60 // refers to the specified class template specialization,
61 // which could be the current specialization or another
62 // specialization.
63 if (Record->isInjectedClassName()) {
Douglas Gregor542b5482009-10-14 17:30:58 +000064 Record = cast<CXXRecordDecl>(Record->getDeclContext());
Douglas Gregor2dd078a2009-09-02 22:59:36 +000065 if (Record->getDescribedClassTemplate())
66 return Record->getDescribedClassTemplate();
67
68 if (ClassTemplateSpecializationDecl *Spec
69 = dyn_cast<ClassTemplateSpecializationDecl>(Record))
70 return Spec->getSpecializedTemplate();
71 }
Mike Stump1eb44332009-09-09 15:08:12 +000072
Douglas Gregor2dd078a2009-09-02 22:59:36 +000073 return 0;
74 }
Mike Stump1eb44332009-09-09 15:08:12 +000075
Douglas Gregor2dd078a2009-09-02 22:59:36 +000076 return 0;
77}
78
Douglas Gregor312eadb2011-04-24 05:37:28 +000079void Sema::FilterAcceptableTemplateNames(LookupResult &R) {
Douglas Gregor01e56ae2010-04-12 20:54:26 +000080 // The set of class templates we've already seen.
81 llvm::SmallPtrSet<ClassTemplateDecl *, 8> ClassTemplates;
John McCallf7a1a742009-11-24 19:00:30 +000082 LookupResult::Filter filter = R.makeFilter();
83 while (filter.hasNext()) {
84 NamedDecl *Orig = filter.next();
Douglas Gregor312eadb2011-04-24 05:37:28 +000085 NamedDecl *Repl = isAcceptableTemplateName(Context, Orig);
John McCallf7a1a742009-11-24 19:00:30 +000086 if (!Repl)
87 filter.erase();
Douglas Gregor01e56ae2010-04-12 20:54:26 +000088 else if (Repl != Orig) {
89
90 // C++ [temp.local]p3:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +000091 // A lookup that finds an injected-class-name (10.2) can result in an
Douglas Gregor01e56ae2010-04-12 20:54:26 +000092 // ambiguity in certain cases (for example, if it is found in more than
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +000093 // one base class). If all of the injected-class-names that are found
94 // refer to specializations of the same class template, and if the name
Richard Smith3e4c6c42011-05-05 21:57:07 +000095 // is used as a template-name, the reference refers to the class
96 // template itself and not a specialization thereof, and is not
Douglas Gregor01e56ae2010-04-12 20:54:26 +000097 // ambiguous.
Douglas Gregor01e56ae2010-04-12 20:54:26 +000098 if (ClassTemplateDecl *ClassTmpl = dyn_cast<ClassTemplateDecl>(Repl))
99 if (!ClassTemplates.insert(ClassTmpl)) {
100 filter.erase();
101 continue;
102 }
John McCall8ba66912010-08-13 07:02:08 +0000103
104 // FIXME: we promote access to public here as a workaround to
105 // the fact that LookupResult doesn't let us remember that we
106 // found this template through a particular injected class name,
107 // which means we end up doing nasty things to the invariants.
108 // Pretending that access is public is *much* safer.
109 filter.replace(Repl, AS_public);
Douglas Gregor01e56ae2010-04-12 20:54:26 +0000110 }
John McCallf7a1a742009-11-24 19:00:30 +0000111 }
112 filter.done();
113}
114
Douglas Gregor312eadb2011-04-24 05:37:28 +0000115bool Sema::hasAnyAcceptableTemplateNames(LookupResult &R) {
116 for (LookupResult::iterator I = R.begin(), IEnd = R.end(); I != IEnd; ++I)
117 if (isAcceptableTemplateName(Context, *I))
118 return true;
119
Douglas Gregor3b887352011-04-27 04:48:22 +0000120 return false;
Douglas Gregor312eadb2011-04-24 05:37:28 +0000121}
122
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000123TemplateNameKind Sema::isTemplateName(Scope *S,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +0000124 CXXScopeSpec &SS,
Abramo Bagnara7c153532010-08-06 12:11:11 +0000125 bool hasTemplateKeyword,
Douglas Gregor014e88d2009-11-03 23:16:33 +0000126 UnqualifiedId &Name,
John McCallb3d87482010-08-24 05:47:05 +0000127 ParsedType ObjectTypePtr,
Douglas Gregor495c35d2009-08-25 22:51:20 +0000128 bool EnteringContext,
Douglas Gregor1fd6d442010-05-21 23:18:07 +0000129 TemplateTy &TemplateResult,
130 bool &MemberOfUnknownSpecialization) {
Douglas Gregorb862b8f2010-01-11 23:29:10 +0000131 assert(getLangOptions().CPlusPlus && "No template names in C!");
132
Douglas Gregor014e88d2009-11-03 23:16:33 +0000133 DeclarationName TName;
Douglas Gregor1fd6d442010-05-21 23:18:07 +0000134 MemberOfUnknownSpecialization = false;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000135
Douglas Gregor014e88d2009-11-03 23:16:33 +0000136 switch (Name.getKind()) {
137 case UnqualifiedId::IK_Identifier:
138 TName = DeclarationName(Name.Identifier);
139 break;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000140
Douglas Gregor014e88d2009-11-03 23:16:33 +0000141 case UnqualifiedId::IK_OperatorFunctionId:
142 TName = Context.DeclarationNames.getCXXOperatorName(
143 Name.OperatorFunctionId.Operator);
144 break;
145
Sean Hunte6252d12009-11-28 08:58:14 +0000146 case UnqualifiedId::IK_LiteralOperatorId:
Sean Hunt3e518bd2009-11-29 07:34:05 +0000147 TName = Context.DeclarationNames.getCXXLiteralOperatorName(Name.Identifier);
148 break;
Sean Hunte6252d12009-11-28 08:58:14 +0000149
Douglas Gregor014e88d2009-11-03 23:16:33 +0000150 default:
151 return TNK_Non_template;
152 }
Mike Stump1eb44332009-09-09 15:08:12 +0000153
John McCallb3d87482010-08-24 05:47:05 +0000154 QualType ObjectType = ObjectTypePtr.get();
Mike Stump1eb44332009-09-09 15:08:12 +0000155
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000156 LookupResult R(*this, TName, Name.getSourceRange().getBegin(),
Douglas Gregorbfea2392009-12-31 08:11:17 +0000157 LookupOrdinaryName);
Douglas Gregor1fd6d442010-05-21 23:18:07 +0000158 LookupTemplateName(R, S, SS, ObjectType, EnteringContext,
159 MemberOfUnknownSpecialization);
John McCall67d22fb2010-08-28 20:17:00 +0000160 if (R.empty()) return TNK_Non_template;
161 if (R.isAmbiguous()) {
162 // Suppress diagnostics; we'll redo this lookup later.
John McCallb8592062010-08-13 02:23:42 +0000163 R.suppressDiagnostics();
John McCall67d22fb2010-08-28 20:17:00 +0000164
165 // FIXME: we might have ambiguous templates, in which case we
166 // should at least parse them properly!
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000167 return TNK_Non_template;
John McCallb8592062010-08-13 02:23:42 +0000168 }
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000169
John McCall0bd6feb2009-12-02 08:04:21 +0000170 TemplateName Template;
171 TemplateNameKind TemplateKind;
Mike Stump1eb44332009-09-09 15:08:12 +0000172
John McCall0bd6feb2009-12-02 08:04:21 +0000173 unsigned ResultCount = R.end() - R.begin();
174 if (ResultCount > 1) {
175 // We assume that we'll preserve the qualifier from a function
176 // template name in other ways.
177 Template = Context.getOverloadedTemplateName(R.begin(), R.end());
178 TemplateKind = TNK_Function_template;
John McCallb8592062010-08-13 02:23:42 +0000179
180 // We'll do this lookup again later.
181 R.suppressDiagnostics();
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000182 } else {
John McCall0bd6feb2009-12-02 08:04:21 +0000183 TemplateDecl *TD = cast<TemplateDecl>((*R.begin())->getUnderlyingDecl());
184
185 if (SS.isSet() && !SS.isInvalid()) {
186 NestedNameSpecifier *Qualifier
187 = static_cast<NestedNameSpecifier *>(SS.getScopeRep());
Abramo Bagnara7c153532010-08-06 12:11:11 +0000188 Template = Context.getQualifiedTemplateName(Qualifier,
189 hasTemplateKeyword, TD);
John McCall0bd6feb2009-12-02 08:04:21 +0000190 } else {
191 Template = TemplateName(TD);
192 }
193
John McCallb8592062010-08-13 02:23:42 +0000194 if (isa<FunctionTemplateDecl>(TD)) {
John McCall0bd6feb2009-12-02 08:04:21 +0000195 TemplateKind = TNK_Function_template;
John McCallb8592062010-08-13 02:23:42 +0000196
197 // We'll do this lookup again later.
198 R.suppressDiagnostics();
199 } else {
Richard Smith3e4c6c42011-05-05 21:57:07 +0000200 assert(isa<ClassTemplateDecl>(TD) || isa<TemplateTemplateParmDecl>(TD) ||
201 isa<TypeAliasTemplateDecl>(TD));
John McCall0bd6feb2009-12-02 08:04:21 +0000202 TemplateKind = TNK_Type_template;
203 }
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000204 }
Mike Stump1eb44332009-09-09 15:08:12 +0000205
John McCall0bd6feb2009-12-02 08:04:21 +0000206 TemplateResult = TemplateTy::make(Template);
207 return TemplateKind;
John McCallf7a1a742009-11-24 19:00:30 +0000208}
209
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000210bool Sema::DiagnoseUnknownTemplateName(const IdentifierInfo &II,
Douglas Gregor84d0a192010-01-12 21:28:44 +0000211 SourceLocation IILoc,
212 Scope *S,
213 const CXXScopeSpec *SS,
214 TemplateTy &SuggestedTemplate,
215 TemplateNameKind &SuggestedKind) {
216 // We can't recover unless there's a dependent scope specifier preceding the
217 // template name.
Douglas Gregord5ab9b02010-05-21 23:43:39 +0000218 // FIXME: Typo correction?
Douglas Gregor84d0a192010-01-12 21:28:44 +0000219 if (!SS || !SS->isSet() || !isDependentScopeSpecifier(*SS) ||
220 computeDeclContext(*SS))
221 return false;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000222
Douglas Gregor84d0a192010-01-12 21:28:44 +0000223 // The code is missing a 'template' keyword prior to the dependent template
224 // name.
225 NestedNameSpecifier *Qualifier = (NestedNameSpecifier*)SS->getScopeRep();
226 Diag(IILoc, diag::err_template_kw_missing)
227 << Qualifier << II.getName()
Douglas Gregor849b2432010-03-31 17:46:05 +0000228 << FixItHint::CreateInsertion(IILoc, "template ");
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000229 SuggestedTemplate
Douglas Gregor84d0a192010-01-12 21:28:44 +0000230 = TemplateTy::make(Context.getDependentTemplateName(Qualifier, &II));
231 SuggestedKind = TNK_Dependent_template_name;
232 return true;
233}
234
John McCallf7a1a742009-11-24 19:00:30 +0000235void Sema::LookupTemplateName(LookupResult &Found,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +0000236 Scope *S, CXXScopeSpec &SS,
John McCallf7a1a742009-11-24 19:00:30 +0000237 QualType ObjectType,
Douglas Gregor1fd6d442010-05-21 23:18:07 +0000238 bool EnteringContext,
239 bool &MemberOfUnknownSpecialization) {
John McCallf7a1a742009-11-24 19:00:30 +0000240 // Determine where to perform name lookup
Douglas Gregor1fd6d442010-05-21 23:18:07 +0000241 MemberOfUnknownSpecialization = false;
John McCallf7a1a742009-11-24 19:00:30 +0000242 DeclContext *LookupCtx = 0;
243 bool isDependent = false;
244 if (!ObjectType.isNull()) {
245 // This nested-name-specifier occurs in a member access expression, e.g.,
246 // x->B::f, and we are looking into the type of the object.
247 assert(!SS.isSet() && "ObjectType and scope specifier cannot coexist");
248 LookupCtx = computeDeclContext(ObjectType);
249 isDependent = ObjectType->isDependentType();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000250 assert((isDependent || !ObjectType->isIncompleteType()) &&
John McCallf7a1a742009-11-24 19:00:30 +0000251 "Caller should have completed object type");
252 } else if (SS.isSet()) {
253 // This nested-name-specifier occurs after another nested-name-specifier,
254 // so long into the context associated with the prior nested-name-specifier.
255 LookupCtx = computeDeclContext(SS, EnteringContext);
256 isDependent = isDependentScopeSpecifier(SS);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000257
John McCallf7a1a742009-11-24 19:00:30 +0000258 // The declaration context must be complete.
John McCall77bb1aa2010-05-01 00:40:08 +0000259 if (LookupCtx && RequireCompleteDeclContext(SS, LookupCtx))
John McCallf7a1a742009-11-24 19:00:30 +0000260 return;
261 }
262
263 bool ObjectTypeSearchedInScope = false;
264 if (LookupCtx) {
265 // Perform "qualified" name lookup into the declaration context we
266 // computed, which is either the type of the base of a member access
267 // expression or the declaration context associated with a prior
268 // nested-name-specifier.
269 LookupQualifiedName(Found, LookupCtx);
270
271 if (!ObjectType.isNull() && Found.empty()) {
272 // C++ [basic.lookup.classref]p1:
273 // In a class member access expression (5.2.5), if the . or -> token is
274 // immediately followed by an identifier followed by a <, the
275 // identifier must be looked up to determine whether the < is the
276 // beginning of a template argument list (14.2) or a less-than operator.
277 // The identifier is first looked up in the class of the object
278 // expression. If the identifier is not found, it is then looked up in
279 // the context of the entire postfix-expression and shall name a class
280 // or function template.
John McCallf7a1a742009-11-24 19:00:30 +0000281 if (S) LookupName(Found, S);
282 ObjectTypeSearchedInScope = true;
283 }
Douglas Gregorf9f97a02010-07-16 16:54:17 +0000284 } else if (isDependent && (!S || ObjectType.isNull())) {
Douglas Gregor2e933882010-01-12 17:06:20 +0000285 // We cannot look into a dependent object type or nested nme
286 // specifier.
Douglas Gregor1fd6d442010-05-21 23:18:07 +0000287 MemberOfUnknownSpecialization = true;
John McCallf7a1a742009-11-24 19:00:30 +0000288 return;
289 } else {
290 // Perform unqualified name lookup in the current scope.
291 LookupName(Found, S);
292 }
293
Douglas Gregor2e933882010-01-12 17:06:20 +0000294 if (Found.empty() && !isDependent) {
Douglas Gregorbfea2392009-12-31 08:11:17 +0000295 // If we did not find any names, attempt to correct any typos.
296 DeclarationName Name = Found.getLookupName();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000297 if (DeclarationName Corrected = CorrectTypo(Found, S, &SS, LookupCtx,
Douglas Gregor12eb5d62010-06-29 19:27:42 +0000298 false, CTC_CXXCasts)) {
Douglas Gregor312eadb2011-04-24 05:37:28 +0000299 FilterAcceptableTemplateNames(Found);
John McCallad00b772010-06-16 08:42:20 +0000300 if (!Found.empty()) {
Douglas Gregorbfea2392009-12-31 08:11:17 +0000301 if (LookupCtx)
302 Diag(Found.getNameLoc(), diag::err_no_member_template_suggest)
303 << Name << LookupCtx << Found.getLookupName() << SS.getRange()
Douglas Gregor849b2432010-03-31 17:46:05 +0000304 << FixItHint::CreateReplacement(Found.getNameLoc(),
Douglas Gregorbfea2392009-12-31 08:11:17 +0000305 Found.getLookupName().getAsString());
306 else
307 Diag(Found.getNameLoc(), diag::err_no_template_suggest)
308 << Name << Found.getLookupName()
Douglas Gregor849b2432010-03-31 17:46:05 +0000309 << FixItHint::CreateReplacement(Found.getNameLoc(),
Douglas Gregorbfea2392009-12-31 08:11:17 +0000310 Found.getLookupName().getAsString());
Douglas Gregor67dd1d42010-01-07 00:17:44 +0000311 if (TemplateDecl *Template = Found.getAsSingle<TemplateDecl>())
312 Diag(Template->getLocation(), diag::note_previous_decl)
313 << Template->getDeclName();
John McCallad00b772010-06-16 08:42:20 +0000314 }
Douglas Gregorbfea2392009-12-31 08:11:17 +0000315 } else {
316 Found.clear();
Douglas Gregor12eb5d62010-06-29 19:27:42 +0000317 Found.setLookupName(Name);
Douglas Gregorbfea2392009-12-31 08:11:17 +0000318 }
319 }
320
Douglas Gregor312eadb2011-04-24 05:37:28 +0000321 FilterAcceptableTemplateNames(Found);
Douglas Gregorf9f97a02010-07-16 16:54:17 +0000322 if (Found.empty()) {
323 if (isDependent)
324 MemberOfUnknownSpecialization = true;
John McCallf7a1a742009-11-24 19:00:30 +0000325 return;
Douglas Gregorf9f97a02010-07-16 16:54:17 +0000326 }
John McCallf7a1a742009-11-24 19:00:30 +0000327
328 if (S && !ObjectType.isNull() && !ObjectTypeSearchedInScope) {
329 // C++ [basic.lookup.classref]p1:
330 // [...] If the lookup in the class of the object expression finds a
331 // template, the name is also looked up in the context of the entire
332 // postfix-expression and [...]
333 //
334 LookupResult FoundOuter(*this, Found.getLookupName(), Found.getNameLoc(),
335 LookupOrdinaryName);
336 LookupName(FoundOuter, S);
Douglas Gregor312eadb2011-04-24 05:37:28 +0000337 FilterAcceptableTemplateNames(FoundOuter);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000338
John McCallf7a1a742009-11-24 19:00:30 +0000339 if (FoundOuter.empty()) {
340 // - if the name is not found, the name found in the class of the
341 // object expression is used, otherwise
342 } else if (!FoundOuter.getAsSingle<ClassTemplateDecl>()) {
343 // - if the name is found in the context of the entire
344 // postfix-expression and does not name a class template, the name
345 // found in the class of the object expression is used, otherwise
John McCallad00b772010-06-16 08:42:20 +0000346 } else if (!Found.isSuppressingDiagnostics()) {
John McCallf7a1a742009-11-24 19:00:30 +0000347 // - if the name found is a class template, it must refer to the same
348 // entity as the one found in the class of the object expression,
349 // otherwise the program is ill-formed.
350 if (!Found.isSingleResult() ||
351 Found.getFoundDecl()->getCanonicalDecl()
352 != FoundOuter.getFoundDecl()->getCanonicalDecl()) {
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000353 Diag(Found.getNameLoc(),
Jeffrey Yasskin21d07e42010-06-05 01:39:57 +0000354 diag::ext_nested_name_member_ref_lookup_ambiguous)
355 << Found.getLookupName()
356 << ObjectType;
John McCallf7a1a742009-11-24 19:00:30 +0000357 Diag(Found.getRepresentativeDecl()->getLocation(),
358 diag::note_ambig_member_ref_object_type)
359 << ObjectType;
360 Diag(FoundOuter.getFoundDecl()->getLocation(),
361 diag::note_ambig_member_ref_scope);
362
363 // Recover by taking the template that we found in the object
364 // expression's type.
365 }
366 }
367 }
368}
369
John McCall2f841ba2009-12-02 03:53:29 +0000370/// ActOnDependentIdExpression - Handle a dependent id-expression that
371/// was just parsed. This is only possible with an explicit scope
372/// specifier naming a dependent type.
John McCall60d7b3a2010-08-24 06:29:42 +0000373ExprResult
John McCallf7a1a742009-11-24 19:00:30 +0000374Sema::ActOnDependentIdExpression(const CXXScopeSpec &SS,
Abramo Bagnara25777432010-08-11 22:01:17 +0000375 const DeclarationNameInfo &NameInfo,
John McCall2f841ba2009-12-02 03:53:29 +0000376 bool isAddressOfOperand,
John McCallf7a1a742009-11-24 19:00:30 +0000377 const TemplateArgumentListInfo *TemplateArgs) {
John McCallea1471e2010-05-20 01:18:31 +0000378 DeclContext *DC = getFunctionLevelDeclContext();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000379
John McCall2f841ba2009-12-02 03:53:29 +0000380 if (!isAddressOfOperand &&
John McCallea1471e2010-05-20 01:18:31 +0000381 isa<CXXMethodDecl>(DC) &&
382 cast<CXXMethodDecl>(DC)->isInstance()) {
383 QualType ThisType = cast<CXXMethodDecl>(DC)->getThisType(Context);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000384
John McCallf7a1a742009-11-24 19:00:30 +0000385 // Since the 'this' expression is synthesized, we don't need to
386 // perform the double-lookup check.
387 NamedDecl *FirstQualifierInScope = 0;
388
John McCallaa81e162009-12-01 22:10:20 +0000389 return Owned(CXXDependentScopeMemberExpr::Create(Context,
390 /*This*/ 0, ThisType,
391 /*IsArrow*/ true,
John McCallf7a1a742009-11-24 19:00:30 +0000392 /*Op*/ SourceLocation(),
Douglas Gregor7c3179c2011-02-28 18:50:33 +0000393 SS.getWithLocInContext(Context),
John McCallf7a1a742009-11-24 19:00:30 +0000394 FirstQualifierInScope,
Abramo Bagnara25777432010-08-11 22:01:17 +0000395 NameInfo,
John McCallf7a1a742009-11-24 19:00:30 +0000396 TemplateArgs));
397 }
398
Abramo Bagnara25777432010-08-11 22:01:17 +0000399 return BuildDependentDeclRefExpr(SS, NameInfo, TemplateArgs);
John McCallf7a1a742009-11-24 19:00:30 +0000400}
401
John McCall60d7b3a2010-08-24 06:29:42 +0000402ExprResult
John McCallf7a1a742009-11-24 19:00:30 +0000403Sema::BuildDependentDeclRefExpr(const CXXScopeSpec &SS,
Abramo Bagnara25777432010-08-11 22:01:17 +0000404 const DeclarationNameInfo &NameInfo,
John McCallf7a1a742009-11-24 19:00:30 +0000405 const TemplateArgumentListInfo *TemplateArgs) {
406 return Owned(DependentScopeDeclRefExpr::Create(Context,
Douglas Gregor00cf3cc2011-02-25 20:49:16 +0000407 SS.getWithLocInContext(Context),
Abramo Bagnara25777432010-08-11 22:01:17 +0000408 NameInfo,
John McCallf7a1a742009-11-24 19:00:30 +0000409 TemplateArgs));
Douglas Gregord6fb7ef2008-12-18 19:37:40 +0000410}
411
Douglas Gregor72c3f312008-12-05 18:15:24 +0000412/// DiagnoseTemplateParameterShadow - Produce a diagnostic complaining
413/// that the template parameter 'PrevDecl' is being shadowed by a new
414/// declaration at location Loc. Returns true to indicate that this is
415/// an error, and false otherwise.
416bool Sema::DiagnoseTemplateParameterShadow(SourceLocation Loc, Decl *PrevDecl) {
Douglas Gregorf57172b2008-12-08 18:40:42 +0000417 assert(PrevDecl->isTemplateParameter() && "Not a template parameter");
Douglas Gregor72c3f312008-12-05 18:15:24 +0000418
419 // Microsoft Visual C++ permits template parameters to be shadowed.
420 if (getLangOptions().Microsoft)
421 return false;
422
423 // C++ [temp.local]p4:
424 // A template-parameter shall not be redeclared within its
425 // scope (including nested scopes).
Mike Stump1eb44332009-09-09 15:08:12 +0000426 Diag(Loc, diag::err_template_param_shadow)
Douglas Gregor72c3f312008-12-05 18:15:24 +0000427 << cast<NamedDecl>(PrevDecl)->getDeclName();
428 Diag(PrevDecl->getLocation(), diag::note_template_param_here);
429 return true;
430}
431
Douglas Gregor2943aed2009-03-03 04:44:36 +0000432/// AdjustDeclIfTemplate - If the given decl happens to be a template, reset
Douglas Gregoraaba5e32009-02-04 19:02:06 +0000433/// the parameter D to reference the templated declaration and return a pointer
434/// to the template declaration. Otherwise, do nothing to D and return null.
John McCalld226f652010-08-21 09:40:31 +0000435TemplateDecl *Sema::AdjustDeclIfTemplate(Decl *&D) {
436 if (TemplateDecl *Temp = dyn_cast_or_null<TemplateDecl>(D)) {
437 D = Temp->getTemplatedDecl();
Douglas Gregoraaba5e32009-02-04 19:02:06 +0000438 return Temp;
439 }
440 return 0;
441}
442
Douglas Gregorba68eca2011-01-05 17:40:24 +0000443ParsedTemplateArgument ParsedTemplateArgument::getTemplatePackExpansion(
444 SourceLocation EllipsisLoc) const {
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000445 assert(Kind == Template &&
Douglas Gregorba68eca2011-01-05 17:40:24 +0000446 "Only template template arguments can be pack expansions here");
447 assert(getAsTemplate().get().containsUnexpandedParameterPack() &&
448 "Template template argument pack expansion without packs");
449 ParsedTemplateArgument Result(*this);
450 Result.EllipsisLoc = EllipsisLoc;
451 return Result;
452}
453
Douglas Gregor788cd062009-11-11 01:00:40 +0000454static TemplateArgumentLoc translateTemplateArgument(Sema &SemaRef,
455 const ParsedTemplateArgument &Arg) {
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000456
Douglas Gregor788cd062009-11-11 01:00:40 +0000457 switch (Arg.getKind()) {
458 case ParsedTemplateArgument::Type: {
John McCalla93c9342009-12-07 02:54:59 +0000459 TypeSourceInfo *DI;
Douglas Gregor788cd062009-11-11 01:00:40 +0000460 QualType T = SemaRef.GetTypeFromParser(Arg.getAsType(), &DI);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000461 if (!DI)
John McCalla93c9342009-12-07 02:54:59 +0000462 DI = SemaRef.Context.getTrivialTypeSourceInfo(T, Arg.getLocation());
Douglas Gregor788cd062009-11-11 01:00:40 +0000463 return TemplateArgumentLoc(TemplateArgument(T), DI);
464 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000465
Douglas Gregor788cd062009-11-11 01:00:40 +0000466 case ParsedTemplateArgument::NonType: {
467 Expr *E = static_cast<Expr *>(Arg.getAsExpr());
468 return TemplateArgumentLoc(TemplateArgument(E), E);
469 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000470
Douglas Gregor788cd062009-11-11 01:00:40 +0000471 case ParsedTemplateArgument::Template: {
John McCall2b5289b2010-08-23 07:28:44 +0000472 TemplateName Template = Arg.getAsTemplate().get();
Douglas Gregor2be29f42011-01-14 23:41:42 +0000473 TemplateArgument TArg;
474 if (Arg.getEllipsisLoc().isValid())
475 TArg = TemplateArgument(Template, llvm::Optional<unsigned int>());
476 else
477 TArg = Template;
478 return TemplateArgumentLoc(TArg,
Douglas Gregorb6744ef2011-03-02 17:09:35 +0000479 Arg.getScopeSpec().getWithLocInContext(
480 SemaRef.Context),
Douglas Gregorba68eca2011-01-05 17:40:24 +0000481 Arg.getLocation(),
482 Arg.getEllipsisLoc());
Douglas Gregor788cd062009-11-11 01:00:40 +0000483 }
484 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000485
Jeffrey Yasskin9f61aa92009-12-12 05:05:38 +0000486 llvm_unreachable("Unhandled parsed template argument");
Douglas Gregor788cd062009-11-11 01:00:40 +0000487 return TemplateArgumentLoc();
488}
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000489
Douglas Gregor788cd062009-11-11 01:00:40 +0000490/// \brief Translates template arguments as provided by the parser
491/// into template arguments used by semantic analysis.
John McCalld5532b62009-11-23 01:53:49 +0000492void Sema::translateTemplateArguments(const ASTTemplateArgsPtr &TemplateArgsIn,
493 TemplateArgumentListInfo &TemplateArgs) {
Douglas Gregor788cd062009-11-11 01:00:40 +0000494 for (unsigned I = 0, Last = TemplateArgsIn.size(); I != Last; ++I)
John McCalld5532b62009-11-23 01:53:49 +0000495 TemplateArgs.addArgument(translateTemplateArgument(*this,
496 TemplateArgsIn[I]));
Douglas Gregor788cd062009-11-11 01:00:40 +0000497}
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000498
Douglas Gregor72c3f312008-12-05 18:15:24 +0000499/// ActOnTypeParameter - Called when a C++ template type parameter
500/// (e.g., "typename T") has been parsed. Typename specifies whether
501/// the keyword "typename" was used to declare the type parameter
502/// (otherwise, "class" was used), and KeyLoc is the location of the
503/// "class" or "typename" keyword. ParamName is the name of the
504/// parameter (NULL indicates an unnamed template parameter) and
Chandler Carruth4fb86f82011-05-01 00:51:33 +0000505/// ParamNameLoc is the location of the parameter name (if any).
Douglas Gregor72c3f312008-12-05 18:15:24 +0000506/// If the type parameter has a default argument, it will be added
507/// later via ActOnTypeParameterDefault.
John McCalld226f652010-08-21 09:40:31 +0000508Decl *Sema::ActOnTypeParameter(Scope *S, bool Typename, bool Ellipsis,
509 SourceLocation EllipsisLoc,
510 SourceLocation KeyLoc,
511 IdentifierInfo *ParamName,
512 SourceLocation ParamNameLoc,
513 unsigned Depth, unsigned Position,
514 SourceLocation EqualLoc,
John McCallb3d87482010-08-24 05:47:05 +0000515 ParsedType DefaultArg) {
Mike Stump1eb44332009-09-09 15:08:12 +0000516 assert(S->isTemplateParamScope() &&
517 "Template type parameter not in template parameter scope!");
Douglas Gregor72c3f312008-12-05 18:15:24 +0000518 bool Invalid = false;
519
520 if (ParamName) {
Douglas Gregorc83c6872010-04-15 22:33:43 +0000521 NamedDecl *PrevDecl = LookupSingleName(S, ParamName, ParamNameLoc,
Douglas Gregorc0b39642010-04-15 23:40:53 +0000522 LookupOrdinaryName,
523 ForRedeclaration);
Douglas Gregorf57172b2008-12-08 18:40:42 +0000524 if (PrevDecl && PrevDecl->isTemplateParameter())
Douglas Gregor72c3f312008-12-05 18:15:24 +0000525 Invalid = Invalid || DiagnoseTemplateParameterShadow(ParamNameLoc,
Mike Stump1eb44332009-09-09 15:08:12 +0000526 PrevDecl);
Douglas Gregor72c3f312008-12-05 18:15:24 +0000527 }
528
Douglas Gregorddc29e12009-02-06 22:42:48 +0000529 SourceLocation Loc = ParamNameLoc;
530 if (!ParamName)
531 Loc = KeyLoc;
532
Douglas Gregor72c3f312008-12-05 18:15:24 +0000533 TemplateTypeParmDecl *Param
John McCall7a9813c2010-01-22 00:28:27 +0000534 = TemplateTypeParmDecl::Create(Context, Context.getTranslationUnitDecl(),
Abramo Bagnara344577e2011-03-06 15:48:19 +0000535 KeyLoc, Loc, Depth, Position, ParamName,
536 Typename, Ellipsis);
Douglas Gregor9a299e02011-03-04 17:52:15 +0000537 Param->setAccess(AS_public);
Douglas Gregor72c3f312008-12-05 18:15:24 +0000538 if (Invalid)
539 Param->setInvalidDecl();
540
541 if (ParamName) {
542 // Add the template parameter into the current scope.
John McCalld226f652010-08-21 09:40:31 +0000543 S->AddDecl(Param);
Douglas Gregor72c3f312008-12-05 18:15:24 +0000544 IdResolver.AddDecl(Param);
545 }
546
Douglas Gregor61c4d282011-01-05 15:48:55 +0000547 // C++0x [temp.param]p9:
548 // A default template-argument may be specified for any kind of
549 // template-parameter that is not a template parameter pack.
550 if (DefaultArg && Ellipsis) {
551 Diag(EqualLoc, diag::err_template_param_pack_default_arg);
552 DefaultArg = ParsedType();
553 }
554
Douglas Gregorbb3310a2010-07-01 00:00:45 +0000555 // Handle the default argument, if provided.
556 if (DefaultArg) {
557 TypeSourceInfo *DefaultTInfo;
558 GetTypeFromParser(DefaultArg, &DefaultTInfo);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000559
Douglas Gregorbb3310a2010-07-01 00:00:45 +0000560 assert(DefaultTInfo && "expected source information for type");
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000561
Douglas Gregor6f526752010-12-16 08:48:57 +0000562 // Check for unexpanded parameter packs.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000563 if (DiagnoseUnexpandedParameterPack(Loc, DefaultTInfo,
Douglas Gregor6f526752010-12-16 08:48:57 +0000564 UPPC_DefaultArgument))
565 return Param;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000566
Douglas Gregorbb3310a2010-07-01 00:00:45 +0000567 // Check the template argument itself.
568 if (CheckTemplateArgument(Param, DefaultTInfo)) {
569 Param->setInvalidDecl();
John McCalld226f652010-08-21 09:40:31 +0000570 return Param;
Douglas Gregorbb3310a2010-07-01 00:00:45 +0000571 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000572
Douglas Gregorbb3310a2010-07-01 00:00:45 +0000573 Param->setDefaultArgument(DefaultTInfo, false);
574 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000575
John McCalld226f652010-08-21 09:40:31 +0000576 return Param;
Douglas Gregor72c3f312008-12-05 18:15:24 +0000577}
578
Douglas Gregor2943aed2009-03-03 04:44:36 +0000579/// \brief Check that the type of a non-type template parameter is
580/// well-formed.
581///
582/// \returns the (possibly-promoted) parameter type if valid;
583/// otherwise, produces a diagnostic and returns a NULL type.
Mike Stump1eb44332009-09-09 15:08:12 +0000584QualType
Douglas Gregor2943aed2009-03-03 04:44:36 +0000585Sema::CheckNonTypeTemplateParameterType(QualType T, SourceLocation Loc) {
Douglas Gregora481ec42010-05-23 19:57:01 +0000586 // We don't allow variably-modified types as the type of non-type template
587 // parameters.
588 if (T->isVariablyModifiedType()) {
589 Diag(Loc, diag::err_variably_modified_nontype_template_param)
590 << T;
591 return QualType();
592 }
593
Douglas Gregor2943aed2009-03-03 04:44:36 +0000594 // C++ [temp.param]p4:
595 //
596 // A non-type template-parameter shall have one of the following
597 // (optionally cv-qualified) types:
598 //
599 // -- integral or enumeration type,
Douglas Gregor2ade35e2010-06-16 00:17:44 +0000600 if (T->isIntegralOrEnumerationType() ||
Mike Stump1eb44332009-09-09 15:08:12 +0000601 // -- pointer to object or pointer to function,
Eli Friedman13578692010-08-05 02:49:48 +0000602 T->isPointerType() ||
Mike Stump1eb44332009-09-09 15:08:12 +0000603 // -- reference to object or reference to function,
Douglas Gregor2943aed2009-03-03 04:44:36 +0000604 T->isReferenceType() ||
605 // -- pointer to member.
606 T->isMemberPointerType() ||
607 // If T is a dependent type, we can't do the check now, so we
608 // assume that it is well-formed.
609 T->isDependentType())
610 return T;
611 // C++ [temp.param]p8:
612 //
613 // A non-type template-parameter of type "array of T" or
614 // "function returning T" is adjusted to be of type "pointer to
615 // T" or "pointer to function returning T", respectively.
616 else if (T->isArrayType())
617 // FIXME: Keep the type prior to promotion?
618 return Context.getArrayDecayedType(T);
619 else if (T->isFunctionType())
620 // FIXME: Keep the type prior to promotion?
621 return Context.getPointerType(T);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000622
Douglas Gregor2943aed2009-03-03 04:44:36 +0000623 Diag(Loc, diag::err_template_nontype_parm_bad_type)
624 << T;
625
626 return QualType();
627}
628
John McCalld226f652010-08-21 09:40:31 +0000629Decl *Sema::ActOnNonTypeTemplateParameter(Scope *S, Declarator &D,
630 unsigned Depth,
631 unsigned Position,
632 SourceLocation EqualLoc,
John McCall9ae2f072010-08-23 23:25:46 +0000633 Expr *Default) {
John McCallbf1a0282010-06-04 23:28:52 +0000634 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
635 QualType T = TInfo->getType();
Douglas Gregor72c3f312008-12-05 18:15:24 +0000636
Douglas Gregoraaba5e32009-02-04 19:02:06 +0000637 assert(S->isTemplateParamScope() &&
638 "Non-type template parameter not in template parameter scope!");
Douglas Gregor72c3f312008-12-05 18:15:24 +0000639 bool Invalid = false;
640
641 IdentifierInfo *ParamName = D.getIdentifier();
642 if (ParamName) {
Douglas Gregorc83c6872010-04-15 22:33:43 +0000643 NamedDecl *PrevDecl = LookupSingleName(S, ParamName, D.getIdentifierLoc(),
Douglas Gregorc0b39642010-04-15 23:40:53 +0000644 LookupOrdinaryName,
645 ForRedeclaration);
Douglas Gregorf57172b2008-12-08 18:40:42 +0000646 if (PrevDecl && PrevDecl->isTemplateParameter())
Douglas Gregor72c3f312008-12-05 18:15:24 +0000647 Invalid = Invalid || DiagnoseTemplateParameterShadow(D.getIdentifierLoc(),
Douglas Gregoraaba5e32009-02-04 19:02:06 +0000648 PrevDecl);
Douglas Gregor72c3f312008-12-05 18:15:24 +0000649 }
650
Douglas Gregor4d2abba2010-12-16 15:36:43 +0000651 T = CheckNonTypeTemplateParameterType(T, D.getIdentifierLoc());
652 if (T.isNull()) {
Douglas Gregor2943aed2009-03-03 04:44:36 +0000653 T = Context.IntTy; // Recover with an 'int' type.
Douglas Gregorceef30c2009-03-09 16:46:39 +0000654 Invalid = true;
655 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000656
Douglas Gregor10738d32010-12-23 23:51:58 +0000657 bool IsParameterPack = D.hasEllipsis();
Douglas Gregor72c3f312008-12-05 18:15:24 +0000658 NonTypeTemplateParmDecl *Param
John McCall7a9813c2010-01-22 00:28:27 +0000659 = NonTypeTemplateParmDecl::Create(Context, Context.getTranslationUnitDecl(),
Abramo Bagnaraff676cb2011-03-08 08:55:46 +0000660 D.getSourceRange().getBegin(),
John McCall7a9813c2010-01-22 00:28:27 +0000661 D.getIdentifierLoc(),
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000662 Depth, Position, ParamName, T,
Douglas Gregor10738d32010-12-23 23:51:58 +0000663 IsParameterPack, TInfo);
Douglas Gregor9a299e02011-03-04 17:52:15 +0000664 Param->setAccess(AS_public);
665
Douglas Gregor72c3f312008-12-05 18:15:24 +0000666 if (Invalid)
667 Param->setInvalidDecl();
668
669 if (D.getIdentifier()) {
670 // Add the template parameter into the current scope.
John McCalld226f652010-08-21 09:40:31 +0000671 S->AddDecl(Param);
Douglas Gregor72c3f312008-12-05 18:15:24 +0000672 IdResolver.AddDecl(Param);
673 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000674
Douglas Gregor61c4d282011-01-05 15:48:55 +0000675 // C++0x [temp.param]p9:
676 // A default template-argument may be specified for any kind of
677 // template-parameter that is not a template parameter pack.
678 if (Default && IsParameterPack) {
679 Diag(EqualLoc, diag::err_template_param_pack_default_arg);
680 Default = 0;
681 }
682
Douglas Gregorbb3310a2010-07-01 00:00:45 +0000683 // Check the well-formedness of the default template argument, if provided.
Douglas Gregor10738d32010-12-23 23:51:58 +0000684 if (Default) {
Douglas Gregor6f526752010-12-16 08:48:57 +0000685 // Check for unexpanded parameter packs.
686 if (DiagnoseUnexpandedParameterPack(Default, UPPC_DefaultArgument))
687 return Param;
688
Douglas Gregorbb3310a2010-07-01 00:00:45 +0000689 TemplateArgument Converted;
John Wiegley429bb272011-04-08 18:41:53 +0000690 ExprResult DefaultRes = CheckTemplateArgument(Param, Param->getType(), Default, Converted);
691 if (DefaultRes.isInvalid()) {
Douglas Gregorbb3310a2010-07-01 00:00:45 +0000692 Param->setInvalidDecl();
John McCalld226f652010-08-21 09:40:31 +0000693 return Param;
Douglas Gregorbb3310a2010-07-01 00:00:45 +0000694 }
John Wiegley429bb272011-04-08 18:41:53 +0000695 Default = DefaultRes.take();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000696
John McCall9ae2f072010-08-23 23:25:46 +0000697 Param->setDefaultArgument(Default, false);
Douglas Gregorbb3310a2010-07-01 00:00:45 +0000698 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000699
John McCalld226f652010-08-21 09:40:31 +0000700 return Param;
Douglas Gregor72c3f312008-12-05 18:15:24 +0000701}
Douglas Gregorc4b4e7b2008-12-24 02:52:09 +0000702
Douglas Gregoraaba5e32009-02-04 19:02:06 +0000703/// ActOnTemplateTemplateParameter - Called when a C++ template template
704/// parameter (e.g. T in template <template <typename> class T> class array)
705/// has been parsed. S is the current scope.
John McCalld226f652010-08-21 09:40:31 +0000706Decl *Sema::ActOnTemplateTemplateParameter(Scope* S,
707 SourceLocation TmpLoc,
708 TemplateParamsTy *Params,
Douglas Gregor61c4d282011-01-05 15:48:55 +0000709 SourceLocation EllipsisLoc,
John McCalld226f652010-08-21 09:40:31 +0000710 IdentifierInfo *Name,
711 SourceLocation NameLoc,
712 unsigned Depth,
713 unsigned Position,
714 SourceLocation EqualLoc,
Douglas Gregor61c4d282011-01-05 15:48:55 +0000715 ParsedTemplateArgument Default) {
Douglas Gregoraaba5e32009-02-04 19:02:06 +0000716 assert(S->isTemplateParamScope() &&
717 "Template template parameter not in template parameter scope!");
718
719 // Construct the parameter object.
Douglas Gregor61c4d282011-01-05 15:48:55 +0000720 bool IsParameterPack = EllipsisLoc.isValid();
Douglas Gregoraaba5e32009-02-04 19:02:06 +0000721 TemplateTemplateParmDecl *Param =
John McCall7a9813c2010-01-22 00:28:27 +0000722 TemplateTemplateParmDecl::Create(Context, Context.getTranslationUnitDecl(),
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000723 NameLoc.isInvalid()? TmpLoc : NameLoc,
724 Depth, Position, IsParameterPack,
Douglas Gregor61c4d282011-01-05 15:48:55 +0000725 Name, Params);
Douglas Gregor9a299e02011-03-04 17:52:15 +0000726 Param->setAccess(AS_public);
727
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000728 // If the template template parameter has a name, then link the identifier
Douglas Gregorbb3310a2010-07-01 00:00:45 +0000729 // into the scope and lookup mechanisms.
Douglas Gregoraaba5e32009-02-04 19:02:06 +0000730 if (Name) {
John McCalld226f652010-08-21 09:40:31 +0000731 S->AddDecl(Param);
Douglas Gregoraaba5e32009-02-04 19:02:06 +0000732 IdResolver.AddDecl(Param);
733 }
734
Douglas Gregor6f526752010-12-16 08:48:57 +0000735 if (Params->size() == 0) {
736 Diag(Param->getLocation(), diag::err_template_template_parm_no_parms)
737 << SourceRange(Params->getLAngleLoc(), Params->getRAngleLoc());
738 Param->setInvalidDecl();
739 }
740
Douglas Gregor61c4d282011-01-05 15:48:55 +0000741 // C++0x [temp.param]p9:
742 // A default template-argument may be specified for any kind of
743 // template-parameter that is not a template parameter pack.
744 if (IsParameterPack && !Default.isInvalid()) {
745 Diag(EqualLoc, diag::err_template_param_pack_default_arg);
746 Default = ParsedTemplateArgument();
747 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000748
Douglas Gregorbb3310a2010-07-01 00:00:45 +0000749 if (!Default.isInvalid()) {
750 // Check only that we have a template template argument. We don't want to
751 // try to check well-formedness now, because our template template parameter
752 // might have dependent types in its template parameters, which we wouldn't
753 // be able to match now.
754 //
755 // If none of the template template parameter's template arguments mention
756 // other template parameters, we could actually perform more checking here.
757 // However, it isn't worth doing.
758 TemplateArgumentLoc DefaultArg = translateTemplateArgument(*this, Default);
759 if (DefaultArg.getArgument().getAsTemplate().isNull()) {
760 Diag(DefaultArg.getLocation(), diag::err_template_arg_not_class_template)
761 << DefaultArg.getSourceRange();
John McCalld226f652010-08-21 09:40:31 +0000762 return Param;
Douglas Gregorbb3310a2010-07-01 00:00:45 +0000763 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000764
Douglas Gregor6f526752010-12-16 08:48:57 +0000765 // Check for unexpanded parameter packs.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000766 if (DiagnoseUnexpandedParameterPack(DefaultArg.getLocation(),
Douglas Gregor6f526752010-12-16 08:48:57 +0000767 DefaultArg.getArgument().getAsTemplate(),
768 UPPC_DefaultArgument))
769 return Param;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000770
Douglas Gregorbb3310a2010-07-01 00:00:45 +0000771 Param->setDefaultArgument(DefaultArg, false);
Douglas Gregord684b002009-02-10 19:49:53 +0000772 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000773
John McCalld226f652010-08-21 09:40:31 +0000774 return Param;
Douglas Gregord684b002009-02-10 19:49:53 +0000775}
776
Douglas Gregorc4b4e7b2008-12-24 02:52:09 +0000777/// ActOnTemplateParameterList - Builds a TemplateParameterList that
778/// contains the template parameters in Params/NumParams.
779Sema::TemplateParamsTy *
780Sema::ActOnTemplateParameterList(unsigned Depth,
781 SourceLocation ExportLoc,
Mike Stump1eb44332009-09-09 15:08:12 +0000782 SourceLocation TemplateLoc,
Douglas Gregorc4b4e7b2008-12-24 02:52:09 +0000783 SourceLocation LAngleLoc,
John McCalld226f652010-08-21 09:40:31 +0000784 Decl **Params, unsigned NumParams,
Douglas Gregorc4b4e7b2008-12-24 02:52:09 +0000785 SourceLocation RAngleLoc) {
786 if (ExportLoc.isValid())
Douglas Gregor51ffb0c2009-11-25 18:55:14 +0000787 Diag(ExportLoc, diag::warn_template_export_unsupported);
Douglas Gregorc4b4e7b2008-12-24 02:52:09 +0000788
Douglas Gregorddc29e12009-02-06 22:42:48 +0000789 return TemplateParameterList::Create(Context, TemplateLoc, LAngleLoc,
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000790 (NamedDecl**)Params, NumParams,
Douglas Gregorbf4ea562009-09-15 16:23:51 +0000791 RAngleLoc);
Douglas Gregorc4b4e7b2008-12-24 02:52:09 +0000792}
Douglas Gregoraaba5e32009-02-04 19:02:06 +0000793
John McCallb6217662010-03-15 10:12:16 +0000794static void SetNestedNameSpecifier(TagDecl *T, const CXXScopeSpec &SS) {
795 if (SS.isSet())
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000796 T->setQualifierInfo(SS.getWithLocInContext(T->getASTContext()));
John McCallb6217662010-03-15 10:12:16 +0000797}
798
John McCallf312b1e2010-08-26 23:41:50 +0000799DeclResult
John McCall0f434ec2009-07-31 02:45:11 +0000800Sema::CheckClassTemplate(Scope *S, unsigned TagSpec, TagUseKind TUK,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +0000801 SourceLocation KWLoc, CXXScopeSpec &SS,
Douglas Gregorddc29e12009-02-06 22:42:48 +0000802 IdentifierInfo *Name, SourceLocation NameLoc,
803 AttributeList *Attr,
Douglas Gregor05396e22009-08-25 17:23:04 +0000804 TemplateParameterList *TemplateParams,
Abramo Bagnarac57c17d2011-03-10 13:28:31 +0000805 AccessSpecifier AS,
806 unsigned NumOuterTemplateParamLists,
807 TemplateParameterList** OuterTemplateParamLists) {
Mike Stump1eb44332009-09-09 15:08:12 +0000808 assert(TemplateParams && TemplateParams->size() > 0 &&
Douglas Gregor05396e22009-08-25 17:23:04 +0000809 "No template parameters");
John McCall0f434ec2009-07-31 02:45:11 +0000810 assert(TUK != TUK_Reference && "Can only declare or define class templates");
Douglas Gregord684b002009-02-10 19:49:53 +0000811 bool Invalid = false;
Douglas Gregorddc29e12009-02-06 22:42:48 +0000812
813 // Check that we can declare a template here.
Douglas Gregor05396e22009-08-25 17:23:04 +0000814 if (CheckTemplateDeclScope(S, TemplateParams))
Douglas Gregor212e81c2009-03-25 00:13:59 +0000815 return true;
Douglas Gregorddc29e12009-02-06 22:42:48 +0000816
Abramo Bagnara465d41b2010-05-11 21:36:43 +0000817 TagTypeKind Kind = TypeWithKeyword::getTagTypeKindForTypeSpec(TagSpec);
818 assert(Kind != TTK_Enum && "can't build template of enumerated type");
Douglas Gregorddc29e12009-02-06 22:42:48 +0000819
820 // There is no such thing as an unnamed class template.
821 if (!Name) {
822 Diag(KWLoc, diag::err_template_unnamed_class);
Douglas Gregor212e81c2009-03-25 00:13:59 +0000823 return true;
Douglas Gregorddc29e12009-02-06 22:42:48 +0000824 }
825
826 // Find any previous declaration with this name.
Douglas Gregor05396e22009-08-25 17:23:04 +0000827 DeclContext *SemanticContext;
John McCalla24dc2e2009-11-17 02:14:36 +0000828 LookupResult Previous(*this, Name, NameLoc, LookupOrdinaryName,
John McCall7d384dd2009-11-18 07:57:50 +0000829 ForRedeclaration);
Douglas Gregor05396e22009-08-25 17:23:04 +0000830 if (SS.isNotEmpty() && !SS.isInvalid()) {
831 SemanticContext = computeDeclContext(SS, true);
832 if (!SemanticContext) {
833 // FIXME: Produce a reasonable diagnostic here
834 return true;
835 }
Mike Stump1eb44332009-09-09 15:08:12 +0000836
John McCall77bb1aa2010-05-01 00:40:08 +0000837 if (RequireCompleteDeclContext(SS, SemanticContext))
838 return true;
839
John McCalla24dc2e2009-11-17 02:14:36 +0000840 LookupQualifiedName(Previous, SemanticContext);
Douglas Gregor05396e22009-08-25 17:23:04 +0000841 } else {
842 SemanticContext = CurContext;
John McCalla24dc2e2009-11-17 02:14:36 +0000843 LookupName(Previous, S);
Douglas Gregor05396e22009-08-25 17:23:04 +0000844 }
Mike Stump1eb44332009-09-09 15:08:12 +0000845
Douglas Gregor57265e32010-04-12 16:00:01 +0000846 if (Previous.isAmbiguous())
847 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000848
Douglas Gregorddc29e12009-02-06 22:42:48 +0000849 NamedDecl *PrevDecl = 0;
850 if (Previous.begin() != Previous.end())
Douglas Gregor57265e32010-04-12 16:00:01 +0000851 PrevDecl = (*Previous.begin())->getUnderlyingDecl();
Douglas Gregorddc29e12009-02-06 22:42:48 +0000852
Douglas Gregorddc29e12009-02-06 22:42:48 +0000853 // If there is a previous declaration with the same name, check
854 // whether this is a valid redeclaration.
Mike Stump1eb44332009-09-09 15:08:12 +0000855 ClassTemplateDecl *PrevClassTemplate
Douglas Gregorddc29e12009-02-06 22:42:48 +0000856 = dyn_cast_or_null<ClassTemplateDecl>(PrevDecl);
Douglas Gregord7e5bdb2009-10-09 21:11:42 +0000857
858 // We may have found the injected-class-name of a class template,
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000859 // class template partial specialization, or class template specialization.
Douglas Gregord7e5bdb2009-10-09 21:11:42 +0000860 // In these cases, grab the template that is being defined or specialized.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000861 if (!PrevClassTemplate && PrevDecl && isa<CXXRecordDecl>(PrevDecl) &&
Douglas Gregord7e5bdb2009-10-09 21:11:42 +0000862 cast<CXXRecordDecl>(PrevDecl)->isInjectedClassName()) {
863 PrevDecl = cast<CXXRecordDecl>(PrevDecl->getDeclContext());
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000864 PrevClassTemplate
Douglas Gregord7e5bdb2009-10-09 21:11:42 +0000865 = cast<CXXRecordDecl>(PrevDecl)->getDescribedClassTemplate();
866 if (!PrevClassTemplate && isa<ClassTemplateSpecializationDecl>(PrevDecl)) {
867 PrevClassTemplate
868 = cast<ClassTemplateSpecializationDecl>(PrevDecl)
869 ->getSpecializedTemplate();
870 }
871 }
872
John McCall65c49462009-12-18 11:25:59 +0000873 if (TUK == TUK_Friend) {
John McCalle129d442009-12-17 23:21:11 +0000874 // C++ [namespace.memdef]p3:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000875 // [...] When looking for a prior declaration of a class or a function
876 // declared as a friend, and when the name of the friend class or
John McCalle129d442009-12-17 23:21:11 +0000877 // function is neither a qualified name nor a template-id, scopes outside
878 // the innermost enclosing namespace scope are not considered.
Douglas Gregorc1c9df72010-04-18 17:37:40 +0000879 if (!SS.isSet()) {
880 DeclContext *OutermostContext = CurContext;
881 while (!OutermostContext->isFileContext())
882 OutermostContext = OutermostContext->getLookupParent();
John McCall65c49462009-12-18 11:25:59 +0000883
Douglas Gregorc1c9df72010-04-18 17:37:40 +0000884 if (PrevDecl &&
885 (OutermostContext->Equals(PrevDecl->getDeclContext()) ||
886 OutermostContext->Encloses(PrevDecl->getDeclContext()))) {
887 SemanticContext = PrevDecl->getDeclContext();
888 } else {
889 // Declarations in outer scopes don't matter. However, the outermost
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000890 // context we computed is the semantic context for our new
Douglas Gregorc1c9df72010-04-18 17:37:40 +0000891 // declaration.
892 PrevDecl = PrevClassTemplate = 0;
893 SemanticContext = OutermostContext;
894 }
John McCalle129d442009-12-17 23:21:11 +0000895 }
Douglas Gregorc1c9df72010-04-18 17:37:40 +0000896
John McCalle129d442009-12-17 23:21:11 +0000897 if (CurContext->isDependentContext()) {
898 // If this is a dependent context, we don't want to link the friend
899 // class template to the template in scope, because that would perform
900 // checking of the template parameter lists that can't be performed
901 // until the outer context is instantiated.
902 PrevDecl = PrevClassTemplate = 0;
903 }
904 } else if (PrevDecl && !isDeclInScope(PrevDecl, SemanticContext, S))
905 PrevDecl = PrevClassTemplate = 0;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000906
Douglas Gregorddc29e12009-02-06 22:42:48 +0000907 if (PrevClassTemplate) {
908 // Ensure that the template parameter lists are compatible.
909 if (!TemplateParameterListsAreEqual(TemplateParams,
910 PrevClassTemplate->getTemplateParameters(),
Douglas Gregorfb898e12009-11-12 16:20:59 +0000911 /*Complain=*/true,
912 TPL_TemplateMatch))
Douglas Gregor212e81c2009-03-25 00:13:59 +0000913 return true;
Douglas Gregorddc29e12009-02-06 22:42:48 +0000914
915 // C++ [temp.class]p4:
916 // In a redeclaration, partial specialization, explicit
917 // specialization or explicit instantiation of a class template,
918 // the class-key shall agree in kind with the original class
919 // template declaration (7.1.5.3).
920 RecordDecl *PrevRecordDecl = PrevClassTemplate->getTemplatedDecl();
Douglas Gregor501c5ce2009-05-14 16:41:31 +0000921 if (!isAcceptableTagRedeclaration(PrevRecordDecl, Kind, KWLoc, *Name)) {
Mike Stump1eb44332009-09-09 15:08:12 +0000922 Diag(KWLoc, diag::err_use_with_wrong_tag)
Douglas Gregora3a83512009-04-01 23:51:29 +0000923 << Name
Douglas Gregor849b2432010-03-31 17:46:05 +0000924 << FixItHint::CreateReplacement(KWLoc, PrevRecordDecl->getKindName());
Douglas Gregorddc29e12009-02-06 22:42:48 +0000925 Diag(PrevRecordDecl->getLocation(), diag::note_previous_use);
Douglas Gregora3a83512009-04-01 23:51:29 +0000926 Kind = PrevRecordDecl->getTagKind();
Douglas Gregorddc29e12009-02-06 22:42:48 +0000927 }
928
Douglas Gregorddc29e12009-02-06 22:42:48 +0000929 // Check for redefinition of this class template.
John McCall0f434ec2009-07-31 02:45:11 +0000930 if (TUK == TUK_Definition) {
Douglas Gregor952b0172010-02-11 01:04:33 +0000931 if (TagDecl *Def = PrevRecordDecl->getDefinition()) {
Douglas Gregorddc29e12009-02-06 22:42:48 +0000932 Diag(NameLoc, diag::err_redefinition) << Name;
933 Diag(Def->getLocation(), diag::note_previous_definition);
934 // FIXME: Would it make sense to try to "forget" the previous
935 // definition, as part of error recovery?
Douglas Gregor212e81c2009-03-25 00:13:59 +0000936 return true;
Douglas Gregorddc29e12009-02-06 22:42:48 +0000937 }
938 }
939 } else if (PrevDecl && PrevDecl->isTemplateParameter()) {
940 // Maybe we will complain about the shadowed template parameter.
941 DiagnoseTemplateParameterShadow(NameLoc, PrevDecl);
942 // Just pretend that we didn't see the previous declaration.
943 PrevDecl = 0;
944 } else if (PrevDecl) {
945 // C++ [temp]p5:
946 // A class template shall not have the same name as any other
947 // template, class, function, object, enumeration, enumerator,
948 // namespace, or type in the same scope (3.3), except as specified
949 // in (14.5.4).
950 Diag(NameLoc, diag::err_redefinition_different_kind) << Name;
951 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
Douglas Gregor212e81c2009-03-25 00:13:59 +0000952 return true;
Douglas Gregorddc29e12009-02-06 22:42:48 +0000953 }
954
Douglas Gregord684b002009-02-10 19:49:53 +0000955 // Check the template parameter list of this declaration, possibly
956 // merging in the template parameter list from the previous class
957 // template declaration.
958 if (CheckTemplateParameterList(TemplateParams,
Douglas Gregor5b6d70e2009-11-25 17:50:39 +0000959 PrevClassTemplate? PrevClassTemplate->getTemplateParameters() : 0,
Douglas Gregord89d86f2011-02-04 04:20:44 +0000960 (SS.isSet() && SemanticContext &&
Douglas Gregor461bf2e2011-02-04 12:22:53 +0000961 SemanticContext->isRecord() &&
962 SemanticContext->isDependentContext())
Douglas Gregord89d86f2011-02-04 04:20:44 +0000963 ? TPC_ClassTemplateMember
964 : TPC_ClassTemplate))
Douglas Gregord684b002009-02-10 19:49:53 +0000965 Invalid = true;
Mike Stump1eb44332009-09-09 15:08:12 +0000966
Douglas Gregor57265e32010-04-12 16:00:01 +0000967 if (SS.isSet()) {
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000968 // If the name of the template was qualified, we must be defining the
Douglas Gregor57265e32010-04-12 16:00:01 +0000969 // template out-of-line.
970 if (!SS.isInvalid() && !Invalid && !PrevClassTemplate &&
971 !(TUK == TUK_Friend && CurContext->isDependentContext()))
972 Diag(NameLoc, diag::err_member_def_does_not_match)
973 << Name << SemanticContext << SS.getRange();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000974 }
975
Mike Stump1eb44332009-09-09 15:08:12 +0000976 CXXRecordDecl *NewClass =
Abramo Bagnaraba877ad2011-03-09 14:09:51 +0000977 CXXRecordDecl::Create(Context, Kind, SemanticContext, KWLoc, NameLoc, Name,
Mike Stump1eb44332009-09-09 15:08:12 +0000978 PrevClassTemplate?
Douglas Gregoraafc0cc2009-05-15 19:11:46 +0000979 PrevClassTemplate->getTemplatedDecl() : 0,
980 /*DelayTypeCreation=*/true);
John McCallb6217662010-03-15 10:12:16 +0000981 SetNestedNameSpecifier(NewClass, SS);
Abramo Bagnarac57c17d2011-03-10 13:28:31 +0000982 if (NumOuterTemplateParamLists > 0)
983 NewClass->setTemplateParameterListsInfo(Context,
984 NumOuterTemplateParamLists,
985 OuterTemplateParamLists);
Douglas Gregorddc29e12009-02-06 22:42:48 +0000986
987 ClassTemplateDecl *NewTemplate
988 = ClassTemplateDecl::Create(Context, SemanticContext, NameLoc,
989 DeclarationName(Name), TemplateParams,
Douglas Gregor5953d8b2009-03-19 17:26:29 +0000990 NewClass, PrevClassTemplate);
Douglas Gregorbefc20e2009-03-26 00:10:35 +0000991 NewClass->setDescribedClassTemplate(NewTemplate);
992
Douglas Gregoraafc0cc2009-05-15 19:11:46 +0000993 // Build the type for the class template declaration now.
Douglas Gregor24bae922010-07-08 18:37:38 +0000994 QualType T = NewTemplate->getInjectedClassNameSpecialization();
John McCall3cb0ebd2010-03-10 03:28:59 +0000995 T = Context.getInjectedClassNameType(NewClass, T);
Douglas Gregoraafc0cc2009-05-15 19:11:46 +0000996 assert(T->isDependentType() && "Class template type is not dependent?");
997 (void)T;
998
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000999 // If we are providing an explicit specialization of a member that is a
Douglas Gregorfd056bc2009-10-13 16:30:37 +00001000 // class template, make a note of that.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001001 if (PrevClassTemplate &&
Douglas Gregorfd056bc2009-10-13 16:30:37 +00001002 PrevClassTemplate->getInstantiatedFromMemberTemplate())
1003 PrevClassTemplate->setMemberSpecialization();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001004
Anders Carlsson4cbe82c2009-03-26 01:24:28 +00001005 // Set the access specifier.
Douglas Gregord85bea22009-09-26 06:47:28 +00001006 if (!Invalid && TUK != TUK_Friend)
John McCall05b23ea2009-09-14 21:59:20 +00001007 SetMemberAccessSpecifier(NewTemplate, PrevClassTemplate, AS);
Mike Stump1eb44332009-09-09 15:08:12 +00001008
Douglas Gregorddc29e12009-02-06 22:42:48 +00001009 // Set the lexical context of these templates
1010 NewClass->setLexicalDeclContext(CurContext);
1011 NewTemplate->setLexicalDeclContext(CurContext);
1012
John McCall0f434ec2009-07-31 02:45:11 +00001013 if (TUK == TUK_Definition)
Douglas Gregorddc29e12009-02-06 22:42:48 +00001014 NewClass->startDefinition();
1015
1016 if (Attr)
Douglas Gregor9cdda0c2009-06-17 21:51:59 +00001017 ProcessDeclAttributeList(S, NewClass, Attr);
Douglas Gregorddc29e12009-02-06 22:42:48 +00001018
John McCall05b23ea2009-09-14 21:59:20 +00001019 if (TUK != TUK_Friend)
1020 PushOnScopeChains(NewTemplate, S);
1021 else {
Douglas Gregord85bea22009-09-26 06:47:28 +00001022 if (PrevClassTemplate && PrevClassTemplate->getAccess() != AS_none) {
John McCall05b23ea2009-09-14 21:59:20 +00001023 NewTemplate->setAccess(PrevClassTemplate->getAccess());
Douglas Gregord85bea22009-09-26 06:47:28 +00001024 NewClass->setAccess(PrevClassTemplate->getAccess());
1025 }
John McCall05b23ea2009-09-14 21:59:20 +00001026
Douglas Gregord85bea22009-09-26 06:47:28 +00001027 NewTemplate->setObjectOfFriendDecl(/* PreviouslyDeclared = */
1028 PrevClassTemplate != NULL);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001029
John McCall05b23ea2009-09-14 21:59:20 +00001030 // Friend templates are visible in fairly strange ways.
1031 if (!CurContext->isDependentContext()) {
Sebastian Redl7a126a42010-08-31 00:36:30 +00001032 DeclContext *DC = SemanticContext->getRedeclContext();
John McCall05b23ea2009-09-14 21:59:20 +00001033 DC->makeDeclVisibleInContext(NewTemplate, /* Recoverable = */ false);
1034 if (Scope *EnclosingScope = getScopeForDeclContext(S, DC))
1035 PushOnScopeChains(NewTemplate, EnclosingScope,
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001036 /* AddToContext = */ false);
John McCall05b23ea2009-09-14 21:59:20 +00001037 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001038
Douglas Gregord85bea22009-09-26 06:47:28 +00001039 FriendDecl *Friend = FriendDecl::Create(Context, CurContext,
1040 NewClass->getLocation(),
1041 NewTemplate,
1042 /*FIXME:*/NewClass->getLocation());
1043 Friend->setAccess(AS_public);
1044 CurContext->addDecl(Friend);
John McCall05b23ea2009-09-14 21:59:20 +00001045 }
Douglas Gregorddc29e12009-02-06 22:42:48 +00001046
Douglas Gregord684b002009-02-10 19:49:53 +00001047 if (Invalid) {
1048 NewTemplate->setInvalidDecl();
1049 NewClass->setInvalidDecl();
1050 }
John McCalld226f652010-08-21 09:40:31 +00001051 return NewTemplate;
Douglas Gregorddc29e12009-02-06 22:42:48 +00001052}
1053
Douglas Gregor5b6d70e2009-11-25 17:50:39 +00001054/// \brief Diagnose the presence of a default template argument on a
1055/// template parameter, which is ill-formed in certain contexts.
1056///
1057/// \returns true if the default template argument should be dropped.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001058static bool DiagnoseDefaultTemplateArgument(Sema &S,
Douglas Gregor5b6d70e2009-11-25 17:50:39 +00001059 Sema::TemplateParamListContext TPC,
1060 SourceLocation ParamLoc,
1061 SourceRange DefArgRange) {
1062 switch (TPC) {
1063 case Sema::TPC_ClassTemplate:
Richard Smith3e4c6c42011-05-05 21:57:07 +00001064 case Sema::TPC_TypeAliasTemplate:
Douglas Gregor5b6d70e2009-11-25 17:50:39 +00001065 return false;
1066
1067 case Sema::TPC_FunctionTemplate:
Douglas Gregord89d86f2011-02-04 04:20:44 +00001068 case Sema::TPC_FriendFunctionTemplateDefinition:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001069 // C++ [temp.param]p9:
Douglas Gregor5b6d70e2009-11-25 17:50:39 +00001070 // A default template-argument shall not be specified in a
1071 // function template declaration or a function template
1072 // definition [...]
Douglas Gregord89d86f2011-02-04 04:20:44 +00001073 // If a friend function template declaration specifies a default
1074 // template-argument, that declaration shall be a definition and shall be
1075 // the only declaration of the function template in the translation unit.
1076 // (C++98/03 doesn't have this wording; see DR226).
Douglas Gregor5b6d70e2009-11-25 17:50:39 +00001077 if (!S.getLangOptions().CPlusPlus0x)
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001078 S.Diag(ParamLoc,
Douglas Gregoree5d21f2011-02-04 03:57:22 +00001079 diag::ext_template_parameter_default_in_function_template)
Douglas Gregor5b6d70e2009-11-25 17:50:39 +00001080 << DefArgRange;
1081 return false;
1082
1083 case Sema::TPC_ClassTemplateMember:
1084 // C++0x [temp.param]p9:
1085 // A default template-argument shall not be specified in the
1086 // template-parameter-lists of the definition of a member of a
1087 // class template that appears outside of the member's class.
1088 S.Diag(ParamLoc, diag::err_template_parameter_default_template_member)
1089 << DefArgRange;
1090 return true;
1091
1092 case Sema::TPC_FriendFunctionTemplate:
1093 // C++ [temp.param]p9:
1094 // A default template-argument shall not be specified in a
1095 // friend template declaration.
1096 S.Diag(ParamLoc, diag::err_template_parameter_default_friend_template)
1097 << DefArgRange;
1098 return true;
1099
1100 // FIXME: C++0x [temp.param]p9 allows default template-arguments
1101 // for friend function templates if there is only a single
1102 // declaration (and it is a definition). Strange!
1103 }
1104
1105 return false;
1106}
1107
Douglas Gregor4d2abba2010-12-16 15:36:43 +00001108/// \brief Check for unexpanded parameter packs within the template parameters
1109/// of a template template parameter, recursively.
Benjamin Kramerda57f3e2011-03-26 12:38:21 +00001110static bool DiagnoseUnexpandedParameterPacks(Sema &S,
1111 TemplateTemplateParmDecl *TTP) {
Douglas Gregor4d2abba2010-12-16 15:36:43 +00001112 TemplateParameterList *Params = TTP->getTemplateParameters();
1113 for (unsigned I = 0, N = Params->size(); I != N; ++I) {
1114 NamedDecl *P = Params->getParam(I);
1115 if (NonTypeTemplateParmDecl *NTTP = dyn_cast<NonTypeTemplateParmDecl>(P)) {
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001116 if (S.DiagnoseUnexpandedParameterPack(NTTP->getLocation(),
Douglas Gregor4d2abba2010-12-16 15:36:43 +00001117 NTTP->getTypeSourceInfo(),
1118 Sema::UPPC_NonTypeTemplateParameterType))
1119 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001120
Douglas Gregor4d2abba2010-12-16 15:36:43 +00001121 continue;
1122 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001123
1124 if (TemplateTemplateParmDecl *InnerTTP
Douglas Gregor4d2abba2010-12-16 15:36:43 +00001125 = dyn_cast<TemplateTemplateParmDecl>(P))
1126 if (DiagnoseUnexpandedParameterPacks(S, InnerTTP))
1127 return true;
1128 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001129
Douglas Gregor4d2abba2010-12-16 15:36:43 +00001130 return false;
1131}
1132
Douglas Gregord684b002009-02-10 19:49:53 +00001133/// \brief Checks the validity of a template parameter list, possibly
1134/// considering the template parameter list from a previous
1135/// declaration.
1136///
1137/// If an "old" template parameter list is provided, it must be
1138/// equivalent (per TemplateParameterListsAreEqual) to the "new"
1139/// template parameter list.
1140///
1141/// \param NewParams Template parameter list for a new template
1142/// declaration. This template parameter list will be updated with any
1143/// default arguments that are carried through from the previous
1144/// template parameter list.
1145///
1146/// \param OldParams If provided, template parameter list from a
1147/// previous declaration of the same template. Default template
1148/// arguments will be merged from the old template parameter list to
1149/// the new template parameter list.
1150///
Douglas Gregor5b6d70e2009-11-25 17:50:39 +00001151/// \param TPC Describes the context in which we are checking the given
1152/// template parameter list.
1153///
Douglas Gregord684b002009-02-10 19:49:53 +00001154/// \returns true if an error occurred, false otherwise.
1155bool Sema::CheckTemplateParameterList(TemplateParameterList *NewParams,
Douglas Gregor5b6d70e2009-11-25 17:50:39 +00001156 TemplateParameterList *OldParams,
1157 TemplateParamListContext TPC) {
Douglas Gregord684b002009-02-10 19:49:53 +00001158 bool Invalid = false;
Mike Stump1eb44332009-09-09 15:08:12 +00001159
Douglas Gregord684b002009-02-10 19:49:53 +00001160 // C++ [temp.param]p10:
1161 // The set of default template-arguments available for use with a
1162 // template declaration or definition is obtained by merging the
1163 // default arguments from the definition (if in scope) and all
1164 // declarations in scope in the same way default function
1165 // arguments are (8.3.6).
1166 bool SawDefaultArgument = false;
1167 SourceLocation PreviousDefaultArgLoc;
Douglas Gregorc15cb382009-02-09 23:23:08 +00001168
Anders Carlsson49d25572009-06-12 23:20:15 +00001169 bool SawParameterPack = false;
1170 SourceLocation ParameterPackLoc;
1171
Mike Stump1a35fde2009-02-11 23:03:27 +00001172 // Dummy initialization to avoid warnings.
Douglas Gregor1bc69132009-02-11 20:46:19 +00001173 TemplateParameterList::iterator OldParam = NewParams->end();
Douglas Gregord684b002009-02-10 19:49:53 +00001174 if (OldParams)
1175 OldParam = OldParams->begin();
1176
Douglas Gregorfd1a8fd2011-01-27 01:40:17 +00001177 bool RemoveDefaultArguments = false;
Douglas Gregord684b002009-02-10 19:49:53 +00001178 for (TemplateParameterList::iterator NewParam = NewParams->begin(),
1179 NewParamEnd = NewParams->end();
1180 NewParam != NewParamEnd; ++NewParam) {
1181 // Variables used to diagnose redundant default arguments
1182 bool RedundantDefaultArg = false;
1183 SourceLocation OldDefaultLoc;
1184 SourceLocation NewDefaultLoc;
1185
1186 // Variables used to diagnose missing default arguments
1187 bool MissingDefaultArg = false;
1188
Anders Carlsson49d25572009-06-12 23:20:15 +00001189 // C++0x [temp.param]p11:
Richard Smith3e4c6c42011-05-05 21:57:07 +00001190 // If a template parameter of a primary class template or alias template
1191 // is a template parameter pack, it shall be the last template parameter.
1192 if (SawParameterPack &&
1193 (TPC == TPC_ClassTemplate || TPC == TPC_TypeAliasTemplate)) {
Mike Stump1eb44332009-09-09 15:08:12 +00001194 Diag(ParameterPackLoc,
Anders Carlsson49d25572009-06-12 23:20:15 +00001195 diag::err_template_param_pack_must_be_last_template_parameter);
1196 Invalid = true;
1197 }
1198
Douglas Gregord684b002009-02-10 19:49:53 +00001199 if (TemplateTypeParmDecl *NewTypeParm
1200 = dyn_cast<TemplateTypeParmDecl>(*NewParam)) {
Douglas Gregor5b6d70e2009-11-25 17:50:39 +00001201 // Check the presence of a default argument here.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001202 if (NewTypeParm->hasDefaultArgument() &&
1203 DiagnoseDefaultTemplateArgument(*this, TPC,
1204 NewTypeParm->getLocation(),
Douglas Gregor5b6d70e2009-11-25 17:50:39 +00001205 NewTypeParm->getDefaultArgumentInfo()->getTypeLoc()
Abramo Bagnarabd054db2010-05-20 10:00:11 +00001206 .getSourceRange()))
Douglas Gregor5b6d70e2009-11-25 17:50:39 +00001207 NewTypeParm->removeDefaultArgument();
1208
1209 // Merge default arguments for template type parameters.
Mike Stump1eb44332009-09-09 15:08:12 +00001210 TemplateTypeParmDecl *OldTypeParm
Douglas Gregord684b002009-02-10 19:49:53 +00001211 = OldParams? cast<TemplateTypeParmDecl>(*OldParam) : 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001212
Anders Carlsson49d25572009-06-12 23:20:15 +00001213 if (NewTypeParm->isParameterPack()) {
1214 assert(!NewTypeParm->hasDefaultArgument() &&
1215 "Parameter packs can't have a default argument!");
1216 SawParameterPack = true;
1217 ParameterPackLoc = NewTypeParm->getLocation();
Mike Stump1eb44332009-09-09 15:08:12 +00001218 } else if (OldTypeParm && OldTypeParm->hasDefaultArgument() &&
John McCall833ca992009-10-29 08:12:44 +00001219 NewTypeParm->hasDefaultArgument()) {
Douglas Gregord684b002009-02-10 19:49:53 +00001220 OldDefaultLoc = OldTypeParm->getDefaultArgumentLoc();
1221 NewDefaultLoc = NewTypeParm->getDefaultArgumentLoc();
1222 SawDefaultArgument = true;
1223 RedundantDefaultArg = true;
1224 PreviousDefaultArgLoc = NewDefaultLoc;
1225 } else if (OldTypeParm && OldTypeParm->hasDefaultArgument()) {
1226 // Merge the default argument from the old declaration to the
1227 // new declaration.
1228 SawDefaultArgument = true;
John McCall833ca992009-10-29 08:12:44 +00001229 NewTypeParm->setDefaultArgument(OldTypeParm->getDefaultArgumentInfo(),
Douglas Gregord684b002009-02-10 19:49:53 +00001230 true);
1231 PreviousDefaultArgLoc = OldTypeParm->getDefaultArgumentLoc();
1232 } else if (NewTypeParm->hasDefaultArgument()) {
1233 SawDefaultArgument = true;
1234 PreviousDefaultArgLoc = NewTypeParm->getDefaultArgumentLoc();
1235 } else if (SawDefaultArgument)
1236 MissingDefaultArg = true;
Mike Stumpac5fc7c2009-08-04 21:02:39 +00001237 } else if (NonTypeTemplateParmDecl *NewNonTypeParm
Douglas Gregord684b002009-02-10 19:49:53 +00001238 = dyn_cast<NonTypeTemplateParmDecl>(*NewParam)) {
Douglas Gregor4d2abba2010-12-16 15:36:43 +00001239 // Check for unexpanded parameter packs.
1240 if (DiagnoseUnexpandedParameterPack(NewNonTypeParm->getLocation(),
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001241 NewNonTypeParm->getTypeSourceInfo(),
Douglas Gregor4d2abba2010-12-16 15:36:43 +00001242 UPPC_NonTypeTemplateParameterType)) {
1243 Invalid = true;
1244 continue;
1245 }
1246
Douglas Gregor5b6d70e2009-11-25 17:50:39 +00001247 // Check the presence of a default argument here.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001248 if (NewNonTypeParm->hasDefaultArgument() &&
1249 DiagnoseDefaultTemplateArgument(*this, TPC,
1250 NewNonTypeParm->getLocation(),
Douglas Gregor5b6d70e2009-11-25 17:50:39 +00001251 NewNonTypeParm->getDefaultArgument()->getSourceRange())) {
Abramo Bagnarad92f7a22010-06-09 09:26:05 +00001252 NewNonTypeParm->removeDefaultArgument();
Douglas Gregor5b6d70e2009-11-25 17:50:39 +00001253 }
1254
Mike Stumpac5fc7c2009-08-04 21:02:39 +00001255 // Merge default arguments for non-type template parameters
Douglas Gregord684b002009-02-10 19:49:53 +00001256 NonTypeTemplateParmDecl *OldNonTypeParm
1257 = OldParams? cast<NonTypeTemplateParmDecl>(*OldParam) : 0;
Douglas Gregor1ed64762011-01-05 16:19:19 +00001258 if (NewNonTypeParm->isParameterPack()) {
1259 assert(!NewNonTypeParm->hasDefaultArgument() &&
1260 "Parameter packs can't have a default argument!");
1261 SawParameterPack = true;
1262 ParameterPackLoc = NewNonTypeParm->getLocation();
1263 } else if (OldNonTypeParm && OldNonTypeParm->hasDefaultArgument() &&
Douglas Gregord684b002009-02-10 19:49:53 +00001264 NewNonTypeParm->hasDefaultArgument()) {
1265 OldDefaultLoc = OldNonTypeParm->getDefaultArgumentLoc();
1266 NewDefaultLoc = NewNonTypeParm->getDefaultArgumentLoc();
1267 SawDefaultArgument = true;
1268 RedundantDefaultArg = true;
1269 PreviousDefaultArgLoc = NewDefaultLoc;
1270 } else if (OldNonTypeParm && OldNonTypeParm->hasDefaultArgument()) {
1271 // Merge the default argument from the old declaration to the
1272 // new declaration.
1273 SawDefaultArgument = true;
1274 // FIXME: We need to create a new kind of "default argument"
Douglas Gregor61c4d282011-01-05 15:48:55 +00001275 // expression that points to a previous non-type template
Douglas Gregord684b002009-02-10 19:49:53 +00001276 // parameter.
1277 NewNonTypeParm->setDefaultArgument(
Abramo Bagnarad92f7a22010-06-09 09:26:05 +00001278 OldNonTypeParm->getDefaultArgument(),
1279 /*Inherited=*/ true);
Douglas Gregord684b002009-02-10 19:49:53 +00001280 PreviousDefaultArgLoc = OldNonTypeParm->getDefaultArgumentLoc();
1281 } else if (NewNonTypeParm->hasDefaultArgument()) {
1282 SawDefaultArgument = true;
1283 PreviousDefaultArgLoc = NewNonTypeParm->getDefaultArgumentLoc();
1284 } else if (SawDefaultArgument)
Mike Stump1eb44332009-09-09 15:08:12 +00001285 MissingDefaultArg = true;
Mike Stumpac5fc7c2009-08-04 21:02:39 +00001286 } else {
Douglas Gregor5b6d70e2009-11-25 17:50:39 +00001287 // Check the presence of a default argument here.
Douglas Gregord684b002009-02-10 19:49:53 +00001288 TemplateTemplateParmDecl *NewTemplateParm
1289 = cast<TemplateTemplateParmDecl>(*NewParam);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001290
Douglas Gregor4d2abba2010-12-16 15:36:43 +00001291 // Check for unexpanded parameter packs, recursively.
1292 if (DiagnoseUnexpandedParameterPacks(*this, NewTemplateParm)) {
1293 Invalid = true;
1294 continue;
1295 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001296
1297 if (NewTemplateParm->hasDefaultArgument() &&
1298 DiagnoseDefaultTemplateArgument(*this, TPC,
1299 NewTemplateParm->getLocation(),
Douglas Gregor5b6d70e2009-11-25 17:50:39 +00001300 NewTemplateParm->getDefaultArgument().getSourceRange()))
Abramo Bagnarad92f7a22010-06-09 09:26:05 +00001301 NewTemplateParm->removeDefaultArgument();
Douglas Gregor5b6d70e2009-11-25 17:50:39 +00001302
1303 // Merge default arguments for template template parameters
Douglas Gregord684b002009-02-10 19:49:53 +00001304 TemplateTemplateParmDecl *OldTemplateParm
1305 = OldParams? cast<TemplateTemplateParmDecl>(*OldParam) : 0;
Douglas Gregor1ed64762011-01-05 16:19:19 +00001306 if (NewTemplateParm->isParameterPack()) {
1307 assert(!NewTemplateParm->hasDefaultArgument() &&
1308 "Parameter packs can't have a default argument!");
1309 SawParameterPack = true;
1310 ParameterPackLoc = NewTemplateParm->getLocation();
1311 } else if (OldTemplateParm && OldTemplateParm->hasDefaultArgument() &&
Douglas Gregord684b002009-02-10 19:49:53 +00001312 NewTemplateParm->hasDefaultArgument()) {
Douglas Gregor788cd062009-11-11 01:00:40 +00001313 OldDefaultLoc = OldTemplateParm->getDefaultArgument().getLocation();
1314 NewDefaultLoc = NewTemplateParm->getDefaultArgument().getLocation();
Douglas Gregord684b002009-02-10 19:49:53 +00001315 SawDefaultArgument = true;
1316 RedundantDefaultArg = true;
1317 PreviousDefaultArgLoc = NewDefaultLoc;
1318 } else if (OldTemplateParm && OldTemplateParm->hasDefaultArgument()) {
1319 // Merge the default argument from the old declaration to the
1320 // new declaration.
1321 SawDefaultArgument = true;
Mike Stump390b4cc2009-05-16 07:39:55 +00001322 // FIXME: We need to create a new kind of "default argument" expression
1323 // that points to a previous template template parameter.
Douglas Gregord684b002009-02-10 19:49:53 +00001324 NewTemplateParm->setDefaultArgument(
Abramo Bagnarad92f7a22010-06-09 09:26:05 +00001325 OldTemplateParm->getDefaultArgument(),
1326 /*Inherited=*/ true);
Douglas Gregor788cd062009-11-11 01:00:40 +00001327 PreviousDefaultArgLoc
1328 = OldTemplateParm->getDefaultArgument().getLocation();
Douglas Gregord684b002009-02-10 19:49:53 +00001329 } else if (NewTemplateParm->hasDefaultArgument()) {
1330 SawDefaultArgument = true;
Douglas Gregor788cd062009-11-11 01:00:40 +00001331 PreviousDefaultArgLoc
1332 = NewTemplateParm->getDefaultArgument().getLocation();
Douglas Gregord684b002009-02-10 19:49:53 +00001333 } else if (SawDefaultArgument)
Mike Stump1eb44332009-09-09 15:08:12 +00001334 MissingDefaultArg = true;
Douglas Gregord684b002009-02-10 19:49:53 +00001335 }
1336
1337 if (RedundantDefaultArg) {
1338 // C++ [temp.param]p12:
1339 // A template-parameter shall not be given default arguments
1340 // by two different declarations in the same scope.
1341 Diag(NewDefaultLoc, diag::err_template_param_default_arg_redefinition);
1342 Diag(OldDefaultLoc, diag::note_template_param_prev_default_arg);
1343 Invalid = true;
Douglas Gregoree5d21f2011-02-04 03:57:22 +00001344 } else if (MissingDefaultArg && TPC != TPC_FunctionTemplate) {
Douglas Gregord684b002009-02-10 19:49:53 +00001345 // C++ [temp.param]p11:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001346 // If a template-parameter of a class template has a default
1347 // template-argument, each subsequent template-parameter shall either
Douglas Gregorb49e4152011-01-05 16:21:17 +00001348 // have a default template-argument supplied or be a template parameter
1349 // pack.
Mike Stump1eb44332009-09-09 15:08:12 +00001350 Diag((*NewParam)->getLocation(),
Douglas Gregord684b002009-02-10 19:49:53 +00001351 diag::err_template_param_default_arg_missing);
1352 Diag(PreviousDefaultArgLoc, diag::note_template_param_prev_default_arg);
1353 Invalid = true;
Douglas Gregorfd1a8fd2011-01-27 01:40:17 +00001354 RemoveDefaultArguments = true;
Douglas Gregord684b002009-02-10 19:49:53 +00001355 }
1356
1357 // If we have an old template parameter list that we're merging
1358 // in, move on to the next parameter.
1359 if (OldParams)
1360 ++OldParam;
1361 }
1362
Douglas Gregorfd1a8fd2011-01-27 01:40:17 +00001363 // We were missing some default arguments at the end of the list, so remove
1364 // all of the default arguments.
1365 if (RemoveDefaultArguments) {
1366 for (TemplateParameterList::iterator NewParam = NewParams->begin(),
1367 NewParamEnd = NewParams->end();
1368 NewParam != NewParamEnd; ++NewParam) {
1369 if (TemplateTypeParmDecl *TTP = dyn_cast<TemplateTypeParmDecl>(*NewParam))
1370 TTP->removeDefaultArgument();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001371 else if (NonTypeTemplateParmDecl *NTTP
Douglas Gregorfd1a8fd2011-01-27 01:40:17 +00001372 = dyn_cast<NonTypeTemplateParmDecl>(*NewParam))
1373 NTTP->removeDefaultArgument();
1374 else
1375 cast<TemplateTemplateParmDecl>(*NewParam)->removeDefaultArgument();
1376 }
1377 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001378
Douglas Gregord684b002009-02-10 19:49:53 +00001379 return Invalid;
1380}
Douglas Gregorc15cb382009-02-09 23:23:08 +00001381
John McCall4e2cbb22010-10-20 05:44:58 +00001382namespace {
1383
1384/// A class which looks for a use of a certain level of template
1385/// parameter.
1386struct DependencyChecker : RecursiveASTVisitor<DependencyChecker> {
1387 typedef RecursiveASTVisitor<DependencyChecker> super;
1388
1389 unsigned Depth;
1390 bool Match;
1391
1392 DependencyChecker(TemplateParameterList *Params) : Match(false) {
1393 NamedDecl *ND = Params->getParam(0);
1394 if (TemplateTypeParmDecl *PD = dyn_cast<TemplateTypeParmDecl>(ND)) {
1395 Depth = PD->getDepth();
1396 } else if (NonTypeTemplateParmDecl *PD =
1397 dyn_cast<NonTypeTemplateParmDecl>(ND)) {
1398 Depth = PD->getDepth();
1399 } else {
1400 Depth = cast<TemplateTemplateParmDecl>(ND)->getDepth();
1401 }
1402 }
1403
1404 bool Matches(unsigned ParmDepth) {
1405 if (ParmDepth >= Depth) {
1406 Match = true;
1407 return true;
1408 }
1409 return false;
1410 }
1411
1412 bool VisitTemplateTypeParmType(const TemplateTypeParmType *T) {
1413 return !Matches(T->getDepth());
1414 }
1415
1416 bool TraverseTemplateName(TemplateName N) {
1417 if (TemplateTemplateParmDecl *PD =
1418 dyn_cast_or_null<TemplateTemplateParmDecl>(N.getAsTemplateDecl()))
1419 if (Matches(PD->getDepth())) return false;
1420 return super::TraverseTemplateName(N);
1421 }
1422
1423 bool VisitDeclRefExpr(DeclRefExpr *E) {
1424 if (NonTypeTemplateParmDecl *PD =
1425 dyn_cast<NonTypeTemplateParmDecl>(E->getDecl())) {
1426 if (PD->getDepth() == Depth) {
1427 Match = true;
1428 return false;
1429 }
1430 }
1431 return super::VisitDeclRefExpr(E);
1432 }
1433};
1434}
1435
Douglas Gregorc8406492011-05-10 18:27:06 +00001436/// Determines whether a given type depends on the given parameter
John McCall4e2cbb22010-10-20 05:44:58 +00001437/// list.
1438static bool
Douglas Gregorc8406492011-05-10 18:27:06 +00001439DependsOnTemplateParameters(QualType T, TemplateParameterList *Params) {
John McCall4e2cbb22010-10-20 05:44:58 +00001440 DependencyChecker Checker(Params);
Douglas Gregorc8406492011-05-10 18:27:06 +00001441 Checker.TraverseType(T);
John McCall4e2cbb22010-10-20 05:44:58 +00001442 return Checker.Match;
1443}
1444
Douglas Gregorc8406492011-05-10 18:27:06 +00001445// Find the source range corresponding to the named type in the given
1446// nested-name-specifier, if any.
1447static SourceRange getRangeOfTypeInNestedNameSpecifier(ASTContext &Context,
1448 QualType T,
1449 const CXXScopeSpec &SS) {
1450 NestedNameSpecifierLoc NNSLoc(SS.getScopeRep(), SS.location_data());
1451 while (NestedNameSpecifier *NNS = NNSLoc.getNestedNameSpecifier()) {
1452 if (const Type *CurType = NNS->getAsType()) {
1453 if (Context.hasSameUnqualifiedType(T, QualType(CurType, 0)))
1454 return NNSLoc.getTypeLoc().getSourceRange();
1455 } else
1456 break;
1457
1458 NNSLoc = NNSLoc.getPrefix();
1459 }
1460
1461 return SourceRange();
1462}
1463
Mike Stump1eb44332009-09-09 15:08:12 +00001464/// \brief Match the given template parameter lists to the given scope
Douglas Gregorf59a56e2009-07-21 23:53:31 +00001465/// specifier, returning the template parameter list that applies to the
1466/// name.
1467///
1468/// \param DeclStartLoc the start of the declaration that has a scope
1469/// specifier or a template parameter list.
Mike Stump1eb44332009-09-09 15:08:12 +00001470///
Douglas Gregorc8406492011-05-10 18:27:06 +00001471/// \param DeclLoc The location of the declaration itself.
1472///
Douglas Gregorf59a56e2009-07-21 23:53:31 +00001473/// \param SS the scope specifier that will be matched to the given template
1474/// parameter lists. This scope specifier precedes a qualified name that is
1475/// being declared.
1476///
1477/// \param ParamLists the template parameter lists, from the outermost to the
1478/// innermost template parameter lists.
1479///
1480/// \param NumParamLists the number of template parameter lists in ParamLists.
1481///
John McCall77e8b112010-04-13 20:37:33 +00001482/// \param IsFriend Whether to apply the slightly different rules for
1483/// matching template parameters to scope specifiers in friend
1484/// declarations.
1485///
Douglas Gregor1fef4e62009-10-07 22:35:40 +00001486/// \param IsExplicitSpecialization will be set true if the entity being
1487/// declared is an explicit specialization, false otherwise.
1488///
Mike Stump1eb44332009-09-09 15:08:12 +00001489/// \returns the template parameter list, if any, that corresponds to the
Douglas Gregorf59a56e2009-07-21 23:53:31 +00001490/// name that is preceded by the scope specifier @p SS. This template
Abramo Bagnara7f0a9152011-03-18 15:16:37 +00001491/// parameter list may have template parameters (if we're declaring a
Mike Stump1eb44332009-09-09 15:08:12 +00001492/// template) or may have no template parameters (if we're declaring a
Abramo Bagnara7f0a9152011-03-18 15:16:37 +00001493/// template specialization), or may be NULL (if what we're declaring isn't
Douglas Gregorf59a56e2009-07-21 23:53:31 +00001494/// itself a template).
1495TemplateParameterList *
1496Sema::MatchTemplateParametersToScopeSpecifier(SourceLocation DeclStartLoc,
Douglas Gregorc8406492011-05-10 18:27:06 +00001497 SourceLocation DeclLoc,
Douglas Gregorf59a56e2009-07-21 23:53:31 +00001498 const CXXScopeSpec &SS,
1499 TemplateParameterList **ParamLists,
Douglas Gregor1fef4e62009-10-07 22:35:40 +00001500 unsigned NumParamLists,
John McCall77e8b112010-04-13 20:37:33 +00001501 bool IsFriend,
Douglas Gregor0167f3c2010-07-14 23:14:12 +00001502 bool &IsExplicitSpecialization,
1503 bool &Invalid) {
Douglas Gregor1fef4e62009-10-07 22:35:40 +00001504 IsExplicitSpecialization = false;
Douglas Gregorc8406492011-05-10 18:27:06 +00001505 Invalid = false;
1506
1507 // The sequence of nested types to which we will match up the template
1508 // parameter lists. We first build this list by starting with the type named
1509 // by the nested-name-specifier and walking out until we run out of types.
1510 llvm::SmallVector<QualType, 4> NestedTypes;
1511 QualType T;
1512 if (SS.getScopeRep())
1513 T = QualType(SS.getScopeRep()->getAsType(), 0);
1514
1515 // If we found an explicit specialization that prevents us from needing
1516 // 'template<>' headers, this will be set to the location of that
1517 // explicit specialization.
1518 SourceLocation ExplicitSpecLoc;
1519
1520 while (!T.isNull()) {
1521 NestedTypes.push_back(T);
1522
1523 // Retrieve the parent of a record type.
1524 if (CXXRecordDecl *Record = T->getAsCXXRecordDecl()) {
1525 // If this type is an explicit specialization, we're done.
1526 if (ClassTemplateSpecializationDecl *Spec
1527 = dyn_cast<ClassTemplateSpecializationDecl>(Record)) {
1528 if (!isa<ClassTemplatePartialSpecializationDecl>(Spec) &&
1529 Spec->getSpecializationKind() == TSK_ExplicitSpecialization) {
1530 ExplicitSpecLoc = Spec->getLocation();
1531 break;
Douglas Gregor3ebd7532009-11-23 12:11:45 +00001532 }
Douglas Gregorc8406492011-05-10 18:27:06 +00001533 } else if (Record->getTemplateSpecializationKind()
1534 == TSK_ExplicitSpecialization) {
1535 ExplicitSpecLoc = Record->getLocation();
John McCall77e8b112010-04-13 20:37:33 +00001536 break;
1537 }
Douglas Gregorc8406492011-05-10 18:27:06 +00001538
1539 if (TypeDecl *Parent = dyn_cast<TypeDecl>(Record->getParent()))
1540 T = Context.getTypeDeclType(Parent);
1541 else
1542 T = QualType();
1543 continue;
1544 }
1545
1546 if (const TemplateSpecializationType *TST
1547 = T->getAs<TemplateSpecializationType>()) {
1548 if (TemplateDecl *Template = TST->getTemplateName().getAsTemplateDecl()) {
1549 if (TypeDecl *Parent = dyn_cast<TypeDecl>(Template->getDeclContext()))
1550 T = Context.getTypeDeclType(Parent);
1551 else
1552 T = QualType();
1553 continue;
Douglas Gregorf59a56e2009-07-21 23:53:31 +00001554 }
Douglas Gregorc8406492011-05-10 18:27:06 +00001555 }
1556
1557 // Look one step prior in a dependent template specialization type.
1558 if (const DependentTemplateSpecializationType *DependentTST
1559 = T->getAs<DependentTemplateSpecializationType>()) {
1560 if (NestedNameSpecifier *NNS = DependentTST->getQualifier())
1561 T = QualType(NNS->getAsType(), 0);
1562 else
1563 T = QualType();
1564 continue;
1565 }
1566
1567 // Look one step prior in a dependent name type.
1568 if (const DependentNameType *DependentName = T->getAs<DependentNameType>()){
1569 if (NestedNameSpecifier *NNS = DependentName->getQualifier())
1570 T = QualType(NNS->getAsType(), 0);
1571 else
1572 T = QualType();
1573 continue;
1574 }
1575
1576 // Retrieve the parent of an enumeration type.
1577 if (const EnumType *EnumT = T->getAs<EnumType>()) {
1578 // FIXME: Forward-declared enums require a TSK_ExplicitSpecialization
1579 // check here.
1580 EnumDecl *Enum = EnumT->getDecl();
1581
1582 // Get to the parent type.
1583 if (TypeDecl *Parent = dyn_cast<TypeDecl>(Enum->getParent()))
1584 T = Context.getTypeDeclType(Parent);
1585 else
1586 T = QualType();
1587 continue;
Douglas Gregorf59a56e2009-07-21 23:53:31 +00001588 }
Mike Stump1eb44332009-09-09 15:08:12 +00001589
Douglas Gregorc8406492011-05-10 18:27:06 +00001590 T = QualType();
1591 }
1592 // Reverse the nested types list, since we want to traverse from the outermost
1593 // to the innermost while checking template-parameter-lists.
1594 std::reverse(NestedTypes.begin(), NestedTypes.end());
Douglas Gregorb88e8882009-07-30 17:40:51 +00001595
Douglas Gregorc8406492011-05-10 18:27:06 +00001596 // C++0x [temp.expl.spec]p17:
1597 // A member or a member template may be nested within many
1598 // enclosing class templates. In an explicit specialization for
1599 // such a member, the member declaration shall be preceded by a
1600 // template<> for each enclosing class template that is
1601 // explicitly specialized.
1602 unsigned ParamIdx = 0;
1603 for (unsigned TypeIdx = 0, NumTypes = NestedTypes.size(); TypeIdx != NumTypes;
1604 ++TypeIdx) {
1605 T = NestedTypes[TypeIdx];
1606
1607 // Whether we expect a 'template<>' header.
1608 bool NeedEmptyTemplateHeader = false;
1609
1610 // Whether we expect a template header with parameters.
1611 bool NeedNonemptyTemplateHeader = false;
1612
1613 // For a dependent type, the set of template parameters that we
1614 // expect to see.
1615 TemplateParameterList *ExpectedTemplateParams = 0;
1616
1617 if (CXXRecordDecl *Record = T->getAsCXXRecordDecl()) {
1618 if (ClassTemplatePartialSpecializationDecl *Partial
1619 = dyn_cast<ClassTemplatePartialSpecializationDecl>(Record)) {
1620 ExpectedTemplateParams = Partial->getTemplateParameters();
1621 NeedNonemptyTemplateHeader = true;
1622 } else if (Record->isDependentType()) {
1623 if (Record->getDescribedClassTemplate()) {
John McCall31f17ec2010-04-27 00:57:59 +00001624 ExpectedTemplateParams = Record->getDescribedClassTemplate()
Douglas Gregorc8406492011-05-10 18:27:06 +00001625 ->getTemplateParameters();
1626 NeedNonemptyTemplateHeader = true;
1627 }
1628 } else if (ClassTemplateSpecializationDecl *Spec
1629 = dyn_cast<ClassTemplateSpecializationDecl>(Record)) {
1630 // C++0x [temp.expl.spec]p4:
1631 // Members of an explicitly specialized class template are defined
1632 // in the same manner as members of normal classes, and not using
1633 // the template<> syntax.
1634 if (Spec->getSpecializationKind() != TSK_ExplicitSpecialization)
1635 NeedEmptyTemplateHeader = true;
1636 else
1637 break;
1638 } else if (Record->getTemplateSpecializationKind()) {
1639 if (Record->getTemplateSpecializationKind()
1640 != TSK_ExplicitSpecialization)
1641 NeedEmptyTemplateHeader = true;
1642 else
1643 break;
1644 }
1645 } else if (const TemplateSpecializationType *TST
1646 = T->getAs<TemplateSpecializationType>()) {
1647 if (TemplateDecl *Template = TST->getTemplateName().getAsTemplateDecl()) {
1648 ExpectedTemplateParams = Template->getTemplateParameters();
1649 NeedNonemptyTemplateHeader = true;
1650 }
1651 } else if (T->getAs<DependentTemplateSpecializationType>()) {
1652 // FIXME: We actually could/should check the template arguments here
1653 // against the corresponding template parameter list.
1654 NeedNonemptyTemplateHeader = false;
1655 }
1656
1657 if (NeedEmptyTemplateHeader) {
1658 // If we're on the last of the types, and we need a 'template<>' header
1659 // here, then it's an explicit specialization.
1660 if (TypeIdx == NumTypes - 1)
1661 IsExplicitSpecialization = true;
1662
1663 if (ParamIdx < NumParamLists) {
1664 if (ParamLists[ParamIdx]->size() > 0) {
1665 // The header has template parameters when it shouldn't. Complain.
1666 Diag(ParamLists[ParamIdx]->getTemplateLoc(),
1667 diag::err_template_param_list_matches_nontemplate)
1668 << T
1669 << SourceRange(ParamLists[ParamIdx]->getLAngleLoc(),
1670 ParamLists[ParamIdx]->getRAngleLoc())
1671 << getRangeOfTypeInNestedNameSpecifier(Context, T, SS);
1672 Invalid = true;
1673 return 0;
1674 }
1675
1676 // Consume this template header.
1677 ++ParamIdx;
1678 continue;
1679 }
1680
1681 if (!IsFriend) {
1682 // We don't have a template header, but we should.
1683 SourceLocation ExpectedTemplateLoc;
1684 if (NumParamLists > 0)
1685 ExpectedTemplateLoc = ParamLists[0]->getTemplateLoc();
1686 else
1687 ExpectedTemplateLoc = DeclStartLoc;
1688
1689 Diag(DeclLoc, diag::err_template_spec_needs_header)
1690 << getRangeOfTypeInNestedNameSpecifier(Context, T, SS)
1691 << FixItHint::CreateInsertion(ExpectedTemplateLoc, "template<> ");
1692 }
1693
1694 continue;
1695 }
1696
1697 if (NeedNonemptyTemplateHeader) {
1698 // In friend declarations we can have template-ids which don't
1699 // depend on the corresponding template parameter lists. But
1700 // assume that empty parameter lists are supposed to match this
1701 // template-id.
1702 if (IsFriend && T->isDependentType()) {
1703 if (ParamIdx < NumParamLists &&
1704 DependsOnTemplateParameters(T, ParamLists[ParamIdx]))
1705 ExpectedTemplateParams = 0;
1706 else
1707 continue;
Mike Stump1eb44332009-09-09 15:08:12 +00001708 }
Douglas Gregor5b6d70e2009-11-25 17:50:39 +00001709
Douglas Gregorc8406492011-05-10 18:27:06 +00001710 if (ParamIdx < NumParamLists) {
1711 // Check the template parameter list, if we can.
1712 if (ExpectedTemplateParams &&
1713 !TemplateParameterListsAreEqual(ParamLists[ParamIdx],
1714 ExpectedTemplateParams,
1715 true, TPL_TemplateMatch))
1716 Invalid = true;
1717
1718 if (!Invalid &&
1719 CheckTemplateParameterList(ParamLists[ParamIdx], 0,
1720 TPC_ClassTemplateMember))
1721 Invalid = true;
1722
1723 ++ParamIdx;
1724 continue;
1725 }
1726
1727 Diag(DeclLoc, diag::err_template_spec_needs_template_parameters)
1728 << T
1729 << getRangeOfTypeInNestedNameSpecifier(Context, T, SS);
1730 Invalid = true;
1731 continue;
1732 }
Douglas Gregorf59a56e2009-07-21 23:53:31 +00001733 }
Douglas Gregorc8406492011-05-10 18:27:06 +00001734
Douglas Gregorf59a56e2009-07-21 23:53:31 +00001735 // If there were at least as many template-ids as there were template
1736 // parameter lists, then there are no template parameter lists remaining for
1737 // the declaration itself.
John McCall4e2cbb22010-10-20 05:44:58 +00001738 if (ParamIdx >= NumParamLists)
Douglas Gregorf59a56e2009-07-21 23:53:31 +00001739 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001740
Douglas Gregorf59a56e2009-07-21 23:53:31 +00001741 // If there were too many template parameter lists, complain about that now.
Douglas Gregorc8406492011-05-10 18:27:06 +00001742 if (ParamIdx < NumParamLists - 1) {
1743 bool HasAnyExplicitSpecHeader = false;
1744 bool AllExplicitSpecHeaders = true;
1745 for (unsigned I = ParamIdx; I != NumParamLists - 1; ++I) {
1746 if (ParamLists[I]->size() == 0)
1747 HasAnyExplicitSpecHeader = true;
1748 else
1749 AllExplicitSpecHeaders = false;
Douglas Gregorf59a56e2009-07-21 23:53:31 +00001750 }
Douglas Gregorc8406492011-05-10 18:27:06 +00001751
1752 Diag(ParamLists[ParamIdx]->getTemplateLoc(),
1753 AllExplicitSpecHeaders? diag::warn_template_spec_extra_headers
1754 : diag::err_template_spec_extra_headers)
1755 << SourceRange(ParamLists[ParamIdx]->getTemplateLoc(),
1756 ParamLists[NumParamLists - 2]->getRAngleLoc());
1757
1758 // If there was a specialization somewhere, such that 'template<>' is
1759 // not required, and there were any 'template<>' headers, note where the
1760 // specialization occurred.
1761 if (ExplicitSpecLoc.isValid() && HasAnyExplicitSpecHeader)
1762 Diag(ExplicitSpecLoc,
1763 diag::note_explicit_template_spec_does_not_need_header)
1764 << NestedTypes.back();
1765
1766 // We have a template parameter list with no corresponding scope, which
1767 // means that the resulting template declaration can't be instantiated
1768 // properly (we'll end up with dependent nodes when we shouldn't).
1769 if (!AllExplicitSpecHeaders)
1770 Invalid = true;
Douglas Gregorf59a56e2009-07-21 23:53:31 +00001771 }
Mike Stump1eb44332009-09-09 15:08:12 +00001772
Douglas Gregorf59a56e2009-07-21 23:53:31 +00001773 // Return the last template parameter list, which corresponds to the
1774 // entity being declared.
1775 return ParamLists[NumParamLists - 1];
1776}
1777
Douglas Gregor6cd9d4a2011-03-04 21:37:14 +00001778void Sema::NoteAllFoundTemplates(TemplateName Name) {
1779 if (TemplateDecl *Template = Name.getAsTemplateDecl()) {
1780 Diag(Template->getLocation(), diag::note_template_declared_here)
1781 << (isa<FunctionTemplateDecl>(Template)? 0
1782 : isa<ClassTemplateDecl>(Template)? 1
Richard Smith3e4c6c42011-05-05 21:57:07 +00001783 : isa<TypeAliasTemplateDecl>(Template)? 2
1784 : 3)
Douglas Gregor6cd9d4a2011-03-04 21:37:14 +00001785 << Template->getDeclName();
1786 return;
1787 }
1788
1789 if (OverloadedTemplateStorage *OST = Name.getAsOverloadedTemplate()) {
1790 for (OverloadedTemplateStorage::iterator I = OST->begin(),
1791 IEnd = OST->end();
1792 I != IEnd; ++I)
1793 Diag((*I)->getLocation(), diag::note_template_declared_here)
1794 << 0 << (*I)->getDeclName();
1795
1796 return;
1797 }
1798}
1799
1800
Douglas Gregor7532dc62009-03-30 22:58:21 +00001801QualType Sema::CheckTemplateIdType(TemplateName Name,
1802 SourceLocation TemplateLoc,
Douglas Gregor67714232011-03-03 02:41:12 +00001803 TemplateArgumentListInfo &TemplateArgs) {
Richard Smith3e4c6c42011-05-05 21:57:07 +00001804 DependentTemplateName *DTN = Name.getAsDependentTemplateName();
1805 if (DTN && DTN->isIdentifier())
1806 // When building a template-id where the template-name is dependent,
1807 // assume the template is a type template. Either our assumption is
1808 // correct, or the code is ill-formed and will be diagnosed when the
1809 // dependent name is substituted.
1810 return Context.getDependentTemplateSpecializationType(ETK_None,
1811 DTN->getQualifier(),
1812 DTN->getIdentifier(),
1813 TemplateArgs);
1814
Douglas Gregor7532dc62009-03-30 22:58:21 +00001815 TemplateDecl *Template = Name.getAsTemplateDecl();
Douglas Gregor6cd9d4a2011-03-04 21:37:14 +00001816 if (!Template || isa<FunctionTemplateDecl>(Template)) {
1817 // We might have a substituted template template parameter pack. If so,
1818 // build a template specialization type for it.
1819 if (Name.getAsSubstTemplateTemplateParmPack())
1820 return Context.getTemplateSpecializationType(Name, TemplateArgs);
Richard Smith3e4c6c42011-05-05 21:57:07 +00001821
Douglas Gregor6cd9d4a2011-03-04 21:37:14 +00001822 Diag(TemplateLoc, diag::err_template_id_not_a_type)
1823 << Name;
1824 NoteAllFoundTemplates(Name);
1825 return QualType();
Douglas Gregorc45c2322009-03-31 00:43:58 +00001826 }
Douglas Gregor7532dc62009-03-30 22:58:21 +00001827
Douglas Gregor40808ce2009-03-09 23:48:35 +00001828 // Check that the template argument list is well-formed for this
1829 // template.
Douglas Gregor910f8002010-11-07 23:05:16 +00001830 llvm::SmallVector<TemplateArgument, 4> Converted;
John McCalld5532b62009-11-23 01:53:49 +00001831 if (CheckTemplateArgumentList(Template, TemplateLoc, TemplateArgs,
Douglas Gregor16134c62009-07-01 00:28:38 +00001832 false, Converted))
Douglas Gregor40808ce2009-03-09 23:48:35 +00001833 return QualType();
1834
Douglas Gregor910f8002010-11-07 23:05:16 +00001835 assert((Converted.size() == Template->getTemplateParameters()->size()) &&
Douglas Gregor40808ce2009-03-09 23:48:35 +00001836 "Converted template argument list is too short!");
1837
1838 QualType CanonType;
1839
Richard Smith3e4c6c42011-05-05 21:57:07 +00001840 if (TypeAliasTemplateDecl *AliasTemplate
1841 = dyn_cast<TypeAliasTemplateDecl>(Template)) {
1842 // Find the canonical type for this type alias template specialization.
1843 TypeAliasDecl *Pattern = AliasTemplate->getTemplatedDecl();
1844 if (Pattern->isInvalidDecl())
1845 return QualType();
1846
1847 TemplateArgumentList TemplateArgs(TemplateArgumentList::OnStack,
1848 Converted.data(), Converted.size());
1849
1850 // Only substitute for the innermost template argument list.
1851 MultiLevelTemplateArgumentList TemplateArgLists;
1852 TemplateArgLists.addOuterTemplateArguments(&TemplateArgs);
1853
1854 InstantiatingTemplate Inst(*this, TemplateLoc, Template);
1855 CanonType = SubstType(Pattern->getUnderlyingType(),
1856 TemplateArgLists, AliasTemplate->getLocation(),
1857 AliasTemplate->getDeclName());
1858 if (CanonType.isNull())
1859 return QualType();
1860 } else if (Name.isDependent() ||
1861 TemplateSpecializationType::anyDependentTemplateArguments(
1862 TemplateArgs)) {
Douglas Gregor40808ce2009-03-09 23:48:35 +00001863 // This class template specialization is a dependent
1864 // type. Therefore, its canonical type is another class template
1865 // specialization type that contains all of the converted
1866 // arguments in canonical form. This ensures that, e.g., A<T> and
1867 // A<T, T> have identical types when A is declared as:
1868 //
1869 // template<typename T, typename U = T> struct A;
Douglas Gregor25a3ef72009-05-07 06:41:52 +00001870 TemplateName CanonName = Context.getCanonicalTemplateName(Name);
Mike Stump1eb44332009-09-09 15:08:12 +00001871 CanonType = Context.getTemplateSpecializationType(CanonName,
Douglas Gregor910f8002010-11-07 23:05:16 +00001872 Converted.data(),
1873 Converted.size());
Mike Stump1eb44332009-09-09 15:08:12 +00001874
Douglas Gregor1275ae02009-07-28 23:00:59 +00001875 // FIXME: CanonType is not actually the canonical type, and unfortunately
John McCall833ca992009-10-29 08:12:44 +00001876 // it is a TemplateSpecializationType that we will never use again.
Douglas Gregor1275ae02009-07-28 23:00:59 +00001877 // In the future, we need to teach getTemplateSpecializationType to only
1878 // build the canonical type and return that to us.
1879 CanonType = Context.getCanonicalType(CanonType);
John McCall31f17ec2010-04-27 00:57:59 +00001880
1881 // This might work out to be a current instantiation, in which
1882 // case the canonical type needs to be the InjectedClassNameType.
1883 //
1884 // TODO: in theory this could be a simple hashtable lookup; most
1885 // changes to CurContext don't change the set of current
1886 // instantiations.
1887 if (isa<ClassTemplateDecl>(Template)) {
1888 for (DeclContext *Ctx = CurContext; Ctx; Ctx = Ctx->getLookupParent()) {
1889 // If we get out to a namespace, we're done.
1890 if (Ctx->isFileContext()) break;
1891
1892 // If this isn't a record, keep looking.
1893 CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(Ctx);
1894 if (!Record) continue;
1895
1896 // Look for one of the two cases with InjectedClassNameTypes
1897 // and check whether it's the same template.
1898 if (!isa<ClassTemplatePartialSpecializationDecl>(Record) &&
1899 !Record->getDescribedClassTemplate())
1900 continue;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001901
John McCall31f17ec2010-04-27 00:57:59 +00001902 // Fetch the injected class name type and check whether its
1903 // injected type is equal to the type we just built.
1904 QualType ICNT = Context.getTypeDeclType(Record);
1905 QualType Injected = cast<InjectedClassNameType>(ICNT)
1906 ->getInjectedSpecializationType();
1907
1908 if (CanonType != Injected->getCanonicalTypeInternal())
1909 continue;
1910
1911 // If so, the canonical type of this TST is the injected
1912 // class name type of the record we just found.
1913 assert(ICNT.isCanonical());
1914 CanonType = ICNT;
John McCall31f17ec2010-04-27 00:57:59 +00001915 break;
1916 }
1917 }
Mike Stump1eb44332009-09-09 15:08:12 +00001918 } else if (ClassTemplateDecl *ClassTemplate
Douglas Gregor7532dc62009-03-30 22:58:21 +00001919 = dyn_cast<ClassTemplateDecl>(Template)) {
Douglas Gregor40808ce2009-03-09 23:48:35 +00001920 // Find the class template specialization declaration that
1921 // corresponds to these arguments.
Douglas Gregor40808ce2009-03-09 23:48:35 +00001922 void *InsertPos = 0;
1923 ClassTemplateSpecializationDecl *Decl
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001924 = ClassTemplate->findSpecialization(Converted.data(), Converted.size(),
Douglas Gregor910f8002010-11-07 23:05:16 +00001925 InsertPos);
Douglas Gregor40808ce2009-03-09 23:48:35 +00001926 if (!Decl) {
1927 // This is the first time we have referenced this class template
1928 // specialization. Create the canonical declaration and add it to
1929 // the set of specializations.
Mike Stump1eb44332009-09-09 15:08:12 +00001930 Decl = ClassTemplateSpecializationDecl::Create(Context,
Douglas Gregor13c85772010-05-06 00:28:52 +00001931 ClassTemplate->getTemplatedDecl()->getTagKind(),
1932 ClassTemplate->getDeclContext(),
1933 ClassTemplate->getLocation(),
Abramo Bagnaraba877ad2011-03-09 14:09:51 +00001934 ClassTemplate->getLocation(),
Douglas Gregor910f8002010-11-07 23:05:16 +00001935 ClassTemplate,
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001936 Converted.data(),
Douglas Gregor910f8002010-11-07 23:05:16 +00001937 Converted.size(), 0);
Argyrios Kyrtzidiscc0b1bc2010-07-20 13:59:28 +00001938 ClassTemplate->AddSpecialization(Decl, InsertPos);
Douglas Gregor40808ce2009-03-09 23:48:35 +00001939 Decl->setLexicalDeclContext(CurContext);
1940 }
1941
1942 CanonType = Context.getTypeDeclType(Decl);
John McCall3cb0ebd2010-03-10 03:28:59 +00001943 assert(isa<RecordType>(CanonType) &&
1944 "type of non-dependent specialization is not a RecordType");
Douglas Gregor40808ce2009-03-09 23:48:35 +00001945 }
Mike Stump1eb44332009-09-09 15:08:12 +00001946
Douglas Gregor40808ce2009-03-09 23:48:35 +00001947 // Build the fully-sugared type for this class template
1948 // specialization, which refers back to the class template
1949 // specialization we created or found.
John McCall71d74bc2010-06-13 09:25:03 +00001950 return Context.getTemplateSpecializationType(Name, TemplateArgs, CanonType);
Douglas Gregor40808ce2009-03-09 23:48:35 +00001951}
1952
John McCallf312b1e2010-08-26 23:41:50 +00001953TypeResult
Douglas Gregor059101f2011-03-02 00:47:37 +00001954Sema::ActOnTemplateIdType(CXXScopeSpec &SS,
1955 TemplateTy TemplateD, SourceLocation TemplateLoc,
Mike Stump1eb44332009-09-09 15:08:12 +00001956 SourceLocation LAngleLoc,
Douglas Gregor7532dc62009-03-30 22:58:21 +00001957 ASTTemplateArgsPtr TemplateArgsIn,
John McCall6b2becf2009-09-08 17:47:29 +00001958 SourceLocation RAngleLoc) {
Douglas Gregor059101f2011-03-02 00:47:37 +00001959 if (SS.isInvalid())
1960 return true;
1961
Douglas Gregor7532dc62009-03-30 22:58:21 +00001962 TemplateName Template = TemplateD.getAsVal<TemplateName>();
Douglas Gregor55f6b142009-02-09 18:46:07 +00001963
Douglas Gregor40808ce2009-03-09 23:48:35 +00001964 // Translate the parser's template argument list in our AST format.
John McCalld5532b62009-11-23 01:53:49 +00001965 TemplateArgumentListInfo TemplateArgs(LAngleLoc, RAngleLoc);
Douglas Gregor314b97f2009-11-10 19:49:08 +00001966 translateTemplateArguments(TemplateArgsIn, TemplateArgs);
Douglas Gregorc15cb382009-02-09 23:23:08 +00001967
Douglas Gregora88f09f2011-02-28 17:23:35 +00001968 if (DependentTemplateName *DTN = Template.getAsDependentTemplateName()) {
1969 QualType T = Context.getDependentTemplateSpecializationType(ETK_None,
1970 DTN->getQualifier(),
1971 DTN->getIdentifier(),
1972 TemplateArgs);
1973
1974 // Build type-source information.
1975 TypeLocBuilder TLB;
1976 DependentTemplateSpecializationTypeLoc SpecTL
1977 = TLB.push<DependentTemplateSpecializationTypeLoc>(T);
Douglas Gregor059101f2011-03-02 00:47:37 +00001978 SpecTL.setKeywordLoc(SourceLocation());
Douglas Gregora88f09f2011-02-28 17:23:35 +00001979 SpecTL.setNameLoc(TemplateLoc);
1980 SpecTL.setLAngleLoc(LAngleLoc);
1981 SpecTL.setRAngleLoc(RAngleLoc);
Douglas Gregor94fdffa2011-03-01 20:11:18 +00001982 SpecTL.setQualifierLoc(SS.getWithLocInContext(Context));
Douglas Gregora88f09f2011-02-28 17:23:35 +00001983 for (unsigned I = 0, N = SpecTL.getNumArgs(); I != N; ++I)
1984 SpecTL.setArgLocInfo(I, TemplateArgs[I].getLocInfo());
1985 return CreateParsedType(T, TLB.getTypeSourceInfo(Context, T));
1986 }
1987
John McCalld5532b62009-11-23 01:53:49 +00001988 QualType Result = CheckTemplateIdType(Template, TemplateLoc, TemplateArgs);
Douglas Gregor40808ce2009-03-09 23:48:35 +00001989 TemplateArgsIn.release();
Douglas Gregor31a19b62009-04-01 21:51:26 +00001990
1991 if (Result.isNull())
1992 return true;
1993
Douglas Gregor059101f2011-03-02 00:47:37 +00001994 // Build type-source information.
1995 TypeLocBuilder TLB;
1996 TemplateSpecializationTypeLoc SpecTL
1997 = TLB.push<TemplateSpecializationTypeLoc>(Result);
1998 SpecTL.setTemplateNameLoc(TemplateLoc);
1999 SpecTL.setLAngleLoc(LAngleLoc);
2000 SpecTL.setRAngleLoc(RAngleLoc);
2001 for (unsigned i = 0, e = SpecTL.getNumArgs(); i != e; ++i)
2002 SpecTL.setArgLocInfo(i, TemplateArgs[i].getLocInfo());
John McCall833ca992009-10-29 08:12:44 +00002003
Douglas Gregor059101f2011-03-02 00:47:37 +00002004 if (SS.isNotEmpty()) {
2005 // Create an elaborated-type-specifier containing the nested-name-specifier.
2006 Result = Context.getElaboratedType(ETK_None, SS.getScopeRep(), Result);
2007 ElaboratedTypeLoc ElabTL = TLB.push<ElaboratedTypeLoc>(Result);
2008 ElabTL.setKeywordLoc(SourceLocation());
2009 ElabTL.setQualifierLoc(SS.getWithLocInContext(Context));
2010 }
2011
2012 return CreateParsedType(Result, TLB.getTypeSourceInfo(Context, Result));
John McCall6b2becf2009-09-08 17:47:29 +00002013}
John McCallf1bbbb42009-09-04 01:14:41 +00002014
Douglas Gregor059101f2011-03-02 00:47:37 +00002015TypeResult Sema::ActOnTagTemplateIdType(TagUseKind TUK,
John McCallf312b1e2010-08-26 23:41:50 +00002016 TypeSpecifierType TagSpec,
Douglas Gregor059101f2011-03-02 00:47:37 +00002017 SourceLocation TagLoc,
2018 CXXScopeSpec &SS,
2019 TemplateTy TemplateD,
2020 SourceLocation TemplateLoc,
2021 SourceLocation LAngleLoc,
2022 ASTTemplateArgsPtr TemplateArgsIn,
2023 SourceLocation RAngleLoc) {
2024 TemplateName Template = TemplateD.getAsVal<TemplateName>();
2025
2026 // Translate the parser's template argument list in our AST format.
2027 TemplateArgumentListInfo TemplateArgs(LAngleLoc, RAngleLoc);
2028 translateTemplateArguments(TemplateArgsIn, TemplateArgs);
2029
2030 // Determine the tag kind
Abramo Bagnara465d41b2010-05-11 21:36:43 +00002031 TagTypeKind TagKind = TypeWithKeyword::getTagTypeKindForTypeSpec(TagSpec);
Douglas Gregor059101f2011-03-02 00:47:37 +00002032 ElaboratedTypeKeyword Keyword
2033 = TypeWithKeyword::getKeywordForTagTypeKind(TagKind);
Mike Stump1eb44332009-09-09 15:08:12 +00002034
Douglas Gregor059101f2011-03-02 00:47:37 +00002035 if (DependentTemplateName *DTN = Template.getAsDependentTemplateName()) {
2036 QualType T = Context.getDependentTemplateSpecializationType(Keyword,
2037 DTN->getQualifier(),
2038 DTN->getIdentifier(),
2039 TemplateArgs);
2040
2041 // Build type-source information.
2042 TypeLocBuilder TLB;
2043 DependentTemplateSpecializationTypeLoc SpecTL
2044 = TLB.push<DependentTemplateSpecializationTypeLoc>(T);
2045 SpecTL.setKeywordLoc(TagLoc);
2046 SpecTL.setNameLoc(TemplateLoc);
2047 SpecTL.setLAngleLoc(LAngleLoc);
2048 SpecTL.setRAngleLoc(RAngleLoc);
2049 SpecTL.setQualifierLoc(SS.getWithLocInContext(Context));
2050 for (unsigned I = 0, N = SpecTL.getNumArgs(); I != N; ++I)
2051 SpecTL.setArgLocInfo(I, TemplateArgs[I].getLocInfo());
2052 return CreateParsedType(T, TLB.getTypeSourceInfo(Context, T));
2053 }
Richard Smith3e4c6c42011-05-05 21:57:07 +00002054
2055 if (TypeAliasTemplateDecl *TAT =
2056 dyn_cast_or_null<TypeAliasTemplateDecl>(Template.getAsTemplateDecl())) {
2057 // C++0x [dcl.type.elab]p2:
2058 // If the identifier resolves to a typedef-name or the simple-template-id
2059 // resolves to an alias template specialization, the
2060 // elaborated-type-specifier is ill-formed.
2061 Diag(TemplateLoc, diag::err_tag_reference_non_tag) << 4;
2062 Diag(TAT->getLocation(), diag::note_declared_at);
2063 }
Douglas Gregor059101f2011-03-02 00:47:37 +00002064
2065 QualType Result = CheckTemplateIdType(Template, TemplateLoc, TemplateArgs);
2066 if (Result.isNull())
2067 return TypeResult();
2068
2069 // Check the tag kind
2070 if (const RecordType *RT = Result->getAs<RecordType>()) {
John McCall6b2becf2009-09-08 17:47:29 +00002071 RecordDecl *D = RT->getDecl();
Douglas Gregor059101f2011-03-02 00:47:37 +00002072
John McCall6b2becf2009-09-08 17:47:29 +00002073 IdentifierInfo *Id = D->getIdentifier();
2074 assert(Id && "templated class must have an identifier");
Douglas Gregor059101f2011-03-02 00:47:37 +00002075
John McCall6b2becf2009-09-08 17:47:29 +00002076 if (!isAcceptableTagRedeclaration(D, TagKind, TagLoc, *Id)) {
2077 Diag(TagLoc, diag::err_use_with_wrong_tag)
Douglas Gregor059101f2011-03-02 00:47:37 +00002078 << Result
Douglas Gregor849b2432010-03-31 17:46:05 +00002079 << FixItHint::CreateReplacement(SourceRange(TagLoc), D->getKindName());
John McCallc4e70192009-09-11 04:59:25 +00002080 Diag(D->getLocation(), diag::note_previous_use);
John McCallf1bbbb42009-09-04 01:14:41 +00002081 }
2082 }
Douglas Gregor059101f2011-03-02 00:47:37 +00002083
2084 // Provide source-location information for the template specialization.
2085 TypeLocBuilder TLB;
2086 TemplateSpecializationTypeLoc SpecTL
2087 = TLB.push<TemplateSpecializationTypeLoc>(Result);
2088 SpecTL.setTemplateNameLoc(TemplateLoc);
2089 SpecTL.setLAngleLoc(LAngleLoc);
2090 SpecTL.setRAngleLoc(RAngleLoc);
2091 for (unsigned i = 0, e = SpecTL.getNumArgs(); i != e; ++i)
2092 SpecTL.setArgLocInfo(i, TemplateArgs[i].getLocInfo());
John McCallf1bbbb42009-09-04 01:14:41 +00002093
Douglas Gregor059101f2011-03-02 00:47:37 +00002094 // Construct an elaborated type containing the nested-name-specifier (if any)
2095 // and keyword.
2096 Result = Context.getElaboratedType(Keyword, SS.getScopeRep(), Result);
2097 ElaboratedTypeLoc ElabTL = TLB.push<ElaboratedTypeLoc>(Result);
2098 ElabTL.setKeywordLoc(TagLoc);
2099 ElabTL.setQualifierLoc(SS.getWithLocInContext(Context));
2100 return CreateParsedType(Result, TLB.getTypeSourceInfo(Context, Result));
Douglas Gregor55f6b142009-02-09 18:46:07 +00002101}
2102
John McCall60d7b3a2010-08-24 06:29:42 +00002103ExprResult Sema::BuildTemplateIdExpr(const CXXScopeSpec &SS,
Douglas Gregor4c9be892011-02-28 20:01:57 +00002104 LookupResult &R,
2105 bool RequiresADL,
John McCalld5532b62009-11-23 01:53:49 +00002106 const TemplateArgumentListInfo &TemplateArgs) {
Douglas Gregoredce4dd2009-06-30 22:34:41 +00002107 // FIXME: Can we do any checking at this point? I guess we could check the
2108 // template arguments that we have against the template name, if the template
Mike Stump1eb44332009-09-09 15:08:12 +00002109 // name refers to a single template. That's not a terribly common case,
Douglas Gregoredce4dd2009-06-30 22:34:41 +00002110 // though.
Douglas Gregor1be8eec2011-02-19 21:32:49 +00002111 // foo<int> could identify a single function unambiguously
2112 // This approach does NOT work, since f<int>(1);
2113 // gets resolved prior to resorting to overload resolution
2114 // i.e., template<class T> void f(double);
2115 // vs template<class T, class U> void f(U);
John McCallf7a1a742009-11-24 19:00:30 +00002116
2117 // These should be filtered out by our callers.
2118 assert(!R.empty() && "empty lookup results when building templateid");
2119 assert(!R.isAmbiguous() && "ambiguous lookup when building templateid");
2120
John McCallc373d482010-01-27 01:50:18 +00002121 // We don't want lookup warnings at this point.
2122 R.suppressDiagnostics();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002123
John McCallf7a1a742009-11-24 19:00:30 +00002124 UnresolvedLookupExpr *ULE
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00002125 = UnresolvedLookupExpr::Create(Context, R.getNamingClass(),
Douglas Gregor4c9be892011-02-28 20:01:57 +00002126 SS.getWithLocInContext(Context),
Abramo Bagnara25777432010-08-11 22:01:17 +00002127 R.getLookupNameInfo(),
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002128 RequiresADL, TemplateArgs,
Douglas Gregor5a84dec2010-05-23 18:57:34 +00002129 R.begin(), R.end());
John McCallf7a1a742009-11-24 19:00:30 +00002130
2131 return Owned(ULE);
Douglas Gregoredce4dd2009-06-30 22:34:41 +00002132}
2133
John McCallf7a1a742009-11-24 19:00:30 +00002134// We actually only call this from template instantiation.
John McCall60d7b3a2010-08-24 06:29:42 +00002135ExprResult
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00002136Sema::BuildQualifiedTemplateIdExpr(CXXScopeSpec &SS,
Abramo Bagnara25777432010-08-11 22:01:17 +00002137 const DeclarationNameInfo &NameInfo,
John McCallf7a1a742009-11-24 19:00:30 +00002138 const TemplateArgumentListInfo &TemplateArgs) {
2139 DeclContext *DC;
2140 if (!(DC = computeDeclContext(SS, false)) ||
2141 DC->isDependentContext() ||
John McCall77bb1aa2010-05-01 00:40:08 +00002142 RequireCompleteDeclContext(SS, DC))
Abramo Bagnara25777432010-08-11 22:01:17 +00002143 return BuildDependentDeclRefExpr(SS, NameInfo, &TemplateArgs);
Mike Stump1eb44332009-09-09 15:08:12 +00002144
Douglas Gregor1fd6d442010-05-21 23:18:07 +00002145 bool MemberOfUnknownSpecialization;
Abramo Bagnara25777432010-08-11 22:01:17 +00002146 LookupResult R(*this, NameInfo, LookupOrdinaryName);
Douglas Gregor1fd6d442010-05-21 23:18:07 +00002147 LookupTemplateName(R, (Scope*) 0, SS, QualType(), /*Entering*/ false,
2148 MemberOfUnknownSpecialization);
Mike Stump1eb44332009-09-09 15:08:12 +00002149
John McCallf7a1a742009-11-24 19:00:30 +00002150 if (R.isAmbiguous())
2151 return ExprError();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002152
John McCallf7a1a742009-11-24 19:00:30 +00002153 if (R.empty()) {
Abramo Bagnara25777432010-08-11 22:01:17 +00002154 Diag(NameInfo.getLoc(), diag::err_template_kw_refers_to_non_template)
2155 << NameInfo.getName() << SS.getRange();
John McCallf7a1a742009-11-24 19:00:30 +00002156 return ExprError();
2157 }
2158
2159 if (ClassTemplateDecl *Temp = R.getAsSingle<ClassTemplateDecl>()) {
Abramo Bagnara25777432010-08-11 22:01:17 +00002160 Diag(NameInfo.getLoc(), diag::err_template_kw_refers_to_class_template)
2161 << (NestedNameSpecifier*) SS.getScopeRep()
2162 << NameInfo.getName() << SS.getRange();
John McCallf7a1a742009-11-24 19:00:30 +00002163 Diag(Temp->getLocation(), diag::note_referenced_class_template);
2164 return ExprError();
2165 }
2166
2167 return BuildTemplateIdExpr(SS, R, /* ADL */ false, TemplateArgs);
Douglas Gregoredce4dd2009-06-30 22:34:41 +00002168}
2169
Douglas Gregorc45c2322009-03-31 00:43:58 +00002170/// \brief Form a dependent template name.
2171///
2172/// This action forms a dependent template name given the template
2173/// name and its (presumably dependent) scope specifier. For
2174/// example, given "MetaFun::template apply", the scope specifier \p
2175/// SS will be "MetaFun::", \p TemplateKWLoc contains the location
2176/// of the "template" keyword, and "apply" is the \p Name.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002177TemplateNameKind Sema::ActOnDependentTemplateName(Scope *S,
Douglas Gregord6ab2322010-06-16 23:00:59 +00002178 SourceLocation TemplateKWLoc,
2179 CXXScopeSpec &SS,
2180 UnqualifiedId &Name,
John McCallb3d87482010-08-24 05:47:05 +00002181 ParsedType ObjectType,
Douglas Gregord6ab2322010-06-16 23:00:59 +00002182 bool EnteringContext,
2183 TemplateTy &Result) {
Douglas Gregor1a15dae2010-06-16 22:31:08 +00002184 if (TemplateKWLoc.isValid() && S && !S->getTemplateParamParent() &&
2185 !getLangOptions().CPlusPlus0x)
2186 Diag(TemplateKWLoc, diag::ext_template_outside_of_template)
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002187 << FixItHint::CreateRemoval(TemplateKWLoc);
2188
Douglas Gregor0707bc52010-01-19 16:01:07 +00002189 DeclContext *LookupCtx = 0;
2190 if (SS.isSet())
2191 LookupCtx = computeDeclContext(SS, EnteringContext);
2192 if (!LookupCtx && ObjectType)
John McCallb3d87482010-08-24 05:47:05 +00002193 LookupCtx = computeDeclContext(ObjectType.get());
Douglas Gregor0707bc52010-01-19 16:01:07 +00002194 if (LookupCtx) {
Douglas Gregorc45c2322009-03-31 00:43:58 +00002195 // C++0x [temp.names]p5:
2196 // If a name prefixed by the keyword template is not the name of
2197 // a template, the program is ill-formed. [Note: the keyword
2198 // template may not be applied to non-template members of class
2199 // templates. -end note ] [ Note: as is the case with the
2200 // typename prefix, the template prefix is allowed in cases
2201 // where it is not strictly necessary; i.e., when the
2202 // nested-name-specifier or the expression on the left of the ->
2203 // or . is not dependent on a template-parameter, or the use
2204 // does not appear in the scope of a template. -end note]
2205 //
2206 // Note: C++03 was more strict here, because it banned the use of
2207 // the "template" keyword prior to a template-name that was not a
2208 // dependent name. C++ DR468 relaxed this requirement (the
2209 // "template" keyword is now permitted). We follow the C++0x
Douglas Gregor732281d2010-06-14 22:07:54 +00002210 // rules, even in C++03 mode with a warning, retroactively applying the DR.
Douglas Gregor1fd6d442010-05-21 23:18:07 +00002211 bool MemberOfUnknownSpecialization;
Abramo Bagnara7c153532010-08-06 12:11:11 +00002212 TemplateNameKind TNK = isTemplateName(0, SS, TemplateKWLoc.isValid(), Name,
2213 ObjectType, EnteringContext, Result,
Douglas Gregor1fd6d442010-05-21 23:18:07 +00002214 MemberOfUnknownSpecialization);
Douglas Gregor0707bc52010-01-19 16:01:07 +00002215 if (TNK == TNK_Non_template && LookupCtx->isDependentContext() &&
2216 isa<CXXRecordDecl>(LookupCtx) &&
Douglas Gregord078bd22011-03-11 23:27:41 +00002217 (!cast<CXXRecordDecl>(LookupCtx)->hasDefinition() ||
2218 cast<CXXRecordDecl>(LookupCtx)->hasAnyDependentBases())) {
Douglas Gregord6ab2322010-06-16 23:00:59 +00002219 // This is a dependent template. Handle it below.
Douglas Gregor9edad9b2010-01-14 17:47:39 +00002220 } else if (TNK == TNK_Non_template) {
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002221 Diag(Name.getSourceRange().getBegin(),
Douglas Gregor014e88d2009-11-03 23:16:33 +00002222 diag::err_template_kw_refers_to_non_template)
Abramo Bagnara25777432010-08-11 22:01:17 +00002223 << GetNameFromUnqualifiedId(Name).getName()
Douglas Gregor0278e122010-05-05 05:58:24 +00002224 << Name.getSourceRange()
2225 << TemplateKWLoc;
Douglas Gregord6ab2322010-06-16 23:00:59 +00002226 return TNK_Non_template;
Douglas Gregor9edad9b2010-01-14 17:47:39 +00002227 } else {
2228 // We found something; return it.
Douglas Gregord6ab2322010-06-16 23:00:59 +00002229 return TNK;
Douglas Gregorc45c2322009-03-31 00:43:58 +00002230 }
Douglas Gregorc45c2322009-03-31 00:43:58 +00002231 }
2232
Mike Stump1eb44332009-09-09 15:08:12 +00002233 NestedNameSpecifier *Qualifier
Douglas Gregor2dd078a2009-09-02 22:59:36 +00002234 = static_cast<NestedNameSpecifier *>(SS.getScopeRep());
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002235
Douglas Gregor014e88d2009-11-03 23:16:33 +00002236 switch (Name.getKind()) {
2237 case UnqualifiedId::IK_Identifier:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002238 Result = TemplateTy::make(Context.getDependentTemplateName(Qualifier,
Douglas Gregord6ab2322010-06-16 23:00:59 +00002239 Name.Identifier));
2240 return TNK_Dependent_template_name;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002241
Douglas Gregorca1bdd72009-11-04 00:56:37 +00002242 case UnqualifiedId::IK_OperatorFunctionId:
Douglas Gregord6ab2322010-06-16 23:00:59 +00002243 Result = TemplateTy::make(Context.getDependentTemplateName(Qualifier,
Douglas Gregorca1bdd72009-11-04 00:56:37 +00002244 Name.OperatorFunctionId.Operator));
Douglas Gregord6ab2322010-06-16 23:00:59 +00002245 return TNK_Dependent_template_name;
Sean Hunte6252d12009-11-28 08:58:14 +00002246
2247 case UnqualifiedId::IK_LiteralOperatorId:
2248 assert(false && "We don't support these; Parse shouldn't have allowed propagation");
2249
Douglas Gregor014e88d2009-11-03 23:16:33 +00002250 default:
2251 break;
2252 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002253
2254 Diag(Name.getSourceRange().getBegin(),
Douglas Gregor014e88d2009-11-03 23:16:33 +00002255 diag::err_template_kw_refers_to_non_template)
Abramo Bagnara25777432010-08-11 22:01:17 +00002256 << GetNameFromUnqualifiedId(Name).getName()
Douglas Gregor0278e122010-05-05 05:58:24 +00002257 << Name.getSourceRange()
2258 << TemplateKWLoc;
Douglas Gregord6ab2322010-06-16 23:00:59 +00002259 return TNK_Non_template;
Douglas Gregorc45c2322009-03-31 00:43:58 +00002260}
2261
Mike Stump1eb44332009-09-09 15:08:12 +00002262bool Sema::CheckTemplateTypeArgument(TemplateTypeParmDecl *Param,
John McCall833ca992009-10-29 08:12:44 +00002263 const TemplateArgumentLoc &AL,
Douglas Gregor910f8002010-11-07 23:05:16 +00002264 llvm::SmallVectorImpl<TemplateArgument> &Converted) {
John McCall833ca992009-10-29 08:12:44 +00002265 const TemplateArgument &Arg = AL.getArgument();
2266
Anders Carlsson436b1562009-06-13 00:33:33 +00002267 // Check template type parameter.
Jeffrey Yasskindb88d8a2010-04-08 00:03:06 +00002268 switch(Arg.getKind()) {
2269 case TemplateArgument::Type:
Anders Carlsson436b1562009-06-13 00:33:33 +00002270 // C++ [temp.arg.type]p1:
2271 // A template-argument for a template-parameter which is a
2272 // type shall be a type-id.
Jeffrey Yasskindb88d8a2010-04-08 00:03:06 +00002273 break;
2274 case TemplateArgument::Template: {
2275 // We have a template type parameter but the template argument
2276 // is a template without any arguments.
2277 SourceRange SR = AL.getSourceRange();
2278 TemplateName Name = Arg.getAsTemplate();
2279 Diag(SR.getBegin(), diag::err_template_missing_args)
2280 << Name << SR;
2281 if (TemplateDecl *Decl = Name.getAsTemplateDecl())
2282 Diag(Decl->getLocation(), diag::note_template_decl_here);
Anders Carlsson436b1562009-06-13 00:33:33 +00002283
Jeffrey Yasskindb88d8a2010-04-08 00:03:06 +00002284 return true;
2285 }
2286 default: {
Anders Carlsson436b1562009-06-13 00:33:33 +00002287 // We have a template type parameter but the template argument
2288 // is not a type.
John McCall828bff22009-10-29 18:45:58 +00002289 SourceRange SR = AL.getSourceRange();
2290 Diag(SR.getBegin(), diag::err_template_arg_must_be_type) << SR;
Anders Carlsson436b1562009-06-13 00:33:33 +00002291 Diag(Param->getLocation(), diag::note_template_param_here);
Mike Stump1eb44332009-09-09 15:08:12 +00002292
Anders Carlsson436b1562009-06-13 00:33:33 +00002293 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00002294 }
Jeffrey Yasskindb88d8a2010-04-08 00:03:06 +00002295 }
Anders Carlsson436b1562009-06-13 00:33:33 +00002296
John McCalla93c9342009-12-07 02:54:59 +00002297 if (CheckTemplateArgument(Param, AL.getTypeSourceInfo()))
Anders Carlsson436b1562009-06-13 00:33:33 +00002298 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00002299
Anders Carlsson436b1562009-06-13 00:33:33 +00002300 // Add the converted template type argument.
Douglas Gregor910f8002010-11-07 23:05:16 +00002301 Converted.push_back(
John McCall833ca992009-10-29 08:12:44 +00002302 TemplateArgument(Context.getCanonicalType(Arg.getAsType())));
Anders Carlsson436b1562009-06-13 00:33:33 +00002303 return false;
2304}
2305
Douglas Gregor0f8716b2009-11-09 19:17:50 +00002306/// \brief Substitute template arguments into the default template argument for
2307/// the given template type parameter.
2308///
2309/// \param SemaRef the semantic analysis object for which we are performing
2310/// the substitution.
2311///
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002312/// \param Template the template that we are synthesizing template arguments
Douglas Gregor0f8716b2009-11-09 19:17:50 +00002313/// for.
2314///
2315/// \param TemplateLoc the location of the template name that started the
2316/// template-id we are checking.
2317///
2318/// \param RAngleLoc the location of the right angle bracket ('>') that
2319/// terminates the template-id.
2320///
2321/// \param Param the template template parameter whose default we are
2322/// substituting into.
2323///
2324/// \param Converted the list of template arguments provided for template
2325/// parameters that precede \p Param in the template parameter list.
Douglas Gregor0f8716b2009-11-09 19:17:50 +00002326/// \returns the substituted template argument, or NULL if an error occurred.
John McCalla93c9342009-12-07 02:54:59 +00002327static TypeSourceInfo *
Douglas Gregor0f8716b2009-11-09 19:17:50 +00002328SubstDefaultTemplateArgument(Sema &SemaRef,
2329 TemplateDecl *Template,
2330 SourceLocation TemplateLoc,
2331 SourceLocation RAngleLoc,
2332 TemplateTypeParmDecl *Param,
Douglas Gregor910f8002010-11-07 23:05:16 +00002333 llvm::SmallVectorImpl<TemplateArgument> &Converted) {
John McCalla93c9342009-12-07 02:54:59 +00002334 TypeSourceInfo *ArgType = Param->getDefaultArgumentInfo();
Douglas Gregor0f8716b2009-11-09 19:17:50 +00002335
2336 // If the argument type is dependent, instantiate it now based
2337 // on the previously-computed template arguments.
2338 if (ArgType->getType()->isDependentType()) {
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002339 TemplateArgumentList TemplateArgs(TemplateArgumentList::OnStack,
Douglas Gregor910f8002010-11-07 23:05:16 +00002340 Converted.data(), Converted.size());
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002341
Douglas Gregor0f8716b2009-11-09 19:17:50 +00002342 MultiLevelTemplateArgumentList AllTemplateArgs
2343 = SemaRef.getTemplateInstantiationArgs(Template, &TemplateArgs);
2344
2345 Sema::InstantiatingTemplate Inst(SemaRef, TemplateLoc,
Douglas Gregor910f8002010-11-07 23:05:16 +00002346 Template, Converted.data(),
2347 Converted.size(),
Douglas Gregor0f8716b2009-11-09 19:17:50 +00002348 SourceRange(TemplateLoc, RAngleLoc));
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002349
Douglas Gregor0f8716b2009-11-09 19:17:50 +00002350 ArgType = SemaRef.SubstType(ArgType, AllTemplateArgs,
2351 Param->getDefaultArgumentLoc(),
2352 Param->getDeclName());
2353 }
2354
2355 return ArgType;
2356}
2357
2358/// \brief Substitute template arguments into the default template argument for
2359/// the given non-type template parameter.
2360///
2361/// \param SemaRef the semantic analysis object for which we are performing
2362/// the substitution.
2363///
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002364/// \param Template the template that we are synthesizing template arguments
Douglas Gregor0f8716b2009-11-09 19:17:50 +00002365/// for.
2366///
2367/// \param TemplateLoc the location of the template name that started the
2368/// template-id we are checking.
2369///
2370/// \param RAngleLoc the location of the right angle bracket ('>') that
2371/// terminates the template-id.
2372///
Douglas Gregor788cd062009-11-11 01:00:40 +00002373/// \param Param the non-type template parameter whose default we are
Douglas Gregor0f8716b2009-11-09 19:17:50 +00002374/// substituting into.
2375///
2376/// \param Converted the list of template arguments provided for template
2377/// parameters that precede \p Param in the template parameter list.
2378///
2379/// \returns the substituted template argument, or NULL if an error occurred.
John McCall60d7b3a2010-08-24 06:29:42 +00002380static ExprResult
Douglas Gregor0f8716b2009-11-09 19:17:50 +00002381SubstDefaultTemplateArgument(Sema &SemaRef,
2382 TemplateDecl *Template,
2383 SourceLocation TemplateLoc,
2384 SourceLocation RAngleLoc,
2385 NonTypeTemplateParmDecl *Param,
Douglas Gregor910f8002010-11-07 23:05:16 +00002386 llvm::SmallVectorImpl<TemplateArgument> &Converted) {
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002387 TemplateArgumentList TemplateArgs(TemplateArgumentList::OnStack,
Douglas Gregor910f8002010-11-07 23:05:16 +00002388 Converted.data(), Converted.size());
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002389
Douglas Gregor0f8716b2009-11-09 19:17:50 +00002390 MultiLevelTemplateArgumentList AllTemplateArgs
2391 = SemaRef.getTemplateInstantiationArgs(Template, &TemplateArgs);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002392
Douglas Gregor0f8716b2009-11-09 19:17:50 +00002393 Sema::InstantiatingTemplate Inst(SemaRef, TemplateLoc,
Douglas Gregor910f8002010-11-07 23:05:16 +00002394 Template, Converted.data(),
2395 Converted.size(),
Douglas Gregor0f8716b2009-11-09 19:17:50 +00002396 SourceRange(TemplateLoc, RAngleLoc));
2397
2398 return SemaRef.SubstExpr(Param->getDefaultArgument(), AllTemplateArgs);
2399}
2400
Douglas Gregor788cd062009-11-11 01:00:40 +00002401/// \brief Substitute template arguments into the default template argument for
2402/// the given template template parameter.
2403///
2404/// \param SemaRef the semantic analysis object for which we are performing
2405/// the substitution.
2406///
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002407/// \param Template the template that we are synthesizing template arguments
Douglas Gregor788cd062009-11-11 01:00:40 +00002408/// for.
2409///
2410/// \param TemplateLoc the location of the template name that started the
2411/// template-id we are checking.
2412///
2413/// \param RAngleLoc the location of the right angle bracket ('>') that
2414/// terminates the template-id.
2415///
2416/// \param Param the template template parameter whose default we are
2417/// substituting into.
2418///
2419/// \param Converted the list of template arguments provided for template
2420/// parameters that precede \p Param in the template parameter list.
2421///
Douglas Gregor1d752d72011-03-02 18:46:51 +00002422/// \param QualifierLoc Will be set to the nested-name-specifier (with
2423/// source-location information) that precedes the template name.
Douglas Gregorb6744ef2011-03-02 17:09:35 +00002424///
Douglas Gregor788cd062009-11-11 01:00:40 +00002425/// \returns the substituted template argument, or NULL if an error occurred.
2426static TemplateName
2427SubstDefaultTemplateArgument(Sema &SemaRef,
2428 TemplateDecl *Template,
2429 SourceLocation TemplateLoc,
2430 SourceLocation RAngleLoc,
2431 TemplateTemplateParmDecl *Param,
Douglas Gregorb6744ef2011-03-02 17:09:35 +00002432 llvm::SmallVectorImpl<TemplateArgument> &Converted,
2433 NestedNameSpecifierLoc &QualifierLoc) {
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002434 TemplateArgumentList TemplateArgs(TemplateArgumentList::OnStack,
Douglas Gregor910f8002010-11-07 23:05:16 +00002435 Converted.data(), Converted.size());
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002436
Douglas Gregor788cd062009-11-11 01:00:40 +00002437 MultiLevelTemplateArgumentList AllTemplateArgs
2438 = SemaRef.getTemplateInstantiationArgs(Template, &TemplateArgs);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002439
Douglas Gregor788cd062009-11-11 01:00:40 +00002440 Sema::InstantiatingTemplate Inst(SemaRef, TemplateLoc,
Douglas Gregor910f8002010-11-07 23:05:16 +00002441 Template, Converted.data(),
2442 Converted.size(),
Douglas Gregor788cd062009-11-11 01:00:40 +00002443 SourceRange(TemplateLoc, RAngleLoc));
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002444
Douglas Gregorb6744ef2011-03-02 17:09:35 +00002445 // Substitute into the nested-name-specifier first,
Douglas Gregor1d752d72011-03-02 18:46:51 +00002446 QualifierLoc = Param->getDefaultArgument().getTemplateQualifierLoc();
Douglas Gregorb6744ef2011-03-02 17:09:35 +00002447 if (QualifierLoc) {
2448 QualifierLoc = SemaRef.SubstNestedNameSpecifierLoc(QualifierLoc,
2449 AllTemplateArgs);
2450 if (!QualifierLoc)
2451 return TemplateName();
2452 }
2453
Douglas Gregor1d752d72011-03-02 18:46:51 +00002454 return SemaRef.SubstTemplateName(QualifierLoc,
Douglas Gregor788cd062009-11-11 01:00:40 +00002455 Param->getDefaultArgument().getArgument().getAsTemplate(),
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002456 Param->getDefaultArgument().getTemplateNameLoc(),
Douglas Gregor788cd062009-11-11 01:00:40 +00002457 AllTemplateArgs);
2458}
2459
Douglas Gregor51ffb0c2009-11-25 18:55:14 +00002460/// \brief If the given template parameter has a default template
2461/// argument, substitute into that default template argument and
2462/// return the corresponding template argument.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002463TemplateArgumentLoc
Douglas Gregor51ffb0c2009-11-25 18:55:14 +00002464Sema::SubstDefaultTemplateArgumentIfAvailable(TemplateDecl *Template,
2465 SourceLocation TemplateLoc,
2466 SourceLocation RAngleLoc,
2467 Decl *Param,
Douglas Gregor910f8002010-11-07 23:05:16 +00002468 llvm::SmallVectorImpl<TemplateArgument> &Converted) {
2469 if (TemplateTypeParmDecl *TypeParm = dyn_cast<TemplateTypeParmDecl>(Param)) {
Douglas Gregor51ffb0c2009-11-25 18:55:14 +00002470 if (!TypeParm->hasDefaultArgument())
2471 return TemplateArgumentLoc();
2472
John McCalla93c9342009-12-07 02:54:59 +00002473 TypeSourceInfo *DI = SubstDefaultTemplateArgument(*this, Template,
Douglas Gregor51ffb0c2009-11-25 18:55:14 +00002474 TemplateLoc,
2475 RAngleLoc,
2476 TypeParm,
2477 Converted);
2478 if (DI)
2479 return TemplateArgumentLoc(TemplateArgument(DI->getType()), DI);
2480
2481 return TemplateArgumentLoc();
2482 }
2483
2484 if (NonTypeTemplateParmDecl *NonTypeParm
2485 = dyn_cast<NonTypeTemplateParmDecl>(Param)) {
2486 if (!NonTypeParm->hasDefaultArgument())
2487 return TemplateArgumentLoc();
2488
John McCall60d7b3a2010-08-24 06:29:42 +00002489 ExprResult Arg = SubstDefaultTemplateArgument(*this, Template,
Douglas Gregorb6744ef2011-03-02 17:09:35 +00002490 TemplateLoc,
2491 RAngleLoc,
2492 NonTypeParm,
2493 Converted);
Douglas Gregor51ffb0c2009-11-25 18:55:14 +00002494 if (Arg.isInvalid())
2495 return TemplateArgumentLoc();
2496
2497 Expr *ArgE = Arg.takeAs<Expr>();
2498 return TemplateArgumentLoc(TemplateArgument(ArgE), ArgE);
2499 }
2500
2501 TemplateTemplateParmDecl *TempTempParm
2502 = cast<TemplateTemplateParmDecl>(Param);
2503 if (!TempTempParm->hasDefaultArgument())
2504 return TemplateArgumentLoc();
2505
Douglas Gregorb6744ef2011-03-02 17:09:35 +00002506
Douglas Gregor1d752d72011-03-02 18:46:51 +00002507 NestedNameSpecifierLoc QualifierLoc;
Douglas Gregor51ffb0c2009-11-25 18:55:14 +00002508 TemplateName TName = SubstDefaultTemplateArgument(*this, Template,
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002509 TemplateLoc,
Douglas Gregor51ffb0c2009-11-25 18:55:14 +00002510 RAngleLoc,
2511 TempTempParm,
Douglas Gregorb6744ef2011-03-02 17:09:35 +00002512 Converted,
2513 QualifierLoc);
Douglas Gregor51ffb0c2009-11-25 18:55:14 +00002514 if (TName.isNull())
2515 return TemplateArgumentLoc();
2516
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002517 return TemplateArgumentLoc(TemplateArgument(TName),
Douglas Gregorb6744ef2011-03-02 17:09:35 +00002518 TempTempParm->getDefaultArgument().getTemplateQualifierLoc(),
Douglas Gregor51ffb0c2009-11-25 18:55:14 +00002519 TempTempParm->getDefaultArgument().getTemplateNameLoc());
2520}
2521
Douglas Gregore7526412009-11-11 19:31:23 +00002522/// \brief Check that the given template argument corresponds to the given
2523/// template parameter.
Douglas Gregor6952f1e2011-01-19 20:10:05 +00002524///
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002525/// \param Param The template parameter against which the argument will be
Douglas Gregor6952f1e2011-01-19 20:10:05 +00002526/// checked.
2527///
2528/// \param Arg The template argument.
2529///
2530/// \param Template The template in which the template argument resides.
2531///
2532/// \param TemplateLoc The location of the template name for the template
2533/// whose argument list we're matching.
2534///
2535/// \param RAngleLoc The location of the right angle bracket ('>') that closes
2536/// the template argument list.
2537///
2538/// \param ArgumentPackIndex The index into the argument pack where this
2539/// argument will be placed. Only valid if the parameter is a parameter pack.
2540///
2541/// \param Converted The checked, converted argument will be added to the
2542/// end of this small vector.
2543///
2544/// \param CTAK Describes how we arrived at this particular template argument:
2545/// explicitly written, deduced, etc.
2546///
2547/// \returns true on error, false otherwise.
Douglas Gregore7526412009-11-11 19:31:23 +00002548bool Sema::CheckTemplateArgument(NamedDecl *Param,
2549 const TemplateArgumentLoc &Arg,
Douglas Gregor54c53cc2011-01-04 23:35:54 +00002550 NamedDecl *Template,
Douglas Gregore7526412009-11-11 19:31:23 +00002551 SourceLocation TemplateLoc,
Douglas Gregore7526412009-11-11 19:31:23 +00002552 SourceLocation RAngleLoc,
Douglas Gregor6952f1e2011-01-19 20:10:05 +00002553 unsigned ArgumentPackIndex,
Douglas Gregor910f8002010-11-07 23:05:16 +00002554 llvm::SmallVectorImpl<TemplateArgument> &Converted,
Douglas Gregor02024a92010-03-28 02:42:43 +00002555 CheckTemplateArgumentKind CTAK) {
Douglas Gregord9e15302009-11-11 19:41:09 +00002556 // Check template type parameters.
2557 if (TemplateTypeParmDecl *TTP = dyn_cast<TemplateTypeParmDecl>(Param))
Douglas Gregore7526412009-11-11 19:31:23 +00002558 return CheckTemplateTypeArgument(TTP, Arg, Converted);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002559
Douglas Gregord9e15302009-11-11 19:41:09 +00002560 // Check non-type template parameters.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002561 if (NonTypeTemplateParmDecl *NTTP =dyn_cast<NonTypeTemplateParmDecl>(Param)) {
Douglas Gregore7526412009-11-11 19:31:23 +00002562 // Do substitution on the type of the non-type template parameter
Peter Collingbourne9f6f6a12010-12-10 17:08:53 +00002563 // with the template arguments we've seen thus far. But if the
2564 // template has a dependent context then we cannot substitute yet.
Douglas Gregore7526412009-11-11 19:31:23 +00002565 QualType NTTPType = NTTP->getType();
Douglas Gregor6952f1e2011-01-19 20:10:05 +00002566 if (NTTP->isParameterPack() && NTTP->isExpandedParameterPack())
2567 NTTPType = NTTP->getExpansionType(ArgumentPackIndex);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002568
Peter Collingbourne9f6f6a12010-12-10 17:08:53 +00002569 if (NTTPType->isDependentType() &&
2570 !isa<TemplateTemplateParmDecl>(Template) &&
2571 !Template->getDeclContext()->isDependentContext()) {
Douglas Gregore7526412009-11-11 19:31:23 +00002572 // Do substitution on the type of the non-type template parameter.
2573 InstantiatingTemplate Inst(*this, TemplateLoc, Template,
Douglas Gregor910f8002010-11-07 23:05:16 +00002574 NTTP, Converted.data(), Converted.size(),
Douglas Gregore7526412009-11-11 19:31:23 +00002575 SourceRange(TemplateLoc, RAngleLoc));
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002576
2577 TemplateArgumentList TemplateArgs(TemplateArgumentList::OnStack,
Douglas Gregor910f8002010-11-07 23:05:16 +00002578 Converted.data(), Converted.size());
Douglas Gregore7526412009-11-11 19:31:23 +00002579 NTTPType = SubstType(NTTPType,
2580 MultiLevelTemplateArgumentList(TemplateArgs),
2581 NTTP->getLocation(),
2582 NTTP->getDeclName());
2583 // If that worked, check the non-type template parameter type
2584 // for validity.
2585 if (!NTTPType.isNull())
2586 NTTPType = CheckNonTypeTemplateParameterType(NTTPType,
2587 NTTP->getLocation());
2588 if (NTTPType.isNull())
2589 return true;
2590 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002591
Douglas Gregore7526412009-11-11 19:31:23 +00002592 switch (Arg.getArgument().getKind()) {
2593 case TemplateArgument::Null:
2594 assert(false && "Should never see a NULL template argument here");
2595 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002596
Douglas Gregore7526412009-11-11 19:31:23 +00002597 case TemplateArgument::Expression: {
Douglas Gregore7526412009-11-11 19:31:23 +00002598 TemplateArgument Result;
John Wiegley429bb272011-04-08 18:41:53 +00002599 ExprResult Res =
2600 CheckTemplateArgument(NTTP, NTTPType, Arg.getArgument().getAsExpr(),
2601 Result, CTAK);
2602 if (Res.isInvalid())
Douglas Gregore7526412009-11-11 19:31:23 +00002603 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002604
Douglas Gregor910f8002010-11-07 23:05:16 +00002605 Converted.push_back(Result);
Douglas Gregore7526412009-11-11 19:31:23 +00002606 break;
2607 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002608
Douglas Gregore7526412009-11-11 19:31:23 +00002609 case TemplateArgument::Declaration:
2610 case TemplateArgument::Integral:
2611 // We've already checked this template argument, so just copy
2612 // it to the list of converted arguments.
Douglas Gregor910f8002010-11-07 23:05:16 +00002613 Converted.push_back(Arg.getArgument());
Douglas Gregore7526412009-11-11 19:31:23 +00002614 break;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002615
Douglas Gregore7526412009-11-11 19:31:23 +00002616 case TemplateArgument::Template:
Douglas Gregora7fc9012011-01-05 18:58:31 +00002617 case TemplateArgument::TemplateExpansion:
Douglas Gregore7526412009-11-11 19:31:23 +00002618 // We were given a template template argument. It may not be ill-formed;
2619 // see below.
2620 if (DependentTemplateName *DTN
Douglas Gregora7fc9012011-01-05 18:58:31 +00002621 = Arg.getArgument().getAsTemplateOrTemplatePattern()
2622 .getAsDependentTemplateName()) {
Douglas Gregore7526412009-11-11 19:31:23 +00002623 // We have a template argument such as \c T::template X, which we
2624 // parsed as a template template argument. However, since we now
2625 // know that we need a non-type template argument, convert this
Abramo Bagnara25777432010-08-11 22:01:17 +00002626 // template name into an expression.
2627
2628 DeclarationNameInfo NameInfo(DTN->getIdentifier(),
2629 Arg.getTemplateNameLoc());
2630
Douglas Gregor00cf3cc2011-02-25 20:49:16 +00002631 CXXScopeSpec SS;
Douglas Gregorb6744ef2011-03-02 17:09:35 +00002632 SS.Adopt(Arg.getTemplateQualifierLoc());
John Wiegley429bb272011-04-08 18:41:53 +00002633 ExprResult E = Owned(DependentScopeDeclRefExpr::Create(Context,
Douglas Gregor00cf3cc2011-02-25 20:49:16 +00002634 SS.getWithLocInContext(Context),
John Wiegley429bb272011-04-08 18:41:53 +00002635 NameInfo));
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002636
Douglas Gregora7fc9012011-01-05 18:58:31 +00002637 // If we parsed the template argument as a pack expansion, create a
2638 // pack expansion expression.
2639 if (Arg.getArgument().getKind() == TemplateArgument::TemplateExpansion){
John Wiegley429bb272011-04-08 18:41:53 +00002640 E = ActOnPackExpansion(E.take(), Arg.getTemplateEllipsisLoc());
2641 if (E.isInvalid())
Douglas Gregora7fc9012011-01-05 18:58:31 +00002642 return true;
Douglas Gregora7fc9012011-01-05 18:58:31 +00002643 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002644
Douglas Gregore7526412009-11-11 19:31:23 +00002645 TemplateArgument Result;
John Wiegley429bb272011-04-08 18:41:53 +00002646 E = CheckTemplateArgument(NTTP, NTTPType, E.take(), Result);
2647 if (E.isInvalid())
Douglas Gregore7526412009-11-11 19:31:23 +00002648 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002649
Douglas Gregor910f8002010-11-07 23:05:16 +00002650 Converted.push_back(Result);
Douglas Gregore7526412009-11-11 19:31:23 +00002651 break;
2652 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002653
Douglas Gregore7526412009-11-11 19:31:23 +00002654 // We have a template argument that actually does refer to a class
Richard Smith3e4c6c42011-05-05 21:57:07 +00002655 // template, alias template, or template template parameter, and
Douglas Gregore7526412009-11-11 19:31:23 +00002656 // therefore cannot be a non-type template argument.
2657 Diag(Arg.getLocation(), diag::err_template_arg_must_be_expr)
2658 << Arg.getSourceRange();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002659
Douglas Gregore7526412009-11-11 19:31:23 +00002660 Diag(Param->getLocation(), diag::note_template_param_here);
2661 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002662
Douglas Gregore7526412009-11-11 19:31:23 +00002663 case TemplateArgument::Type: {
2664 // We have a non-type template parameter but the template
2665 // argument is a type.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002666
Douglas Gregore7526412009-11-11 19:31:23 +00002667 // C++ [temp.arg]p2:
2668 // In a template-argument, an ambiguity between a type-id and
2669 // an expression is resolved to a type-id, regardless of the
2670 // form of the corresponding template-parameter.
2671 //
2672 // We warn specifically about this case, since it can be rather
2673 // confusing for users.
2674 QualType T = Arg.getArgument().getAsType();
2675 SourceRange SR = Arg.getSourceRange();
2676 if (T->isFunctionType())
2677 Diag(SR.getBegin(), diag::err_template_arg_nontype_ambig) << SR << T;
2678 else
2679 Diag(SR.getBegin(), diag::err_template_arg_must_be_expr) << SR;
2680 Diag(Param->getLocation(), diag::note_template_param_here);
2681 return true;
2682 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002683
Douglas Gregore7526412009-11-11 19:31:23 +00002684 case TemplateArgument::Pack:
Jeffrey Yasskin9f61aa92009-12-12 05:05:38 +00002685 llvm_unreachable("Caller must expand template argument packs");
Douglas Gregore7526412009-11-11 19:31:23 +00002686 break;
2687 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002688
Douglas Gregore7526412009-11-11 19:31:23 +00002689 return false;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002690 }
2691
2692
Douglas Gregore7526412009-11-11 19:31:23 +00002693 // Check template template parameters.
2694 TemplateTemplateParmDecl *TempParm = cast<TemplateTemplateParmDecl>(Param);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002695
Douglas Gregore7526412009-11-11 19:31:23 +00002696 // Substitute into the template parameter list of the template
2697 // template parameter, since previously-supplied template arguments
2698 // may appear within the template template parameter.
2699 {
2700 // Set up a template instantiation context.
2701 LocalInstantiationScope Scope(*this);
2702 InstantiatingTemplate Inst(*this, TemplateLoc, Template,
Douglas Gregor910f8002010-11-07 23:05:16 +00002703 TempParm, Converted.data(), Converted.size(),
Douglas Gregore7526412009-11-11 19:31:23 +00002704 SourceRange(TemplateLoc, RAngleLoc));
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002705
2706 TemplateArgumentList TemplateArgs(TemplateArgumentList::OnStack,
Douglas Gregor910f8002010-11-07 23:05:16 +00002707 Converted.data(), Converted.size());
Douglas Gregore7526412009-11-11 19:31:23 +00002708 TempParm = cast_or_null<TemplateTemplateParmDecl>(
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002709 SubstDecl(TempParm, CurContext,
Douglas Gregore7526412009-11-11 19:31:23 +00002710 MultiLevelTemplateArgumentList(TemplateArgs)));
2711 if (!TempParm)
2712 return true;
Douglas Gregore7526412009-11-11 19:31:23 +00002713 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002714
Douglas Gregore7526412009-11-11 19:31:23 +00002715 switch (Arg.getArgument().getKind()) {
2716 case TemplateArgument::Null:
2717 assert(false && "Should never see a NULL template argument here");
2718 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002719
Douglas Gregore7526412009-11-11 19:31:23 +00002720 case TemplateArgument::Template:
Douglas Gregora7fc9012011-01-05 18:58:31 +00002721 case TemplateArgument::TemplateExpansion:
Douglas Gregore7526412009-11-11 19:31:23 +00002722 if (CheckTemplateArgument(TempParm, Arg))
2723 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002724
Douglas Gregor910f8002010-11-07 23:05:16 +00002725 Converted.push_back(Arg.getArgument());
Douglas Gregore7526412009-11-11 19:31:23 +00002726 break;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002727
Douglas Gregore7526412009-11-11 19:31:23 +00002728 case TemplateArgument::Expression:
2729 case TemplateArgument::Type:
2730 // We have a template template parameter but the template
2731 // argument does not refer to a template.
Richard Smith3e4c6c42011-05-05 21:57:07 +00002732 Diag(Arg.getLocation(), diag::err_template_arg_must_be_template)
2733 << getLangOptions().CPlusPlus0x;
Douglas Gregore7526412009-11-11 19:31:23 +00002734 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002735
Douglas Gregore7526412009-11-11 19:31:23 +00002736 case TemplateArgument::Declaration:
Jeffrey Yasskin9f61aa92009-12-12 05:05:38 +00002737 llvm_unreachable(
Douglas Gregore7526412009-11-11 19:31:23 +00002738 "Declaration argument with template template parameter");
2739 break;
2740 case TemplateArgument::Integral:
Jeffrey Yasskin9f61aa92009-12-12 05:05:38 +00002741 llvm_unreachable(
Douglas Gregore7526412009-11-11 19:31:23 +00002742 "Integral argument with template template parameter");
2743 break;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002744
Douglas Gregore7526412009-11-11 19:31:23 +00002745 case TemplateArgument::Pack:
Jeffrey Yasskin9f61aa92009-12-12 05:05:38 +00002746 llvm_unreachable("Caller must expand template argument packs");
Douglas Gregore7526412009-11-11 19:31:23 +00002747 break;
2748 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002749
Douglas Gregore7526412009-11-11 19:31:23 +00002750 return false;
2751}
2752
Douglas Gregorc15cb382009-02-09 23:23:08 +00002753/// \brief Check that the given template argument list is well-formed
2754/// for specializing the given template.
2755bool Sema::CheckTemplateArgumentList(TemplateDecl *Template,
2756 SourceLocation TemplateLoc,
Douglas Gregor67714232011-03-03 02:41:12 +00002757 TemplateArgumentListInfo &TemplateArgs,
Douglas Gregor16134c62009-07-01 00:28:38 +00002758 bool PartialTemplateArgs,
Douglas Gregor910f8002010-11-07 23:05:16 +00002759 llvm::SmallVectorImpl<TemplateArgument> &Converted) {
Douglas Gregorc15cb382009-02-09 23:23:08 +00002760 TemplateParameterList *Params = Template->getTemplateParameters();
2761 unsigned NumParams = Params->size();
John McCalld5532b62009-11-23 01:53:49 +00002762 unsigned NumArgs = TemplateArgs.size();
Douglas Gregorc15cb382009-02-09 23:23:08 +00002763 bool Invalid = false;
2764
John McCalld5532b62009-11-23 01:53:49 +00002765 SourceLocation RAngleLoc = TemplateArgs.getRAngleLoc();
2766
Mike Stump1eb44332009-09-09 15:08:12 +00002767 bool HasParameterPack =
Anders Carlsson0ceffb52009-06-13 02:08:00 +00002768 NumParams > 0 && Params->getParam(NumParams - 1)->isTemplateParameterPack();
Mike Stump1eb44332009-09-09 15:08:12 +00002769
Anders Carlsson0ceffb52009-06-13 02:08:00 +00002770 if ((NumArgs > NumParams && !HasParameterPack) ||
Douglas Gregor16134c62009-07-01 00:28:38 +00002771 (NumArgs < Params->getMinRequiredArguments() &&
2772 !PartialTemplateArgs)) {
Douglas Gregorc15cb382009-02-09 23:23:08 +00002773 // FIXME: point at either the first arg beyond what we can handle,
2774 // or the '>', depending on whether we have too many or too few
2775 // arguments.
2776 SourceRange Range;
2777 if (NumArgs > NumParams)
Douglas Gregor40808ce2009-03-09 23:48:35 +00002778 Range = SourceRange(TemplateArgs[NumParams].getLocation(), RAngleLoc);
Douglas Gregorc15cb382009-02-09 23:23:08 +00002779 Diag(TemplateLoc, diag::err_template_arg_list_different_arity)
2780 << (NumArgs > NumParams)
2781 << (isa<ClassTemplateDecl>(Template)? 0 :
2782 isa<FunctionTemplateDecl>(Template)? 1 :
2783 isa<TemplateTemplateParmDecl>(Template)? 2 : 3)
2784 << Template << Range;
Douglas Gregor62cb18d2009-02-11 18:16:40 +00002785 Diag(Template->getLocation(), diag::note_template_decl_here)
2786 << Params->getSourceRange();
Douglas Gregorc15cb382009-02-09 23:23:08 +00002787 Invalid = true;
2788 }
Mike Stump1eb44332009-09-09 15:08:12 +00002789
2790 // C++ [temp.arg]p1:
Douglas Gregorc15cb382009-02-09 23:23:08 +00002791 // [...] The type and form of each template-argument specified in
2792 // a template-id shall match the type and form specified for the
2793 // corresponding parameter declared by the template in its
2794 // template-parameter-list.
Douglas Gregor67714232011-03-03 02:41:12 +00002795 bool isTemplateTemplateParameter = isa<TemplateTemplateParmDecl>(Template);
Douglas Gregor14be16b2010-12-20 16:57:52 +00002796 llvm::SmallVector<TemplateArgument, 2> ArgumentPack;
2797 TemplateParameterList::iterator Param = Params->begin(),
2798 ParamEnd = Params->end();
Douglas Gregorc15cb382009-02-09 23:23:08 +00002799 unsigned ArgIdx = 0;
Douglas Gregor8dde14e2011-01-24 16:14:37 +00002800 LocalInstantiationScope InstScope(*this, true);
Douglas Gregor14be16b2010-12-20 16:57:52 +00002801 while (Param != ParamEnd) {
Douglas Gregor16134c62009-07-01 00:28:38 +00002802 if (ArgIdx > NumArgs && PartialTemplateArgs)
2803 break;
Mike Stump1eb44332009-09-09 15:08:12 +00002804
Douglas Gregorf35f8282009-11-11 21:54:23 +00002805 if (ArgIdx < NumArgs) {
Douglas Gregor6952f1e2011-01-19 20:10:05 +00002806 // If we have an expanded parameter pack, make sure we don't have too
2807 // many arguments.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002808 if (NonTypeTemplateParmDecl *NTTP
Douglas Gregor6952f1e2011-01-19 20:10:05 +00002809 = dyn_cast<NonTypeTemplateParmDecl>(*Param)) {
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002810 if (NTTP->isExpandedParameterPack() &&
Douglas Gregor6952f1e2011-01-19 20:10:05 +00002811 ArgumentPack.size() >= NTTP->getNumExpansionTypes()) {
2812 Diag(TemplateLoc, diag::err_template_arg_list_different_arity)
2813 << true
2814 << (isa<ClassTemplateDecl>(Template)? 0 :
2815 isa<FunctionTemplateDecl>(Template)? 1 :
2816 isa<TemplateTemplateParmDecl>(Template)? 2 : 3)
2817 << Template;
2818 Diag(Template->getLocation(), diag::note_template_decl_here)
2819 << Params->getSourceRange();
2820 return true;
2821 }
2822 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002823
Douglas Gregorf35f8282009-11-11 21:54:23 +00002824 // Check the template argument we were given.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002825 if (CheckTemplateArgument(*Param, TemplateArgs[ArgIdx], Template,
2826 TemplateLoc, RAngleLoc,
Douglas Gregor6952f1e2011-01-19 20:10:05 +00002827 ArgumentPack.size(), Converted))
Douglas Gregorf35f8282009-11-11 21:54:23 +00002828 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002829
Douglas Gregor14be16b2010-12-20 16:57:52 +00002830 if ((*Param)->isTemplateParameterPack()) {
2831 // The template parameter was a template parameter pack, so take the
2832 // deduced argument and place it on the argument pack. Note that we
2833 // stay on the same template parameter so that we can deduce more
2834 // arguments.
2835 ArgumentPack.push_back(Converted.back());
2836 Converted.pop_back();
2837 } else {
2838 // Move to the next template parameter.
2839 ++Param;
2840 }
2841 ++ArgIdx;
Douglas Gregorf35f8282009-11-11 21:54:23 +00002842 continue;
Douglas Gregor3e00bad2009-02-17 01:05:43 +00002843 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002844
2845 // If we have a template parameter pack with no more corresponding
Douglas Gregor14be16b2010-12-20 16:57:52 +00002846 // arguments, just break out now and we'll fill in the argument pack below.
2847 if ((*Param)->isTemplateParameterPack())
2848 break;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002849
Douglas Gregorf35f8282009-11-11 21:54:23 +00002850 // We have a default template argument that we will use.
2851 TemplateArgumentLoc Arg;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002852
Douglas Gregorf35f8282009-11-11 21:54:23 +00002853 // Retrieve the default template argument from the template
2854 // parameter. For each kind of template parameter, we substitute the
2855 // template arguments provided thus far and any "outer" template arguments
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002856 // (when the template parameter was part of a nested template) into
Douglas Gregorf35f8282009-11-11 21:54:23 +00002857 // the default argument.
2858 if (TemplateTypeParmDecl *TTP = dyn_cast<TemplateTypeParmDecl>(*Param)) {
2859 if (!TTP->hasDefaultArgument()) {
2860 assert((Invalid || PartialTemplateArgs) && "Missing default argument");
2861 break;
2862 }
2863
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002864 TypeSourceInfo *ArgType = SubstDefaultTemplateArgument(*this,
Douglas Gregorf35f8282009-11-11 21:54:23 +00002865 Template,
2866 TemplateLoc,
2867 RAngleLoc,
2868 TTP,
2869 Converted);
2870 if (!ArgType)
2871 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002872
Douglas Gregorf35f8282009-11-11 21:54:23 +00002873 Arg = TemplateArgumentLoc(TemplateArgument(ArgType->getType()),
2874 ArgType);
2875 } else if (NonTypeTemplateParmDecl *NTTP
2876 = dyn_cast<NonTypeTemplateParmDecl>(*Param)) {
2877 if (!NTTP->hasDefaultArgument()) {
2878 assert((Invalid || PartialTemplateArgs) && "Missing default argument");
2879 break;
2880 }
2881
John McCall60d7b3a2010-08-24 06:29:42 +00002882 ExprResult E = SubstDefaultTemplateArgument(*this, Template,
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002883 TemplateLoc,
2884 RAngleLoc,
2885 NTTP,
Douglas Gregorf35f8282009-11-11 21:54:23 +00002886 Converted);
2887 if (E.isInvalid())
2888 return true;
2889
2890 Expr *Ex = E.takeAs<Expr>();
2891 Arg = TemplateArgumentLoc(TemplateArgument(Ex), Ex);
2892 } else {
2893 TemplateTemplateParmDecl *TempParm
2894 = cast<TemplateTemplateParmDecl>(*Param);
2895
2896 if (!TempParm->hasDefaultArgument()) {
2897 assert((Invalid || PartialTemplateArgs) && "Missing default argument");
2898 break;
2899 }
2900
Douglas Gregor1d752d72011-03-02 18:46:51 +00002901 NestedNameSpecifierLoc QualifierLoc;
Douglas Gregorf35f8282009-11-11 21:54:23 +00002902 TemplateName Name = SubstDefaultTemplateArgument(*this, Template,
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002903 TemplateLoc,
2904 RAngleLoc,
Douglas Gregorf35f8282009-11-11 21:54:23 +00002905 TempParm,
Douglas Gregorb6744ef2011-03-02 17:09:35 +00002906 Converted,
2907 QualifierLoc);
Douglas Gregorf35f8282009-11-11 21:54:23 +00002908 if (Name.isNull())
2909 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002910
Douglas Gregorb6744ef2011-03-02 17:09:35 +00002911 Arg = TemplateArgumentLoc(TemplateArgument(Name), QualifierLoc,
2912 TempParm->getDefaultArgument().getTemplateNameLoc());
Douglas Gregorf35f8282009-11-11 21:54:23 +00002913 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002914
Douglas Gregorf35f8282009-11-11 21:54:23 +00002915 // Introduce an instantiation record that describes where we are using
2916 // the default template argument.
2917 InstantiatingTemplate Instantiating(*this, RAngleLoc, Template, *Param,
Douglas Gregor910f8002010-11-07 23:05:16 +00002918 Converted.data(), Converted.size(),
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002919 SourceRange(TemplateLoc, RAngleLoc));
2920
Douglas Gregorf35f8282009-11-11 21:54:23 +00002921 // Check the default template argument.
Douglas Gregord9e15302009-11-11 19:41:09 +00002922 if (CheckTemplateArgument(*Param, Arg, Template, TemplateLoc,
Douglas Gregor6952f1e2011-01-19 20:10:05 +00002923 RAngleLoc, 0, Converted))
Douglas Gregore7526412009-11-11 19:31:23 +00002924 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002925
Douglas Gregor67714232011-03-03 02:41:12 +00002926 // Core issue 150 (assumed resolution): if this is a template template
2927 // parameter, keep track of the default template arguments from the
2928 // template definition.
2929 if (isTemplateTemplateParameter)
2930 TemplateArgs.addArgument(Arg);
2931
Douglas Gregor14be16b2010-12-20 16:57:52 +00002932 // Move to the next template parameter and argument.
2933 ++Param;
2934 ++ArgIdx;
Douglas Gregorc15cb382009-02-09 23:23:08 +00002935 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002936
Douglas Gregor14be16b2010-12-20 16:57:52 +00002937 // Form argument packs for each of the parameter packs remaining.
2938 while (Param != ParamEnd) {
Douglas Gregord3731192011-01-10 07:32:04 +00002939 // If we're checking a partial list of template arguments, don't fill
2940 // in arguments for non-template parameter packs.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002941
2942 if ((*Param)->isTemplateParameterPack()) {
Douglas Gregord3731192011-01-10 07:32:04 +00002943 if (PartialTemplateArgs && ArgumentPack.empty()) {
2944 Converted.push_back(TemplateArgument());
Douglas Gregor203e6a32011-01-11 23:09:57 +00002945 } else if (ArgumentPack.empty())
Douglas Gregor14be16b2010-12-20 16:57:52 +00002946 Converted.push_back(TemplateArgument(0, 0));
Douglas Gregor203e6a32011-01-11 23:09:57 +00002947 else {
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002948 Converted.push_back(TemplateArgument::CreatePackCopy(Context,
2949 ArgumentPack.data(),
Douglas Gregor203e6a32011-01-11 23:09:57 +00002950 ArgumentPack.size()));
Douglas Gregor14be16b2010-12-20 16:57:52 +00002951 ArgumentPack.clear();
2952 }
2953 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002954
Douglas Gregor14be16b2010-12-20 16:57:52 +00002955 ++Param;
2956 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002957
Douglas Gregorc15cb382009-02-09 23:23:08 +00002958 return Invalid;
2959}
2960
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00002961namespace {
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002962 class UnnamedLocalNoLinkageFinder
2963 : public TypeVisitor<UnnamedLocalNoLinkageFinder, bool>
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00002964 {
2965 Sema &S;
2966 SourceRange SR;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002967
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00002968 typedef TypeVisitor<UnnamedLocalNoLinkageFinder, bool> inherited;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002969
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00002970 public:
2971 UnnamedLocalNoLinkageFinder(Sema &S, SourceRange SR) : S(S), SR(SR) { }
2972
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002973 bool Visit(QualType T) {
2974 return inherited::Visit(T.getTypePtr());
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00002975 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002976
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00002977#define TYPE(Class, Parent) \
2978 bool Visit##Class##Type(const Class##Type *);
2979#define ABSTRACT_TYPE(Class, Parent) \
2980 bool Visit##Class##Type(const Class##Type *) { return false; }
2981#define NON_CANONICAL_TYPE(Class, Parent) \
2982 bool Visit##Class##Type(const Class##Type *) { return false; }
2983#include "clang/AST/TypeNodes.def"
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002984
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00002985 bool VisitTagDecl(const TagDecl *Tag);
2986 bool VisitNestedNameSpecifier(NestedNameSpecifier *NNS);
2987 };
2988}
2989
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002990bool UnnamedLocalNoLinkageFinder::VisitBuiltinType(const BuiltinType*) {
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00002991 return false;
2992}
2993
2994bool UnnamedLocalNoLinkageFinder::VisitComplexType(const ComplexType* T) {
2995 return Visit(T->getElementType());
2996}
2997
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002998bool UnnamedLocalNoLinkageFinder::VisitPointerType(const PointerType* T) {
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00002999 return Visit(T->getPointeeType());
3000}
3001
3002bool UnnamedLocalNoLinkageFinder::VisitBlockPointerType(
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003003 const BlockPointerType* T) {
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003004 return Visit(T->getPointeeType());
3005}
3006
3007bool UnnamedLocalNoLinkageFinder::VisitLValueReferenceType(
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003008 const LValueReferenceType* T) {
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003009 return Visit(T->getPointeeType());
3010}
3011
3012bool UnnamedLocalNoLinkageFinder::VisitRValueReferenceType(
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003013 const RValueReferenceType* T) {
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003014 return Visit(T->getPointeeType());
3015}
3016
3017bool UnnamedLocalNoLinkageFinder::VisitMemberPointerType(
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003018 const MemberPointerType* T) {
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003019 return Visit(T->getPointeeType()) || Visit(QualType(T->getClass(), 0));
3020}
3021
3022bool UnnamedLocalNoLinkageFinder::VisitConstantArrayType(
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003023 const ConstantArrayType* T) {
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003024 return Visit(T->getElementType());
3025}
3026
3027bool UnnamedLocalNoLinkageFinder::VisitIncompleteArrayType(
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003028 const IncompleteArrayType* T) {
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003029 return Visit(T->getElementType());
3030}
3031
3032bool UnnamedLocalNoLinkageFinder::VisitVariableArrayType(
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003033 const VariableArrayType* T) {
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003034 return Visit(T->getElementType());
3035}
3036
3037bool UnnamedLocalNoLinkageFinder::VisitDependentSizedArrayType(
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003038 const DependentSizedArrayType* T) {
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003039 return Visit(T->getElementType());
3040}
3041
3042bool UnnamedLocalNoLinkageFinder::VisitDependentSizedExtVectorType(
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003043 const DependentSizedExtVectorType* T) {
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003044 return Visit(T->getElementType());
3045}
3046
3047bool UnnamedLocalNoLinkageFinder::VisitVectorType(const VectorType* T) {
3048 return Visit(T->getElementType());
3049}
3050
3051bool UnnamedLocalNoLinkageFinder::VisitExtVectorType(const ExtVectorType* T) {
3052 return Visit(T->getElementType());
3053}
3054
3055bool UnnamedLocalNoLinkageFinder::VisitFunctionProtoType(
3056 const FunctionProtoType* T) {
3057 for (FunctionProtoType::arg_type_iterator A = T->arg_type_begin(),
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003058 AEnd = T->arg_type_end();
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003059 A != AEnd; ++A) {
3060 if (Visit(*A))
3061 return true;
3062 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003063
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003064 return Visit(T->getResultType());
3065}
3066
3067bool UnnamedLocalNoLinkageFinder::VisitFunctionNoProtoType(
3068 const FunctionNoProtoType* T) {
3069 return Visit(T->getResultType());
3070}
3071
3072bool UnnamedLocalNoLinkageFinder::VisitUnresolvedUsingType(
3073 const UnresolvedUsingType*) {
3074 return false;
3075}
3076
3077bool UnnamedLocalNoLinkageFinder::VisitTypeOfExprType(const TypeOfExprType*) {
3078 return false;
3079}
3080
3081bool UnnamedLocalNoLinkageFinder::VisitTypeOfType(const TypeOfType* T) {
3082 return Visit(T->getUnderlyingType());
3083}
3084
3085bool UnnamedLocalNoLinkageFinder::VisitDecltypeType(const DecltypeType*) {
3086 return false;
3087}
3088
Richard Smith34b41d92011-02-20 03:19:35 +00003089bool UnnamedLocalNoLinkageFinder::VisitAutoType(const AutoType *T) {
3090 return Visit(T->getDeducedType());
3091}
3092
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003093bool UnnamedLocalNoLinkageFinder::VisitRecordType(const RecordType* T) {
3094 return VisitTagDecl(T->getDecl());
3095}
3096
3097bool UnnamedLocalNoLinkageFinder::VisitEnumType(const EnumType* T) {
3098 return VisitTagDecl(T->getDecl());
3099}
3100
3101bool UnnamedLocalNoLinkageFinder::VisitTemplateTypeParmType(
3102 const TemplateTypeParmType*) {
3103 return false;
3104}
3105
Douglas Gregorc3069d62011-01-14 02:55:32 +00003106bool UnnamedLocalNoLinkageFinder::VisitSubstTemplateTypeParmPackType(
3107 const SubstTemplateTypeParmPackType *) {
3108 return false;
3109}
3110
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003111bool UnnamedLocalNoLinkageFinder::VisitTemplateSpecializationType(
3112 const TemplateSpecializationType*) {
3113 return false;
3114}
3115
3116bool UnnamedLocalNoLinkageFinder::VisitInjectedClassNameType(
3117 const InjectedClassNameType* T) {
3118 return VisitTagDecl(T->getDecl());
3119}
3120
3121bool UnnamedLocalNoLinkageFinder::VisitDependentNameType(
3122 const DependentNameType* T) {
3123 return VisitNestedNameSpecifier(T->getQualifier());
3124}
3125
3126bool UnnamedLocalNoLinkageFinder::VisitDependentTemplateSpecializationType(
3127 const DependentTemplateSpecializationType* T) {
3128 return VisitNestedNameSpecifier(T->getQualifier());
3129}
3130
Douglas Gregor7536dd52010-12-20 02:24:11 +00003131bool UnnamedLocalNoLinkageFinder::VisitPackExpansionType(
3132 const PackExpansionType* T) {
3133 return Visit(T->getPattern());
3134}
3135
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003136bool UnnamedLocalNoLinkageFinder::VisitObjCObjectType(const ObjCObjectType *) {
3137 return false;
3138}
3139
3140bool UnnamedLocalNoLinkageFinder::VisitObjCInterfaceType(
3141 const ObjCInterfaceType *) {
3142 return false;
3143}
3144
3145bool UnnamedLocalNoLinkageFinder::VisitObjCObjectPointerType(
3146 const ObjCObjectPointerType *) {
3147 return false;
3148}
3149
3150bool UnnamedLocalNoLinkageFinder::VisitTagDecl(const TagDecl *Tag) {
3151 if (Tag->getDeclContext()->isFunctionOrMethod()) {
3152 S.Diag(SR.getBegin(), diag::ext_template_arg_local_type)
3153 << S.Context.getTypeDeclType(Tag) << SR;
3154 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003155 }
3156
Richard Smith162e1c12011-04-15 14:24:37 +00003157 if (!Tag->getDeclName() && !Tag->getTypedefNameForAnonDecl()) {
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003158 S.Diag(SR.getBegin(), diag::ext_template_arg_unnamed_type) << SR;
3159 S.Diag(Tag->getLocation(), diag::note_template_unnamed_type_here);
3160 return true;
3161 }
3162
3163 return false;
3164}
3165
3166bool UnnamedLocalNoLinkageFinder::VisitNestedNameSpecifier(
3167 NestedNameSpecifier *NNS) {
3168 if (NNS->getPrefix() && VisitNestedNameSpecifier(NNS->getPrefix()))
3169 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003170
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003171 switch (NNS->getKind()) {
3172 case NestedNameSpecifier::Identifier:
3173 case NestedNameSpecifier::Namespace:
Douglas Gregor14aba762011-02-24 02:36:08 +00003174 case NestedNameSpecifier::NamespaceAlias:
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003175 case NestedNameSpecifier::Global:
3176 return false;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003177
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003178 case NestedNameSpecifier::TypeSpec:
3179 case NestedNameSpecifier::TypeSpecWithTemplate:
3180 return Visit(QualType(NNS->getAsType(), 0));
3181 }
Fariborz Jahanian7b1ec6c2010-10-13 16:19:16 +00003182 return false;
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003183}
3184
3185
Douglas Gregorc15cb382009-02-09 23:23:08 +00003186/// \brief Check a template argument against its corresponding
3187/// template type parameter.
3188///
3189/// This routine implements the semantics of C++ [temp.arg.type]. It
3190/// returns true if an error occurred, and false otherwise.
Mike Stump1eb44332009-09-09 15:08:12 +00003191bool Sema::CheckTemplateArgument(TemplateTypeParmDecl *Param,
John McCalla93c9342009-12-07 02:54:59 +00003192 TypeSourceInfo *ArgInfo) {
3193 assert(ArgInfo && "invalid TypeSourceInfo");
John McCall833ca992009-10-29 08:12:44 +00003194 QualType Arg = ArgInfo->getType();
Douglas Gregor0fddb972010-05-22 16:17:30 +00003195 SourceRange SR = ArgInfo->getTypeLoc().getSourceRange();
Chandler Carruth17fb8552010-09-03 21:12:34 +00003196
3197 if (Arg->isVariablyModifiedType()) {
3198 return Diag(SR.getBegin(), diag::err_variably_modified_template_arg) << Arg;
Douglas Gregor4b52e252009-12-21 23:17:24 +00003199 } else if (Context.hasSameUnqualifiedType(Arg, Context.OverloadTy)) {
Douglas Gregor4b52e252009-12-21 23:17:24 +00003200 return Diag(SR.getBegin(), diag::err_template_arg_overload_type) << SR;
Douglas Gregorc15cb382009-02-09 23:23:08 +00003201 }
3202
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003203 // C++03 [temp.arg.type]p2:
3204 // A local type, a type with no linkage, an unnamed type or a type
3205 // compounded from any of these types shall not be used as a
3206 // template-argument for a template type-parameter.
3207 //
3208 // C++0x allows these, and even in C++03 we allow them as an extension with
3209 // a warning.
Douglas Gregordb4d4bb2010-10-13 18:05:20 +00003210 if (!LangOpts.CPlusPlus0x && Arg->hasUnnamedOrLocalType()) {
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003211 UnnamedLocalNoLinkageFinder Finder(*this, SR);
3212 (void)Finder.Visit(Context.getCanonicalType(Arg));
3213 }
3214
Douglas Gregorc15cb382009-02-09 23:23:08 +00003215 return false;
3216}
3217
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003218/// \brief Checks whether the given template argument is the address
3219/// of an object or function according to C++ [temp.arg.nontype]p1.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003220static bool
Douglas Gregorb7a09262010-04-01 18:32:35 +00003221CheckTemplateArgumentAddressOfObjectOrFunction(Sema &S,
3222 NonTypeTemplateParmDecl *Param,
3223 QualType ParamType,
3224 Expr *ArgIn,
3225 TemplateArgument &Converted) {
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003226 bool Invalid = false;
Douglas Gregorb7a09262010-04-01 18:32:35 +00003227 Expr *Arg = ArgIn;
3228 QualType ArgType = Arg->getType();
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003229
3230 // See through any implicit casts we added to fix the type.
Eli Friedman73c39ab2009-10-20 08:27:19 +00003231 while (ImplicitCastExpr *Cast = dyn_cast<ImplicitCastExpr>(Arg))
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003232 Arg = Cast->getSubExpr();
3233
3234 // C++ [temp.arg.nontype]p1:
Mike Stump1eb44332009-09-09 15:08:12 +00003235 //
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003236 // A template-argument for a non-type, non-template
3237 // template-parameter shall be one of: [...]
3238 //
3239 // -- the address of an object or function with external
3240 // linkage, including function templates and function
3241 // template-ids but excluding non-static class members,
3242 // expressed as & id-expression where the & is optional if
3243 // the name refers to a function or array, or if the
3244 // corresponding template-parameter is a reference; or
3245 DeclRefExpr *DRE = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00003246
Abramo Bagnara2c5399f2010-09-13 06:06:58 +00003247 // In C++98/03 mode, give an extension warning on any extra parentheses.
3248 // See http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_defects.html#773
3249 bool ExtraParens = false;
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003250 while (ParenExpr *Parens = dyn_cast<ParenExpr>(Arg)) {
Abramo Bagnara2c5399f2010-09-13 06:06:58 +00003251 if (!Invalid && !ExtraParens && !S.getLangOptions().CPlusPlus0x) {
Douglas Gregorb7a09262010-04-01 18:32:35 +00003252 S.Diag(Arg->getSourceRange().getBegin(),
Abramo Bagnara2c5399f2010-09-13 06:06:58 +00003253 diag::ext_template_arg_extra_parens)
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003254 << Arg->getSourceRange();
Abramo Bagnara2c5399f2010-09-13 06:06:58 +00003255 ExtraParens = true;
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003256 }
3257
3258 Arg = Parens->getSubExpr();
3259 }
3260
Douglas Gregorb7a09262010-04-01 18:32:35 +00003261 bool AddressTaken = false;
3262 SourceLocation AddrOpLoc;
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003263 if (UnaryOperator *UnOp = dyn_cast<UnaryOperator>(Arg)) {
John McCall2de56d12010-08-25 11:45:40 +00003264 if (UnOp->getOpcode() == UO_AddrOf) {
Francois Pichet11f98d02011-04-28 05:12:34 +00003265 // Support &__uuidof(class_with_uuid) as a non-type template argument.
3266 // Very common in Microsoft COM headers.
3267 if (S.getLangOptions().Microsoft &&
3268 isa<CXXUuidofExpr>(UnOp->getSubExpr())) {
3269 Converted = TemplateArgument(ArgIn);
3270 return false;
3271 }
3272
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003273 DRE = dyn_cast<DeclRefExpr>(UnOp->getSubExpr());
Douglas Gregorb7a09262010-04-01 18:32:35 +00003274 AddressTaken = true;
3275 AddrOpLoc = UnOp->getOperatorLoc();
3276 }
Francois Picheta343a412011-04-29 09:08:14 +00003277 } else {
3278 if (S.getLangOptions().Microsoft && isa<CXXUuidofExpr>(Arg)) {
3279 Converted = TemplateArgument(ArgIn);
3280 return false;
3281 }
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003282 DRE = dyn_cast<DeclRefExpr>(Arg);
Francois Picheta343a412011-04-29 09:08:14 +00003283 }
Douglas Gregorb7a09262010-04-01 18:32:35 +00003284 if (!DRE) {
Douglas Gregor1a8cf732010-04-14 23:11:21 +00003285 S.Diag(Arg->getLocStart(), diag::err_template_arg_not_decl_ref)
3286 << Arg->getSourceRange();
Douglas Gregorb7a09262010-04-01 18:32:35 +00003287 S.Diag(Param->getLocation(), diag::note_template_param_here);
3288 return true;
3289 }
Chandler Carruth038cc392010-01-31 10:01:20 +00003290
3291 // Stop checking the precise nature of the argument if it is value dependent,
3292 // it should be checked when instantiated.
Douglas Gregorb7a09262010-04-01 18:32:35 +00003293 if (Arg->isValueDependent()) {
John McCall3fa5cae2010-10-26 07:05:15 +00003294 Converted = TemplateArgument(ArgIn);
Chandler Carruth038cc392010-01-31 10:01:20 +00003295 return false;
Douglas Gregorb7a09262010-04-01 18:32:35 +00003296 }
Chandler Carruth038cc392010-01-31 10:01:20 +00003297
Douglas Gregorb7a09262010-04-01 18:32:35 +00003298 if (!isa<ValueDecl>(DRE->getDecl())) {
3299 S.Diag(Arg->getSourceRange().getBegin(),
3300 diag::err_template_arg_not_object_or_func_form)
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003301 << Arg->getSourceRange();
Douglas Gregorb7a09262010-04-01 18:32:35 +00003302 S.Diag(Param->getLocation(), diag::note_template_param_here);
3303 return true;
3304 }
3305
3306 NamedDecl *Entity = 0;
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003307
3308 // Cannot refer to non-static data members
Douglas Gregorb7a09262010-04-01 18:32:35 +00003309 if (FieldDecl *Field = dyn_cast<FieldDecl>(DRE->getDecl())) {
3310 S.Diag(Arg->getSourceRange().getBegin(), diag::err_template_arg_field)
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003311 << Field << Arg->getSourceRange();
Douglas Gregorb7a09262010-04-01 18:32:35 +00003312 S.Diag(Param->getLocation(), diag::note_template_param_here);
3313 return true;
3314 }
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003315
3316 // Cannot refer to non-static member functions
3317 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(DRE->getDecl()))
Douglas Gregorb7a09262010-04-01 18:32:35 +00003318 if (!Method->isStatic()) {
3319 S.Diag(Arg->getSourceRange().getBegin(), diag::err_template_arg_method)
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003320 << Method << Arg->getSourceRange();
Douglas Gregorb7a09262010-04-01 18:32:35 +00003321 S.Diag(Param->getLocation(), diag::note_template_param_here);
3322 return true;
3323 }
Mike Stump1eb44332009-09-09 15:08:12 +00003324
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003325 // Functions must have external linkage.
3326 if (FunctionDecl *Func = dyn_cast<FunctionDecl>(DRE->getDecl())) {
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +00003327 if (!isExternalLinkage(Func->getLinkage())) {
Douglas Gregorb7a09262010-04-01 18:32:35 +00003328 S.Diag(Arg->getSourceRange().getBegin(),
3329 diag::err_template_arg_function_not_extern)
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003330 << Func << Arg->getSourceRange();
Douglas Gregorb7a09262010-04-01 18:32:35 +00003331 S.Diag(Func->getLocation(), diag::note_template_arg_internal_object)
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003332 << true;
3333 return true;
3334 }
3335
3336 // Okay: we've named a function with external linkage.
Douglas Gregor3e00bad2009-02-17 01:05:43 +00003337 Entity = Func;
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003338
Douglas Gregorb7a09262010-04-01 18:32:35 +00003339 // If the template parameter has pointer type, the function decays.
3340 if (ParamType->isPointerType() && !AddressTaken)
3341 ArgType = S.Context.getPointerType(Func->getType());
3342 else if (AddressTaken && ParamType->isReferenceType()) {
3343 // If we originally had an address-of operator, but the
3344 // parameter has reference type, complain and (if things look
3345 // like they will work) drop the address-of operator.
3346 if (!S.Context.hasSameUnqualifiedType(Func->getType(),
3347 ParamType.getNonReferenceType())) {
3348 S.Diag(AddrOpLoc, diag::err_template_arg_address_of_non_pointer)
3349 << ParamType;
3350 S.Diag(Param->getLocation(), diag::note_template_param_here);
3351 return true;
3352 }
3353
3354 S.Diag(AddrOpLoc, diag::err_template_arg_address_of_non_pointer)
3355 << ParamType
3356 << FixItHint::CreateRemoval(AddrOpLoc);
3357 S.Diag(Param->getLocation(), diag::note_template_param_here);
3358
3359 ArgType = Func->getType();
3360 }
3361 } else if (VarDecl *Var = dyn_cast<VarDecl>(DRE->getDecl())) {
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +00003362 if (!isExternalLinkage(Var->getLinkage())) {
Douglas Gregorb7a09262010-04-01 18:32:35 +00003363 S.Diag(Arg->getSourceRange().getBegin(),
3364 diag::err_template_arg_object_not_extern)
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003365 << Var << Arg->getSourceRange();
Douglas Gregorb7a09262010-04-01 18:32:35 +00003366 S.Diag(Var->getLocation(), diag::note_template_arg_internal_object)
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003367 << true;
3368 return true;
3369 }
3370
Douglas Gregorb7a09262010-04-01 18:32:35 +00003371 // A value of reference type is not an object.
3372 if (Var->getType()->isReferenceType()) {
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003373 S.Diag(Arg->getSourceRange().getBegin(),
Douglas Gregorb7a09262010-04-01 18:32:35 +00003374 diag::err_template_arg_reference_var)
3375 << Var->getType() << Arg->getSourceRange();
3376 S.Diag(Param->getLocation(), diag::note_template_param_here);
3377 return true;
3378 }
3379
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003380 // Okay: we've named an object with external linkage
Douglas Gregor3e00bad2009-02-17 01:05:43 +00003381 Entity = Var;
Douglas Gregorb7a09262010-04-01 18:32:35 +00003382
3383 // If the template parameter has pointer type, we must have taken
3384 // the address of this object.
3385 if (ParamType->isReferenceType()) {
3386 if (AddressTaken) {
3387 // If we originally had an address-of operator, but the
3388 // parameter has reference type, complain and (if things look
3389 // like they will work) drop the address-of operator.
3390 if (!S.Context.hasSameUnqualifiedType(Var->getType(),
3391 ParamType.getNonReferenceType())) {
3392 S.Diag(AddrOpLoc, diag::err_template_arg_address_of_non_pointer)
3393 << ParamType;
3394 S.Diag(Param->getLocation(), diag::note_template_param_here);
3395 return true;
3396 }
3397
3398 S.Diag(AddrOpLoc, diag::err_template_arg_address_of_non_pointer)
3399 << ParamType
3400 << FixItHint::CreateRemoval(AddrOpLoc);
3401 S.Diag(Param->getLocation(), diag::note_template_param_here);
3402
3403 ArgType = Var->getType();
3404 }
3405 } else if (!AddressTaken && ParamType->isPointerType()) {
3406 if (Var->getType()->isArrayType()) {
3407 // Array-to-pointer decay.
3408 ArgType = S.Context.getArrayDecayedType(Var->getType());
3409 } else {
3410 // If the template parameter has pointer type but the address of
3411 // this object was not taken, complain and (possibly) recover by
3412 // taking the address of the entity.
3413 ArgType = S.Context.getPointerType(Var->getType());
3414 if (!S.Context.hasSameUnqualifiedType(ArgType, ParamType)) {
3415 S.Diag(Arg->getLocStart(), diag::err_template_arg_not_address_of)
3416 << ParamType;
3417 S.Diag(Param->getLocation(), diag::note_template_param_here);
3418 return true;
3419 }
3420
3421 S.Diag(Arg->getLocStart(), diag::err_template_arg_not_address_of)
3422 << ParamType
3423 << FixItHint::CreateInsertion(Arg->getLocStart(), "&");
3424
3425 S.Diag(Param->getLocation(), diag::note_template_param_here);
3426 }
3427 }
3428 } else {
3429 // We found something else, but we don't know specifically what it is.
3430 S.Diag(Arg->getSourceRange().getBegin(),
3431 diag::err_template_arg_not_object_or_func)
3432 << Arg->getSourceRange();
3433 S.Diag(DRE->getDecl()->getLocation(), diag::note_template_arg_refers_here);
3434 return true;
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003435 }
Mike Stump1eb44332009-09-09 15:08:12 +00003436
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003437 if (ParamType->isPointerType() &&
Douglas Gregorb7a09262010-04-01 18:32:35 +00003438 !ParamType->getAs<PointerType>()->getPointeeType()->isFunctionType() &&
Douglas Gregor14d0aee2011-01-27 00:58:17 +00003439 S.IsQualificationConversion(ArgType, ParamType, false)) {
Douglas Gregorb7a09262010-04-01 18:32:35 +00003440 // For pointer-to-object types, qualification conversions are
3441 // permitted.
3442 } else {
3443 if (const ReferenceType *ParamRef = ParamType->getAs<ReferenceType>()) {
3444 if (!ParamRef->getPointeeType()->isFunctionType()) {
3445 // C++ [temp.arg.nontype]p5b3:
3446 // For a non-type template-parameter of type reference to
3447 // object, no conversions apply. The type referred to by the
3448 // reference may be more cv-qualified than the (otherwise
3449 // identical) type of the template- argument. The
3450 // template-parameter is bound directly to the
3451 // template-argument, which shall be an lvalue.
3452
3453 // FIXME: Other qualifiers?
3454 unsigned ParamQuals = ParamRef->getPointeeType().getCVRQualifiers();
3455 unsigned ArgQuals = ArgType.getCVRQualifiers();
3456
3457 if ((ParamQuals | ArgQuals) != ParamQuals) {
3458 S.Diag(Arg->getSourceRange().getBegin(),
3459 diag::err_template_arg_ref_bind_ignores_quals)
3460 << ParamType << Arg->getType()
3461 << Arg->getSourceRange();
3462 S.Diag(Param->getLocation(), diag::note_template_param_here);
3463 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003464 }
Douglas Gregorb7a09262010-04-01 18:32:35 +00003465 }
3466 }
3467
3468 // At this point, the template argument refers to an object or
3469 // function with external linkage. We now need to check whether the
3470 // argument and parameter types are compatible.
3471 if (!S.Context.hasSameUnqualifiedType(ArgType,
3472 ParamType.getNonReferenceType())) {
3473 // We can't perform this conversion or binding.
3474 if (ParamType->isReferenceType())
3475 S.Diag(Arg->getLocStart(), diag::err_template_arg_no_ref_bind)
3476 << ParamType << Arg->getType() << Arg->getSourceRange();
3477 else
3478 S.Diag(Arg->getLocStart(), diag::err_template_arg_not_convertible)
3479 << Arg->getType() << ParamType << Arg->getSourceRange();
3480 S.Diag(Param->getLocation(), diag::note_template_param_here);
3481 return true;
3482 }
3483 }
3484
3485 // Create the template argument.
3486 Converted = TemplateArgument(Entity->getCanonicalDecl());
Douglas Gregor77c13e02010-04-24 18:20:53 +00003487 S.MarkDeclarationReferenced(Arg->getLocStart(), Entity);
Douglas Gregorb7a09262010-04-01 18:32:35 +00003488 return false;
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003489}
3490
3491/// \brief Checks whether the given template argument is a pointer to
3492/// member constant according to C++ [temp.arg.nontype]p1.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003493bool Sema::CheckTemplateArgumentPointerToMember(Expr *Arg,
Douglas Gregorcaddba02009-11-12 18:38:13 +00003494 TemplateArgument &Converted) {
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003495 bool Invalid = false;
3496
3497 // See through any implicit casts we added to fix the type.
Eli Friedman73c39ab2009-10-20 08:27:19 +00003498 while (ImplicitCastExpr *Cast = dyn_cast<ImplicitCastExpr>(Arg))
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003499 Arg = Cast->getSubExpr();
3500
3501 // C++ [temp.arg.nontype]p1:
Mike Stump1eb44332009-09-09 15:08:12 +00003502 //
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003503 // A template-argument for a non-type, non-template
3504 // template-parameter shall be one of: [...]
3505 //
3506 // -- a pointer to member expressed as described in 5.3.1.
Douglas Gregora2813ce2009-10-23 18:54:35 +00003507 DeclRefExpr *DRE = 0;
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003508
Abramo Bagnara2c5399f2010-09-13 06:06:58 +00003509 // In C++98/03 mode, give an extension warning on any extra parentheses.
3510 // See http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_defects.html#773
3511 bool ExtraParens = false;
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003512 while (ParenExpr *Parens = dyn_cast<ParenExpr>(Arg)) {
Abramo Bagnara2c5399f2010-09-13 06:06:58 +00003513 if (!Invalid && !ExtraParens && !getLangOptions().CPlusPlus0x) {
Mike Stump1eb44332009-09-09 15:08:12 +00003514 Diag(Arg->getSourceRange().getBegin(),
Abramo Bagnara2c5399f2010-09-13 06:06:58 +00003515 diag::ext_template_arg_extra_parens)
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003516 << Arg->getSourceRange();
Abramo Bagnara2c5399f2010-09-13 06:06:58 +00003517 ExtraParens = true;
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003518 }
3519
3520 Arg = Parens->getSubExpr();
3521 }
3522
Douglas Gregorcaddba02009-11-12 18:38:13 +00003523 // A pointer-to-member constant written &Class::member.
3524 if (UnaryOperator *UnOp = dyn_cast<UnaryOperator>(Arg)) {
John McCall2de56d12010-08-25 11:45:40 +00003525 if (UnOp->getOpcode() == UO_AddrOf) {
Douglas Gregora2813ce2009-10-23 18:54:35 +00003526 DRE = dyn_cast<DeclRefExpr>(UnOp->getSubExpr());
3527 if (DRE && !DRE->getQualifier())
3528 DRE = 0;
3529 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003530 }
Douglas Gregorcaddba02009-11-12 18:38:13 +00003531 // A constant of pointer-to-member type.
3532 else if ((DRE = dyn_cast<DeclRefExpr>(Arg))) {
3533 if (ValueDecl *VD = dyn_cast<ValueDecl>(DRE->getDecl())) {
3534 if (VD->getType()->isMemberPointerType()) {
3535 if (isa<NonTypeTemplateParmDecl>(VD) ||
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003536 (isa<VarDecl>(VD) &&
Douglas Gregorcaddba02009-11-12 18:38:13 +00003537 Context.getCanonicalType(VD->getType()).isConstQualified())) {
3538 if (Arg->isTypeDependent() || Arg->isValueDependent())
John McCall3fa5cae2010-10-26 07:05:15 +00003539 Converted = TemplateArgument(Arg);
Douglas Gregorcaddba02009-11-12 18:38:13 +00003540 else
3541 Converted = TemplateArgument(VD->getCanonicalDecl());
3542 return Invalid;
3543 }
3544 }
3545 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003546
Douglas Gregorcaddba02009-11-12 18:38:13 +00003547 DRE = 0;
3548 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003549
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003550 if (!DRE)
3551 return Diag(Arg->getSourceRange().getBegin(),
3552 diag::err_template_arg_not_pointer_to_member_form)
3553 << Arg->getSourceRange();
3554
3555 if (isa<FieldDecl>(DRE->getDecl()) || isa<CXXMethodDecl>(DRE->getDecl())) {
3556 assert((isa<FieldDecl>(DRE->getDecl()) ||
3557 !cast<CXXMethodDecl>(DRE->getDecl())->isStatic()) &&
3558 "Only non-static member pointers can make it here");
3559
3560 // Okay: this is the address of a non-static member, and therefore
3561 // a member pointer constant.
Douglas Gregorcaddba02009-11-12 18:38:13 +00003562 if (Arg->isTypeDependent() || Arg->isValueDependent())
John McCall3fa5cae2010-10-26 07:05:15 +00003563 Converted = TemplateArgument(Arg);
Douglas Gregorcaddba02009-11-12 18:38:13 +00003564 else
3565 Converted = TemplateArgument(DRE->getDecl()->getCanonicalDecl());
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003566 return Invalid;
3567 }
3568
3569 // We found something else, but we don't know specifically what it is.
Mike Stump1eb44332009-09-09 15:08:12 +00003570 Diag(Arg->getSourceRange().getBegin(),
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003571 diag::err_template_arg_not_pointer_to_member_form)
3572 << Arg->getSourceRange();
Mike Stump1eb44332009-09-09 15:08:12 +00003573 Diag(DRE->getDecl()->getLocation(),
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003574 diag::note_template_arg_refers_here);
3575 return true;
3576}
3577
Douglas Gregorc15cb382009-02-09 23:23:08 +00003578/// \brief Check a template argument against its corresponding
3579/// non-type template parameter.
3580///
Douglas Gregor2943aed2009-03-03 04:44:36 +00003581/// This routine implements the semantics of C++ [temp.arg.nontype].
John Wiegley429bb272011-04-08 18:41:53 +00003582/// If an error occurred, it returns ExprError(); otherwise, it
3583/// returns the converted template argument. \p
Douglas Gregor2943aed2009-03-03 04:44:36 +00003584/// InstantiatedParamType is the type of the non-type template
3585/// parameter after it has been instantiated.
John Wiegley429bb272011-04-08 18:41:53 +00003586ExprResult Sema::CheckTemplateArgument(NonTypeTemplateParmDecl *Param,
3587 QualType InstantiatedParamType, Expr *Arg,
3588 TemplateArgument &Converted,
3589 CheckTemplateArgumentKind CTAK) {
Douglas Gregor40808ce2009-03-09 23:48:35 +00003590 SourceLocation StartLoc = Arg->getSourceRange().getBegin();
3591
Douglas Gregor6ae5e662009-02-10 23:36:10 +00003592 // If either the parameter has a dependent type or the argument is
3593 // type-dependent, there's nothing we can check now.
Douglas Gregor40808ce2009-03-09 23:48:35 +00003594 if (InstantiatedParamType->isDependentType() || Arg->isTypeDependent()) {
3595 // FIXME: Produce a cloned, canonical expression?
Douglas Gregor02cbbd22009-06-11 18:10:32 +00003596 Converted = TemplateArgument(Arg);
John Wiegley429bb272011-04-08 18:41:53 +00003597 return Owned(Arg);
Douglas Gregor40808ce2009-03-09 23:48:35 +00003598 }
Douglas Gregor6ae5e662009-02-10 23:36:10 +00003599
3600 // C++ [temp.arg.nontype]p5:
3601 // The following conversions are performed on each expression used
3602 // as a non-type template-argument. If a non-type
3603 // template-argument cannot be converted to the type of the
3604 // corresponding template-parameter then the program is
3605 // ill-formed.
3606 //
3607 // -- for a non-type template-parameter of integral or
3608 // enumeration type, integral promotions (4.5) and integral
3609 // conversions (4.7) are applied.
Douglas Gregor2943aed2009-03-03 04:44:36 +00003610 QualType ParamType = InstantiatedParamType;
Douglas Gregora35284b2009-02-11 00:19:33 +00003611 QualType ArgType = Arg->getType();
Douglas Gregor2ade35e2010-06-16 00:17:44 +00003612 if (ParamType->isIntegralOrEnumerationType()) {
Douglas Gregor6ae5e662009-02-10 23:36:10 +00003613 // C++ [temp.arg.nontype]p1:
3614 // A template-argument for a non-type, non-template
3615 // template-parameter shall be one of:
3616 //
3617 // -- an integral constant-expression of integral or enumeration
3618 // type; or
3619 // -- the name of a non-type template-parameter; or
3620 SourceLocation NonConstantLoc;
Douglas Gregor3e00bad2009-02-17 01:05:43 +00003621 llvm::APSInt Value;
Douglas Gregor2ade35e2010-06-16 00:17:44 +00003622 if (!ArgType->isIntegralOrEnumerationType()) {
Mike Stump1eb44332009-09-09 15:08:12 +00003623 Diag(Arg->getSourceRange().getBegin(),
Douglas Gregor6ae5e662009-02-10 23:36:10 +00003624 diag::err_template_arg_not_integral_or_enumeral)
3625 << ArgType << Arg->getSourceRange();
3626 Diag(Param->getLocation(), diag::note_template_param_here);
John Wiegley429bb272011-04-08 18:41:53 +00003627 return ExprError();
Douglas Gregor6ae5e662009-02-10 23:36:10 +00003628 } else if (!Arg->isValueDependent() &&
Douglas Gregor3e00bad2009-02-17 01:05:43 +00003629 !Arg->isIntegerConstantExpr(Value, Context, &NonConstantLoc)) {
Douglas Gregor6ae5e662009-02-10 23:36:10 +00003630 Diag(NonConstantLoc, diag::err_template_arg_not_ice)
3631 << ArgType << Arg->getSourceRange();
John Wiegley429bb272011-04-08 18:41:53 +00003632 return ExprError();
Douglas Gregor6ae5e662009-02-10 23:36:10 +00003633 }
3634
Douglas Gregor02024a92010-03-28 02:42:43 +00003635 // From here on out, all we care about are the unqualified forms
3636 // of the parameter and argument types.
3637 ParamType = ParamType.getUnqualifiedType();
3638 ArgType = ArgType.getUnqualifiedType();
Douglas Gregor6ae5e662009-02-10 23:36:10 +00003639
3640 // Try to convert the argument to the parameter's type.
Douglas Gregorff524392009-11-04 21:50:46 +00003641 if (Context.hasSameType(ParamType, ArgType)) {
Douglas Gregor6ae5e662009-02-10 23:36:10 +00003642 // Okay: no conversion necessary
Douglas Gregor02024a92010-03-28 02:42:43 +00003643 } else if (CTAK == CTAK_Deduced) {
3644 // C++ [temp.deduct.type]p17:
3645 // If, in the declaration of a function template with a non-type
3646 // template-parameter, the non-type template- parameter is used
3647 // in an expression in the function parameter-list and, if the
3648 // corresponding template-argument is deduced, the
3649 // template-argument type shall match the type of the
3650 // template-parameter exactly, except that a template-argument
3651 // deduced from an array bound may be of any integral type.
3652 Diag(StartLoc, diag::err_deduced_non_type_template_arg_type_mismatch)
3653 << ArgType << ParamType;
3654 Diag(Param->getLocation(), diag::note_template_param_here);
John Wiegley429bb272011-04-08 18:41:53 +00003655 return ExprError();
John McCalldaa8e4e2010-11-15 09:13:47 +00003656 } else if (ParamType->isBooleanType()) {
3657 // This is an integral-to-boolean conversion.
John Wiegley429bb272011-04-08 18:41:53 +00003658 Arg = ImpCastExprToType(Arg, ParamType, CK_IntegralToBoolean).take();
Douglas Gregor6ae5e662009-02-10 23:36:10 +00003659 } else if (IsIntegralPromotion(Arg, ArgType, ParamType) ||
3660 !ParamType->isEnumeralType()) {
3661 // This is an integral promotion or conversion.
John Wiegley429bb272011-04-08 18:41:53 +00003662 Arg = ImpCastExprToType(Arg, ParamType, CK_IntegralCast).take();
Douglas Gregor6ae5e662009-02-10 23:36:10 +00003663 } else {
3664 // We can't perform this conversion.
Mike Stump1eb44332009-09-09 15:08:12 +00003665 Diag(Arg->getSourceRange().getBegin(),
Douglas Gregor6ae5e662009-02-10 23:36:10 +00003666 diag::err_template_arg_not_convertible)
Douglas Gregor2943aed2009-03-03 04:44:36 +00003667 << Arg->getType() << InstantiatedParamType << Arg->getSourceRange();
Douglas Gregor6ae5e662009-02-10 23:36:10 +00003668 Diag(Param->getLocation(), diag::note_template_param_here);
John Wiegley429bb272011-04-08 18:41:53 +00003669 return ExprError();
Douglas Gregor6ae5e662009-02-10 23:36:10 +00003670 }
3671
Douglas Gregorc7469372011-05-04 21:55:00 +00003672 // Add the value of this argument to the list of converted
3673 // arguments. We use the bitwidth and signedness of the template
3674 // parameter.
3675 if (Arg->isValueDependent()) {
3676 // The argument is value-dependent. Create a new
3677 // TemplateArgument with the converted expression.
3678 Converted = TemplateArgument(Arg);
3679 return Owned(Arg);
3680 }
3681
Douglas Gregorf80a9d52009-03-14 00:20:21 +00003682 QualType IntegerType = Context.getCanonicalType(ParamType);
John McCall183700f2009-09-21 23:43:11 +00003683 if (const EnumType *Enum = IntegerType->getAs<EnumType>())
Douglas Gregor02cbbd22009-06-11 18:10:32 +00003684 IntegerType = Context.getCanonicalType(Enum->getDecl()->getIntegerType());
Douglas Gregorf80a9d52009-03-14 00:20:21 +00003685
Douglas Gregorc7469372011-05-04 21:55:00 +00003686 if (ParamType->isBooleanType()) {
3687 // Value must be zero or one.
3688 Value = Value != 0;
3689 unsigned AllowedBits = Context.getTypeSize(IntegerType);
3690 if (Value.getBitWidth() != AllowedBits)
3691 Value = Value.extOrTrunc(AllowedBits);
3692 Value.setIsSigned(IntegerType->isSignedIntegerType());
3693 } else {
Douglas Gregor1a6e0342010-03-26 02:38:37 +00003694 llvm::APSInt OldValue = Value;
Douglas Gregorc7469372011-05-04 21:55:00 +00003695
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003696 // Coerce the template argument's value to the value it will have
Douglas Gregor1a6e0342010-03-26 02:38:37 +00003697 // based on the template parameter's type.
Douglas Gregor0d4fd8e2010-03-26 00:39:40 +00003698 unsigned AllowedBits = Context.getTypeSize(IntegerType);
Douglas Gregor0d4fd8e2010-03-26 00:39:40 +00003699 if (Value.getBitWidth() != AllowedBits)
Jay Foad9f71a8f2010-12-07 08:25:34 +00003700 Value = Value.extOrTrunc(AllowedBits);
Douglas Gregor0d4fd8e2010-03-26 00:39:40 +00003701 Value.setIsSigned(IntegerType->isSignedIntegerType());
Douglas Gregorc7469372011-05-04 21:55:00 +00003702
Douglas Gregor1a6e0342010-03-26 02:38:37 +00003703 // Complain if an unsigned parameter received a negative value.
3704 if (IntegerType->isUnsignedIntegerType()
Douglas Gregorc7469372011-05-04 21:55:00 +00003705 && (OldValue.isSigned() && OldValue.isNegative())) {
Douglas Gregor1a6e0342010-03-26 02:38:37 +00003706 Diag(Arg->getSourceRange().getBegin(), diag::warn_template_arg_negative)
3707 << OldValue.toString(10) << Value.toString(10) << Param->getType()
3708 << Arg->getSourceRange();
3709 Diag(Param->getLocation(), diag::note_template_param_here);
3710 }
Douglas Gregorc7469372011-05-04 21:55:00 +00003711
Douglas Gregor1a6e0342010-03-26 02:38:37 +00003712 // Complain if we overflowed the template parameter's type.
3713 unsigned RequiredBits;
3714 if (IntegerType->isUnsignedIntegerType())
3715 RequiredBits = OldValue.getActiveBits();
3716 else if (OldValue.isUnsigned())
3717 RequiredBits = OldValue.getActiveBits() + 1;
3718 else
3719 RequiredBits = OldValue.getMinSignedBits();
3720 if (RequiredBits > AllowedBits) {
3721 Diag(Arg->getSourceRange().getBegin(),
3722 diag::warn_template_arg_too_large)
3723 << OldValue.toString(10) << Value.toString(10) << Param->getType()
3724 << Arg->getSourceRange();
3725 Diag(Param->getLocation(), diag::note_template_param_here);
3726 }
Douglas Gregorf80a9d52009-03-14 00:20:21 +00003727 }
Douglas Gregor3e00bad2009-02-17 01:05:43 +00003728
John McCall833ca992009-10-29 08:12:44 +00003729 Converted = TemplateArgument(Value,
Mike Stump1eb44332009-09-09 15:08:12 +00003730 ParamType->isEnumeralType() ? ParamType
Douglas Gregor02cbbd22009-06-11 18:10:32 +00003731 : IntegerType);
John Wiegley429bb272011-04-08 18:41:53 +00003732 return Owned(Arg);
Douglas Gregor6ae5e662009-02-10 23:36:10 +00003733 }
Douglas Gregora35284b2009-02-11 00:19:33 +00003734
John McCall6bb80172010-03-30 21:47:33 +00003735 DeclAccessPair FoundResult; // temporary for ResolveOverloadedFunction
3736
Douglas Gregorb7a09262010-04-01 18:32:35 +00003737 // C++0x [temp.arg.nontype]p5 bullets 2, 4 and 6 permit conversion
3738 // from a template argument of type std::nullptr_t to a non-type
3739 // template parameter of type pointer to object, pointer to
3740 // function, or pointer-to-member, respectively.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003741 if (ArgType->isNullPtrType() &&
Douglas Gregorb7a09262010-04-01 18:32:35 +00003742 (ParamType->isPointerType() || ParamType->isMemberPointerType())) {
3743 Converted = TemplateArgument((NamedDecl *)0);
John Wiegley429bb272011-04-08 18:41:53 +00003744 return Owned(Arg);
Douglas Gregorb7a09262010-04-01 18:32:35 +00003745 }
3746
Douglas Gregorb86b0572009-02-11 01:18:59 +00003747 // Handle pointer-to-function, reference-to-function, and
3748 // pointer-to-member-function all in (roughly) the same way.
3749 if (// -- For a non-type template-parameter of type pointer to
3750 // function, only the function-to-pointer conversion (4.3) is
3751 // applied. If the template-argument represents a set of
3752 // overloaded functions (or a pointer to such), the matching
3753 // function is selected from the set (13.4).
3754 (ParamType->isPointerType() &&
Ted Kremenek6217b802009-07-29 21:53:49 +00003755 ParamType->getAs<PointerType>()->getPointeeType()->isFunctionType()) ||
Douglas Gregorb86b0572009-02-11 01:18:59 +00003756 // -- For a non-type template-parameter of type reference to
3757 // function, no conversions apply. If the template-argument
3758 // represents a set of overloaded functions, the matching
3759 // function is selected from the set (13.4).
3760 (ParamType->isReferenceType() &&
Ted Kremenek6217b802009-07-29 21:53:49 +00003761 ParamType->getAs<ReferenceType>()->getPointeeType()->isFunctionType()) ||
Douglas Gregorb86b0572009-02-11 01:18:59 +00003762 // -- For a non-type template-parameter of type pointer to
3763 // member function, no conversions apply. If the
3764 // template-argument represents a set of overloaded member
3765 // functions, the matching member function is selected from
3766 // the set (13.4).
3767 (ParamType->isMemberPointerType() &&
Ted Kremenek6217b802009-07-29 21:53:49 +00003768 ParamType->getAs<MemberPointerType>()->getPointeeType()
Douglas Gregorb86b0572009-02-11 01:18:59 +00003769 ->isFunctionType())) {
Douglas Gregorb7a09262010-04-01 18:32:35 +00003770
Douglas Gregor1a8cf732010-04-14 23:11:21 +00003771 if (Arg->getType() == Context.OverloadTy) {
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003772 if (FunctionDecl *Fn = ResolveAddressOfOverloadedFunction(Arg, ParamType,
Douglas Gregor1a8cf732010-04-14 23:11:21 +00003773 true,
3774 FoundResult)) {
3775 if (DiagnoseUseOfDecl(Fn, Arg->getSourceRange().getBegin()))
John Wiegley429bb272011-04-08 18:41:53 +00003776 return ExprError();
Douglas Gregor1a8cf732010-04-14 23:11:21 +00003777
3778 Arg = FixOverloadedFunctionReference(Arg, FoundResult, Fn);
3779 ArgType = Arg->getType();
3780 } else
John Wiegley429bb272011-04-08 18:41:53 +00003781 return ExprError();
Douglas Gregora35284b2009-02-11 00:19:33 +00003782 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003783
John Wiegley429bb272011-04-08 18:41:53 +00003784 if (!ParamType->isMemberPointerType()) {
3785 if (CheckTemplateArgumentAddressOfObjectOrFunction(*this, Param,
3786 ParamType,
3787 Arg, Converted))
3788 return ExprError();
3789 return Owned(Arg);
3790 }
Douglas Gregorb7a09262010-04-01 18:32:35 +00003791
Douglas Gregor14d0aee2011-01-27 00:58:17 +00003792 if (IsQualificationConversion(ArgType, ParamType.getNonReferenceType(),
3793 false)) {
John Wiegley429bb272011-04-08 18:41:53 +00003794 Arg = ImpCastExprToType(Arg, ParamType, CK_NoOp, CastCategory(Arg)).take();
Douglas Gregorb7a09262010-04-01 18:32:35 +00003795 } else if (!Context.hasSameUnqualifiedType(ArgType,
3796 ParamType.getNonReferenceType())) {
Douglas Gregora35284b2009-02-11 00:19:33 +00003797 // We can't perform this conversion.
Mike Stump1eb44332009-09-09 15:08:12 +00003798 Diag(Arg->getSourceRange().getBegin(),
Douglas Gregora35284b2009-02-11 00:19:33 +00003799 diag::err_template_arg_not_convertible)
Douglas Gregor2943aed2009-03-03 04:44:36 +00003800 << Arg->getType() << InstantiatedParamType << Arg->getSourceRange();
Douglas Gregora35284b2009-02-11 00:19:33 +00003801 Diag(Param->getLocation(), diag::note_template_param_here);
John Wiegley429bb272011-04-08 18:41:53 +00003802 return ExprError();
Douglas Gregora35284b2009-02-11 00:19:33 +00003803 }
Mike Stump1eb44332009-09-09 15:08:12 +00003804
John Wiegley429bb272011-04-08 18:41:53 +00003805 if (CheckTemplateArgumentPointerToMember(Arg, Converted))
3806 return ExprError();
3807 return Owned(Arg);
Douglas Gregora35284b2009-02-11 00:19:33 +00003808 }
3809
Chris Lattnerfe90de72009-02-20 21:37:53 +00003810 if (ParamType->isPointerType()) {
Douglas Gregorb86b0572009-02-11 01:18:59 +00003811 // -- for a non-type template-parameter of type pointer to
3812 // object, qualification conversions (4.4) and the
3813 // array-to-pointer conversion (4.2) are applied.
Sebastian Redl6e8ed162009-05-10 18:38:11 +00003814 // C++0x also allows a value of std::nullptr_t.
Eli Friedman13578692010-08-05 02:49:48 +00003815 assert(ParamType->getPointeeType()->isIncompleteOrObjectType() &&
Douglas Gregorb86b0572009-02-11 01:18:59 +00003816 "Only object pointers allowed here");
Douglas Gregorf684e6e2009-02-11 00:44:29 +00003817
John Wiegley429bb272011-04-08 18:41:53 +00003818 if (CheckTemplateArgumentAddressOfObjectOrFunction(*this, Param,
3819 ParamType,
3820 Arg, Converted))
3821 return ExprError();
3822 return Owned(Arg);
Douglas Gregorf684e6e2009-02-11 00:44:29 +00003823 }
Mike Stump1eb44332009-09-09 15:08:12 +00003824
Ted Kremenek6217b802009-07-29 21:53:49 +00003825 if (const ReferenceType *ParamRefType = ParamType->getAs<ReferenceType>()) {
Douglas Gregorb86b0572009-02-11 01:18:59 +00003826 // -- For a non-type template-parameter of type reference to
3827 // object, no conversions apply. The type referred to by the
3828 // reference may be more cv-qualified than the (otherwise
3829 // identical) type of the template-argument. The
3830 // template-parameter is bound directly to the
3831 // template-argument, which must be an lvalue.
Eli Friedman13578692010-08-05 02:49:48 +00003832 assert(ParamRefType->getPointeeType()->isIncompleteOrObjectType() &&
Douglas Gregorb86b0572009-02-11 01:18:59 +00003833 "Only object references allowed here");
Douglas Gregorf684e6e2009-02-11 00:44:29 +00003834
Douglas Gregor1a8cf732010-04-14 23:11:21 +00003835 if (Arg->getType() == Context.OverloadTy) {
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003836 if (FunctionDecl *Fn = ResolveAddressOfOverloadedFunction(Arg,
3837 ParamRefType->getPointeeType(),
Douglas Gregor1a8cf732010-04-14 23:11:21 +00003838 true,
3839 FoundResult)) {
3840 if (DiagnoseUseOfDecl(Fn, Arg->getSourceRange().getBegin()))
John Wiegley429bb272011-04-08 18:41:53 +00003841 return ExprError();
Douglas Gregor1a8cf732010-04-14 23:11:21 +00003842
3843 Arg = FixOverloadedFunctionReference(Arg, FoundResult, Fn);
3844 ArgType = Arg->getType();
3845 } else
John Wiegley429bb272011-04-08 18:41:53 +00003846 return ExprError();
Douglas Gregorb86b0572009-02-11 01:18:59 +00003847 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003848
John Wiegley429bb272011-04-08 18:41:53 +00003849 if (CheckTemplateArgumentAddressOfObjectOrFunction(*this, Param,
3850 ParamType,
3851 Arg, Converted))
3852 return ExprError();
3853 return Owned(Arg);
Douglas Gregorb86b0572009-02-11 01:18:59 +00003854 }
Douglas Gregor658bbb52009-02-11 16:16:59 +00003855
3856 // -- For a non-type template-parameter of type pointer to data
3857 // member, qualification conversions (4.4) are applied.
3858 assert(ParamType->isMemberPointerType() && "Only pointers to members remain");
3859
Douglas Gregor8e6563b2009-02-11 18:22:40 +00003860 if (Context.hasSameUnqualifiedType(ParamType, ArgType)) {
Douglas Gregor658bbb52009-02-11 16:16:59 +00003861 // Types match exactly: nothing more to do here.
Douglas Gregor14d0aee2011-01-27 00:58:17 +00003862 } else if (IsQualificationConversion(ArgType, ParamType, false)) {
John Wiegley429bb272011-04-08 18:41:53 +00003863 Arg = ImpCastExprToType(Arg, ParamType, CK_NoOp, CastCategory(Arg)).take();
Douglas Gregor658bbb52009-02-11 16:16:59 +00003864 } else {
3865 // We can't perform this conversion.
Mike Stump1eb44332009-09-09 15:08:12 +00003866 Diag(Arg->getSourceRange().getBegin(),
Douglas Gregor658bbb52009-02-11 16:16:59 +00003867 diag::err_template_arg_not_convertible)
Douglas Gregor2943aed2009-03-03 04:44:36 +00003868 << Arg->getType() << InstantiatedParamType << Arg->getSourceRange();
Douglas Gregor658bbb52009-02-11 16:16:59 +00003869 Diag(Param->getLocation(), diag::note_template_param_here);
John Wiegley429bb272011-04-08 18:41:53 +00003870 return ExprError();
Douglas Gregor658bbb52009-02-11 16:16:59 +00003871 }
3872
John Wiegley429bb272011-04-08 18:41:53 +00003873 if (CheckTemplateArgumentPointerToMember(Arg, Converted))
3874 return ExprError();
3875 return Owned(Arg);
Douglas Gregorc15cb382009-02-09 23:23:08 +00003876}
3877
3878/// \brief Check a template argument against its corresponding
3879/// template template parameter.
3880///
3881/// This routine implements the semantics of C++ [temp.arg.template].
3882/// It returns true if an error occurred, and false otherwise.
3883bool Sema::CheckTemplateArgument(TemplateTemplateParmDecl *Param,
Douglas Gregor788cd062009-11-11 01:00:40 +00003884 const TemplateArgumentLoc &Arg) {
3885 TemplateName Name = Arg.getArgument().getAsTemplate();
3886 TemplateDecl *Template = Name.getAsTemplateDecl();
3887 if (!Template) {
3888 // Any dependent template name is fine.
3889 assert(Name.isDependent() && "Non-dependent template isn't a declaration?");
3890 return false;
3891 }
Douglas Gregordd0574e2009-02-10 00:24:35 +00003892
Richard Smith3e4c6c42011-05-05 21:57:07 +00003893 // C++0x [temp.arg.template]p1:
Douglas Gregordd0574e2009-02-10 00:24:35 +00003894 // A template-argument for a template template-parameter shall be
Richard Smith3e4c6c42011-05-05 21:57:07 +00003895 // the name of a class template or an alias template, expressed as an
3896 // id-expression. When the template-argument names a class template, only
Douglas Gregordd0574e2009-02-10 00:24:35 +00003897 // primary class templates are considered when matching the
3898 // template template argument with the corresponding parameter;
3899 // partial specializations are not considered even if their
3900 // parameter lists match that of the template template parameter.
Douglas Gregorba1ecb52009-06-12 19:43:02 +00003901 //
3902 // Note that we also allow template template parameters here, which
3903 // will happen when we are dealing with, e.g., class template
3904 // partial specializations.
Mike Stump1eb44332009-09-09 15:08:12 +00003905 if (!isa<ClassTemplateDecl>(Template) &&
Richard Smith3e4c6c42011-05-05 21:57:07 +00003906 !isa<TemplateTemplateParmDecl>(Template) &&
3907 !isa<TypeAliasTemplateDecl>(Template)) {
Mike Stump1eb44332009-09-09 15:08:12 +00003908 assert(isa<FunctionTemplateDecl>(Template) &&
Douglas Gregordd0574e2009-02-10 00:24:35 +00003909 "Only function templates are possible here");
Douglas Gregor788cd062009-11-11 01:00:40 +00003910 Diag(Arg.getLocation(), diag::err_template_arg_not_class_template);
Douglas Gregore53060f2009-06-25 22:08:12 +00003911 Diag(Template->getLocation(), diag::note_template_arg_refers_here_func)
Douglas Gregordd0574e2009-02-10 00:24:35 +00003912 << Template;
3913 }
3914
3915 return !TemplateParameterListsAreEqual(Template->getTemplateParameters(),
3916 Param->getTemplateParameters(),
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003917 true,
Douglas Gregorfb898e12009-11-12 16:20:59 +00003918 TPL_TemplateTemplateArgumentMatch,
Douglas Gregor788cd062009-11-11 01:00:40 +00003919 Arg.getLocation());
Douglas Gregorc15cb382009-02-09 23:23:08 +00003920}
3921
Douglas Gregor02024a92010-03-28 02:42:43 +00003922/// \brief Given a non-type template argument that refers to a
3923/// declaration and the type of its corresponding non-type template
3924/// parameter, produce an expression that properly refers to that
3925/// declaration.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003926ExprResult
Douglas Gregor02024a92010-03-28 02:42:43 +00003927Sema::BuildExpressionFromDeclTemplateArgument(const TemplateArgument &Arg,
3928 QualType ParamType,
3929 SourceLocation Loc) {
3930 assert(Arg.getKind() == TemplateArgument::Declaration &&
3931 "Only declaration template arguments permitted here");
3932 ValueDecl *VD = cast<ValueDecl>(Arg.getAsDecl());
3933
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003934 if (VD->getDeclContext()->isRecord() &&
Douglas Gregor02024a92010-03-28 02:42:43 +00003935 (isa<CXXMethodDecl>(VD) || isa<FieldDecl>(VD))) {
3936 // If the value is a class member, we might have a pointer-to-member.
3937 // Determine whether the non-type template template parameter is of
3938 // pointer-to-member type. If so, we need to build an appropriate
3939 // expression for a pointer-to-member, since a "normal" DeclRefExpr
3940 // would refer to the member itself.
3941 if (ParamType->isMemberPointerType()) {
3942 QualType ClassType
3943 = Context.getTypeDeclType(cast<RecordDecl>(VD->getDeclContext()));
3944 NestedNameSpecifier *Qualifier
John McCall9ae2f072010-08-23 23:25:46 +00003945 = NestedNameSpecifier::Create(Context, 0, false,
3946 ClassType.getTypePtr());
Douglas Gregor02024a92010-03-28 02:42:43 +00003947 CXXScopeSpec SS;
Douglas Gregorc34348a2011-02-24 17:54:50 +00003948 SS.MakeTrivial(Context, Qualifier, Loc);
John McCalldfa1edb2010-11-23 20:48:44 +00003949
3950 // The actual value-ness of this is unimportant, but for
3951 // internal consistency's sake, references to instance methods
3952 // are r-values.
3953 ExprValueKind VK = VK_LValue;
3954 if (isa<CXXMethodDecl>(VD) && cast<CXXMethodDecl>(VD)->isInstance())
3955 VK = VK_RValue;
3956
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003957 ExprResult RefExpr = BuildDeclRefExpr(VD,
John McCallf89e55a2010-11-18 06:31:45 +00003958 VD->getType().getNonReferenceType(),
John McCalldfa1edb2010-11-23 20:48:44 +00003959 VK,
John McCallf89e55a2010-11-18 06:31:45 +00003960 Loc,
3961 &SS);
Douglas Gregor02024a92010-03-28 02:42:43 +00003962 if (RefExpr.isInvalid())
3963 return ExprError();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003964
John McCall2de56d12010-08-25 11:45:40 +00003965 RefExpr = CreateBuiltinUnaryOp(Loc, UO_AddrOf, RefExpr.get());
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003966
Douglas Gregorc0c83002010-04-30 21:46:38 +00003967 // We might need to perform a trailing qualification conversion, since
3968 // the element type on the parameter could be more qualified than the
3969 // element type in the expression we constructed.
3970 if (IsQualificationConversion(((Expr*) RefExpr.get())->getType(),
John Wiegley429bb272011-04-08 18:41:53 +00003971 ParamType.getUnqualifiedType(), false))
3972 RefExpr = ImpCastExprToType(RefExpr.take(), ParamType.getUnqualifiedType(), CK_NoOp);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003973
Douglas Gregor02024a92010-03-28 02:42:43 +00003974 assert(!RefExpr.isInvalid() &&
3975 Context.hasSameType(((Expr*) RefExpr.get())->getType(),
Douglas Gregorc0c83002010-04-30 21:46:38 +00003976 ParamType.getUnqualifiedType()));
Douglas Gregor02024a92010-03-28 02:42:43 +00003977 return move(RefExpr);
3978 }
3979 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003980
Douglas Gregor02024a92010-03-28 02:42:43 +00003981 QualType T = VD->getType().getNonReferenceType();
3982 if (ParamType->isPointerType()) {
Douglas Gregorb7a09262010-04-01 18:32:35 +00003983 // When the non-type template parameter is a pointer, take the
3984 // address of the declaration.
John McCallf89e55a2010-11-18 06:31:45 +00003985 ExprResult RefExpr = BuildDeclRefExpr(VD, T, VK_LValue, Loc);
Douglas Gregor02024a92010-03-28 02:42:43 +00003986 if (RefExpr.isInvalid())
3987 return ExprError();
Douglas Gregorb7a09262010-04-01 18:32:35 +00003988
3989 if (T->isFunctionType() || T->isArrayType()) {
3990 // Decay functions and arrays.
John Wiegley429bb272011-04-08 18:41:53 +00003991 RefExpr = DefaultFunctionArrayConversion(RefExpr.take());
3992 if (RefExpr.isInvalid())
3993 return ExprError();
Douglas Gregorb7a09262010-04-01 18:32:35 +00003994
3995 return move(RefExpr);
Douglas Gregor02024a92010-03-28 02:42:43 +00003996 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003997
Douglas Gregorb7a09262010-04-01 18:32:35 +00003998 // Take the address of everything else
John McCall2de56d12010-08-25 11:45:40 +00003999 return CreateBuiltinUnaryOp(Loc, UO_AddrOf, RefExpr.get());
Douglas Gregor02024a92010-03-28 02:42:43 +00004000 }
4001
John McCallf89e55a2010-11-18 06:31:45 +00004002 ExprValueKind VK = VK_RValue;
4003
Douglas Gregor02024a92010-03-28 02:42:43 +00004004 // If the non-type template parameter has reference type, qualify the
4005 // resulting declaration reference with the extra qualifiers on the
4006 // type that the reference refers to.
John McCallf89e55a2010-11-18 06:31:45 +00004007 if (const ReferenceType *TargetRef = ParamType->getAs<ReferenceType>()) {
4008 VK = VK_LValue;
4009 T = Context.getQualifiedType(T,
4010 TargetRef->getPointeeType().getQualifiers());
4011 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004012
John McCallf89e55a2010-11-18 06:31:45 +00004013 return BuildDeclRefExpr(VD, T, VK, Loc);
Douglas Gregor02024a92010-03-28 02:42:43 +00004014}
4015
4016/// \brief Construct a new expression that refers to the given
4017/// integral template argument with the given source-location
4018/// information.
4019///
4020/// This routine takes care of the mapping from an integral template
4021/// argument (which may have any integral type) to the appropriate
4022/// literal value.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004023ExprResult
Douglas Gregor02024a92010-03-28 02:42:43 +00004024Sema::BuildExpressionFromIntegralTemplateArgument(const TemplateArgument &Arg,
4025 SourceLocation Loc) {
4026 assert(Arg.getKind() == TemplateArgument::Integral &&
Douglas Gregord3731192011-01-10 07:32:04 +00004027 "Operation is only valid for integral template arguments");
Douglas Gregor02024a92010-03-28 02:42:43 +00004028 QualType T = Arg.getIntegralType();
4029 if (T->isCharType() || T->isWideCharType())
4030 return Owned(new (Context) CharacterLiteral(
4031 Arg.getAsIntegral()->getZExtValue(),
Chris Lattner223de242011-04-25 20:37:58 +00004032 T->isWideCharType(), T, Loc));
Douglas Gregor02024a92010-03-28 02:42:43 +00004033 if (T->isBooleanType())
4034 return Owned(new (Context) CXXBoolLiteralExpr(
4035 Arg.getAsIntegral()->getBoolValue(),
Chris Lattner223de242011-04-25 20:37:58 +00004036 T, Loc));
Douglas Gregor02024a92010-03-28 02:42:43 +00004037
Chris Lattner223de242011-04-25 20:37:58 +00004038 // If this is an enum type that we're instantiating, we need to use an integer
4039 // type the same size as the enumerator. We don't want to build an
4040 // IntegerLiteral with enum type.
Peter Collingbournefb7b3632010-12-15 15:06:14 +00004041 QualType BT;
4042 if (const EnumType *ET = T->getAs<EnumType>())
Chris Lattner223de242011-04-25 20:37:58 +00004043 BT = ET->getDecl()->getIntegerType();
Peter Collingbournefb7b3632010-12-15 15:06:14 +00004044 else
4045 BT = T;
4046
4047 Expr *E = IntegerLiteral::Create(Context, *Arg.getAsIntegral(), BT, Loc);
Douglas Gregor8f5667d2011-02-18 02:12:44 +00004048 if (T->isEnumeralType()) {
4049 // FIXME: This is a hack. We need a better way to handle substituted
4050 // non-type template parameters.
Chris Lattner223de242011-04-25 20:37:58 +00004051 E = CStyleCastExpr::Create(Context, T, VK_RValue, CK_IntegralCast, E, 0,
4052 Context.getTrivialTypeSourceInfo(T, Loc),
4053 Loc, Loc);
Douglas Gregor8f5667d2011-02-18 02:12:44 +00004054 }
4055
Peter Collingbournefb7b3632010-12-15 15:06:14 +00004056 return Owned(E);
Douglas Gregor02024a92010-03-28 02:42:43 +00004057}
4058
Douglas Gregorab7ddf02011-01-12 23:45:44 +00004059/// \brief Match two template parameters within template parameter lists.
4060static bool MatchTemplateParameterKind(Sema &S, NamedDecl *New, NamedDecl *Old,
4061 bool Complain,
4062 Sema::TemplateParameterListEqualKind Kind,
4063 SourceLocation TemplateArgLoc) {
4064 // Check the actual kind (type, non-type, template).
4065 if (Old->getKind() != New->getKind()) {
4066 if (Complain) {
4067 unsigned NextDiag = diag::err_template_param_different_kind;
4068 if (TemplateArgLoc.isValid()) {
4069 S.Diag(TemplateArgLoc, diag::err_template_arg_template_params_mismatch);
4070 NextDiag = diag::note_template_param_different_kind;
4071 }
4072 S.Diag(New->getLocation(), NextDiag)
4073 << (Kind != Sema::TPL_TemplateMatch);
4074 S.Diag(Old->getLocation(), diag::note_template_prev_declaration)
4075 << (Kind != Sema::TPL_TemplateMatch);
4076 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004077
Douglas Gregorab7ddf02011-01-12 23:45:44 +00004078 return false;
4079 }
4080
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004081 // Check that both are parameter packs are neither are parameter packs.
4082 // However, if we are matching a template template argument to a
Douglas Gregora0347822011-01-13 00:08:50 +00004083 // template template parameter, the template template parameter can have
4084 // a parameter pack where the template template argument does not.
4085 if (Old->isTemplateParameterPack() != New->isTemplateParameterPack() &&
4086 !(Kind == Sema::TPL_TemplateTemplateArgumentMatch &&
4087 Old->isTemplateParameterPack())) {
Douglas Gregorab7ddf02011-01-12 23:45:44 +00004088 if (Complain) {
4089 unsigned NextDiag = diag::err_template_parameter_pack_non_pack;
4090 if (TemplateArgLoc.isValid()) {
4091 S.Diag(TemplateArgLoc,
4092 diag::err_template_arg_template_params_mismatch);
4093 NextDiag = diag::note_template_parameter_pack_non_pack;
4094 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004095
Douglas Gregorab7ddf02011-01-12 23:45:44 +00004096 unsigned ParamKind = isa<TemplateTypeParmDecl>(New)? 0
4097 : isa<NonTypeTemplateParmDecl>(New)? 1
4098 : 2;
4099 S.Diag(New->getLocation(), NextDiag)
4100 << ParamKind << New->isParameterPack();
4101 S.Diag(Old->getLocation(), diag::note_template_parameter_pack_here)
4102 << ParamKind << Old->isParameterPack();
4103 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004104
Douglas Gregorab7ddf02011-01-12 23:45:44 +00004105 return false;
4106 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004107
Douglas Gregorab7ddf02011-01-12 23:45:44 +00004108 // For non-type template parameters, check the type of the parameter.
4109 if (NonTypeTemplateParmDecl *OldNTTP
4110 = dyn_cast<NonTypeTemplateParmDecl>(Old)) {
4111 NonTypeTemplateParmDecl *NewNTTP = cast<NonTypeTemplateParmDecl>(New);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004112
Douglas Gregorab7ddf02011-01-12 23:45:44 +00004113 // If we are matching a template template argument to a template
4114 // template parameter and one of the non-type template parameter types
4115 // is dependent, then we must wait until template instantiation time
4116 // to actually compare the arguments.
4117 if (Kind == Sema::TPL_TemplateTemplateArgumentMatch &&
4118 (OldNTTP->getType()->isDependentType() ||
4119 NewNTTP->getType()->isDependentType()))
4120 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004121
Douglas Gregorab7ddf02011-01-12 23:45:44 +00004122 if (!S.Context.hasSameType(OldNTTP->getType(), NewNTTP->getType())) {
4123 if (Complain) {
4124 unsigned NextDiag = diag::err_template_nontype_parm_different_type;
4125 if (TemplateArgLoc.isValid()) {
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004126 S.Diag(TemplateArgLoc,
Douglas Gregorab7ddf02011-01-12 23:45:44 +00004127 diag::err_template_arg_template_params_mismatch);
4128 NextDiag = diag::note_template_nontype_parm_different_type;
4129 }
4130 S.Diag(NewNTTP->getLocation(), NextDiag)
4131 << NewNTTP->getType()
4132 << (Kind != Sema::TPL_TemplateMatch);
4133 S.Diag(OldNTTP->getLocation(),
4134 diag::note_template_nontype_parm_prev_declaration)
4135 << OldNTTP->getType();
4136 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004137
Douglas Gregorab7ddf02011-01-12 23:45:44 +00004138 return false;
4139 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004140
Douglas Gregorab7ddf02011-01-12 23:45:44 +00004141 return true;
4142 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004143
Douglas Gregorab7ddf02011-01-12 23:45:44 +00004144 // For template template parameters, check the template parameter types.
4145 // The template parameter lists of template template
4146 // parameters must agree.
4147 if (TemplateTemplateParmDecl *OldTTP
4148 = dyn_cast<TemplateTemplateParmDecl>(Old)) {
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004149 TemplateTemplateParmDecl *NewTTP = cast<TemplateTemplateParmDecl>(New);
Douglas Gregorab7ddf02011-01-12 23:45:44 +00004150 return S.TemplateParameterListsAreEqual(NewTTP->getTemplateParameters(),
4151 OldTTP->getTemplateParameters(),
4152 Complain,
4153 (Kind == Sema::TPL_TemplateMatch
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004154 ? Sema::TPL_TemplateTemplateParmMatch
Douglas Gregorab7ddf02011-01-12 23:45:44 +00004155 : Kind),
4156 TemplateArgLoc);
4157 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004158
Douglas Gregorab7ddf02011-01-12 23:45:44 +00004159 return true;
4160}
Douglas Gregor02024a92010-03-28 02:42:43 +00004161
Douglas Gregora0347822011-01-13 00:08:50 +00004162/// \brief Diagnose a known arity mismatch when comparing template argument
4163/// lists.
4164static
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004165void DiagnoseTemplateParameterListArityMismatch(Sema &S,
Douglas Gregora0347822011-01-13 00:08:50 +00004166 TemplateParameterList *New,
4167 TemplateParameterList *Old,
4168 Sema::TemplateParameterListEqualKind Kind,
4169 SourceLocation TemplateArgLoc) {
4170 unsigned NextDiag = diag::err_template_param_list_different_arity;
4171 if (TemplateArgLoc.isValid()) {
4172 S.Diag(TemplateArgLoc, diag::err_template_arg_template_params_mismatch);
4173 NextDiag = diag::note_template_param_list_different_arity;
4174 }
4175 S.Diag(New->getTemplateLoc(), NextDiag)
4176 << (New->size() > Old->size())
4177 << (Kind != Sema::TPL_TemplateMatch)
4178 << SourceRange(New->getTemplateLoc(), New->getRAngleLoc());
4179 S.Diag(Old->getTemplateLoc(), diag::note_template_prev_declaration)
4180 << (Kind != Sema::TPL_TemplateMatch)
4181 << SourceRange(Old->getTemplateLoc(), Old->getRAngleLoc());
4182}
4183
Douglas Gregorddc29e12009-02-06 22:42:48 +00004184/// \brief Determine whether the given template parameter lists are
4185/// equivalent.
4186///
Mike Stump1eb44332009-09-09 15:08:12 +00004187/// \param New The new template parameter list, typically written in the
Douglas Gregorddc29e12009-02-06 22:42:48 +00004188/// source code as part of a new template declaration.
4189///
4190/// \param Old The old template parameter list, typically found via
4191/// name lookup of the template declared with this template parameter
4192/// list.
4193///
4194/// \param Complain If true, this routine will produce a diagnostic if
4195/// the template parameter lists are not equivalent.
4196///
Douglas Gregorfb898e12009-11-12 16:20:59 +00004197/// \param Kind describes how we are to match the template parameter lists.
Douglas Gregordd0574e2009-02-10 00:24:35 +00004198///
4199/// \param TemplateArgLoc If this source location is valid, then we
4200/// are actually checking the template parameter list of a template
4201/// argument (New) against the template parameter list of its
4202/// corresponding template template parameter (Old). We produce
4203/// slightly different diagnostics in this scenario.
4204///
Douglas Gregorddc29e12009-02-06 22:42:48 +00004205/// \returns True if the template parameter lists are equal, false
4206/// otherwise.
Mike Stump1eb44332009-09-09 15:08:12 +00004207bool
Douglas Gregorddc29e12009-02-06 22:42:48 +00004208Sema::TemplateParameterListsAreEqual(TemplateParameterList *New,
4209 TemplateParameterList *Old,
4210 bool Complain,
Douglas Gregorfb898e12009-11-12 16:20:59 +00004211 TemplateParameterListEqualKind Kind,
Douglas Gregordd0574e2009-02-10 00:24:35 +00004212 SourceLocation TemplateArgLoc) {
Douglas Gregora0347822011-01-13 00:08:50 +00004213 if (Old->size() != New->size() && Kind != TPL_TemplateTemplateArgumentMatch) {
4214 if (Complain)
4215 DiagnoseTemplateParameterListArityMismatch(*this, New, Old, Kind,
4216 TemplateArgLoc);
Douglas Gregorddc29e12009-02-06 22:42:48 +00004217
4218 return false;
4219 }
4220
Douglas Gregorab7ddf02011-01-12 23:45:44 +00004221 // C++0x [temp.arg.template]p3:
4222 // A template-argument matches a template template-parameter (call it P)
NAKAMURA Takumi00995302011-01-27 07:09:49 +00004223 // when each of the template parameters in the template-parameter-list of
Richard Smith3e4c6c42011-05-05 21:57:07 +00004224 // the template-argument's corresponding class template or alias template
NAKAMURA Takumi00995302011-01-27 07:09:49 +00004225 // (call it A) matches the corresponding template parameter in the
Douglas Gregora0347822011-01-13 00:08:50 +00004226 // template-parameter-list of P. [...]
4227 TemplateParameterList::iterator NewParm = New->begin();
4228 TemplateParameterList::iterator NewParmEnd = New->end();
Douglas Gregorddc29e12009-02-06 22:42:48 +00004229 for (TemplateParameterList::iterator OldParm = Old->begin(),
Douglas Gregora0347822011-01-13 00:08:50 +00004230 OldParmEnd = Old->end();
4231 OldParm != OldParmEnd; ++OldParm) {
Douglas Gregorc421f542011-01-13 18:47:47 +00004232 if (Kind != TPL_TemplateTemplateArgumentMatch ||
4233 !(*OldParm)->isTemplateParameterPack()) {
Douglas Gregora0347822011-01-13 00:08:50 +00004234 if (NewParm == NewParmEnd) {
4235 if (Complain)
4236 DiagnoseTemplateParameterListArityMismatch(*this, New, Old, Kind,
4237 TemplateArgLoc);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004238
Douglas Gregora0347822011-01-13 00:08:50 +00004239 return false;
4240 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004241
Douglas Gregora0347822011-01-13 00:08:50 +00004242 if (!MatchTemplateParameterKind(*this, *NewParm, *OldParm, Complain,
4243 Kind, TemplateArgLoc))
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004244 return false;
4245
Douglas Gregora0347822011-01-13 00:08:50 +00004246 ++NewParm;
4247 continue;
4248 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004249
Douglas Gregora0347822011-01-13 00:08:50 +00004250 // C++0x [temp.arg.template]p3:
NAKAMURA Takumi00995302011-01-27 07:09:49 +00004251 // [...] When P's template- parameter-list contains a template parameter
4252 // pack (14.5.3), the template parameter pack will match zero or more
4253 // template parameters or template parameter packs in the
Douglas Gregora0347822011-01-13 00:08:50 +00004254 // template-parameter-list of A with the same type and form as the
4255 // template parameter pack in P (ignoring whether those template
4256 // parameters are template parameter packs).
4257 for (; NewParm != NewParmEnd; ++NewParm) {
4258 if (!MatchTemplateParameterKind(*this, *NewParm, *OldParm, Complain,
4259 Kind, TemplateArgLoc))
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004260 return false;
Douglas Gregora0347822011-01-13 00:08:50 +00004261 }
Douglas Gregorddc29e12009-02-06 22:42:48 +00004262 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004263
Douglas Gregora0347822011-01-13 00:08:50 +00004264 // Make sure we exhausted all of the arguments.
4265 if (NewParm != NewParmEnd) {
4266 if (Complain)
4267 DiagnoseTemplateParameterListArityMismatch(*this, New, Old, Kind,
4268 TemplateArgLoc);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004269
Douglas Gregora0347822011-01-13 00:08:50 +00004270 return false;
4271 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004272
Douglas Gregorddc29e12009-02-06 22:42:48 +00004273 return true;
4274}
4275
4276/// \brief Check whether a template can be declared within this scope.
4277///
4278/// If the template declaration is valid in this scope, returns
4279/// false. Otherwise, issues a diagnostic and returns true.
Mike Stump1eb44332009-09-09 15:08:12 +00004280bool
Douglas Gregor05396e22009-08-25 17:23:04 +00004281Sema::CheckTemplateDeclScope(Scope *S, TemplateParameterList *TemplateParams) {
Douglas Gregorddc29e12009-02-06 22:42:48 +00004282 // Find the nearest enclosing declaration scope.
4283 while ((S->getFlags() & Scope::DeclScope) == 0 ||
4284 (S->getFlags() & Scope::TemplateParamScope) != 0)
4285 S = S->getParent();
Mike Stump1eb44332009-09-09 15:08:12 +00004286
Douglas Gregorddc29e12009-02-06 22:42:48 +00004287 // C++ [temp]p2:
4288 // A template-declaration can appear only as a namespace scope or
4289 // class scope declaration.
4290 DeclContext *Ctx = static_cast<DeclContext *>(S->getEntity());
Eli Friedman1503f772009-07-31 01:43:05 +00004291 if (Ctx && isa<LinkageSpecDecl>(Ctx) &&
4292 cast<LinkageSpecDecl>(Ctx)->getLanguage() != LinkageSpecDecl::lang_cxx)
Mike Stump1eb44332009-09-09 15:08:12 +00004293 return Diag(TemplateParams->getTemplateLoc(), diag::err_template_linkage)
Douglas Gregor05396e22009-08-25 17:23:04 +00004294 << TemplateParams->getSourceRange();
Mike Stump1eb44332009-09-09 15:08:12 +00004295
Eli Friedman1503f772009-07-31 01:43:05 +00004296 while (Ctx && isa<LinkageSpecDecl>(Ctx))
Douglas Gregorddc29e12009-02-06 22:42:48 +00004297 Ctx = Ctx->getParent();
Douglas Gregorddc29e12009-02-06 22:42:48 +00004298
4299 if (Ctx && (Ctx->isFileContext() || Ctx->isRecord()))
4300 return false;
4301
Mike Stump1eb44332009-09-09 15:08:12 +00004302 return Diag(TemplateParams->getTemplateLoc(),
Douglas Gregor05396e22009-08-25 17:23:04 +00004303 diag::err_template_outside_namespace_or_class_scope)
4304 << TemplateParams->getSourceRange();
Douglas Gregorddc29e12009-02-06 22:42:48 +00004305}
Douglas Gregorcc636682009-02-17 23:15:12 +00004306
Douglas Gregord5cb8762009-10-07 00:13:32 +00004307/// \brief Determine what kind of template specialization the given declaration
4308/// is.
4309static TemplateSpecializationKind getTemplateSpecializationKind(NamedDecl *D) {
4310 if (!D)
4311 return TSK_Undeclared;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004312
Douglas Gregorf6b11852009-10-08 15:14:33 +00004313 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(D))
4314 return Record->getTemplateSpecializationKind();
Douglas Gregord5cb8762009-10-07 00:13:32 +00004315 if (FunctionDecl *Function = dyn_cast<FunctionDecl>(D))
4316 return Function->getTemplateSpecializationKind();
Douglas Gregor251b4ff2009-10-08 07:24:58 +00004317 if (VarDecl *Var = dyn_cast<VarDecl>(D))
4318 return Var->getTemplateSpecializationKind();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004319
Douglas Gregord5cb8762009-10-07 00:13:32 +00004320 return TSK_Undeclared;
4321}
4322
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004323/// \brief Check whether a specialization is well-formed in the current
Douglas Gregor9302da62009-10-14 23:50:59 +00004324/// context.
Douglas Gregor88b70942009-02-25 22:02:03 +00004325///
Douglas Gregor9302da62009-10-14 23:50:59 +00004326/// This routine determines whether a template specialization can be declared
4327/// in the current context (C++ [temp.expl.spec]p2).
Douglas Gregord5cb8762009-10-07 00:13:32 +00004328///
4329/// \param S the semantic analysis object for which this check is being
4330/// performed.
4331///
4332/// \param Specialized the entity being specialized or instantiated, which
4333/// may be a kind of template (class template, function template, etc.) or
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004334/// a member of a class template (member function, static data member,
Douglas Gregord5cb8762009-10-07 00:13:32 +00004335/// member class).
4336///
4337/// \param PrevDecl the previous declaration of this entity, if any.
4338///
4339/// \param Loc the location of the explicit specialization or instantiation of
4340/// this entity.
4341///
4342/// \param IsPartialSpecialization whether this is a partial specialization of
4343/// a class template.
4344///
Douglas Gregord5cb8762009-10-07 00:13:32 +00004345/// \returns true if there was an error that we cannot recover from, false
4346/// otherwise.
4347static bool CheckTemplateSpecializationScope(Sema &S,
4348 NamedDecl *Specialized,
4349 NamedDecl *PrevDecl,
4350 SourceLocation Loc,
Douglas Gregor9302da62009-10-14 23:50:59 +00004351 bool IsPartialSpecialization) {
Douglas Gregord5cb8762009-10-07 00:13:32 +00004352 // Keep these "kind" numbers in sync with the %select statements in the
4353 // various diagnostics emitted by this routine.
4354 int EntityKind = 0;
Ted Kremenekfe62b062011-01-14 22:31:36 +00004355 if (isa<ClassTemplateDecl>(Specialized))
Douglas Gregord5cb8762009-10-07 00:13:32 +00004356 EntityKind = IsPartialSpecialization? 1 : 0;
Ted Kremenekfe62b062011-01-14 22:31:36 +00004357 else if (isa<FunctionTemplateDecl>(Specialized))
Douglas Gregord5cb8762009-10-07 00:13:32 +00004358 EntityKind = 2;
Ted Kremenekfe62b062011-01-14 22:31:36 +00004359 else if (isa<CXXMethodDecl>(Specialized))
Douglas Gregord5cb8762009-10-07 00:13:32 +00004360 EntityKind = 3;
4361 else if (isa<VarDecl>(Specialized))
4362 EntityKind = 4;
4363 else if (isa<RecordDecl>(Specialized))
4364 EntityKind = 5;
4365 else {
Douglas Gregor9302da62009-10-14 23:50:59 +00004366 S.Diag(Loc, diag::err_template_spec_unknown_kind);
4367 S.Diag(Specialized->getLocation(), diag::note_specialized_entity);
Douglas Gregord5cb8762009-10-07 00:13:32 +00004368 return true;
4369 }
4370
Douglas Gregor88b70942009-02-25 22:02:03 +00004371 // C++ [temp.expl.spec]p2:
4372 // An explicit specialization shall be declared in the namespace
4373 // of which the template is a member, or, for member templates, in
4374 // the namespace of which the enclosing class or enclosing class
4375 // template is a member. An explicit specialization of a member
4376 // function, member class or static data member of a class
4377 // template shall be declared in the namespace of which the class
4378 // template is a member. Such a declaration may also be a
4379 // definition. If the declaration is not a definition, the
4380 // specialization may be defined later in the name- space in which
4381 // the explicit specialization was declared, or in a namespace
4382 // that encloses the one in which the explicit specialization was
4383 // declared.
Sebastian Redl7a126a42010-08-31 00:36:30 +00004384 if (S.CurContext->getRedeclContext()->isFunctionOrMethod()) {
Douglas Gregord5cb8762009-10-07 00:13:32 +00004385 S.Diag(Loc, diag::err_template_spec_decl_function_scope)
Douglas Gregor9302da62009-10-14 23:50:59 +00004386 << Specialized;
Douglas Gregor88b70942009-02-25 22:02:03 +00004387 return true;
4388 }
Douglas Gregor7974c3b2009-10-07 17:21:34 +00004389
Douglas Gregor0a407472009-10-07 17:30:37 +00004390 if (S.CurContext->isRecord() && !IsPartialSpecialization) {
4391 S.Diag(Loc, diag::err_template_spec_decl_class_scope)
Douglas Gregor9302da62009-10-14 23:50:59 +00004392 << Specialized;
Douglas Gregor0a407472009-10-07 17:30:37 +00004393 return true;
4394 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004395
Douglas Gregor7974c3b2009-10-07 17:21:34 +00004396 // C++ [temp.class.spec]p6:
4397 // A class template partial specialization may be declared or redeclared
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004398 // in any namespace scope in which its definition may be defined (14.5.1
4399 // and 14.5.2).
Douglas Gregord5cb8762009-10-07 00:13:32 +00004400 bool ComplainedAboutScope = false;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004401 DeclContext *SpecializedContext
Douglas Gregord5cb8762009-10-07 00:13:32 +00004402 = Specialized->getDeclContext()->getEnclosingNamespaceContext();
Douglas Gregor7974c3b2009-10-07 17:21:34 +00004403 DeclContext *DC = S.CurContext->getEnclosingNamespaceContext();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004404 if ((!PrevDecl ||
Douglas Gregor9302da62009-10-14 23:50:59 +00004405 getTemplateSpecializationKind(PrevDecl) == TSK_Undeclared ||
4406 getTemplateSpecializationKind(PrevDecl) == TSK_ImplicitInstantiation)){
Douglas Gregor121dc9a2010-09-12 05:08:28 +00004407 // C++ [temp.exp.spec]p2:
4408 // An explicit specialization shall be declared in the namespace of which
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004409 // the template is a member, or, for member templates, in the namespace
Douglas Gregor121dc9a2010-09-12 05:08:28 +00004410 // of which the enclosing class or enclosing class template is a member.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004411 // An explicit specialization of a member function, member class or
4412 // static data member of a class template shall be declared in the
Douglas Gregor121dc9a2010-09-12 05:08:28 +00004413 // namespace of which the class template is a member.
4414 //
4415 // C++0x [temp.expl.spec]p2:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004416 // An explicit specialization shall be declared in a namespace enclosing
Douglas Gregor121dc9a2010-09-12 05:08:28 +00004417 // the specialized template.
4418 if (!DC->InEnclosingNamespaceSetOf(SpecializedContext) &&
4419 !(S.getLangOptions().CPlusPlus0x && DC->Encloses(SpecializedContext))) {
Douglas Gregora4d5de52010-09-12 05:24:55 +00004420 bool IsCPlusPlus0xExtension
4421 = !S.getLangOptions().CPlusPlus0x && DC->Encloses(SpecializedContext);
Douglas Gregor9302da62009-10-14 23:50:59 +00004422 if (isa<TranslationUnitDecl>(SpecializedContext))
Douglas Gregora4d5de52010-09-12 05:24:55 +00004423 S.Diag(Loc, IsCPlusPlus0xExtension
4424 ? diag::ext_template_spec_decl_out_of_scope_global
4425 : diag::err_template_spec_decl_out_of_scope_global)
4426 << EntityKind << Specialized;
Douglas Gregor9302da62009-10-14 23:50:59 +00004427 else if (isa<NamespaceDecl>(SpecializedContext))
Douglas Gregora4d5de52010-09-12 05:24:55 +00004428 S.Diag(Loc, IsCPlusPlus0xExtension
4429 ? diag::ext_template_spec_decl_out_of_scope
4430 : diag::err_template_spec_decl_out_of_scope)
4431 << EntityKind << Specialized
4432 << cast<NamedDecl>(SpecializedContext);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004433
Douglas Gregor9302da62009-10-14 23:50:59 +00004434 S.Diag(Specialized->getLocation(), diag::note_specialized_entity);
4435 ComplainedAboutScope = true;
Douglas Gregor88b70942009-02-25 22:02:03 +00004436 }
Douglas Gregor88b70942009-02-25 22:02:03 +00004437 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004438
4439 // Make sure that this redeclaration (or definition) occurs in an enclosing
Douglas Gregor9302da62009-10-14 23:50:59 +00004440 // namespace.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004441 // Note that HandleDeclarator() performs this check for explicit
Douglas Gregord5cb8762009-10-07 00:13:32 +00004442 // specializations of function templates, static data members, and member
4443 // functions, so we skip the check here for those kinds of entities.
4444 // FIXME: HandleDeclarator's diagnostics aren't quite as good, though.
Douglas Gregor7974c3b2009-10-07 17:21:34 +00004445 // Should we refactor that check, so that it occurs later?
4446 if (!ComplainedAboutScope && !DC->Encloses(SpecializedContext) &&
Douglas Gregor9302da62009-10-14 23:50:59 +00004447 !(isa<FunctionTemplateDecl>(Specialized) || isa<VarDecl>(Specialized) ||
4448 isa<FunctionDecl>(Specialized))) {
Douglas Gregord5cb8762009-10-07 00:13:32 +00004449 if (isa<TranslationUnitDecl>(SpecializedContext))
4450 S.Diag(Loc, diag::err_template_spec_redecl_global_scope)
4451 << EntityKind << Specialized;
4452 else if (isa<NamespaceDecl>(SpecializedContext))
4453 S.Diag(Loc, diag::err_template_spec_redecl_out_of_scope)
4454 << EntityKind << Specialized
4455 << cast<NamedDecl>(SpecializedContext);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004456
Douglas Gregor9302da62009-10-14 23:50:59 +00004457 S.Diag(Specialized->getLocation(), diag::note_specialized_entity);
Douglas Gregor88b70942009-02-25 22:02:03 +00004458 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004459
Douglas Gregord5cb8762009-10-07 00:13:32 +00004460 // FIXME: check for specialization-after-instantiation errors and such.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004461
Douglas Gregor88b70942009-02-25 22:02:03 +00004462 return false;
4463}
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004464
Douglas Gregorbacb9492011-01-03 21:13:47 +00004465/// \brief Subroutine of Sema::CheckClassTemplatePartialSpecializationArgs
4466/// that checks non-type template partial specialization arguments.
4467static bool CheckNonTypeClassTemplatePartialSpecializationArgs(Sema &S,
4468 NonTypeTemplateParmDecl *Param,
4469 const TemplateArgument *Args,
4470 unsigned NumArgs) {
4471 for (unsigned I = 0; I != NumArgs; ++I) {
4472 if (Args[I].getKind() == TemplateArgument::Pack) {
4473 if (CheckNonTypeClassTemplatePartialSpecializationArgs(S, Param,
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004474 Args[I].pack_begin(),
Douglas Gregorbacb9492011-01-03 21:13:47 +00004475 Args[I].pack_size()))
4476 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004477
Douglas Gregore94866f2009-06-12 21:21:02 +00004478 continue;
Douglas Gregorbacb9492011-01-03 21:13:47 +00004479 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004480
Douglas Gregorbacb9492011-01-03 21:13:47 +00004481 Expr *ArgExpr = Args[I].getAsExpr();
Douglas Gregor6aa75cf2009-06-12 22:08:06 +00004482 if (!ArgExpr) {
Douglas Gregore94866f2009-06-12 21:21:02 +00004483 continue;
Douglas Gregor6aa75cf2009-06-12 22:08:06 +00004484 }
Douglas Gregore94866f2009-06-12 21:21:02 +00004485
Douglas Gregor7a21fd42011-01-03 21:37:45 +00004486 // We can have a pack expansion of any of the bullets below.
Douglas Gregorbacb9492011-01-03 21:13:47 +00004487 if (PackExpansionExpr *Expansion = dyn_cast<PackExpansionExpr>(ArgExpr))
4488 ArgExpr = Expansion->getPattern();
Douglas Gregor54c53cc2011-01-04 23:35:54 +00004489
4490 // Strip off any implicit casts we added as part of type checking.
4491 while (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(ArgExpr))
4492 ArgExpr = ICE->getSubExpr();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004493
Douglas Gregore94866f2009-06-12 21:21:02 +00004494 // C++ [temp.class.spec]p8:
4495 // A non-type argument is non-specialized if it is the name of a
4496 // non-type parameter. All other non-type arguments are
4497 // specialized.
4498 //
4499 // Below, we check the two conditions that only apply to
4500 // specialized non-type arguments, so skip any non-specialized
4501 // arguments.
4502 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(ArgExpr))
Douglas Gregor54c53cc2011-01-04 23:35:54 +00004503 if (isa<NonTypeTemplateParmDecl>(DRE->getDecl()))
Douglas Gregore94866f2009-06-12 21:21:02 +00004504 continue;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004505
Douglas Gregore94866f2009-06-12 21:21:02 +00004506 // C++ [temp.class.spec]p9:
4507 // Within the argument list of a class template partial
4508 // specialization, the following restrictions apply:
4509 // -- A partially specialized non-type argument expression
4510 // shall not involve a template parameter of the partial
4511 // specialization except when the argument expression is a
4512 // simple identifier.
4513 if (ArgExpr->isTypeDependent() || ArgExpr->isValueDependent()) {
Douglas Gregorbacb9492011-01-03 21:13:47 +00004514 S.Diag(ArgExpr->getLocStart(),
Douglas Gregore94866f2009-06-12 21:21:02 +00004515 diag::err_dependent_non_type_arg_in_partial_spec)
4516 << ArgExpr->getSourceRange();
4517 return true;
4518 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004519
Douglas Gregore94866f2009-06-12 21:21:02 +00004520 // -- The type of a template parameter corresponding to a
4521 // specialized non-type argument shall not be dependent on a
4522 // parameter of the specialization.
4523 if (Param->getType()->isDependentType()) {
Douglas Gregorbacb9492011-01-03 21:13:47 +00004524 S.Diag(ArgExpr->getLocStart(),
Douglas Gregore94866f2009-06-12 21:21:02 +00004525 diag::err_dependent_typed_non_type_arg_in_partial_spec)
4526 << Param->getType()
4527 << ArgExpr->getSourceRange();
Douglas Gregorbacb9492011-01-03 21:13:47 +00004528 S.Diag(Param->getLocation(), diag::note_template_param_here);
Douglas Gregore94866f2009-06-12 21:21:02 +00004529 return true;
4530 }
4531 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004532
Douglas Gregorbacb9492011-01-03 21:13:47 +00004533 return false;
4534}
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004535
Douglas Gregorbacb9492011-01-03 21:13:47 +00004536/// \brief Check the non-type template arguments of a class template
4537/// partial specialization according to C++ [temp.class.spec]p9.
4538///
4539/// \param TemplateParams the template parameters of the primary class
4540/// template.
4541///
4542/// \param TemplateArg the template arguments of the class template
4543/// partial specialization.
4544///
4545/// \returns true if there was an error, false otherwise.
4546static bool CheckClassTemplatePartialSpecializationArgs(Sema &S,
4547 TemplateParameterList *TemplateParams,
4548 llvm::SmallVectorImpl<TemplateArgument> &TemplateArgs) {
4549 const TemplateArgument *ArgList = TemplateArgs.data();
4550
4551 for (unsigned I = 0, N = TemplateParams->size(); I != N; ++I) {
4552 NonTypeTemplateParmDecl *Param
4553 = dyn_cast<NonTypeTemplateParmDecl>(TemplateParams->getParam(I));
4554 if (!Param)
4555 continue;
4556
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004557 if (CheckNonTypeClassTemplatePartialSpecializationArgs(S, Param,
Douglas Gregorbacb9492011-01-03 21:13:47 +00004558 &ArgList[I], 1))
4559 return true;
4560 }
Douglas Gregore94866f2009-06-12 21:21:02 +00004561
4562 return false;
4563}
4564
Douglas Gregordc0a11c2010-02-26 06:03:23 +00004565/// \brief Retrieve the previous declaration of the given declaration.
4566static NamedDecl *getPreviousDecl(NamedDecl *ND) {
4567 if (VarDecl *VD = dyn_cast<VarDecl>(ND))
4568 return VD->getPreviousDeclaration();
4569 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(ND))
4570 return FD->getPreviousDeclaration();
4571 if (TagDecl *TD = dyn_cast<TagDecl>(ND))
4572 return TD->getPreviousDeclaration();
Richard Smith162e1c12011-04-15 14:24:37 +00004573 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(ND))
Douglas Gregordc0a11c2010-02-26 06:03:23 +00004574 return TD->getPreviousDeclaration();
4575 if (FunctionTemplateDecl *FTD = dyn_cast<FunctionTemplateDecl>(ND))
4576 return FTD->getPreviousDeclaration();
4577 if (ClassTemplateDecl *CTD = dyn_cast<ClassTemplateDecl>(ND))
4578 return CTD->getPreviousDeclaration();
4579 return 0;
4580}
4581
John McCalld226f652010-08-21 09:40:31 +00004582DeclResult
John McCall0f434ec2009-07-31 02:45:11 +00004583Sema::ActOnClassTemplateSpecialization(Scope *S, unsigned TagSpec,
4584 TagUseKind TUK,
Mike Stump1eb44332009-09-09 15:08:12 +00004585 SourceLocation KWLoc,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00004586 CXXScopeSpec &SS,
Douglas Gregor7532dc62009-03-30 22:58:21 +00004587 TemplateTy TemplateD,
Douglas Gregorcc636682009-02-17 23:15:12 +00004588 SourceLocation TemplateNameLoc,
4589 SourceLocation LAngleLoc,
Douglas Gregor40808ce2009-03-09 23:48:35 +00004590 ASTTemplateArgsPtr TemplateArgsIn,
Douglas Gregorcc636682009-02-17 23:15:12 +00004591 SourceLocation RAngleLoc,
4592 AttributeList *Attr,
4593 MultiTemplateParamsArg TemplateParameterLists) {
Douglas Gregorfc9cd612009-09-26 20:57:03 +00004594 assert(TUK != TUK_Reference && "References are not specializations");
John McCallf1bbbb42009-09-04 01:14:41 +00004595
Abramo Bagnara7f0a9152011-03-18 15:16:37 +00004596 // NOTE: KWLoc is the location of the tag keyword. This will instead
4597 // store the location of the outermost template keyword in the declaration.
4598 SourceLocation TemplateKWLoc = TemplateParameterLists.size() > 0
4599 ? TemplateParameterLists.get()[0]->getTemplateLoc() : SourceLocation();
4600
Douglas Gregorcc636682009-02-17 23:15:12 +00004601 // Find the class template we're specializing
Douglas Gregor7532dc62009-03-30 22:58:21 +00004602 TemplateName Name = TemplateD.getAsVal<TemplateName>();
Mike Stump1eb44332009-09-09 15:08:12 +00004603 ClassTemplateDecl *ClassTemplate
Douglas Gregor8b13c082009-11-12 00:46:20 +00004604 = dyn_cast_or_null<ClassTemplateDecl>(Name.getAsTemplateDecl());
4605
4606 if (!ClassTemplate) {
4607 Diag(TemplateNameLoc, diag::err_not_class_template_specialization)
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004608 << (Name.getAsTemplateDecl() &&
Douglas Gregor8b13c082009-11-12 00:46:20 +00004609 isa<TemplateTemplateParmDecl>(Name.getAsTemplateDecl()));
4610 return true;
4611 }
Douglas Gregorcc636682009-02-17 23:15:12 +00004612
Douglas Gregor1fef4e62009-10-07 22:35:40 +00004613 bool isExplicitSpecialization = false;
Douglas Gregorc8ab2562009-05-31 09:31:02 +00004614 bool isPartialSpecialization = false;
4615
Douglas Gregor88b70942009-02-25 22:02:03 +00004616 // Check the validity of the template headers that introduce this
4617 // template.
Douglas Gregorfc9cd612009-09-26 20:57:03 +00004618 // FIXME: We probably shouldn't complain about these headers for
4619 // friend declarations.
Douglas Gregor0167f3c2010-07-14 23:14:12 +00004620 bool Invalid = false;
Douglas Gregor05396e22009-08-25 17:23:04 +00004621 TemplateParameterList *TemplateParams
Douglas Gregorc8406492011-05-10 18:27:06 +00004622 = MatchTemplateParametersToScopeSpecifier(TemplateNameLoc,
4623 TemplateNameLoc,
4624 SS,
Mike Stump1eb44332009-09-09 15:08:12 +00004625 (TemplateParameterList**)TemplateParameterLists.get(),
Douglas Gregor1fef4e62009-10-07 22:35:40 +00004626 TemplateParameterLists.size(),
John McCall77e8b112010-04-13 20:37:33 +00004627 TUK == TUK_Friend,
Douglas Gregor0167f3c2010-07-14 23:14:12 +00004628 isExplicitSpecialization,
4629 Invalid);
4630 if (Invalid)
4631 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004632
Douglas Gregor05396e22009-08-25 17:23:04 +00004633 if (TemplateParams && TemplateParams->size() > 0) {
4634 isPartialSpecialization = true;
Douglas Gregor88b70942009-02-25 22:02:03 +00004635
Douglas Gregorb0ee93c2010-12-21 08:14:57 +00004636 if (TUK == TUK_Friend) {
4637 Diag(KWLoc, diag::err_partial_specialization_friend)
4638 << SourceRange(LAngleLoc, RAngleLoc);
4639 return true;
4640 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004641
Douglas Gregor05396e22009-08-25 17:23:04 +00004642 // C++ [temp.class.spec]p10:
4643 // The template parameter list of a specialization shall not
4644 // contain default template argument values.
4645 for (unsigned I = 0, N = TemplateParams->size(); I != N; ++I) {
4646 Decl *Param = TemplateParams->getParam(I);
4647 if (TemplateTypeParmDecl *TTP = dyn_cast<TemplateTypeParmDecl>(Param)) {
4648 if (TTP->hasDefaultArgument()) {
Mike Stump1eb44332009-09-09 15:08:12 +00004649 Diag(TTP->getDefaultArgumentLoc(),
Douglas Gregor05396e22009-08-25 17:23:04 +00004650 diag::err_default_arg_in_partial_spec);
John McCall833ca992009-10-29 08:12:44 +00004651 TTP->removeDefaultArgument();
Douglas Gregor05396e22009-08-25 17:23:04 +00004652 }
4653 } else if (NonTypeTemplateParmDecl *NTTP
4654 = dyn_cast<NonTypeTemplateParmDecl>(Param)) {
4655 if (Expr *DefArg = NTTP->getDefaultArgument()) {
Mike Stump1eb44332009-09-09 15:08:12 +00004656 Diag(NTTP->getDefaultArgumentLoc(),
Douglas Gregor05396e22009-08-25 17:23:04 +00004657 diag::err_default_arg_in_partial_spec)
4658 << DefArg->getSourceRange();
Abramo Bagnarad92f7a22010-06-09 09:26:05 +00004659 NTTP->removeDefaultArgument();
Douglas Gregor05396e22009-08-25 17:23:04 +00004660 }
4661 } else {
4662 TemplateTemplateParmDecl *TTP = cast<TemplateTemplateParmDecl>(Param);
Douglas Gregor788cd062009-11-11 01:00:40 +00004663 if (TTP->hasDefaultArgument()) {
4664 Diag(TTP->getDefaultArgument().getLocation(),
Douglas Gregor05396e22009-08-25 17:23:04 +00004665 diag::err_default_arg_in_partial_spec)
Douglas Gregor788cd062009-11-11 01:00:40 +00004666 << TTP->getDefaultArgument().getSourceRange();
Abramo Bagnarad92f7a22010-06-09 09:26:05 +00004667 TTP->removeDefaultArgument();
Douglas Gregorba1ecb52009-06-12 19:43:02 +00004668 }
4669 }
4670 }
Douglas Gregora735b202009-10-13 14:39:41 +00004671 } else if (TemplateParams) {
4672 if (TUK == TUK_Friend)
4673 Diag(KWLoc, diag::err_template_spec_friend)
Douglas Gregor849b2432010-03-31 17:46:05 +00004674 << FixItHint::CreateRemoval(
Douglas Gregora735b202009-10-13 14:39:41 +00004675 SourceRange(TemplateParams->getTemplateLoc(),
4676 TemplateParams->getRAngleLoc()))
4677 << SourceRange(LAngleLoc, RAngleLoc);
4678 else
4679 isExplicitSpecialization = true;
4680 } else if (TUK != TUK_Friend) {
Douglas Gregor05396e22009-08-25 17:23:04 +00004681 Diag(KWLoc, diag::err_template_spec_needs_header)
Douglas Gregor849b2432010-03-31 17:46:05 +00004682 << FixItHint::CreateInsertion(KWLoc, "template<> ");
Douglas Gregor1fef4e62009-10-07 22:35:40 +00004683 isExplicitSpecialization = true;
4684 }
Douglas Gregor88b70942009-02-25 22:02:03 +00004685
Douglas Gregorcc636682009-02-17 23:15:12 +00004686 // Check that the specialization uses the same tag kind as the
4687 // original template.
Abramo Bagnara465d41b2010-05-11 21:36:43 +00004688 TagTypeKind Kind = TypeWithKeyword::getTagTypeKindForTypeSpec(TagSpec);
4689 assert(Kind != TTK_Enum && "Invalid enum tag in class template spec!");
Douglas Gregor501c5ce2009-05-14 16:41:31 +00004690 if (!isAcceptableTagRedeclaration(ClassTemplate->getTemplatedDecl(),
Mike Stump1eb44332009-09-09 15:08:12 +00004691 Kind, KWLoc,
Douglas Gregor501c5ce2009-05-14 16:41:31 +00004692 *ClassTemplate->getIdentifier())) {
Mike Stump1eb44332009-09-09 15:08:12 +00004693 Diag(KWLoc, diag::err_use_with_wrong_tag)
Douglas Gregora3a83512009-04-01 23:51:29 +00004694 << ClassTemplate
Douglas Gregor849b2432010-03-31 17:46:05 +00004695 << FixItHint::CreateReplacement(KWLoc,
Douglas Gregora3a83512009-04-01 23:51:29 +00004696 ClassTemplate->getTemplatedDecl()->getKindName());
Mike Stump1eb44332009-09-09 15:08:12 +00004697 Diag(ClassTemplate->getTemplatedDecl()->getLocation(),
Douglas Gregorcc636682009-02-17 23:15:12 +00004698 diag::note_previous_use);
4699 Kind = ClassTemplate->getTemplatedDecl()->getTagKind();
4700 }
4701
Douglas Gregor40808ce2009-03-09 23:48:35 +00004702 // Translate the parser's template argument list in our AST format.
John McCalld5532b62009-11-23 01:53:49 +00004703 TemplateArgumentListInfo TemplateArgs;
4704 TemplateArgs.setLAngleLoc(LAngleLoc);
4705 TemplateArgs.setRAngleLoc(RAngleLoc);
Douglas Gregor314b97f2009-11-10 19:49:08 +00004706 translateTemplateArguments(TemplateArgsIn, TemplateArgs);
Douglas Gregor40808ce2009-03-09 23:48:35 +00004707
Douglas Gregor925910d2011-01-03 20:35:03 +00004708 // Check for unexpanded parameter packs in any of the template arguments.
4709 for (unsigned I = 0, N = TemplateArgs.size(); I != N; ++I)
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004710 if (DiagnoseUnexpandedParameterPack(TemplateArgs[I],
Douglas Gregor925910d2011-01-03 20:35:03 +00004711 UPPC_PartialSpecialization))
4712 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004713
Douglas Gregorcc636682009-02-17 23:15:12 +00004714 // Check that the template argument list is well-formed for this
4715 // template.
Douglas Gregor910f8002010-11-07 23:05:16 +00004716 llvm::SmallVector<TemplateArgument, 4> Converted;
John McCalld5532b62009-11-23 01:53:49 +00004717 if (CheckTemplateArgumentList(ClassTemplate, TemplateNameLoc,
4718 TemplateArgs, false, Converted))
Douglas Gregor212e81c2009-03-25 00:13:59 +00004719 return true;
Douglas Gregorcc636682009-02-17 23:15:12 +00004720
Douglas Gregor910f8002010-11-07 23:05:16 +00004721 assert((Converted.size() == ClassTemplate->getTemplateParameters()->size()) &&
Douglas Gregorcc636682009-02-17 23:15:12 +00004722 "Converted template argument list is too short!");
Mike Stump1eb44332009-09-09 15:08:12 +00004723
Douglas Gregorc8ab2562009-05-31 09:31:02 +00004724 // Find the class template (partial) specialization declaration that
Douglas Gregorcc636682009-02-17 23:15:12 +00004725 // corresponds to these arguments.
Douglas Gregorba1ecb52009-06-12 19:43:02 +00004726 if (isPartialSpecialization) {
Douglas Gregorbacb9492011-01-03 21:13:47 +00004727 if (CheckClassTemplatePartialSpecializationArgs(*this,
Douglas Gregore94866f2009-06-12 21:21:02 +00004728 ClassTemplate->getTemplateParameters(),
Douglas Gregorb9c66312010-12-23 17:13:55 +00004729 Converted))
Douglas Gregore94866f2009-06-12 21:21:02 +00004730 return true;
4731
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004732 if (!Name.isDependent() &&
Douglas Gregorde090962010-02-09 00:37:32 +00004733 !TemplateSpecializationType::anyDependentTemplateArguments(
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004734 TemplateArgs.getArgumentArray(),
Douglas Gregorde090962010-02-09 00:37:32 +00004735 TemplateArgs.size())) {
4736 Diag(TemplateNameLoc, diag::err_partial_spec_fully_specialized)
4737 << ClassTemplate->getDeclName();
4738 isPartialSpecialization = false;
Douglas Gregorde090962010-02-09 00:37:32 +00004739 }
4740 }
Argyrios Kyrtzidiscc0b1bc2010-07-20 13:59:28 +00004741
Douglas Gregorcc636682009-02-17 23:15:12 +00004742 void *InsertPos = 0;
Douglas Gregorc8ab2562009-05-31 09:31:02 +00004743 ClassTemplateSpecializationDecl *PrevDecl = 0;
4744
4745 if (isPartialSpecialization)
Argyrios Kyrtzidiscc0b1bc2010-07-20 13:59:28 +00004746 // FIXME: Template parameter list matters, too
Douglas Gregorc8ab2562009-05-31 09:31:02 +00004747 PrevDecl
Douglas Gregor910f8002010-11-07 23:05:16 +00004748 = ClassTemplate->findPartialSpecialization(Converted.data(),
4749 Converted.size(),
Argyrios Kyrtzidiscc0b1bc2010-07-20 13:59:28 +00004750 InsertPos);
Douglas Gregorc8ab2562009-05-31 09:31:02 +00004751 else
4752 PrevDecl
Douglas Gregor910f8002010-11-07 23:05:16 +00004753 = ClassTemplate->findSpecialization(Converted.data(),
4754 Converted.size(), InsertPos);
Douglas Gregorcc636682009-02-17 23:15:12 +00004755
4756 ClassTemplateSpecializationDecl *Specialization = 0;
4757
Douglas Gregor88b70942009-02-25 22:02:03 +00004758 // Check whether we can declare a class template specialization in
4759 // the current scope.
Douglas Gregorfc9cd612009-09-26 20:57:03 +00004760 if (TUK != TUK_Friend &&
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004761 CheckTemplateSpecializationScope(*this, ClassTemplate, PrevDecl,
4762 TemplateNameLoc,
Douglas Gregor9302da62009-10-14 23:50:59 +00004763 isPartialSpecialization))
Douglas Gregor212e81c2009-03-25 00:13:59 +00004764 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004765
Douglas Gregorb88e8882009-07-30 17:40:51 +00004766 // The canonical type
4767 QualType CanonType;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004768 if (PrevDecl &&
Douglas Gregorfc9cd612009-09-26 20:57:03 +00004769 (PrevDecl->getSpecializationKind() == TSK_Undeclared ||
Douglas Gregorde090962010-02-09 00:37:32 +00004770 TUK == TUK_Friend)) {
Douglas Gregorcc636682009-02-17 23:15:12 +00004771 // Since the only prior class template specialization with these
Douglas Gregorfc9cd612009-09-26 20:57:03 +00004772 // arguments was referenced but not declared, or we're only
4773 // referencing this specialization as a friend, reuse that
Abramo Bagnara7f0a9152011-03-18 15:16:37 +00004774 // declaration node as our own, updating its source location and
4775 // the list of outer template parameters to reflect our new declaration.
Douglas Gregorcc636682009-02-17 23:15:12 +00004776 Specialization = PrevDecl;
Douglas Gregor6bc9f7e2009-02-25 22:18:32 +00004777 Specialization->setLocation(TemplateNameLoc);
Abramo Bagnara7f0a9152011-03-18 15:16:37 +00004778 if (TemplateParameterLists.size() > 0) {
4779 Specialization->setTemplateParameterListsInfo(Context,
4780 TemplateParameterLists.size(),
4781 (TemplateParameterList**) TemplateParameterLists.release());
4782 }
Douglas Gregorcc636682009-02-17 23:15:12 +00004783 PrevDecl = 0;
Douglas Gregorb88e8882009-07-30 17:40:51 +00004784 CanonType = Context.getTypeDeclType(Specialization);
Douglas Gregorc8ab2562009-05-31 09:31:02 +00004785 } else if (isPartialSpecialization) {
Douglas Gregorb88e8882009-07-30 17:40:51 +00004786 // Build the canonical type that describes the converted template
4787 // arguments of the class template partial specialization.
Douglas Gregorde090962010-02-09 00:37:32 +00004788 TemplateName CanonTemplate = Context.getCanonicalTemplateName(Name);
4789 CanonType = Context.getTemplateSpecializationType(CanonTemplate,
Douglas Gregorb9c66312010-12-23 17:13:55 +00004790 Converted.data(),
4791 Converted.size());
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004792
4793 if (Context.hasSameType(CanonType,
Douglas Gregorb9c66312010-12-23 17:13:55 +00004794 ClassTemplate->getInjectedClassNameSpecialization())) {
4795 // C++ [temp.class.spec]p9b3:
4796 //
4797 // -- The argument list of the specialization shall not be identical
4798 // to the implicit argument list of the primary template.
4799 Diag(TemplateNameLoc, diag::err_partial_spec_args_match_primary_template)
4800 << (TUK == TUK_Definition)
4801 << FixItHint::CreateRemoval(SourceRange(LAngleLoc, RAngleLoc));
4802 return CheckClassTemplate(S, TagSpec, TUK, KWLoc, SS,
4803 ClassTemplate->getIdentifier(),
4804 TemplateNameLoc,
4805 Attr,
4806 TemplateParams,
Abramo Bagnarac57c17d2011-03-10 13:28:31 +00004807 AS_none,
Abramo Bagnara7f0a9152011-03-18 15:16:37 +00004808 TemplateParameterLists.size() - 1,
Abramo Bagnarac57c17d2011-03-10 13:28:31 +00004809 (TemplateParameterList**) TemplateParameterLists.release());
Douglas Gregorb9c66312010-12-23 17:13:55 +00004810 }
Douglas Gregorb88e8882009-07-30 17:40:51 +00004811
Douglas Gregorc8ab2562009-05-31 09:31:02 +00004812 // Create a new class template partial specialization declaration node.
Douglas Gregorc8ab2562009-05-31 09:31:02 +00004813 ClassTemplatePartialSpecializationDecl *PrevPartial
4814 = cast_or_null<ClassTemplatePartialSpecializationDecl>(PrevDecl);
Douglas Gregordc60c1e2010-04-30 05:56:50 +00004815 unsigned SequenceNumber = PrevPartial? PrevPartial->getSequenceNumber()
Argyrios Kyrtzidiscc0b1bc2010-07-20 13:59:28 +00004816 : ClassTemplate->getNextPartialSpecSequenceNumber();
Mike Stump1eb44332009-09-09 15:08:12 +00004817 ClassTemplatePartialSpecializationDecl *Partial
Douglas Gregor13c85772010-05-06 00:28:52 +00004818 = ClassTemplatePartialSpecializationDecl::Create(Context, Kind,
Douglas Gregorc8ab2562009-05-31 09:31:02 +00004819 ClassTemplate->getDeclContext(),
Abramo Bagnaraba877ad2011-03-09 14:09:51 +00004820 KWLoc, TemplateNameLoc,
Anders Carlsson91fdf6f2009-06-05 04:06:48 +00004821 TemplateParams,
4822 ClassTemplate,
Douglas Gregor910f8002010-11-07 23:05:16 +00004823 Converted.data(),
4824 Converted.size(),
John McCalld5532b62009-11-23 01:53:49 +00004825 TemplateArgs,
John McCall3cb0ebd2010-03-10 03:28:59 +00004826 CanonType,
Douglas Gregordc60c1e2010-04-30 05:56:50 +00004827 PrevPartial,
4828 SequenceNumber);
John McCallb6217662010-03-15 10:12:16 +00004829 SetNestedNameSpecifier(Partial, SS);
Abramo Bagnara7f0a9152011-03-18 15:16:37 +00004830 if (TemplateParameterLists.size() > 1 && SS.isSet()) {
Douglas Gregorc722ea42010-06-15 17:44:38 +00004831 Partial->setTemplateParameterListsInfo(Context,
Abramo Bagnara7f0a9152011-03-18 15:16:37 +00004832 TemplateParameterLists.size() - 1,
Abramo Bagnara9b934882010-06-12 08:15:14 +00004833 (TemplateParameterList**) TemplateParameterLists.release());
4834 }
Douglas Gregorc8ab2562009-05-31 09:31:02 +00004835
Argyrios Kyrtzidiscc0b1bc2010-07-20 13:59:28 +00004836 if (!PrevPartial)
4837 ClassTemplate->AddPartialSpecialization(Partial, InsertPos);
Douglas Gregorc8ab2562009-05-31 09:31:02 +00004838 Specialization = Partial;
Douglas Gregor031a5882009-06-13 00:26:55 +00004839
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004840 // If we are providing an explicit specialization of a member class
Douglas Gregored9c0f92009-10-29 00:04:11 +00004841 // template specialization, make a note of that.
4842 if (PrevPartial && PrevPartial->getInstantiatedFromMember())
4843 PrevPartial->setMemberSpecialization();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004844
Douglas Gregor031a5882009-06-13 00:26:55 +00004845 // Check that all of the template parameters of the class template
4846 // partial specialization are deducible from the template
4847 // arguments. If not, this class template partial specialization
4848 // will never be used.
4849 llvm::SmallVector<bool, 8> DeducibleParams;
4850 DeducibleParams.resize(TemplateParams->size());
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004851 MarkUsedTemplateParameters(Partial->getTemplateArgs(), true,
Douglas Gregored9c0f92009-10-29 00:04:11 +00004852 TemplateParams->getDepth(),
Douglas Gregore73bb602009-09-14 21:25:05 +00004853 DeducibleParams);
Douglas Gregor031a5882009-06-13 00:26:55 +00004854 unsigned NumNonDeducible = 0;
4855 for (unsigned I = 0, N = DeducibleParams.size(); I != N; ++I)
4856 if (!DeducibleParams[I])
4857 ++NumNonDeducible;
4858
4859 if (NumNonDeducible) {
4860 Diag(TemplateNameLoc, diag::warn_partial_specs_not_deducible)
4861 << (NumNonDeducible > 1)
4862 << SourceRange(TemplateNameLoc, RAngleLoc);
4863 for (unsigned I = 0, N = DeducibleParams.size(); I != N; ++I) {
4864 if (!DeducibleParams[I]) {
4865 NamedDecl *Param = cast<NamedDecl>(TemplateParams->getParam(I));
4866 if (Param->getDeclName())
Mike Stump1eb44332009-09-09 15:08:12 +00004867 Diag(Param->getLocation(),
Douglas Gregor031a5882009-06-13 00:26:55 +00004868 diag::note_partial_spec_unused_parameter)
4869 << Param->getDeclName();
4870 else
Mike Stump1eb44332009-09-09 15:08:12 +00004871 Diag(Param->getLocation(),
Douglas Gregor031a5882009-06-13 00:26:55 +00004872 diag::note_partial_spec_unused_parameter)
Benjamin Kramer476d8b82010-08-11 14:47:12 +00004873 << "<anonymous>";
Douglas Gregor031a5882009-06-13 00:26:55 +00004874 }
4875 }
4876 }
Douglas Gregorcc636682009-02-17 23:15:12 +00004877 } else {
4878 // Create a new class template specialization declaration node for
Douglas Gregorfc9cd612009-09-26 20:57:03 +00004879 // this explicit specialization or friend declaration.
Douglas Gregorcc636682009-02-17 23:15:12 +00004880 Specialization
Douglas Gregor13c85772010-05-06 00:28:52 +00004881 = ClassTemplateSpecializationDecl::Create(Context, Kind,
Douglas Gregorcc636682009-02-17 23:15:12 +00004882 ClassTemplate->getDeclContext(),
Abramo Bagnaraba877ad2011-03-09 14:09:51 +00004883 KWLoc, TemplateNameLoc,
Mike Stump1eb44332009-09-09 15:08:12 +00004884 ClassTemplate,
Douglas Gregor910f8002010-11-07 23:05:16 +00004885 Converted.data(),
4886 Converted.size(),
Douglas Gregorcc636682009-02-17 23:15:12 +00004887 PrevDecl);
John McCallb6217662010-03-15 10:12:16 +00004888 SetNestedNameSpecifier(Specialization, SS);
Abramo Bagnara7f0a9152011-03-18 15:16:37 +00004889 if (TemplateParameterLists.size() > 0) {
Douglas Gregorc722ea42010-06-15 17:44:38 +00004890 Specialization->setTemplateParameterListsInfo(Context,
Abramo Bagnara7f0a9152011-03-18 15:16:37 +00004891 TemplateParameterLists.size(),
Abramo Bagnara9b934882010-06-12 08:15:14 +00004892 (TemplateParameterList**) TemplateParameterLists.release());
4893 }
Douglas Gregorcc636682009-02-17 23:15:12 +00004894
Argyrios Kyrtzidiscc0b1bc2010-07-20 13:59:28 +00004895 if (!PrevDecl)
4896 ClassTemplate->AddSpecialization(Specialization, InsertPos);
Douglas Gregorb88e8882009-07-30 17:40:51 +00004897
4898 CanonType = Context.getTypeDeclType(Specialization);
Douglas Gregorcc636682009-02-17 23:15:12 +00004899 }
4900
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00004901 // C++ [temp.expl.spec]p6:
4902 // If a template, a member template or the member of a class template is
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004903 // explicitly specialized then that specialization shall be declared
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00004904 // before the first use of that specialization that would cause an implicit
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004905 // instantiation to take place, in every translation unit in which such a
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00004906 // use occurs; no diagnostic is required.
4907 if (PrevDecl && PrevDecl->getPointOfInstantiation().isValid()) {
Douglas Gregordc0a11c2010-02-26 06:03:23 +00004908 bool Okay = false;
4909 for (NamedDecl *Prev = PrevDecl; Prev; Prev = getPreviousDecl(Prev)) {
4910 // Is there any previous explicit specialization declaration?
4911 if (getTemplateSpecializationKind(Prev) == TSK_ExplicitSpecialization) {
4912 Okay = true;
4913 break;
4914 }
4915 }
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00004916
Douglas Gregordc0a11c2010-02-26 06:03:23 +00004917 if (!Okay) {
4918 SourceRange Range(TemplateNameLoc, RAngleLoc);
4919 Diag(TemplateNameLoc, diag::err_specialization_after_instantiation)
4920 << Context.getTypeDeclType(Specialization) << Range;
4921
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004922 Diag(PrevDecl->getPointOfInstantiation(),
Douglas Gregordc0a11c2010-02-26 06:03:23 +00004923 diag::note_instantiation_required_here)
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004924 << (PrevDecl->getTemplateSpecializationKind()
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00004925 != TSK_ImplicitInstantiation);
Douglas Gregordc0a11c2010-02-26 06:03:23 +00004926 return true;
4927 }
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00004928 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004929
Douglas Gregorfc9cd612009-09-26 20:57:03 +00004930 // If this is not a friend, note that this is an explicit specialization.
4931 if (TUK != TUK_Friend)
4932 Specialization->setSpecializationKind(TSK_ExplicitSpecialization);
Douglas Gregorcc636682009-02-17 23:15:12 +00004933
4934 // Check that this isn't a redefinition of this specialization.
John McCall0f434ec2009-07-31 02:45:11 +00004935 if (TUK == TUK_Definition) {
Douglas Gregor952b0172010-02-11 01:04:33 +00004936 if (RecordDecl *Def = Specialization->getDefinition()) {
Douglas Gregorcc636682009-02-17 23:15:12 +00004937 SourceRange Range(TemplateNameLoc, RAngleLoc);
Mike Stump1eb44332009-09-09 15:08:12 +00004938 Diag(TemplateNameLoc, diag::err_redefinition)
Douglas Gregorc8ab2562009-05-31 09:31:02 +00004939 << Context.getTypeDeclType(Specialization) << Range;
Douglas Gregorcc636682009-02-17 23:15:12 +00004940 Diag(Def->getLocation(), diag::note_previous_definition);
4941 Specialization->setInvalidDecl();
Douglas Gregor212e81c2009-03-25 00:13:59 +00004942 return true;
Douglas Gregorcc636682009-02-17 23:15:12 +00004943 }
4944 }
4945
John McCall7f1b9872010-12-18 03:30:47 +00004946 if (Attr)
4947 ProcessDeclAttributeList(S, Specialization, Attr);
4948
Douglas Gregorfc705b82009-02-26 22:19:44 +00004949 // Build the fully-sugared type for this class template
4950 // specialization as the user wrote in the specialization
4951 // itself. This means that we'll pretty-print the type retrieved
4952 // from the specialization's declaration the way that the user
4953 // actually wrote the specialization, rather than formatting the
4954 // name based on the "canonical" representation used to store the
4955 // template arguments in the specialization.
John McCall3cb0ebd2010-03-10 03:28:59 +00004956 TypeSourceInfo *WrittenTy
4957 = Context.getTemplateSpecializationTypeInfo(Name, TemplateNameLoc,
4958 TemplateArgs, CanonType);
Abramo Bagnarac98971d2010-06-12 07:44:57 +00004959 if (TUK != TUK_Friend) {
Douglas Gregorfc9cd612009-09-26 20:57:03 +00004960 Specialization->setTypeAsWritten(WrittenTy);
Abramo Bagnara7f0a9152011-03-18 15:16:37 +00004961 Specialization->setTemplateKeywordLoc(TemplateKWLoc);
Abramo Bagnarac98971d2010-06-12 07:44:57 +00004962 }
Douglas Gregor40808ce2009-03-09 23:48:35 +00004963 TemplateArgsIn.release();
Douglas Gregorcc636682009-02-17 23:15:12 +00004964
Douglas Gregor6bc9f7e2009-02-25 22:18:32 +00004965 // C++ [temp.expl.spec]p9:
4966 // A template explicit specialization is in the scope of the
4967 // namespace in which the template was defined.
4968 //
4969 // We actually implement this paragraph where we set the semantic
4970 // context (in the creation of the ClassTemplateSpecializationDecl),
4971 // but we also maintain the lexical context where the actual
4972 // definition occurs.
Douglas Gregorcc636682009-02-17 23:15:12 +00004973 Specialization->setLexicalDeclContext(CurContext);
Mike Stump1eb44332009-09-09 15:08:12 +00004974
Douglas Gregorcc636682009-02-17 23:15:12 +00004975 // We may be starting the definition of this specialization.
John McCall0f434ec2009-07-31 02:45:11 +00004976 if (TUK == TUK_Definition)
Douglas Gregorcc636682009-02-17 23:15:12 +00004977 Specialization->startDefinition();
4978
Douglas Gregorfc9cd612009-09-26 20:57:03 +00004979 if (TUK == TUK_Friend) {
4980 FriendDecl *Friend = FriendDecl::Create(Context, CurContext,
4981 TemplateNameLoc,
John McCall32f2fb52010-03-25 18:04:51 +00004982 WrittenTy,
Douglas Gregorfc9cd612009-09-26 20:57:03 +00004983 /*FIXME:*/KWLoc);
4984 Friend->setAccess(AS_public);
4985 CurContext->addDecl(Friend);
4986 } else {
4987 // Add the specialization into its lexical context, so that it can
4988 // be seen when iterating through the list of declarations in that
4989 // context. However, specializations are not found by name lookup.
4990 CurContext->addDecl(Specialization);
4991 }
John McCalld226f652010-08-21 09:40:31 +00004992 return Specialization;
Douglas Gregorcc636682009-02-17 23:15:12 +00004993}
Douglas Gregord57959a2009-03-27 23:10:48 +00004994
John McCalld226f652010-08-21 09:40:31 +00004995Decl *Sema::ActOnTemplateDeclarator(Scope *S,
Douglas Gregore542c862009-06-23 23:11:28 +00004996 MultiTemplateParamsArg TemplateParameterLists,
John McCalld226f652010-08-21 09:40:31 +00004997 Declarator &D) {
Douglas Gregore542c862009-06-23 23:11:28 +00004998 return HandleDeclarator(S, D, move(TemplateParameterLists), false);
4999}
5000
John McCalld226f652010-08-21 09:40:31 +00005001Decl *Sema::ActOnStartOfFunctionTemplateDef(Scope *FnBodyScope,
Douglas Gregor52591bf2009-06-24 00:54:41 +00005002 MultiTemplateParamsArg TemplateParameterLists,
John McCalld226f652010-08-21 09:40:31 +00005003 Declarator &D) {
Douglas Gregor52591bf2009-06-24 00:54:41 +00005004 assert(getCurFunctionDecl() == 0 && "Function parsing confused");
Abramo Bagnara075f8f12010-12-10 16:29:40 +00005005 DeclaratorChunk::FunctionTypeInfo &FTI = D.getFunctionTypeInfo();
Mike Stump1eb44332009-09-09 15:08:12 +00005006
Douglas Gregor52591bf2009-06-24 00:54:41 +00005007 if (FTI.hasPrototype) {
Mike Stump1eb44332009-09-09 15:08:12 +00005008 // FIXME: Diagnose arguments without names in C.
Douglas Gregor52591bf2009-06-24 00:54:41 +00005009 }
Mike Stump1eb44332009-09-09 15:08:12 +00005010
Douglas Gregor52591bf2009-06-24 00:54:41 +00005011 Scope *ParentScope = FnBodyScope->getParent();
Mike Stump1eb44332009-09-09 15:08:12 +00005012
John McCalld226f652010-08-21 09:40:31 +00005013 Decl *DP = HandleDeclarator(ParentScope, D,
5014 move(TemplateParameterLists),
5015 /*IsFunctionDefinition=*/true);
Mike Stump1eb44332009-09-09 15:08:12 +00005016 if (FunctionTemplateDecl *FunctionTemplate
John McCalld226f652010-08-21 09:40:31 +00005017 = dyn_cast_or_null<FunctionTemplateDecl>(DP))
Mike Stump1eb44332009-09-09 15:08:12 +00005018 return ActOnStartOfFunctionDef(FnBodyScope,
John McCalld226f652010-08-21 09:40:31 +00005019 FunctionTemplate->getTemplatedDecl());
5020 if (FunctionDecl *Function = dyn_cast_or_null<FunctionDecl>(DP))
5021 return ActOnStartOfFunctionDef(FnBodyScope, Function);
5022 return 0;
Douglas Gregor52591bf2009-06-24 00:54:41 +00005023}
5024
John McCall75042392010-02-11 01:33:53 +00005025/// \brief Strips various properties off an implicit instantiation
5026/// that has just been explicitly specialized.
5027static void StripImplicitInstantiation(NamedDecl *D) {
Sean Huntcf807c42010-08-18 23:23:40 +00005028 D->dropAttrs();
John McCall75042392010-02-11 01:33:53 +00005029
5030 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
5031 FD->setInlineSpecified(false);
5032 }
5033}
5034
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005035/// \brief Diagnose cases where we have an explicit template specialization
Douglas Gregor454885e2009-10-15 15:54:05 +00005036/// before/after an explicit template instantiation, producing diagnostics
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005037/// for those cases where they are required and determining whether the
Douglas Gregor454885e2009-10-15 15:54:05 +00005038/// new specialization/instantiation will have any effect.
5039///
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005040/// \param NewLoc the location of the new explicit specialization or
Douglas Gregor454885e2009-10-15 15:54:05 +00005041/// instantiation.
5042///
5043/// \param NewTSK the kind of the new explicit specialization or instantiation.
5044///
5045/// \param PrevDecl the previous declaration of the entity.
5046///
5047/// \param PrevTSK the kind of the old explicit specialization or instantiatin.
5048///
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005049/// \param PrevPointOfInstantiation if valid, indicates where the previus
Douglas Gregor454885e2009-10-15 15:54:05 +00005050/// declaration was instantiated (either implicitly or explicitly).
5051///
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005052/// \param HasNoEffect will be set to true to indicate that the new
Douglas Gregor454885e2009-10-15 15:54:05 +00005053/// specialization or instantiation has no effect and should be ignored.
5054///
5055/// \returns true if there was an error that should prevent the introduction of
5056/// the new declaration into the AST, false otherwise.
Douglas Gregor0d035142009-10-27 18:42:08 +00005057bool
5058Sema::CheckSpecializationInstantiationRedecl(SourceLocation NewLoc,
5059 TemplateSpecializationKind NewTSK,
5060 NamedDecl *PrevDecl,
5061 TemplateSpecializationKind PrevTSK,
5062 SourceLocation PrevPointOfInstantiation,
Abramo Bagnarac98971d2010-06-12 07:44:57 +00005063 bool &HasNoEffect) {
5064 HasNoEffect = false;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005065
Douglas Gregor454885e2009-10-15 15:54:05 +00005066 switch (NewTSK) {
5067 case TSK_Undeclared:
5068 case TSK_ImplicitInstantiation:
5069 assert(false && "Don't check implicit instantiations here");
5070 return false;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005071
Douglas Gregor454885e2009-10-15 15:54:05 +00005072 case TSK_ExplicitSpecialization:
5073 switch (PrevTSK) {
5074 case TSK_Undeclared:
5075 case TSK_ExplicitSpecialization:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005076 // Okay, we're just specializing something that is either already
Douglas Gregor454885e2009-10-15 15:54:05 +00005077 // explicitly specialized or has merely been mentioned without any
5078 // instantiation.
5079 return false;
5080
5081 case TSK_ImplicitInstantiation:
5082 if (PrevPointOfInstantiation.isInvalid()) {
5083 // The declaration itself has not actually been instantiated, so it is
5084 // still okay to specialize it.
John McCall75042392010-02-11 01:33:53 +00005085 StripImplicitInstantiation(PrevDecl);
Douglas Gregor454885e2009-10-15 15:54:05 +00005086 return false;
5087 }
5088 // Fall through
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005089
Douglas Gregor454885e2009-10-15 15:54:05 +00005090 case TSK_ExplicitInstantiationDeclaration:
5091 case TSK_ExplicitInstantiationDefinition:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005092 assert((PrevTSK == TSK_ImplicitInstantiation ||
5093 PrevPointOfInstantiation.isValid()) &&
Douglas Gregor454885e2009-10-15 15:54:05 +00005094 "Explicit instantiation without point of instantiation?");
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005095
Douglas Gregor454885e2009-10-15 15:54:05 +00005096 // C++ [temp.expl.spec]p6:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005097 // If a template, a member template or the member of a class template
Douglas Gregor454885e2009-10-15 15:54:05 +00005098 // is explicitly specialized then that specialization shall be declared
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005099 // before the first use of that specialization that would cause an
Douglas Gregor454885e2009-10-15 15:54:05 +00005100 // implicit instantiation to take place, in every translation unit in
5101 // which such a use occurs; no diagnostic is required.
Douglas Gregordc0a11c2010-02-26 06:03:23 +00005102 for (NamedDecl *Prev = PrevDecl; Prev; Prev = getPreviousDecl(Prev)) {
5103 // Is there any previous explicit specialization declaration?
5104 if (getTemplateSpecializationKind(Prev) == TSK_ExplicitSpecialization)
5105 return false;
5106 }
5107
Douglas Gregor0d035142009-10-27 18:42:08 +00005108 Diag(NewLoc, diag::err_specialization_after_instantiation)
Douglas Gregor454885e2009-10-15 15:54:05 +00005109 << PrevDecl;
Douglas Gregor0d035142009-10-27 18:42:08 +00005110 Diag(PrevPointOfInstantiation, diag::note_instantiation_required_here)
Douglas Gregor454885e2009-10-15 15:54:05 +00005111 << (PrevTSK != TSK_ImplicitInstantiation);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005112
Douglas Gregor454885e2009-10-15 15:54:05 +00005113 return true;
5114 }
5115 break;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005116
Douglas Gregor454885e2009-10-15 15:54:05 +00005117 case TSK_ExplicitInstantiationDeclaration:
5118 switch (PrevTSK) {
5119 case TSK_ExplicitInstantiationDeclaration:
5120 // This explicit instantiation declaration is redundant (that's okay).
Abramo Bagnarac98971d2010-06-12 07:44:57 +00005121 HasNoEffect = true;
Douglas Gregor454885e2009-10-15 15:54:05 +00005122 return false;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005123
Douglas Gregor454885e2009-10-15 15:54:05 +00005124 case TSK_Undeclared:
5125 case TSK_ImplicitInstantiation:
5126 // We're explicitly instantiating something that may have already been
5127 // implicitly instantiated; that's fine.
5128 return false;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005129
Douglas Gregor454885e2009-10-15 15:54:05 +00005130 case TSK_ExplicitSpecialization:
5131 // C++0x [temp.explicit]p4:
5132 // For a given set of template parameters, if an explicit instantiation
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005133 // of a template appears after a declaration of an explicit
Douglas Gregor454885e2009-10-15 15:54:05 +00005134 // specialization for that template, the explicit instantiation has no
5135 // effect.
Abramo Bagnarac98971d2010-06-12 07:44:57 +00005136 HasNoEffect = true;
Douglas Gregor454885e2009-10-15 15:54:05 +00005137 return false;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005138
Douglas Gregor454885e2009-10-15 15:54:05 +00005139 case TSK_ExplicitInstantiationDefinition:
5140 // C++0x [temp.explicit]p10:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005141 // If an entity is the subject of both an explicit instantiation
5142 // declaration and an explicit instantiation definition in the same
Douglas Gregor454885e2009-10-15 15:54:05 +00005143 // translation unit, the definition shall follow the declaration.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005144 Diag(NewLoc,
Douglas Gregor0d035142009-10-27 18:42:08 +00005145 diag::err_explicit_instantiation_declaration_after_definition);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005146 Diag(PrevPointOfInstantiation,
Douglas Gregor0d035142009-10-27 18:42:08 +00005147 diag::note_explicit_instantiation_definition_here);
Douglas Gregor454885e2009-10-15 15:54:05 +00005148 assert(PrevPointOfInstantiation.isValid() &&
5149 "Explicit instantiation without point of instantiation?");
Abramo Bagnarac98971d2010-06-12 07:44:57 +00005150 HasNoEffect = true;
Douglas Gregor454885e2009-10-15 15:54:05 +00005151 return false;
5152 }
5153 break;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005154
Douglas Gregor454885e2009-10-15 15:54:05 +00005155 case TSK_ExplicitInstantiationDefinition:
5156 switch (PrevTSK) {
5157 case TSK_Undeclared:
5158 case TSK_ImplicitInstantiation:
5159 // We're explicitly instantiating something that may have already been
5160 // implicitly instantiated; that's fine.
5161 return false;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005162
Douglas Gregor454885e2009-10-15 15:54:05 +00005163 case TSK_ExplicitSpecialization:
5164 // C++ DR 259, C++0x [temp.explicit]p4:
5165 // For a given set of template parameters, if an explicit
5166 // instantiation of a template appears after a declaration of
5167 // an explicit specialization for that template, the explicit
5168 // instantiation has no effect.
5169 //
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005170 // In C++98/03 mode, we only give an extension warning here, because it
Douglas Gregorc42b6522010-04-09 21:02:29 +00005171 // is not harmful to try to explicitly instantiate something that
Douglas Gregor454885e2009-10-15 15:54:05 +00005172 // has been explicitly specialized.
Douglas Gregor0d035142009-10-27 18:42:08 +00005173 if (!getLangOptions().CPlusPlus0x) {
5174 Diag(NewLoc, diag::ext_explicit_instantiation_after_specialization)
Douglas Gregor454885e2009-10-15 15:54:05 +00005175 << PrevDecl;
Douglas Gregor0d035142009-10-27 18:42:08 +00005176 Diag(PrevDecl->getLocation(),
Douglas Gregor454885e2009-10-15 15:54:05 +00005177 diag::note_previous_template_specialization);
5178 }
Abramo Bagnarac98971d2010-06-12 07:44:57 +00005179 HasNoEffect = true;
Douglas Gregor454885e2009-10-15 15:54:05 +00005180 return false;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005181
Douglas Gregor454885e2009-10-15 15:54:05 +00005182 case TSK_ExplicitInstantiationDeclaration:
5183 // We're explicity instantiating a definition for something for which we
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005184 // were previously asked to suppress instantiations. That's fine.
Douglas Gregor454885e2009-10-15 15:54:05 +00005185 return false;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005186
Douglas Gregor454885e2009-10-15 15:54:05 +00005187 case TSK_ExplicitInstantiationDefinition:
5188 // C++0x [temp.spec]p5:
5189 // For a given template and a given set of template-arguments,
5190 // - an explicit instantiation definition shall appear at most once
5191 // in a program,
Douglas Gregor0d035142009-10-27 18:42:08 +00005192 Diag(NewLoc, diag::err_explicit_instantiation_duplicate)
Douglas Gregor454885e2009-10-15 15:54:05 +00005193 << PrevDecl;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005194 Diag(PrevPointOfInstantiation,
Douglas Gregor0d035142009-10-27 18:42:08 +00005195 diag::note_previous_explicit_instantiation);
Abramo Bagnarac98971d2010-06-12 07:44:57 +00005196 HasNoEffect = true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005197 return false;
Douglas Gregor454885e2009-10-15 15:54:05 +00005198 }
5199 break;
5200 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005201
Douglas Gregor454885e2009-10-15 15:54:05 +00005202 assert(false && "Missing specialization/instantiation case?");
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005203
Douglas Gregor454885e2009-10-15 15:54:05 +00005204 return false;
5205}
5206
John McCallaf2094e2010-04-08 09:05:18 +00005207/// \brief Perform semantic analysis for the given dependent function
5208/// template specialization. The only possible way to get a dependent
5209/// function template specialization is with a friend declaration,
5210/// like so:
5211///
5212/// template <class T> void foo(T);
5213/// template <class T> class A {
5214/// friend void foo<>(T);
5215/// };
5216///
5217/// There really isn't any useful analysis we can do here, so we
5218/// just store the information.
5219bool
5220Sema::CheckDependentFunctionTemplateSpecialization(FunctionDecl *FD,
5221 const TemplateArgumentListInfo &ExplicitTemplateArgs,
5222 LookupResult &Previous) {
5223 // Remove anything from Previous that isn't a function template in
5224 // the correct context.
Sebastian Redl7a126a42010-08-31 00:36:30 +00005225 DeclContext *FDLookupContext = FD->getDeclContext()->getRedeclContext();
John McCallaf2094e2010-04-08 09:05:18 +00005226 LookupResult::Filter F = Previous.makeFilter();
5227 while (F.hasNext()) {
5228 NamedDecl *D = F.next()->getUnderlyingDecl();
5229 if (!isa<FunctionTemplateDecl>(D) ||
Sebastian Redl7a126a42010-08-31 00:36:30 +00005230 !FDLookupContext->InEnclosingNamespaceSetOf(
5231 D->getDeclContext()->getRedeclContext()))
John McCallaf2094e2010-04-08 09:05:18 +00005232 F.erase();
5233 }
5234 F.done();
5235
5236 // Should this be diagnosed here?
5237 if (Previous.empty()) return true;
5238
5239 FD->setDependentTemplateSpecialization(Context, Previous.asUnresolvedSet(),
5240 ExplicitTemplateArgs);
5241 return false;
5242}
5243
Abramo Bagnarae03db982010-05-20 15:32:11 +00005244/// \brief Perform semantic analysis for the given function template
Douglas Gregorb9aa6b22009-09-24 23:14:47 +00005245/// specialization.
5246///
Abramo Bagnarae03db982010-05-20 15:32:11 +00005247/// This routine performs all of the semantic analysis required for an
Douglas Gregorb9aa6b22009-09-24 23:14:47 +00005248/// explicit function template specialization. On successful completion,
5249/// the function declaration \p FD will become a function template
5250/// specialization.
5251///
5252/// \param FD the function declaration, which will be updated to become a
5253/// function template specialization.
5254///
Abramo Bagnarae03db982010-05-20 15:32:11 +00005255/// \param ExplicitTemplateArgs the explicitly-provided template arguments,
5256/// if any. Note that this may be valid info even when 0 arguments are
5257/// explicitly provided as in, e.g., \c void sort<>(char*, char*);
5258/// as it anyway contains info on the angle brackets locations.
Douglas Gregorb9aa6b22009-09-24 23:14:47 +00005259///
Abramo Bagnarae03db982010-05-20 15:32:11 +00005260/// \param PrevDecl the set of declarations that may be specialized by
5261/// this function specialization.
5262bool
Douglas Gregorb9aa6b22009-09-24 23:14:47 +00005263Sema::CheckFunctionTemplateSpecialization(FunctionDecl *FD,
Douglas Gregor67714232011-03-03 02:41:12 +00005264 TemplateArgumentListInfo *ExplicitTemplateArgs,
John McCall68263142009-11-18 22:49:29 +00005265 LookupResult &Previous) {
Douglas Gregorb9aa6b22009-09-24 23:14:47 +00005266 // The set of function template specializations that could match this
5267 // explicit function template specialization.
John McCallc373d482010-01-27 01:50:18 +00005268 UnresolvedSet<8> Candidates;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005269
Sebastian Redl7a126a42010-08-31 00:36:30 +00005270 DeclContext *FDLookupContext = FD->getDeclContext()->getRedeclContext();
John McCall68263142009-11-18 22:49:29 +00005271 for (LookupResult::iterator I = Previous.begin(), E = Previous.end();
5272 I != E; ++I) {
5273 NamedDecl *Ovl = (*I)->getUnderlyingDecl();
5274 if (FunctionTemplateDecl *FunTmpl = dyn_cast<FunctionTemplateDecl>(Ovl)) {
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005275 // Only consider templates found within the same semantic lookup scope as
Douglas Gregorb9aa6b22009-09-24 23:14:47 +00005276 // FD.
Sebastian Redl7a126a42010-08-31 00:36:30 +00005277 if (!FDLookupContext->InEnclosingNamespaceSetOf(
5278 Ovl->getDeclContext()->getRedeclContext()))
Douglas Gregorb9aa6b22009-09-24 23:14:47 +00005279 continue;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005280
Douglas Gregorb9aa6b22009-09-24 23:14:47 +00005281 // C++ [temp.expl.spec]p11:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005282 // A trailing template-argument can be left unspecified in the
5283 // template-id naming an explicit function template specialization
Douglas Gregorb9aa6b22009-09-24 23:14:47 +00005284 // provided it can be deduced from the function argument type.
5285 // Perform template argument deduction to determine whether we may be
5286 // specializing this template.
5287 // FIXME: It is somewhat wasteful to build
John McCall5769d612010-02-08 23:07:23 +00005288 TemplateDeductionInfo Info(Context, FD->getLocation());
Douglas Gregorb9aa6b22009-09-24 23:14:47 +00005289 FunctionDecl *Specialization = 0;
5290 if (TemplateDeductionResult TDK
John McCalld5532b62009-11-23 01:53:49 +00005291 = DeduceTemplateArguments(FunTmpl, ExplicitTemplateArgs,
Douglas Gregorb9aa6b22009-09-24 23:14:47 +00005292 FD->getType(),
5293 Specialization,
5294 Info)) {
5295 // FIXME: Template argument deduction failed; record why it failed, so
5296 // that we can provide nifty diagnostics.
5297 (void)TDK;
5298 continue;
5299 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005300
Douglas Gregorb9aa6b22009-09-24 23:14:47 +00005301 // Record this candidate.
John McCallc373d482010-01-27 01:50:18 +00005302 Candidates.addDecl(Specialization, I.getAccess());
Douglas Gregorb9aa6b22009-09-24 23:14:47 +00005303 }
5304 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005305
Douglas Gregorc5df30f2009-09-26 03:41:46 +00005306 // Find the most specialized function template.
John McCallc373d482010-01-27 01:50:18 +00005307 UnresolvedSetIterator Result
5308 = getMostSpecialized(Candidates.begin(), Candidates.end(),
Douglas Gregor5c7bf422011-01-11 17:34:58 +00005309 TPOC_Other, 0, FD->getLocation(),
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005310 PDiag(diag::err_function_template_spec_no_match)
Douglas Gregorc5df30f2009-09-26 03:41:46 +00005311 << FD->getDeclName(),
Douglas Gregorfe6b2d42010-03-29 23:34:08 +00005312 PDiag(diag::err_function_template_spec_ambiguous)
John McCalld5532b62009-11-23 01:53:49 +00005313 << FD->getDeclName() << (ExplicitTemplateArgs != 0),
Douglas Gregorfe6b2d42010-03-29 23:34:08 +00005314 PDiag(diag::note_function_template_spec_matched));
John McCallc373d482010-01-27 01:50:18 +00005315 if (Result == Candidates.end())
Douglas Gregorb9aa6b22009-09-24 23:14:47 +00005316 return true;
John McCallc373d482010-01-27 01:50:18 +00005317
5318 // Ignore access information; it doesn't figure into redeclaration checking.
5319 FunctionDecl *Specialization = cast<FunctionDecl>(*Result);
Abramo Bagnaraabfb4052011-03-04 17:20:30 +00005320
5321 FunctionTemplateSpecializationInfo *SpecInfo
5322 = Specialization->getTemplateSpecializationInfo();
5323 assert(SpecInfo && "Function template specialization info missing?");
5324 {
5325 // Note: do not overwrite location info if previous template
5326 // specialization kind was explicit.
5327 TemplateSpecializationKind TSK = SpecInfo->getTemplateSpecializationKind();
5328 if (TSK == TSK_Undeclared || TSK == TSK_ImplicitInstantiation)
5329 Specialization->setLocation(FD->getLocation());
5330 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005331
Douglas Gregorb9aa6b22009-09-24 23:14:47 +00005332 // FIXME: Check if the prior specialization has a point of instantiation.
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00005333 // If so, we have run afoul of .
John McCall7ad650f2010-03-24 07:46:06 +00005334
5335 // If this is a friend declaration, then we're not really declaring
5336 // an explicit specialization.
5337 bool isFriend = (FD->getFriendObjectKind() != Decl::FOK_None);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005338
Douglas Gregord5cb8762009-10-07 00:13:32 +00005339 // Check the scope of this explicit specialization.
John McCall7ad650f2010-03-24 07:46:06 +00005340 if (!isFriend &&
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005341 CheckTemplateSpecializationScope(*this,
Douglas Gregord5cb8762009-10-07 00:13:32 +00005342 Specialization->getPrimaryTemplate(),
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005343 Specialization, FD->getLocation(),
Douglas Gregor9302da62009-10-14 23:50:59 +00005344 false))
Douglas Gregord5cb8762009-10-07 00:13:32 +00005345 return true;
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00005346
5347 // C++ [temp.expl.spec]p6:
5348 // If a template, a member template or the member of a class template is
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005349 // explicitly specialized then that specialization shall be declared
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00005350 // before the first use of that specialization that would cause an implicit
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005351 // instantiation to take place, in every translation unit in which such a
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00005352 // use occurs; no diagnostic is required.
Abramo Bagnarac98971d2010-06-12 07:44:57 +00005353 bool HasNoEffect = false;
John McCall7ad650f2010-03-24 07:46:06 +00005354 if (!isFriend &&
5355 CheckSpecializationInstantiationRedecl(FD->getLocation(),
John McCall75042392010-02-11 01:33:53 +00005356 TSK_ExplicitSpecialization,
5357 Specialization,
5358 SpecInfo->getTemplateSpecializationKind(),
5359 SpecInfo->getPointOfInstantiation(),
Abramo Bagnarac98971d2010-06-12 07:44:57 +00005360 HasNoEffect))
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00005361 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005362
Douglas Gregorb9aa6b22009-09-24 23:14:47 +00005363 // Mark the prior declaration as an explicit specialization, so that later
5364 // clients know that this is an explicit specialization.
Argyrios Kyrtzidisbbc64542010-08-15 01:15:20 +00005365 if (!isFriend) {
John McCall7ad650f2010-03-24 07:46:06 +00005366 SpecInfo->setTemplateSpecializationKind(TSK_ExplicitSpecialization);
Argyrios Kyrtzidisbbc64542010-08-15 01:15:20 +00005367 MarkUnusedFileScopedDecl(Specialization);
5368 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005369
Douglas Gregorb9aa6b22009-09-24 23:14:47 +00005370 // Turn the given function declaration into a function template
5371 // specialization, with the template arguments from the previous
5372 // specialization.
Abramo Bagnarae03db982010-05-20 15:32:11 +00005373 // Take copies of (semantic and syntactic) template argument lists.
5374 const TemplateArgumentList* TemplArgs = new (Context)
5375 TemplateArgumentList(Specialization->getTemplateSpecializationArgs());
5376 const TemplateArgumentListInfo* TemplArgsAsWritten = ExplicitTemplateArgs
5377 ? new (Context) TemplateArgumentListInfo(*ExplicitTemplateArgs) : 0;
Douglas Gregor838db382010-02-11 01:19:42 +00005378 FD->setFunctionTemplateSpecialization(Specialization->getPrimaryTemplate(),
Abramo Bagnarae03db982010-05-20 15:32:11 +00005379 TemplArgs, /*InsertPos=*/0,
5380 SpecInfo->getTemplateSpecializationKind(),
5381 TemplArgsAsWritten);
5382
Douglas Gregorb9aa6b22009-09-24 23:14:47 +00005383 // The "previous declaration" for this function template specialization is
5384 // the prior function template specialization.
John McCall68263142009-11-18 22:49:29 +00005385 Previous.clear();
5386 Previous.addDecl(Specialization);
Douglas Gregorb9aa6b22009-09-24 23:14:47 +00005387 return false;
5388}
5389
Douglas Gregor251b4ff2009-10-08 07:24:58 +00005390/// \brief Perform semantic analysis for the given non-template member
Douglas Gregor1fef4e62009-10-07 22:35:40 +00005391/// specialization.
5392///
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005393/// This routine performs all of the semantic analysis required for an
Douglas Gregor1fef4e62009-10-07 22:35:40 +00005394/// explicit member function specialization. On successful completion,
5395/// the function declaration \p FD will become a member function
5396/// specialization.
5397///
Douglas Gregor251b4ff2009-10-08 07:24:58 +00005398/// \param Member the member declaration, which will be updated to become a
5399/// specialization.
Douglas Gregor1fef4e62009-10-07 22:35:40 +00005400///
John McCall68263142009-11-18 22:49:29 +00005401/// \param Previous the set of declarations, one of which may be specialized
5402/// by this function specialization; the set will be modified to contain the
5403/// redeclared member.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005404bool
John McCall68263142009-11-18 22:49:29 +00005405Sema::CheckMemberSpecialization(NamedDecl *Member, LookupResult &Previous) {
Douglas Gregor251b4ff2009-10-08 07:24:58 +00005406 assert(!isa<TemplateDecl>(Member) && "Only for non-template members");
John McCall77e8b112010-04-13 20:37:33 +00005407
Douglas Gregor251b4ff2009-10-08 07:24:58 +00005408 // Try to find the member we are instantiating.
5409 NamedDecl *Instantiation = 0;
5410 NamedDecl *InstantiatedFrom = 0;
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00005411 MemberSpecializationInfo *MSInfo = 0;
5412
John McCall68263142009-11-18 22:49:29 +00005413 if (Previous.empty()) {
Douglas Gregor251b4ff2009-10-08 07:24:58 +00005414 // Nowhere to look anyway.
5415 } else if (FunctionDecl *Function = dyn_cast<FunctionDecl>(Member)) {
John McCall68263142009-11-18 22:49:29 +00005416 for (LookupResult::iterator I = Previous.begin(), E = Previous.end();
5417 I != E; ++I) {
5418 NamedDecl *D = (*I)->getUnderlyingDecl();
5419 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D)) {
Douglas Gregor251b4ff2009-10-08 07:24:58 +00005420 if (Context.hasSameType(Function->getType(), Method->getType())) {
5421 Instantiation = Method;
5422 InstantiatedFrom = Method->getInstantiatedFromMemberFunction();
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00005423 MSInfo = Method->getMemberSpecializationInfo();
Douglas Gregor251b4ff2009-10-08 07:24:58 +00005424 break;
5425 }
Douglas Gregor1fef4e62009-10-07 22:35:40 +00005426 }
5427 }
Douglas Gregor251b4ff2009-10-08 07:24:58 +00005428 } else if (isa<VarDecl>(Member)) {
John McCall68263142009-11-18 22:49:29 +00005429 VarDecl *PrevVar;
5430 if (Previous.isSingleResult() &&
5431 (PrevVar = dyn_cast<VarDecl>(Previous.getFoundDecl())))
Douglas Gregor251b4ff2009-10-08 07:24:58 +00005432 if (PrevVar->isStaticDataMember()) {
John McCall68263142009-11-18 22:49:29 +00005433 Instantiation = PrevVar;
Douglas Gregor251b4ff2009-10-08 07:24:58 +00005434 InstantiatedFrom = PrevVar->getInstantiatedFromStaticDataMember();
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00005435 MSInfo = PrevVar->getMemberSpecializationInfo();
Douglas Gregor251b4ff2009-10-08 07:24:58 +00005436 }
5437 } else if (isa<RecordDecl>(Member)) {
John McCall68263142009-11-18 22:49:29 +00005438 CXXRecordDecl *PrevRecord;
5439 if (Previous.isSingleResult() &&
5440 (PrevRecord = dyn_cast<CXXRecordDecl>(Previous.getFoundDecl()))) {
5441 Instantiation = PrevRecord;
Douglas Gregor251b4ff2009-10-08 07:24:58 +00005442 InstantiatedFrom = PrevRecord->getInstantiatedFromMemberClass();
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00005443 MSInfo = PrevRecord->getMemberSpecializationInfo();
Douglas Gregor251b4ff2009-10-08 07:24:58 +00005444 }
Douglas Gregor1fef4e62009-10-07 22:35:40 +00005445 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005446
Douglas Gregor1fef4e62009-10-07 22:35:40 +00005447 if (!Instantiation) {
Douglas Gregor251b4ff2009-10-08 07:24:58 +00005448 // There is no previous declaration that matches. Since member
Douglas Gregor1fef4e62009-10-07 22:35:40 +00005449 // specializations are always out-of-line, the caller will complain about
5450 // this mismatch later.
5451 return false;
5452 }
John McCall77e8b112010-04-13 20:37:33 +00005453
5454 // If this is a friend, just bail out here before we start turning
5455 // things into explicit specializations.
5456 if (Member->getFriendObjectKind() != Decl::FOK_None) {
5457 // Preserve instantiation information.
5458 if (InstantiatedFrom && isa<CXXMethodDecl>(Member)) {
5459 cast<CXXMethodDecl>(Member)->setInstantiationOfMemberFunction(
5460 cast<CXXMethodDecl>(InstantiatedFrom),
5461 cast<CXXMethodDecl>(Instantiation)->getTemplateSpecializationKind());
5462 } else if (InstantiatedFrom && isa<CXXRecordDecl>(Member)) {
5463 cast<CXXRecordDecl>(Member)->setInstantiationOfMemberClass(
5464 cast<CXXRecordDecl>(InstantiatedFrom),
5465 cast<CXXRecordDecl>(Instantiation)->getTemplateSpecializationKind());
5466 }
5467
5468 Previous.clear();
5469 Previous.addDecl(Instantiation);
5470 return false;
5471 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005472
Douglas Gregor251b4ff2009-10-08 07:24:58 +00005473 // Make sure that this is a specialization of a member.
5474 if (!InstantiatedFrom) {
5475 Diag(Member->getLocation(), diag::err_spec_member_not_instantiated)
5476 << Member;
Douglas Gregor1fef4e62009-10-07 22:35:40 +00005477 Diag(Instantiation->getLocation(), diag::note_specialized_decl);
5478 return true;
5479 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005480
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00005481 // C++ [temp.expl.spec]p6:
5482 // If a template, a member template or the member of a class template is
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005483 // explicitly specialized then that spe- cialization shall be declared
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00005484 // before the first use of that specialization that would cause an implicit
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005485 // instantiation to take place, in every translation unit in which such a
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00005486 // use occurs; no diagnostic is required.
5487 assert(MSInfo && "Member specialization info missing?");
John McCall75042392010-02-11 01:33:53 +00005488
Abramo Bagnarac98971d2010-06-12 07:44:57 +00005489 bool HasNoEffect = false;
John McCall75042392010-02-11 01:33:53 +00005490 if (CheckSpecializationInstantiationRedecl(Member->getLocation(),
5491 TSK_ExplicitSpecialization,
5492 Instantiation,
5493 MSInfo->getTemplateSpecializationKind(),
5494 MSInfo->getPointOfInstantiation(),
Abramo Bagnarac98971d2010-06-12 07:44:57 +00005495 HasNoEffect))
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00005496 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005497
Douglas Gregor1fef4e62009-10-07 22:35:40 +00005498 // Check the scope of this explicit specialization.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005499 if (CheckTemplateSpecializationScope(*this,
Douglas Gregor251b4ff2009-10-08 07:24:58 +00005500 InstantiatedFrom,
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005501 Instantiation, Member->getLocation(),
Douglas Gregor9302da62009-10-14 23:50:59 +00005502 false))
Douglas Gregor1fef4e62009-10-07 22:35:40 +00005503 return true;
Douglas Gregor2db32322009-10-07 23:56:10 +00005504
Douglas Gregor251b4ff2009-10-08 07:24:58 +00005505 // Note that this is an explicit instantiation of a member.
Douglas Gregorf6b11852009-10-08 15:14:33 +00005506 // the original declaration to note that it is an explicit specialization
5507 // (if it was previously an implicit instantiation). This latter step
5508 // makes bookkeeping easier.
Douglas Gregor251b4ff2009-10-08 07:24:58 +00005509 if (isa<FunctionDecl>(Member)) {
Douglas Gregorf6b11852009-10-08 15:14:33 +00005510 FunctionDecl *InstantiationFunction = cast<FunctionDecl>(Instantiation);
5511 if (InstantiationFunction->getTemplateSpecializationKind() ==
5512 TSK_ImplicitInstantiation) {
5513 InstantiationFunction->setTemplateSpecializationKind(
5514 TSK_ExplicitSpecialization);
5515 InstantiationFunction->setLocation(Member->getLocation());
5516 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005517
Douglas Gregor251b4ff2009-10-08 07:24:58 +00005518 cast<FunctionDecl>(Member)->setInstantiationOfMemberFunction(
5519 cast<CXXMethodDecl>(InstantiatedFrom),
5520 TSK_ExplicitSpecialization);
Argyrios Kyrtzidisbbc64542010-08-15 01:15:20 +00005521 MarkUnusedFileScopedDecl(InstantiationFunction);
Douglas Gregor251b4ff2009-10-08 07:24:58 +00005522 } else if (isa<VarDecl>(Member)) {
Douglas Gregorf6b11852009-10-08 15:14:33 +00005523 VarDecl *InstantiationVar = cast<VarDecl>(Instantiation);
5524 if (InstantiationVar->getTemplateSpecializationKind() ==
5525 TSK_ImplicitInstantiation) {
5526 InstantiationVar->setTemplateSpecializationKind(
5527 TSK_ExplicitSpecialization);
5528 InstantiationVar->setLocation(Member->getLocation());
5529 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005530
Douglas Gregor251b4ff2009-10-08 07:24:58 +00005531 Context.setInstantiatedFromStaticDataMember(cast<VarDecl>(Member),
5532 cast<VarDecl>(InstantiatedFrom),
5533 TSK_ExplicitSpecialization);
Argyrios Kyrtzidisbbc64542010-08-15 01:15:20 +00005534 MarkUnusedFileScopedDecl(InstantiationVar);
Douglas Gregor251b4ff2009-10-08 07:24:58 +00005535 } else {
5536 assert(isa<CXXRecordDecl>(Member) && "Only member classes remain");
Douglas Gregorf6b11852009-10-08 15:14:33 +00005537 CXXRecordDecl *InstantiationClass = cast<CXXRecordDecl>(Instantiation);
5538 if (InstantiationClass->getTemplateSpecializationKind() ==
5539 TSK_ImplicitInstantiation) {
5540 InstantiationClass->setTemplateSpecializationKind(
5541 TSK_ExplicitSpecialization);
5542 InstantiationClass->setLocation(Member->getLocation());
5543 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005544
Douglas Gregor251b4ff2009-10-08 07:24:58 +00005545 cast<CXXRecordDecl>(Member)->setInstantiationOfMemberClass(
Douglas Gregorf6b11852009-10-08 15:14:33 +00005546 cast<CXXRecordDecl>(InstantiatedFrom),
5547 TSK_ExplicitSpecialization);
Douglas Gregor251b4ff2009-10-08 07:24:58 +00005548 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005549
Douglas Gregor1fef4e62009-10-07 22:35:40 +00005550 // Save the caller the trouble of having to figure out which declaration
5551 // this specialization matches.
John McCall68263142009-11-18 22:49:29 +00005552 Previous.clear();
5553 Previous.addDecl(Instantiation);
Douglas Gregor1fef4e62009-10-07 22:35:40 +00005554 return false;
5555}
5556
Douglas Gregor558c0322009-10-14 23:41:34 +00005557/// \brief Check the scope of an explicit instantiation.
Douglas Gregor669eed82010-07-13 00:10:04 +00005558///
5559/// \returns true if a serious error occurs, false otherwise.
5560static bool CheckExplicitInstantiationScope(Sema &S, NamedDecl *D,
Douglas Gregor558c0322009-10-14 23:41:34 +00005561 SourceLocation InstLoc,
5562 bool WasQualifiedName) {
Sebastian Redl7a126a42010-08-31 00:36:30 +00005563 DeclContext *OrigContext= D->getDeclContext()->getEnclosingNamespaceContext();
5564 DeclContext *CurContext = S.CurContext->getRedeclContext();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005565
Douglas Gregor669eed82010-07-13 00:10:04 +00005566 if (CurContext->isRecord()) {
5567 S.Diag(InstLoc, diag::err_explicit_instantiation_in_class)
5568 << D;
5569 return true;
5570 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005571
Douglas Gregor558c0322009-10-14 23:41:34 +00005572 // C++0x [temp.explicit]p2:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005573 // An explicit instantiation shall appear in an enclosing namespace of its
Douglas Gregor558c0322009-10-14 23:41:34 +00005574 // template.
5575 //
5576 // This is DR275, which we do not retroactively apply to C++98/03.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005577 if (S.getLangOptions().CPlusPlus0x &&
Sebastian Redl7a126a42010-08-31 00:36:30 +00005578 !CurContext->Encloses(OrigContext)) {
5579 if (NamespaceDecl *NS = dyn_cast<NamespaceDecl>(OrigContext))
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005580 S.Diag(InstLoc,
5581 S.getLangOptions().CPlusPlus0x?
Douglas Gregor2166beb2010-05-11 17:39:34 +00005582 diag::err_explicit_instantiation_out_of_scope
5583 : diag::warn_explicit_instantiation_out_of_scope_0x)
Douglas Gregor558c0322009-10-14 23:41:34 +00005584 << D << NS;
5585 else
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005586 S.Diag(InstLoc,
Douglas Gregor2166beb2010-05-11 17:39:34 +00005587 S.getLangOptions().CPlusPlus0x?
5588 diag::err_explicit_instantiation_must_be_global
5589 : diag::warn_explicit_instantiation_out_of_scope_0x)
Douglas Gregor558c0322009-10-14 23:41:34 +00005590 << D;
5591 S.Diag(D->getLocation(), diag::note_explicit_instantiation_here);
Douglas Gregor669eed82010-07-13 00:10:04 +00005592 return false;
Douglas Gregor558c0322009-10-14 23:41:34 +00005593 }
Sebastian Redl7a126a42010-08-31 00:36:30 +00005594
Douglas Gregor558c0322009-10-14 23:41:34 +00005595 // C++0x [temp.explicit]p2:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005596 // If the name declared in the explicit instantiation is an unqualified
5597 // name, the explicit instantiation shall appear in the namespace where
Douglas Gregor558c0322009-10-14 23:41:34 +00005598 // its template is declared or, if that namespace is inline (7.3.1), any
5599 // namespace from its enclosing namespace set.
5600 if (WasQualifiedName)
Douglas Gregor669eed82010-07-13 00:10:04 +00005601 return false;
Sebastian Redl7a126a42010-08-31 00:36:30 +00005602
5603 if (CurContext->InEnclosingNamespaceSetOf(OrigContext))
Douglas Gregor669eed82010-07-13 00:10:04 +00005604 return false;
Sebastian Redl7a126a42010-08-31 00:36:30 +00005605
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005606 S.Diag(InstLoc,
Douglas Gregor2166beb2010-05-11 17:39:34 +00005607 S.getLangOptions().CPlusPlus0x?
5608 diag::err_explicit_instantiation_unqualified_wrong_namespace
5609 : diag::warn_explicit_instantiation_unqualified_wrong_namespace_0x)
Sebastian Redl7a126a42010-08-31 00:36:30 +00005610 << D << OrigContext;
Douglas Gregor558c0322009-10-14 23:41:34 +00005611 S.Diag(D->getLocation(), diag::note_explicit_instantiation_here);
Douglas Gregor669eed82010-07-13 00:10:04 +00005612 return false;
Douglas Gregor558c0322009-10-14 23:41:34 +00005613}
5614
5615/// \brief Determine whether the given scope specifier has a template-id in it.
5616static bool ScopeSpecifierHasTemplateId(const CXXScopeSpec &SS) {
5617 if (!SS.isSet())
5618 return false;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005619
Douglas Gregor558c0322009-10-14 23:41:34 +00005620 // C++0x [temp.explicit]p2:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005621 // If the explicit instantiation is for a member function, a member class
Douglas Gregor558c0322009-10-14 23:41:34 +00005622 // or a static data member of a class template specialization, the name of
5623 // the class template specialization in the qualified-id for the member
5624 // name shall be a simple-template-id.
5625 //
5626 // C++98 has the same restriction, just worded differently.
5627 for (NestedNameSpecifier *NNS = (NestedNameSpecifier *)SS.getScopeRep();
5628 NNS; NNS = NNS->getPrefix())
John McCallf4c73712011-01-19 06:33:43 +00005629 if (const Type *T = NNS->getAsType())
Douglas Gregor558c0322009-10-14 23:41:34 +00005630 if (isa<TemplateSpecializationType>(T))
5631 return true;
5632
5633 return false;
5634}
5635
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00005636// Explicit instantiation of a class template specialization
John McCallf312b1e2010-08-26 23:41:50 +00005637DeclResult
Mike Stump1eb44332009-09-09 15:08:12 +00005638Sema::ActOnExplicitInstantiation(Scope *S,
Douglas Gregor45f96552009-09-04 06:33:52 +00005639 SourceLocation ExternLoc,
5640 SourceLocation TemplateLoc,
Mike Stump1eb44332009-09-09 15:08:12 +00005641 unsigned TagSpec,
Douglas Gregor93dfdb12009-05-13 00:25:59 +00005642 SourceLocation KWLoc,
5643 const CXXScopeSpec &SS,
5644 TemplateTy TemplateD,
5645 SourceLocation TemplateNameLoc,
5646 SourceLocation LAngleLoc,
5647 ASTTemplateArgsPtr TemplateArgsIn,
Douglas Gregor93dfdb12009-05-13 00:25:59 +00005648 SourceLocation RAngleLoc,
5649 AttributeList *Attr) {
5650 // Find the class template we're specializing
5651 TemplateName Name = TemplateD.getAsVal<TemplateName>();
Mike Stump1eb44332009-09-09 15:08:12 +00005652 ClassTemplateDecl *ClassTemplate
Douglas Gregor93dfdb12009-05-13 00:25:59 +00005653 = cast<ClassTemplateDecl>(Name.getAsTemplateDecl());
5654
5655 // Check that the specialization uses the same tag kind as the
5656 // original template.
Abramo Bagnara465d41b2010-05-11 21:36:43 +00005657 TagTypeKind Kind = TypeWithKeyword::getTagTypeKindForTypeSpec(TagSpec);
5658 assert(Kind != TTK_Enum &&
5659 "Invalid enum tag in class template explicit instantiation!");
Douglas Gregor501c5ce2009-05-14 16:41:31 +00005660 if (!isAcceptableTagRedeclaration(ClassTemplate->getTemplatedDecl(),
Mike Stump1eb44332009-09-09 15:08:12 +00005661 Kind, KWLoc,
Douglas Gregor501c5ce2009-05-14 16:41:31 +00005662 *ClassTemplate->getIdentifier())) {
Mike Stump1eb44332009-09-09 15:08:12 +00005663 Diag(KWLoc, diag::err_use_with_wrong_tag)
Douglas Gregor93dfdb12009-05-13 00:25:59 +00005664 << ClassTemplate
Douglas Gregor849b2432010-03-31 17:46:05 +00005665 << FixItHint::CreateReplacement(KWLoc,
Douglas Gregor93dfdb12009-05-13 00:25:59 +00005666 ClassTemplate->getTemplatedDecl()->getKindName());
Mike Stump1eb44332009-09-09 15:08:12 +00005667 Diag(ClassTemplate->getTemplatedDecl()->getLocation(),
Douglas Gregor93dfdb12009-05-13 00:25:59 +00005668 diag::note_previous_use);
5669 Kind = ClassTemplate->getTemplatedDecl()->getTagKind();
5670 }
5671
Douglas Gregor558c0322009-10-14 23:41:34 +00005672 // C++0x [temp.explicit]p2:
5673 // There are two forms of explicit instantiation: an explicit instantiation
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005674 // definition and an explicit instantiation declaration. An explicit
5675 // instantiation declaration begins with the extern keyword. [...]
Douglas Gregord5cb8762009-10-07 00:13:32 +00005676 TemplateSpecializationKind TSK
5677 = ExternLoc.isInvalid()? TSK_ExplicitInstantiationDefinition
5678 : TSK_ExplicitInstantiationDeclaration;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005679
Douglas Gregor93dfdb12009-05-13 00:25:59 +00005680 // Translate the parser's template argument list in our AST format.
John McCalld5532b62009-11-23 01:53:49 +00005681 TemplateArgumentListInfo TemplateArgs(LAngleLoc, RAngleLoc);
Douglas Gregor314b97f2009-11-10 19:49:08 +00005682 translateTemplateArguments(TemplateArgsIn, TemplateArgs);
Douglas Gregor93dfdb12009-05-13 00:25:59 +00005683
5684 // Check that the template argument list is well-formed for this
5685 // template.
Douglas Gregor910f8002010-11-07 23:05:16 +00005686 llvm::SmallVector<TemplateArgument, 4> Converted;
John McCalld5532b62009-11-23 01:53:49 +00005687 if (CheckTemplateArgumentList(ClassTemplate, TemplateNameLoc,
5688 TemplateArgs, false, Converted))
Douglas Gregor93dfdb12009-05-13 00:25:59 +00005689 return true;
5690
Douglas Gregor910f8002010-11-07 23:05:16 +00005691 assert((Converted.size() == ClassTemplate->getTemplateParameters()->size()) &&
Douglas Gregor93dfdb12009-05-13 00:25:59 +00005692 "Converted template argument list is too short!");
Mike Stump1eb44332009-09-09 15:08:12 +00005693
Douglas Gregor93dfdb12009-05-13 00:25:59 +00005694 // Find the class template specialization declaration that
5695 // corresponds to these arguments.
Douglas Gregor93dfdb12009-05-13 00:25:59 +00005696 void *InsertPos = 0;
5697 ClassTemplateSpecializationDecl *PrevDecl
Douglas Gregor910f8002010-11-07 23:05:16 +00005698 = ClassTemplate->findSpecialization(Converted.data(),
5699 Converted.size(), InsertPos);
Douglas Gregor93dfdb12009-05-13 00:25:59 +00005700
Abramo Bagnarac98971d2010-06-12 07:44:57 +00005701 TemplateSpecializationKind PrevDecl_TSK
5702 = PrevDecl ? PrevDecl->getTemplateSpecializationKind() : TSK_Undeclared;
5703
Douglas Gregord5cb8762009-10-07 00:13:32 +00005704 // C++0x [temp.explicit]p2:
5705 // [...] An explicit instantiation shall appear in an enclosing
5706 // namespace of its template. [...]
5707 //
5708 // This is C++ DR 275.
Douglas Gregor669eed82010-07-13 00:10:04 +00005709 if (CheckExplicitInstantiationScope(*this, ClassTemplate, TemplateNameLoc,
5710 SS.isSet()))
5711 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005712
Douglas Gregor93dfdb12009-05-13 00:25:59 +00005713 ClassTemplateSpecializationDecl *Specialization = 0;
5714
Abramo Bagnarac98971d2010-06-12 07:44:57 +00005715 bool HasNoEffect = false;
Douglas Gregor93dfdb12009-05-13 00:25:59 +00005716 if (PrevDecl) {
Douglas Gregor0d035142009-10-27 18:42:08 +00005717 if (CheckSpecializationInstantiationRedecl(TemplateNameLoc, TSK,
Abramo Bagnarac98971d2010-06-12 07:44:57 +00005718 PrevDecl, PrevDecl_TSK,
Douglas Gregor89a5bea2009-10-15 22:53:21 +00005719 PrevDecl->getPointOfInstantiation(),
Abramo Bagnarac98971d2010-06-12 07:44:57 +00005720 HasNoEffect))
John McCalld226f652010-08-21 09:40:31 +00005721 return PrevDecl;
Douglas Gregor93dfdb12009-05-13 00:25:59 +00005722
Abramo Bagnarac98971d2010-06-12 07:44:57 +00005723 // Even though HasNoEffect == true means that this explicit instantiation
5724 // has no effect on semantics, we go on to put its syntax in the AST.
5725
5726 if (PrevDecl_TSK == TSK_ImplicitInstantiation ||
5727 PrevDecl_TSK == TSK_Undeclared) {
Douglas Gregor52604ab2009-09-11 21:19:12 +00005728 // Since the only prior class template specialization with these
5729 // arguments was referenced but not declared, reuse that
Abramo Bagnarac98971d2010-06-12 07:44:57 +00005730 // declaration node as our own, updating the source location
5731 // for the template name to reflect our new declaration.
5732 // (Other source locations will be updated later.)
Douglas Gregor52604ab2009-09-11 21:19:12 +00005733 Specialization = PrevDecl;
5734 Specialization->setLocation(TemplateNameLoc);
5735 PrevDecl = 0;
5736 }
Douglas Gregor89a5bea2009-10-15 22:53:21 +00005737 }
Abramo Bagnarac98971d2010-06-12 07:44:57 +00005738
Douglas Gregor52604ab2009-09-11 21:19:12 +00005739 if (!Specialization) {
Douglas Gregor93dfdb12009-05-13 00:25:59 +00005740 // Create a new class template specialization declaration node for
5741 // this explicit specialization.
5742 Specialization
Douglas Gregor13c85772010-05-06 00:28:52 +00005743 = ClassTemplateSpecializationDecl::Create(Context, Kind,
Douglas Gregor93dfdb12009-05-13 00:25:59 +00005744 ClassTemplate->getDeclContext(),
Abramo Bagnaraba877ad2011-03-09 14:09:51 +00005745 KWLoc, TemplateNameLoc,
Douglas Gregor93dfdb12009-05-13 00:25:59 +00005746 ClassTemplate,
Douglas Gregor910f8002010-11-07 23:05:16 +00005747 Converted.data(),
5748 Converted.size(),
5749 PrevDecl);
John McCallb6217662010-03-15 10:12:16 +00005750 SetNestedNameSpecifier(Specialization, SS);
Douglas Gregor93dfdb12009-05-13 00:25:59 +00005751
Argyrios Kyrtzidiscc0b1bc2010-07-20 13:59:28 +00005752 if (!HasNoEffect && !PrevDecl) {
Abramo Bagnarac98971d2010-06-12 07:44:57 +00005753 // Insert the new specialization.
Argyrios Kyrtzidiscc0b1bc2010-07-20 13:59:28 +00005754 ClassTemplate->AddSpecialization(Specialization, InsertPos);
Abramo Bagnarac98971d2010-06-12 07:44:57 +00005755 }
Douglas Gregor93dfdb12009-05-13 00:25:59 +00005756 }
5757
5758 // Build the fully-sugared type for this explicit instantiation as
5759 // the user wrote in the explicit instantiation itself. This means
5760 // that we'll pretty-print the type retrieved from the
5761 // specialization's declaration the way that the user actually wrote
5762 // the explicit instantiation, rather than formatting the name based
5763 // on the "canonical" representation used to store the template
5764 // arguments in the specialization.
John McCall3cb0ebd2010-03-10 03:28:59 +00005765 TypeSourceInfo *WrittenTy
5766 = Context.getTemplateSpecializationTypeInfo(Name, TemplateNameLoc,
5767 TemplateArgs,
Douglas Gregor93dfdb12009-05-13 00:25:59 +00005768 Context.getTypeDeclType(Specialization));
5769 Specialization->setTypeAsWritten(WrittenTy);
5770 TemplateArgsIn.release();
5771
Abramo Bagnarac98971d2010-06-12 07:44:57 +00005772 // Set source locations for keywords.
5773 Specialization->setExternLoc(ExternLoc);
5774 Specialization->setTemplateKeywordLoc(TemplateLoc);
5775
5776 // Add the explicit instantiation into its lexical context. However,
5777 // since explicit instantiations are never found by name lookup, we
5778 // just put it into the declaration context directly.
5779 Specialization->setLexicalDeclContext(CurContext);
5780 CurContext->addDecl(Specialization);
5781
5782 // Syntax is now OK, so return if it has no other effect on semantics.
5783 if (HasNoEffect) {
5784 // Set the template specialization kind.
5785 Specialization->setTemplateSpecializationKind(TSK);
John McCalld226f652010-08-21 09:40:31 +00005786 return Specialization;
Douglas Gregord78f5982009-11-25 06:01:46 +00005787 }
Douglas Gregor93dfdb12009-05-13 00:25:59 +00005788
5789 // C++ [temp.explicit]p3:
Douglas Gregor93dfdb12009-05-13 00:25:59 +00005790 // A definition of a class template or class member template
5791 // shall be in scope at the point of the explicit instantiation of
5792 // the class template or class member template.
5793 //
5794 // This check comes when we actually try to perform the
5795 // instantiation.
Douglas Gregor89a5bea2009-10-15 22:53:21 +00005796 ClassTemplateSpecializationDecl *Def
5797 = cast_or_null<ClassTemplateSpecializationDecl>(
Douglas Gregor952b0172010-02-11 01:04:33 +00005798 Specialization->getDefinition());
Douglas Gregor89a5bea2009-10-15 22:53:21 +00005799 if (!Def)
Douglas Gregor972e6ce2009-10-27 06:26:26 +00005800 InstantiateClassTemplateSpecialization(TemplateNameLoc, Specialization, TSK);
Abramo Bagnarac98971d2010-06-12 07:44:57 +00005801 else if (TSK == TSK_ExplicitInstantiationDefinition) {
Douglas Gregor6fb745b2010-05-13 16:44:06 +00005802 MarkVTableUsed(TemplateNameLoc, Specialization, true);
Abramo Bagnarac98971d2010-06-12 07:44:57 +00005803 Specialization->setPointOfInstantiation(Def->getPointOfInstantiation());
5804 }
Douglas Gregor6fb745b2010-05-13 16:44:06 +00005805
Douglas Gregor0d035142009-10-27 18:42:08 +00005806 // Instantiate the members of this class template specialization.
5807 Def = cast_or_null<ClassTemplateSpecializationDecl>(
Douglas Gregor952b0172010-02-11 01:04:33 +00005808 Specialization->getDefinition());
Rafael Espindolab0f65ca2010-03-22 23:12:48 +00005809 if (Def) {
Rafael Espindolaf075b222010-03-23 19:55:22 +00005810 TemplateSpecializationKind Old_TSK = Def->getTemplateSpecializationKind();
5811
5812 // Fix a TSK_ExplicitInstantiationDeclaration followed by a
5813 // TSK_ExplicitInstantiationDefinition
5814 if (Old_TSK == TSK_ExplicitInstantiationDeclaration &&
5815 TSK == TSK_ExplicitInstantiationDefinition)
5816 Def->setTemplateSpecializationKind(TSK);
Rafael Espindolab0f65ca2010-03-22 23:12:48 +00005817
Douglas Gregor89a5bea2009-10-15 22:53:21 +00005818 InstantiateClassTemplateSpecializationMembers(TemplateNameLoc, Def, TSK);
Rafael Espindolab0f65ca2010-03-22 23:12:48 +00005819 }
Douglas Gregor93dfdb12009-05-13 00:25:59 +00005820
Abramo Bagnarac98971d2010-06-12 07:44:57 +00005821 // Set the template specialization kind.
5822 Specialization->setTemplateSpecializationKind(TSK);
John McCalld226f652010-08-21 09:40:31 +00005823 return Specialization;
Douglas Gregor93dfdb12009-05-13 00:25:59 +00005824}
5825
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00005826// Explicit instantiation of a member class of a class template.
John McCalld226f652010-08-21 09:40:31 +00005827DeclResult
Mike Stump1eb44332009-09-09 15:08:12 +00005828Sema::ActOnExplicitInstantiation(Scope *S,
Douglas Gregor45f96552009-09-04 06:33:52 +00005829 SourceLocation ExternLoc,
5830 SourceLocation TemplateLoc,
Mike Stump1eb44332009-09-09 15:08:12 +00005831 unsigned TagSpec,
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00005832 SourceLocation KWLoc,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00005833 CXXScopeSpec &SS,
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00005834 IdentifierInfo *Name,
5835 SourceLocation NameLoc,
5836 AttributeList *Attr) {
5837
Douglas Gregor402abb52009-05-28 23:31:59 +00005838 bool Owned = false;
John McCallc4e70192009-09-11 04:59:25 +00005839 bool IsDependent = false;
John McCallf312b1e2010-08-26 23:41:50 +00005840 Decl *TagD = ActOnTag(S, TagSpec, Sema::TUK_Reference,
John McCalld226f652010-08-21 09:40:31 +00005841 KWLoc, SS, Name, NameLoc, Attr, AS_none,
5842 MultiTemplateParamsArg(*this, 0, 0),
Abramo Bagnaraa88cefd2010-12-03 18:54:17 +00005843 Owned, IsDependent, false, false,
Douglas Gregor1274ccd2010-10-08 23:50:27 +00005844 TypeResult());
John McCallc4e70192009-09-11 04:59:25 +00005845 assert(!IsDependent && "explicit instantiation of dependent name not yet handled");
5846
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00005847 if (!TagD)
5848 return true;
5849
John McCalld226f652010-08-21 09:40:31 +00005850 TagDecl *Tag = cast<TagDecl>(TagD);
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00005851 if (Tag->isEnum()) {
5852 Diag(TemplateLoc, diag::err_explicit_instantiation_enum)
5853 << Context.getTypeDeclType(Tag);
5854 return true;
5855 }
5856
Douglas Gregord0c87372009-05-27 17:30:49 +00005857 if (Tag->isInvalidDecl())
5858 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005859
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00005860 CXXRecordDecl *Record = cast<CXXRecordDecl>(Tag);
5861 CXXRecordDecl *Pattern = Record->getInstantiatedFromMemberClass();
5862 if (!Pattern) {
5863 Diag(TemplateLoc, diag::err_explicit_instantiation_nontemplate_type)
5864 << Context.getTypeDeclType(Record);
5865 Diag(Record->getLocation(), diag::note_nontemplate_decl_here);
5866 return true;
5867 }
5868
Douglas Gregor558c0322009-10-14 23:41:34 +00005869 // C++0x [temp.explicit]p2:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005870 // If the explicit instantiation is for a class or member class, the
5871 // elaborated-type-specifier in the declaration shall include a
Douglas Gregor558c0322009-10-14 23:41:34 +00005872 // simple-template-id.
5873 //
5874 // C++98 has the same restriction, just worded differently.
5875 if (!ScopeSpecifierHasTemplateId(SS))
Douglas Gregora2dd8282010-06-16 16:26:47 +00005876 Diag(TemplateLoc, diag::ext_explicit_instantiation_without_qualified_id)
Douglas Gregor558c0322009-10-14 23:41:34 +00005877 << Record << SS.getRange();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005878
Douglas Gregor558c0322009-10-14 23:41:34 +00005879 // C++0x [temp.explicit]p2:
5880 // There are two forms of explicit instantiation: an explicit instantiation
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005881 // definition and an explicit instantiation declaration. An explicit
Douglas Gregor558c0322009-10-14 23:41:34 +00005882 // instantiation declaration begins with the extern keyword. [...]
Douglas Gregora74bbe22009-10-14 21:46:58 +00005883 TemplateSpecializationKind TSK
5884 = ExternLoc.isInvalid()? TSK_ExplicitInstantiationDefinition
5885 : TSK_ExplicitInstantiationDeclaration;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005886
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00005887 // C++0x [temp.explicit]p2:
5888 // [...] An explicit instantiation shall appear in an enclosing
5889 // namespace of its template. [...]
5890 //
5891 // This is C++ DR 275.
Douglas Gregor558c0322009-10-14 23:41:34 +00005892 CheckExplicitInstantiationScope(*this, Record, NameLoc, true);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005893
Douglas Gregor454885e2009-10-15 15:54:05 +00005894 // Verify that it is okay to explicitly instantiate here.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005895 CXXRecordDecl *PrevDecl
Douglas Gregor583f33b2009-10-15 18:07:02 +00005896 = cast_or_null<CXXRecordDecl>(Record->getPreviousDeclaration());
Douglas Gregor952b0172010-02-11 01:04:33 +00005897 if (!PrevDecl && Record->getDefinition())
Douglas Gregor583f33b2009-10-15 18:07:02 +00005898 PrevDecl = Record;
5899 if (PrevDecl) {
Douglas Gregor454885e2009-10-15 15:54:05 +00005900 MemberSpecializationInfo *MSInfo = PrevDecl->getMemberSpecializationInfo();
Abramo Bagnarac98971d2010-06-12 07:44:57 +00005901 bool HasNoEffect = false;
Douglas Gregor454885e2009-10-15 15:54:05 +00005902 assert(MSInfo && "No member specialization information?");
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005903 if (CheckSpecializationInstantiationRedecl(TemplateLoc, TSK,
Douglas Gregor454885e2009-10-15 15:54:05 +00005904 PrevDecl,
5905 MSInfo->getTemplateSpecializationKind(),
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005906 MSInfo->getPointOfInstantiation(),
Abramo Bagnarac98971d2010-06-12 07:44:57 +00005907 HasNoEffect))
Douglas Gregor454885e2009-10-15 15:54:05 +00005908 return true;
Abramo Bagnarac98971d2010-06-12 07:44:57 +00005909 if (HasNoEffect)
Douglas Gregor454885e2009-10-15 15:54:05 +00005910 return TagD;
5911 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005912
Douglas Gregor89a5bea2009-10-15 22:53:21 +00005913 CXXRecordDecl *RecordDef
Douglas Gregor952b0172010-02-11 01:04:33 +00005914 = cast_or_null<CXXRecordDecl>(Record->getDefinition());
Douglas Gregor89a5bea2009-10-15 22:53:21 +00005915 if (!RecordDef) {
Douglas Gregorbf7643e2009-10-15 12:53:22 +00005916 // C++ [temp.explicit]p3:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005917 // A definition of a member class of a class template shall be in scope
Douglas Gregorbf7643e2009-10-15 12:53:22 +00005918 // at the point of an explicit instantiation of the member class.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005919 CXXRecordDecl *Def
Douglas Gregor952b0172010-02-11 01:04:33 +00005920 = cast_or_null<CXXRecordDecl>(Pattern->getDefinition());
Douglas Gregorbf7643e2009-10-15 12:53:22 +00005921 if (!Def) {
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00005922 Diag(TemplateLoc, diag::err_explicit_instantiation_undefined_member)
5923 << 0 << Record->getDeclName() << Record->getDeclContext();
Douglas Gregorbf7643e2009-10-15 12:53:22 +00005924 Diag(Pattern->getLocation(), diag::note_forward_declaration)
5925 << Pattern;
5926 return true;
Douglas Gregor0d035142009-10-27 18:42:08 +00005927 } else {
5928 if (InstantiateClass(NameLoc, Record, Def,
5929 getTemplateInstantiationArgs(Record),
5930 TSK))
5931 return true;
5932
Douglas Gregor952b0172010-02-11 01:04:33 +00005933 RecordDef = cast_or_null<CXXRecordDecl>(Record->getDefinition());
Douglas Gregor0d035142009-10-27 18:42:08 +00005934 if (!RecordDef)
5935 return true;
5936 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005937 }
5938
Douglas Gregor0d035142009-10-27 18:42:08 +00005939 // Instantiate all of the members of the class.
5940 InstantiateClassMembers(NameLoc, RecordDef,
5941 getTemplateInstantiationArgs(Record), TSK);
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00005942
Douglas Gregor6fb745b2010-05-13 16:44:06 +00005943 if (TSK == TSK_ExplicitInstantiationDefinition)
5944 MarkVTableUsed(NameLoc, RecordDef, true);
5945
Mike Stump390b4cc2009-05-16 07:39:55 +00005946 // FIXME: We don't have any representation for explicit instantiations of
5947 // member classes. Such a representation is not needed for compilation, but it
5948 // should be available for clients that want to see all of the declarations in
5949 // the source code.
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00005950 return TagD;
5951}
5952
John McCallf312b1e2010-08-26 23:41:50 +00005953DeclResult Sema::ActOnExplicitInstantiation(Scope *S,
5954 SourceLocation ExternLoc,
5955 SourceLocation TemplateLoc,
5956 Declarator &D) {
Douglas Gregord5a423b2009-09-25 18:43:00 +00005957 // Explicit instantiations always require a name.
Abramo Bagnara25777432010-08-11 22:01:17 +00005958 // TODO: check if/when DNInfo should replace Name.
5959 DeclarationNameInfo NameInfo = GetNameForDeclarator(D);
5960 DeclarationName Name = NameInfo.getName();
Douglas Gregord5a423b2009-09-25 18:43:00 +00005961 if (!Name) {
5962 if (!D.isInvalidType())
5963 Diag(D.getDeclSpec().getSourceRange().getBegin(),
5964 diag::err_explicit_instantiation_requires_name)
5965 << D.getDeclSpec().getSourceRange()
5966 << D.getSourceRange();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005967
Douglas Gregord5a423b2009-09-25 18:43:00 +00005968 return true;
5969 }
5970
5971 // The scope passed in may not be a decl scope. Zip up the scope tree until
5972 // we find one that is.
5973 while ((S->getFlags() & Scope::DeclScope) == 0 ||
5974 (S->getFlags() & Scope::TemplateParamScope) != 0)
5975 S = S->getParent();
5976
5977 // Determine the type of the declaration.
John McCallbf1a0282010-06-04 23:28:52 +00005978 TypeSourceInfo *T = GetTypeForDeclarator(D, S);
5979 QualType R = T->getType();
Douglas Gregord5a423b2009-09-25 18:43:00 +00005980 if (R.isNull())
5981 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005982
Douglas Gregord5a423b2009-09-25 18:43:00 +00005983 if (D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_typedef) {
5984 // Cannot explicitly instantiate a typedef.
5985 Diag(D.getIdentifierLoc(), diag::err_explicit_instantiation_of_typedef)
5986 << Name;
5987 return true;
5988 }
5989
Douglas Gregor663b5a02009-10-14 20:14:33 +00005990 // C++0x [temp.explicit]p1:
5991 // [...] An explicit instantiation of a function template shall not use the
5992 // inline or constexpr specifiers.
5993 // Presumably, this also applies to member functions of class templates as
5994 // well.
5995 if (D.getDeclSpec().isInlineSpecified() && getLangOptions().CPlusPlus0x)
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005996 Diag(D.getDeclSpec().getInlineSpecLoc(),
Douglas Gregor663b5a02009-10-14 20:14:33 +00005997 diag::err_explicit_instantiation_inline)
Douglas Gregor849b2432010-03-31 17:46:05 +00005998 <<FixItHint::CreateRemoval(D.getDeclSpec().getInlineSpecLoc());
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005999
Douglas Gregor663b5a02009-10-14 20:14:33 +00006000 // FIXME: check for constexpr specifier.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006001
Douglas Gregor558c0322009-10-14 23:41:34 +00006002 // C++0x [temp.explicit]p2:
6003 // There are two forms of explicit instantiation: an explicit instantiation
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006004 // definition and an explicit instantiation declaration. An explicit
6005 // instantiation declaration begins with the extern keyword. [...]
Douglas Gregord5a423b2009-09-25 18:43:00 +00006006 TemplateSpecializationKind TSK
6007 = ExternLoc.isInvalid()? TSK_ExplicitInstantiationDefinition
6008 : TSK_ExplicitInstantiationDeclaration;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006009
Abramo Bagnara25777432010-08-11 22:01:17 +00006010 LookupResult Previous(*this, NameInfo, LookupOrdinaryName);
John McCalla24dc2e2009-11-17 02:14:36 +00006011 LookupParsedName(Previous, S, &D.getCXXScopeSpec());
Douglas Gregord5a423b2009-09-25 18:43:00 +00006012
6013 if (!R->isFunctionType()) {
6014 // C++ [temp.explicit]p1:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006015 // A [...] static data member of a class template can be explicitly
6016 // instantiated from the member definition associated with its class
Douglas Gregord5a423b2009-09-25 18:43:00 +00006017 // template.
John McCalla24dc2e2009-11-17 02:14:36 +00006018 if (Previous.isAmbiguous())
6019 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006020
John McCall1bcee0a2009-12-02 08:25:40 +00006021 VarDecl *Prev = Previous.getAsSingle<VarDecl>();
Douglas Gregord5a423b2009-09-25 18:43:00 +00006022 if (!Prev || !Prev->isStaticDataMember()) {
6023 // We expect to see a data data member here.
6024 Diag(D.getIdentifierLoc(), diag::err_explicit_instantiation_not_known)
6025 << Name;
6026 for (LookupResult::iterator P = Previous.begin(), PEnd = Previous.end();
6027 P != PEnd; ++P)
John McCallf36e02d2009-10-09 21:13:30 +00006028 Diag((*P)->getLocation(), diag::note_explicit_instantiation_here);
Douglas Gregord5a423b2009-09-25 18:43:00 +00006029 return true;
6030 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006031
Douglas Gregord5a423b2009-09-25 18:43:00 +00006032 if (!Prev->getInstantiatedFromStaticDataMember()) {
6033 // FIXME: Check for explicit specialization?
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006034 Diag(D.getIdentifierLoc(),
Douglas Gregord5a423b2009-09-25 18:43:00 +00006035 diag::err_explicit_instantiation_data_member_not_instantiated)
6036 << Prev;
6037 Diag(Prev->getLocation(), diag::note_explicit_instantiation_here);
6038 // FIXME: Can we provide a note showing where this was declared?
6039 return true;
6040 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006041
Douglas Gregor558c0322009-10-14 23:41:34 +00006042 // C++0x [temp.explicit]p2:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006043 // If the explicit instantiation is for a member function, a member class
Douglas Gregor558c0322009-10-14 23:41:34 +00006044 // or a static data member of a class template specialization, the name of
6045 // the class template specialization in the qualified-id for the member
6046 // name shall be a simple-template-id.
6047 //
6048 // C++98 has the same restriction, just worded differently.
6049 if (!ScopeSpecifierHasTemplateId(D.getCXXScopeSpec()))
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006050 Diag(D.getIdentifierLoc(),
Douglas Gregora2dd8282010-06-16 16:26:47 +00006051 diag::ext_explicit_instantiation_without_qualified_id)
Douglas Gregor558c0322009-10-14 23:41:34 +00006052 << Prev << D.getCXXScopeSpec().getRange();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006053
Douglas Gregor558c0322009-10-14 23:41:34 +00006054 // Check the scope of this explicit instantiation.
6055 CheckExplicitInstantiationScope(*this, Prev, D.getIdentifierLoc(), true);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006056
Douglas Gregor454885e2009-10-15 15:54:05 +00006057 // Verify that it is okay to explicitly instantiate here.
6058 MemberSpecializationInfo *MSInfo = Prev->getMemberSpecializationInfo();
6059 assert(MSInfo && "Missing static data member specialization info?");
Abramo Bagnarac98971d2010-06-12 07:44:57 +00006060 bool HasNoEffect = false;
Douglas Gregor0d035142009-10-27 18:42:08 +00006061 if (CheckSpecializationInstantiationRedecl(D.getIdentifierLoc(), TSK, Prev,
Douglas Gregor454885e2009-10-15 15:54:05 +00006062 MSInfo->getTemplateSpecializationKind(),
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006063 MSInfo->getPointOfInstantiation(),
Abramo Bagnarac98971d2010-06-12 07:44:57 +00006064 HasNoEffect))
Douglas Gregor454885e2009-10-15 15:54:05 +00006065 return true;
Abramo Bagnarac98971d2010-06-12 07:44:57 +00006066 if (HasNoEffect)
John McCalld226f652010-08-21 09:40:31 +00006067 return (Decl*) 0;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006068
Douglas Gregord5a423b2009-09-25 18:43:00 +00006069 // Instantiate static data member.
Douglas Gregor0a897e32009-10-15 17:21:20 +00006070 Prev->setTemplateSpecializationKind(TSK, D.getIdentifierLoc());
Douglas Gregord5a423b2009-09-25 18:43:00 +00006071 if (TSK == TSK_ExplicitInstantiationDefinition)
Chandler Carruth58e390e2010-08-25 08:27:02 +00006072 InstantiateStaticDataMemberDefinition(D.getIdentifierLoc(), Prev);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006073
Douglas Gregord5a423b2009-09-25 18:43:00 +00006074 // FIXME: Create an ExplicitInstantiation node?
John McCalld226f652010-08-21 09:40:31 +00006075 return (Decl*) 0;
Douglas Gregord5a423b2009-09-25 18:43:00 +00006076 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006077
6078 // If the declarator is a template-id, translate the parser's template
Douglas Gregor0b60d9e2009-09-25 23:53:26 +00006079 // argument list into our AST format.
Douglas Gregordb422df2009-09-25 21:45:23 +00006080 bool HasExplicitTemplateArgs = false;
John McCalld5532b62009-11-23 01:53:49 +00006081 TemplateArgumentListInfo TemplateArgs;
Douglas Gregor3f9a0562009-11-03 01:35:08 +00006082 if (D.getName().getKind() == UnqualifiedId::IK_TemplateId) {
6083 TemplateIdAnnotation *TemplateId = D.getName().TemplateId;
John McCalld5532b62009-11-23 01:53:49 +00006084 TemplateArgs.setLAngleLoc(TemplateId->LAngleLoc);
6085 TemplateArgs.setRAngleLoc(TemplateId->RAngleLoc);
Douglas Gregordb422df2009-09-25 21:45:23 +00006086 ASTTemplateArgsPtr TemplateArgsPtr(*this,
6087 TemplateId->getTemplateArgs(),
Douglas Gregordb422df2009-09-25 21:45:23 +00006088 TemplateId->NumArgs);
John McCalld5532b62009-11-23 01:53:49 +00006089 translateTemplateArguments(TemplateArgsPtr, TemplateArgs);
Douglas Gregordb422df2009-09-25 21:45:23 +00006090 HasExplicitTemplateArgs = true;
Douglas Gregorb2f81cf2009-10-01 23:51:25 +00006091 TemplateArgsPtr.release();
Douglas Gregordb422df2009-09-25 21:45:23 +00006092 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006093
Douglas Gregord5a423b2009-09-25 18:43:00 +00006094 // C++ [temp.explicit]p1:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006095 // A [...] function [...] can be explicitly instantiated from its template.
6096 // A member function [...] of a class template can be explicitly
6097 // instantiated from the member definition associated with its class
Douglas Gregord5a423b2009-09-25 18:43:00 +00006098 // template.
John McCallc373d482010-01-27 01:50:18 +00006099 UnresolvedSet<8> Matches;
Douglas Gregord5a423b2009-09-25 18:43:00 +00006100 for (LookupResult::iterator P = Previous.begin(), PEnd = Previous.end();
6101 P != PEnd; ++P) {
6102 NamedDecl *Prev = *P;
Douglas Gregordb422df2009-09-25 21:45:23 +00006103 if (!HasExplicitTemplateArgs) {
6104 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(Prev)) {
6105 if (Context.hasSameUnqualifiedType(Method->getType(), R)) {
6106 Matches.clear();
Douglas Gregor48026d22010-01-11 18:40:55 +00006107
John McCallc373d482010-01-27 01:50:18 +00006108 Matches.addDecl(Method, P.getAccess());
Douglas Gregor48026d22010-01-11 18:40:55 +00006109 if (Method->getTemplateSpecializationKind() == TSK_Undeclared)
6110 break;
Douglas Gregordb422df2009-09-25 21:45:23 +00006111 }
Douglas Gregord5a423b2009-09-25 18:43:00 +00006112 }
6113 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006114
Douglas Gregord5a423b2009-09-25 18:43:00 +00006115 FunctionTemplateDecl *FunTmpl = dyn_cast<FunctionTemplateDecl>(Prev);
6116 if (!FunTmpl)
6117 continue;
6118
John McCall5769d612010-02-08 23:07:23 +00006119 TemplateDeductionInfo Info(Context, D.getIdentifierLoc());
Douglas Gregord5a423b2009-09-25 18:43:00 +00006120 FunctionDecl *Specialization = 0;
6121 if (TemplateDeductionResult TDK
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006122 = DeduceTemplateArguments(FunTmpl,
John McCalld5532b62009-11-23 01:53:49 +00006123 (HasExplicitTemplateArgs ? &TemplateArgs : 0),
Douglas Gregord5a423b2009-09-25 18:43:00 +00006124 R, Specialization, Info)) {
6125 // FIXME: Keep track of almost-matches?
6126 (void)TDK;
6127 continue;
6128 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006129
John McCallc373d482010-01-27 01:50:18 +00006130 Matches.addDecl(Specialization, P.getAccess());
Douglas Gregord5a423b2009-09-25 18:43:00 +00006131 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006132
Douglas Gregord5a423b2009-09-25 18:43:00 +00006133 // Find the most specialized function template specialization.
John McCallc373d482010-01-27 01:50:18 +00006134 UnresolvedSetIterator Result
Douglas Gregor5c7bf422011-01-11 17:34:58 +00006135 = getMostSpecialized(Matches.begin(), Matches.end(), TPOC_Other, 0,
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006136 D.getIdentifierLoc(),
Douglas Gregorfe6b2d42010-03-29 23:34:08 +00006137 PDiag(diag::err_explicit_instantiation_not_known) << Name,
6138 PDiag(diag::err_explicit_instantiation_ambiguous) << Name,
6139 PDiag(diag::note_explicit_instantiation_candidate));
Douglas Gregord5a423b2009-09-25 18:43:00 +00006140
John McCallc373d482010-01-27 01:50:18 +00006141 if (Result == Matches.end())
Douglas Gregord5a423b2009-09-25 18:43:00 +00006142 return true;
John McCallc373d482010-01-27 01:50:18 +00006143
6144 // Ignore access control bits, we don't need them for redeclaration checking.
6145 FunctionDecl *Specialization = cast<FunctionDecl>(*Result);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006146
Douglas Gregor0a897e32009-10-15 17:21:20 +00006147 if (Specialization->getTemplateSpecializationKind() == TSK_Undeclared) {
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006148 Diag(D.getIdentifierLoc(),
Douglas Gregord5a423b2009-09-25 18:43:00 +00006149 diag::err_explicit_instantiation_member_function_not_instantiated)
6150 << Specialization
6151 << (Specialization->getTemplateSpecializationKind() ==
6152 TSK_ExplicitSpecialization);
6153 Diag(Specialization->getLocation(), diag::note_explicit_instantiation_here);
6154 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006155 }
6156
Douglas Gregor0a897e32009-10-15 17:21:20 +00006157 FunctionDecl *PrevDecl = Specialization->getPreviousDeclaration();
Douglas Gregor583f33b2009-10-15 18:07:02 +00006158 if (!PrevDecl && Specialization->isThisDeclarationADefinition())
6159 PrevDecl = Specialization;
6160
Douglas Gregor0a897e32009-10-15 17:21:20 +00006161 if (PrevDecl) {
Abramo Bagnarac98971d2010-06-12 07:44:57 +00006162 bool HasNoEffect = false;
Douglas Gregor0d035142009-10-27 18:42:08 +00006163 if (CheckSpecializationInstantiationRedecl(D.getIdentifierLoc(), TSK,
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006164 PrevDecl,
6165 PrevDecl->getTemplateSpecializationKind(),
Douglas Gregor0a897e32009-10-15 17:21:20 +00006166 PrevDecl->getPointOfInstantiation(),
Abramo Bagnarac98971d2010-06-12 07:44:57 +00006167 HasNoEffect))
Douglas Gregor0a897e32009-10-15 17:21:20 +00006168 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006169
Douglas Gregor0a897e32009-10-15 17:21:20 +00006170 // FIXME: We may still want to build some representation of this
6171 // explicit specialization.
Abramo Bagnarac98971d2010-06-12 07:44:57 +00006172 if (HasNoEffect)
John McCalld226f652010-08-21 09:40:31 +00006173 return (Decl*) 0;
Douglas Gregor0a897e32009-10-15 17:21:20 +00006174 }
Anders Carlsson26d6e9d2009-11-24 05:34:41 +00006175
6176 Specialization->setTemplateSpecializationKind(TSK, D.getIdentifierLoc());
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006177
Douglas Gregor0a897e32009-10-15 17:21:20 +00006178 if (TSK == TSK_ExplicitInstantiationDefinition)
Chandler Carruth58e390e2010-08-25 08:27:02 +00006179 InstantiateFunctionDefinition(D.getIdentifierLoc(), Specialization);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006180
Douglas Gregor558c0322009-10-14 23:41:34 +00006181 // C++0x [temp.explicit]p2:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006182 // If the explicit instantiation is for a member function, a member class
Douglas Gregor558c0322009-10-14 23:41:34 +00006183 // or a static data member of a class template specialization, the name of
6184 // the class template specialization in the qualified-id for the member
6185 // name shall be a simple-template-id.
6186 //
6187 // C++98 has the same restriction, just worded differently.
Douglas Gregor0a897e32009-10-15 17:21:20 +00006188 FunctionTemplateDecl *FunTmpl = Specialization->getPrimaryTemplate();
Douglas Gregor3f9a0562009-11-03 01:35:08 +00006189 if (D.getName().getKind() != UnqualifiedId::IK_TemplateId && !FunTmpl &&
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006190 D.getCXXScopeSpec().isSet() &&
Douglas Gregor558c0322009-10-14 23:41:34 +00006191 !ScopeSpecifierHasTemplateId(D.getCXXScopeSpec()))
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006192 Diag(D.getIdentifierLoc(),
Douglas Gregora2dd8282010-06-16 16:26:47 +00006193 diag::ext_explicit_instantiation_without_qualified_id)
Douglas Gregor558c0322009-10-14 23:41:34 +00006194 << Specialization << D.getCXXScopeSpec().getRange();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006195
Douglas Gregor558c0322009-10-14 23:41:34 +00006196 CheckExplicitInstantiationScope(*this,
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006197 FunTmpl? (NamedDecl *)FunTmpl
Douglas Gregor558c0322009-10-14 23:41:34 +00006198 : Specialization->getInstantiatedFromMemberFunction(),
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006199 D.getIdentifierLoc(),
Douglas Gregor558c0322009-10-14 23:41:34 +00006200 D.getCXXScopeSpec().isSet());
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006201
Douglas Gregord5a423b2009-09-25 18:43:00 +00006202 // FIXME: Create some kind of ExplicitInstantiationDecl here.
John McCalld226f652010-08-21 09:40:31 +00006203 return (Decl*) 0;
Douglas Gregord5a423b2009-09-25 18:43:00 +00006204}
6205
John McCallf312b1e2010-08-26 23:41:50 +00006206TypeResult
John McCallc4e70192009-09-11 04:59:25 +00006207Sema::ActOnDependentTag(Scope *S, unsigned TagSpec, TagUseKind TUK,
6208 const CXXScopeSpec &SS, IdentifierInfo *Name,
6209 SourceLocation TagLoc, SourceLocation NameLoc) {
6210 // This has to hold, because SS is expected to be defined.
6211 assert(Name && "Expected a name in a dependent tag");
6212
6213 NestedNameSpecifier *NNS
6214 = static_cast<NestedNameSpecifier *>(SS.getScopeRep());
6215 if (!NNS)
6216 return true;
6217
Abramo Bagnara465d41b2010-05-11 21:36:43 +00006218 TagTypeKind Kind = TypeWithKeyword::getTagTypeKindForTypeSpec(TagSpec);
Daniel Dunbar12c0ade2010-04-01 16:50:48 +00006219
Douglas Gregor48c89f42010-04-24 16:38:41 +00006220 if (TUK == TUK_Declaration || TUK == TUK_Definition) {
6221 Diag(NameLoc, diag::err_dependent_tag_decl)
Abramo Bagnara465d41b2010-05-11 21:36:43 +00006222 << (TUK == TUK_Definition) << Kind << SS.getRange();
Douglas Gregor48c89f42010-04-24 16:38:41 +00006223 return true;
6224 }
Abramo Bagnara465d41b2010-05-11 21:36:43 +00006225
Douglas Gregor059101f2011-03-02 00:47:37 +00006226 // Create the resulting type.
Abramo Bagnara465d41b2010-05-11 21:36:43 +00006227 ElaboratedTypeKeyword Kwd = TypeWithKeyword::getKeywordForTagTypeKind(Kind);
Douglas Gregor059101f2011-03-02 00:47:37 +00006228 QualType Result = Context.getDependentNameType(Kwd, NNS, Name);
6229
6230 // Create type-source location information for this type.
6231 TypeLocBuilder TLB;
6232 DependentNameTypeLoc TL = TLB.push<DependentNameTypeLoc>(Result);
6233 TL.setKeywordLoc(TagLoc);
6234 TL.setQualifierLoc(SS.getWithLocInContext(Context));
6235 TL.setNameLoc(NameLoc);
6236 return CreateParsedType(Result, TLB.getTypeSourceInfo(Context, Result));
John McCallc4e70192009-09-11 04:59:25 +00006237}
6238
John McCallf312b1e2010-08-26 23:41:50 +00006239TypeResult
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006240Sema::ActOnTypenameType(Scope *S, SourceLocation TypenameLoc,
6241 const CXXScopeSpec &SS, const IdentifierInfo &II,
Douglas Gregor1a15dae2010-06-16 22:31:08 +00006242 SourceLocation IdLoc) {
Douglas Gregore29425b2011-02-28 22:42:13 +00006243 if (SS.isInvalid())
Douglas Gregord57959a2009-03-27 23:10:48 +00006244 return true;
Douglas Gregore29425b2011-02-28 22:42:13 +00006245
Douglas Gregor1a15dae2010-06-16 22:31:08 +00006246 if (TypenameLoc.isValid() && S && !S->getTemplateParamParent() &&
6247 !getLangOptions().CPlusPlus0x)
6248 Diag(TypenameLoc, diag::ext_typename_outside_of_template)
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006249 << FixItHint::CreateRemoval(TypenameLoc);
6250
Douglas Gregor2494dd02011-03-01 01:34:45 +00006251 NestedNameSpecifierLoc QualifierLoc = SS.getWithLocInContext(Context);
Douglas Gregor9e876872011-03-01 18:12:44 +00006252 QualType T = CheckTypenameType(TypenameLoc.isValid()? ETK_Typename : ETK_None,
6253 TypenameLoc, QualifierLoc, II, IdLoc);
Douglas Gregor31a19b62009-04-01 21:51:26 +00006254 if (T.isNull())
6255 return true;
John McCall63b43852010-04-29 23:50:39 +00006256
6257 TypeSourceInfo *TSI = Context.CreateTypeSourceInfo(T);
6258 if (isa<DependentNameType>(T)) {
6259 DependentNameTypeLoc TL = cast<DependentNameTypeLoc>(TSI->getTypeLoc());
John McCall4e449832010-05-28 23:32:21 +00006260 TL.setKeywordLoc(TypenameLoc);
Douglas Gregor2494dd02011-03-01 01:34:45 +00006261 TL.setQualifierLoc(QualifierLoc);
John McCall4e449832010-05-28 23:32:21 +00006262 TL.setNameLoc(IdLoc);
John McCall63b43852010-04-29 23:50:39 +00006263 } else {
Abramo Bagnara465d41b2010-05-11 21:36:43 +00006264 ElaboratedTypeLoc TL = cast<ElaboratedTypeLoc>(TSI->getTypeLoc());
John McCall4e449832010-05-28 23:32:21 +00006265 TL.setKeywordLoc(TypenameLoc);
Douglas Gregor9e876872011-03-01 18:12:44 +00006266 TL.setQualifierLoc(QualifierLoc);
John McCall4e449832010-05-28 23:32:21 +00006267 cast<TypeSpecTypeLoc>(TL.getNamedTypeLoc()).setNameLoc(IdLoc);
John McCall63b43852010-04-29 23:50:39 +00006268 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006269
John McCallb3d87482010-08-24 05:47:05 +00006270 return CreateParsedType(T, TSI);
Douglas Gregord57959a2009-03-27 23:10:48 +00006271}
6272
John McCallf312b1e2010-08-26 23:41:50 +00006273TypeResult
Douglas Gregora02411e2011-02-27 22:46:49 +00006274Sema::ActOnTypenameType(Scope *S, SourceLocation TypenameLoc,
6275 const CXXScopeSpec &SS,
6276 SourceLocation TemplateLoc,
6277 TemplateTy TemplateIn,
6278 SourceLocation TemplateNameLoc,
6279 SourceLocation LAngleLoc,
6280 ASTTemplateArgsPtr TemplateArgsIn,
6281 SourceLocation RAngleLoc) {
Douglas Gregor1a15dae2010-06-16 22:31:08 +00006282 if (TypenameLoc.isValid() && S && !S->getTemplateParamParent() &&
6283 !getLangOptions().CPlusPlus0x)
6284 Diag(TypenameLoc, diag::ext_typename_outside_of_template)
Douglas Gregora02411e2011-02-27 22:46:49 +00006285 << FixItHint::CreateRemoval(TypenameLoc);
6286
6287 // Translate the parser's template argument list in our AST format.
6288 TemplateArgumentListInfo TemplateArgs(LAngleLoc, RAngleLoc);
6289 translateTemplateArguments(TemplateArgsIn, TemplateArgs);
6290
6291 TemplateName Template = TemplateIn.get();
Douglas Gregoref24c4b2011-03-01 16:44:30 +00006292 if (DependentTemplateName *DTN = Template.getAsDependentTemplateName()) {
6293 // Construct a dependent template specialization type.
6294 assert(DTN && "dependent template has non-dependent name?");
6295 assert(DTN->getQualifier()
6296 == static_cast<NestedNameSpecifier*>(SS.getScopeRep()));
6297 QualType T = Context.getDependentTemplateSpecializationType(ETK_Typename,
6298 DTN->getQualifier(),
6299 DTN->getIdentifier(),
6300 TemplateArgs);
Douglas Gregora02411e2011-02-27 22:46:49 +00006301
Douglas Gregoref24c4b2011-03-01 16:44:30 +00006302 // Create source-location information for this type.
John McCall4e449832010-05-28 23:32:21 +00006303 TypeLocBuilder Builder;
Douglas Gregoref24c4b2011-03-01 16:44:30 +00006304 DependentTemplateSpecializationTypeLoc SpecTL
6305 = Builder.push<DependentTemplateSpecializationTypeLoc>(T);
Douglas Gregora02411e2011-02-27 22:46:49 +00006306 SpecTL.setLAngleLoc(LAngleLoc);
6307 SpecTL.setRAngleLoc(RAngleLoc);
Douglas Gregoref24c4b2011-03-01 16:44:30 +00006308 SpecTL.setKeywordLoc(TypenameLoc);
Douglas Gregor94fdffa2011-03-01 20:11:18 +00006309 SpecTL.setQualifierLoc(SS.getWithLocInContext(Context));
Douglas Gregoref24c4b2011-03-01 16:44:30 +00006310 SpecTL.setNameLoc(TemplateNameLoc);
Douglas Gregora02411e2011-02-27 22:46:49 +00006311 for (unsigned I = 0, N = TemplateArgs.size(); I != N; ++I)
6312 SpecTL.setArgLocInfo(I, TemplateArgs[I].getLocInfo());
Douglas Gregoref24c4b2011-03-01 16:44:30 +00006313 return CreateParsedType(T, Builder.getTypeSourceInfo(Context, T));
Douglas Gregor6946baf2009-09-02 13:05:45 +00006314 }
Douglas Gregora02411e2011-02-27 22:46:49 +00006315
Douglas Gregoref24c4b2011-03-01 16:44:30 +00006316 QualType T = CheckTemplateIdType(Template, TemplateNameLoc, TemplateArgs);
6317 if (T.isNull())
6318 return true;
Douglas Gregora02411e2011-02-27 22:46:49 +00006319
Douglas Gregoref24c4b2011-03-01 16:44:30 +00006320 // Provide source-location information for the template specialization
6321 // type.
Douglas Gregora02411e2011-02-27 22:46:49 +00006322 TypeLocBuilder Builder;
Douglas Gregoref24c4b2011-03-01 16:44:30 +00006323 TemplateSpecializationTypeLoc SpecTL
6324 = Builder.push<TemplateSpecializationTypeLoc>(T);
6325
6326 // FIXME: No place to set the location of the 'template' keyword!
Douglas Gregora02411e2011-02-27 22:46:49 +00006327 SpecTL.setLAngleLoc(LAngleLoc);
6328 SpecTL.setRAngleLoc(RAngleLoc);
Douglas Gregoref24c4b2011-03-01 16:44:30 +00006329 SpecTL.setTemplateNameLoc(TemplateNameLoc);
Douglas Gregora02411e2011-02-27 22:46:49 +00006330 for (unsigned I = 0, N = TemplateArgs.size(); I != N; ++I)
6331 SpecTL.setArgLocInfo(I, TemplateArgs[I].getLocInfo());
6332
Douglas Gregoref24c4b2011-03-01 16:44:30 +00006333 T = Context.getElaboratedType(ETK_Typename, SS.getScopeRep(), T);
6334 ElaboratedTypeLoc TL = Builder.push<ElaboratedTypeLoc>(T);
6335 TL.setKeywordLoc(TypenameLoc);
Douglas Gregor9e876872011-03-01 18:12:44 +00006336 TL.setQualifierLoc(SS.getWithLocInContext(Context));
6337
Douglas Gregoref24c4b2011-03-01 16:44:30 +00006338 TypeSourceInfo *TSI = Builder.getTypeSourceInfo(Context, T);
6339 return CreateParsedType(T, TSI);
Douglas Gregor17343172009-04-01 00:28:59 +00006340}
6341
Douglas Gregora02411e2011-02-27 22:46:49 +00006342
Douglas Gregord57959a2009-03-27 23:10:48 +00006343/// \brief Build the type that describes a C++ typename specifier,
6344/// e.g., "typename T::type".
6345QualType
Douglas Gregore29425b2011-02-28 22:42:13 +00006346Sema::CheckTypenameType(ElaboratedTypeKeyword Keyword,
6347 SourceLocation KeywordLoc,
6348 NestedNameSpecifierLoc QualifierLoc,
6349 const IdentifierInfo &II,
Abramo Bagnarae4da7a02010-05-19 21:37:53 +00006350 SourceLocation IILoc) {
John McCall77bb1aa2010-05-01 00:40:08 +00006351 CXXScopeSpec SS;
Douglas Gregore29425b2011-02-28 22:42:13 +00006352 SS.Adopt(QualifierLoc);
Douglas Gregord57959a2009-03-27 23:10:48 +00006353
John McCall77bb1aa2010-05-01 00:40:08 +00006354 DeclContext *Ctx = computeDeclContext(SS);
6355 if (!Ctx) {
6356 // If the nested-name-specifier is dependent and couldn't be
6357 // resolved to a type, build a typename type.
Douglas Gregore29425b2011-02-28 22:42:13 +00006358 assert(QualifierLoc.getNestedNameSpecifier()->isDependent());
6359 return Context.getDependentNameType(Keyword,
6360 QualifierLoc.getNestedNameSpecifier(),
6361 &II);
Douglas Gregor42af25f2009-05-11 19:58:34 +00006362 }
Douglas Gregord57959a2009-03-27 23:10:48 +00006363
John McCall77bb1aa2010-05-01 00:40:08 +00006364 // If the nested-name-specifier refers to the current instantiation,
6365 // the "typename" keyword itself is superfluous. In C++03, the
6366 // program is actually ill-formed. However, DR 382 (in C++0x CD1)
6367 // allows such extraneous "typename" keywords, and we retroactively
Douglas Gregor732281d2010-06-14 22:07:54 +00006368 // apply this DR to C++03 code with only a warning. In any case we continue.
Douglas Gregor42af25f2009-05-11 19:58:34 +00006369
John McCall77bb1aa2010-05-01 00:40:08 +00006370 if (RequireCompleteDeclContext(SS, Ctx))
6371 return QualType();
Douglas Gregord57959a2009-03-27 23:10:48 +00006372
6373 DeclarationName Name(&II);
Abramo Bagnarae4da7a02010-05-19 21:37:53 +00006374 LookupResult Result(*this, Name, IILoc, LookupOrdinaryName);
John McCalla24dc2e2009-11-17 02:14:36 +00006375 LookupQualifiedName(Result, Ctx);
Douglas Gregord57959a2009-03-27 23:10:48 +00006376 unsigned DiagID = 0;
6377 Decl *Referenced = 0;
John McCalla24dc2e2009-11-17 02:14:36 +00006378 switch (Result.getResultKind()) {
Douglas Gregord57959a2009-03-27 23:10:48 +00006379 case LookupResult::NotFound:
Douglas Gregor3f093272009-10-13 21:16:44 +00006380 DiagID = diag::err_typename_nested_not_found;
Douglas Gregord57959a2009-03-27 23:10:48 +00006381 break;
Douglas Gregord9545042010-12-09 00:06:27 +00006382
6383 case LookupResult::FoundUnresolvedValue: {
6384 // We found a using declaration that is a value. Most likely, the using
6385 // declaration itself is meant to have the 'typename' keyword.
Douglas Gregore29425b2011-02-28 22:42:13 +00006386 SourceRange FullRange(KeywordLoc.isValid() ? KeywordLoc : SS.getBeginLoc(),
Douglas Gregord9545042010-12-09 00:06:27 +00006387 IILoc);
6388 Diag(IILoc, diag::err_typename_refers_to_using_value_decl)
6389 << Name << Ctx << FullRange;
6390 if (UnresolvedUsingValueDecl *Using
6391 = dyn_cast<UnresolvedUsingValueDecl>(Result.getRepresentativeDecl())){
Douglas Gregordc355712011-02-25 00:36:19 +00006392 SourceLocation Loc = Using->getQualifierLoc().getBeginLoc();
Douglas Gregord9545042010-12-09 00:06:27 +00006393 Diag(Loc, diag::note_using_value_decl_missing_typename)
6394 << FixItHint::CreateInsertion(Loc, "typename ");
6395 }
6396 }
6397 // Fall through to create a dependent typename type, from which we can recover
6398 // better.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006399
Douglas Gregor7d3f5762010-01-15 01:44:47 +00006400 case LookupResult::NotFoundInCurrentInstantiation:
6401 // Okay, it's a member of an unknown instantiation.
Douglas Gregore29425b2011-02-28 22:42:13 +00006402 return Context.getDependentNameType(Keyword,
6403 QualifierLoc.getNestedNameSpecifier(),
6404 &II);
Douglas Gregord57959a2009-03-27 23:10:48 +00006405
6406 case LookupResult::Found:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006407 if (TypeDecl *Type = dyn_cast<TypeDecl>(Result.getFoundDecl())) {
Abramo Bagnara465d41b2010-05-11 21:36:43 +00006408 // We found a type. Build an ElaboratedType, since the
6409 // typename-specifier was just sugar.
Douglas Gregore29425b2011-02-28 22:42:13 +00006410 return Context.getElaboratedType(ETK_Typename,
6411 QualifierLoc.getNestedNameSpecifier(),
Abramo Bagnara465d41b2010-05-11 21:36:43 +00006412 Context.getTypeDeclType(Type));
Douglas Gregord57959a2009-03-27 23:10:48 +00006413 }
6414
6415 DiagID = diag::err_typename_nested_not_type;
John McCallf36e02d2009-10-09 21:13:30 +00006416 Referenced = Result.getFoundDecl();
Douglas Gregord57959a2009-03-27 23:10:48 +00006417 break;
6418
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006419
Jeffrey Yasskin9f61aa92009-12-12 05:05:38 +00006420 llvm_unreachable("unresolved using decl in non-dependent context");
John McCall7ba107a2009-11-18 02:36:19 +00006421 return QualType();
6422
Douglas Gregord57959a2009-03-27 23:10:48 +00006423 case LookupResult::FoundOverloaded:
6424 DiagID = diag::err_typename_nested_not_type;
6425 Referenced = *Result.begin();
6426 break;
6427
John McCall6e247262009-10-10 05:48:19 +00006428 case LookupResult::Ambiguous:
Douglas Gregord57959a2009-03-27 23:10:48 +00006429 return QualType();
6430 }
6431
6432 // If we get here, it's because name lookup did not find a
6433 // type. Emit an appropriate diagnostic and return an error.
Douglas Gregore29425b2011-02-28 22:42:13 +00006434 SourceRange FullRange(KeywordLoc.isValid() ? KeywordLoc : SS.getBeginLoc(),
Abramo Bagnarae4da7a02010-05-19 21:37:53 +00006435 IILoc);
6436 Diag(IILoc, DiagID) << FullRange << Name << Ctx;
Douglas Gregord57959a2009-03-27 23:10:48 +00006437 if (Referenced)
6438 Diag(Referenced->getLocation(), diag::note_typename_refers_here)
6439 << Name;
6440 return QualType();
6441}
Douglas Gregor4a959d82009-08-06 16:20:37 +00006442
6443namespace {
6444 // See Sema::RebuildTypeInCurrentInstantiation
Benjamin Kramer85b45212009-11-28 19:45:26 +00006445 class CurrentInstantiationRebuilder
Mike Stump1eb44332009-09-09 15:08:12 +00006446 : public TreeTransform<CurrentInstantiationRebuilder> {
Douglas Gregor4a959d82009-08-06 16:20:37 +00006447 SourceLocation Loc;
6448 DeclarationName Entity;
Mike Stump1eb44332009-09-09 15:08:12 +00006449
Douglas Gregor4a959d82009-08-06 16:20:37 +00006450 public:
Douglas Gregor895162d2010-04-30 18:55:50 +00006451 typedef TreeTransform<CurrentInstantiationRebuilder> inherited;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006452
Mike Stump1eb44332009-09-09 15:08:12 +00006453 CurrentInstantiationRebuilder(Sema &SemaRef,
Douglas Gregor4a959d82009-08-06 16:20:37 +00006454 SourceLocation Loc,
Mike Stump1eb44332009-09-09 15:08:12 +00006455 DeclarationName Entity)
6456 : TreeTransform<CurrentInstantiationRebuilder>(SemaRef),
Douglas Gregor4a959d82009-08-06 16:20:37 +00006457 Loc(Loc), Entity(Entity) { }
Mike Stump1eb44332009-09-09 15:08:12 +00006458
6459 /// \brief Determine whether the given type \p T has already been
Douglas Gregor4a959d82009-08-06 16:20:37 +00006460 /// transformed.
6461 ///
6462 /// For the purposes of type reconstruction, a type has already been
6463 /// transformed if it is NULL or if it is not dependent.
6464 bool AlreadyTransformed(QualType T) {
6465 return T.isNull() || !T->isDependentType();
6466 }
Mike Stump1eb44332009-09-09 15:08:12 +00006467
6468 /// \brief Returns the location of the entity whose type is being
Douglas Gregor4a959d82009-08-06 16:20:37 +00006469 /// rebuilt.
6470 SourceLocation getBaseLocation() { return Loc; }
Mike Stump1eb44332009-09-09 15:08:12 +00006471
Douglas Gregor4a959d82009-08-06 16:20:37 +00006472 /// \brief Returns the name of the entity whose type is being rebuilt.
6473 DeclarationName getBaseEntity() { return Entity; }
Mike Stump1eb44332009-09-09 15:08:12 +00006474
Douglas Gregor972e6ce2009-10-27 06:26:26 +00006475 /// \brief Sets the "base" location and entity when that
6476 /// information is known based on another transformation.
6477 void setBase(SourceLocation Loc, DeclarationName Entity) {
6478 this->Loc = Loc;
6479 this->Entity = Entity;
6480 }
Douglas Gregor4a959d82009-08-06 16:20:37 +00006481 };
6482}
6483
Douglas Gregor4a959d82009-08-06 16:20:37 +00006484/// \brief Rebuilds a type within the context of the current instantiation.
6485///
Mike Stump1eb44332009-09-09 15:08:12 +00006486/// The type \p T is part of the type of an out-of-line member definition of
Douglas Gregor4a959d82009-08-06 16:20:37 +00006487/// a class template (or class template partial specialization) that was parsed
Mike Stump1eb44332009-09-09 15:08:12 +00006488/// and constructed before we entered the scope of the class template (or
Douglas Gregor4a959d82009-08-06 16:20:37 +00006489/// partial specialization thereof). This routine will rebuild that type now
6490/// that we have entered the declarator's scope, which may produce different
6491/// canonical types, e.g.,
6492///
6493/// \code
6494/// template<typename T>
6495/// struct X {
6496/// typedef T* pointer;
6497/// pointer data();
6498/// };
6499///
6500/// template<typename T>
6501/// typename X<T>::pointer X<T>::data() { ... }
6502/// \endcode
6503///
Douglas Gregor4714c122010-03-31 17:34:00 +00006504/// Here, the type "typename X<T>::pointer" will be created as a DependentNameType,
Douglas Gregor4a959d82009-08-06 16:20:37 +00006505/// since we do not know that we can look into X<T> when we parsed the type.
6506/// This function will rebuild the type, performing the lookup of "pointer"
Abramo Bagnara465d41b2010-05-11 21:36:43 +00006507/// in X<T> and returning an ElaboratedType whose canonical type is the same
Douglas Gregor4a959d82009-08-06 16:20:37 +00006508/// as the canonical type of T*, allowing the return types of the out-of-line
6509/// definition and the declaration to match.
John McCall63b43852010-04-29 23:50:39 +00006510TypeSourceInfo *Sema::RebuildTypeInCurrentInstantiation(TypeSourceInfo *T,
6511 SourceLocation Loc,
6512 DeclarationName Name) {
6513 if (!T || !T->getType()->isDependentType())
Douglas Gregor4a959d82009-08-06 16:20:37 +00006514 return T;
Mike Stump1eb44332009-09-09 15:08:12 +00006515
Douglas Gregor4a959d82009-08-06 16:20:37 +00006516 CurrentInstantiationRebuilder Rebuilder(*this, Loc, Name);
6517 return Rebuilder.TransformType(T);
Benjamin Kramer27ba2f02009-08-11 22:33:06 +00006518}
Douglas Gregorbf4ea562009-09-15 16:23:51 +00006519
John McCall60d7b3a2010-08-24 06:29:42 +00006520ExprResult Sema::RebuildExprInCurrentInstantiation(Expr *E) {
John McCallb3d87482010-08-24 05:47:05 +00006521 CurrentInstantiationRebuilder Rebuilder(*this, E->getExprLoc(),
6522 DeclarationName());
6523 return Rebuilder.TransformExpr(E);
6524}
6525
John McCall63b43852010-04-29 23:50:39 +00006526bool Sema::RebuildNestedNameSpecifierInCurrentInstantiation(CXXScopeSpec &SS) {
Douglas Gregor7e384942011-02-25 16:07:42 +00006527 if (SS.isInvalid())
6528 return true;
John McCall31f17ec2010-04-27 00:57:59 +00006529
Douglas Gregor7e384942011-02-25 16:07:42 +00006530 NestedNameSpecifierLoc QualifierLoc = SS.getWithLocInContext(Context);
John McCall31f17ec2010-04-27 00:57:59 +00006531 CurrentInstantiationRebuilder Rebuilder(*this, SS.getRange().getBegin(),
6532 DeclarationName());
Douglas Gregor7e384942011-02-25 16:07:42 +00006533 NestedNameSpecifierLoc Rebuilt
6534 = Rebuilder.TransformNestedNameSpecifierLoc(QualifierLoc);
6535 if (!Rebuilt)
6536 return true;
John McCall63b43852010-04-29 23:50:39 +00006537
Douglas Gregor7e384942011-02-25 16:07:42 +00006538 SS.Adopt(Rebuilt);
John McCall63b43852010-04-29 23:50:39 +00006539 return false;
John McCall31f17ec2010-04-27 00:57:59 +00006540}
6541
Douglas Gregorbf4ea562009-09-15 16:23:51 +00006542/// \brief Produces a formatted string that describes the binding of
6543/// template parameters to template arguments.
6544std::string
6545Sema::getTemplateArgumentBindingsText(const TemplateParameterList *Params,
6546 const TemplateArgumentList &Args) {
Douglas Gregor910f8002010-11-07 23:05:16 +00006547 return getTemplateArgumentBindingsText(Params, Args.data(), Args.size());
Douglas Gregor9148c3f2009-11-11 19:13:48 +00006548}
6549
6550std::string
6551Sema::getTemplateArgumentBindingsText(const TemplateParameterList *Params,
6552 const TemplateArgument *Args,
6553 unsigned NumArgs) {
Douglas Gregor87dd6972010-12-20 16:52:59 +00006554 llvm::SmallString<128> Str;
6555 llvm::raw_svector_ostream Out(Str);
Douglas Gregorbf4ea562009-09-15 16:23:51 +00006556
Douglas Gregor9148c3f2009-11-11 19:13:48 +00006557 if (!Params || Params->size() == 0 || NumArgs == 0)
Douglas Gregor87dd6972010-12-20 16:52:59 +00006558 return std::string();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006559
Douglas Gregorbf4ea562009-09-15 16:23:51 +00006560 for (unsigned I = 0, N = Params->size(); I != N; ++I) {
Douglas Gregor9148c3f2009-11-11 19:13:48 +00006561 if (I >= NumArgs)
6562 break;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006563
Douglas Gregorbf4ea562009-09-15 16:23:51 +00006564 if (I == 0)
Douglas Gregor87dd6972010-12-20 16:52:59 +00006565 Out << "[with ";
Douglas Gregorbf4ea562009-09-15 16:23:51 +00006566 else
Douglas Gregor87dd6972010-12-20 16:52:59 +00006567 Out << ", ";
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006568
Douglas Gregorbf4ea562009-09-15 16:23:51 +00006569 if (const IdentifierInfo *Id = Params->getParam(I)->getIdentifier()) {
Douglas Gregor87dd6972010-12-20 16:52:59 +00006570 Out << Id->getName();
Douglas Gregorbf4ea562009-09-15 16:23:51 +00006571 } else {
Douglas Gregor87dd6972010-12-20 16:52:59 +00006572 Out << '$' << I;
Douglas Gregorbf4ea562009-09-15 16:23:51 +00006573 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006574
Douglas Gregor87dd6972010-12-20 16:52:59 +00006575 Out << " = ";
6576 Args[I].print(Context.PrintingPolicy, Out);
Douglas Gregorbf4ea562009-09-15 16:23:51 +00006577 }
Douglas Gregor87dd6972010-12-20 16:52:59 +00006578
6579 Out << ']';
6580 return Out.str();
Douglas Gregorbf4ea562009-09-15 16:23:51 +00006581}
Francois Pichet8387e2a2011-04-22 22:18:13 +00006582
6583void Sema::MarkAsLateParsedTemplate(FunctionDecl *FD, bool Flag) {
6584 if (!FD)
6585 return;
6586 FD->setLateTemplateParsed(Flag);
6587}
6588
6589bool Sema::IsInsideALocalClassWithinATemplateFunction() {
6590 DeclContext *DC = CurContext;
6591
6592 while (DC) {
6593 if (CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(CurContext)) {
6594 const FunctionDecl *FD = RD->isLocalClass();
6595 return (FD && FD->getTemplatedKind() != FunctionDecl::TK_NonTemplate);
6596 } else if (DC->isTranslationUnit() || DC->isNamespace())
6597 return false;
6598
6599 DC = DC->getParent();
6600 }
6601 return false;
6602}