blob: c31ed017377ccd43dcf4c66f826c73ea389ac220 [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 }
Douglas Gregor18c83392011-05-13 00:34:01 +00001433
1434 bool TraverseInjectedClassNameType(const InjectedClassNameType *T) {
1435 return TraverseType(T->getInjectedSpecializationType());
1436 }
John McCall4e2cbb22010-10-20 05:44:58 +00001437};
1438}
1439
Douglas Gregorc8406492011-05-10 18:27:06 +00001440/// Determines whether a given type depends on the given parameter
John McCall4e2cbb22010-10-20 05:44:58 +00001441/// list.
1442static bool
Douglas Gregorc8406492011-05-10 18:27:06 +00001443DependsOnTemplateParameters(QualType T, TemplateParameterList *Params) {
John McCall4e2cbb22010-10-20 05:44:58 +00001444 DependencyChecker Checker(Params);
Douglas Gregorc8406492011-05-10 18:27:06 +00001445 Checker.TraverseType(T);
John McCall4e2cbb22010-10-20 05:44:58 +00001446 return Checker.Match;
1447}
1448
Douglas Gregorc8406492011-05-10 18:27:06 +00001449// Find the source range corresponding to the named type in the given
1450// nested-name-specifier, if any.
1451static SourceRange getRangeOfTypeInNestedNameSpecifier(ASTContext &Context,
1452 QualType T,
1453 const CXXScopeSpec &SS) {
1454 NestedNameSpecifierLoc NNSLoc(SS.getScopeRep(), SS.location_data());
1455 while (NestedNameSpecifier *NNS = NNSLoc.getNestedNameSpecifier()) {
1456 if (const Type *CurType = NNS->getAsType()) {
1457 if (Context.hasSameUnqualifiedType(T, QualType(CurType, 0)))
1458 return NNSLoc.getTypeLoc().getSourceRange();
1459 } else
1460 break;
1461
1462 NNSLoc = NNSLoc.getPrefix();
1463 }
1464
1465 return SourceRange();
1466}
1467
Mike Stump1eb44332009-09-09 15:08:12 +00001468/// \brief Match the given template parameter lists to the given scope
Douglas Gregorf59a56e2009-07-21 23:53:31 +00001469/// specifier, returning the template parameter list that applies to the
1470/// name.
1471///
1472/// \param DeclStartLoc the start of the declaration that has a scope
1473/// specifier or a template parameter list.
Mike Stump1eb44332009-09-09 15:08:12 +00001474///
Douglas Gregorc8406492011-05-10 18:27:06 +00001475/// \param DeclLoc The location of the declaration itself.
1476///
Douglas Gregorf59a56e2009-07-21 23:53:31 +00001477/// \param SS the scope specifier that will be matched to the given template
1478/// parameter lists. This scope specifier precedes a qualified name that is
1479/// being declared.
1480///
1481/// \param ParamLists the template parameter lists, from the outermost to the
1482/// innermost template parameter lists.
1483///
1484/// \param NumParamLists the number of template parameter lists in ParamLists.
1485///
John McCall77e8b112010-04-13 20:37:33 +00001486/// \param IsFriend Whether to apply the slightly different rules for
1487/// matching template parameters to scope specifiers in friend
1488/// declarations.
1489///
Douglas Gregor1fef4e62009-10-07 22:35:40 +00001490/// \param IsExplicitSpecialization will be set true if the entity being
1491/// declared is an explicit specialization, false otherwise.
1492///
Mike Stump1eb44332009-09-09 15:08:12 +00001493/// \returns the template parameter list, if any, that corresponds to the
Douglas Gregorf59a56e2009-07-21 23:53:31 +00001494/// name that is preceded by the scope specifier @p SS. This template
Abramo Bagnara7f0a9152011-03-18 15:16:37 +00001495/// parameter list may have template parameters (if we're declaring a
Mike Stump1eb44332009-09-09 15:08:12 +00001496/// template) or may have no template parameters (if we're declaring a
Abramo Bagnara7f0a9152011-03-18 15:16:37 +00001497/// template specialization), or may be NULL (if what we're declaring isn't
Douglas Gregorf59a56e2009-07-21 23:53:31 +00001498/// itself a template).
1499TemplateParameterList *
1500Sema::MatchTemplateParametersToScopeSpecifier(SourceLocation DeclStartLoc,
Douglas Gregorc8406492011-05-10 18:27:06 +00001501 SourceLocation DeclLoc,
Douglas Gregorf59a56e2009-07-21 23:53:31 +00001502 const CXXScopeSpec &SS,
1503 TemplateParameterList **ParamLists,
Douglas Gregor1fef4e62009-10-07 22:35:40 +00001504 unsigned NumParamLists,
John McCall77e8b112010-04-13 20:37:33 +00001505 bool IsFriend,
Douglas Gregor0167f3c2010-07-14 23:14:12 +00001506 bool &IsExplicitSpecialization,
1507 bool &Invalid) {
Douglas Gregor1fef4e62009-10-07 22:35:40 +00001508 IsExplicitSpecialization = false;
Douglas Gregorc8406492011-05-10 18:27:06 +00001509 Invalid = false;
1510
1511 // The sequence of nested types to which we will match up the template
1512 // parameter lists. We first build this list by starting with the type named
1513 // by the nested-name-specifier and walking out until we run out of types.
1514 llvm::SmallVector<QualType, 4> NestedTypes;
1515 QualType T;
1516 if (SS.getScopeRep())
1517 T = QualType(SS.getScopeRep()->getAsType(), 0);
1518
1519 // If we found an explicit specialization that prevents us from needing
1520 // 'template<>' headers, this will be set to the location of that
1521 // explicit specialization.
1522 SourceLocation ExplicitSpecLoc;
1523
1524 while (!T.isNull()) {
1525 NestedTypes.push_back(T);
1526
1527 // Retrieve the parent of a record type.
1528 if (CXXRecordDecl *Record = T->getAsCXXRecordDecl()) {
1529 // If this type is an explicit specialization, we're done.
1530 if (ClassTemplateSpecializationDecl *Spec
1531 = dyn_cast<ClassTemplateSpecializationDecl>(Record)) {
1532 if (!isa<ClassTemplatePartialSpecializationDecl>(Spec) &&
1533 Spec->getSpecializationKind() == TSK_ExplicitSpecialization) {
1534 ExplicitSpecLoc = Spec->getLocation();
1535 break;
Douglas Gregor3ebd7532009-11-23 12:11:45 +00001536 }
Douglas Gregorc8406492011-05-10 18:27:06 +00001537 } else if (Record->getTemplateSpecializationKind()
1538 == TSK_ExplicitSpecialization) {
1539 ExplicitSpecLoc = Record->getLocation();
John McCall77e8b112010-04-13 20:37:33 +00001540 break;
1541 }
Douglas Gregorc8406492011-05-10 18:27:06 +00001542
1543 if (TypeDecl *Parent = dyn_cast<TypeDecl>(Record->getParent()))
1544 T = Context.getTypeDeclType(Parent);
1545 else
1546 T = QualType();
1547 continue;
1548 }
1549
1550 if (const TemplateSpecializationType *TST
1551 = T->getAs<TemplateSpecializationType>()) {
1552 if (TemplateDecl *Template = TST->getTemplateName().getAsTemplateDecl()) {
1553 if (TypeDecl *Parent = dyn_cast<TypeDecl>(Template->getDeclContext()))
1554 T = Context.getTypeDeclType(Parent);
1555 else
1556 T = QualType();
1557 continue;
Douglas Gregorf59a56e2009-07-21 23:53:31 +00001558 }
Douglas Gregorc8406492011-05-10 18:27:06 +00001559 }
1560
1561 // Look one step prior in a dependent template specialization type.
1562 if (const DependentTemplateSpecializationType *DependentTST
1563 = T->getAs<DependentTemplateSpecializationType>()) {
1564 if (NestedNameSpecifier *NNS = DependentTST->getQualifier())
1565 T = QualType(NNS->getAsType(), 0);
1566 else
1567 T = QualType();
1568 continue;
1569 }
1570
1571 // Look one step prior in a dependent name type.
1572 if (const DependentNameType *DependentName = T->getAs<DependentNameType>()){
1573 if (NestedNameSpecifier *NNS = DependentName->getQualifier())
1574 T = QualType(NNS->getAsType(), 0);
1575 else
1576 T = QualType();
1577 continue;
1578 }
1579
1580 // Retrieve the parent of an enumeration type.
1581 if (const EnumType *EnumT = T->getAs<EnumType>()) {
1582 // FIXME: Forward-declared enums require a TSK_ExplicitSpecialization
1583 // check here.
1584 EnumDecl *Enum = EnumT->getDecl();
1585
1586 // Get to the parent type.
1587 if (TypeDecl *Parent = dyn_cast<TypeDecl>(Enum->getParent()))
1588 T = Context.getTypeDeclType(Parent);
1589 else
1590 T = QualType();
1591 continue;
Douglas Gregorf59a56e2009-07-21 23:53:31 +00001592 }
Mike Stump1eb44332009-09-09 15:08:12 +00001593
Douglas Gregorc8406492011-05-10 18:27:06 +00001594 T = QualType();
1595 }
1596 // Reverse the nested types list, since we want to traverse from the outermost
1597 // to the innermost while checking template-parameter-lists.
1598 std::reverse(NestedTypes.begin(), NestedTypes.end());
Douglas Gregorb88e8882009-07-30 17:40:51 +00001599
Douglas Gregorc8406492011-05-10 18:27:06 +00001600 // C++0x [temp.expl.spec]p17:
1601 // A member or a member template may be nested within many
1602 // enclosing class templates. In an explicit specialization for
1603 // such a member, the member declaration shall be preceded by a
1604 // template<> for each enclosing class template that is
1605 // explicitly specialized.
1606 unsigned ParamIdx = 0;
1607 for (unsigned TypeIdx = 0, NumTypes = NestedTypes.size(); TypeIdx != NumTypes;
1608 ++TypeIdx) {
1609 T = NestedTypes[TypeIdx];
1610
1611 // Whether we expect a 'template<>' header.
1612 bool NeedEmptyTemplateHeader = false;
1613
1614 // Whether we expect a template header with parameters.
1615 bool NeedNonemptyTemplateHeader = false;
1616
1617 // For a dependent type, the set of template parameters that we
1618 // expect to see.
1619 TemplateParameterList *ExpectedTemplateParams = 0;
1620
Douglas Gregor175c5bb2011-05-11 23:26:17 +00001621 // C++0x [temp.expl.spec]p15:
1622 // A member or a member template may be nested within many enclosing
1623 // class templates. In an explicit specialization for such a member, the
1624 // member declaration shall be preceded by a template<> for each
1625 // enclosing class template that is explicitly specialized.
Douglas Gregorc8406492011-05-10 18:27:06 +00001626 if (CXXRecordDecl *Record = T->getAsCXXRecordDecl()) {
1627 if (ClassTemplatePartialSpecializationDecl *Partial
1628 = dyn_cast<ClassTemplatePartialSpecializationDecl>(Record)) {
1629 ExpectedTemplateParams = Partial->getTemplateParameters();
1630 NeedNonemptyTemplateHeader = true;
1631 } else if (Record->isDependentType()) {
1632 if (Record->getDescribedClassTemplate()) {
John McCall31f17ec2010-04-27 00:57:59 +00001633 ExpectedTemplateParams = Record->getDescribedClassTemplate()
Douglas Gregorc8406492011-05-10 18:27:06 +00001634 ->getTemplateParameters();
1635 NeedNonemptyTemplateHeader = true;
1636 }
1637 } else if (ClassTemplateSpecializationDecl *Spec
1638 = dyn_cast<ClassTemplateSpecializationDecl>(Record)) {
1639 // C++0x [temp.expl.spec]p4:
1640 // Members of an explicitly specialized class template are defined
1641 // in the same manner as members of normal classes, and not using
1642 // the template<> syntax.
1643 if (Spec->getSpecializationKind() != TSK_ExplicitSpecialization)
1644 NeedEmptyTemplateHeader = true;
1645 else
1646 break;
1647 } else if (Record->getTemplateSpecializationKind()) {
1648 if (Record->getTemplateSpecializationKind()
Douglas Gregor175c5bb2011-05-11 23:26:17 +00001649 != TSK_ExplicitSpecialization &&
1650 TypeIdx == NumTypes - 1)
1651 IsExplicitSpecialization = true;
1652
1653 continue;
Douglas Gregorc8406492011-05-10 18:27:06 +00001654 }
1655 } else if (const TemplateSpecializationType *TST
1656 = T->getAs<TemplateSpecializationType>()) {
1657 if (TemplateDecl *Template = TST->getTemplateName().getAsTemplateDecl()) {
1658 ExpectedTemplateParams = Template->getTemplateParameters();
1659 NeedNonemptyTemplateHeader = true;
1660 }
1661 } else if (T->getAs<DependentTemplateSpecializationType>()) {
1662 // FIXME: We actually could/should check the template arguments here
1663 // against the corresponding template parameter list.
1664 NeedNonemptyTemplateHeader = false;
1665 }
1666
1667 if (NeedEmptyTemplateHeader) {
1668 // If we're on the last of the types, and we need a 'template<>' header
1669 // here, then it's an explicit specialization.
1670 if (TypeIdx == NumTypes - 1)
1671 IsExplicitSpecialization = true;
1672
1673 if (ParamIdx < NumParamLists) {
1674 if (ParamLists[ParamIdx]->size() > 0) {
1675 // The header has template parameters when it shouldn't. Complain.
1676 Diag(ParamLists[ParamIdx]->getTemplateLoc(),
1677 diag::err_template_param_list_matches_nontemplate)
1678 << T
1679 << SourceRange(ParamLists[ParamIdx]->getLAngleLoc(),
1680 ParamLists[ParamIdx]->getRAngleLoc())
1681 << getRangeOfTypeInNestedNameSpecifier(Context, T, SS);
1682 Invalid = true;
1683 return 0;
1684 }
1685
1686 // Consume this template header.
1687 ++ParamIdx;
1688 continue;
1689 }
1690
1691 if (!IsFriend) {
1692 // We don't have a template header, but we should.
1693 SourceLocation ExpectedTemplateLoc;
1694 if (NumParamLists > 0)
1695 ExpectedTemplateLoc = ParamLists[0]->getTemplateLoc();
1696 else
1697 ExpectedTemplateLoc = DeclStartLoc;
1698
1699 Diag(DeclLoc, diag::err_template_spec_needs_header)
1700 << getRangeOfTypeInNestedNameSpecifier(Context, T, SS)
1701 << FixItHint::CreateInsertion(ExpectedTemplateLoc, "template<> ");
1702 }
1703
1704 continue;
1705 }
1706
1707 if (NeedNonemptyTemplateHeader) {
1708 // In friend declarations we can have template-ids which don't
1709 // depend on the corresponding template parameter lists. But
1710 // assume that empty parameter lists are supposed to match this
1711 // template-id.
1712 if (IsFriend && T->isDependentType()) {
1713 if (ParamIdx < NumParamLists &&
1714 DependsOnTemplateParameters(T, ParamLists[ParamIdx]))
1715 ExpectedTemplateParams = 0;
1716 else
1717 continue;
Mike Stump1eb44332009-09-09 15:08:12 +00001718 }
Douglas Gregor5b6d70e2009-11-25 17:50:39 +00001719
Douglas Gregorc8406492011-05-10 18:27:06 +00001720 if (ParamIdx < NumParamLists) {
1721 // Check the template parameter list, if we can.
1722 if (ExpectedTemplateParams &&
1723 !TemplateParameterListsAreEqual(ParamLists[ParamIdx],
1724 ExpectedTemplateParams,
1725 true, TPL_TemplateMatch))
1726 Invalid = true;
1727
1728 if (!Invalid &&
1729 CheckTemplateParameterList(ParamLists[ParamIdx], 0,
1730 TPC_ClassTemplateMember))
1731 Invalid = true;
1732
1733 ++ParamIdx;
1734 continue;
1735 }
1736
1737 Diag(DeclLoc, diag::err_template_spec_needs_template_parameters)
1738 << T
1739 << getRangeOfTypeInNestedNameSpecifier(Context, T, SS);
1740 Invalid = true;
1741 continue;
1742 }
Douglas Gregorf59a56e2009-07-21 23:53:31 +00001743 }
Douglas Gregorc8406492011-05-10 18:27:06 +00001744
Douglas Gregorf59a56e2009-07-21 23:53:31 +00001745 // If there were at least as many template-ids as there were template
1746 // parameter lists, then there are no template parameter lists remaining for
1747 // the declaration itself.
John McCall4e2cbb22010-10-20 05:44:58 +00001748 if (ParamIdx >= NumParamLists)
Douglas Gregorf59a56e2009-07-21 23:53:31 +00001749 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001750
Douglas Gregorf59a56e2009-07-21 23:53:31 +00001751 // If there were too many template parameter lists, complain about that now.
Douglas Gregorc8406492011-05-10 18:27:06 +00001752 if (ParamIdx < NumParamLists - 1) {
1753 bool HasAnyExplicitSpecHeader = false;
1754 bool AllExplicitSpecHeaders = true;
1755 for (unsigned I = ParamIdx; I != NumParamLists - 1; ++I) {
1756 if (ParamLists[I]->size() == 0)
1757 HasAnyExplicitSpecHeader = true;
1758 else
1759 AllExplicitSpecHeaders = false;
Douglas Gregorf59a56e2009-07-21 23:53:31 +00001760 }
Douglas Gregorc8406492011-05-10 18:27:06 +00001761
1762 Diag(ParamLists[ParamIdx]->getTemplateLoc(),
1763 AllExplicitSpecHeaders? diag::warn_template_spec_extra_headers
1764 : diag::err_template_spec_extra_headers)
1765 << SourceRange(ParamLists[ParamIdx]->getTemplateLoc(),
1766 ParamLists[NumParamLists - 2]->getRAngleLoc());
1767
1768 // If there was a specialization somewhere, such that 'template<>' is
1769 // not required, and there were any 'template<>' headers, note where the
1770 // specialization occurred.
1771 if (ExplicitSpecLoc.isValid() && HasAnyExplicitSpecHeader)
1772 Diag(ExplicitSpecLoc,
1773 diag::note_explicit_template_spec_does_not_need_header)
1774 << NestedTypes.back();
1775
1776 // We have a template parameter list with no corresponding scope, which
1777 // means that the resulting template declaration can't be instantiated
1778 // properly (we'll end up with dependent nodes when we shouldn't).
1779 if (!AllExplicitSpecHeaders)
1780 Invalid = true;
Douglas Gregorf59a56e2009-07-21 23:53:31 +00001781 }
Mike Stump1eb44332009-09-09 15:08:12 +00001782
Douglas Gregorf59a56e2009-07-21 23:53:31 +00001783 // Return the last template parameter list, which corresponds to the
1784 // entity being declared.
1785 return ParamLists[NumParamLists - 1];
1786}
1787
Douglas Gregor6cd9d4a2011-03-04 21:37:14 +00001788void Sema::NoteAllFoundTemplates(TemplateName Name) {
1789 if (TemplateDecl *Template = Name.getAsTemplateDecl()) {
1790 Diag(Template->getLocation(), diag::note_template_declared_here)
1791 << (isa<FunctionTemplateDecl>(Template)? 0
1792 : isa<ClassTemplateDecl>(Template)? 1
Richard Smith3e4c6c42011-05-05 21:57:07 +00001793 : isa<TypeAliasTemplateDecl>(Template)? 2
1794 : 3)
Douglas Gregor6cd9d4a2011-03-04 21:37:14 +00001795 << Template->getDeclName();
1796 return;
1797 }
1798
1799 if (OverloadedTemplateStorage *OST = Name.getAsOverloadedTemplate()) {
1800 for (OverloadedTemplateStorage::iterator I = OST->begin(),
1801 IEnd = OST->end();
1802 I != IEnd; ++I)
1803 Diag((*I)->getLocation(), diag::note_template_declared_here)
1804 << 0 << (*I)->getDeclName();
1805
1806 return;
1807 }
1808}
1809
1810
Douglas Gregor7532dc62009-03-30 22:58:21 +00001811QualType Sema::CheckTemplateIdType(TemplateName Name,
1812 SourceLocation TemplateLoc,
Douglas Gregor67714232011-03-03 02:41:12 +00001813 TemplateArgumentListInfo &TemplateArgs) {
Richard Smith3e4c6c42011-05-05 21:57:07 +00001814 DependentTemplateName *DTN = Name.getAsDependentTemplateName();
1815 if (DTN && DTN->isIdentifier())
1816 // When building a template-id where the template-name is dependent,
1817 // assume the template is a type template. Either our assumption is
1818 // correct, or the code is ill-formed and will be diagnosed when the
1819 // dependent name is substituted.
1820 return Context.getDependentTemplateSpecializationType(ETK_None,
1821 DTN->getQualifier(),
1822 DTN->getIdentifier(),
1823 TemplateArgs);
1824
Douglas Gregor7532dc62009-03-30 22:58:21 +00001825 TemplateDecl *Template = Name.getAsTemplateDecl();
Douglas Gregor6cd9d4a2011-03-04 21:37:14 +00001826 if (!Template || isa<FunctionTemplateDecl>(Template)) {
1827 // We might have a substituted template template parameter pack. If so,
1828 // build a template specialization type for it.
1829 if (Name.getAsSubstTemplateTemplateParmPack())
1830 return Context.getTemplateSpecializationType(Name, TemplateArgs);
Richard Smith3e4c6c42011-05-05 21:57:07 +00001831
Douglas Gregor6cd9d4a2011-03-04 21:37:14 +00001832 Diag(TemplateLoc, diag::err_template_id_not_a_type)
1833 << Name;
1834 NoteAllFoundTemplates(Name);
1835 return QualType();
Douglas Gregorc45c2322009-03-31 00:43:58 +00001836 }
Douglas Gregor7532dc62009-03-30 22:58:21 +00001837
Douglas Gregor40808ce2009-03-09 23:48:35 +00001838 // Check that the template argument list is well-formed for this
1839 // template.
Douglas Gregor910f8002010-11-07 23:05:16 +00001840 llvm::SmallVector<TemplateArgument, 4> Converted;
John McCalld5532b62009-11-23 01:53:49 +00001841 if (CheckTemplateArgumentList(Template, TemplateLoc, TemplateArgs,
Douglas Gregor16134c62009-07-01 00:28:38 +00001842 false, Converted))
Douglas Gregor40808ce2009-03-09 23:48:35 +00001843 return QualType();
1844
Douglas Gregor910f8002010-11-07 23:05:16 +00001845 assert((Converted.size() == Template->getTemplateParameters()->size()) &&
Douglas Gregor40808ce2009-03-09 23:48:35 +00001846 "Converted template argument list is too short!");
1847
1848 QualType CanonType;
1849
Richard Smith3e4c6c42011-05-05 21:57:07 +00001850 if (TypeAliasTemplateDecl *AliasTemplate
1851 = dyn_cast<TypeAliasTemplateDecl>(Template)) {
1852 // Find the canonical type for this type alias template specialization.
1853 TypeAliasDecl *Pattern = AliasTemplate->getTemplatedDecl();
1854 if (Pattern->isInvalidDecl())
1855 return QualType();
1856
1857 TemplateArgumentList TemplateArgs(TemplateArgumentList::OnStack,
1858 Converted.data(), Converted.size());
1859
1860 // Only substitute for the innermost template argument list.
1861 MultiLevelTemplateArgumentList TemplateArgLists;
Richard Smith18041742011-05-14 15:04:18 +00001862 TemplateArgLists.addOuterTemplateArguments(&TemplateArgs);
Richard Smithaff37b42011-05-12 00:06:17 +00001863 unsigned Depth = AliasTemplate->getTemplateParameters()->getDepth();
1864 for (unsigned I = 0; I < Depth; ++I)
1865 TemplateArgLists.addOuterTemplateArguments(0, 0);
Richard Smith3e4c6c42011-05-05 21:57:07 +00001866
1867 InstantiatingTemplate Inst(*this, TemplateLoc, Template);
1868 CanonType = SubstType(Pattern->getUnderlyingType(),
1869 TemplateArgLists, AliasTemplate->getLocation(),
1870 AliasTemplate->getDeclName());
1871 if (CanonType.isNull())
1872 return QualType();
1873 } else if (Name.isDependent() ||
1874 TemplateSpecializationType::anyDependentTemplateArguments(
1875 TemplateArgs)) {
Douglas Gregor40808ce2009-03-09 23:48:35 +00001876 // This class template specialization is a dependent
1877 // type. Therefore, its canonical type is another class template
1878 // specialization type that contains all of the converted
1879 // arguments in canonical form. This ensures that, e.g., A<T> and
1880 // A<T, T> have identical types when A is declared as:
1881 //
1882 // template<typename T, typename U = T> struct A;
Douglas Gregor25a3ef72009-05-07 06:41:52 +00001883 TemplateName CanonName = Context.getCanonicalTemplateName(Name);
Mike Stump1eb44332009-09-09 15:08:12 +00001884 CanonType = Context.getTemplateSpecializationType(CanonName,
Douglas Gregor910f8002010-11-07 23:05:16 +00001885 Converted.data(),
1886 Converted.size());
Mike Stump1eb44332009-09-09 15:08:12 +00001887
Douglas Gregor1275ae02009-07-28 23:00:59 +00001888 // FIXME: CanonType is not actually the canonical type, and unfortunately
John McCall833ca992009-10-29 08:12:44 +00001889 // it is a TemplateSpecializationType that we will never use again.
Douglas Gregor1275ae02009-07-28 23:00:59 +00001890 // In the future, we need to teach getTemplateSpecializationType to only
1891 // build the canonical type and return that to us.
1892 CanonType = Context.getCanonicalType(CanonType);
John McCall31f17ec2010-04-27 00:57:59 +00001893
1894 // This might work out to be a current instantiation, in which
1895 // case the canonical type needs to be the InjectedClassNameType.
1896 //
1897 // TODO: in theory this could be a simple hashtable lookup; most
1898 // changes to CurContext don't change the set of current
1899 // instantiations.
1900 if (isa<ClassTemplateDecl>(Template)) {
1901 for (DeclContext *Ctx = CurContext; Ctx; Ctx = Ctx->getLookupParent()) {
1902 // If we get out to a namespace, we're done.
1903 if (Ctx->isFileContext()) break;
1904
1905 // If this isn't a record, keep looking.
1906 CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(Ctx);
1907 if (!Record) continue;
1908
1909 // Look for one of the two cases with InjectedClassNameTypes
1910 // and check whether it's the same template.
1911 if (!isa<ClassTemplatePartialSpecializationDecl>(Record) &&
1912 !Record->getDescribedClassTemplate())
1913 continue;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001914
John McCall31f17ec2010-04-27 00:57:59 +00001915 // Fetch the injected class name type and check whether its
1916 // injected type is equal to the type we just built.
1917 QualType ICNT = Context.getTypeDeclType(Record);
1918 QualType Injected = cast<InjectedClassNameType>(ICNT)
1919 ->getInjectedSpecializationType();
1920
1921 if (CanonType != Injected->getCanonicalTypeInternal())
1922 continue;
1923
1924 // If so, the canonical type of this TST is the injected
1925 // class name type of the record we just found.
1926 assert(ICNT.isCanonical());
1927 CanonType = ICNT;
John McCall31f17ec2010-04-27 00:57:59 +00001928 break;
1929 }
1930 }
Mike Stump1eb44332009-09-09 15:08:12 +00001931 } else if (ClassTemplateDecl *ClassTemplate
Douglas Gregor7532dc62009-03-30 22:58:21 +00001932 = dyn_cast<ClassTemplateDecl>(Template)) {
Douglas Gregor40808ce2009-03-09 23:48:35 +00001933 // Find the class template specialization declaration that
1934 // corresponds to these arguments.
Douglas Gregor40808ce2009-03-09 23:48:35 +00001935 void *InsertPos = 0;
1936 ClassTemplateSpecializationDecl *Decl
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001937 = ClassTemplate->findSpecialization(Converted.data(), Converted.size(),
Douglas Gregor910f8002010-11-07 23:05:16 +00001938 InsertPos);
Douglas Gregor40808ce2009-03-09 23:48:35 +00001939 if (!Decl) {
1940 // This is the first time we have referenced this class template
1941 // specialization. Create the canonical declaration and add it to
1942 // the set of specializations.
Mike Stump1eb44332009-09-09 15:08:12 +00001943 Decl = ClassTemplateSpecializationDecl::Create(Context,
Douglas Gregor13c85772010-05-06 00:28:52 +00001944 ClassTemplate->getTemplatedDecl()->getTagKind(),
1945 ClassTemplate->getDeclContext(),
1946 ClassTemplate->getLocation(),
Abramo Bagnaraba877ad2011-03-09 14:09:51 +00001947 ClassTemplate->getLocation(),
Douglas Gregor910f8002010-11-07 23:05:16 +00001948 ClassTemplate,
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001949 Converted.data(),
Douglas Gregor910f8002010-11-07 23:05:16 +00001950 Converted.size(), 0);
Argyrios Kyrtzidiscc0b1bc2010-07-20 13:59:28 +00001951 ClassTemplate->AddSpecialization(Decl, InsertPos);
Douglas Gregor40808ce2009-03-09 23:48:35 +00001952 Decl->setLexicalDeclContext(CurContext);
1953 }
1954
1955 CanonType = Context.getTypeDeclType(Decl);
John McCall3cb0ebd2010-03-10 03:28:59 +00001956 assert(isa<RecordType>(CanonType) &&
1957 "type of non-dependent specialization is not a RecordType");
Douglas Gregor40808ce2009-03-09 23:48:35 +00001958 }
Mike Stump1eb44332009-09-09 15:08:12 +00001959
Douglas Gregor40808ce2009-03-09 23:48:35 +00001960 // Build the fully-sugared type for this class template
1961 // specialization, which refers back to the class template
1962 // specialization we created or found.
John McCall71d74bc2010-06-13 09:25:03 +00001963 return Context.getTemplateSpecializationType(Name, TemplateArgs, CanonType);
Douglas Gregor40808ce2009-03-09 23:48:35 +00001964}
1965
John McCallf312b1e2010-08-26 23:41:50 +00001966TypeResult
Douglas Gregor059101f2011-03-02 00:47:37 +00001967Sema::ActOnTemplateIdType(CXXScopeSpec &SS,
1968 TemplateTy TemplateD, SourceLocation TemplateLoc,
Mike Stump1eb44332009-09-09 15:08:12 +00001969 SourceLocation LAngleLoc,
Douglas Gregor7532dc62009-03-30 22:58:21 +00001970 ASTTemplateArgsPtr TemplateArgsIn,
John McCall6b2becf2009-09-08 17:47:29 +00001971 SourceLocation RAngleLoc) {
Douglas Gregor059101f2011-03-02 00:47:37 +00001972 if (SS.isInvalid())
1973 return true;
1974
Douglas Gregor7532dc62009-03-30 22:58:21 +00001975 TemplateName Template = TemplateD.getAsVal<TemplateName>();
Douglas Gregor55f6b142009-02-09 18:46:07 +00001976
Douglas Gregor40808ce2009-03-09 23:48:35 +00001977 // Translate the parser's template argument list in our AST format.
John McCalld5532b62009-11-23 01:53:49 +00001978 TemplateArgumentListInfo TemplateArgs(LAngleLoc, RAngleLoc);
Douglas Gregor314b97f2009-11-10 19:49:08 +00001979 translateTemplateArguments(TemplateArgsIn, TemplateArgs);
Douglas Gregorc15cb382009-02-09 23:23:08 +00001980
Douglas Gregora88f09f2011-02-28 17:23:35 +00001981 if (DependentTemplateName *DTN = Template.getAsDependentTemplateName()) {
1982 QualType T = Context.getDependentTemplateSpecializationType(ETK_None,
1983 DTN->getQualifier(),
1984 DTN->getIdentifier(),
1985 TemplateArgs);
1986
1987 // Build type-source information.
1988 TypeLocBuilder TLB;
1989 DependentTemplateSpecializationTypeLoc SpecTL
1990 = TLB.push<DependentTemplateSpecializationTypeLoc>(T);
Douglas Gregor059101f2011-03-02 00:47:37 +00001991 SpecTL.setKeywordLoc(SourceLocation());
Douglas Gregora88f09f2011-02-28 17:23:35 +00001992 SpecTL.setNameLoc(TemplateLoc);
1993 SpecTL.setLAngleLoc(LAngleLoc);
1994 SpecTL.setRAngleLoc(RAngleLoc);
Douglas Gregor94fdffa2011-03-01 20:11:18 +00001995 SpecTL.setQualifierLoc(SS.getWithLocInContext(Context));
Douglas Gregora88f09f2011-02-28 17:23:35 +00001996 for (unsigned I = 0, N = SpecTL.getNumArgs(); I != N; ++I)
1997 SpecTL.setArgLocInfo(I, TemplateArgs[I].getLocInfo());
1998 return CreateParsedType(T, TLB.getTypeSourceInfo(Context, T));
1999 }
2000
John McCalld5532b62009-11-23 01:53:49 +00002001 QualType Result = CheckTemplateIdType(Template, TemplateLoc, TemplateArgs);
Douglas Gregor40808ce2009-03-09 23:48:35 +00002002 TemplateArgsIn.release();
Douglas Gregor31a19b62009-04-01 21:51:26 +00002003
2004 if (Result.isNull())
2005 return true;
2006
Douglas Gregor059101f2011-03-02 00:47:37 +00002007 // Build type-source information.
2008 TypeLocBuilder TLB;
2009 TemplateSpecializationTypeLoc SpecTL
2010 = TLB.push<TemplateSpecializationTypeLoc>(Result);
2011 SpecTL.setTemplateNameLoc(TemplateLoc);
2012 SpecTL.setLAngleLoc(LAngleLoc);
2013 SpecTL.setRAngleLoc(RAngleLoc);
2014 for (unsigned i = 0, e = SpecTL.getNumArgs(); i != e; ++i)
2015 SpecTL.setArgLocInfo(i, TemplateArgs[i].getLocInfo());
John McCall833ca992009-10-29 08:12:44 +00002016
Douglas Gregor059101f2011-03-02 00:47:37 +00002017 if (SS.isNotEmpty()) {
2018 // Create an elaborated-type-specifier containing the nested-name-specifier.
2019 Result = Context.getElaboratedType(ETK_None, SS.getScopeRep(), Result);
2020 ElaboratedTypeLoc ElabTL = TLB.push<ElaboratedTypeLoc>(Result);
2021 ElabTL.setKeywordLoc(SourceLocation());
2022 ElabTL.setQualifierLoc(SS.getWithLocInContext(Context));
2023 }
2024
2025 return CreateParsedType(Result, TLB.getTypeSourceInfo(Context, Result));
John McCall6b2becf2009-09-08 17:47:29 +00002026}
John McCallf1bbbb42009-09-04 01:14:41 +00002027
Douglas Gregor059101f2011-03-02 00:47:37 +00002028TypeResult Sema::ActOnTagTemplateIdType(TagUseKind TUK,
John McCallf312b1e2010-08-26 23:41:50 +00002029 TypeSpecifierType TagSpec,
Douglas Gregor059101f2011-03-02 00:47:37 +00002030 SourceLocation TagLoc,
2031 CXXScopeSpec &SS,
2032 TemplateTy TemplateD,
2033 SourceLocation TemplateLoc,
2034 SourceLocation LAngleLoc,
2035 ASTTemplateArgsPtr TemplateArgsIn,
2036 SourceLocation RAngleLoc) {
2037 TemplateName Template = TemplateD.getAsVal<TemplateName>();
2038
2039 // Translate the parser's template argument list in our AST format.
2040 TemplateArgumentListInfo TemplateArgs(LAngleLoc, RAngleLoc);
2041 translateTemplateArguments(TemplateArgsIn, TemplateArgs);
2042
2043 // Determine the tag kind
Abramo Bagnara465d41b2010-05-11 21:36:43 +00002044 TagTypeKind TagKind = TypeWithKeyword::getTagTypeKindForTypeSpec(TagSpec);
Douglas Gregor059101f2011-03-02 00:47:37 +00002045 ElaboratedTypeKeyword Keyword
2046 = TypeWithKeyword::getKeywordForTagTypeKind(TagKind);
Mike Stump1eb44332009-09-09 15:08:12 +00002047
Douglas Gregor059101f2011-03-02 00:47:37 +00002048 if (DependentTemplateName *DTN = Template.getAsDependentTemplateName()) {
2049 QualType T = Context.getDependentTemplateSpecializationType(Keyword,
2050 DTN->getQualifier(),
2051 DTN->getIdentifier(),
2052 TemplateArgs);
2053
2054 // Build type-source information.
2055 TypeLocBuilder TLB;
2056 DependentTemplateSpecializationTypeLoc SpecTL
2057 = TLB.push<DependentTemplateSpecializationTypeLoc>(T);
2058 SpecTL.setKeywordLoc(TagLoc);
2059 SpecTL.setNameLoc(TemplateLoc);
2060 SpecTL.setLAngleLoc(LAngleLoc);
2061 SpecTL.setRAngleLoc(RAngleLoc);
2062 SpecTL.setQualifierLoc(SS.getWithLocInContext(Context));
2063 for (unsigned I = 0, N = SpecTL.getNumArgs(); I != N; ++I)
2064 SpecTL.setArgLocInfo(I, TemplateArgs[I].getLocInfo());
2065 return CreateParsedType(T, TLB.getTypeSourceInfo(Context, T));
2066 }
Richard Smith3e4c6c42011-05-05 21:57:07 +00002067
2068 if (TypeAliasTemplateDecl *TAT =
2069 dyn_cast_or_null<TypeAliasTemplateDecl>(Template.getAsTemplateDecl())) {
2070 // C++0x [dcl.type.elab]p2:
2071 // If the identifier resolves to a typedef-name or the simple-template-id
2072 // resolves to an alias template specialization, the
2073 // elaborated-type-specifier is ill-formed.
2074 Diag(TemplateLoc, diag::err_tag_reference_non_tag) << 4;
2075 Diag(TAT->getLocation(), diag::note_declared_at);
2076 }
Douglas Gregor059101f2011-03-02 00:47:37 +00002077
2078 QualType Result = CheckTemplateIdType(Template, TemplateLoc, TemplateArgs);
2079 if (Result.isNull())
2080 return TypeResult();
2081
2082 // Check the tag kind
2083 if (const RecordType *RT = Result->getAs<RecordType>()) {
John McCall6b2becf2009-09-08 17:47:29 +00002084 RecordDecl *D = RT->getDecl();
Douglas Gregor059101f2011-03-02 00:47:37 +00002085
John McCall6b2becf2009-09-08 17:47:29 +00002086 IdentifierInfo *Id = D->getIdentifier();
2087 assert(Id && "templated class must have an identifier");
Douglas Gregor059101f2011-03-02 00:47:37 +00002088
John McCall6b2becf2009-09-08 17:47:29 +00002089 if (!isAcceptableTagRedeclaration(D, TagKind, TagLoc, *Id)) {
2090 Diag(TagLoc, diag::err_use_with_wrong_tag)
Douglas Gregor059101f2011-03-02 00:47:37 +00002091 << Result
Douglas Gregor849b2432010-03-31 17:46:05 +00002092 << FixItHint::CreateReplacement(SourceRange(TagLoc), D->getKindName());
John McCallc4e70192009-09-11 04:59:25 +00002093 Diag(D->getLocation(), diag::note_previous_use);
John McCallf1bbbb42009-09-04 01:14:41 +00002094 }
2095 }
Douglas Gregor059101f2011-03-02 00:47:37 +00002096
2097 // Provide source-location information for the template specialization.
2098 TypeLocBuilder TLB;
2099 TemplateSpecializationTypeLoc SpecTL
2100 = TLB.push<TemplateSpecializationTypeLoc>(Result);
2101 SpecTL.setTemplateNameLoc(TemplateLoc);
2102 SpecTL.setLAngleLoc(LAngleLoc);
2103 SpecTL.setRAngleLoc(RAngleLoc);
2104 for (unsigned i = 0, e = SpecTL.getNumArgs(); i != e; ++i)
2105 SpecTL.setArgLocInfo(i, TemplateArgs[i].getLocInfo());
John McCallf1bbbb42009-09-04 01:14:41 +00002106
Douglas Gregor059101f2011-03-02 00:47:37 +00002107 // Construct an elaborated type containing the nested-name-specifier (if any)
2108 // and keyword.
2109 Result = Context.getElaboratedType(Keyword, SS.getScopeRep(), Result);
2110 ElaboratedTypeLoc ElabTL = TLB.push<ElaboratedTypeLoc>(Result);
2111 ElabTL.setKeywordLoc(TagLoc);
2112 ElabTL.setQualifierLoc(SS.getWithLocInContext(Context));
2113 return CreateParsedType(Result, TLB.getTypeSourceInfo(Context, Result));
Douglas Gregor55f6b142009-02-09 18:46:07 +00002114}
2115
John McCall60d7b3a2010-08-24 06:29:42 +00002116ExprResult Sema::BuildTemplateIdExpr(const CXXScopeSpec &SS,
Douglas Gregor4c9be892011-02-28 20:01:57 +00002117 LookupResult &R,
2118 bool RequiresADL,
John McCalld5532b62009-11-23 01:53:49 +00002119 const TemplateArgumentListInfo &TemplateArgs) {
Douglas Gregoredce4dd2009-06-30 22:34:41 +00002120 // FIXME: Can we do any checking at this point? I guess we could check the
2121 // template arguments that we have against the template name, if the template
Mike Stump1eb44332009-09-09 15:08:12 +00002122 // name refers to a single template. That's not a terribly common case,
Douglas Gregoredce4dd2009-06-30 22:34:41 +00002123 // though.
Douglas Gregor1be8eec2011-02-19 21:32:49 +00002124 // foo<int> could identify a single function unambiguously
2125 // This approach does NOT work, since f<int>(1);
2126 // gets resolved prior to resorting to overload resolution
2127 // i.e., template<class T> void f(double);
2128 // vs template<class T, class U> void f(U);
John McCallf7a1a742009-11-24 19:00:30 +00002129
2130 // These should be filtered out by our callers.
2131 assert(!R.empty() && "empty lookup results when building templateid");
2132 assert(!R.isAmbiguous() && "ambiguous lookup when building templateid");
2133
John McCallc373d482010-01-27 01:50:18 +00002134 // We don't want lookup warnings at this point.
2135 R.suppressDiagnostics();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002136
John McCallf7a1a742009-11-24 19:00:30 +00002137 UnresolvedLookupExpr *ULE
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00002138 = UnresolvedLookupExpr::Create(Context, R.getNamingClass(),
Douglas Gregor4c9be892011-02-28 20:01:57 +00002139 SS.getWithLocInContext(Context),
Abramo Bagnara25777432010-08-11 22:01:17 +00002140 R.getLookupNameInfo(),
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002141 RequiresADL, TemplateArgs,
Douglas Gregor5a84dec2010-05-23 18:57:34 +00002142 R.begin(), R.end());
John McCallf7a1a742009-11-24 19:00:30 +00002143
2144 return Owned(ULE);
Douglas Gregoredce4dd2009-06-30 22:34:41 +00002145}
2146
John McCallf7a1a742009-11-24 19:00:30 +00002147// We actually only call this from template instantiation.
John McCall60d7b3a2010-08-24 06:29:42 +00002148ExprResult
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00002149Sema::BuildQualifiedTemplateIdExpr(CXXScopeSpec &SS,
Abramo Bagnara25777432010-08-11 22:01:17 +00002150 const DeclarationNameInfo &NameInfo,
John McCallf7a1a742009-11-24 19:00:30 +00002151 const TemplateArgumentListInfo &TemplateArgs) {
2152 DeclContext *DC;
2153 if (!(DC = computeDeclContext(SS, false)) ||
2154 DC->isDependentContext() ||
John McCall77bb1aa2010-05-01 00:40:08 +00002155 RequireCompleteDeclContext(SS, DC))
Abramo Bagnara25777432010-08-11 22:01:17 +00002156 return BuildDependentDeclRefExpr(SS, NameInfo, &TemplateArgs);
Mike Stump1eb44332009-09-09 15:08:12 +00002157
Douglas Gregor1fd6d442010-05-21 23:18:07 +00002158 bool MemberOfUnknownSpecialization;
Abramo Bagnara25777432010-08-11 22:01:17 +00002159 LookupResult R(*this, NameInfo, LookupOrdinaryName);
Douglas Gregor1fd6d442010-05-21 23:18:07 +00002160 LookupTemplateName(R, (Scope*) 0, SS, QualType(), /*Entering*/ false,
2161 MemberOfUnknownSpecialization);
Mike Stump1eb44332009-09-09 15:08:12 +00002162
John McCallf7a1a742009-11-24 19:00:30 +00002163 if (R.isAmbiguous())
2164 return ExprError();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002165
John McCallf7a1a742009-11-24 19:00:30 +00002166 if (R.empty()) {
Abramo Bagnara25777432010-08-11 22:01:17 +00002167 Diag(NameInfo.getLoc(), diag::err_template_kw_refers_to_non_template)
2168 << NameInfo.getName() << SS.getRange();
John McCallf7a1a742009-11-24 19:00:30 +00002169 return ExprError();
2170 }
2171
2172 if (ClassTemplateDecl *Temp = R.getAsSingle<ClassTemplateDecl>()) {
Abramo Bagnara25777432010-08-11 22:01:17 +00002173 Diag(NameInfo.getLoc(), diag::err_template_kw_refers_to_class_template)
2174 << (NestedNameSpecifier*) SS.getScopeRep()
2175 << NameInfo.getName() << SS.getRange();
John McCallf7a1a742009-11-24 19:00:30 +00002176 Diag(Temp->getLocation(), diag::note_referenced_class_template);
2177 return ExprError();
2178 }
2179
2180 return BuildTemplateIdExpr(SS, R, /* ADL */ false, TemplateArgs);
Douglas Gregoredce4dd2009-06-30 22:34:41 +00002181}
2182
Douglas Gregorc45c2322009-03-31 00:43:58 +00002183/// \brief Form a dependent template name.
2184///
2185/// This action forms a dependent template name given the template
2186/// name and its (presumably dependent) scope specifier. For
2187/// example, given "MetaFun::template apply", the scope specifier \p
2188/// SS will be "MetaFun::", \p TemplateKWLoc contains the location
2189/// of the "template" keyword, and "apply" is the \p Name.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002190TemplateNameKind Sema::ActOnDependentTemplateName(Scope *S,
Douglas Gregord6ab2322010-06-16 23:00:59 +00002191 SourceLocation TemplateKWLoc,
2192 CXXScopeSpec &SS,
2193 UnqualifiedId &Name,
John McCallb3d87482010-08-24 05:47:05 +00002194 ParsedType ObjectType,
Douglas Gregord6ab2322010-06-16 23:00:59 +00002195 bool EnteringContext,
2196 TemplateTy &Result) {
Douglas Gregor1a15dae2010-06-16 22:31:08 +00002197 if (TemplateKWLoc.isValid() && S && !S->getTemplateParamParent() &&
2198 !getLangOptions().CPlusPlus0x)
2199 Diag(TemplateKWLoc, diag::ext_template_outside_of_template)
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002200 << FixItHint::CreateRemoval(TemplateKWLoc);
2201
Douglas Gregor0707bc52010-01-19 16:01:07 +00002202 DeclContext *LookupCtx = 0;
2203 if (SS.isSet())
2204 LookupCtx = computeDeclContext(SS, EnteringContext);
2205 if (!LookupCtx && ObjectType)
John McCallb3d87482010-08-24 05:47:05 +00002206 LookupCtx = computeDeclContext(ObjectType.get());
Douglas Gregor0707bc52010-01-19 16:01:07 +00002207 if (LookupCtx) {
Douglas Gregorc45c2322009-03-31 00:43:58 +00002208 // C++0x [temp.names]p5:
2209 // If a name prefixed by the keyword template is not the name of
2210 // a template, the program is ill-formed. [Note: the keyword
2211 // template may not be applied to non-template members of class
2212 // templates. -end note ] [ Note: as is the case with the
2213 // typename prefix, the template prefix is allowed in cases
2214 // where it is not strictly necessary; i.e., when the
2215 // nested-name-specifier or the expression on the left of the ->
2216 // or . is not dependent on a template-parameter, or the use
2217 // does not appear in the scope of a template. -end note]
2218 //
2219 // Note: C++03 was more strict here, because it banned the use of
2220 // the "template" keyword prior to a template-name that was not a
2221 // dependent name. C++ DR468 relaxed this requirement (the
2222 // "template" keyword is now permitted). We follow the C++0x
Douglas Gregor732281d2010-06-14 22:07:54 +00002223 // rules, even in C++03 mode with a warning, retroactively applying the DR.
Douglas Gregor1fd6d442010-05-21 23:18:07 +00002224 bool MemberOfUnknownSpecialization;
Abramo Bagnara7c153532010-08-06 12:11:11 +00002225 TemplateNameKind TNK = isTemplateName(0, SS, TemplateKWLoc.isValid(), Name,
2226 ObjectType, EnteringContext, Result,
Douglas Gregor1fd6d442010-05-21 23:18:07 +00002227 MemberOfUnknownSpecialization);
Douglas Gregor0707bc52010-01-19 16:01:07 +00002228 if (TNK == TNK_Non_template && LookupCtx->isDependentContext() &&
2229 isa<CXXRecordDecl>(LookupCtx) &&
Douglas Gregord078bd22011-03-11 23:27:41 +00002230 (!cast<CXXRecordDecl>(LookupCtx)->hasDefinition() ||
2231 cast<CXXRecordDecl>(LookupCtx)->hasAnyDependentBases())) {
Douglas Gregord6ab2322010-06-16 23:00:59 +00002232 // This is a dependent template. Handle it below.
Douglas Gregor9edad9b2010-01-14 17:47:39 +00002233 } else if (TNK == TNK_Non_template) {
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002234 Diag(Name.getSourceRange().getBegin(),
Douglas Gregor014e88d2009-11-03 23:16:33 +00002235 diag::err_template_kw_refers_to_non_template)
Abramo Bagnara25777432010-08-11 22:01:17 +00002236 << GetNameFromUnqualifiedId(Name).getName()
Douglas Gregor0278e122010-05-05 05:58:24 +00002237 << Name.getSourceRange()
2238 << TemplateKWLoc;
Douglas Gregord6ab2322010-06-16 23:00:59 +00002239 return TNK_Non_template;
Douglas Gregor9edad9b2010-01-14 17:47:39 +00002240 } else {
2241 // We found something; return it.
Douglas Gregord6ab2322010-06-16 23:00:59 +00002242 return TNK;
Douglas Gregorc45c2322009-03-31 00:43:58 +00002243 }
Douglas Gregorc45c2322009-03-31 00:43:58 +00002244 }
2245
Mike Stump1eb44332009-09-09 15:08:12 +00002246 NestedNameSpecifier *Qualifier
Douglas Gregor2dd078a2009-09-02 22:59:36 +00002247 = static_cast<NestedNameSpecifier *>(SS.getScopeRep());
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002248
Douglas Gregor014e88d2009-11-03 23:16:33 +00002249 switch (Name.getKind()) {
2250 case UnqualifiedId::IK_Identifier:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002251 Result = TemplateTy::make(Context.getDependentTemplateName(Qualifier,
Douglas Gregord6ab2322010-06-16 23:00:59 +00002252 Name.Identifier));
2253 return TNK_Dependent_template_name;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002254
Douglas Gregorca1bdd72009-11-04 00:56:37 +00002255 case UnqualifiedId::IK_OperatorFunctionId:
Douglas Gregord6ab2322010-06-16 23:00:59 +00002256 Result = TemplateTy::make(Context.getDependentTemplateName(Qualifier,
Douglas Gregorca1bdd72009-11-04 00:56:37 +00002257 Name.OperatorFunctionId.Operator));
Douglas Gregord6ab2322010-06-16 23:00:59 +00002258 return TNK_Dependent_template_name;
Sean Hunte6252d12009-11-28 08:58:14 +00002259
2260 case UnqualifiedId::IK_LiteralOperatorId:
2261 assert(false && "We don't support these; Parse shouldn't have allowed propagation");
2262
Douglas Gregor014e88d2009-11-03 23:16:33 +00002263 default:
2264 break;
2265 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002266
2267 Diag(Name.getSourceRange().getBegin(),
Douglas Gregor014e88d2009-11-03 23:16:33 +00002268 diag::err_template_kw_refers_to_non_template)
Abramo Bagnara25777432010-08-11 22:01:17 +00002269 << GetNameFromUnqualifiedId(Name).getName()
Douglas Gregor0278e122010-05-05 05:58:24 +00002270 << Name.getSourceRange()
2271 << TemplateKWLoc;
Douglas Gregord6ab2322010-06-16 23:00:59 +00002272 return TNK_Non_template;
Douglas Gregorc45c2322009-03-31 00:43:58 +00002273}
2274
Mike Stump1eb44332009-09-09 15:08:12 +00002275bool Sema::CheckTemplateTypeArgument(TemplateTypeParmDecl *Param,
John McCall833ca992009-10-29 08:12:44 +00002276 const TemplateArgumentLoc &AL,
Douglas Gregor910f8002010-11-07 23:05:16 +00002277 llvm::SmallVectorImpl<TemplateArgument> &Converted) {
John McCall833ca992009-10-29 08:12:44 +00002278 const TemplateArgument &Arg = AL.getArgument();
2279
Anders Carlsson436b1562009-06-13 00:33:33 +00002280 // Check template type parameter.
Jeffrey Yasskindb88d8a2010-04-08 00:03:06 +00002281 switch(Arg.getKind()) {
2282 case TemplateArgument::Type:
Anders Carlsson436b1562009-06-13 00:33:33 +00002283 // C++ [temp.arg.type]p1:
2284 // A template-argument for a template-parameter which is a
2285 // type shall be a type-id.
Jeffrey Yasskindb88d8a2010-04-08 00:03:06 +00002286 break;
2287 case TemplateArgument::Template: {
2288 // We have a template type parameter but the template argument
2289 // is a template without any arguments.
2290 SourceRange SR = AL.getSourceRange();
2291 TemplateName Name = Arg.getAsTemplate();
2292 Diag(SR.getBegin(), diag::err_template_missing_args)
2293 << Name << SR;
2294 if (TemplateDecl *Decl = Name.getAsTemplateDecl())
2295 Diag(Decl->getLocation(), diag::note_template_decl_here);
Anders Carlsson436b1562009-06-13 00:33:33 +00002296
Jeffrey Yasskindb88d8a2010-04-08 00:03:06 +00002297 return true;
2298 }
2299 default: {
Anders Carlsson436b1562009-06-13 00:33:33 +00002300 // We have a template type parameter but the template argument
2301 // is not a type.
John McCall828bff22009-10-29 18:45:58 +00002302 SourceRange SR = AL.getSourceRange();
2303 Diag(SR.getBegin(), diag::err_template_arg_must_be_type) << SR;
Anders Carlsson436b1562009-06-13 00:33:33 +00002304 Diag(Param->getLocation(), diag::note_template_param_here);
Mike Stump1eb44332009-09-09 15:08:12 +00002305
Anders Carlsson436b1562009-06-13 00:33:33 +00002306 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00002307 }
Jeffrey Yasskindb88d8a2010-04-08 00:03:06 +00002308 }
Anders Carlsson436b1562009-06-13 00:33:33 +00002309
John McCalla93c9342009-12-07 02:54:59 +00002310 if (CheckTemplateArgument(Param, AL.getTypeSourceInfo()))
Anders Carlsson436b1562009-06-13 00:33:33 +00002311 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00002312
Anders Carlsson436b1562009-06-13 00:33:33 +00002313 // Add the converted template type argument.
Douglas Gregor910f8002010-11-07 23:05:16 +00002314 Converted.push_back(
John McCall833ca992009-10-29 08:12:44 +00002315 TemplateArgument(Context.getCanonicalType(Arg.getAsType())));
Anders Carlsson436b1562009-06-13 00:33:33 +00002316 return false;
2317}
2318
Douglas Gregor0f8716b2009-11-09 19:17:50 +00002319/// \brief Substitute template arguments into the default template argument for
2320/// the given template type parameter.
2321///
2322/// \param SemaRef the semantic analysis object for which we are performing
2323/// the substitution.
2324///
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002325/// \param Template the template that we are synthesizing template arguments
Douglas Gregor0f8716b2009-11-09 19:17:50 +00002326/// for.
2327///
2328/// \param TemplateLoc the location of the template name that started the
2329/// template-id we are checking.
2330///
2331/// \param RAngleLoc the location of the right angle bracket ('>') that
2332/// terminates the template-id.
2333///
2334/// \param Param the template template parameter whose default we are
2335/// substituting into.
2336///
2337/// \param Converted the list of template arguments provided for template
2338/// parameters that precede \p Param in the template parameter list.
Douglas Gregor0f8716b2009-11-09 19:17:50 +00002339/// \returns the substituted template argument, or NULL if an error occurred.
John McCalla93c9342009-12-07 02:54:59 +00002340static TypeSourceInfo *
Douglas Gregor0f8716b2009-11-09 19:17:50 +00002341SubstDefaultTemplateArgument(Sema &SemaRef,
2342 TemplateDecl *Template,
2343 SourceLocation TemplateLoc,
2344 SourceLocation RAngleLoc,
2345 TemplateTypeParmDecl *Param,
Douglas Gregor910f8002010-11-07 23:05:16 +00002346 llvm::SmallVectorImpl<TemplateArgument> &Converted) {
John McCalla93c9342009-12-07 02:54:59 +00002347 TypeSourceInfo *ArgType = Param->getDefaultArgumentInfo();
Douglas Gregor0f8716b2009-11-09 19:17:50 +00002348
2349 // If the argument type is dependent, instantiate it now based
2350 // on the previously-computed template arguments.
2351 if (ArgType->getType()->isDependentType()) {
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002352 TemplateArgumentList TemplateArgs(TemplateArgumentList::OnStack,
Douglas Gregor910f8002010-11-07 23:05:16 +00002353 Converted.data(), Converted.size());
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002354
Douglas Gregor0f8716b2009-11-09 19:17:50 +00002355 MultiLevelTemplateArgumentList AllTemplateArgs
2356 = SemaRef.getTemplateInstantiationArgs(Template, &TemplateArgs);
2357
2358 Sema::InstantiatingTemplate Inst(SemaRef, TemplateLoc,
Douglas Gregor910f8002010-11-07 23:05:16 +00002359 Template, Converted.data(),
2360 Converted.size(),
Douglas Gregor0f8716b2009-11-09 19:17:50 +00002361 SourceRange(TemplateLoc, RAngleLoc));
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002362
Douglas Gregor0f8716b2009-11-09 19:17:50 +00002363 ArgType = SemaRef.SubstType(ArgType, AllTemplateArgs,
2364 Param->getDefaultArgumentLoc(),
2365 Param->getDeclName());
2366 }
2367
2368 return ArgType;
2369}
2370
2371/// \brief Substitute template arguments into the default template argument for
2372/// the given non-type template parameter.
2373///
2374/// \param SemaRef the semantic analysis object for which we are performing
2375/// the substitution.
2376///
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002377/// \param Template the template that we are synthesizing template arguments
Douglas Gregor0f8716b2009-11-09 19:17:50 +00002378/// for.
2379///
2380/// \param TemplateLoc the location of the template name that started the
2381/// template-id we are checking.
2382///
2383/// \param RAngleLoc the location of the right angle bracket ('>') that
2384/// terminates the template-id.
2385///
Douglas Gregor788cd062009-11-11 01:00:40 +00002386/// \param Param the non-type template parameter whose default we are
Douglas Gregor0f8716b2009-11-09 19:17:50 +00002387/// substituting into.
2388///
2389/// \param Converted the list of template arguments provided for template
2390/// parameters that precede \p Param in the template parameter list.
2391///
2392/// \returns the substituted template argument, or NULL if an error occurred.
John McCall60d7b3a2010-08-24 06:29:42 +00002393static ExprResult
Douglas Gregor0f8716b2009-11-09 19:17:50 +00002394SubstDefaultTemplateArgument(Sema &SemaRef,
2395 TemplateDecl *Template,
2396 SourceLocation TemplateLoc,
2397 SourceLocation RAngleLoc,
2398 NonTypeTemplateParmDecl *Param,
Douglas Gregor910f8002010-11-07 23:05:16 +00002399 llvm::SmallVectorImpl<TemplateArgument> &Converted) {
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002400 TemplateArgumentList TemplateArgs(TemplateArgumentList::OnStack,
Douglas Gregor910f8002010-11-07 23:05:16 +00002401 Converted.data(), Converted.size());
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002402
Douglas Gregor0f8716b2009-11-09 19:17:50 +00002403 MultiLevelTemplateArgumentList AllTemplateArgs
2404 = SemaRef.getTemplateInstantiationArgs(Template, &TemplateArgs);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002405
Douglas Gregor0f8716b2009-11-09 19:17:50 +00002406 Sema::InstantiatingTemplate Inst(SemaRef, TemplateLoc,
Douglas Gregor910f8002010-11-07 23:05:16 +00002407 Template, Converted.data(),
2408 Converted.size(),
Douglas Gregor0f8716b2009-11-09 19:17:50 +00002409 SourceRange(TemplateLoc, RAngleLoc));
2410
2411 return SemaRef.SubstExpr(Param->getDefaultArgument(), AllTemplateArgs);
2412}
2413
Douglas Gregor788cd062009-11-11 01:00:40 +00002414/// \brief Substitute template arguments into the default template argument for
2415/// the given template template parameter.
2416///
2417/// \param SemaRef the semantic analysis object for which we are performing
2418/// the substitution.
2419///
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002420/// \param Template the template that we are synthesizing template arguments
Douglas Gregor788cd062009-11-11 01:00:40 +00002421/// for.
2422///
2423/// \param TemplateLoc the location of the template name that started the
2424/// template-id we are checking.
2425///
2426/// \param RAngleLoc the location of the right angle bracket ('>') that
2427/// terminates the template-id.
2428///
2429/// \param Param the template template parameter whose default we are
2430/// substituting into.
2431///
2432/// \param Converted the list of template arguments provided for template
2433/// parameters that precede \p Param in the template parameter list.
2434///
Douglas Gregor1d752d72011-03-02 18:46:51 +00002435/// \param QualifierLoc Will be set to the nested-name-specifier (with
2436/// source-location information) that precedes the template name.
Douglas Gregorb6744ef2011-03-02 17:09:35 +00002437///
Douglas Gregor788cd062009-11-11 01:00:40 +00002438/// \returns the substituted template argument, or NULL if an error occurred.
2439static TemplateName
2440SubstDefaultTemplateArgument(Sema &SemaRef,
2441 TemplateDecl *Template,
2442 SourceLocation TemplateLoc,
2443 SourceLocation RAngleLoc,
2444 TemplateTemplateParmDecl *Param,
Douglas Gregorb6744ef2011-03-02 17:09:35 +00002445 llvm::SmallVectorImpl<TemplateArgument> &Converted,
2446 NestedNameSpecifierLoc &QualifierLoc) {
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002447 TemplateArgumentList TemplateArgs(TemplateArgumentList::OnStack,
Douglas Gregor910f8002010-11-07 23:05:16 +00002448 Converted.data(), Converted.size());
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002449
Douglas Gregor788cd062009-11-11 01:00:40 +00002450 MultiLevelTemplateArgumentList AllTemplateArgs
2451 = SemaRef.getTemplateInstantiationArgs(Template, &TemplateArgs);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002452
Douglas Gregor788cd062009-11-11 01:00:40 +00002453 Sema::InstantiatingTemplate Inst(SemaRef, TemplateLoc,
Douglas Gregor910f8002010-11-07 23:05:16 +00002454 Template, Converted.data(),
2455 Converted.size(),
Douglas Gregor788cd062009-11-11 01:00:40 +00002456 SourceRange(TemplateLoc, RAngleLoc));
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002457
Douglas Gregorb6744ef2011-03-02 17:09:35 +00002458 // Substitute into the nested-name-specifier first,
Douglas Gregor1d752d72011-03-02 18:46:51 +00002459 QualifierLoc = Param->getDefaultArgument().getTemplateQualifierLoc();
Douglas Gregorb6744ef2011-03-02 17:09:35 +00002460 if (QualifierLoc) {
2461 QualifierLoc = SemaRef.SubstNestedNameSpecifierLoc(QualifierLoc,
2462 AllTemplateArgs);
2463 if (!QualifierLoc)
2464 return TemplateName();
2465 }
2466
Douglas Gregor1d752d72011-03-02 18:46:51 +00002467 return SemaRef.SubstTemplateName(QualifierLoc,
Douglas Gregor788cd062009-11-11 01:00:40 +00002468 Param->getDefaultArgument().getArgument().getAsTemplate(),
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002469 Param->getDefaultArgument().getTemplateNameLoc(),
Douglas Gregor788cd062009-11-11 01:00:40 +00002470 AllTemplateArgs);
2471}
2472
Douglas Gregor51ffb0c2009-11-25 18:55:14 +00002473/// \brief If the given template parameter has a default template
2474/// argument, substitute into that default template argument and
2475/// return the corresponding template argument.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002476TemplateArgumentLoc
Douglas Gregor51ffb0c2009-11-25 18:55:14 +00002477Sema::SubstDefaultTemplateArgumentIfAvailable(TemplateDecl *Template,
2478 SourceLocation TemplateLoc,
2479 SourceLocation RAngleLoc,
2480 Decl *Param,
Douglas Gregor910f8002010-11-07 23:05:16 +00002481 llvm::SmallVectorImpl<TemplateArgument> &Converted) {
2482 if (TemplateTypeParmDecl *TypeParm = dyn_cast<TemplateTypeParmDecl>(Param)) {
Douglas Gregor51ffb0c2009-11-25 18:55:14 +00002483 if (!TypeParm->hasDefaultArgument())
2484 return TemplateArgumentLoc();
2485
John McCalla93c9342009-12-07 02:54:59 +00002486 TypeSourceInfo *DI = SubstDefaultTemplateArgument(*this, Template,
Douglas Gregor51ffb0c2009-11-25 18:55:14 +00002487 TemplateLoc,
2488 RAngleLoc,
2489 TypeParm,
2490 Converted);
2491 if (DI)
2492 return TemplateArgumentLoc(TemplateArgument(DI->getType()), DI);
2493
2494 return TemplateArgumentLoc();
2495 }
2496
2497 if (NonTypeTemplateParmDecl *NonTypeParm
2498 = dyn_cast<NonTypeTemplateParmDecl>(Param)) {
2499 if (!NonTypeParm->hasDefaultArgument())
2500 return TemplateArgumentLoc();
2501
John McCall60d7b3a2010-08-24 06:29:42 +00002502 ExprResult Arg = SubstDefaultTemplateArgument(*this, Template,
Douglas Gregorb6744ef2011-03-02 17:09:35 +00002503 TemplateLoc,
2504 RAngleLoc,
2505 NonTypeParm,
2506 Converted);
Douglas Gregor51ffb0c2009-11-25 18:55:14 +00002507 if (Arg.isInvalid())
2508 return TemplateArgumentLoc();
2509
2510 Expr *ArgE = Arg.takeAs<Expr>();
2511 return TemplateArgumentLoc(TemplateArgument(ArgE), ArgE);
2512 }
2513
2514 TemplateTemplateParmDecl *TempTempParm
2515 = cast<TemplateTemplateParmDecl>(Param);
2516 if (!TempTempParm->hasDefaultArgument())
2517 return TemplateArgumentLoc();
2518
Douglas Gregorb6744ef2011-03-02 17:09:35 +00002519
Douglas Gregor1d752d72011-03-02 18:46:51 +00002520 NestedNameSpecifierLoc QualifierLoc;
Douglas Gregor51ffb0c2009-11-25 18:55:14 +00002521 TemplateName TName = SubstDefaultTemplateArgument(*this, Template,
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002522 TemplateLoc,
Douglas Gregor51ffb0c2009-11-25 18:55:14 +00002523 RAngleLoc,
2524 TempTempParm,
Douglas Gregorb6744ef2011-03-02 17:09:35 +00002525 Converted,
2526 QualifierLoc);
Douglas Gregor51ffb0c2009-11-25 18:55:14 +00002527 if (TName.isNull())
2528 return TemplateArgumentLoc();
2529
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002530 return TemplateArgumentLoc(TemplateArgument(TName),
Douglas Gregorb6744ef2011-03-02 17:09:35 +00002531 TempTempParm->getDefaultArgument().getTemplateQualifierLoc(),
Douglas Gregor51ffb0c2009-11-25 18:55:14 +00002532 TempTempParm->getDefaultArgument().getTemplateNameLoc());
2533}
2534
Douglas Gregore7526412009-11-11 19:31:23 +00002535/// \brief Check that the given template argument corresponds to the given
2536/// template parameter.
Douglas Gregor6952f1e2011-01-19 20:10:05 +00002537///
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002538/// \param Param The template parameter against which the argument will be
Douglas Gregor6952f1e2011-01-19 20:10:05 +00002539/// checked.
2540///
2541/// \param Arg The template argument.
2542///
2543/// \param Template The template in which the template argument resides.
2544///
2545/// \param TemplateLoc The location of the template name for the template
2546/// whose argument list we're matching.
2547///
2548/// \param RAngleLoc The location of the right angle bracket ('>') that closes
2549/// the template argument list.
2550///
2551/// \param ArgumentPackIndex The index into the argument pack where this
2552/// argument will be placed. Only valid if the parameter is a parameter pack.
2553///
2554/// \param Converted The checked, converted argument will be added to the
2555/// end of this small vector.
2556///
2557/// \param CTAK Describes how we arrived at this particular template argument:
2558/// explicitly written, deduced, etc.
2559///
2560/// \returns true on error, false otherwise.
Douglas Gregore7526412009-11-11 19:31:23 +00002561bool Sema::CheckTemplateArgument(NamedDecl *Param,
2562 const TemplateArgumentLoc &Arg,
Douglas Gregor54c53cc2011-01-04 23:35:54 +00002563 NamedDecl *Template,
Douglas Gregore7526412009-11-11 19:31:23 +00002564 SourceLocation TemplateLoc,
Douglas Gregore7526412009-11-11 19:31:23 +00002565 SourceLocation RAngleLoc,
Douglas Gregor6952f1e2011-01-19 20:10:05 +00002566 unsigned ArgumentPackIndex,
Douglas Gregor910f8002010-11-07 23:05:16 +00002567 llvm::SmallVectorImpl<TemplateArgument> &Converted,
Douglas Gregor02024a92010-03-28 02:42:43 +00002568 CheckTemplateArgumentKind CTAK) {
Douglas Gregord9e15302009-11-11 19:41:09 +00002569 // Check template type parameters.
2570 if (TemplateTypeParmDecl *TTP = dyn_cast<TemplateTypeParmDecl>(Param))
Douglas Gregore7526412009-11-11 19:31:23 +00002571 return CheckTemplateTypeArgument(TTP, Arg, Converted);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002572
Douglas Gregord9e15302009-11-11 19:41:09 +00002573 // Check non-type template parameters.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002574 if (NonTypeTemplateParmDecl *NTTP =dyn_cast<NonTypeTemplateParmDecl>(Param)) {
Douglas Gregore7526412009-11-11 19:31:23 +00002575 // Do substitution on the type of the non-type template parameter
Peter Collingbourne9f6f6a12010-12-10 17:08:53 +00002576 // with the template arguments we've seen thus far. But if the
2577 // template has a dependent context then we cannot substitute yet.
Douglas Gregore7526412009-11-11 19:31:23 +00002578 QualType NTTPType = NTTP->getType();
Douglas Gregor6952f1e2011-01-19 20:10:05 +00002579 if (NTTP->isParameterPack() && NTTP->isExpandedParameterPack())
2580 NTTPType = NTTP->getExpansionType(ArgumentPackIndex);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002581
Peter Collingbourne9f6f6a12010-12-10 17:08:53 +00002582 if (NTTPType->isDependentType() &&
2583 !isa<TemplateTemplateParmDecl>(Template) &&
2584 !Template->getDeclContext()->isDependentContext()) {
Douglas Gregore7526412009-11-11 19:31:23 +00002585 // Do substitution on the type of the non-type template parameter.
2586 InstantiatingTemplate Inst(*this, TemplateLoc, Template,
Douglas Gregor910f8002010-11-07 23:05:16 +00002587 NTTP, Converted.data(), Converted.size(),
Douglas Gregore7526412009-11-11 19:31:23 +00002588 SourceRange(TemplateLoc, RAngleLoc));
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002589
2590 TemplateArgumentList TemplateArgs(TemplateArgumentList::OnStack,
Douglas Gregor910f8002010-11-07 23:05:16 +00002591 Converted.data(), Converted.size());
Douglas Gregore7526412009-11-11 19:31:23 +00002592 NTTPType = SubstType(NTTPType,
2593 MultiLevelTemplateArgumentList(TemplateArgs),
2594 NTTP->getLocation(),
2595 NTTP->getDeclName());
2596 // If that worked, check the non-type template parameter type
2597 // for validity.
2598 if (!NTTPType.isNull())
2599 NTTPType = CheckNonTypeTemplateParameterType(NTTPType,
2600 NTTP->getLocation());
2601 if (NTTPType.isNull())
2602 return true;
2603 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002604
Douglas Gregore7526412009-11-11 19:31:23 +00002605 switch (Arg.getArgument().getKind()) {
2606 case TemplateArgument::Null:
2607 assert(false && "Should never see a NULL template argument here");
2608 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002609
Douglas Gregore7526412009-11-11 19:31:23 +00002610 case TemplateArgument::Expression: {
Douglas Gregore7526412009-11-11 19:31:23 +00002611 TemplateArgument Result;
John Wiegley429bb272011-04-08 18:41:53 +00002612 ExprResult Res =
2613 CheckTemplateArgument(NTTP, NTTPType, Arg.getArgument().getAsExpr(),
2614 Result, CTAK);
2615 if (Res.isInvalid())
Douglas Gregore7526412009-11-11 19:31:23 +00002616 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002617
Douglas Gregor910f8002010-11-07 23:05:16 +00002618 Converted.push_back(Result);
Douglas Gregore7526412009-11-11 19:31:23 +00002619 break;
2620 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002621
Douglas Gregore7526412009-11-11 19:31:23 +00002622 case TemplateArgument::Declaration:
2623 case TemplateArgument::Integral:
2624 // We've already checked this template argument, so just copy
2625 // it to the list of converted arguments.
Douglas Gregor910f8002010-11-07 23:05:16 +00002626 Converted.push_back(Arg.getArgument());
Douglas Gregore7526412009-11-11 19:31:23 +00002627 break;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002628
Douglas Gregore7526412009-11-11 19:31:23 +00002629 case TemplateArgument::Template:
Douglas Gregora7fc9012011-01-05 18:58:31 +00002630 case TemplateArgument::TemplateExpansion:
Douglas Gregore7526412009-11-11 19:31:23 +00002631 // We were given a template template argument. It may not be ill-formed;
2632 // see below.
2633 if (DependentTemplateName *DTN
Douglas Gregora7fc9012011-01-05 18:58:31 +00002634 = Arg.getArgument().getAsTemplateOrTemplatePattern()
2635 .getAsDependentTemplateName()) {
Douglas Gregore7526412009-11-11 19:31:23 +00002636 // We have a template argument such as \c T::template X, which we
2637 // parsed as a template template argument. However, since we now
2638 // know that we need a non-type template argument, convert this
Abramo Bagnara25777432010-08-11 22:01:17 +00002639 // template name into an expression.
2640
2641 DeclarationNameInfo NameInfo(DTN->getIdentifier(),
2642 Arg.getTemplateNameLoc());
2643
Douglas Gregor00cf3cc2011-02-25 20:49:16 +00002644 CXXScopeSpec SS;
Douglas Gregorb6744ef2011-03-02 17:09:35 +00002645 SS.Adopt(Arg.getTemplateQualifierLoc());
John Wiegley429bb272011-04-08 18:41:53 +00002646 ExprResult E = Owned(DependentScopeDeclRefExpr::Create(Context,
Douglas Gregor00cf3cc2011-02-25 20:49:16 +00002647 SS.getWithLocInContext(Context),
John Wiegley429bb272011-04-08 18:41:53 +00002648 NameInfo));
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002649
Douglas Gregora7fc9012011-01-05 18:58:31 +00002650 // If we parsed the template argument as a pack expansion, create a
2651 // pack expansion expression.
2652 if (Arg.getArgument().getKind() == TemplateArgument::TemplateExpansion){
John Wiegley429bb272011-04-08 18:41:53 +00002653 E = ActOnPackExpansion(E.take(), Arg.getTemplateEllipsisLoc());
2654 if (E.isInvalid())
Douglas Gregora7fc9012011-01-05 18:58:31 +00002655 return true;
Douglas Gregora7fc9012011-01-05 18:58:31 +00002656 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002657
Douglas Gregore7526412009-11-11 19:31:23 +00002658 TemplateArgument Result;
John Wiegley429bb272011-04-08 18:41:53 +00002659 E = CheckTemplateArgument(NTTP, NTTPType, E.take(), Result);
2660 if (E.isInvalid())
Douglas Gregore7526412009-11-11 19:31:23 +00002661 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002662
Douglas Gregor910f8002010-11-07 23:05:16 +00002663 Converted.push_back(Result);
Douglas Gregore7526412009-11-11 19:31:23 +00002664 break;
2665 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002666
Douglas Gregore7526412009-11-11 19:31:23 +00002667 // We have a template argument that actually does refer to a class
Richard Smith3e4c6c42011-05-05 21:57:07 +00002668 // template, alias template, or template template parameter, and
Douglas Gregore7526412009-11-11 19:31:23 +00002669 // therefore cannot be a non-type template argument.
2670 Diag(Arg.getLocation(), diag::err_template_arg_must_be_expr)
2671 << Arg.getSourceRange();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002672
Douglas Gregore7526412009-11-11 19:31:23 +00002673 Diag(Param->getLocation(), diag::note_template_param_here);
2674 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002675
Douglas Gregore7526412009-11-11 19:31:23 +00002676 case TemplateArgument::Type: {
2677 // We have a non-type template parameter but the template
2678 // argument is a type.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002679
Douglas Gregore7526412009-11-11 19:31:23 +00002680 // C++ [temp.arg]p2:
2681 // In a template-argument, an ambiguity between a type-id and
2682 // an expression is resolved to a type-id, regardless of the
2683 // form of the corresponding template-parameter.
2684 //
2685 // We warn specifically about this case, since it can be rather
2686 // confusing for users.
2687 QualType T = Arg.getArgument().getAsType();
2688 SourceRange SR = Arg.getSourceRange();
2689 if (T->isFunctionType())
2690 Diag(SR.getBegin(), diag::err_template_arg_nontype_ambig) << SR << T;
2691 else
2692 Diag(SR.getBegin(), diag::err_template_arg_must_be_expr) << SR;
2693 Diag(Param->getLocation(), diag::note_template_param_here);
2694 return true;
2695 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002696
Douglas Gregore7526412009-11-11 19:31:23 +00002697 case TemplateArgument::Pack:
Jeffrey Yasskin9f61aa92009-12-12 05:05:38 +00002698 llvm_unreachable("Caller must expand template argument packs");
Douglas Gregore7526412009-11-11 19:31:23 +00002699 break;
2700 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002701
Douglas Gregore7526412009-11-11 19:31:23 +00002702 return false;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002703 }
2704
2705
Douglas Gregore7526412009-11-11 19:31:23 +00002706 // Check template template parameters.
2707 TemplateTemplateParmDecl *TempParm = cast<TemplateTemplateParmDecl>(Param);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002708
Douglas Gregore7526412009-11-11 19:31:23 +00002709 // Substitute into the template parameter list of the template
2710 // template parameter, since previously-supplied template arguments
2711 // may appear within the template template parameter.
2712 {
2713 // Set up a template instantiation context.
2714 LocalInstantiationScope Scope(*this);
2715 InstantiatingTemplate Inst(*this, TemplateLoc, Template,
Douglas Gregor910f8002010-11-07 23:05:16 +00002716 TempParm, Converted.data(), Converted.size(),
Douglas Gregore7526412009-11-11 19:31:23 +00002717 SourceRange(TemplateLoc, RAngleLoc));
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002718
2719 TemplateArgumentList TemplateArgs(TemplateArgumentList::OnStack,
Douglas Gregor910f8002010-11-07 23:05:16 +00002720 Converted.data(), Converted.size());
Douglas Gregore7526412009-11-11 19:31:23 +00002721 TempParm = cast_or_null<TemplateTemplateParmDecl>(
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002722 SubstDecl(TempParm, CurContext,
Douglas Gregore7526412009-11-11 19:31:23 +00002723 MultiLevelTemplateArgumentList(TemplateArgs)));
2724 if (!TempParm)
2725 return true;
Douglas Gregore7526412009-11-11 19:31:23 +00002726 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002727
Douglas Gregore7526412009-11-11 19:31:23 +00002728 switch (Arg.getArgument().getKind()) {
2729 case TemplateArgument::Null:
2730 assert(false && "Should never see a NULL template argument here");
2731 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002732
Douglas Gregore7526412009-11-11 19:31:23 +00002733 case TemplateArgument::Template:
Douglas Gregora7fc9012011-01-05 18:58:31 +00002734 case TemplateArgument::TemplateExpansion:
Douglas Gregore7526412009-11-11 19:31:23 +00002735 if (CheckTemplateArgument(TempParm, Arg))
2736 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002737
Douglas Gregor910f8002010-11-07 23:05:16 +00002738 Converted.push_back(Arg.getArgument());
Douglas Gregore7526412009-11-11 19:31:23 +00002739 break;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002740
Douglas Gregore7526412009-11-11 19:31:23 +00002741 case TemplateArgument::Expression:
2742 case TemplateArgument::Type:
2743 // We have a template template parameter but the template
2744 // argument does not refer to a template.
Richard Smith3e4c6c42011-05-05 21:57:07 +00002745 Diag(Arg.getLocation(), diag::err_template_arg_must_be_template)
2746 << getLangOptions().CPlusPlus0x;
Douglas Gregore7526412009-11-11 19:31:23 +00002747 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002748
Douglas Gregore7526412009-11-11 19:31:23 +00002749 case TemplateArgument::Declaration:
Jeffrey Yasskin9f61aa92009-12-12 05:05:38 +00002750 llvm_unreachable(
Douglas Gregore7526412009-11-11 19:31:23 +00002751 "Declaration argument with template template parameter");
2752 break;
2753 case TemplateArgument::Integral:
Jeffrey Yasskin9f61aa92009-12-12 05:05:38 +00002754 llvm_unreachable(
Douglas Gregore7526412009-11-11 19:31:23 +00002755 "Integral argument with template template parameter");
2756 break;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002757
Douglas Gregore7526412009-11-11 19:31:23 +00002758 case TemplateArgument::Pack:
Jeffrey Yasskin9f61aa92009-12-12 05:05:38 +00002759 llvm_unreachable("Caller must expand template argument packs");
Douglas Gregore7526412009-11-11 19:31:23 +00002760 break;
2761 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002762
Douglas Gregore7526412009-11-11 19:31:23 +00002763 return false;
2764}
2765
Douglas Gregorc15cb382009-02-09 23:23:08 +00002766/// \brief Check that the given template argument list is well-formed
2767/// for specializing the given template.
2768bool Sema::CheckTemplateArgumentList(TemplateDecl *Template,
2769 SourceLocation TemplateLoc,
Douglas Gregor67714232011-03-03 02:41:12 +00002770 TemplateArgumentListInfo &TemplateArgs,
Douglas Gregor16134c62009-07-01 00:28:38 +00002771 bool PartialTemplateArgs,
Douglas Gregor910f8002010-11-07 23:05:16 +00002772 llvm::SmallVectorImpl<TemplateArgument> &Converted) {
Douglas Gregorc15cb382009-02-09 23:23:08 +00002773 TemplateParameterList *Params = Template->getTemplateParameters();
2774 unsigned NumParams = Params->size();
John McCalld5532b62009-11-23 01:53:49 +00002775 unsigned NumArgs = TemplateArgs.size();
Douglas Gregorc15cb382009-02-09 23:23:08 +00002776 bool Invalid = false;
2777
John McCalld5532b62009-11-23 01:53:49 +00002778 SourceLocation RAngleLoc = TemplateArgs.getRAngleLoc();
2779
Mike Stump1eb44332009-09-09 15:08:12 +00002780 bool HasParameterPack =
Anders Carlsson0ceffb52009-06-13 02:08:00 +00002781 NumParams > 0 && Params->getParam(NumParams - 1)->isTemplateParameterPack();
Mike Stump1eb44332009-09-09 15:08:12 +00002782
Anders Carlsson0ceffb52009-06-13 02:08:00 +00002783 if ((NumArgs > NumParams && !HasParameterPack) ||
Douglas Gregor16134c62009-07-01 00:28:38 +00002784 (NumArgs < Params->getMinRequiredArguments() &&
2785 !PartialTemplateArgs)) {
Douglas Gregorc15cb382009-02-09 23:23:08 +00002786 // FIXME: point at either the first arg beyond what we can handle,
2787 // or the '>', depending on whether we have too many or too few
2788 // arguments.
2789 SourceRange Range;
2790 if (NumArgs > NumParams)
Douglas Gregor40808ce2009-03-09 23:48:35 +00002791 Range = SourceRange(TemplateArgs[NumParams].getLocation(), RAngleLoc);
Douglas Gregorc15cb382009-02-09 23:23:08 +00002792 Diag(TemplateLoc, diag::err_template_arg_list_different_arity)
2793 << (NumArgs > NumParams)
2794 << (isa<ClassTemplateDecl>(Template)? 0 :
2795 isa<FunctionTemplateDecl>(Template)? 1 :
2796 isa<TemplateTemplateParmDecl>(Template)? 2 : 3)
2797 << Template << Range;
Douglas Gregor62cb18d2009-02-11 18:16:40 +00002798 Diag(Template->getLocation(), diag::note_template_decl_here)
2799 << Params->getSourceRange();
Douglas Gregorc15cb382009-02-09 23:23:08 +00002800 Invalid = true;
2801 }
Mike Stump1eb44332009-09-09 15:08:12 +00002802
2803 // C++ [temp.arg]p1:
Douglas Gregorc15cb382009-02-09 23:23:08 +00002804 // [...] The type and form of each template-argument specified in
2805 // a template-id shall match the type and form specified for the
2806 // corresponding parameter declared by the template in its
2807 // template-parameter-list.
Douglas Gregor67714232011-03-03 02:41:12 +00002808 bool isTemplateTemplateParameter = isa<TemplateTemplateParmDecl>(Template);
Douglas Gregor14be16b2010-12-20 16:57:52 +00002809 llvm::SmallVector<TemplateArgument, 2> ArgumentPack;
2810 TemplateParameterList::iterator Param = Params->begin(),
2811 ParamEnd = Params->end();
Douglas Gregorc15cb382009-02-09 23:23:08 +00002812 unsigned ArgIdx = 0;
Douglas Gregor8dde14e2011-01-24 16:14:37 +00002813 LocalInstantiationScope InstScope(*this, true);
Douglas Gregor14be16b2010-12-20 16:57:52 +00002814 while (Param != ParamEnd) {
Douglas Gregor16134c62009-07-01 00:28:38 +00002815 if (ArgIdx > NumArgs && PartialTemplateArgs)
2816 break;
Mike Stump1eb44332009-09-09 15:08:12 +00002817
Douglas Gregorf35f8282009-11-11 21:54:23 +00002818 if (ArgIdx < NumArgs) {
Douglas Gregor6952f1e2011-01-19 20:10:05 +00002819 // If we have an expanded parameter pack, make sure we don't have too
2820 // many arguments.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002821 if (NonTypeTemplateParmDecl *NTTP
Douglas Gregor6952f1e2011-01-19 20:10:05 +00002822 = dyn_cast<NonTypeTemplateParmDecl>(*Param)) {
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002823 if (NTTP->isExpandedParameterPack() &&
Douglas Gregor6952f1e2011-01-19 20:10:05 +00002824 ArgumentPack.size() >= NTTP->getNumExpansionTypes()) {
2825 Diag(TemplateLoc, diag::err_template_arg_list_different_arity)
2826 << true
2827 << (isa<ClassTemplateDecl>(Template)? 0 :
2828 isa<FunctionTemplateDecl>(Template)? 1 :
2829 isa<TemplateTemplateParmDecl>(Template)? 2 : 3)
2830 << Template;
2831 Diag(Template->getLocation(), diag::note_template_decl_here)
2832 << Params->getSourceRange();
2833 return true;
2834 }
2835 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002836
Douglas Gregorf35f8282009-11-11 21:54:23 +00002837 // Check the template argument we were given.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002838 if (CheckTemplateArgument(*Param, TemplateArgs[ArgIdx], Template,
2839 TemplateLoc, RAngleLoc,
Douglas Gregor6952f1e2011-01-19 20:10:05 +00002840 ArgumentPack.size(), Converted))
Douglas Gregorf35f8282009-11-11 21:54:23 +00002841 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002842
Douglas Gregor14be16b2010-12-20 16:57:52 +00002843 if ((*Param)->isTemplateParameterPack()) {
2844 // The template parameter was a template parameter pack, so take the
2845 // deduced argument and place it on the argument pack. Note that we
2846 // stay on the same template parameter so that we can deduce more
2847 // arguments.
2848 ArgumentPack.push_back(Converted.back());
2849 Converted.pop_back();
2850 } else {
2851 // Move to the next template parameter.
2852 ++Param;
2853 }
2854 ++ArgIdx;
Douglas Gregorf35f8282009-11-11 21:54:23 +00002855 continue;
Douglas Gregor3e00bad2009-02-17 01:05:43 +00002856 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002857
2858 // If we have a template parameter pack with no more corresponding
Douglas Gregor14be16b2010-12-20 16:57:52 +00002859 // arguments, just break out now and we'll fill in the argument pack below.
2860 if ((*Param)->isTemplateParameterPack())
2861 break;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002862
Douglas Gregorf35f8282009-11-11 21:54:23 +00002863 // We have a default template argument that we will use.
2864 TemplateArgumentLoc Arg;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002865
Douglas Gregorf35f8282009-11-11 21:54:23 +00002866 // Retrieve the default template argument from the template
2867 // parameter. For each kind of template parameter, we substitute the
2868 // template arguments provided thus far and any "outer" template arguments
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002869 // (when the template parameter was part of a nested template) into
Douglas Gregorf35f8282009-11-11 21:54:23 +00002870 // the default argument.
2871 if (TemplateTypeParmDecl *TTP = dyn_cast<TemplateTypeParmDecl>(*Param)) {
2872 if (!TTP->hasDefaultArgument()) {
2873 assert((Invalid || PartialTemplateArgs) && "Missing default argument");
2874 break;
2875 }
2876
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002877 TypeSourceInfo *ArgType = SubstDefaultTemplateArgument(*this,
Douglas Gregorf35f8282009-11-11 21:54:23 +00002878 Template,
2879 TemplateLoc,
2880 RAngleLoc,
2881 TTP,
2882 Converted);
2883 if (!ArgType)
2884 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002885
Douglas Gregorf35f8282009-11-11 21:54:23 +00002886 Arg = TemplateArgumentLoc(TemplateArgument(ArgType->getType()),
2887 ArgType);
2888 } else if (NonTypeTemplateParmDecl *NTTP
2889 = dyn_cast<NonTypeTemplateParmDecl>(*Param)) {
2890 if (!NTTP->hasDefaultArgument()) {
2891 assert((Invalid || PartialTemplateArgs) && "Missing default argument");
2892 break;
2893 }
2894
John McCall60d7b3a2010-08-24 06:29:42 +00002895 ExprResult E = SubstDefaultTemplateArgument(*this, Template,
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002896 TemplateLoc,
2897 RAngleLoc,
2898 NTTP,
Douglas Gregorf35f8282009-11-11 21:54:23 +00002899 Converted);
2900 if (E.isInvalid())
2901 return true;
2902
2903 Expr *Ex = E.takeAs<Expr>();
2904 Arg = TemplateArgumentLoc(TemplateArgument(Ex), Ex);
2905 } else {
2906 TemplateTemplateParmDecl *TempParm
2907 = cast<TemplateTemplateParmDecl>(*Param);
2908
2909 if (!TempParm->hasDefaultArgument()) {
2910 assert((Invalid || PartialTemplateArgs) && "Missing default argument");
2911 break;
2912 }
2913
Douglas Gregor1d752d72011-03-02 18:46:51 +00002914 NestedNameSpecifierLoc QualifierLoc;
Douglas Gregorf35f8282009-11-11 21:54:23 +00002915 TemplateName Name = SubstDefaultTemplateArgument(*this, Template,
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002916 TemplateLoc,
2917 RAngleLoc,
Douglas Gregorf35f8282009-11-11 21:54:23 +00002918 TempParm,
Douglas Gregorb6744ef2011-03-02 17:09:35 +00002919 Converted,
2920 QualifierLoc);
Douglas Gregorf35f8282009-11-11 21:54:23 +00002921 if (Name.isNull())
2922 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002923
Douglas Gregorb6744ef2011-03-02 17:09:35 +00002924 Arg = TemplateArgumentLoc(TemplateArgument(Name), QualifierLoc,
2925 TempParm->getDefaultArgument().getTemplateNameLoc());
Douglas Gregorf35f8282009-11-11 21:54:23 +00002926 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002927
Douglas Gregorf35f8282009-11-11 21:54:23 +00002928 // Introduce an instantiation record that describes where we are using
2929 // the default template argument.
2930 InstantiatingTemplate Instantiating(*this, RAngleLoc, Template, *Param,
Douglas Gregor910f8002010-11-07 23:05:16 +00002931 Converted.data(), Converted.size(),
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002932 SourceRange(TemplateLoc, RAngleLoc));
2933
Douglas Gregorf35f8282009-11-11 21:54:23 +00002934 // Check the default template argument.
Douglas Gregord9e15302009-11-11 19:41:09 +00002935 if (CheckTemplateArgument(*Param, Arg, Template, TemplateLoc,
Douglas Gregor6952f1e2011-01-19 20:10:05 +00002936 RAngleLoc, 0, Converted))
Douglas Gregore7526412009-11-11 19:31:23 +00002937 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002938
Douglas Gregor67714232011-03-03 02:41:12 +00002939 // Core issue 150 (assumed resolution): if this is a template template
2940 // parameter, keep track of the default template arguments from the
2941 // template definition.
2942 if (isTemplateTemplateParameter)
2943 TemplateArgs.addArgument(Arg);
2944
Douglas Gregor14be16b2010-12-20 16:57:52 +00002945 // Move to the next template parameter and argument.
2946 ++Param;
2947 ++ArgIdx;
Douglas Gregorc15cb382009-02-09 23:23:08 +00002948 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002949
Douglas Gregor14be16b2010-12-20 16:57:52 +00002950 // Form argument packs for each of the parameter packs remaining.
2951 while (Param != ParamEnd) {
Douglas Gregord3731192011-01-10 07:32:04 +00002952 // If we're checking a partial list of template arguments, don't fill
2953 // in arguments for non-template parameter packs.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002954
2955 if ((*Param)->isTemplateParameterPack()) {
Douglas Gregord3731192011-01-10 07:32:04 +00002956 if (PartialTemplateArgs && ArgumentPack.empty()) {
2957 Converted.push_back(TemplateArgument());
Douglas Gregor203e6a32011-01-11 23:09:57 +00002958 } else if (ArgumentPack.empty())
Douglas Gregor14be16b2010-12-20 16:57:52 +00002959 Converted.push_back(TemplateArgument(0, 0));
Douglas Gregor203e6a32011-01-11 23:09:57 +00002960 else {
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002961 Converted.push_back(TemplateArgument::CreatePackCopy(Context,
2962 ArgumentPack.data(),
Douglas Gregor203e6a32011-01-11 23:09:57 +00002963 ArgumentPack.size()));
Douglas Gregor14be16b2010-12-20 16:57:52 +00002964 ArgumentPack.clear();
2965 }
2966 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002967
Douglas Gregor14be16b2010-12-20 16:57:52 +00002968 ++Param;
2969 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002970
Douglas Gregorc15cb382009-02-09 23:23:08 +00002971 return Invalid;
2972}
2973
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00002974namespace {
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002975 class UnnamedLocalNoLinkageFinder
2976 : public TypeVisitor<UnnamedLocalNoLinkageFinder, bool>
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00002977 {
2978 Sema &S;
2979 SourceRange SR;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002980
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00002981 typedef TypeVisitor<UnnamedLocalNoLinkageFinder, bool> inherited;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002982
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00002983 public:
2984 UnnamedLocalNoLinkageFinder(Sema &S, SourceRange SR) : S(S), SR(SR) { }
2985
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002986 bool Visit(QualType T) {
2987 return inherited::Visit(T.getTypePtr());
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00002988 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002989
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00002990#define TYPE(Class, Parent) \
2991 bool Visit##Class##Type(const Class##Type *);
2992#define ABSTRACT_TYPE(Class, Parent) \
2993 bool Visit##Class##Type(const Class##Type *) { return false; }
2994#define NON_CANONICAL_TYPE(Class, Parent) \
2995 bool Visit##Class##Type(const Class##Type *) { return false; }
2996#include "clang/AST/TypeNodes.def"
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002997
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00002998 bool VisitTagDecl(const TagDecl *Tag);
2999 bool VisitNestedNameSpecifier(NestedNameSpecifier *NNS);
3000 };
3001}
3002
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003003bool UnnamedLocalNoLinkageFinder::VisitBuiltinType(const BuiltinType*) {
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003004 return false;
3005}
3006
3007bool UnnamedLocalNoLinkageFinder::VisitComplexType(const ComplexType* T) {
3008 return Visit(T->getElementType());
3009}
3010
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003011bool UnnamedLocalNoLinkageFinder::VisitPointerType(const PointerType* T) {
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003012 return Visit(T->getPointeeType());
3013}
3014
3015bool UnnamedLocalNoLinkageFinder::VisitBlockPointerType(
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003016 const BlockPointerType* T) {
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003017 return Visit(T->getPointeeType());
3018}
3019
3020bool UnnamedLocalNoLinkageFinder::VisitLValueReferenceType(
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003021 const LValueReferenceType* T) {
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003022 return Visit(T->getPointeeType());
3023}
3024
3025bool UnnamedLocalNoLinkageFinder::VisitRValueReferenceType(
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003026 const RValueReferenceType* T) {
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003027 return Visit(T->getPointeeType());
3028}
3029
3030bool UnnamedLocalNoLinkageFinder::VisitMemberPointerType(
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003031 const MemberPointerType* T) {
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003032 return Visit(T->getPointeeType()) || Visit(QualType(T->getClass(), 0));
3033}
3034
3035bool UnnamedLocalNoLinkageFinder::VisitConstantArrayType(
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003036 const ConstantArrayType* T) {
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003037 return Visit(T->getElementType());
3038}
3039
3040bool UnnamedLocalNoLinkageFinder::VisitIncompleteArrayType(
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003041 const IncompleteArrayType* T) {
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003042 return Visit(T->getElementType());
3043}
3044
3045bool UnnamedLocalNoLinkageFinder::VisitVariableArrayType(
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003046 const VariableArrayType* T) {
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003047 return Visit(T->getElementType());
3048}
3049
3050bool UnnamedLocalNoLinkageFinder::VisitDependentSizedArrayType(
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003051 const DependentSizedArrayType* T) {
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003052 return Visit(T->getElementType());
3053}
3054
3055bool UnnamedLocalNoLinkageFinder::VisitDependentSizedExtVectorType(
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003056 const DependentSizedExtVectorType* T) {
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003057 return Visit(T->getElementType());
3058}
3059
3060bool UnnamedLocalNoLinkageFinder::VisitVectorType(const VectorType* T) {
3061 return Visit(T->getElementType());
3062}
3063
3064bool UnnamedLocalNoLinkageFinder::VisitExtVectorType(const ExtVectorType* T) {
3065 return Visit(T->getElementType());
3066}
3067
3068bool UnnamedLocalNoLinkageFinder::VisitFunctionProtoType(
3069 const FunctionProtoType* T) {
3070 for (FunctionProtoType::arg_type_iterator A = T->arg_type_begin(),
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003071 AEnd = T->arg_type_end();
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003072 A != AEnd; ++A) {
3073 if (Visit(*A))
3074 return true;
3075 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003076
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003077 return Visit(T->getResultType());
3078}
3079
3080bool UnnamedLocalNoLinkageFinder::VisitFunctionNoProtoType(
3081 const FunctionNoProtoType* T) {
3082 return Visit(T->getResultType());
3083}
3084
3085bool UnnamedLocalNoLinkageFinder::VisitUnresolvedUsingType(
3086 const UnresolvedUsingType*) {
3087 return false;
3088}
3089
3090bool UnnamedLocalNoLinkageFinder::VisitTypeOfExprType(const TypeOfExprType*) {
3091 return false;
3092}
3093
3094bool UnnamedLocalNoLinkageFinder::VisitTypeOfType(const TypeOfType* T) {
3095 return Visit(T->getUnderlyingType());
3096}
3097
3098bool UnnamedLocalNoLinkageFinder::VisitDecltypeType(const DecltypeType*) {
3099 return false;
3100}
3101
Richard Smith34b41d92011-02-20 03:19:35 +00003102bool UnnamedLocalNoLinkageFinder::VisitAutoType(const AutoType *T) {
3103 return Visit(T->getDeducedType());
3104}
3105
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003106bool UnnamedLocalNoLinkageFinder::VisitRecordType(const RecordType* T) {
3107 return VisitTagDecl(T->getDecl());
3108}
3109
3110bool UnnamedLocalNoLinkageFinder::VisitEnumType(const EnumType* T) {
3111 return VisitTagDecl(T->getDecl());
3112}
3113
3114bool UnnamedLocalNoLinkageFinder::VisitTemplateTypeParmType(
3115 const TemplateTypeParmType*) {
3116 return false;
3117}
3118
Douglas Gregorc3069d62011-01-14 02:55:32 +00003119bool UnnamedLocalNoLinkageFinder::VisitSubstTemplateTypeParmPackType(
3120 const SubstTemplateTypeParmPackType *) {
3121 return false;
3122}
3123
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003124bool UnnamedLocalNoLinkageFinder::VisitTemplateSpecializationType(
3125 const TemplateSpecializationType*) {
3126 return false;
3127}
3128
3129bool UnnamedLocalNoLinkageFinder::VisitInjectedClassNameType(
3130 const InjectedClassNameType* T) {
3131 return VisitTagDecl(T->getDecl());
3132}
3133
3134bool UnnamedLocalNoLinkageFinder::VisitDependentNameType(
3135 const DependentNameType* T) {
3136 return VisitNestedNameSpecifier(T->getQualifier());
3137}
3138
3139bool UnnamedLocalNoLinkageFinder::VisitDependentTemplateSpecializationType(
3140 const DependentTemplateSpecializationType* T) {
3141 return VisitNestedNameSpecifier(T->getQualifier());
3142}
3143
Douglas Gregor7536dd52010-12-20 02:24:11 +00003144bool UnnamedLocalNoLinkageFinder::VisitPackExpansionType(
3145 const PackExpansionType* T) {
3146 return Visit(T->getPattern());
3147}
3148
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003149bool UnnamedLocalNoLinkageFinder::VisitObjCObjectType(const ObjCObjectType *) {
3150 return false;
3151}
3152
3153bool UnnamedLocalNoLinkageFinder::VisitObjCInterfaceType(
3154 const ObjCInterfaceType *) {
3155 return false;
3156}
3157
3158bool UnnamedLocalNoLinkageFinder::VisitObjCObjectPointerType(
3159 const ObjCObjectPointerType *) {
3160 return false;
3161}
3162
3163bool UnnamedLocalNoLinkageFinder::VisitTagDecl(const TagDecl *Tag) {
3164 if (Tag->getDeclContext()->isFunctionOrMethod()) {
3165 S.Diag(SR.getBegin(), diag::ext_template_arg_local_type)
3166 << S.Context.getTypeDeclType(Tag) << SR;
3167 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003168 }
3169
Richard Smith162e1c12011-04-15 14:24:37 +00003170 if (!Tag->getDeclName() && !Tag->getTypedefNameForAnonDecl()) {
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003171 S.Diag(SR.getBegin(), diag::ext_template_arg_unnamed_type) << SR;
3172 S.Diag(Tag->getLocation(), diag::note_template_unnamed_type_here);
3173 return true;
3174 }
3175
3176 return false;
3177}
3178
3179bool UnnamedLocalNoLinkageFinder::VisitNestedNameSpecifier(
3180 NestedNameSpecifier *NNS) {
3181 if (NNS->getPrefix() && VisitNestedNameSpecifier(NNS->getPrefix()))
3182 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003183
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003184 switch (NNS->getKind()) {
3185 case NestedNameSpecifier::Identifier:
3186 case NestedNameSpecifier::Namespace:
Douglas Gregor14aba762011-02-24 02:36:08 +00003187 case NestedNameSpecifier::NamespaceAlias:
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003188 case NestedNameSpecifier::Global:
3189 return false;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003190
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003191 case NestedNameSpecifier::TypeSpec:
3192 case NestedNameSpecifier::TypeSpecWithTemplate:
3193 return Visit(QualType(NNS->getAsType(), 0));
3194 }
Fariborz Jahanian7b1ec6c2010-10-13 16:19:16 +00003195 return false;
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003196}
3197
3198
Douglas Gregorc15cb382009-02-09 23:23:08 +00003199/// \brief Check a template argument against its corresponding
3200/// template type parameter.
3201///
3202/// This routine implements the semantics of C++ [temp.arg.type]. It
3203/// returns true if an error occurred, and false otherwise.
Mike Stump1eb44332009-09-09 15:08:12 +00003204bool Sema::CheckTemplateArgument(TemplateTypeParmDecl *Param,
John McCalla93c9342009-12-07 02:54:59 +00003205 TypeSourceInfo *ArgInfo) {
3206 assert(ArgInfo && "invalid TypeSourceInfo");
John McCall833ca992009-10-29 08:12:44 +00003207 QualType Arg = ArgInfo->getType();
Douglas Gregor0fddb972010-05-22 16:17:30 +00003208 SourceRange SR = ArgInfo->getTypeLoc().getSourceRange();
Chandler Carruth17fb8552010-09-03 21:12:34 +00003209
3210 if (Arg->isVariablyModifiedType()) {
3211 return Diag(SR.getBegin(), diag::err_variably_modified_template_arg) << Arg;
Douglas Gregor4b52e252009-12-21 23:17:24 +00003212 } else if (Context.hasSameUnqualifiedType(Arg, Context.OverloadTy)) {
Douglas Gregor4b52e252009-12-21 23:17:24 +00003213 return Diag(SR.getBegin(), diag::err_template_arg_overload_type) << SR;
Douglas Gregorc15cb382009-02-09 23:23:08 +00003214 }
3215
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003216 // C++03 [temp.arg.type]p2:
3217 // A local type, a type with no linkage, an unnamed type or a type
3218 // compounded from any of these types shall not be used as a
3219 // template-argument for a template type-parameter.
3220 //
3221 // C++0x allows these, and even in C++03 we allow them as an extension with
3222 // a warning.
Douglas Gregordb4d4bb2010-10-13 18:05:20 +00003223 if (!LangOpts.CPlusPlus0x && Arg->hasUnnamedOrLocalType()) {
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003224 UnnamedLocalNoLinkageFinder Finder(*this, SR);
3225 (void)Finder.Visit(Context.getCanonicalType(Arg));
3226 }
3227
Douglas Gregorc15cb382009-02-09 23:23:08 +00003228 return false;
3229}
3230
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003231/// \brief Checks whether the given template argument is the address
3232/// of an object or function according to C++ [temp.arg.nontype]p1.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003233static bool
Douglas Gregorb7a09262010-04-01 18:32:35 +00003234CheckTemplateArgumentAddressOfObjectOrFunction(Sema &S,
3235 NonTypeTemplateParmDecl *Param,
3236 QualType ParamType,
3237 Expr *ArgIn,
3238 TemplateArgument &Converted) {
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003239 bool Invalid = false;
Douglas Gregorb7a09262010-04-01 18:32:35 +00003240 Expr *Arg = ArgIn;
3241 QualType ArgType = Arg->getType();
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003242
3243 // See through any implicit casts we added to fix the type.
Eli Friedman73c39ab2009-10-20 08:27:19 +00003244 while (ImplicitCastExpr *Cast = dyn_cast<ImplicitCastExpr>(Arg))
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003245 Arg = Cast->getSubExpr();
3246
3247 // C++ [temp.arg.nontype]p1:
Mike Stump1eb44332009-09-09 15:08:12 +00003248 //
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003249 // A template-argument for a non-type, non-template
3250 // template-parameter shall be one of: [...]
3251 //
3252 // -- the address of an object or function with external
3253 // linkage, including function templates and function
3254 // template-ids but excluding non-static class members,
3255 // expressed as & id-expression where the & is optional if
3256 // the name refers to a function or array, or if the
3257 // corresponding template-parameter is a reference; or
3258 DeclRefExpr *DRE = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00003259
Abramo Bagnara2c5399f2010-09-13 06:06:58 +00003260 // In C++98/03 mode, give an extension warning on any extra parentheses.
3261 // See http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_defects.html#773
3262 bool ExtraParens = false;
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003263 while (ParenExpr *Parens = dyn_cast<ParenExpr>(Arg)) {
Abramo Bagnara2c5399f2010-09-13 06:06:58 +00003264 if (!Invalid && !ExtraParens && !S.getLangOptions().CPlusPlus0x) {
Douglas Gregorb7a09262010-04-01 18:32:35 +00003265 S.Diag(Arg->getSourceRange().getBegin(),
Abramo Bagnara2c5399f2010-09-13 06:06:58 +00003266 diag::ext_template_arg_extra_parens)
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003267 << Arg->getSourceRange();
Abramo Bagnara2c5399f2010-09-13 06:06:58 +00003268 ExtraParens = true;
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003269 }
3270
3271 Arg = Parens->getSubExpr();
3272 }
3273
Douglas Gregorb7a09262010-04-01 18:32:35 +00003274 bool AddressTaken = false;
3275 SourceLocation AddrOpLoc;
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003276 if (UnaryOperator *UnOp = dyn_cast<UnaryOperator>(Arg)) {
John McCall2de56d12010-08-25 11:45:40 +00003277 if (UnOp->getOpcode() == UO_AddrOf) {
Francois Pichet11f98d02011-04-28 05:12:34 +00003278 // Support &__uuidof(class_with_uuid) as a non-type template argument.
3279 // Very common in Microsoft COM headers.
3280 if (S.getLangOptions().Microsoft &&
3281 isa<CXXUuidofExpr>(UnOp->getSubExpr())) {
3282 Converted = TemplateArgument(ArgIn);
3283 return false;
3284 }
3285
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003286 DRE = dyn_cast<DeclRefExpr>(UnOp->getSubExpr());
Douglas Gregorb7a09262010-04-01 18:32:35 +00003287 AddressTaken = true;
3288 AddrOpLoc = UnOp->getOperatorLoc();
3289 }
Francois Picheta343a412011-04-29 09:08:14 +00003290 } else {
3291 if (S.getLangOptions().Microsoft && isa<CXXUuidofExpr>(Arg)) {
3292 Converted = TemplateArgument(ArgIn);
3293 return false;
3294 }
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003295 DRE = dyn_cast<DeclRefExpr>(Arg);
Francois Picheta343a412011-04-29 09:08:14 +00003296 }
Douglas Gregorb7a09262010-04-01 18:32:35 +00003297 if (!DRE) {
Douglas Gregor1a8cf732010-04-14 23:11:21 +00003298 S.Diag(Arg->getLocStart(), diag::err_template_arg_not_decl_ref)
3299 << Arg->getSourceRange();
Douglas Gregorb7a09262010-04-01 18:32:35 +00003300 S.Diag(Param->getLocation(), diag::note_template_param_here);
3301 return true;
3302 }
Chandler Carruth038cc392010-01-31 10:01:20 +00003303
3304 // Stop checking the precise nature of the argument if it is value dependent,
3305 // it should be checked when instantiated.
Douglas Gregorb7a09262010-04-01 18:32:35 +00003306 if (Arg->isValueDependent()) {
John McCall3fa5cae2010-10-26 07:05:15 +00003307 Converted = TemplateArgument(ArgIn);
Chandler Carruth038cc392010-01-31 10:01:20 +00003308 return false;
Douglas Gregorb7a09262010-04-01 18:32:35 +00003309 }
Chandler Carruth038cc392010-01-31 10:01:20 +00003310
Douglas Gregorb7a09262010-04-01 18:32:35 +00003311 if (!isa<ValueDecl>(DRE->getDecl())) {
3312 S.Diag(Arg->getSourceRange().getBegin(),
3313 diag::err_template_arg_not_object_or_func_form)
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003314 << Arg->getSourceRange();
Douglas Gregorb7a09262010-04-01 18:32:35 +00003315 S.Diag(Param->getLocation(), diag::note_template_param_here);
3316 return true;
3317 }
3318
3319 NamedDecl *Entity = 0;
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003320
3321 // Cannot refer to non-static data members
Douglas Gregorb7a09262010-04-01 18:32:35 +00003322 if (FieldDecl *Field = dyn_cast<FieldDecl>(DRE->getDecl())) {
3323 S.Diag(Arg->getSourceRange().getBegin(), diag::err_template_arg_field)
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003324 << Field << Arg->getSourceRange();
Douglas Gregorb7a09262010-04-01 18:32:35 +00003325 S.Diag(Param->getLocation(), diag::note_template_param_here);
3326 return true;
3327 }
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003328
3329 // Cannot refer to non-static member functions
3330 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(DRE->getDecl()))
Douglas Gregorb7a09262010-04-01 18:32:35 +00003331 if (!Method->isStatic()) {
3332 S.Diag(Arg->getSourceRange().getBegin(), diag::err_template_arg_method)
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003333 << Method << Arg->getSourceRange();
Douglas Gregorb7a09262010-04-01 18:32:35 +00003334 S.Diag(Param->getLocation(), diag::note_template_param_here);
3335 return true;
3336 }
Mike Stump1eb44332009-09-09 15:08:12 +00003337
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003338 // Functions must have external linkage.
3339 if (FunctionDecl *Func = dyn_cast<FunctionDecl>(DRE->getDecl())) {
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +00003340 if (!isExternalLinkage(Func->getLinkage())) {
Douglas Gregorb7a09262010-04-01 18:32:35 +00003341 S.Diag(Arg->getSourceRange().getBegin(),
3342 diag::err_template_arg_function_not_extern)
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003343 << Func << Arg->getSourceRange();
Douglas Gregorb7a09262010-04-01 18:32:35 +00003344 S.Diag(Func->getLocation(), diag::note_template_arg_internal_object)
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003345 << true;
3346 return true;
3347 }
3348
3349 // Okay: we've named a function with external linkage.
Douglas Gregor3e00bad2009-02-17 01:05:43 +00003350 Entity = Func;
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003351
Douglas Gregorb7a09262010-04-01 18:32:35 +00003352 // If the template parameter has pointer type, the function decays.
3353 if (ParamType->isPointerType() && !AddressTaken)
3354 ArgType = S.Context.getPointerType(Func->getType());
3355 else if (AddressTaken && ParamType->isReferenceType()) {
3356 // If we originally had an address-of operator, but the
3357 // parameter has reference type, complain and (if things look
3358 // like they will work) drop the address-of operator.
3359 if (!S.Context.hasSameUnqualifiedType(Func->getType(),
3360 ParamType.getNonReferenceType())) {
3361 S.Diag(AddrOpLoc, diag::err_template_arg_address_of_non_pointer)
3362 << ParamType;
3363 S.Diag(Param->getLocation(), diag::note_template_param_here);
3364 return true;
3365 }
3366
3367 S.Diag(AddrOpLoc, diag::err_template_arg_address_of_non_pointer)
3368 << ParamType
3369 << FixItHint::CreateRemoval(AddrOpLoc);
3370 S.Diag(Param->getLocation(), diag::note_template_param_here);
3371
3372 ArgType = Func->getType();
3373 }
3374 } else if (VarDecl *Var = dyn_cast<VarDecl>(DRE->getDecl())) {
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +00003375 if (!isExternalLinkage(Var->getLinkage())) {
Douglas Gregorb7a09262010-04-01 18:32:35 +00003376 S.Diag(Arg->getSourceRange().getBegin(),
3377 diag::err_template_arg_object_not_extern)
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003378 << Var << Arg->getSourceRange();
Douglas Gregorb7a09262010-04-01 18:32:35 +00003379 S.Diag(Var->getLocation(), diag::note_template_arg_internal_object)
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003380 << true;
3381 return true;
3382 }
3383
Douglas Gregorb7a09262010-04-01 18:32:35 +00003384 // A value of reference type is not an object.
3385 if (Var->getType()->isReferenceType()) {
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003386 S.Diag(Arg->getSourceRange().getBegin(),
Douglas Gregorb7a09262010-04-01 18:32:35 +00003387 diag::err_template_arg_reference_var)
3388 << Var->getType() << Arg->getSourceRange();
3389 S.Diag(Param->getLocation(), diag::note_template_param_here);
3390 return true;
3391 }
3392
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003393 // Okay: we've named an object with external linkage
Douglas Gregor3e00bad2009-02-17 01:05:43 +00003394 Entity = Var;
Douglas Gregorb7a09262010-04-01 18:32:35 +00003395
3396 // If the template parameter has pointer type, we must have taken
3397 // the address of this object.
3398 if (ParamType->isReferenceType()) {
3399 if (AddressTaken) {
3400 // If we originally had an address-of operator, but the
3401 // parameter has reference type, complain and (if things look
3402 // like they will work) drop the address-of operator.
3403 if (!S.Context.hasSameUnqualifiedType(Var->getType(),
3404 ParamType.getNonReferenceType())) {
3405 S.Diag(AddrOpLoc, diag::err_template_arg_address_of_non_pointer)
3406 << ParamType;
3407 S.Diag(Param->getLocation(), diag::note_template_param_here);
3408 return true;
3409 }
3410
3411 S.Diag(AddrOpLoc, diag::err_template_arg_address_of_non_pointer)
3412 << ParamType
3413 << FixItHint::CreateRemoval(AddrOpLoc);
3414 S.Diag(Param->getLocation(), diag::note_template_param_here);
3415
3416 ArgType = Var->getType();
3417 }
3418 } else if (!AddressTaken && ParamType->isPointerType()) {
3419 if (Var->getType()->isArrayType()) {
3420 // Array-to-pointer decay.
3421 ArgType = S.Context.getArrayDecayedType(Var->getType());
3422 } else {
3423 // If the template parameter has pointer type but the address of
3424 // this object was not taken, complain and (possibly) recover by
3425 // taking the address of the entity.
3426 ArgType = S.Context.getPointerType(Var->getType());
3427 if (!S.Context.hasSameUnqualifiedType(ArgType, ParamType)) {
3428 S.Diag(Arg->getLocStart(), diag::err_template_arg_not_address_of)
3429 << ParamType;
3430 S.Diag(Param->getLocation(), diag::note_template_param_here);
3431 return true;
3432 }
3433
3434 S.Diag(Arg->getLocStart(), diag::err_template_arg_not_address_of)
3435 << ParamType
3436 << FixItHint::CreateInsertion(Arg->getLocStart(), "&");
3437
3438 S.Diag(Param->getLocation(), diag::note_template_param_here);
3439 }
3440 }
3441 } else {
3442 // We found something else, but we don't know specifically what it is.
3443 S.Diag(Arg->getSourceRange().getBegin(),
3444 diag::err_template_arg_not_object_or_func)
3445 << Arg->getSourceRange();
3446 S.Diag(DRE->getDecl()->getLocation(), diag::note_template_arg_refers_here);
3447 return true;
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003448 }
Mike Stump1eb44332009-09-09 15:08:12 +00003449
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003450 if (ParamType->isPointerType() &&
Douglas Gregorb7a09262010-04-01 18:32:35 +00003451 !ParamType->getAs<PointerType>()->getPointeeType()->isFunctionType() &&
Douglas Gregor14d0aee2011-01-27 00:58:17 +00003452 S.IsQualificationConversion(ArgType, ParamType, false)) {
Douglas Gregorb7a09262010-04-01 18:32:35 +00003453 // For pointer-to-object types, qualification conversions are
3454 // permitted.
3455 } else {
3456 if (const ReferenceType *ParamRef = ParamType->getAs<ReferenceType>()) {
3457 if (!ParamRef->getPointeeType()->isFunctionType()) {
3458 // C++ [temp.arg.nontype]p5b3:
3459 // For a non-type template-parameter of type reference to
3460 // object, no conversions apply. The type referred to by the
3461 // reference may be more cv-qualified than the (otherwise
3462 // identical) type of the template- argument. The
3463 // template-parameter is bound directly to the
3464 // template-argument, which shall be an lvalue.
3465
3466 // FIXME: Other qualifiers?
3467 unsigned ParamQuals = ParamRef->getPointeeType().getCVRQualifiers();
3468 unsigned ArgQuals = ArgType.getCVRQualifiers();
3469
3470 if ((ParamQuals | ArgQuals) != ParamQuals) {
3471 S.Diag(Arg->getSourceRange().getBegin(),
3472 diag::err_template_arg_ref_bind_ignores_quals)
3473 << ParamType << Arg->getType()
3474 << Arg->getSourceRange();
3475 S.Diag(Param->getLocation(), diag::note_template_param_here);
3476 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003477 }
Douglas Gregorb7a09262010-04-01 18:32:35 +00003478 }
3479 }
3480
3481 // At this point, the template argument refers to an object or
3482 // function with external linkage. We now need to check whether the
3483 // argument and parameter types are compatible.
3484 if (!S.Context.hasSameUnqualifiedType(ArgType,
3485 ParamType.getNonReferenceType())) {
3486 // We can't perform this conversion or binding.
3487 if (ParamType->isReferenceType())
3488 S.Diag(Arg->getLocStart(), diag::err_template_arg_no_ref_bind)
3489 << ParamType << Arg->getType() << Arg->getSourceRange();
3490 else
3491 S.Diag(Arg->getLocStart(), diag::err_template_arg_not_convertible)
3492 << Arg->getType() << ParamType << Arg->getSourceRange();
3493 S.Diag(Param->getLocation(), diag::note_template_param_here);
3494 return true;
3495 }
3496 }
3497
3498 // Create the template argument.
3499 Converted = TemplateArgument(Entity->getCanonicalDecl());
Douglas Gregor77c13e02010-04-24 18:20:53 +00003500 S.MarkDeclarationReferenced(Arg->getLocStart(), Entity);
Douglas Gregorb7a09262010-04-01 18:32:35 +00003501 return false;
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003502}
3503
3504/// \brief Checks whether the given template argument is a pointer to
3505/// member constant according to C++ [temp.arg.nontype]p1.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003506bool Sema::CheckTemplateArgumentPointerToMember(Expr *Arg,
Douglas Gregorcaddba02009-11-12 18:38:13 +00003507 TemplateArgument &Converted) {
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003508 bool Invalid = false;
3509
3510 // See through any implicit casts we added to fix the type.
Eli Friedman73c39ab2009-10-20 08:27:19 +00003511 while (ImplicitCastExpr *Cast = dyn_cast<ImplicitCastExpr>(Arg))
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003512 Arg = Cast->getSubExpr();
3513
3514 // C++ [temp.arg.nontype]p1:
Mike Stump1eb44332009-09-09 15:08:12 +00003515 //
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003516 // A template-argument for a non-type, non-template
3517 // template-parameter shall be one of: [...]
3518 //
3519 // -- a pointer to member expressed as described in 5.3.1.
Douglas Gregora2813ce2009-10-23 18:54:35 +00003520 DeclRefExpr *DRE = 0;
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003521
Abramo Bagnara2c5399f2010-09-13 06:06:58 +00003522 // In C++98/03 mode, give an extension warning on any extra parentheses.
3523 // See http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_defects.html#773
3524 bool ExtraParens = false;
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003525 while (ParenExpr *Parens = dyn_cast<ParenExpr>(Arg)) {
Abramo Bagnara2c5399f2010-09-13 06:06:58 +00003526 if (!Invalid && !ExtraParens && !getLangOptions().CPlusPlus0x) {
Mike Stump1eb44332009-09-09 15:08:12 +00003527 Diag(Arg->getSourceRange().getBegin(),
Abramo Bagnara2c5399f2010-09-13 06:06:58 +00003528 diag::ext_template_arg_extra_parens)
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003529 << Arg->getSourceRange();
Abramo Bagnara2c5399f2010-09-13 06:06:58 +00003530 ExtraParens = true;
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003531 }
3532
3533 Arg = Parens->getSubExpr();
3534 }
3535
Douglas Gregorcaddba02009-11-12 18:38:13 +00003536 // A pointer-to-member constant written &Class::member.
3537 if (UnaryOperator *UnOp = dyn_cast<UnaryOperator>(Arg)) {
John McCall2de56d12010-08-25 11:45:40 +00003538 if (UnOp->getOpcode() == UO_AddrOf) {
Douglas Gregora2813ce2009-10-23 18:54:35 +00003539 DRE = dyn_cast<DeclRefExpr>(UnOp->getSubExpr());
3540 if (DRE && !DRE->getQualifier())
3541 DRE = 0;
3542 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003543 }
Douglas Gregorcaddba02009-11-12 18:38:13 +00003544 // A constant of pointer-to-member type.
3545 else if ((DRE = dyn_cast<DeclRefExpr>(Arg))) {
3546 if (ValueDecl *VD = dyn_cast<ValueDecl>(DRE->getDecl())) {
3547 if (VD->getType()->isMemberPointerType()) {
3548 if (isa<NonTypeTemplateParmDecl>(VD) ||
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003549 (isa<VarDecl>(VD) &&
Douglas Gregorcaddba02009-11-12 18:38:13 +00003550 Context.getCanonicalType(VD->getType()).isConstQualified())) {
3551 if (Arg->isTypeDependent() || Arg->isValueDependent())
John McCall3fa5cae2010-10-26 07:05:15 +00003552 Converted = TemplateArgument(Arg);
Douglas Gregorcaddba02009-11-12 18:38:13 +00003553 else
3554 Converted = TemplateArgument(VD->getCanonicalDecl());
3555 return Invalid;
3556 }
3557 }
3558 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003559
Douglas Gregorcaddba02009-11-12 18:38:13 +00003560 DRE = 0;
3561 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003562
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003563 if (!DRE)
3564 return Diag(Arg->getSourceRange().getBegin(),
3565 diag::err_template_arg_not_pointer_to_member_form)
3566 << Arg->getSourceRange();
3567
3568 if (isa<FieldDecl>(DRE->getDecl()) || isa<CXXMethodDecl>(DRE->getDecl())) {
3569 assert((isa<FieldDecl>(DRE->getDecl()) ||
3570 !cast<CXXMethodDecl>(DRE->getDecl())->isStatic()) &&
3571 "Only non-static member pointers can make it here");
3572
3573 // Okay: this is the address of a non-static member, and therefore
3574 // a member pointer constant.
Douglas Gregorcaddba02009-11-12 18:38:13 +00003575 if (Arg->isTypeDependent() || Arg->isValueDependent())
John McCall3fa5cae2010-10-26 07:05:15 +00003576 Converted = TemplateArgument(Arg);
Douglas Gregorcaddba02009-11-12 18:38:13 +00003577 else
3578 Converted = TemplateArgument(DRE->getDecl()->getCanonicalDecl());
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003579 return Invalid;
3580 }
3581
3582 // We found something else, but we don't know specifically what it is.
Mike Stump1eb44332009-09-09 15:08:12 +00003583 Diag(Arg->getSourceRange().getBegin(),
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003584 diag::err_template_arg_not_pointer_to_member_form)
3585 << Arg->getSourceRange();
Mike Stump1eb44332009-09-09 15:08:12 +00003586 Diag(DRE->getDecl()->getLocation(),
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003587 diag::note_template_arg_refers_here);
3588 return true;
3589}
3590
Douglas Gregorc15cb382009-02-09 23:23:08 +00003591/// \brief Check a template argument against its corresponding
3592/// non-type template parameter.
3593///
Douglas Gregor2943aed2009-03-03 04:44:36 +00003594/// This routine implements the semantics of C++ [temp.arg.nontype].
John Wiegley429bb272011-04-08 18:41:53 +00003595/// If an error occurred, it returns ExprError(); otherwise, it
3596/// returns the converted template argument. \p
Douglas Gregor2943aed2009-03-03 04:44:36 +00003597/// InstantiatedParamType is the type of the non-type template
3598/// parameter after it has been instantiated.
John Wiegley429bb272011-04-08 18:41:53 +00003599ExprResult Sema::CheckTemplateArgument(NonTypeTemplateParmDecl *Param,
3600 QualType InstantiatedParamType, Expr *Arg,
3601 TemplateArgument &Converted,
3602 CheckTemplateArgumentKind CTAK) {
Douglas Gregor40808ce2009-03-09 23:48:35 +00003603 SourceLocation StartLoc = Arg->getSourceRange().getBegin();
3604
Douglas Gregor6ae5e662009-02-10 23:36:10 +00003605 // If either the parameter has a dependent type or the argument is
3606 // type-dependent, there's nothing we can check now.
Douglas Gregor40808ce2009-03-09 23:48:35 +00003607 if (InstantiatedParamType->isDependentType() || Arg->isTypeDependent()) {
3608 // FIXME: Produce a cloned, canonical expression?
Douglas Gregor02cbbd22009-06-11 18:10:32 +00003609 Converted = TemplateArgument(Arg);
John Wiegley429bb272011-04-08 18:41:53 +00003610 return Owned(Arg);
Douglas Gregor40808ce2009-03-09 23:48:35 +00003611 }
Douglas Gregor6ae5e662009-02-10 23:36:10 +00003612
3613 // C++ [temp.arg.nontype]p5:
3614 // The following conversions are performed on each expression used
3615 // as a non-type template-argument. If a non-type
3616 // template-argument cannot be converted to the type of the
3617 // corresponding template-parameter then the program is
3618 // ill-formed.
3619 //
3620 // -- for a non-type template-parameter of integral or
3621 // enumeration type, integral promotions (4.5) and integral
3622 // conversions (4.7) are applied.
Douglas Gregor2943aed2009-03-03 04:44:36 +00003623 QualType ParamType = InstantiatedParamType;
Douglas Gregora35284b2009-02-11 00:19:33 +00003624 QualType ArgType = Arg->getType();
Douglas Gregor2ade35e2010-06-16 00:17:44 +00003625 if (ParamType->isIntegralOrEnumerationType()) {
Douglas Gregor6ae5e662009-02-10 23:36:10 +00003626 // C++ [temp.arg.nontype]p1:
3627 // A template-argument for a non-type, non-template
3628 // template-parameter shall be one of:
3629 //
3630 // -- an integral constant-expression of integral or enumeration
3631 // type; or
3632 // -- the name of a non-type template-parameter; or
3633 SourceLocation NonConstantLoc;
Douglas Gregor3e00bad2009-02-17 01:05:43 +00003634 llvm::APSInt Value;
Douglas Gregor2ade35e2010-06-16 00:17:44 +00003635 if (!ArgType->isIntegralOrEnumerationType()) {
Mike Stump1eb44332009-09-09 15:08:12 +00003636 Diag(Arg->getSourceRange().getBegin(),
Douglas Gregor6ae5e662009-02-10 23:36:10 +00003637 diag::err_template_arg_not_integral_or_enumeral)
3638 << ArgType << Arg->getSourceRange();
3639 Diag(Param->getLocation(), diag::note_template_param_here);
John Wiegley429bb272011-04-08 18:41:53 +00003640 return ExprError();
Douglas Gregor6ae5e662009-02-10 23:36:10 +00003641 } else if (!Arg->isValueDependent() &&
Douglas Gregor3e00bad2009-02-17 01:05:43 +00003642 !Arg->isIntegerConstantExpr(Value, Context, &NonConstantLoc)) {
Douglas Gregor6ae5e662009-02-10 23:36:10 +00003643 Diag(NonConstantLoc, diag::err_template_arg_not_ice)
3644 << ArgType << Arg->getSourceRange();
John Wiegley429bb272011-04-08 18:41:53 +00003645 return ExprError();
Douglas Gregor6ae5e662009-02-10 23:36:10 +00003646 }
3647
Douglas Gregor02024a92010-03-28 02:42:43 +00003648 // From here on out, all we care about are the unqualified forms
3649 // of the parameter and argument types.
3650 ParamType = ParamType.getUnqualifiedType();
3651 ArgType = ArgType.getUnqualifiedType();
Douglas Gregor6ae5e662009-02-10 23:36:10 +00003652
3653 // Try to convert the argument to the parameter's type.
Douglas Gregorff524392009-11-04 21:50:46 +00003654 if (Context.hasSameType(ParamType, ArgType)) {
Douglas Gregor6ae5e662009-02-10 23:36:10 +00003655 // Okay: no conversion necessary
Douglas Gregor02024a92010-03-28 02:42:43 +00003656 } else if (CTAK == CTAK_Deduced) {
3657 // C++ [temp.deduct.type]p17:
3658 // If, in the declaration of a function template with a non-type
3659 // template-parameter, the non-type template- parameter is used
3660 // in an expression in the function parameter-list and, if the
3661 // corresponding template-argument is deduced, the
3662 // template-argument type shall match the type of the
3663 // template-parameter exactly, except that a template-argument
3664 // deduced from an array bound may be of any integral type.
3665 Diag(StartLoc, diag::err_deduced_non_type_template_arg_type_mismatch)
3666 << ArgType << ParamType;
3667 Diag(Param->getLocation(), diag::note_template_param_here);
John Wiegley429bb272011-04-08 18:41:53 +00003668 return ExprError();
John McCalldaa8e4e2010-11-15 09:13:47 +00003669 } else if (ParamType->isBooleanType()) {
3670 // This is an integral-to-boolean conversion.
John Wiegley429bb272011-04-08 18:41:53 +00003671 Arg = ImpCastExprToType(Arg, ParamType, CK_IntegralToBoolean).take();
Douglas Gregor6ae5e662009-02-10 23:36:10 +00003672 } else if (IsIntegralPromotion(Arg, ArgType, ParamType) ||
3673 !ParamType->isEnumeralType()) {
3674 // This is an integral promotion or conversion.
John Wiegley429bb272011-04-08 18:41:53 +00003675 Arg = ImpCastExprToType(Arg, ParamType, CK_IntegralCast).take();
Douglas Gregor6ae5e662009-02-10 23:36:10 +00003676 } else {
3677 // We can't perform this conversion.
Mike Stump1eb44332009-09-09 15:08:12 +00003678 Diag(Arg->getSourceRange().getBegin(),
Douglas Gregor6ae5e662009-02-10 23:36:10 +00003679 diag::err_template_arg_not_convertible)
Douglas Gregor2943aed2009-03-03 04:44:36 +00003680 << Arg->getType() << InstantiatedParamType << Arg->getSourceRange();
Douglas Gregor6ae5e662009-02-10 23:36:10 +00003681 Diag(Param->getLocation(), diag::note_template_param_here);
John Wiegley429bb272011-04-08 18:41:53 +00003682 return ExprError();
Douglas Gregor6ae5e662009-02-10 23:36:10 +00003683 }
3684
Douglas Gregorc7469372011-05-04 21:55:00 +00003685 // Add the value of this argument to the list of converted
3686 // arguments. We use the bitwidth and signedness of the template
3687 // parameter.
3688 if (Arg->isValueDependent()) {
3689 // The argument is value-dependent. Create a new
3690 // TemplateArgument with the converted expression.
3691 Converted = TemplateArgument(Arg);
3692 return Owned(Arg);
3693 }
3694
Douglas Gregorf80a9d52009-03-14 00:20:21 +00003695 QualType IntegerType = Context.getCanonicalType(ParamType);
John McCall183700f2009-09-21 23:43:11 +00003696 if (const EnumType *Enum = IntegerType->getAs<EnumType>())
Douglas Gregor02cbbd22009-06-11 18:10:32 +00003697 IntegerType = Context.getCanonicalType(Enum->getDecl()->getIntegerType());
Douglas Gregorf80a9d52009-03-14 00:20:21 +00003698
Douglas Gregorc7469372011-05-04 21:55:00 +00003699 if (ParamType->isBooleanType()) {
3700 // Value must be zero or one.
3701 Value = Value != 0;
3702 unsigned AllowedBits = Context.getTypeSize(IntegerType);
3703 if (Value.getBitWidth() != AllowedBits)
3704 Value = Value.extOrTrunc(AllowedBits);
3705 Value.setIsSigned(IntegerType->isSignedIntegerType());
3706 } else {
Douglas Gregor1a6e0342010-03-26 02:38:37 +00003707 llvm::APSInt OldValue = Value;
Douglas Gregorc7469372011-05-04 21:55:00 +00003708
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003709 // Coerce the template argument's value to the value it will have
Douglas Gregor1a6e0342010-03-26 02:38:37 +00003710 // based on the template parameter's type.
Douglas Gregor0d4fd8e2010-03-26 00:39:40 +00003711 unsigned AllowedBits = Context.getTypeSize(IntegerType);
Douglas Gregor0d4fd8e2010-03-26 00:39:40 +00003712 if (Value.getBitWidth() != AllowedBits)
Jay Foad9f71a8f2010-12-07 08:25:34 +00003713 Value = Value.extOrTrunc(AllowedBits);
Douglas Gregor0d4fd8e2010-03-26 00:39:40 +00003714 Value.setIsSigned(IntegerType->isSignedIntegerType());
Douglas Gregorc7469372011-05-04 21:55:00 +00003715
Douglas Gregor1a6e0342010-03-26 02:38:37 +00003716 // Complain if an unsigned parameter received a negative value.
3717 if (IntegerType->isUnsignedIntegerType()
Douglas Gregorc7469372011-05-04 21:55:00 +00003718 && (OldValue.isSigned() && OldValue.isNegative())) {
Douglas Gregor1a6e0342010-03-26 02:38:37 +00003719 Diag(Arg->getSourceRange().getBegin(), diag::warn_template_arg_negative)
3720 << OldValue.toString(10) << Value.toString(10) << Param->getType()
3721 << Arg->getSourceRange();
3722 Diag(Param->getLocation(), diag::note_template_param_here);
3723 }
Douglas Gregorc7469372011-05-04 21:55:00 +00003724
Douglas Gregor1a6e0342010-03-26 02:38:37 +00003725 // Complain if we overflowed the template parameter's type.
3726 unsigned RequiredBits;
3727 if (IntegerType->isUnsignedIntegerType())
3728 RequiredBits = OldValue.getActiveBits();
3729 else if (OldValue.isUnsigned())
3730 RequiredBits = OldValue.getActiveBits() + 1;
3731 else
3732 RequiredBits = OldValue.getMinSignedBits();
3733 if (RequiredBits > AllowedBits) {
3734 Diag(Arg->getSourceRange().getBegin(),
3735 diag::warn_template_arg_too_large)
3736 << OldValue.toString(10) << Value.toString(10) << Param->getType()
3737 << Arg->getSourceRange();
3738 Diag(Param->getLocation(), diag::note_template_param_here);
3739 }
Douglas Gregorf80a9d52009-03-14 00:20:21 +00003740 }
Douglas Gregor3e00bad2009-02-17 01:05:43 +00003741
John McCall833ca992009-10-29 08:12:44 +00003742 Converted = TemplateArgument(Value,
Mike Stump1eb44332009-09-09 15:08:12 +00003743 ParamType->isEnumeralType() ? ParamType
Douglas Gregor02cbbd22009-06-11 18:10:32 +00003744 : IntegerType);
John Wiegley429bb272011-04-08 18:41:53 +00003745 return Owned(Arg);
Douglas Gregor6ae5e662009-02-10 23:36:10 +00003746 }
Douglas Gregora35284b2009-02-11 00:19:33 +00003747
John McCall6bb80172010-03-30 21:47:33 +00003748 DeclAccessPair FoundResult; // temporary for ResolveOverloadedFunction
3749
Douglas Gregorb7a09262010-04-01 18:32:35 +00003750 // C++0x [temp.arg.nontype]p5 bullets 2, 4 and 6 permit conversion
3751 // from a template argument of type std::nullptr_t to a non-type
3752 // template parameter of type pointer to object, pointer to
3753 // function, or pointer-to-member, respectively.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003754 if (ArgType->isNullPtrType() &&
Douglas Gregorb7a09262010-04-01 18:32:35 +00003755 (ParamType->isPointerType() || ParamType->isMemberPointerType())) {
3756 Converted = TemplateArgument((NamedDecl *)0);
John Wiegley429bb272011-04-08 18:41:53 +00003757 return Owned(Arg);
Douglas Gregorb7a09262010-04-01 18:32:35 +00003758 }
3759
Douglas Gregorb86b0572009-02-11 01:18:59 +00003760 // Handle pointer-to-function, reference-to-function, and
3761 // pointer-to-member-function all in (roughly) the same way.
3762 if (// -- For a non-type template-parameter of type pointer to
3763 // function, only the function-to-pointer conversion (4.3) is
3764 // applied. If the template-argument represents a set of
3765 // overloaded functions (or a pointer to such), the matching
3766 // function is selected from the set (13.4).
3767 (ParamType->isPointerType() &&
Ted Kremenek6217b802009-07-29 21:53:49 +00003768 ParamType->getAs<PointerType>()->getPointeeType()->isFunctionType()) ||
Douglas Gregorb86b0572009-02-11 01:18:59 +00003769 // -- For a non-type template-parameter of type reference to
3770 // function, no conversions apply. If the template-argument
3771 // represents a set of overloaded functions, the matching
3772 // function is selected from the set (13.4).
3773 (ParamType->isReferenceType() &&
Ted Kremenek6217b802009-07-29 21:53:49 +00003774 ParamType->getAs<ReferenceType>()->getPointeeType()->isFunctionType()) ||
Douglas Gregorb86b0572009-02-11 01:18:59 +00003775 // -- For a non-type template-parameter of type pointer to
3776 // member function, no conversions apply. If the
3777 // template-argument represents a set of overloaded member
3778 // functions, the matching member function is selected from
3779 // the set (13.4).
3780 (ParamType->isMemberPointerType() &&
Ted Kremenek6217b802009-07-29 21:53:49 +00003781 ParamType->getAs<MemberPointerType>()->getPointeeType()
Douglas Gregorb86b0572009-02-11 01:18:59 +00003782 ->isFunctionType())) {
Douglas Gregorb7a09262010-04-01 18:32:35 +00003783
Douglas Gregor1a8cf732010-04-14 23:11:21 +00003784 if (Arg->getType() == Context.OverloadTy) {
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003785 if (FunctionDecl *Fn = ResolveAddressOfOverloadedFunction(Arg, ParamType,
Douglas Gregor1a8cf732010-04-14 23:11:21 +00003786 true,
3787 FoundResult)) {
3788 if (DiagnoseUseOfDecl(Fn, Arg->getSourceRange().getBegin()))
John Wiegley429bb272011-04-08 18:41:53 +00003789 return ExprError();
Douglas Gregor1a8cf732010-04-14 23:11:21 +00003790
3791 Arg = FixOverloadedFunctionReference(Arg, FoundResult, Fn);
3792 ArgType = Arg->getType();
3793 } else
John Wiegley429bb272011-04-08 18:41:53 +00003794 return ExprError();
Douglas Gregora35284b2009-02-11 00:19:33 +00003795 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003796
John Wiegley429bb272011-04-08 18:41:53 +00003797 if (!ParamType->isMemberPointerType()) {
3798 if (CheckTemplateArgumentAddressOfObjectOrFunction(*this, Param,
3799 ParamType,
3800 Arg, Converted))
3801 return ExprError();
3802 return Owned(Arg);
3803 }
Douglas Gregorb7a09262010-04-01 18:32:35 +00003804
Douglas Gregor14d0aee2011-01-27 00:58:17 +00003805 if (IsQualificationConversion(ArgType, ParamType.getNonReferenceType(),
3806 false)) {
John Wiegley429bb272011-04-08 18:41:53 +00003807 Arg = ImpCastExprToType(Arg, ParamType, CK_NoOp, CastCategory(Arg)).take();
Douglas Gregorb7a09262010-04-01 18:32:35 +00003808 } else if (!Context.hasSameUnqualifiedType(ArgType,
3809 ParamType.getNonReferenceType())) {
Douglas Gregora35284b2009-02-11 00:19:33 +00003810 // We can't perform this conversion.
Mike Stump1eb44332009-09-09 15:08:12 +00003811 Diag(Arg->getSourceRange().getBegin(),
Douglas Gregora35284b2009-02-11 00:19:33 +00003812 diag::err_template_arg_not_convertible)
Douglas Gregor2943aed2009-03-03 04:44:36 +00003813 << Arg->getType() << InstantiatedParamType << Arg->getSourceRange();
Douglas Gregora35284b2009-02-11 00:19:33 +00003814 Diag(Param->getLocation(), diag::note_template_param_here);
John Wiegley429bb272011-04-08 18:41:53 +00003815 return ExprError();
Douglas Gregora35284b2009-02-11 00:19:33 +00003816 }
Mike Stump1eb44332009-09-09 15:08:12 +00003817
John Wiegley429bb272011-04-08 18:41:53 +00003818 if (CheckTemplateArgumentPointerToMember(Arg, Converted))
3819 return ExprError();
3820 return Owned(Arg);
Douglas Gregora35284b2009-02-11 00:19:33 +00003821 }
3822
Chris Lattnerfe90de72009-02-20 21:37:53 +00003823 if (ParamType->isPointerType()) {
Douglas Gregorb86b0572009-02-11 01:18:59 +00003824 // -- for a non-type template-parameter of type pointer to
3825 // object, qualification conversions (4.4) and the
3826 // array-to-pointer conversion (4.2) are applied.
Sebastian Redl6e8ed162009-05-10 18:38:11 +00003827 // C++0x also allows a value of std::nullptr_t.
Eli Friedman13578692010-08-05 02:49:48 +00003828 assert(ParamType->getPointeeType()->isIncompleteOrObjectType() &&
Douglas Gregorb86b0572009-02-11 01:18:59 +00003829 "Only object pointers allowed here");
Douglas Gregorf684e6e2009-02-11 00:44:29 +00003830
John Wiegley429bb272011-04-08 18:41:53 +00003831 if (CheckTemplateArgumentAddressOfObjectOrFunction(*this, Param,
3832 ParamType,
3833 Arg, Converted))
3834 return ExprError();
3835 return Owned(Arg);
Douglas Gregorf684e6e2009-02-11 00:44:29 +00003836 }
Mike Stump1eb44332009-09-09 15:08:12 +00003837
Ted Kremenek6217b802009-07-29 21:53:49 +00003838 if (const ReferenceType *ParamRefType = ParamType->getAs<ReferenceType>()) {
Douglas Gregorb86b0572009-02-11 01:18:59 +00003839 // -- For a non-type template-parameter of type reference to
3840 // object, no conversions apply. The type referred to by the
3841 // reference may be more cv-qualified than the (otherwise
3842 // identical) type of the template-argument. The
3843 // template-parameter is bound directly to the
3844 // template-argument, which must be an lvalue.
Eli Friedman13578692010-08-05 02:49:48 +00003845 assert(ParamRefType->getPointeeType()->isIncompleteOrObjectType() &&
Douglas Gregorb86b0572009-02-11 01:18:59 +00003846 "Only object references allowed here");
Douglas Gregorf684e6e2009-02-11 00:44:29 +00003847
Douglas Gregor1a8cf732010-04-14 23:11:21 +00003848 if (Arg->getType() == Context.OverloadTy) {
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003849 if (FunctionDecl *Fn = ResolveAddressOfOverloadedFunction(Arg,
3850 ParamRefType->getPointeeType(),
Douglas Gregor1a8cf732010-04-14 23:11:21 +00003851 true,
3852 FoundResult)) {
3853 if (DiagnoseUseOfDecl(Fn, Arg->getSourceRange().getBegin()))
John Wiegley429bb272011-04-08 18:41:53 +00003854 return ExprError();
Douglas Gregor1a8cf732010-04-14 23:11:21 +00003855
3856 Arg = FixOverloadedFunctionReference(Arg, FoundResult, Fn);
3857 ArgType = Arg->getType();
3858 } else
John Wiegley429bb272011-04-08 18:41:53 +00003859 return ExprError();
Douglas Gregorb86b0572009-02-11 01:18:59 +00003860 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003861
John Wiegley429bb272011-04-08 18:41:53 +00003862 if (CheckTemplateArgumentAddressOfObjectOrFunction(*this, Param,
3863 ParamType,
3864 Arg, Converted))
3865 return ExprError();
3866 return Owned(Arg);
Douglas Gregorb86b0572009-02-11 01:18:59 +00003867 }
Douglas Gregor658bbb52009-02-11 16:16:59 +00003868
3869 // -- For a non-type template-parameter of type pointer to data
3870 // member, qualification conversions (4.4) are applied.
3871 assert(ParamType->isMemberPointerType() && "Only pointers to members remain");
3872
Douglas Gregor8e6563b2009-02-11 18:22:40 +00003873 if (Context.hasSameUnqualifiedType(ParamType, ArgType)) {
Douglas Gregor658bbb52009-02-11 16:16:59 +00003874 // Types match exactly: nothing more to do here.
Douglas Gregor14d0aee2011-01-27 00:58:17 +00003875 } else if (IsQualificationConversion(ArgType, ParamType, false)) {
John Wiegley429bb272011-04-08 18:41:53 +00003876 Arg = ImpCastExprToType(Arg, ParamType, CK_NoOp, CastCategory(Arg)).take();
Douglas Gregor658bbb52009-02-11 16:16:59 +00003877 } else {
3878 // We can't perform this conversion.
Mike Stump1eb44332009-09-09 15:08:12 +00003879 Diag(Arg->getSourceRange().getBegin(),
Douglas Gregor658bbb52009-02-11 16:16:59 +00003880 diag::err_template_arg_not_convertible)
Douglas Gregor2943aed2009-03-03 04:44:36 +00003881 << Arg->getType() << InstantiatedParamType << Arg->getSourceRange();
Douglas Gregor658bbb52009-02-11 16:16:59 +00003882 Diag(Param->getLocation(), diag::note_template_param_here);
John Wiegley429bb272011-04-08 18:41:53 +00003883 return ExprError();
Douglas Gregor658bbb52009-02-11 16:16:59 +00003884 }
3885
John Wiegley429bb272011-04-08 18:41:53 +00003886 if (CheckTemplateArgumentPointerToMember(Arg, Converted))
3887 return ExprError();
3888 return Owned(Arg);
Douglas Gregorc15cb382009-02-09 23:23:08 +00003889}
3890
3891/// \brief Check a template argument against its corresponding
3892/// template template parameter.
3893///
3894/// This routine implements the semantics of C++ [temp.arg.template].
3895/// It returns true if an error occurred, and false otherwise.
3896bool Sema::CheckTemplateArgument(TemplateTemplateParmDecl *Param,
Douglas Gregor788cd062009-11-11 01:00:40 +00003897 const TemplateArgumentLoc &Arg) {
3898 TemplateName Name = Arg.getArgument().getAsTemplate();
3899 TemplateDecl *Template = Name.getAsTemplateDecl();
3900 if (!Template) {
3901 // Any dependent template name is fine.
3902 assert(Name.isDependent() && "Non-dependent template isn't a declaration?");
3903 return false;
3904 }
Douglas Gregordd0574e2009-02-10 00:24:35 +00003905
Richard Smith3e4c6c42011-05-05 21:57:07 +00003906 // C++0x [temp.arg.template]p1:
Douglas Gregordd0574e2009-02-10 00:24:35 +00003907 // A template-argument for a template template-parameter shall be
Richard Smith3e4c6c42011-05-05 21:57:07 +00003908 // the name of a class template or an alias template, expressed as an
3909 // id-expression. When the template-argument names a class template, only
Douglas Gregordd0574e2009-02-10 00:24:35 +00003910 // primary class templates are considered when matching the
3911 // template template argument with the corresponding parameter;
3912 // partial specializations are not considered even if their
3913 // parameter lists match that of the template template parameter.
Douglas Gregorba1ecb52009-06-12 19:43:02 +00003914 //
3915 // Note that we also allow template template parameters here, which
3916 // will happen when we are dealing with, e.g., class template
3917 // partial specializations.
Mike Stump1eb44332009-09-09 15:08:12 +00003918 if (!isa<ClassTemplateDecl>(Template) &&
Richard Smith3e4c6c42011-05-05 21:57:07 +00003919 !isa<TemplateTemplateParmDecl>(Template) &&
3920 !isa<TypeAliasTemplateDecl>(Template)) {
Mike Stump1eb44332009-09-09 15:08:12 +00003921 assert(isa<FunctionTemplateDecl>(Template) &&
Douglas Gregordd0574e2009-02-10 00:24:35 +00003922 "Only function templates are possible here");
Douglas Gregor788cd062009-11-11 01:00:40 +00003923 Diag(Arg.getLocation(), diag::err_template_arg_not_class_template);
Douglas Gregore53060f2009-06-25 22:08:12 +00003924 Diag(Template->getLocation(), diag::note_template_arg_refers_here_func)
Douglas Gregordd0574e2009-02-10 00:24:35 +00003925 << Template;
3926 }
3927
3928 return !TemplateParameterListsAreEqual(Template->getTemplateParameters(),
3929 Param->getTemplateParameters(),
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003930 true,
Douglas Gregorfb898e12009-11-12 16:20:59 +00003931 TPL_TemplateTemplateArgumentMatch,
Douglas Gregor788cd062009-11-11 01:00:40 +00003932 Arg.getLocation());
Douglas Gregorc15cb382009-02-09 23:23:08 +00003933}
3934
Douglas Gregor02024a92010-03-28 02:42:43 +00003935/// \brief Given a non-type template argument that refers to a
3936/// declaration and the type of its corresponding non-type template
3937/// parameter, produce an expression that properly refers to that
3938/// declaration.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003939ExprResult
Douglas Gregor02024a92010-03-28 02:42:43 +00003940Sema::BuildExpressionFromDeclTemplateArgument(const TemplateArgument &Arg,
3941 QualType ParamType,
3942 SourceLocation Loc) {
3943 assert(Arg.getKind() == TemplateArgument::Declaration &&
3944 "Only declaration template arguments permitted here");
3945 ValueDecl *VD = cast<ValueDecl>(Arg.getAsDecl());
3946
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003947 if (VD->getDeclContext()->isRecord() &&
Douglas Gregor02024a92010-03-28 02:42:43 +00003948 (isa<CXXMethodDecl>(VD) || isa<FieldDecl>(VD))) {
3949 // If the value is a class member, we might have a pointer-to-member.
3950 // Determine whether the non-type template template parameter is of
3951 // pointer-to-member type. If so, we need to build an appropriate
3952 // expression for a pointer-to-member, since a "normal" DeclRefExpr
3953 // would refer to the member itself.
3954 if (ParamType->isMemberPointerType()) {
3955 QualType ClassType
3956 = Context.getTypeDeclType(cast<RecordDecl>(VD->getDeclContext()));
3957 NestedNameSpecifier *Qualifier
John McCall9ae2f072010-08-23 23:25:46 +00003958 = NestedNameSpecifier::Create(Context, 0, false,
3959 ClassType.getTypePtr());
Douglas Gregor02024a92010-03-28 02:42:43 +00003960 CXXScopeSpec SS;
Douglas Gregorc34348a2011-02-24 17:54:50 +00003961 SS.MakeTrivial(Context, Qualifier, Loc);
John McCalldfa1edb2010-11-23 20:48:44 +00003962
3963 // The actual value-ness of this is unimportant, but for
3964 // internal consistency's sake, references to instance methods
3965 // are r-values.
3966 ExprValueKind VK = VK_LValue;
3967 if (isa<CXXMethodDecl>(VD) && cast<CXXMethodDecl>(VD)->isInstance())
3968 VK = VK_RValue;
3969
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003970 ExprResult RefExpr = BuildDeclRefExpr(VD,
John McCallf89e55a2010-11-18 06:31:45 +00003971 VD->getType().getNonReferenceType(),
John McCalldfa1edb2010-11-23 20:48:44 +00003972 VK,
John McCallf89e55a2010-11-18 06:31:45 +00003973 Loc,
3974 &SS);
Douglas Gregor02024a92010-03-28 02:42:43 +00003975 if (RefExpr.isInvalid())
3976 return ExprError();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003977
John McCall2de56d12010-08-25 11:45:40 +00003978 RefExpr = CreateBuiltinUnaryOp(Loc, UO_AddrOf, RefExpr.get());
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003979
Douglas Gregorc0c83002010-04-30 21:46:38 +00003980 // We might need to perform a trailing qualification conversion, since
3981 // the element type on the parameter could be more qualified than the
3982 // element type in the expression we constructed.
3983 if (IsQualificationConversion(((Expr*) RefExpr.get())->getType(),
John Wiegley429bb272011-04-08 18:41:53 +00003984 ParamType.getUnqualifiedType(), false))
3985 RefExpr = ImpCastExprToType(RefExpr.take(), ParamType.getUnqualifiedType(), CK_NoOp);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003986
Douglas Gregor02024a92010-03-28 02:42:43 +00003987 assert(!RefExpr.isInvalid() &&
3988 Context.hasSameType(((Expr*) RefExpr.get())->getType(),
Douglas Gregorc0c83002010-04-30 21:46:38 +00003989 ParamType.getUnqualifiedType()));
Douglas Gregor02024a92010-03-28 02:42:43 +00003990 return move(RefExpr);
3991 }
3992 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003993
Douglas Gregor02024a92010-03-28 02:42:43 +00003994 QualType T = VD->getType().getNonReferenceType();
3995 if (ParamType->isPointerType()) {
Douglas Gregorb7a09262010-04-01 18:32:35 +00003996 // When the non-type template parameter is a pointer, take the
3997 // address of the declaration.
John McCallf89e55a2010-11-18 06:31:45 +00003998 ExprResult RefExpr = BuildDeclRefExpr(VD, T, VK_LValue, Loc);
Douglas Gregor02024a92010-03-28 02:42:43 +00003999 if (RefExpr.isInvalid())
4000 return ExprError();
Douglas Gregorb7a09262010-04-01 18:32:35 +00004001
4002 if (T->isFunctionType() || T->isArrayType()) {
4003 // Decay functions and arrays.
John Wiegley429bb272011-04-08 18:41:53 +00004004 RefExpr = DefaultFunctionArrayConversion(RefExpr.take());
4005 if (RefExpr.isInvalid())
4006 return ExprError();
Douglas Gregorb7a09262010-04-01 18:32:35 +00004007
4008 return move(RefExpr);
Douglas Gregor02024a92010-03-28 02:42:43 +00004009 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004010
Douglas Gregorb7a09262010-04-01 18:32:35 +00004011 // Take the address of everything else
John McCall2de56d12010-08-25 11:45:40 +00004012 return CreateBuiltinUnaryOp(Loc, UO_AddrOf, RefExpr.get());
Douglas Gregor02024a92010-03-28 02:42:43 +00004013 }
4014
John McCallf89e55a2010-11-18 06:31:45 +00004015 ExprValueKind VK = VK_RValue;
4016
Douglas Gregor02024a92010-03-28 02:42:43 +00004017 // If the non-type template parameter has reference type, qualify the
4018 // resulting declaration reference with the extra qualifiers on the
4019 // type that the reference refers to.
John McCallf89e55a2010-11-18 06:31:45 +00004020 if (const ReferenceType *TargetRef = ParamType->getAs<ReferenceType>()) {
4021 VK = VK_LValue;
4022 T = Context.getQualifiedType(T,
4023 TargetRef->getPointeeType().getQualifiers());
4024 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004025
John McCallf89e55a2010-11-18 06:31:45 +00004026 return BuildDeclRefExpr(VD, T, VK, Loc);
Douglas Gregor02024a92010-03-28 02:42:43 +00004027}
4028
4029/// \brief Construct a new expression that refers to the given
4030/// integral template argument with the given source-location
4031/// information.
4032///
4033/// This routine takes care of the mapping from an integral template
4034/// argument (which may have any integral type) to the appropriate
4035/// literal value.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004036ExprResult
Douglas Gregor02024a92010-03-28 02:42:43 +00004037Sema::BuildExpressionFromIntegralTemplateArgument(const TemplateArgument &Arg,
4038 SourceLocation Loc) {
4039 assert(Arg.getKind() == TemplateArgument::Integral &&
Douglas Gregord3731192011-01-10 07:32:04 +00004040 "Operation is only valid for integral template arguments");
Douglas Gregor02024a92010-03-28 02:42:43 +00004041 QualType T = Arg.getIntegralType();
4042 if (T->isCharType() || T->isWideCharType())
4043 return Owned(new (Context) CharacterLiteral(
4044 Arg.getAsIntegral()->getZExtValue(),
Chris Lattner223de242011-04-25 20:37:58 +00004045 T->isWideCharType(), T, Loc));
Douglas Gregor02024a92010-03-28 02:42:43 +00004046 if (T->isBooleanType())
4047 return Owned(new (Context) CXXBoolLiteralExpr(
4048 Arg.getAsIntegral()->getBoolValue(),
Chris Lattner223de242011-04-25 20:37:58 +00004049 T, Loc));
Douglas Gregor02024a92010-03-28 02:42:43 +00004050
Chris Lattner223de242011-04-25 20:37:58 +00004051 // If this is an enum type that we're instantiating, we need to use an integer
4052 // type the same size as the enumerator. We don't want to build an
4053 // IntegerLiteral with enum type.
Peter Collingbournefb7b3632010-12-15 15:06:14 +00004054 QualType BT;
4055 if (const EnumType *ET = T->getAs<EnumType>())
Chris Lattner223de242011-04-25 20:37:58 +00004056 BT = ET->getDecl()->getIntegerType();
Peter Collingbournefb7b3632010-12-15 15:06:14 +00004057 else
4058 BT = T;
4059
4060 Expr *E = IntegerLiteral::Create(Context, *Arg.getAsIntegral(), BT, Loc);
Douglas Gregor8f5667d2011-02-18 02:12:44 +00004061 if (T->isEnumeralType()) {
4062 // FIXME: This is a hack. We need a better way to handle substituted
4063 // non-type template parameters.
Chris Lattner223de242011-04-25 20:37:58 +00004064 E = CStyleCastExpr::Create(Context, T, VK_RValue, CK_IntegralCast, E, 0,
4065 Context.getTrivialTypeSourceInfo(T, Loc),
4066 Loc, Loc);
Douglas Gregor8f5667d2011-02-18 02:12:44 +00004067 }
4068
Peter Collingbournefb7b3632010-12-15 15:06:14 +00004069 return Owned(E);
Douglas Gregor02024a92010-03-28 02:42:43 +00004070}
4071
Douglas Gregorab7ddf02011-01-12 23:45:44 +00004072/// \brief Match two template parameters within template parameter lists.
4073static bool MatchTemplateParameterKind(Sema &S, NamedDecl *New, NamedDecl *Old,
4074 bool Complain,
4075 Sema::TemplateParameterListEqualKind Kind,
4076 SourceLocation TemplateArgLoc) {
4077 // Check the actual kind (type, non-type, template).
4078 if (Old->getKind() != New->getKind()) {
4079 if (Complain) {
4080 unsigned NextDiag = diag::err_template_param_different_kind;
4081 if (TemplateArgLoc.isValid()) {
4082 S.Diag(TemplateArgLoc, diag::err_template_arg_template_params_mismatch);
4083 NextDiag = diag::note_template_param_different_kind;
4084 }
4085 S.Diag(New->getLocation(), NextDiag)
4086 << (Kind != Sema::TPL_TemplateMatch);
4087 S.Diag(Old->getLocation(), diag::note_template_prev_declaration)
4088 << (Kind != Sema::TPL_TemplateMatch);
4089 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004090
Douglas Gregorab7ddf02011-01-12 23:45:44 +00004091 return false;
4092 }
4093
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004094 // Check that both are parameter packs are neither are parameter packs.
4095 // However, if we are matching a template template argument to a
Douglas Gregora0347822011-01-13 00:08:50 +00004096 // template template parameter, the template template parameter can have
4097 // a parameter pack where the template template argument does not.
4098 if (Old->isTemplateParameterPack() != New->isTemplateParameterPack() &&
4099 !(Kind == Sema::TPL_TemplateTemplateArgumentMatch &&
4100 Old->isTemplateParameterPack())) {
Douglas Gregorab7ddf02011-01-12 23:45:44 +00004101 if (Complain) {
4102 unsigned NextDiag = diag::err_template_parameter_pack_non_pack;
4103 if (TemplateArgLoc.isValid()) {
4104 S.Diag(TemplateArgLoc,
4105 diag::err_template_arg_template_params_mismatch);
4106 NextDiag = diag::note_template_parameter_pack_non_pack;
4107 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004108
Douglas Gregorab7ddf02011-01-12 23:45:44 +00004109 unsigned ParamKind = isa<TemplateTypeParmDecl>(New)? 0
4110 : isa<NonTypeTemplateParmDecl>(New)? 1
4111 : 2;
4112 S.Diag(New->getLocation(), NextDiag)
4113 << ParamKind << New->isParameterPack();
4114 S.Diag(Old->getLocation(), diag::note_template_parameter_pack_here)
4115 << ParamKind << Old->isParameterPack();
4116 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004117
Douglas Gregorab7ddf02011-01-12 23:45:44 +00004118 return false;
4119 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004120
Douglas Gregorab7ddf02011-01-12 23:45:44 +00004121 // For non-type template parameters, check the type of the parameter.
4122 if (NonTypeTemplateParmDecl *OldNTTP
4123 = dyn_cast<NonTypeTemplateParmDecl>(Old)) {
4124 NonTypeTemplateParmDecl *NewNTTP = cast<NonTypeTemplateParmDecl>(New);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004125
Douglas Gregorab7ddf02011-01-12 23:45:44 +00004126 // If we are matching a template template argument to a template
4127 // template parameter and one of the non-type template parameter types
4128 // is dependent, then we must wait until template instantiation time
4129 // to actually compare the arguments.
4130 if (Kind == Sema::TPL_TemplateTemplateArgumentMatch &&
4131 (OldNTTP->getType()->isDependentType() ||
4132 NewNTTP->getType()->isDependentType()))
4133 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004134
Douglas Gregorab7ddf02011-01-12 23:45:44 +00004135 if (!S.Context.hasSameType(OldNTTP->getType(), NewNTTP->getType())) {
4136 if (Complain) {
4137 unsigned NextDiag = diag::err_template_nontype_parm_different_type;
4138 if (TemplateArgLoc.isValid()) {
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004139 S.Diag(TemplateArgLoc,
Douglas Gregorab7ddf02011-01-12 23:45:44 +00004140 diag::err_template_arg_template_params_mismatch);
4141 NextDiag = diag::note_template_nontype_parm_different_type;
4142 }
4143 S.Diag(NewNTTP->getLocation(), NextDiag)
4144 << NewNTTP->getType()
4145 << (Kind != Sema::TPL_TemplateMatch);
4146 S.Diag(OldNTTP->getLocation(),
4147 diag::note_template_nontype_parm_prev_declaration)
4148 << OldNTTP->getType();
4149 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004150
Douglas Gregorab7ddf02011-01-12 23:45:44 +00004151 return false;
4152 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004153
Douglas Gregorab7ddf02011-01-12 23:45:44 +00004154 return true;
4155 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004156
Douglas Gregorab7ddf02011-01-12 23:45:44 +00004157 // For template template parameters, check the template parameter types.
4158 // The template parameter lists of template template
4159 // parameters must agree.
4160 if (TemplateTemplateParmDecl *OldTTP
4161 = dyn_cast<TemplateTemplateParmDecl>(Old)) {
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004162 TemplateTemplateParmDecl *NewTTP = cast<TemplateTemplateParmDecl>(New);
Douglas Gregorab7ddf02011-01-12 23:45:44 +00004163 return S.TemplateParameterListsAreEqual(NewTTP->getTemplateParameters(),
4164 OldTTP->getTemplateParameters(),
4165 Complain,
4166 (Kind == Sema::TPL_TemplateMatch
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004167 ? Sema::TPL_TemplateTemplateParmMatch
Douglas Gregorab7ddf02011-01-12 23:45:44 +00004168 : Kind),
4169 TemplateArgLoc);
4170 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004171
Douglas Gregorab7ddf02011-01-12 23:45:44 +00004172 return true;
4173}
Douglas Gregor02024a92010-03-28 02:42:43 +00004174
Douglas Gregora0347822011-01-13 00:08:50 +00004175/// \brief Diagnose a known arity mismatch when comparing template argument
4176/// lists.
4177static
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004178void DiagnoseTemplateParameterListArityMismatch(Sema &S,
Douglas Gregora0347822011-01-13 00:08:50 +00004179 TemplateParameterList *New,
4180 TemplateParameterList *Old,
4181 Sema::TemplateParameterListEqualKind Kind,
4182 SourceLocation TemplateArgLoc) {
4183 unsigned NextDiag = diag::err_template_param_list_different_arity;
4184 if (TemplateArgLoc.isValid()) {
4185 S.Diag(TemplateArgLoc, diag::err_template_arg_template_params_mismatch);
4186 NextDiag = diag::note_template_param_list_different_arity;
4187 }
4188 S.Diag(New->getTemplateLoc(), NextDiag)
4189 << (New->size() > Old->size())
4190 << (Kind != Sema::TPL_TemplateMatch)
4191 << SourceRange(New->getTemplateLoc(), New->getRAngleLoc());
4192 S.Diag(Old->getTemplateLoc(), diag::note_template_prev_declaration)
4193 << (Kind != Sema::TPL_TemplateMatch)
4194 << SourceRange(Old->getTemplateLoc(), Old->getRAngleLoc());
4195}
4196
Douglas Gregorddc29e12009-02-06 22:42:48 +00004197/// \brief Determine whether the given template parameter lists are
4198/// equivalent.
4199///
Mike Stump1eb44332009-09-09 15:08:12 +00004200/// \param New The new template parameter list, typically written in the
Douglas Gregorddc29e12009-02-06 22:42:48 +00004201/// source code as part of a new template declaration.
4202///
4203/// \param Old The old template parameter list, typically found via
4204/// name lookup of the template declared with this template parameter
4205/// list.
4206///
4207/// \param Complain If true, this routine will produce a diagnostic if
4208/// the template parameter lists are not equivalent.
4209///
Douglas Gregorfb898e12009-11-12 16:20:59 +00004210/// \param Kind describes how we are to match the template parameter lists.
Douglas Gregordd0574e2009-02-10 00:24:35 +00004211///
4212/// \param TemplateArgLoc If this source location is valid, then we
4213/// are actually checking the template parameter list of a template
4214/// argument (New) against the template parameter list of its
4215/// corresponding template template parameter (Old). We produce
4216/// slightly different diagnostics in this scenario.
4217///
Douglas Gregorddc29e12009-02-06 22:42:48 +00004218/// \returns True if the template parameter lists are equal, false
4219/// otherwise.
Mike Stump1eb44332009-09-09 15:08:12 +00004220bool
Douglas Gregorddc29e12009-02-06 22:42:48 +00004221Sema::TemplateParameterListsAreEqual(TemplateParameterList *New,
4222 TemplateParameterList *Old,
4223 bool Complain,
Douglas Gregorfb898e12009-11-12 16:20:59 +00004224 TemplateParameterListEqualKind Kind,
Douglas Gregordd0574e2009-02-10 00:24:35 +00004225 SourceLocation TemplateArgLoc) {
Douglas Gregora0347822011-01-13 00:08:50 +00004226 if (Old->size() != New->size() && Kind != TPL_TemplateTemplateArgumentMatch) {
4227 if (Complain)
4228 DiagnoseTemplateParameterListArityMismatch(*this, New, Old, Kind,
4229 TemplateArgLoc);
Douglas Gregorddc29e12009-02-06 22:42:48 +00004230
4231 return false;
4232 }
4233
Douglas Gregorab7ddf02011-01-12 23:45:44 +00004234 // C++0x [temp.arg.template]p3:
4235 // A template-argument matches a template template-parameter (call it P)
NAKAMURA Takumi00995302011-01-27 07:09:49 +00004236 // when each of the template parameters in the template-parameter-list of
Richard Smith3e4c6c42011-05-05 21:57:07 +00004237 // the template-argument's corresponding class template or alias template
NAKAMURA Takumi00995302011-01-27 07:09:49 +00004238 // (call it A) matches the corresponding template parameter in the
Douglas Gregora0347822011-01-13 00:08:50 +00004239 // template-parameter-list of P. [...]
4240 TemplateParameterList::iterator NewParm = New->begin();
4241 TemplateParameterList::iterator NewParmEnd = New->end();
Douglas Gregorddc29e12009-02-06 22:42:48 +00004242 for (TemplateParameterList::iterator OldParm = Old->begin(),
Douglas Gregora0347822011-01-13 00:08:50 +00004243 OldParmEnd = Old->end();
4244 OldParm != OldParmEnd; ++OldParm) {
Douglas Gregorc421f542011-01-13 18:47:47 +00004245 if (Kind != TPL_TemplateTemplateArgumentMatch ||
4246 !(*OldParm)->isTemplateParameterPack()) {
Douglas Gregora0347822011-01-13 00:08:50 +00004247 if (NewParm == NewParmEnd) {
4248 if (Complain)
4249 DiagnoseTemplateParameterListArityMismatch(*this, New, Old, Kind,
4250 TemplateArgLoc);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004251
Douglas Gregora0347822011-01-13 00:08:50 +00004252 return false;
4253 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004254
Douglas Gregora0347822011-01-13 00:08:50 +00004255 if (!MatchTemplateParameterKind(*this, *NewParm, *OldParm, Complain,
4256 Kind, TemplateArgLoc))
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004257 return false;
4258
Douglas Gregora0347822011-01-13 00:08:50 +00004259 ++NewParm;
4260 continue;
4261 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004262
Douglas Gregora0347822011-01-13 00:08:50 +00004263 // C++0x [temp.arg.template]p3:
NAKAMURA Takumi00995302011-01-27 07:09:49 +00004264 // [...] When P's template- parameter-list contains a template parameter
4265 // pack (14.5.3), the template parameter pack will match zero or more
4266 // template parameters or template parameter packs in the
Douglas Gregora0347822011-01-13 00:08:50 +00004267 // template-parameter-list of A with the same type and form as the
4268 // template parameter pack in P (ignoring whether those template
4269 // parameters are template parameter packs).
4270 for (; NewParm != NewParmEnd; ++NewParm) {
4271 if (!MatchTemplateParameterKind(*this, *NewParm, *OldParm, Complain,
4272 Kind, TemplateArgLoc))
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004273 return false;
Douglas Gregora0347822011-01-13 00:08:50 +00004274 }
Douglas Gregorddc29e12009-02-06 22:42:48 +00004275 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004276
Douglas Gregora0347822011-01-13 00:08:50 +00004277 // Make sure we exhausted all of the arguments.
4278 if (NewParm != NewParmEnd) {
4279 if (Complain)
4280 DiagnoseTemplateParameterListArityMismatch(*this, New, Old, Kind,
4281 TemplateArgLoc);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004282
Douglas Gregora0347822011-01-13 00:08:50 +00004283 return false;
4284 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004285
Douglas Gregorddc29e12009-02-06 22:42:48 +00004286 return true;
4287}
4288
4289/// \brief Check whether a template can be declared within this scope.
4290///
4291/// If the template declaration is valid in this scope, returns
4292/// false. Otherwise, issues a diagnostic and returns true.
Mike Stump1eb44332009-09-09 15:08:12 +00004293bool
Douglas Gregor05396e22009-08-25 17:23:04 +00004294Sema::CheckTemplateDeclScope(Scope *S, TemplateParameterList *TemplateParams) {
Douglas Gregorddc29e12009-02-06 22:42:48 +00004295 // Find the nearest enclosing declaration scope.
4296 while ((S->getFlags() & Scope::DeclScope) == 0 ||
4297 (S->getFlags() & Scope::TemplateParamScope) != 0)
4298 S = S->getParent();
Mike Stump1eb44332009-09-09 15:08:12 +00004299
Douglas Gregorddc29e12009-02-06 22:42:48 +00004300 // C++ [temp]p2:
4301 // A template-declaration can appear only as a namespace scope or
4302 // class scope declaration.
4303 DeclContext *Ctx = static_cast<DeclContext *>(S->getEntity());
Eli Friedman1503f772009-07-31 01:43:05 +00004304 if (Ctx && isa<LinkageSpecDecl>(Ctx) &&
4305 cast<LinkageSpecDecl>(Ctx)->getLanguage() != LinkageSpecDecl::lang_cxx)
Mike Stump1eb44332009-09-09 15:08:12 +00004306 return Diag(TemplateParams->getTemplateLoc(), diag::err_template_linkage)
Douglas Gregor05396e22009-08-25 17:23:04 +00004307 << TemplateParams->getSourceRange();
Mike Stump1eb44332009-09-09 15:08:12 +00004308
Eli Friedman1503f772009-07-31 01:43:05 +00004309 while (Ctx && isa<LinkageSpecDecl>(Ctx))
Douglas Gregorddc29e12009-02-06 22:42:48 +00004310 Ctx = Ctx->getParent();
Douglas Gregorddc29e12009-02-06 22:42:48 +00004311
4312 if (Ctx && (Ctx->isFileContext() || Ctx->isRecord()))
4313 return false;
4314
Mike Stump1eb44332009-09-09 15:08:12 +00004315 return Diag(TemplateParams->getTemplateLoc(),
Douglas Gregor05396e22009-08-25 17:23:04 +00004316 diag::err_template_outside_namespace_or_class_scope)
4317 << TemplateParams->getSourceRange();
Douglas Gregorddc29e12009-02-06 22:42:48 +00004318}
Douglas Gregorcc636682009-02-17 23:15:12 +00004319
Douglas Gregord5cb8762009-10-07 00:13:32 +00004320/// \brief Determine what kind of template specialization the given declaration
4321/// is.
4322static TemplateSpecializationKind getTemplateSpecializationKind(NamedDecl *D) {
4323 if (!D)
4324 return TSK_Undeclared;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004325
Douglas Gregorf6b11852009-10-08 15:14:33 +00004326 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(D))
4327 return Record->getTemplateSpecializationKind();
Douglas Gregord5cb8762009-10-07 00:13:32 +00004328 if (FunctionDecl *Function = dyn_cast<FunctionDecl>(D))
4329 return Function->getTemplateSpecializationKind();
Douglas Gregor251b4ff2009-10-08 07:24:58 +00004330 if (VarDecl *Var = dyn_cast<VarDecl>(D))
4331 return Var->getTemplateSpecializationKind();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004332
Douglas Gregord5cb8762009-10-07 00:13:32 +00004333 return TSK_Undeclared;
4334}
4335
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004336/// \brief Check whether a specialization is well-formed in the current
Douglas Gregor9302da62009-10-14 23:50:59 +00004337/// context.
Douglas Gregor88b70942009-02-25 22:02:03 +00004338///
Douglas Gregor9302da62009-10-14 23:50:59 +00004339/// This routine determines whether a template specialization can be declared
4340/// in the current context (C++ [temp.expl.spec]p2).
Douglas Gregord5cb8762009-10-07 00:13:32 +00004341///
4342/// \param S the semantic analysis object for which this check is being
4343/// performed.
4344///
4345/// \param Specialized the entity being specialized or instantiated, which
4346/// may be a kind of template (class template, function template, etc.) or
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004347/// a member of a class template (member function, static data member,
Douglas Gregord5cb8762009-10-07 00:13:32 +00004348/// member class).
4349///
4350/// \param PrevDecl the previous declaration of this entity, if any.
4351///
4352/// \param Loc the location of the explicit specialization or instantiation of
4353/// this entity.
4354///
4355/// \param IsPartialSpecialization whether this is a partial specialization of
4356/// a class template.
4357///
Douglas Gregord5cb8762009-10-07 00:13:32 +00004358/// \returns true if there was an error that we cannot recover from, false
4359/// otherwise.
4360static bool CheckTemplateSpecializationScope(Sema &S,
4361 NamedDecl *Specialized,
4362 NamedDecl *PrevDecl,
4363 SourceLocation Loc,
Douglas Gregor9302da62009-10-14 23:50:59 +00004364 bool IsPartialSpecialization) {
Douglas Gregord5cb8762009-10-07 00:13:32 +00004365 // Keep these "kind" numbers in sync with the %select statements in the
4366 // various diagnostics emitted by this routine.
4367 int EntityKind = 0;
Ted Kremenekfe62b062011-01-14 22:31:36 +00004368 if (isa<ClassTemplateDecl>(Specialized))
Douglas Gregord5cb8762009-10-07 00:13:32 +00004369 EntityKind = IsPartialSpecialization? 1 : 0;
Ted Kremenekfe62b062011-01-14 22:31:36 +00004370 else if (isa<FunctionTemplateDecl>(Specialized))
Douglas Gregord5cb8762009-10-07 00:13:32 +00004371 EntityKind = 2;
Ted Kremenekfe62b062011-01-14 22:31:36 +00004372 else if (isa<CXXMethodDecl>(Specialized))
Douglas Gregord5cb8762009-10-07 00:13:32 +00004373 EntityKind = 3;
4374 else if (isa<VarDecl>(Specialized))
4375 EntityKind = 4;
4376 else if (isa<RecordDecl>(Specialized))
4377 EntityKind = 5;
4378 else {
Douglas Gregor9302da62009-10-14 23:50:59 +00004379 S.Diag(Loc, diag::err_template_spec_unknown_kind);
4380 S.Diag(Specialized->getLocation(), diag::note_specialized_entity);
Douglas Gregord5cb8762009-10-07 00:13:32 +00004381 return true;
4382 }
4383
Douglas Gregor88b70942009-02-25 22:02:03 +00004384 // C++ [temp.expl.spec]p2:
4385 // An explicit specialization shall be declared in the namespace
4386 // of which the template is a member, or, for member templates, in
4387 // the namespace of which the enclosing class or enclosing class
4388 // template is a member. An explicit specialization of a member
4389 // function, member class or static data member of a class
4390 // template shall be declared in the namespace of which the class
4391 // template is a member. Such a declaration may also be a
4392 // definition. If the declaration is not a definition, the
4393 // specialization may be defined later in the name- space in which
4394 // the explicit specialization was declared, or in a namespace
4395 // that encloses the one in which the explicit specialization was
4396 // declared.
Sebastian Redl7a126a42010-08-31 00:36:30 +00004397 if (S.CurContext->getRedeclContext()->isFunctionOrMethod()) {
Douglas Gregord5cb8762009-10-07 00:13:32 +00004398 S.Diag(Loc, diag::err_template_spec_decl_function_scope)
Douglas Gregor9302da62009-10-14 23:50:59 +00004399 << Specialized;
Douglas Gregor88b70942009-02-25 22:02:03 +00004400 return true;
4401 }
Douglas Gregor7974c3b2009-10-07 17:21:34 +00004402
Douglas Gregor0a407472009-10-07 17:30:37 +00004403 if (S.CurContext->isRecord() && !IsPartialSpecialization) {
4404 S.Diag(Loc, diag::err_template_spec_decl_class_scope)
Douglas Gregor9302da62009-10-14 23:50:59 +00004405 << Specialized;
Douglas Gregor0a407472009-10-07 17:30:37 +00004406 return true;
4407 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004408
Douglas Gregor7974c3b2009-10-07 17:21:34 +00004409 // C++ [temp.class.spec]p6:
4410 // A class template partial specialization may be declared or redeclared
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004411 // in any namespace scope in which its definition may be defined (14.5.1
4412 // and 14.5.2).
Douglas Gregord5cb8762009-10-07 00:13:32 +00004413 bool ComplainedAboutScope = false;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004414 DeclContext *SpecializedContext
Douglas Gregord5cb8762009-10-07 00:13:32 +00004415 = Specialized->getDeclContext()->getEnclosingNamespaceContext();
Douglas Gregor7974c3b2009-10-07 17:21:34 +00004416 DeclContext *DC = S.CurContext->getEnclosingNamespaceContext();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004417 if ((!PrevDecl ||
Douglas Gregor9302da62009-10-14 23:50:59 +00004418 getTemplateSpecializationKind(PrevDecl) == TSK_Undeclared ||
4419 getTemplateSpecializationKind(PrevDecl) == TSK_ImplicitInstantiation)){
Douglas Gregor121dc9a2010-09-12 05:08:28 +00004420 // C++ [temp.exp.spec]p2:
4421 // An explicit specialization shall be declared in the namespace of which
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004422 // the template is a member, or, for member templates, in the namespace
Douglas Gregor121dc9a2010-09-12 05:08:28 +00004423 // of which the enclosing class or enclosing class template is a member.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004424 // An explicit specialization of a member function, member class or
4425 // static data member of a class template shall be declared in the
Douglas Gregor121dc9a2010-09-12 05:08:28 +00004426 // namespace of which the class template is a member.
4427 //
4428 // C++0x [temp.expl.spec]p2:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004429 // An explicit specialization shall be declared in a namespace enclosing
Douglas Gregor121dc9a2010-09-12 05:08:28 +00004430 // the specialized template.
4431 if (!DC->InEnclosingNamespaceSetOf(SpecializedContext) &&
4432 !(S.getLangOptions().CPlusPlus0x && DC->Encloses(SpecializedContext))) {
Douglas Gregora4d5de52010-09-12 05:24:55 +00004433 bool IsCPlusPlus0xExtension
4434 = !S.getLangOptions().CPlusPlus0x && DC->Encloses(SpecializedContext);
Douglas Gregor9302da62009-10-14 23:50:59 +00004435 if (isa<TranslationUnitDecl>(SpecializedContext))
Douglas Gregora4d5de52010-09-12 05:24:55 +00004436 S.Diag(Loc, IsCPlusPlus0xExtension
4437 ? diag::ext_template_spec_decl_out_of_scope_global
4438 : diag::err_template_spec_decl_out_of_scope_global)
4439 << EntityKind << Specialized;
Douglas Gregor9302da62009-10-14 23:50:59 +00004440 else if (isa<NamespaceDecl>(SpecializedContext))
Douglas Gregora4d5de52010-09-12 05:24:55 +00004441 S.Diag(Loc, IsCPlusPlus0xExtension
4442 ? diag::ext_template_spec_decl_out_of_scope
4443 : diag::err_template_spec_decl_out_of_scope)
4444 << EntityKind << Specialized
4445 << cast<NamedDecl>(SpecializedContext);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004446
Douglas Gregor9302da62009-10-14 23:50:59 +00004447 S.Diag(Specialized->getLocation(), diag::note_specialized_entity);
4448 ComplainedAboutScope = true;
Douglas Gregor88b70942009-02-25 22:02:03 +00004449 }
Douglas Gregor88b70942009-02-25 22:02:03 +00004450 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004451
4452 // Make sure that this redeclaration (or definition) occurs in an enclosing
Douglas Gregor9302da62009-10-14 23:50:59 +00004453 // namespace.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004454 // Note that HandleDeclarator() performs this check for explicit
Douglas Gregord5cb8762009-10-07 00:13:32 +00004455 // specializations of function templates, static data members, and member
4456 // functions, so we skip the check here for those kinds of entities.
4457 // FIXME: HandleDeclarator's diagnostics aren't quite as good, though.
Douglas Gregor7974c3b2009-10-07 17:21:34 +00004458 // Should we refactor that check, so that it occurs later?
4459 if (!ComplainedAboutScope && !DC->Encloses(SpecializedContext) &&
Douglas Gregor9302da62009-10-14 23:50:59 +00004460 !(isa<FunctionTemplateDecl>(Specialized) || isa<VarDecl>(Specialized) ||
4461 isa<FunctionDecl>(Specialized))) {
Douglas Gregord5cb8762009-10-07 00:13:32 +00004462 if (isa<TranslationUnitDecl>(SpecializedContext))
4463 S.Diag(Loc, diag::err_template_spec_redecl_global_scope)
4464 << EntityKind << Specialized;
4465 else if (isa<NamespaceDecl>(SpecializedContext))
4466 S.Diag(Loc, diag::err_template_spec_redecl_out_of_scope)
4467 << EntityKind << Specialized
4468 << cast<NamedDecl>(SpecializedContext);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004469
Douglas Gregor9302da62009-10-14 23:50:59 +00004470 S.Diag(Specialized->getLocation(), diag::note_specialized_entity);
Douglas Gregor88b70942009-02-25 22:02:03 +00004471 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004472
Douglas Gregord5cb8762009-10-07 00:13:32 +00004473 // FIXME: check for specialization-after-instantiation errors and such.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004474
Douglas Gregor88b70942009-02-25 22:02:03 +00004475 return false;
4476}
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004477
Douglas Gregorbacb9492011-01-03 21:13:47 +00004478/// \brief Subroutine of Sema::CheckClassTemplatePartialSpecializationArgs
4479/// that checks non-type template partial specialization arguments.
4480static bool CheckNonTypeClassTemplatePartialSpecializationArgs(Sema &S,
4481 NonTypeTemplateParmDecl *Param,
4482 const TemplateArgument *Args,
4483 unsigned NumArgs) {
4484 for (unsigned I = 0; I != NumArgs; ++I) {
4485 if (Args[I].getKind() == TemplateArgument::Pack) {
4486 if (CheckNonTypeClassTemplatePartialSpecializationArgs(S, Param,
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004487 Args[I].pack_begin(),
Douglas Gregorbacb9492011-01-03 21:13:47 +00004488 Args[I].pack_size()))
4489 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004490
Douglas Gregore94866f2009-06-12 21:21:02 +00004491 continue;
Douglas Gregorbacb9492011-01-03 21:13:47 +00004492 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004493
Douglas Gregorbacb9492011-01-03 21:13:47 +00004494 Expr *ArgExpr = Args[I].getAsExpr();
Douglas Gregor6aa75cf2009-06-12 22:08:06 +00004495 if (!ArgExpr) {
Douglas Gregore94866f2009-06-12 21:21:02 +00004496 continue;
Douglas Gregor6aa75cf2009-06-12 22:08:06 +00004497 }
Douglas Gregore94866f2009-06-12 21:21:02 +00004498
Douglas Gregor7a21fd42011-01-03 21:37:45 +00004499 // We can have a pack expansion of any of the bullets below.
Douglas Gregorbacb9492011-01-03 21:13:47 +00004500 if (PackExpansionExpr *Expansion = dyn_cast<PackExpansionExpr>(ArgExpr))
4501 ArgExpr = Expansion->getPattern();
Douglas Gregor54c53cc2011-01-04 23:35:54 +00004502
4503 // Strip off any implicit casts we added as part of type checking.
4504 while (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(ArgExpr))
4505 ArgExpr = ICE->getSubExpr();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004506
Douglas Gregore94866f2009-06-12 21:21:02 +00004507 // C++ [temp.class.spec]p8:
4508 // A non-type argument is non-specialized if it is the name of a
4509 // non-type parameter. All other non-type arguments are
4510 // specialized.
4511 //
4512 // Below, we check the two conditions that only apply to
4513 // specialized non-type arguments, so skip any non-specialized
4514 // arguments.
4515 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(ArgExpr))
Douglas Gregor54c53cc2011-01-04 23:35:54 +00004516 if (isa<NonTypeTemplateParmDecl>(DRE->getDecl()))
Douglas Gregore94866f2009-06-12 21:21:02 +00004517 continue;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004518
Douglas Gregore94866f2009-06-12 21:21:02 +00004519 // C++ [temp.class.spec]p9:
4520 // Within the argument list of a class template partial
4521 // specialization, the following restrictions apply:
4522 // -- A partially specialized non-type argument expression
4523 // shall not involve a template parameter of the partial
4524 // specialization except when the argument expression is a
4525 // simple identifier.
4526 if (ArgExpr->isTypeDependent() || ArgExpr->isValueDependent()) {
Douglas Gregorbacb9492011-01-03 21:13:47 +00004527 S.Diag(ArgExpr->getLocStart(),
Douglas Gregore94866f2009-06-12 21:21:02 +00004528 diag::err_dependent_non_type_arg_in_partial_spec)
4529 << ArgExpr->getSourceRange();
4530 return true;
4531 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004532
Douglas Gregore94866f2009-06-12 21:21:02 +00004533 // -- The type of a template parameter corresponding to a
4534 // specialized non-type argument shall not be dependent on a
4535 // parameter of the specialization.
4536 if (Param->getType()->isDependentType()) {
Douglas Gregorbacb9492011-01-03 21:13:47 +00004537 S.Diag(ArgExpr->getLocStart(),
Douglas Gregore94866f2009-06-12 21:21:02 +00004538 diag::err_dependent_typed_non_type_arg_in_partial_spec)
4539 << Param->getType()
4540 << ArgExpr->getSourceRange();
Douglas Gregorbacb9492011-01-03 21:13:47 +00004541 S.Diag(Param->getLocation(), diag::note_template_param_here);
Douglas Gregore94866f2009-06-12 21:21:02 +00004542 return true;
4543 }
4544 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004545
Douglas Gregorbacb9492011-01-03 21:13:47 +00004546 return false;
4547}
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004548
Douglas Gregorbacb9492011-01-03 21:13:47 +00004549/// \brief Check the non-type template arguments of a class template
4550/// partial specialization according to C++ [temp.class.spec]p9.
4551///
4552/// \param TemplateParams the template parameters of the primary class
4553/// template.
4554///
4555/// \param TemplateArg the template arguments of the class template
4556/// partial specialization.
4557///
4558/// \returns true if there was an error, false otherwise.
4559static bool CheckClassTemplatePartialSpecializationArgs(Sema &S,
4560 TemplateParameterList *TemplateParams,
4561 llvm::SmallVectorImpl<TemplateArgument> &TemplateArgs) {
4562 const TemplateArgument *ArgList = TemplateArgs.data();
4563
4564 for (unsigned I = 0, N = TemplateParams->size(); I != N; ++I) {
4565 NonTypeTemplateParmDecl *Param
4566 = dyn_cast<NonTypeTemplateParmDecl>(TemplateParams->getParam(I));
4567 if (!Param)
4568 continue;
4569
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004570 if (CheckNonTypeClassTemplatePartialSpecializationArgs(S, Param,
Douglas Gregorbacb9492011-01-03 21:13:47 +00004571 &ArgList[I], 1))
4572 return true;
4573 }
Douglas Gregore94866f2009-06-12 21:21:02 +00004574
4575 return false;
4576}
4577
Douglas Gregordc0a11c2010-02-26 06:03:23 +00004578/// \brief Retrieve the previous declaration of the given declaration.
4579static NamedDecl *getPreviousDecl(NamedDecl *ND) {
4580 if (VarDecl *VD = dyn_cast<VarDecl>(ND))
4581 return VD->getPreviousDeclaration();
4582 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(ND))
4583 return FD->getPreviousDeclaration();
4584 if (TagDecl *TD = dyn_cast<TagDecl>(ND))
4585 return TD->getPreviousDeclaration();
Richard Smith162e1c12011-04-15 14:24:37 +00004586 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(ND))
Douglas Gregordc0a11c2010-02-26 06:03:23 +00004587 return TD->getPreviousDeclaration();
4588 if (FunctionTemplateDecl *FTD = dyn_cast<FunctionTemplateDecl>(ND))
4589 return FTD->getPreviousDeclaration();
4590 if (ClassTemplateDecl *CTD = dyn_cast<ClassTemplateDecl>(ND))
4591 return CTD->getPreviousDeclaration();
4592 return 0;
4593}
4594
John McCalld226f652010-08-21 09:40:31 +00004595DeclResult
John McCall0f434ec2009-07-31 02:45:11 +00004596Sema::ActOnClassTemplateSpecialization(Scope *S, unsigned TagSpec,
4597 TagUseKind TUK,
Mike Stump1eb44332009-09-09 15:08:12 +00004598 SourceLocation KWLoc,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00004599 CXXScopeSpec &SS,
Douglas Gregor7532dc62009-03-30 22:58:21 +00004600 TemplateTy TemplateD,
Douglas Gregorcc636682009-02-17 23:15:12 +00004601 SourceLocation TemplateNameLoc,
4602 SourceLocation LAngleLoc,
Douglas Gregor40808ce2009-03-09 23:48:35 +00004603 ASTTemplateArgsPtr TemplateArgsIn,
Douglas Gregorcc636682009-02-17 23:15:12 +00004604 SourceLocation RAngleLoc,
4605 AttributeList *Attr,
4606 MultiTemplateParamsArg TemplateParameterLists) {
Douglas Gregorfc9cd612009-09-26 20:57:03 +00004607 assert(TUK != TUK_Reference && "References are not specializations");
John McCallf1bbbb42009-09-04 01:14:41 +00004608
Abramo Bagnara7f0a9152011-03-18 15:16:37 +00004609 // NOTE: KWLoc is the location of the tag keyword. This will instead
4610 // store the location of the outermost template keyword in the declaration.
4611 SourceLocation TemplateKWLoc = TemplateParameterLists.size() > 0
4612 ? TemplateParameterLists.get()[0]->getTemplateLoc() : SourceLocation();
4613
Douglas Gregorcc636682009-02-17 23:15:12 +00004614 // Find the class template we're specializing
Douglas Gregor7532dc62009-03-30 22:58:21 +00004615 TemplateName Name = TemplateD.getAsVal<TemplateName>();
Mike Stump1eb44332009-09-09 15:08:12 +00004616 ClassTemplateDecl *ClassTemplate
Douglas Gregor8b13c082009-11-12 00:46:20 +00004617 = dyn_cast_or_null<ClassTemplateDecl>(Name.getAsTemplateDecl());
4618
4619 if (!ClassTemplate) {
4620 Diag(TemplateNameLoc, diag::err_not_class_template_specialization)
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004621 << (Name.getAsTemplateDecl() &&
Douglas Gregor8b13c082009-11-12 00:46:20 +00004622 isa<TemplateTemplateParmDecl>(Name.getAsTemplateDecl()));
4623 return true;
4624 }
Douglas Gregorcc636682009-02-17 23:15:12 +00004625
Douglas Gregor1fef4e62009-10-07 22:35:40 +00004626 bool isExplicitSpecialization = false;
Douglas Gregorc8ab2562009-05-31 09:31:02 +00004627 bool isPartialSpecialization = false;
4628
Douglas Gregor88b70942009-02-25 22:02:03 +00004629 // Check the validity of the template headers that introduce this
4630 // template.
Douglas Gregorfc9cd612009-09-26 20:57:03 +00004631 // FIXME: We probably shouldn't complain about these headers for
4632 // friend declarations.
Douglas Gregor0167f3c2010-07-14 23:14:12 +00004633 bool Invalid = false;
Douglas Gregor05396e22009-08-25 17:23:04 +00004634 TemplateParameterList *TemplateParams
Douglas Gregorc8406492011-05-10 18:27:06 +00004635 = MatchTemplateParametersToScopeSpecifier(TemplateNameLoc,
4636 TemplateNameLoc,
4637 SS,
Mike Stump1eb44332009-09-09 15:08:12 +00004638 (TemplateParameterList**)TemplateParameterLists.get(),
Douglas Gregor1fef4e62009-10-07 22:35:40 +00004639 TemplateParameterLists.size(),
John McCall77e8b112010-04-13 20:37:33 +00004640 TUK == TUK_Friend,
Douglas Gregor0167f3c2010-07-14 23:14:12 +00004641 isExplicitSpecialization,
4642 Invalid);
4643 if (Invalid)
4644 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004645
Douglas Gregor05396e22009-08-25 17:23:04 +00004646 if (TemplateParams && TemplateParams->size() > 0) {
4647 isPartialSpecialization = true;
Douglas Gregor88b70942009-02-25 22:02:03 +00004648
Douglas Gregorb0ee93c2010-12-21 08:14:57 +00004649 if (TUK == TUK_Friend) {
4650 Diag(KWLoc, diag::err_partial_specialization_friend)
4651 << SourceRange(LAngleLoc, RAngleLoc);
4652 return true;
4653 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004654
Douglas Gregor05396e22009-08-25 17:23:04 +00004655 // C++ [temp.class.spec]p10:
4656 // The template parameter list of a specialization shall not
4657 // contain default template argument values.
4658 for (unsigned I = 0, N = TemplateParams->size(); I != N; ++I) {
4659 Decl *Param = TemplateParams->getParam(I);
4660 if (TemplateTypeParmDecl *TTP = dyn_cast<TemplateTypeParmDecl>(Param)) {
4661 if (TTP->hasDefaultArgument()) {
Mike Stump1eb44332009-09-09 15:08:12 +00004662 Diag(TTP->getDefaultArgumentLoc(),
Douglas Gregor05396e22009-08-25 17:23:04 +00004663 diag::err_default_arg_in_partial_spec);
John McCall833ca992009-10-29 08:12:44 +00004664 TTP->removeDefaultArgument();
Douglas Gregor05396e22009-08-25 17:23:04 +00004665 }
4666 } else if (NonTypeTemplateParmDecl *NTTP
4667 = dyn_cast<NonTypeTemplateParmDecl>(Param)) {
4668 if (Expr *DefArg = NTTP->getDefaultArgument()) {
Mike Stump1eb44332009-09-09 15:08:12 +00004669 Diag(NTTP->getDefaultArgumentLoc(),
Douglas Gregor05396e22009-08-25 17:23:04 +00004670 diag::err_default_arg_in_partial_spec)
4671 << DefArg->getSourceRange();
Abramo Bagnarad92f7a22010-06-09 09:26:05 +00004672 NTTP->removeDefaultArgument();
Douglas Gregor05396e22009-08-25 17:23:04 +00004673 }
4674 } else {
4675 TemplateTemplateParmDecl *TTP = cast<TemplateTemplateParmDecl>(Param);
Douglas Gregor788cd062009-11-11 01:00:40 +00004676 if (TTP->hasDefaultArgument()) {
4677 Diag(TTP->getDefaultArgument().getLocation(),
Douglas Gregor05396e22009-08-25 17:23:04 +00004678 diag::err_default_arg_in_partial_spec)
Douglas Gregor788cd062009-11-11 01:00:40 +00004679 << TTP->getDefaultArgument().getSourceRange();
Abramo Bagnarad92f7a22010-06-09 09:26:05 +00004680 TTP->removeDefaultArgument();
Douglas Gregorba1ecb52009-06-12 19:43:02 +00004681 }
4682 }
4683 }
Douglas Gregora735b202009-10-13 14:39:41 +00004684 } else if (TemplateParams) {
4685 if (TUK == TUK_Friend)
4686 Diag(KWLoc, diag::err_template_spec_friend)
Douglas Gregor849b2432010-03-31 17:46:05 +00004687 << FixItHint::CreateRemoval(
Douglas Gregora735b202009-10-13 14:39:41 +00004688 SourceRange(TemplateParams->getTemplateLoc(),
4689 TemplateParams->getRAngleLoc()))
4690 << SourceRange(LAngleLoc, RAngleLoc);
4691 else
4692 isExplicitSpecialization = true;
4693 } else if (TUK != TUK_Friend) {
Douglas Gregor05396e22009-08-25 17:23:04 +00004694 Diag(KWLoc, diag::err_template_spec_needs_header)
Douglas Gregor849b2432010-03-31 17:46:05 +00004695 << FixItHint::CreateInsertion(KWLoc, "template<> ");
Douglas Gregor1fef4e62009-10-07 22:35:40 +00004696 isExplicitSpecialization = true;
4697 }
Douglas Gregor88b70942009-02-25 22:02:03 +00004698
Douglas Gregorcc636682009-02-17 23:15:12 +00004699 // Check that the specialization uses the same tag kind as the
4700 // original template.
Abramo Bagnara465d41b2010-05-11 21:36:43 +00004701 TagTypeKind Kind = TypeWithKeyword::getTagTypeKindForTypeSpec(TagSpec);
4702 assert(Kind != TTK_Enum && "Invalid enum tag in class template spec!");
Douglas Gregor501c5ce2009-05-14 16:41:31 +00004703 if (!isAcceptableTagRedeclaration(ClassTemplate->getTemplatedDecl(),
Mike Stump1eb44332009-09-09 15:08:12 +00004704 Kind, KWLoc,
Douglas Gregor501c5ce2009-05-14 16:41:31 +00004705 *ClassTemplate->getIdentifier())) {
Mike Stump1eb44332009-09-09 15:08:12 +00004706 Diag(KWLoc, diag::err_use_with_wrong_tag)
Douglas Gregora3a83512009-04-01 23:51:29 +00004707 << ClassTemplate
Douglas Gregor849b2432010-03-31 17:46:05 +00004708 << FixItHint::CreateReplacement(KWLoc,
Douglas Gregora3a83512009-04-01 23:51:29 +00004709 ClassTemplate->getTemplatedDecl()->getKindName());
Mike Stump1eb44332009-09-09 15:08:12 +00004710 Diag(ClassTemplate->getTemplatedDecl()->getLocation(),
Douglas Gregorcc636682009-02-17 23:15:12 +00004711 diag::note_previous_use);
4712 Kind = ClassTemplate->getTemplatedDecl()->getTagKind();
4713 }
4714
Douglas Gregor40808ce2009-03-09 23:48:35 +00004715 // Translate the parser's template argument list in our AST format.
John McCalld5532b62009-11-23 01:53:49 +00004716 TemplateArgumentListInfo TemplateArgs;
4717 TemplateArgs.setLAngleLoc(LAngleLoc);
4718 TemplateArgs.setRAngleLoc(RAngleLoc);
Douglas Gregor314b97f2009-11-10 19:49:08 +00004719 translateTemplateArguments(TemplateArgsIn, TemplateArgs);
Douglas Gregor40808ce2009-03-09 23:48:35 +00004720
Douglas Gregor925910d2011-01-03 20:35:03 +00004721 // Check for unexpanded parameter packs in any of the template arguments.
4722 for (unsigned I = 0, N = TemplateArgs.size(); I != N; ++I)
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004723 if (DiagnoseUnexpandedParameterPack(TemplateArgs[I],
Douglas Gregor925910d2011-01-03 20:35:03 +00004724 UPPC_PartialSpecialization))
4725 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004726
Douglas Gregorcc636682009-02-17 23:15:12 +00004727 // Check that the template argument list is well-formed for this
4728 // template.
Douglas Gregor910f8002010-11-07 23:05:16 +00004729 llvm::SmallVector<TemplateArgument, 4> Converted;
John McCalld5532b62009-11-23 01:53:49 +00004730 if (CheckTemplateArgumentList(ClassTemplate, TemplateNameLoc,
4731 TemplateArgs, false, Converted))
Douglas Gregor212e81c2009-03-25 00:13:59 +00004732 return true;
Douglas Gregorcc636682009-02-17 23:15:12 +00004733
Douglas Gregor910f8002010-11-07 23:05:16 +00004734 assert((Converted.size() == ClassTemplate->getTemplateParameters()->size()) &&
Douglas Gregorcc636682009-02-17 23:15:12 +00004735 "Converted template argument list is too short!");
Mike Stump1eb44332009-09-09 15:08:12 +00004736
Douglas Gregorc8ab2562009-05-31 09:31:02 +00004737 // Find the class template (partial) specialization declaration that
Douglas Gregorcc636682009-02-17 23:15:12 +00004738 // corresponds to these arguments.
Douglas Gregorba1ecb52009-06-12 19:43:02 +00004739 if (isPartialSpecialization) {
Douglas Gregorbacb9492011-01-03 21:13:47 +00004740 if (CheckClassTemplatePartialSpecializationArgs(*this,
Douglas Gregore94866f2009-06-12 21:21:02 +00004741 ClassTemplate->getTemplateParameters(),
Douglas Gregorb9c66312010-12-23 17:13:55 +00004742 Converted))
Douglas Gregore94866f2009-06-12 21:21:02 +00004743 return true;
4744
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004745 if (!Name.isDependent() &&
Douglas Gregorde090962010-02-09 00:37:32 +00004746 !TemplateSpecializationType::anyDependentTemplateArguments(
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004747 TemplateArgs.getArgumentArray(),
Douglas Gregorde090962010-02-09 00:37:32 +00004748 TemplateArgs.size())) {
4749 Diag(TemplateNameLoc, diag::err_partial_spec_fully_specialized)
4750 << ClassTemplate->getDeclName();
4751 isPartialSpecialization = false;
Douglas Gregorde090962010-02-09 00:37:32 +00004752 }
4753 }
Argyrios Kyrtzidiscc0b1bc2010-07-20 13:59:28 +00004754
Douglas Gregorcc636682009-02-17 23:15:12 +00004755 void *InsertPos = 0;
Douglas Gregorc8ab2562009-05-31 09:31:02 +00004756 ClassTemplateSpecializationDecl *PrevDecl = 0;
4757
4758 if (isPartialSpecialization)
Argyrios Kyrtzidiscc0b1bc2010-07-20 13:59:28 +00004759 // FIXME: Template parameter list matters, too
Douglas Gregorc8ab2562009-05-31 09:31:02 +00004760 PrevDecl
Douglas Gregor910f8002010-11-07 23:05:16 +00004761 = ClassTemplate->findPartialSpecialization(Converted.data(),
4762 Converted.size(),
Argyrios Kyrtzidiscc0b1bc2010-07-20 13:59:28 +00004763 InsertPos);
Douglas Gregorc8ab2562009-05-31 09:31:02 +00004764 else
4765 PrevDecl
Douglas Gregor910f8002010-11-07 23:05:16 +00004766 = ClassTemplate->findSpecialization(Converted.data(),
4767 Converted.size(), InsertPos);
Douglas Gregorcc636682009-02-17 23:15:12 +00004768
4769 ClassTemplateSpecializationDecl *Specialization = 0;
4770
Douglas Gregor88b70942009-02-25 22:02:03 +00004771 // Check whether we can declare a class template specialization in
4772 // the current scope.
Douglas Gregorfc9cd612009-09-26 20:57:03 +00004773 if (TUK != TUK_Friend &&
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004774 CheckTemplateSpecializationScope(*this, ClassTemplate, PrevDecl,
4775 TemplateNameLoc,
Douglas Gregor9302da62009-10-14 23:50:59 +00004776 isPartialSpecialization))
Douglas Gregor212e81c2009-03-25 00:13:59 +00004777 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004778
Douglas Gregorb88e8882009-07-30 17:40:51 +00004779 // The canonical type
4780 QualType CanonType;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004781 if (PrevDecl &&
Douglas Gregorfc9cd612009-09-26 20:57:03 +00004782 (PrevDecl->getSpecializationKind() == TSK_Undeclared ||
Douglas Gregorde090962010-02-09 00:37:32 +00004783 TUK == TUK_Friend)) {
Douglas Gregorcc636682009-02-17 23:15:12 +00004784 // Since the only prior class template specialization with these
Douglas Gregorfc9cd612009-09-26 20:57:03 +00004785 // arguments was referenced but not declared, or we're only
4786 // referencing this specialization as a friend, reuse that
Abramo Bagnara7f0a9152011-03-18 15:16:37 +00004787 // declaration node as our own, updating its source location and
4788 // the list of outer template parameters to reflect our new declaration.
Douglas Gregorcc636682009-02-17 23:15:12 +00004789 Specialization = PrevDecl;
Douglas Gregor6bc9f7e2009-02-25 22:18:32 +00004790 Specialization->setLocation(TemplateNameLoc);
Abramo Bagnara7f0a9152011-03-18 15:16:37 +00004791 if (TemplateParameterLists.size() > 0) {
4792 Specialization->setTemplateParameterListsInfo(Context,
4793 TemplateParameterLists.size(),
4794 (TemplateParameterList**) TemplateParameterLists.release());
4795 }
Douglas Gregorcc636682009-02-17 23:15:12 +00004796 PrevDecl = 0;
Douglas Gregorb88e8882009-07-30 17:40:51 +00004797 CanonType = Context.getTypeDeclType(Specialization);
Douglas Gregorc8ab2562009-05-31 09:31:02 +00004798 } else if (isPartialSpecialization) {
Douglas Gregorb88e8882009-07-30 17:40:51 +00004799 // Build the canonical type that describes the converted template
4800 // arguments of the class template partial specialization.
Douglas Gregorde090962010-02-09 00:37:32 +00004801 TemplateName CanonTemplate = Context.getCanonicalTemplateName(Name);
4802 CanonType = Context.getTemplateSpecializationType(CanonTemplate,
Douglas Gregorb9c66312010-12-23 17:13:55 +00004803 Converted.data(),
4804 Converted.size());
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004805
4806 if (Context.hasSameType(CanonType,
Douglas Gregorb9c66312010-12-23 17:13:55 +00004807 ClassTemplate->getInjectedClassNameSpecialization())) {
4808 // C++ [temp.class.spec]p9b3:
4809 //
4810 // -- The argument list of the specialization shall not be identical
4811 // to the implicit argument list of the primary template.
4812 Diag(TemplateNameLoc, diag::err_partial_spec_args_match_primary_template)
4813 << (TUK == TUK_Definition)
4814 << FixItHint::CreateRemoval(SourceRange(LAngleLoc, RAngleLoc));
4815 return CheckClassTemplate(S, TagSpec, TUK, KWLoc, SS,
4816 ClassTemplate->getIdentifier(),
4817 TemplateNameLoc,
4818 Attr,
4819 TemplateParams,
Abramo Bagnarac57c17d2011-03-10 13:28:31 +00004820 AS_none,
Abramo Bagnara7f0a9152011-03-18 15:16:37 +00004821 TemplateParameterLists.size() - 1,
Abramo Bagnarac57c17d2011-03-10 13:28:31 +00004822 (TemplateParameterList**) TemplateParameterLists.release());
Douglas Gregorb9c66312010-12-23 17:13:55 +00004823 }
Douglas Gregorb88e8882009-07-30 17:40:51 +00004824
Douglas Gregorc8ab2562009-05-31 09:31:02 +00004825 // Create a new class template partial specialization declaration node.
Douglas Gregorc8ab2562009-05-31 09:31:02 +00004826 ClassTemplatePartialSpecializationDecl *PrevPartial
4827 = cast_or_null<ClassTemplatePartialSpecializationDecl>(PrevDecl);
Douglas Gregordc60c1e2010-04-30 05:56:50 +00004828 unsigned SequenceNumber = PrevPartial? PrevPartial->getSequenceNumber()
Argyrios Kyrtzidiscc0b1bc2010-07-20 13:59:28 +00004829 : ClassTemplate->getNextPartialSpecSequenceNumber();
Mike Stump1eb44332009-09-09 15:08:12 +00004830 ClassTemplatePartialSpecializationDecl *Partial
Douglas Gregor13c85772010-05-06 00:28:52 +00004831 = ClassTemplatePartialSpecializationDecl::Create(Context, Kind,
Douglas Gregorc8ab2562009-05-31 09:31:02 +00004832 ClassTemplate->getDeclContext(),
Abramo Bagnaraba877ad2011-03-09 14:09:51 +00004833 KWLoc, TemplateNameLoc,
Anders Carlsson91fdf6f2009-06-05 04:06:48 +00004834 TemplateParams,
4835 ClassTemplate,
Douglas Gregor910f8002010-11-07 23:05:16 +00004836 Converted.data(),
4837 Converted.size(),
John McCalld5532b62009-11-23 01:53:49 +00004838 TemplateArgs,
John McCall3cb0ebd2010-03-10 03:28:59 +00004839 CanonType,
Douglas Gregordc60c1e2010-04-30 05:56:50 +00004840 PrevPartial,
4841 SequenceNumber);
John McCallb6217662010-03-15 10:12:16 +00004842 SetNestedNameSpecifier(Partial, SS);
Abramo Bagnara7f0a9152011-03-18 15:16:37 +00004843 if (TemplateParameterLists.size() > 1 && SS.isSet()) {
Douglas Gregorc722ea42010-06-15 17:44:38 +00004844 Partial->setTemplateParameterListsInfo(Context,
Abramo Bagnara7f0a9152011-03-18 15:16:37 +00004845 TemplateParameterLists.size() - 1,
Abramo Bagnara9b934882010-06-12 08:15:14 +00004846 (TemplateParameterList**) TemplateParameterLists.release());
4847 }
Douglas Gregorc8ab2562009-05-31 09:31:02 +00004848
Argyrios Kyrtzidiscc0b1bc2010-07-20 13:59:28 +00004849 if (!PrevPartial)
4850 ClassTemplate->AddPartialSpecialization(Partial, InsertPos);
Douglas Gregorc8ab2562009-05-31 09:31:02 +00004851 Specialization = Partial;
Douglas Gregor031a5882009-06-13 00:26:55 +00004852
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004853 // If we are providing an explicit specialization of a member class
Douglas Gregored9c0f92009-10-29 00:04:11 +00004854 // template specialization, make a note of that.
4855 if (PrevPartial && PrevPartial->getInstantiatedFromMember())
4856 PrevPartial->setMemberSpecialization();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004857
Douglas Gregor031a5882009-06-13 00:26:55 +00004858 // Check that all of the template parameters of the class template
4859 // partial specialization are deducible from the template
4860 // arguments. If not, this class template partial specialization
4861 // will never be used.
4862 llvm::SmallVector<bool, 8> DeducibleParams;
4863 DeducibleParams.resize(TemplateParams->size());
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004864 MarkUsedTemplateParameters(Partial->getTemplateArgs(), true,
Douglas Gregored9c0f92009-10-29 00:04:11 +00004865 TemplateParams->getDepth(),
Douglas Gregore73bb602009-09-14 21:25:05 +00004866 DeducibleParams);
Douglas Gregor031a5882009-06-13 00:26:55 +00004867 unsigned NumNonDeducible = 0;
4868 for (unsigned I = 0, N = DeducibleParams.size(); I != N; ++I)
4869 if (!DeducibleParams[I])
4870 ++NumNonDeducible;
4871
4872 if (NumNonDeducible) {
4873 Diag(TemplateNameLoc, diag::warn_partial_specs_not_deducible)
4874 << (NumNonDeducible > 1)
4875 << SourceRange(TemplateNameLoc, RAngleLoc);
4876 for (unsigned I = 0, N = DeducibleParams.size(); I != N; ++I) {
4877 if (!DeducibleParams[I]) {
4878 NamedDecl *Param = cast<NamedDecl>(TemplateParams->getParam(I));
4879 if (Param->getDeclName())
Mike Stump1eb44332009-09-09 15:08:12 +00004880 Diag(Param->getLocation(),
Douglas Gregor031a5882009-06-13 00:26:55 +00004881 diag::note_partial_spec_unused_parameter)
4882 << Param->getDeclName();
4883 else
Mike Stump1eb44332009-09-09 15:08:12 +00004884 Diag(Param->getLocation(),
Douglas Gregor031a5882009-06-13 00:26:55 +00004885 diag::note_partial_spec_unused_parameter)
Benjamin Kramer476d8b82010-08-11 14:47:12 +00004886 << "<anonymous>";
Douglas Gregor031a5882009-06-13 00:26:55 +00004887 }
4888 }
4889 }
Douglas Gregorcc636682009-02-17 23:15:12 +00004890 } else {
4891 // Create a new class template specialization declaration node for
Douglas Gregorfc9cd612009-09-26 20:57:03 +00004892 // this explicit specialization or friend declaration.
Douglas Gregorcc636682009-02-17 23:15:12 +00004893 Specialization
Douglas Gregor13c85772010-05-06 00:28:52 +00004894 = ClassTemplateSpecializationDecl::Create(Context, Kind,
Douglas Gregorcc636682009-02-17 23:15:12 +00004895 ClassTemplate->getDeclContext(),
Abramo Bagnaraba877ad2011-03-09 14:09:51 +00004896 KWLoc, TemplateNameLoc,
Mike Stump1eb44332009-09-09 15:08:12 +00004897 ClassTemplate,
Douglas Gregor910f8002010-11-07 23:05:16 +00004898 Converted.data(),
4899 Converted.size(),
Douglas Gregorcc636682009-02-17 23:15:12 +00004900 PrevDecl);
John McCallb6217662010-03-15 10:12:16 +00004901 SetNestedNameSpecifier(Specialization, SS);
Abramo Bagnara7f0a9152011-03-18 15:16:37 +00004902 if (TemplateParameterLists.size() > 0) {
Douglas Gregorc722ea42010-06-15 17:44:38 +00004903 Specialization->setTemplateParameterListsInfo(Context,
Abramo Bagnara7f0a9152011-03-18 15:16:37 +00004904 TemplateParameterLists.size(),
Abramo Bagnara9b934882010-06-12 08:15:14 +00004905 (TemplateParameterList**) TemplateParameterLists.release());
4906 }
Douglas Gregorcc636682009-02-17 23:15:12 +00004907
Argyrios Kyrtzidiscc0b1bc2010-07-20 13:59:28 +00004908 if (!PrevDecl)
4909 ClassTemplate->AddSpecialization(Specialization, InsertPos);
Douglas Gregorb88e8882009-07-30 17:40:51 +00004910
4911 CanonType = Context.getTypeDeclType(Specialization);
Douglas Gregorcc636682009-02-17 23:15:12 +00004912 }
4913
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00004914 // C++ [temp.expl.spec]p6:
4915 // If a template, a member template or the member of a class template is
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004916 // explicitly specialized then that specialization shall be declared
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00004917 // before the first use of that specialization that would cause an implicit
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004918 // instantiation to take place, in every translation unit in which such a
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00004919 // use occurs; no diagnostic is required.
4920 if (PrevDecl && PrevDecl->getPointOfInstantiation().isValid()) {
Douglas Gregordc0a11c2010-02-26 06:03:23 +00004921 bool Okay = false;
4922 for (NamedDecl *Prev = PrevDecl; Prev; Prev = getPreviousDecl(Prev)) {
4923 // Is there any previous explicit specialization declaration?
4924 if (getTemplateSpecializationKind(Prev) == TSK_ExplicitSpecialization) {
4925 Okay = true;
4926 break;
4927 }
4928 }
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00004929
Douglas Gregordc0a11c2010-02-26 06:03:23 +00004930 if (!Okay) {
4931 SourceRange Range(TemplateNameLoc, RAngleLoc);
4932 Diag(TemplateNameLoc, diag::err_specialization_after_instantiation)
4933 << Context.getTypeDeclType(Specialization) << Range;
4934
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004935 Diag(PrevDecl->getPointOfInstantiation(),
Douglas Gregordc0a11c2010-02-26 06:03:23 +00004936 diag::note_instantiation_required_here)
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004937 << (PrevDecl->getTemplateSpecializationKind()
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00004938 != TSK_ImplicitInstantiation);
Douglas Gregordc0a11c2010-02-26 06:03:23 +00004939 return true;
4940 }
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00004941 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004942
Douglas Gregorfc9cd612009-09-26 20:57:03 +00004943 // If this is not a friend, note that this is an explicit specialization.
4944 if (TUK != TUK_Friend)
4945 Specialization->setSpecializationKind(TSK_ExplicitSpecialization);
Douglas Gregorcc636682009-02-17 23:15:12 +00004946
4947 // Check that this isn't a redefinition of this specialization.
John McCall0f434ec2009-07-31 02:45:11 +00004948 if (TUK == TUK_Definition) {
Douglas Gregor952b0172010-02-11 01:04:33 +00004949 if (RecordDecl *Def = Specialization->getDefinition()) {
Douglas Gregorcc636682009-02-17 23:15:12 +00004950 SourceRange Range(TemplateNameLoc, RAngleLoc);
Mike Stump1eb44332009-09-09 15:08:12 +00004951 Diag(TemplateNameLoc, diag::err_redefinition)
Douglas Gregorc8ab2562009-05-31 09:31:02 +00004952 << Context.getTypeDeclType(Specialization) << Range;
Douglas Gregorcc636682009-02-17 23:15:12 +00004953 Diag(Def->getLocation(), diag::note_previous_definition);
4954 Specialization->setInvalidDecl();
Douglas Gregor212e81c2009-03-25 00:13:59 +00004955 return true;
Douglas Gregorcc636682009-02-17 23:15:12 +00004956 }
4957 }
4958
John McCall7f1b9872010-12-18 03:30:47 +00004959 if (Attr)
4960 ProcessDeclAttributeList(S, Specialization, Attr);
4961
Douglas Gregorfc705b82009-02-26 22:19:44 +00004962 // Build the fully-sugared type for this class template
4963 // specialization as the user wrote in the specialization
4964 // itself. This means that we'll pretty-print the type retrieved
4965 // from the specialization's declaration the way that the user
4966 // actually wrote the specialization, rather than formatting the
4967 // name based on the "canonical" representation used to store the
4968 // template arguments in the specialization.
John McCall3cb0ebd2010-03-10 03:28:59 +00004969 TypeSourceInfo *WrittenTy
4970 = Context.getTemplateSpecializationTypeInfo(Name, TemplateNameLoc,
4971 TemplateArgs, CanonType);
Abramo Bagnarac98971d2010-06-12 07:44:57 +00004972 if (TUK != TUK_Friend) {
Douglas Gregorfc9cd612009-09-26 20:57:03 +00004973 Specialization->setTypeAsWritten(WrittenTy);
Abramo Bagnara7f0a9152011-03-18 15:16:37 +00004974 Specialization->setTemplateKeywordLoc(TemplateKWLoc);
Abramo Bagnarac98971d2010-06-12 07:44:57 +00004975 }
Douglas Gregor40808ce2009-03-09 23:48:35 +00004976 TemplateArgsIn.release();
Douglas Gregorcc636682009-02-17 23:15:12 +00004977
Douglas Gregor6bc9f7e2009-02-25 22:18:32 +00004978 // C++ [temp.expl.spec]p9:
4979 // A template explicit specialization is in the scope of the
4980 // namespace in which the template was defined.
4981 //
4982 // We actually implement this paragraph where we set the semantic
4983 // context (in the creation of the ClassTemplateSpecializationDecl),
4984 // but we also maintain the lexical context where the actual
4985 // definition occurs.
Douglas Gregorcc636682009-02-17 23:15:12 +00004986 Specialization->setLexicalDeclContext(CurContext);
Mike Stump1eb44332009-09-09 15:08:12 +00004987
Douglas Gregorcc636682009-02-17 23:15:12 +00004988 // We may be starting the definition of this specialization.
John McCall0f434ec2009-07-31 02:45:11 +00004989 if (TUK == TUK_Definition)
Douglas Gregorcc636682009-02-17 23:15:12 +00004990 Specialization->startDefinition();
4991
Douglas Gregorfc9cd612009-09-26 20:57:03 +00004992 if (TUK == TUK_Friend) {
4993 FriendDecl *Friend = FriendDecl::Create(Context, CurContext,
4994 TemplateNameLoc,
John McCall32f2fb52010-03-25 18:04:51 +00004995 WrittenTy,
Douglas Gregorfc9cd612009-09-26 20:57:03 +00004996 /*FIXME:*/KWLoc);
4997 Friend->setAccess(AS_public);
4998 CurContext->addDecl(Friend);
4999 } else {
5000 // Add the specialization into its lexical context, so that it can
5001 // be seen when iterating through the list of declarations in that
5002 // context. However, specializations are not found by name lookup.
5003 CurContext->addDecl(Specialization);
5004 }
John McCalld226f652010-08-21 09:40:31 +00005005 return Specialization;
Douglas Gregorcc636682009-02-17 23:15:12 +00005006}
Douglas Gregord57959a2009-03-27 23:10:48 +00005007
John McCalld226f652010-08-21 09:40:31 +00005008Decl *Sema::ActOnTemplateDeclarator(Scope *S,
Douglas Gregore542c862009-06-23 23:11:28 +00005009 MultiTemplateParamsArg TemplateParameterLists,
John McCalld226f652010-08-21 09:40:31 +00005010 Declarator &D) {
Douglas Gregore542c862009-06-23 23:11:28 +00005011 return HandleDeclarator(S, D, move(TemplateParameterLists), false);
5012}
5013
John McCalld226f652010-08-21 09:40:31 +00005014Decl *Sema::ActOnStartOfFunctionTemplateDef(Scope *FnBodyScope,
Douglas Gregor52591bf2009-06-24 00:54:41 +00005015 MultiTemplateParamsArg TemplateParameterLists,
John McCalld226f652010-08-21 09:40:31 +00005016 Declarator &D) {
Douglas Gregor52591bf2009-06-24 00:54:41 +00005017 assert(getCurFunctionDecl() == 0 && "Function parsing confused");
Abramo Bagnara075f8f12010-12-10 16:29:40 +00005018 DeclaratorChunk::FunctionTypeInfo &FTI = D.getFunctionTypeInfo();
Mike Stump1eb44332009-09-09 15:08:12 +00005019
Douglas Gregor52591bf2009-06-24 00:54:41 +00005020 if (FTI.hasPrototype) {
Mike Stump1eb44332009-09-09 15:08:12 +00005021 // FIXME: Diagnose arguments without names in C.
Douglas Gregor52591bf2009-06-24 00:54:41 +00005022 }
Mike Stump1eb44332009-09-09 15:08:12 +00005023
Douglas Gregor52591bf2009-06-24 00:54:41 +00005024 Scope *ParentScope = FnBodyScope->getParent();
Mike Stump1eb44332009-09-09 15:08:12 +00005025
John McCalld226f652010-08-21 09:40:31 +00005026 Decl *DP = HandleDeclarator(ParentScope, D,
5027 move(TemplateParameterLists),
5028 /*IsFunctionDefinition=*/true);
Mike Stump1eb44332009-09-09 15:08:12 +00005029 if (FunctionTemplateDecl *FunctionTemplate
John McCalld226f652010-08-21 09:40:31 +00005030 = dyn_cast_or_null<FunctionTemplateDecl>(DP))
Mike Stump1eb44332009-09-09 15:08:12 +00005031 return ActOnStartOfFunctionDef(FnBodyScope,
John McCalld226f652010-08-21 09:40:31 +00005032 FunctionTemplate->getTemplatedDecl());
5033 if (FunctionDecl *Function = dyn_cast_or_null<FunctionDecl>(DP))
5034 return ActOnStartOfFunctionDef(FnBodyScope, Function);
5035 return 0;
Douglas Gregor52591bf2009-06-24 00:54:41 +00005036}
5037
John McCall75042392010-02-11 01:33:53 +00005038/// \brief Strips various properties off an implicit instantiation
5039/// that has just been explicitly specialized.
5040static void StripImplicitInstantiation(NamedDecl *D) {
Sean Huntcf807c42010-08-18 23:23:40 +00005041 D->dropAttrs();
John McCall75042392010-02-11 01:33:53 +00005042
5043 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
5044 FD->setInlineSpecified(false);
5045 }
5046}
5047
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005048/// \brief Diagnose cases where we have an explicit template specialization
Douglas Gregor454885e2009-10-15 15:54:05 +00005049/// before/after an explicit template instantiation, producing diagnostics
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005050/// for those cases where they are required and determining whether the
Douglas Gregor454885e2009-10-15 15:54:05 +00005051/// new specialization/instantiation will have any effect.
5052///
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005053/// \param NewLoc the location of the new explicit specialization or
Douglas Gregor454885e2009-10-15 15:54:05 +00005054/// instantiation.
5055///
5056/// \param NewTSK the kind of the new explicit specialization or instantiation.
5057///
5058/// \param PrevDecl the previous declaration of the entity.
5059///
5060/// \param PrevTSK the kind of the old explicit specialization or instantiatin.
5061///
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005062/// \param PrevPointOfInstantiation if valid, indicates where the previus
Douglas Gregor454885e2009-10-15 15:54:05 +00005063/// declaration was instantiated (either implicitly or explicitly).
5064///
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005065/// \param HasNoEffect will be set to true to indicate that the new
Douglas Gregor454885e2009-10-15 15:54:05 +00005066/// specialization or instantiation has no effect and should be ignored.
5067///
5068/// \returns true if there was an error that should prevent the introduction of
5069/// the new declaration into the AST, false otherwise.
Douglas Gregor0d035142009-10-27 18:42:08 +00005070bool
5071Sema::CheckSpecializationInstantiationRedecl(SourceLocation NewLoc,
5072 TemplateSpecializationKind NewTSK,
5073 NamedDecl *PrevDecl,
5074 TemplateSpecializationKind PrevTSK,
5075 SourceLocation PrevPointOfInstantiation,
Abramo Bagnarac98971d2010-06-12 07:44:57 +00005076 bool &HasNoEffect) {
5077 HasNoEffect = false;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005078
Douglas Gregor454885e2009-10-15 15:54:05 +00005079 switch (NewTSK) {
5080 case TSK_Undeclared:
5081 case TSK_ImplicitInstantiation:
5082 assert(false && "Don't check implicit instantiations here");
5083 return false;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005084
Douglas Gregor454885e2009-10-15 15:54:05 +00005085 case TSK_ExplicitSpecialization:
5086 switch (PrevTSK) {
5087 case TSK_Undeclared:
5088 case TSK_ExplicitSpecialization:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005089 // Okay, we're just specializing something that is either already
Douglas Gregor454885e2009-10-15 15:54:05 +00005090 // explicitly specialized or has merely been mentioned without any
5091 // instantiation.
5092 return false;
5093
5094 case TSK_ImplicitInstantiation:
5095 if (PrevPointOfInstantiation.isInvalid()) {
5096 // The declaration itself has not actually been instantiated, so it is
5097 // still okay to specialize it.
John McCall75042392010-02-11 01:33:53 +00005098 StripImplicitInstantiation(PrevDecl);
Douglas Gregor454885e2009-10-15 15:54:05 +00005099 return false;
5100 }
5101 // Fall through
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005102
Douglas Gregor454885e2009-10-15 15:54:05 +00005103 case TSK_ExplicitInstantiationDeclaration:
5104 case TSK_ExplicitInstantiationDefinition:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005105 assert((PrevTSK == TSK_ImplicitInstantiation ||
5106 PrevPointOfInstantiation.isValid()) &&
Douglas Gregor454885e2009-10-15 15:54:05 +00005107 "Explicit instantiation without point of instantiation?");
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005108
Douglas Gregor454885e2009-10-15 15:54:05 +00005109 // C++ [temp.expl.spec]p6:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005110 // If a template, a member template or the member of a class template
Douglas Gregor454885e2009-10-15 15:54:05 +00005111 // is explicitly specialized then that specialization shall be declared
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005112 // before the first use of that specialization that would cause an
Douglas Gregor454885e2009-10-15 15:54:05 +00005113 // implicit instantiation to take place, in every translation unit in
5114 // which such a use occurs; no diagnostic is required.
Douglas Gregordc0a11c2010-02-26 06:03:23 +00005115 for (NamedDecl *Prev = PrevDecl; Prev; Prev = getPreviousDecl(Prev)) {
5116 // Is there any previous explicit specialization declaration?
5117 if (getTemplateSpecializationKind(Prev) == TSK_ExplicitSpecialization)
5118 return false;
5119 }
5120
Douglas Gregor0d035142009-10-27 18:42:08 +00005121 Diag(NewLoc, diag::err_specialization_after_instantiation)
Douglas Gregor454885e2009-10-15 15:54:05 +00005122 << PrevDecl;
Douglas Gregor0d035142009-10-27 18:42:08 +00005123 Diag(PrevPointOfInstantiation, diag::note_instantiation_required_here)
Douglas Gregor454885e2009-10-15 15:54:05 +00005124 << (PrevTSK != TSK_ImplicitInstantiation);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005125
Douglas Gregor454885e2009-10-15 15:54:05 +00005126 return true;
5127 }
5128 break;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005129
Douglas Gregor454885e2009-10-15 15:54:05 +00005130 case TSK_ExplicitInstantiationDeclaration:
5131 switch (PrevTSK) {
5132 case TSK_ExplicitInstantiationDeclaration:
5133 // This explicit instantiation declaration is redundant (that's okay).
Abramo Bagnarac98971d2010-06-12 07:44:57 +00005134 HasNoEffect = true;
Douglas Gregor454885e2009-10-15 15:54:05 +00005135 return false;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005136
Douglas Gregor454885e2009-10-15 15:54:05 +00005137 case TSK_Undeclared:
5138 case TSK_ImplicitInstantiation:
5139 // We're explicitly instantiating something that may have already been
5140 // implicitly instantiated; that's fine.
5141 return false;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005142
Douglas Gregor454885e2009-10-15 15:54:05 +00005143 case TSK_ExplicitSpecialization:
5144 // C++0x [temp.explicit]p4:
5145 // For a given set of template parameters, if an explicit instantiation
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005146 // of a template appears after a declaration of an explicit
Douglas Gregor454885e2009-10-15 15:54:05 +00005147 // specialization for that template, the explicit instantiation has no
5148 // effect.
Abramo Bagnarac98971d2010-06-12 07:44:57 +00005149 HasNoEffect = true;
Douglas Gregor454885e2009-10-15 15:54:05 +00005150 return false;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005151
Douglas Gregor454885e2009-10-15 15:54:05 +00005152 case TSK_ExplicitInstantiationDefinition:
5153 // C++0x [temp.explicit]p10:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005154 // If an entity is the subject of both an explicit instantiation
5155 // declaration and an explicit instantiation definition in the same
Douglas Gregor454885e2009-10-15 15:54:05 +00005156 // translation unit, the definition shall follow the declaration.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005157 Diag(NewLoc,
Douglas Gregor0d035142009-10-27 18:42:08 +00005158 diag::err_explicit_instantiation_declaration_after_definition);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005159 Diag(PrevPointOfInstantiation,
Douglas Gregor0d035142009-10-27 18:42:08 +00005160 diag::note_explicit_instantiation_definition_here);
Douglas Gregor454885e2009-10-15 15:54:05 +00005161 assert(PrevPointOfInstantiation.isValid() &&
5162 "Explicit instantiation without point of instantiation?");
Abramo Bagnarac98971d2010-06-12 07:44:57 +00005163 HasNoEffect = true;
Douglas Gregor454885e2009-10-15 15:54:05 +00005164 return false;
5165 }
5166 break;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005167
Douglas Gregor454885e2009-10-15 15:54:05 +00005168 case TSK_ExplicitInstantiationDefinition:
5169 switch (PrevTSK) {
5170 case TSK_Undeclared:
5171 case TSK_ImplicitInstantiation:
5172 // We're explicitly instantiating something that may have already been
5173 // implicitly instantiated; that's fine.
5174 return false;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005175
Douglas Gregor454885e2009-10-15 15:54:05 +00005176 case TSK_ExplicitSpecialization:
5177 // C++ DR 259, C++0x [temp.explicit]p4:
5178 // For a given set of template parameters, if an explicit
5179 // instantiation of a template appears after a declaration of
5180 // an explicit specialization for that template, the explicit
5181 // instantiation has no effect.
5182 //
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005183 // In C++98/03 mode, we only give an extension warning here, because it
Douglas Gregorc42b6522010-04-09 21:02:29 +00005184 // is not harmful to try to explicitly instantiate something that
Douglas Gregor454885e2009-10-15 15:54:05 +00005185 // has been explicitly specialized.
Douglas Gregor0d035142009-10-27 18:42:08 +00005186 if (!getLangOptions().CPlusPlus0x) {
5187 Diag(NewLoc, diag::ext_explicit_instantiation_after_specialization)
Douglas Gregor454885e2009-10-15 15:54:05 +00005188 << PrevDecl;
Douglas Gregor0d035142009-10-27 18:42:08 +00005189 Diag(PrevDecl->getLocation(),
Douglas Gregor454885e2009-10-15 15:54:05 +00005190 diag::note_previous_template_specialization);
5191 }
Abramo Bagnarac98971d2010-06-12 07:44:57 +00005192 HasNoEffect = true;
Douglas Gregor454885e2009-10-15 15:54:05 +00005193 return false;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005194
Douglas Gregor454885e2009-10-15 15:54:05 +00005195 case TSK_ExplicitInstantiationDeclaration:
5196 // We're explicity instantiating a definition for something for which we
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005197 // were previously asked to suppress instantiations. That's fine.
Douglas Gregor454885e2009-10-15 15:54:05 +00005198 return false;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005199
Douglas Gregor454885e2009-10-15 15:54:05 +00005200 case TSK_ExplicitInstantiationDefinition:
5201 // C++0x [temp.spec]p5:
5202 // For a given template and a given set of template-arguments,
5203 // - an explicit instantiation definition shall appear at most once
5204 // in a program,
Douglas Gregor0d035142009-10-27 18:42:08 +00005205 Diag(NewLoc, diag::err_explicit_instantiation_duplicate)
Douglas Gregor454885e2009-10-15 15:54:05 +00005206 << PrevDecl;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005207 Diag(PrevPointOfInstantiation,
Douglas Gregor0d035142009-10-27 18:42:08 +00005208 diag::note_previous_explicit_instantiation);
Abramo Bagnarac98971d2010-06-12 07:44:57 +00005209 HasNoEffect = true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005210 return false;
Douglas Gregor454885e2009-10-15 15:54:05 +00005211 }
5212 break;
5213 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005214
Douglas Gregor454885e2009-10-15 15:54:05 +00005215 assert(false && "Missing specialization/instantiation case?");
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005216
Douglas Gregor454885e2009-10-15 15:54:05 +00005217 return false;
5218}
5219
John McCallaf2094e2010-04-08 09:05:18 +00005220/// \brief Perform semantic analysis for the given dependent function
5221/// template specialization. The only possible way to get a dependent
5222/// function template specialization is with a friend declaration,
5223/// like so:
5224///
5225/// template <class T> void foo(T);
5226/// template <class T> class A {
5227/// friend void foo<>(T);
5228/// };
5229///
5230/// There really isn't any useful analysis we can do here, so we
5231/// just store the information.
5232bool
5233Sema::CheckDependentFunctionTemplateSpecialization(FunctionDecl *FD,
5234 const TemplateArgumentListInfo &ExplicitTemplateArgs,
5235 LookupResult &Previous) {
5236 // Remove anything from Previous that isn't a function template in
5237 // the correct context.
Sebastian Redl7a126a42010-08-31 00:36:30 +00005238 DeclContext *FDLookupContext = FD->getDeclContext()->getRedeclContext();
John McCallaf2094e2010-04-08 09:05:18 +00005239 LookupResult::Filter F = Previous.makeFilter();
5240 while (F.hasNext()) {
5241 NamedDecl *D = F.next()->getUnderlyingDecl();
5242 if (!isa<FunctionTemplateDecl>(D) ||
Sebastian Redl7a126a42010-08-31 00:36:30 +00005243 !FDLookupContext->InEnclosingNamespaceSetOf(
5244 D->getDeclContext()->getRedeclContext()))
John McCallaf2094e2010-04-08 09:05:18 +00005245 F.erase();
5246 }
5247 F.done();
5248
5249 // Should this be diagnosed here?
5250 if (Previous.empty()) return true;
5251
5252 FD->setDependentTemplateSpecialization(Context, Previous.asUnresolvedSet(),
5253 ExplicitTemplateArgs);
5254 return false;
5255}
5256
Abramo Bagnarae03db982010-05-20 15:32:11 +00005257/// \brief Perform semantic analysis for the given function template
Douglas Gregorb9aa6b22009-09-24 23:14:47 +00005258/// specialization.
5259///
Abramo Bagnarae03db982010-05-20 15:32:11 +00005260/// This routine performs all of the semantic analysis required for an
Douglas Gregorb9aa6b22009-09-24 23:14:47 +00005261/// explicit function template specialization. On successful completion,
5262/// the function declaration \p FD will become a function template
5263/// specialization.
5264///
5265/// \param FD the function declaration, which will be updated to become a
5266/// function template specialization.
5267///
Abramo Bagnarae03db982010-05-20 15:32:11 +00005268/// \param ExplicitTemplateArgs the explicitly-provided template arguments,
5269/// if any. Note that this may be valid info even when 0 arguments are
5270/// explicitly provided as in, e.g., \c void sort<>(char*, char*);
5271/// as it anyway contains info on the angle brackets locations.
Douglas Gregorb9aa6b22009-09-24 23:14:47 +00005272///
Abramo Bagnarae03db982010-05-20 15:32:11 +00005273/// \param PrevDecl the set of declarations that may be specialized by
5274/// this function specialization.
5275bool
Douglas Gregorb9aa6b22009-09-24 23:14:47 +00005276Sema::CheckFunctionTemplateSpecialization(FunctionDecl *FD,
Douglas Gregor67714232011-03-03 02:41:12 +00005277 TemplateArgumentListInfo *ExplicitTemplateArgs,
John McCall68263142009-11-18 22:49:29 +00005278 LookupResult &Previous) {
Douglas Gregorb9aa6b22009-09-24 23:14:47 +00005279 // The set of function template specializations that could match this
5280 // explicit function template specialization.
John McCallc373d482010-01-27 01:50:18 +00005281 UnresolvedSet<8> Candidates;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005282
Sebastian Redl7a126a42010-08-31 00:36:30 +00005283 DeclContext *FDLookupContext = FD->getDeclContext()->getRedeclContext();
John McCall68263142009-11-18 22:49:29 +00005284 for (LookupResult::iterator I = Previous.begin(), E = Previous.end();
5285 I != E; ++I) {
5286 NamedDecl *Ovl = (*I)->getUnderlyingDecl();
5287 if (FunctionTemplateDecl *FunTmpl = dyn_cast<FunctionTemplateDecl>(Ovl)) {
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005288 // Only consider templates found within the same semantic lookup scope as
Douglas Gregorb9aa6b22009-09-24 23:14:47 +00005289 // FD.
Sebastian Redl7a126a42010-08-31 00:36:30 +00005290 if (!FDLookupContext->InEnclosingNamespaceSetOf(
5291 Ovl->getDeclContext()->getRedeclContext()))
Douglas Gregorb9aa6b22009-09-24 23:14:47 +00005292 continue;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005293
Douglas Gregorb9aa6b22009-09-24 23:14:47 +00005294 // C++ [temp.expl.spec]p11:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005295 // A trailing template-argument can be left unspecified in the
5296 // template-id naming an explicit function template specialization
Douglas Gregorb9aa6b22009-09-24 23:14:47 +00005297 // provided it can be deduced from the function argument type.
5298 // Perform template argument deduction to determine whether we may be
5299 // specializing this template.
5300 // FIXME: It is somewhat wasteful to build
John McCall5769d612010-02-08 23:07:23 +00005301 TemplateDeductionInfo Info(Context, FD->getLocation());
Douglas Gregorb9aa6b22009-09-24 23:14:47 +00005302 FunctionDecl *Specialization = 0;
5303 if (TemplateDeductionResult TDK
John McCalld5532b62009-11-23 01:53:49 +00005304 = DeduceTemplateArguments(FunTmpl, ExplicitTemplateArgs,
Douglas Gregorb9aa6b22009-09-24 23:14:47 +00005305 FD->getType(),
5306 Specialization,
5307 Info)) {
5308 // FIXME: Template argument deduction failed; record why it failed, so
5309 // that we can provide nifty diagnostics.
5310 (void)TDK;
5311 continue;
5312 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005313
Douglas Gregorb9aa6b22009-09-24 23:14:47 +00005314 // Record this candidate.
John McCallc373d482010-01-27 01:50:18 +00005315 Candidates.addDecl(Specialization, I.getAccess());
Douglas Gregorb9aa6b22009-09-24 23:14:47 +00005316 }
5317 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005318
Douglas Gregorc5df30f2009-09-26 03:41:46 +00005319 // Find the most specialized function template.
John McCallc373d482010-01-27 01:50:18 +00005320 UnresolvedSetIterator Result
5321 = getMostSpecialized(Candidates.begin(), Candidates.end(),
Douglas Gregor5c7bf422011-01-11 17:34:58 +00005322 TPOC_Other, 0, FD->getLocation(),
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005323 PDiag(diag::err_function_template_spec_no_match)
Douglas Gregorc5df30f2009-09-26 03:41:46 +00005324 << FD->getDeclName(),
Douglas Gregorfe6b2d42010-03-29 23:34:08 +00005325 PDiag(diag::err_function_template_spec_ambiguous)
John McCalld5532b62009-11-23 01:53:49 +00005326 << FD->getDeclName() << (ExplicitTemplateArgs != 0),
Douglas Gregorfe6b2d42010-03-29 23:34:08 +00005327 PDiag(diag::note_function_template_spec_matched));
John McCallc373d482010-01-27 01:50:18 +00005328 if (Result == Candidates.end())
Douglas Gregorb9aa6b22009-09-24 23:14:47 +00005329 return true;
John McCallc373d482010-01-27 01:50:18 +00005330
5331 // Ignore access information; it doesn't figure into redeclaration checking.
5332 FunctionDecl *Specialization = cast<FunctionDecl>(*Result);
Abramo Bagnaraabfb4052011-03-04 17:20:30 +00005333
5334 FunctionTemplateSpecializationInfo *SpecInfo
5335 = Specialization->getTemplateSpecializationInfo();
5336 assert(SpecInfo && "Function template specialization info missing?");
5337 {
5338 // Note: do not overwrite location info if previous template
5339 // specialization kind was explicit.
5340 TemplateSpecializationKind TSK = SpecInfo->getTemplateSpecializationKind();
5341 if (TSK == TSK_Undeclared || TSK == TSK_ImplicitInstantiation)
5342 Specialization->setLocation(FD->getLocation());
5343 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005344
Douglas Gregorb9aa6b22009-09-24 23:14:47 +00005345 // FIXME: Check if the prior specialization has a point of instantiation.
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00005346 // If so, we have run afoul of .
John McCall7ad650f2010-03-24 07:46:06 +00005347
5348 // If this is a friend declaration, then we're not really declaring
5349 // an explicit specialization.
5350 bool isFriend = (FD->getFriendObjectKind() != Decl::FOK_None);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005351
Douglas Gregord5cb8762009-10-07 00:13:32 +00005352 // Check the scope of this explicit specialization.
John McCall7ad650f2010-03-24 07:46:06 +00005353 if (!isFriend &&
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005354 CheckTemplateSpecializationScope(*this,
Douglas Gregord5cb8762009-10-07 00:13:32 +00005355 Specialization->getPrimaryTemplate(),
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005356 Specialization, FD->getLocation(),
Douglas Gregor9302da62009-10-14 23:50:59 +00005357 false))
Douglas Gregord5cb8762009-10-07 00:13:32 +00005358 return true;
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00005359
5360 // C++ [temp.expl.spec]p6:
5361 // If a template, a member template or the member of a class template is
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005362 // explicitly specialized then that specialization shall be declared
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00005363 // before the first use of that specialization that would cause an implicit
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005364 // instantiation to take place, in every translation unit in which such a
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00005365 // use occurs; no diagnostic is required.
Abramo Bagnarac98971d2010-06-12 07:44:57 +00005366 bool HasNoEffect = false;
John McCall7ad650f2010-03-24 07:46:06 +00005367 if (!isFriend &&
5368 CheckSpecializationInstantiationRedecl(FD->getLocation(),
John McCall75042392010-02-11 01:33:53 +00005369 TSK_ExplicitSpecialization,
5370 Specialization,
5371 SpecInfo->getTemplateSpecializationKind(),
5372 SpecInfo->getPointOfInstantiation(),
Abramo Bagnarac98971d2010-06-12 07:44:57 +00005373 HasNoEffect))
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00005374 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005375
Douglas Gregorb9aa6b22009-09-24 23:14:47 +00005376 // Mark the prior declaration as an explicit specialization, so that later
5377 // clients know that this is an explicit specialization.
Argyrios Kyrtzidisbbc64542010-08-15 01:15:20 +00005378 if (!isFriend) {
John McCall7ad650f2010-03-24 07:46:06 +00005379 SpecInfo->setTemplateSpecializationKind(TSK_ExplicitSpecialization);
Argyrios Kyrtzidisbbc64542010-08-15 01:15:20 +00005380 MarkUnusedFileScopedDecl(Specialization);
5381 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005382
Douglas Gregorb9aa6b22009-09-24 23:14:47 +00005383 // Turn the given function declaration into a function template
5384 // specialization, with the template arguments from the previous
5385 // specialization.
Abramo Bagnarae03db982010-05-20 15:32:11 +00005386 // Take copies of (semantic and syntactic) template argument lists.
5387 const TemplateArgumentList* TemplArgs = new (Context)
5388 TemplateArgumentList(Specialization->getTemplateSpecializationArgs());
5389 const TemplateArgumentListInfo* TemplArgsAsWritten = ExplicitTemplateArgs
5390 ? new (Context) TemplateArgumentListInfo(*ExplicitTemplateArgs) : 0;
Douglas Gregor838db382010-02-11 01:19:42 +00005391 FD->setFunctionTemplateSpecialization(Specialization->getPrimaryTemplate(),
Abramo Bagnarae03db982010-05-20 15:32:11 +00005392 TemplArgs, /*InsertPos=*/0,
5393 SpecInfo->getTemplateSpecializationKind(),
5394 TemplArgsAsWritten);
5395
Douglas Gregorb9aa6b22009-09-24 23:14:47 +00005396 // The "previous declaration" for this function template specialization is
5397 // the prior function template specialization.
John McCall68263142009-11-18 22:49:29 +00005398 Previous.clear();
5399 Previous.addDecl(Specialization);
Douglas Gregorb9aa6b22009-09-24 23:14:47 +00005400 return false;
5401}
5402
Douglas Gregor251b4ff2009-10-08 07:24:58 +00005403/// \brief Perform semantic analysis for the given non-template member
Douglas Gregor1fef4e62009-10-07 22:35:40 +00005404/// specialization.
5405///
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005406/// This routine performs all of the semantic analysis required for an
Douglas Gregor1fef4e62009-10-07 22:35:40 +00005407/// explicit member function specialization. On successful completion,
5408/// the function declaration \p FD will become a member function
5409/// specialization.
5410///
Douglas Gregor251b4ff2009-10-08 07:24:58 +00005411/// \param Member the member declaration, which will be updated to become a
5412/// specialization.
Douglas Gregor1fef4e62009-10-07 22:35:40 +00005413///
John McCall68263142009-11-18 22:49:29 +00005414/// \param Previous the set of declarations, one of which may be specialized
5415/// by this function specialization; the set will be modified to contain the
5416/// redeclared member.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005417bool
John McCall68263142009-11-18 22:49:29 +00005418Sema::CheckMemberSpecialization(NamedDecl *Member, LookupResult &Previous) {
Douglas Gregor251b4ff2009-10-08 07:24:58 +00005419 assert(!isa<TemplateDecl>(Member) && "Only for non-template members");
John McCall77e8b112010-04-13 20:37:33 +00005420
Douglas Gregor251b4ff2009-10-08 07:24:58 +00005421 // Try to find the member we are instantiating.
5422 NamedDecl *Instantiation = 0;
5423 NamedDecl *InstantiatedFrom = 0;
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00005424 MemberSpecializationInfo *MSInfo = 0;
5425
John McCall68263142009-11-18 22:49:29 +00005426 if (Previous.empty()) {
Douglas Gregor251b4ff2009-10-08 07:24:58 +00005427 // Nowhere to look anyway.
5428 } else if (FunctionDecl *Function = dyn_cast<FunctionDecl>(Member)) {
John McCall68263142009-11-18 22:49:29 +00005429 for (LookupResult::iterator I = Previous.begin(), E = Previous.end();
5430 I != E; ++I) {
5431 NamedDecl *D = (*I)->getUnderlyingDecl();
5432 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D)) {
Douglas Gregor251b4ff2009-10-08 07:24:58 +00005433 if (Context.hasSameType(Function->getType(), Method->getType())) {
5434 Instantiation = Method;
5435 InstantiatedFrom = Method->getInstantiatedFromMemberFunction();
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00005436 MSInfo = Method->getMemberSpecializationInfo();
Douglas Gregor251b4ff2009-10-08 07:24:58 +00005437 break;
5438 }
Douglas Gregor1fef4e62009-10-07 22:35:40 +00005439 }
5440 }
Douglas Gregor251b4ff2009-10-08 07:24:58 +00005441 } else if (isa<VarDecl>(Member)) {
John McCall68263142009-11-18 22:49:29 +00005442 VarDecl *PrevVar;
5443 if (Previous.isSingleResult() &&
5444 (PrevVar = dyn_cast<VarDecl>(Previous.getFoundDecl())))
Douglas Gregor251b4ff2009-10-08 07:24:58 +00005445 if (PrevVar->isStaticDataMember()) {
John McCall68263142009-11-18 22:49:29 +00005446 Instantiation = PrevVar;
Douglas Gregor251b4ff2009-10-08 07:24:58 +00005447 InstantiatedFrom = PrevVar->getInstantiatedFromStaticDataMember();
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00005448 MSInfo = PrevVar->getMemberSpecializationInfo();
Douglas Gregor251b4ff2009-10-08 07:24:58 +00005449 }
5450 } else if (isa<RecordDecl>(Member)) {
John McCall68263142009-11-18 22:49:29 +00005451 CXXRecordDecl *PrevRecord;
5452 if (Previous.isSingleResult() &&
5453 (PrevRecord = dyn_cast<CXXRecordDecl>(Previous.getFoundDecl()))) {
5454 Instantiation = PrevRecord;
Douglas Gregor251b4ff2009-10-08 07:24:58 +00005455 InstantiatedFrom = PrevRecord->getInstantiatedFromMemberClass();
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00005456 MSInfo = PrevRecord->getMemberSpecializationInfo();
Douglas Gregor251b4ff2009-10-08 07:24:58 +00005457 }
Douglas Gregor1fef4e62009-10-07 22:35:40 +00005458 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005459
Douglas Gregor1fef4e62009-10-07 22:35:40 +00005460 if (!Instantiation) {
Douglas Gregor251b4ff2009-10-08 07:24:58 +00005461 // There is no previous declaration that matches. Since member
Douglas Gregor1fef4e62009-10-07 22:35:40 +00005462 // specializations are always out-of-line, the caller will complain about
5463 // this mismatch later.
5464 return false;
5465 }
John McCall77e8b112010-04-13 20:37:33 +00005466
5467 // If this is a friend, just bail out here before we start turning
5468 // things into explicit specializations.
5469 if (Member->getFriendObjectKind() != Decl::FOK_None) {
5470 // Preserve instantiation information.
5471 if (InstantiatedFrom && isa<CXXMethodDecl>(Member)) {
5472 cast<CXXMethodDecl>(Member)->setInstantiationOfMemberFunction(
5473 cast<CXXMethodDecl>(InstantiatedFrom),
5474 cast<CXXMethodDecl>(Instantiation)->getTemplateSpecializationKind());
5475 } else if (InstantiatedFrom && isa<CXXRecordDecl>(Member)) {
5476 cast<CXXRecordDecl>(Member)->setInstantiationOfMemberClass(
5477 cast<CXXRecordDecl>(InstantiatedFrom),
5478 cast<CXXRecordDecl>(Instantiation)->getTemplateSpecializationKind());
5479 }
5480
5481 Previous.clear();
5482 Previous.addDecl(Instantiation);
5483 return false;
5484 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005485
Douglas Gregor251b4ff2009-10-08 07:24:58 +00005486 // Make sure that this is a specialization of a member.
5487 if (!InstantiatedFrom) {
5488 Diag(Member->getLocation(), diag::err_spec_member_not_instantiated)
5489 << Member;
Douglas Gregor1fef4e62009-10-07 22:35:40 +00005490 Diag(Instantiation->getLocation(), diag::note_specialized_decl);
5491 return true;
5492 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005493
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00005494 // C++ [temp.expl.spec]p6:
5495 // If a template, a member template or the member of a class template is
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005496 // explicitly specialized then that spe- cialization shall be declared
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00005497 // before the first use of that specialization that would cause an implicit
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005498 // instantiation to take place, in every translation unit in which such a
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00005499 // use occurs; no diagnostic is required.
5500 assert(MSInfo && "Member specialization info missing?");
John McCall75042392010-02-11 01:33:53 +00005501
Abramo Bagnarac98971d2010-06-12 07:44:57 +00005502 bool HasNoEffect = false;
John McCall75042392010-02-11 01:33:53 +00005503 if (CheckSpecializationInstantiationRedecl(Member->getLocation(),
5504 TSK_ExplicitSpecialization,
5505 Instantiation,
5506 MSInfo->getTemplateSpecializationKind(),
5507 MSInfo->getPointOfInstantiation(),
Abramo Bagnarac98971d2010-06-12 07:44:57 +00005508 HasNoEffect))
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00005509 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005510
Douglas Gregor1fef4e62009-10-07 22:35:40 +00005511 // Check the scope of this explicit specialization.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005512 if (CheckTemplateSpecializationScope(*this,
Douglas Gregor251b4ff2009-10-08 07:24:58 +00005513 InstantiatedFrom,
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005514 Instantiation, Member->getLocation(),
Douglas Gregor9302da62009-10-14 23:50:59 +00005515 false))
Douglas Gregor1fef4e62009-10-07 22:35:40 +00005516 return true;
Douglas Gregor2db32322009-10-07 23:56:10 +00005517
Douglas Gregor251b4ff2009-10-08 07:24:58 +00005518 // Note that this is an explicit instantiation of a member.
Douglas Gregorf6b11852009-10-08 15:14:33 +00005519 // the original declaration to note that it is an explicit specialization
5520 // (if it was previously an implicit instantiation). This latter step
5521 // makes bookkeeping easier.
Douglas Gregor251b4ff2009-10-08 07:24:58 +00005522 if (isa<FunctionDecl>(Member)) {
Douglas Gregorf6b11852009-10-08 15:14:33 +00005523 FunctionDecl *InstantiationFunction = cast<FunctionDecl>(Instantiation);
5524 if (InstantiationFunction->getTemplateSpecializationKind() ==
5525 TSK_ImplicitInstantiation) {
5526 InstantiationFunction->setTemplateSpecializationKind(
5527 TSK_ExplicitSpecialization);
5528 InstantiationFunction->setLocation(Member->getLocation());
5529 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005530
Douglas Gregor251b4ff2009-10-08 07:24:58 +00005531 cast<FunctionDecl>(Member)->setInstantiationOfMemberFunction(
5532 cast<CXXMethodDecl>(InstantiatedFrom),
5533 TSK_ExplicitSpecialization);
Argyrios Kyrtzidisbbc64542010-08-15 01:15:20 +00005534 MarkUnusedFileScopedDecl(InstantiationFunction);
Douglas Gregor251b4ff2009-10-08 07:24:58 +00005535 } else if (isa<VarDecl>(Member)) {
Douglas Gregorf6b11852009-10-08 15:14:33 +00005536 VarDecl *InstantiationVar = cast<VarDecl>(Instantiation);
5537 if (InstantiationVar->getTemplateSpecializationKind() ==
5538 TSK_ImplicitInstantiation) {
5539 InstantiationVar->setTemplateSpecializationKind(
5540 TSK_ExplicitSpecialization);
5541 InstantiationVar->setLocation(Member->getLocation());
5542 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005543
Douglas Gregor251b4ff2009-10-08 07:24:58 +00005544 Context.setInstantiatedFromStaticDataMember(cast<VarDecl>(Member),
5545 cast<VarDecl>(InstantiatedFrom),
5546 TSK_ExplicitSpecialization);
Argyrios Kyrtzidisbbc64542010-08-15 01:15:20 +00005547 MarkUnusedFileScopedDecl(InstantiationVar);
Douglas Gregor251b4ff2009-10-08 07:24:58 +00005548 } else {
5549 assert(isa<CXXRecordDecl>(Member) && "Only member classes remain");
Douglas Gregorf6b11852009-10-08 15:14:33 +00005550 CXXRecordDecl *InstantiationClass = cast<CXXRecordDecl>(Instantiation);
5551 if (InstantiationClass->getTemplateSpecializationKind() ==
5552 TSK_ImplicitInstantiation) {
5553 InstantiationClass->setTemplateSpecializationKind(
5554 TSK_ExplicitSpecialization);
5555 InstantiationClass->setLocation(Member->getLocation());
5556 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005557
Douglas Gregor251b4ff2009-10-08 07:24:58 +00005558 cast<CXXRecordDecl>(Member)->setInstantiationOfMemberClass(
Douglas Gregorf6b11852009-10-08 15:14:33 +00005559 cast<CXXRecordDecl>(InstantiatedFrom),
5560 TSK_ExplicitSpecialization);
Douglas Gregor251b4ff2009-10-08 07:24:58 +00005561 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005562
Douglas Gregor1fef4e62009-10-07 22:35:40 +00005563 // Save the caller the trouble of having to figure out which declaration
5564 // this specialization matches.
John McCall68263142009-11-18 22:49:29 +00005565 Previous.clear();
5566 Previous.addDecl(Instantiation);
Douglas Gregor1fef4e62009-10-07 22:35:40 +00005567 return false;
5568}
5569
Douglas Gregor558c0322009-10-14 23:41:34 +00005570/// \brief Check the scope of an explicit instantiation.
Douglas Gregor669eed82010-07-13 00:10:04 +00005571///
5572/// \returns true if a serious error occurs, false otherwise.
5573static bool CheckExplicitInstantiationScope(Sema &S, NamedDecl *D,
Douglas Gregor558c0322009-10-14 23:41:34 +00005574 SourceLocation InstLoc,
5575 bool WasQualifiedName) {
Sebastian Redl7a126a42010-08-31 00:36:30 +00005576 DeclContext *OrigContext= D->getDeclContext()->getEnclosingNamespaceContext();
5577 DeclContext *CurContext = S.CurContext->getRedeclContext();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005578
Douglas Gregor669eed82010-07-13 00:10:04 +00005579 if (CurContext->isRecord()) {
5580 S.Diag(InstLoc, diag::err_explicit_instantiation_in_class)
5581 << D;
5582 return true;
5583 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005584
Douglas Gregor558c0322009-10-14 23:41:34 +00005585 // C++0x [temp.explicit]p2:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005586 // An explicit instantiation shall appear in an enclosing namespace of its
Douglas Gregor558c0322009-10-14 23:41:34 +00005587 // template.
5588 //
5589 // This is DR275, which we do not retroactively apply to C++98/03.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005590 if (S.getLangOptions().CPlusPlus0x &&
Sebastian Redl7a126a42010-08-31 00:36:30 +00005591 !CurContext->Encloses(OrigContext)) {
5592 if (NamespaceDecl *NS = dyn_cast<NamespaceDecl>(OrigContext))
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005593 S.Diag(InstLoc,
5594 S.getLangOptions().CPlusPlus0x?
Douglas Gregor2166beb2010-05-11 17:39:34 +00005595 diag::err_explicit_instantiation_out_of_scope
5596 : diag::warn_explicit_instantiation_out_of_scope_0x)
Douglas Gregor558c0322009-10-14 23:41:34 +00005597 << D << NS;
5598 else
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005599 S.Diag(InstLoc,
Douglas Gregor2166beb2010-05-11 17:39:34 +00005600 S.getLangOptions().CPlusPlus0x?
5601 diag::err_explicit_instantiation_must_be_global
5602 : diag::warn_explicit_instantiation_out_of_scope_0x)
Douglas Gregor558c0322009-10-14 23:41:34 +00005603 << D;
5604 S.Diag(D->getLocation(), diag::note_explicit_instantiation_here);
Douglas Gregor669eed82010-07-13 00:10:04 +00005605 return false;
Douglas Gregor558c0322009-10-14 23:41:34 +00005606 }
Sebastian Redl7a126a42010-08-31 00:36:30 +00005607
Douglas Gregor558c0322009-10-14 23:41:34 +00005608 // C++0x [temp.explicit]p2:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005609 // If the name declared in the explicit instantiation is an unqualified
5610 // name, the explicit instantiation shall appear in the namespace where
Douglas Gregor558c0322009-10-14 23:41:34 +00005611 // its template is declared or, if that namespace is inline (7.3.1), any
5612 // namespace from its enclosing namespace set.
5613 if (WasQualifiedName)
Douglas Gregor669eed82010-07-13 00:10:04 +00005614 return false;
Sebastian Redl7a126a42010-08-31 00:36:30 +00005615
5616 if (CurContext->InEnclosingNamespaceSetOf(OrigContext))
Douglas Gregor669eed82010-07-13 00:10:04 +00005617 return false;
Sebastian Redl7a126a42010-08-31 00:36:30 +00005618
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005619 S.Diag(InstLoc,
Douglas Gregor2166beb2010-05-11 17:39:34 +00005620 S.getLangOptions().CPlusPlus0x?
5621 diag::err_explicit_instantiation_unqualified_wrong_namespace
5622 : diag::warn_explicit_instantiation_unqualified_wrong_namespace_0x)
Sebastian Redl7a126a42010-08-31 00:36:30 +00005623 << D << OrigContext;
Douglas Gregor558c0322009-10-14 23:41:34 +00005624 S.Diag(D->getLocation(), diag::note_explicit_instantiation_here);
Douglas Gregor669eed82010-07-13 00:10:04 +00005625 return false;
Douglas Gregor558c0322009-10-14 23:41:34 +00005626}
5627
5628/// \brief Determine whether the given scope specifier has a template-id in it.
5629static bool ScopeSpecifierHasTemplateId(const CXXScopeSpec &SS) {
5630 if (!SS.isSet())
5631 return false;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005632
Douglas Gregor558c0322009-10-14 23:41:34 +00005633 // C++0x [temp.explicit]p2:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005634 // If the explicit instantiation is for a member function, a member class
Douglas Gregor558c0322009-10-14 23:41:34 +00005635 // or a static data member of a class template specialization, the name of
5636 // the class template specialization in the qualified-id for the member
5637 // name shall be a simple-template-id.
5638 //
5639 // C++98 has the same restriction, just worded differently.
5640 for (NestedNameSpecifier *NNS = (NestedNameSpecifier *)SS.getScopeRep();
5641 NNS; NNS = NNS->getPrefix())
John McCallf4c73712011-01-19 06:33:43 +00005642 if (const Type *T = NNS->getAsType())
Douglas Gregor558c0322009-10-14 23:41:34 +00005643 if (isa<TemplateSpecializationType>(T))
5644 return true;
5645
5646 return false;
5647}
5648
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00005649// Explicit instantiation of a class template specialization
John McCallf312b1e2010-08-26 23:41:50 +00005650DeclResult
Mike Stump1eb44332009-09-09 15:08:12 +00005651Sema::ActOnExplicitInstantiation(Scope *S,
Douglas Gregor45f96552009-09-04 06:33:52 +00005652 SourceLocation ExternLoc,
5653 SourceLocation TemplateLoc,
Mike Stump1eb44332009-09-09 15:08:12 +00005654 unsigned TagSpec,
Douglas Gregor93dfdb12009-05-13 00:25:59 +00005655 SourceLocation KWLoc,
5656 const CXXScopeSpec &SS,
5657 TemplateTy TemplateD,
5658 SourceLocation TemplateNameLoc,
5659 SourceLocation LAngleLoc,
5660 ASTTemplateArgsPtr TemplateArgsIn,
Douglas Gregor93dfdb12009-05-13 00:25:59 +00005661 SourceLocation RAngleLoc,
5662 AttributeList *Attr) {
5663 // Find the class template we're specializing
5664 TemplateName Name = TemplateD.getAsVal<TemplateName>();
Mike Stump1eb44332009-09-09 15:08:12 +00005665 ClassTemplateDecl *ClassTemplate
Douglas Gregor93dfdb12009-05-13 00:25:59 +00005666 = cast<ClassTemplateDecl>(Name.getAsTemplateDecl());
5667
5668 // Check that the specialization uses the same tag kind as the
5669 // original template.
Abramo Bagnara465d41b2010-05-11 21:36:43 +00005670 TagTypeKind Kind = TypeWithKeyword::getTagTypeKindForTypeSpec(TagSpec);
5671 assert(Kind != TTK_Enum &&
5672 "Invalid enum tag in class template explicit instantiation!");
Douglas Gregor501c5ce2009-05-14 16:41:31 +00005673 if (!isAcceptableTagRedeclaration(ClassTemplate->getTemplatedDecl(),
Mike Stump1eb44332009-09-09 15:08:12 +00005674 Kind, KWLoc,
Douglas Gregor501c5ce2009-05-14 16:41:31 +00005675 *ClassTemplate->getIdentifier())) {
Mike Stump1eb44332009-09-09 15:08:12 +00005676 Diag(KWLoc, diag::err_use_with_wrong_tag)
Douglas Gregor93dfdb12009-05-13 00:25:59 +00005677 << ClassTemplate
Douglas Gregor849b2432010-03-31 17:46:05 +00005678 << FixItHint::CreateReplacement(KWLoc,
Douglas Gregor93dfdb12009-05-13 00:25:59 +00005679 ClassTemplate->getTemplatedDecl()->getKindName());
Mike Stump1eb44332009-09-09 15:08:12 +00005680 Diag(ClassTemplate->getTemplatedDecl()->getLocation(),
Douglas Gregor93dfdb12009-05-13 00:25:59 +00005681 diag::note_previous_use);
5682 Kind = ClassTemplate->getTemplatedDecl()->getTagKind();
5683 }
5684
Douglas Gregor558c0322009-10-14 23:41:34 +00005685 // C++0x [temp.explicit]p2:
5686 // There are two forms of explicit instantiation: an explicit instantiation
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005687 // definition and an explicit instantiation declaration. An explicit
5688 // instantiation declaration begins with the extern keyword. [...]
Douglas Gregord5cb8762009-10-07 00:13:32 +00005689 TemplateSpecializationKind TSK
5690 = ExternLoc.isInvalid()? TSK_ExplicitInstantiationDefinition
5691 : TSK_ExplicitInstantiationDeclaration;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005692
Douglas Gregor93dfdb12009-05-13 00:25:59 +00005693 // Translate the parser's template argument list in our AST format.
John McCalld5532b62009-11-23 01:53:49 +00005694 TemplateArgumentListInfo TemplateArgs(LAngleLoc, RAngleLoc);
Douglas Gregor314b97f2009-11-10 19:49:08 +00005695 translateTemplateArguments(TemplateArgsIn, TemplateArgs);
Douglas Gregor93dfdb12009-05-13 00:25:59 +00005696
5697 // Check that the template argument list is well-formed for this
5698 // template.
Douglas Gregor910f8002010-11-07 23:05:16 +00005699 llvm::SmallVector<TemplateArgument, 4> Converted;
John McCalld5532b62009-11-23 01:53:49 +00005700 if (CheckTemplateArgumentList(ClassTemplate, TemplateNameLoc,
5701 TemplateArgs, false, Converted))
Douglas Gregor93dfdb12009-05-13 00:25:59 +00005702 return true;
5703
Douglas Gregor910f8002010-11-07 23:05:16 +00005704 assert((Converted.size() == ClassTemplate->getTemplateParameters()->size()) &&
Douglas Gregor93dfdb12009-05-13 00:25:59 +00005705 "Converted template argument list is too short!");
Mike Stump1eb44332009-09-09 15:08:12 +00005706
Douglas Gregor93dfdb12009-05-13 00:25:59 +00005707 // Find the class template specialization declaration that
5708 // corresponds to these arguments.
Douglas Gregor93dfdb12009-05-13 00:25:59 +00005709 void *InsertPos = 0;
5710 ClassTemplateSpecializationDecl *PrevDecl
Douglas Gregor910f8002010-11-07 23:05:16 +00005711 = ClassTemplate->findSpecialization(Converted.data(),
5712 Converted.size(), InsertPos);
Douglas Gregor93dfdb12009-05-13 00:25:59 +00005713
Abramo Bagnarac98971d2010-06-12 07:44:57 +00005714 TemplateSpecializationKind PrevDecl_TSK
5715 = PrevDecl ? PrevDecl->getTemplateSpecializationKind() : TSK_Undeclared;
5716
Douglas Gregord5cb8762009-10-07 00:13:32 +00005717 // C++0x [temp.explicit]p2:
5718 // [...] An explicit instantiation shall appear in an enclosing
5719 // namespace of its template. [...]
5720 //
5721 // This is C++ DR 275.
Douglas Gregor669eed82010-07-13 00:10:04 +00005722 if (CheckExplicitInstantiationScope(*this, ClassTemplate, TemplateNameLoc,
5723 SS.isSet()))
5724 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005725
Douglas Gregor93dfdb12009-05-13 00:25:59 +00005726 ClassTemplateSpecializationDecl *Specialization = 0;
5727
Abramo Bagnarac98971d2010-06-12 07:44:57 +00005728 bool HasNoEffect = false;
Douglas Gregor93dfdb12009-05-13 00:25:59 +00005729 if (PrevDecl) {
Douglas Gregor0d035142009-10-27 18:42:08 +00005730 if (CheckSpecializationInstantiationRedecl(TemplateNameLoc, TSK,
Abramo Bagnarac98971d2010-06-12 07:44:57 +00005731 PrevDecl, PrevDecl_TSK,
Douglas Gregor89a5bea2009-10-15 22:53:21 +00005732 PrevDecl->getPointOfInstantiation(),
Abramo Bagnarac98971d2010-06-12 07:44:57 +00005733 HasNoEffect))
John McCalld226f652010-08-21 09:40:31 +00005734 return PrevDecl;
Douglas Gregor93dfdb12009-05-13 00:25:59 +00005735
Abramo Bagnarac98971d2010-06-12 07:44:57 +00005736 // Even though HasNoEffect == true means that this explicit instantiation
5737 // has no effect on semantics, we go on to put its syntax in the AST.
5738
5739 if (PrevDecl_TSK == TSK_ImplicitInstantiation ||
5740 PrevDecl_TSK == TSK_Undeclared) {
Douglas Gregor52604ab2009-09-11 21:19:12 +00005741 // Since the only prior class template specialization with these
5742 // arguments was referenced but not declared, reuse that
Abramo Bagnarac98971d2010-06-12 07:44:57 +00005743 // declaration node as our own, updating the source location
5744 // for the template name to reflect our new declaration.
5745 // (Other source locations will be updated later.)
Douglas Gregor52604ab2009-09-11 21:19:12 +00005746 Specialization = PrevDecl;
5747 Specialization->setLocation(TemplateNameLoc);
5748 PrevDecl = 0;
5749 }
Douglas Gregor89a5bea2009-10-15 22:53:21 +00005750 }
Abramo Bagnarac98971d2010-06-12 07:44:57 +00005751
Douglas Gregor52604ab2009-09-11 21:19:12 +00005752 if (!Specialization) {
Douglas Gregor93dfdb12009-05-13 00:25:59 +00005753 // Create a new class template specialization declaration node for
5754 // this explicit specialization.
5755 Specialization
Douglas Gregor13c85772010-05-06 00:28:52 +00005756 = ClassTemplateSpecializationDecl::Create(Context, Kind,
Douglas Gregor93dfdb12009-05-13 00:25:59 +00005757 ClassTemplate->getDeclContext(),
Abramo Bagnaraba877ad2011-03-09 14:09:51 +00005758 KWLoc, TemplateNameLoc,
Douglas Gregor93dfdb12009-05-13 00:25:59 +00005759 ClassTemplate,
Douglas Gregor910f8002010-11-07 23:05:16 +00005760 Converted.data(),
5761 Converted.size(),
5762 PrevDecl);
John McCallb6217662010-03-15 10:12:16 +00005763 SetNestedNameSpecifier(Specialization, SS);
Douglas Gregor93dfdb12009-05-13 00:25:59 +00005764
Argyrios Kyrtzidiscc0b1bc2010-07-20 13:59:28 +00005765 if (!HasNoEffect && !PrevDecl) {
Abramo Bagnarac98971d2010-06-12 07:44:57 +00005766 // Insert the new specialization.
Argyrios Kyrtzidiscc0b1bc2010-07-20 13:59:28 +00005767 ClassTemplate->AddSpecialization(Specialization, InsertPos);
Abramo Bagnarac98971d2010-06-12 07:44:57 +00005768 }
Douglas Gregor93dfdb12009-05-13 00:25:59 +00005769 }
5770
5771 // Build the fully-sugared type for this explicit instantiation as
5772 // the user wrote in the explicit instantiation itself. This means
5773 // that we'll pretty-print the type retrieved from the
5774 // specialization's declaration the way that the user actually wrote
5775 // the explicit instantiation, rather than formatting the name based
5776 // on the "canonical" representation used to store the template
5777 // arguments in the specialization.
John McCall3cb0ebd2010-03-10 03:28:59 +00005778 TypeSourceInfo *WrittenTy
5779 = Context.getTemplateSpecializationTypeInfo(Name, TemplateNameLoc,
5780 TemplateArgs,
Douglas Gregor93dfdb12009-05-13 00:25:59 +00005781 Context.getTypeDeclType(Specialization));
5782 Specialization->setTypeAsWritten(WrittenTy);
5783 TemplateArgsIn.release();
5784
Abramo Bagnarac98971d2010-06-12 07:44:57 +00005785 // Set source locations for keywords.
5786 Specialization->setExternLoc(ExternLoc);
5787 Specialization->setTemplateKeywordLoc(TemplateLoc);
5788
5789 // Add the explicit instantiation into its lexical context. However,
5790 // since explicit instantiations are never found by name lookup, we
5791 // just put it into the declaration context directly.
5792 Specialization->setLexicalDeclContext(CurContext);
5793 CurContext->addDecl(Specialization);
5794
5795 // Syntax is now OK, so return if it has no other effect on semantics.
5796 if (HasNoEffect) {
5797 // Set the template specialization kind.
5798 Specialization->setTemplateSpecializationKind(TSK);
John McCalld226f652010-08-21 09:40:31 +00005799 return Specialization;
Douglas Gregord78f5982009-11-25 06:01:46 +00005800 }
Douglas Gregor93dfdb12009-05-13 00:25:59 +00005801
5802 // C++ [temp.explicit]p3:
Douglas Gregor93dfdb12009-05-13 00:25:59 +00005803 // A definition of a class template or class member template
5804 // shall be in scope at the point of the explicit instantiation of
5805 // the class template or class member template.
5806 //
5807 // This check comes when we actually try to perform the
5808 // instantiation.
Douglas Gregor89a5bea2009-10-15 22:53:21 +00005809 ClassTemplateSpecializationDecl *Def
5810 = cast_or_null<ClassTemplateSpecializationDecl>(
Douglas Gregor952b0172010-02-11 01:04:33 +00005811 Specialization->getDefinition());
Douglas Gregor89a5bea2009-10-15 22:53:21 +00005812 if (!Def)
Douglas Gregor972e6ce2009-10-27 06:26:26 +00005813 InstantiateClassTemplateSpecialization(TemplateNameLoc, Specialization, TSK);
Abramo Bagnarac98971d2010-06-12 07:44:57 +00005814 else if (TSK == TSK_ExplicitInstantiationDefinition) {
Douglas Gregor6fb745b2010-05-13 16:44:06 +00005815 MarkVTableUsed(TemplateNameLoc, Specialization, true);
Abramo Bagnarac98971d2010-06-12 07:44:57 +00005816 Specialization->setPointOfInstantiation(Def->getPointOfInstantiation());
5817 }
Douglas Gregor6fb745b2010-05-13 16:44:06 +00005818
Douglas Gregor0d035142009-10-27 18:42:08 +00005819 // Instantiate the members of this class template specialization.
5820 Def = cast_or_null<ClassTemplateSpecializationDecl>(
Douglas Gregor952b0172010-02-11 01:04:33 +00005821 Specialization->getDefinition());
Rafael Espindolab0f65ca2010-03-22 23:12:48 +00005822 if (Def) {
Rafael Espindolaf075b222010-03-23 19:55:22 +00005823 TemplateSpecializationKind Old_TSK = Def->getTemplateSpecializationKind();
5824
5825 // Fix a TSK_ExplicitInstantiationDeclaration followed by a
5826 // TSK_ExplicitInstantiationDefinition
5827 if (Old_TSK == TSK_ExplicitInstantiationDeclaration &&
5828 TSK == TSK_ExplicitInstantiationDefinition)
5829 Def->setTemplateSpecializationKind(TSK);
Rafael Espindolab0f65ca2010-03-22 23:12:48 +00005830
Douglas Gregor89a5bea2009-10-15 22:53:21 +00005831 InstantiateClassTemplateSpecializationMembers(TemplateNameLoc, Def, TSK);
Rafael Espindolab0f65ca2010-03-22 23:12:48 +00005832 }
Douglas Gregor93dfdb12009-05-13 00:25:59 +00005833
Abramo Bagnarac98971d2010-06-12 07:44:57 +00005834 // Set the template specialization kind.
5835 Specialization->setTemplateSpecializationKind(TSK);
John McCalld226f652010-08-21 09:40:31 +00005836 return Specialization;
Douglas Gregor93dfdb12009-05-13 00:25:59 +00005837}
5838
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00005839// Explicit instantiation of a member class of a class template.
John McCalld226f652010-08-21 09:40:31 +00005840DeclResult
Mike Stump1eb44332009-09-09 15:08:12 +00005841Sema::ActOnExplicitInstantiation(Scope *S,
Douglas Gregor45f96552009-09-04 06:33:52 +00005842 SourceLocation ExternLoc,
5843 SourceLocation TemplateLoc,
Mike Stump1eb44332009-09-09 15:08:12 +00005844 unsigned TagSpec,
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00005845 SourceLocation KWLoc,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00005846 CXXScopeSpec &SS,
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00005847 IdentifierInfo *Name,
5848 SourceLocation NameLoc,
5849 AttributeList *Attr) {
5850
Douglas Gregor402abb52009-05-28 23:31:59 +00005851 bool Owned = false;
John McCallc4e70192009-09-11 04:59:25 +00005852 bool IsDependent = false;
John McCallf312b1e2010-08-26 23:41:50 +00005853 Decl *TagD = ActOnTag(S, TagSpec, Sema::TUK_Reference,
John McCalld226f652010-08-21 09:40:31 +00005854 KWLoc, SS, Name, NameLoc, Attr, AS_none,
5855 MultiTemplateParamsArg(*this, 0, 0),
Abramo Bagnaraa88cefd2010-12-03 18:54:17 +00005856 Owned, IsDependent, false, false,
Douglas Gregor1274ccd2010-10-08 23:50:27 +00005857 TypeResult());
John McCallc4e70192009-09-11 04:59:25 +00005858 assert(!IsDependent && "explicit instantiation of dependent name not yet handled");
5859
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00005860 if (!TagD)
5861 return true;
5862
John McCalld226f652010-08-21 09:40:31 +00005863 TagDecl *Tag = cast<TagDecl>(TagD);
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00005864 if (Tag->isEnum()) {
5865 Diag(TemplateLoc, diag::err_explicit_instantiation_enum)
5866 << Context.getTypeDeclType(Tag);
5867 return true;
5868 }
5869
Douglas Gregord0c87372009-05-27 17:30:49 +00005870 if (Tag->isInvalidDecl())
5871 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005872
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00005873 CXXRecordDecl *Record = cast<CXXRecordDecl>(Tag);
5874 CXXRecordDecl *Pattern = Record->getInstantiatedFromMemberClass();
5875 if (!Pattern) {
5876 Diag(TemplateLoc, diag::err_explicit_instantiation_nontemplate_type)
5877 << Context.getTypeDeclType(Record);
5878 Diag(Record->getLocation(), diag::note_nontemplate_decl_here);
5879 return true;
5880 }
5881
Douglas Gregor558c0322009-10-14 23:41:34 +00005882 // C++0x [temp.explicit]p2:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005883 // If the explicit instantiation is for a class or member class, the
5884 // elaborated-type-specifier in the declaration shall include a
Douglas Gregor558c0322009-10-14 23:41:34 +00005885 // simple-template-id.
5886 //
5887 // C++98 has the same restriction, just worded differently.
5888 if (!ScopeSpecifierHasTemplateId(SS))
Douglas Gregora2dd8282010-06-16 16:26:47 +00005889 Diag(TemplateLoc, diag::ext_explicit_instantiation_without_qualified_id)
Douglas Gregor558c0322009-10-14 23:41:34 +00005890 << Record << SS.getRange();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005891
Douglas Gregor558c0322009-10-14 23:41:34 +00005892 // C++0x [temp.explicit]p2:
5893 // There are two forms of explicit instantiation: an explicit instantiation
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005894 // definition and an explicit instantiation declaration. An explicit
Douglas Gregor558c0322009-10-14 23:41:34 +00005895 // instantiation declaration begins with the extern keyword. [...]
Douglas Gregora74bbe22009-10-14 21:46:58 +00005896 TemplateSpecializationKind TSK
5897 = ExternLoc.isInvalid()? TSK_ExplicitInstantiationDefinition
5898 : TSK_ExplicitInstantiationDeclaration;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005899
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00005900 // C++0x [temp.explicit]p2:
5901 // [...] An explicit instantiation shall appear in an enclosing
5902 // namespace of its template. [...]
5903 //
5904 // This is C++ DR 275.
Douglas Gregor558c0322009-10-14 23:41:34 +00005905 CheckExplicitInstantiationScope(*this, Record, NameLoc, true);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005906
Douglas Gregor454885e2009-10-15 15:54:05 +00005907 // Verify that it is okay to explicitly instantiate here.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005908 CXXRecordDecl *PrevDecl
Douglas Gregor583f33b2009-10-15 18:07:02 +00005909 = cast_or_null<CXXRecordDecl>(Record->getPreviousDeclaration());
Douglas Gregor952b0172010-02-11 01:04:33 +00005910 if (!PrevDecl && Record->getDefinition())
Douglas Gregor583f33b2009-10-15 18:07:02 +00005911 PrevDecl = Record;
5912 if (PrevDecl) {
Douglas Gregor454885e2009-10-15 15:54:05 +00005913 MemberSpecializationInfo *MSInfo = PrevDecl->getMemberSpecializationInfo();
Abramo Bagnarac98971d2010-06-12 07:44:57 +00005914 bool HasNoEffect = false;
Douglas Gregor454885e2009-10-15 15:54:05 +00005915 assert(MSInfo && "No member specialization information?");
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005916 if (CheckSpecializationInstantiationRedecl(TemplateLoc, TSK,
Douglas Gregor454885e2009-10-15 15:54:05 +00005917 PrevDecl,
5918 MSInfo->getTemplateSpecializationKind(),
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005919 MSInfo->getPointOfInstantiation(),
Abramo Bagnarac98971d2010-06-12 07:44:57 +00005920 HasNoEffect))
Douglas Gregor454885e2009-10-15 15:54:05 +00005921 return true;
Abramo Bagnarac98971d2010-06-12 07:44:57 +00005922 if (HasNoEffect)
Douglas Gregor454885e2009-10-15 15:54:05 +00005923 return TagD;
5924 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005925
Douglas Gregor89a5bea2009-10-15 22:53:21 +00005926 CXXRecordDecl *RecordDef
Douglas Gregor952b0172010-02-11 01:04:33 +00005927 = cast_or_null<CXXRecordDecl>(Record->getDefinition());
Douglas Gregor89a5bea2009-10-15 22:53:21 +00005928 if (!RecordDef) {
Douglas Gregorbf7643e2009-10-15 12:53:22 +00005929 // C++ [temp.explicit]p3:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005930 // A definition of a member class of a class template shall be in scope
Douglas Gregorbf7643e2009-10-15 12:53:22 +00005931 // at the point of an explicit instantiation of the member class.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005932 CXXRecordDecl *Def
Douglas Gregor952b0172010-02-11 01:04:33 +00005933 = cast_or_null<CXXRecordDecl>(Pattern->getDefinition());
Douglas Gregorbf7643e2009-10-15 12:53:22 +00005934 if (!Def) {
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00005935 Diag(TemplateLoc, diag::err_explicit_instantiation_undefined_member)
5936 << 0 << Record->getDeclName() << Record->getDeclContext();
Douglas Gregorbf7643e2009-10-15 12:53:22 +00005937 Diag(Pattern->getLocation(), diag::note_forward_declaration)
5938 << Pattern;
5939 return true;
Douglas Gregor0d035142009-10-27 18:42:08 +00005940 } else {
5941 if (InstantiateClass(NameLoc, Record, Def,
5942 getTemplateInstantiationArgs(Record),
5943 TSK))
5944 return true;
5945
Douglas Gregor952b0172010-02-11 01:04:33 +00005946 RecordDef = cast_or_null<CXXRecordDecl>(Record->getDefinition());
Douglas Gregor0d035142009-10-27 18:42:08 +00005947 if (!RecordDef)
5948 return true;
5949 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005950 }
5951
Douglas Gregor0d035142009-10-27 18:42:08 +00005952 // Instantiate all of the members of the class.
5953 InstantiateClassMembers(NameLoc, RecordDef,
5954 getTemplateInstantiationArgs(Record), TSK);
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00005955
Douglas Gregor6fb745b2010-05-13 16:44:06 +00005956 if (TSK == TSK_ExplicitInstantiationDefinition)
5957 MarkVTableUsed(NameLoc, RecordDef, true);
5958
Mike Stump390b4cc2009-05-16 07:39:55 +00005959 // FIXME: We don't have any representation for explicit instantiations of
5960 // member classes. Such a representation is not needed for compilation, but it
5961 // should be available for clients that want to see all of the declarations in
5962 // the source code.
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00005963 return TagD;
5964}
5965
John McCallf312b1e2010-08-26 23:41:50 +00005966DeclResult Sema::ActOnExplicitInstantiation(Scope *S,
5967 SourceLocation ExternLoc,
5968 SourceLocation TemplateLoc,
5969 Declarator &D) {
Douglas Gregord5a423b2009-09-25 18:43:00 +00005970 // Explicit instantiations always require a name.
Abramo Bagnara25777432010-08-11 22:01:17 +00005971 // TODO: check if/when DNInfo should replace Name.
5972 DeclarationNameInfo NameInfo = GetNameForDeclarator(D);
5973 DeclarationName Name = NameInfo.getName();
Douglas Gregord5a423b2009-09-25 18:43:00 +00005974 if (!Name) {
5975 if (!D.isInvalidType())
5976 Diag(D.getDeclSpec().getSourceRange().getBegin(),
5977 diag::err_explicit_instantiation_requires_name)
5978 << D.getDeclSpec().getSourceRange()
5979 << D.getSourceRange();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005980
Douglas Gregord5a423b2009-09-25 18:43:00 +00005981 return true;
5982 }
5983
5984 // The scope passed in may not be a decl scope. Zip up the scope tree until
5985 // we find one that is.
5986 while ((S->getFlags() & Scope::DeclScope) == 0 ||
5987 (S->getFlags() & Scope::TemplateParamScope) != 0)
5988 S = S->getParent();
5989
5990 // Determine the type of the declaration.
John McCallbf1a0282010-06-04 23:28:52 +00005991 TypeSourceInfo *T = GetTypeForDeclarator(D, S);
5992 QualType R = T->getType();
Douglas Gregord5a423b2009-09-25 18:43:00 +00005993 if (R.isNull())
5994 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005995
Douglas Gregord5a423b2009-09-25 18:43:00 +00005996 if (D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_typedef) {
5997 // Cannot explicitly instantiate a typedef.
5998 Diag(D.getIdentifierLoc(), diag::err_explicit_instantiation_of_typedef)
5999 << Name;
6000 return true;
6001 }
6002
Douglas Gregor663b5a02009-10-14 20:14:33 +00006003 // C++0x [temp.explicit]p1:
6004 // [...] An explicit instantiation of a function template shall not use the
6005 // inline or constexpr specifiers.
6006 // Presumably, this also applies to member functions of class templates as
6007 // well.
6008 if (D.getDeclSpec().isInlineSpecified() && getLangOptions().CPlusPlus0x)
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006009 Diag(D.getDeclSpec().getInlineSpecLoc(),
Douglas Gregor663b5a02009-10-14 20:14:33 +00006010 diag::err_explicit_instantiation_inline)
Douglas Gregor849b2432010-03-31 17:46:05 +00006011 <<FixItHint::CreateRemoval(D.getDeclSpec().getInlineSpecLoc());
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006012
Douglas Gregor663b5a02009-10-14 20:14:33 +00006013 // FIXME: check for constexpr specifier.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006014
Douglas Gregor558c0322009-10-14 23:41:34 +00006015 // C++0x [temp.explicit]p2:
6016 // There are two forms of explicit instantiation: an explicit instantiation
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006017 // definition and an explicit instantiation declaration. An explicit
6018 // instantiation declaration begins with the extern keyword. [...]
Douglas Gregord5a423b2009-09-25 18:43:00 +00006019 TemplateSpecializationKind TSK
6020 = ExternLoc.isInvalid()? TSK_ExplicitInstantiationDefinition
6021 : TSK_ExplicitInstantiationDeclaration;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006022
Abramo Bagnara25777432010-08-11 22:01:17 +00006023 LookupResult Previous(*this, NameInfo, LookupOrdinaryName);
John McCalla24dc2e2009-11-17 02:14:36 +00006024 LookupParsedName(Previous, S, &D.getCXXScopeSpec());
Douglas Gregord5a423b2009-09-25 18:43:00 +00006025
6026 if (!R->isFunctionType()) {
6027 // C++ [temp.explicit]p1:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006028 // A [...] static data member of a class template can be explicitly
6029 // instantiated from the member definition associated with its class
Douglas Gregord5a423b2009-09-25 18:43:00 +00006030 // template.
John McCalla24dc2e2009-11-17 02:14:36 +00006031 if (Previous.isAmbiguous())
6032 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006033
John McCall1bcee0a2009-12-02 08:25:40 +00006034 VarDecl *Prev = Previous.getAsSingle<VarDecl>();
Douglas Gregord5a423b2009-09-25 18:43:00 +00006035 if (!Prev || !Prev->isStaticDataMember()) {
6036 // We expect to see a data data member here.
6037 Diag(D.getIdentifierLoc(), diag::err_explicit_instantiation_not_known)
6038 << Name;
6039 for (LookupResult::iterator P = Previous.begin(), PEnd = Previous.end();
6040 P != PEnd; ++P)
John McCallf36e02d2009-10-09 21:13:30 +00006041 Diag((*P)->getLocation(), diag::note_explicit_instantiation_here);
Douglas Gregord5a423b2009-09-25 18:43:00 +00006042 return true;
6043 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006044
Douglas Gregord5a423b2009-09-25 18:43:00 +00006045 if (!Prev->getInstantiatedFromStaticDataMember()) {
6046 // FIXME: Check for explicit specialization?
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006047 Diag(D.getIdentifierLoc(),
Douglas Gregord5a423b2009-09-25 18:43:00 +00006048 diag::err_explicit_instantiation_data_member_not_instantiated)
6049 << Prev;
6050 Diag(Prev->getLocation(), diag::note_explicit_instantiation_here);
6051 // FIXME: Can we provide a note showing where this was declared?
6052 return true;
6053 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006054
Douglas Gregor558c0322009-10-14 23:41:34 +00006055 // C++0x [temp.explicit]p2:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006056 // If the explicit instantiation is for a member function, a member class
Douglas Gregor558c0322009-10-14 23:41:34 +00006057 // or a static data member of a class template specialization, the name of
6058 // the class template specialization in the qualified-id for the member
6059 // name shall be a simple-template-id.
6060 //
6061 // C++98 has the same restriction, just worded differently.
6062 if (!ScopeSpecifierHasTemplateId(D.getCXXScopeSpec()))
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006063 Diag(D.getIdentifierLoc(),
Douglas Gregora2dd8282010-06-16 16:26:47 +00006064 diag::ext_explicit_instantiation_without_qualified_id)
Douglas Gregor558c0322009-10-14 23:41:34 +00006065 << Prev << D.getCXXScopeSpec().getRange();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006066
Douglas Gregor558c0322009-10-14 23:41:34 +00006067 // Check the scope of this explicit instantiation.
6068 CheckExplicitInstantiationScope(*this, Prev, D.getIdentifierLoc(), true);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006069
Douglas Gregor454885e2009-10-15 15:54:05 +00006070 // Verify that it is okay to explicitly instantiate here.
6071 MemberSpecializationInfo *MSInfo = Prev->getMemberSpecializationInfo();
6072 assert(MSInfo && "Missing static data member specialization info?");
Abramo Bagnarac98971d2010-06-12 07:44:57 +00006073 bool HasNoEffect = false;
Douglas Gregor0d035142009-10-27 18:42:08 +00006074 if (CheckSpecializationInstantiationRedecl(D.getIdentifierLoc(), TSK, Prev,
Douglas Gregor454885e2009-10-15 15:54:05 +00006075 MSInfo->getTemplateSpecializationKind(),
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006076 MSInfo->getPointOfInstantiation(),
Abramo Bagnarac98971d2010-06-12 07:44:57 +00006077 HasNoEffect))
Douglas Gregor454885e2009-10-15 15:54:05 +00006078 return true;
Abramo Bagnarac98971d2010-06-12 07:44:57 +00006079 if (HasNoEffect)
John McCalld226f652010-08-21 09:40:31 +00006080 return (Decl*) 0;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006081
Douglas Gregord5a423b2009-09-25 18:43:00 +00006082 // Instantiate static data member.
Douglas Gregor0a897e32009-10-15 17:21:20 +00006083 Prev->setTemplateSpecializationKind(TSK, D.getIdentifierLoc());
Douglas Gregord5a423b2009-09-25 18:43:00 +00006084 if (TSK == TSK_ExplicitInstantiationDefinition)
Chandler Carruth58e390e2010-08-25 08:27:02 +00006085 InstantiateStaticDataMemberDefinition(D.getIdentifierLoc(), Prev);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006086
Douglas Gregord5a423b2009-09-25 18:43:00 +00006087 // FIXME: Create an ExplicitInstantiation node?
John McCalld226f652010-08-21 09:40:31 +00006088 return (Decl*) 0;
Douglas Gregord5a423b2009-09-25 18:43:00 +00006089 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006090
6091 // If the declarator is a template-id, translate the parser's template
Douglas Gregor0b60d9e2009-09-25 23:53:26 +00006092 // argument list into our AST format.
Douglas Gregordb422df2009-09-25 21:45:23 +00006093 bool HasExplicitTemplateArgs = false;
John McCalld5532b62009-11-23 01:53:49 +00006094 TemplateArgumentListInfo TemplateArgs;
Douglas Gregor3f9a0562009-11-03 01:35:08 +00006095 if (D.getName().getKind() == UnqualifiedId::IK_TemplateId) {
6096 TemplateIdAnnotation *TemplateId = D.getName().TemplateId;
John McCalld5532b62009-11-23 01:53:49 +00006097 TemplateArgs.setLAngleLoc(TemplateId->LAngleLoc);
6098 TemplateArgs.setRAngleLoc(TemplateId->RAngleLoc);
Douglas Gregordb422df2009-09-25 21:45:23 +00006099 ASTTemplateArgsPtr TemplateArgsPtr(*this,
6100 TemplateId->getTemplateArgs(),
Douglas Gregordb422df2009-09-25 21:45:23 +00006101 TemplateId->NumArgs);
John McCalld5532b62009-11-23 01:53:49 +00006102 translateTemplateArguments(TemplateArgsPtr, TemplateArgs);
Douglas Gregordb422df2009-09-25 21:45:23 +00006103 HasExplicitTemplateArgs = true;
Douglas Gregorb2f81cf2009-10-01 23:51:25 +00006104 TemplateArgsPtr.release();
Douglas Gregordb422df2009-09-25 21:45:23 +00006105 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006106
Douglas Gregord5a423b2009-09-25 18:43:00 +00006107 // C++ [temp.explicit]p1:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006108 // A [...] function [...] can be explicitly instantiated from its template.
6109 // A member function [...] of a class template can be explicitly
6110 // instantiated from the member definition associated with its class
Douglas Gregord5a423b2009-09-25 18:43:00 +00006111 // template.
John McCallc373d482010-01-27 01:50:18 +00006112 UnresolvedSet<8> Matches;
Douglas Gregord5a423b2009-09-25 18:43:00 +00006113 for (LookupResult::iterator P = Previous.begin(), PEnd = Previous.end();
6114 P != PEnd; ++P) {
6115 NamedDecl *Prev = *P;
Douglas Gregordb422df2009-09-25 21:45:23 +00006116 if (!HasExplicitTemplateArgs) {
6117 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(Prev)) {
6118 if (Context.hasSameUnqualifiedType(Method->getType(), R)) {
6119 Matches.clear();
Douglas Gregor48026d22010-01-11 18:40:55 +00006120
John McCallc373d482010-01-27 01:50:18 +00006121 Matches.addDecl(Method, P.getAccess());
Douglas Gregor48026d22010-01-11 18:40:55 +00006122 if (Method->getTemplateSpecializationKind() == TSK_Undeclared)
6123 break;
Douglas Gregordb422df2009-09-25 21:45:23 +00006124 }
Douglas Gregord5a423b2009-09-25 18:43:00 +00006125 }
6126 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006127
Douglas Gregord5a423b2009-09-25 18:43:00 +00006128 FunctionTemplateDecl *FunTmpl = dyn_cast<FunctionTemplateDecl>(Prev);
6129 if (!FunTmpl)
6130 continue;
6131
John McCall5769d612010-02-08 23:07:23 +00006132 TemplateDeductionInfo Info(Context, D.getIdentifierLoc());
Douglas Gregord5a423b2009-09-25 18:43:00 +00006133 FunctionDecl *Specialization = 0;
6134 if (TemplateDeductionResult TDK
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006135 = DeduceTemplateArguments(FunTmpl,
John McCalld5532b62009-11-23 01:53:49 +00006136 (HasExplicitTemplateArgs ? &TemplateArgs : 0),
Douglas Gregord5a423b2009-09-25 18:43:00 +00006137 R, Specialization, Info)) {
6138 // FIXME: Keep track of almost-matches?
6139 (void)TDK;
6140 continue;
6141 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006142
John McCallc373d482010-01-27 01:50:18 +00006143 Matches.addDecl(Specialization, P.getAccess());
Douglas Gregord5a423b2009-09-25 18:43:00 +00006144 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006145
Douglas Gregord5a423b2009-09-25 18:43:00 +00006146 // Find the most specialized function template specialization.
John McCallc373d482010-01-27 01:50:18 +00006147 UnresolvedSetIterator Result
Douglas Gregor5c7bf422011-01-11 17:34:58 +00006148 = getMostSpecialized(Matches.begin(), Matches.end(), TPOC_Other, 0,
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006149 D.getIdentifierLoc(),
Douglas Gregorfe6b2d42010-03-29 23:34:08 +00006150 PDiag(diag::err_explicit_instantiation_not_known) << Name,
6151 PDiag(diag::err_explicit_instantiation_ambiguous) << Name,
6152 PDiag(diag::note_explicit_instantiation_candidate));
Douglas Gregord5a423b2009-09-25 18:43:00 +00006153
John McCallc373d482010-01-27 01:50:18 +00006154 if (Result == Matches.end())
Douglas Gregord5a423b2009-09-25 18:43:00 +00006155 return true;
John McCallc373d482010-01-27 01:50:18 +00006156
6157 // Ignore access control bits, we don't need them for redeclaration checking.
6158 FunctionDecl *Specialization = cast<FunctionDecl>(*Result);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006159
Douglas Gregor0a897e32009-10-15 17:21:20 +00006160 if (Specialization->getTemplateSpecializationKind() == TSK_Undeclared) {
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006161 Diag(D.getIdentifierLoc(),
Douglas Gregord5a423b2009-09-25 18:43:00 +00006162 diag::err_explicit_instantiation_member_function_not_instantiated)
6163 << Specialization
6164 << (Specialization->getTemplateSpecializationKind() ==
6165 TSK_ExplicitSpecialization);
6166 Diag(Specialization->getLocation(), diag::note_explicit_instantiation_here);
6167 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006168 }
6169
Douglas Gregor0a897e32009-10-15 17:21:20 +00006170 FunctionDecl *PrevDecl = Specialization->getPreviousDeclaration();
Douglas Gregor583f33b2009-10-15 18:07:02 +00006171 if (!PrevDecl && Specialization->isThisDeclarationADefinition())
6172 PrevDecl = Specialization;
6173
Douglas Gregor0a897e32009-10-15 17:21:20 +00006174 if (PrevDecl) {
Abramo Bagnarac98971d2010-06-12 07:44:57 +00006175 bool HasNoEffect = false;
Douglas Gregor0d035142009-10-27 18:42:08 +00006176 if (CheckSpecializationInstantiationRedecl(D.getIdentifierLoc(), TSK,
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006177 PrevDecl,
6178 PrevDecl->getTemplateSpecializationKind(),
Douglas Gregor0a897e32009-10-15 17:21:20 +00006179 PrevDecl->getPointOfInstantiation(),
Abramo Bagnarac98971d2010-06-12 07:44:57 +00006180 HasNoEffect))
Douglas Gregor0a897e32009-10-15 17:21:20 +00006181 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006182
Douglas Gregor0a897e32009-10-15 17:21:20 +00006183 // FIXME: We may still want to build some representation of this
6184 // explicit specialization.
Abramo Bagnarac98971d2010-06-12 07:44:57 +00006185 if (HasNoEffect)
John McCalld226f652010-08-21 09:40:31 +00006186 return (Decl*) 0;
Douglas Gregor0a897e32009-10-15 17:21:20 +00006187 }
Anders Carlsson26d6e9d2009-11-24 05:34:41 +00006188
6189 Specialization->setTemplateSpecializationKind(TSK, D.getIdentifierLoc());
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006190
Douglas Gregor0a897e32009-10-15 17:21:20 +00006191 if (TSK == TSK_ExplicitInstantiationDefinition)
Chandler Carruth58e390e2010-08-25 08:27:02 +00006192 InstantiateFunctionDefinition(D.getIdentifierLoc(), Specialization);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006193
Douglas Gregor558c0322009-10-14 23:41:34 +00006194 // C++0x [temp.explicit]p2:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006195 // If the explicit instantiation is for a member function, a member class
Douglas Gregor558c0322009-10-14 23:41:34 +00006196 // or a static data member of a class template specialization, the name of
6197 // the class template specialization in the qualified-id for the member
6198 // name shall be a simple-template-id.
6199 //
6200 // C++98 has the same restriction, just worded differently.
Douglas Gregor0a897e32009-10-15 17:21:20 +00006201 FunctionTemplateDecl *FunTmpl = Specialization->getPrimaryTemplate();
Douglas Gregor3f9a0562009-11-03 01:35:08 +00006202 if (D.getName().getKind() != UnqualifiedId::IK_TemplateId && !FunTmpl &&
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006203 D.getCXXScopeSpec().isSet() &&
Douglas Gregor558c0322009-10-14 23:41:34 +00006204 !ScopeSpecifierHasTemplateId(D.getCXXScopeSpec()))
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006205 Diag(D.getIdentifierLoc(),
Douglas Gregora2dd8282010-06-16 16:26:47 +00006206 diag::ext_explicit_instantiation_without_qualified_id)
Douglas Gregor558c0322009-10-14 23:41:34 +00006207 << Specialization << D.getCXXScopeSpec().getRange();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006208
Douglas Gregor558c0322009-10-14 23:41:34 +00006209 CheckExplicitInstantiationScope(*this,
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006210 FunTmpl? (NamedDecl *)FunTmpl
Douglas Gregor558c0322009-10-14 23:41:34 +00006211 : Specialization->getInstantiatedFromMemberFunction(),
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006212 D.getIdentifierLoc(),
Douglas Gregor558c0322009-10-14 23:41:34 +00006213 D.getCXXScopeSpec().isSet());
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006214
Douglas Gregord5a423b2009-09-25 18:43:00 +00006215 // FIXME: Create some kind of ExplicitInstantiationDecl here.
John McCalld226f652010-08-21 09:40:31 +00006216 return (Decl*) 0;
Douglas Gregord5a423b2009-09-25 18:43:00 +00006217}
6218
John McCallf312b1e2010-08-26 23:41:50 +00006219TypeResult
John McCallc4e70192009-09-11 04:59:25 +00006220Sema::ActOnDependentTag(Scope *S, unsigned TagSpec, TagUseKind TUK,
6221 const CXXScopeSpec &SS, IdentifierInfo *Name,
6222 SourceLocation TagLoc, SourceLocation NameLoc) {
6223 // This has to hold, because SS is expected to be defined.
6224 assert(Name && "Expected a name in a dependent tag");
6225
6226 NestedNameSpecifier *NNS
6227 = static_cast<NestedNameSpecifier *>(SS.getScopeRep());
6228 if (!NNS)
6229 return true;
6230
Abramo Bagnara465d41b2010-05-11 21:36:43 +00006231 TagTypeKind Kind = TypeWithKeyword::getTagTypeKindForTypeSpec(TagSpec);
Daniel Dunbar12c0ade2010-04-01 16:50:48 +00006232
Douglas Gregor48c89f42010-04-24 16:38:41 +00006233 if (TUK == TUK_Declaration || TUK == TUK_Definition) {
6234 Diag(NameLoc, diag::err_dependent_tag_decl)
Abramo Bagnara465d41b2010-05-11 21:36:43 +00006235 << (TUK == TUK_Definition) << Kind << SS.getRange();
Douglas Gregor48c89f42010-04-24 16:38:41 +00006236 return true;
6237 }
Abramo Bagnara465d41b2010-05-11 21:36:43 +00006238
Douglas Gregor059101f2011-03-02 00:47:37 +00006239 // Create the resulting type.
Abramo Bagnara465d41b2010-05-11 21:36:43 +00006240 ElaboratedTypeKeyword Kwd = TypeWithKeyword::getKeywordForTagTypeKind(Kind);
Douglas Gregor059101f2011-03-02 00:47:37 +00006241 QualType Result = Context.getDependentNameType(Kwd, NNS, Name);
6242
6243 // Create type-source location information for this type.
6244 TypeLocBuilder TLB;
6245 DependentNameTypeLoc TL = TLB.push<DependentNameTypeLoc>(Result);
6246 TL.setKeywordLoc(TagLoc);
6247 TL.setQualifierLoc(SS.getWithLocInContext(Context));
6248 TL.setNameLoc(NameLoc);
6249 return CreateParsedType(Result, TLB.getTypeSourceInfo(Context, Result));
John McCallc4e70192009-09-11 04:59:25 +00006250}
6251
John McCallf312b1e2010-08-26 23:41:50 +00006252TypeResult
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006253Sema::ActOnTypenameType(Scope *S, SourceLocation TypenameLoc,
6254 const CXXScopeSpec &SS, const IdentifierInfo &II,
Douglas Gregor1a15dae2010-06-16 22:31:08 +00006255 SourceLocation IdLoc) {
Douglas Gregore29425b2011-02-28 22:42:13 +00006256 if (SS.isInvalid())
Douglas Gregord57959a2009-03-27 23:10:48 +00006257 return true;
Douglas Gregore29425b2011-02-28 22:42:13 +00006258
Douglas Gregor1a15dae2010-06-16 22:31:08 +00006259 if (TypenameLoc.isValid() && S && !S->getTemplateParamParent() &&
6260 !getLangOptions().CPlusPlus0x)
6261 Diag(TypenameLoc, diag::ext_typename_outside_of_template)
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006262 << FixItHint::CreateRemoval(TypenameLoc);
6263
Douglas Gregor2494dd02011-03-01 01:34:45 +00006264 NestedNameSpecifierLoc QualifierLoc = SS.getWithLocInContext(Context);
Douglas Gregor9e876872011-03-01 18:12:44 +00006265 QualType T = CheckTypenameType(TypenameLoc.isValid()? ETK_Typename : ETK_None,
6266 TypenameLoc, QualifierLoc, II, IdLoc);
Douglas Gregor31a19b62009-04-01 21:51:26 +00006267 if (T.isNull())
6268 return true;
John McCall63b43852010-04-29 23:50:39 +00006269
6270 TypeSourceInfo *TSI = Context.CreateTypeSourceInfo(T);
6271 if (isa<DependentNameType>(T)) {
6272 DependentNameTypeLoc TL = cast<DependentNameTypeLoc>(TSI->getTypeLoc());
John McCall4e449832010-05-28 23:32:21 +00006273 TL.setKeywordLoc(TypenameLoc);
Douglas Gregor2494dd02011-03-01 01:34:45 +00006274 TL.setQualifierLoc(QualifierLoc);
John McCall4e449832010-05-28 23:32:21 +00006275 TL.setNameLoc(IdLoc);
John McCall63b43852010-04-29 23:50:39 +00006276 } else {
Abramo Bagnara465d41b2010-05-11 21:36:43 +00006277 ElaboratedTypeLoc TL = cast<ElaboratedTypeLoc>(TSI->getTypeLoc());
John McCall4e449832010-05-28 23:32:21 +00006278 TL.setKeywordLoc(TypenameLoc);
Douglas Gregor9e876872011-03-01 18:12:44 +00006279 TL.setQualifierLoc(QualifierLoc);
John McCall4e449832010-05-28 23:32:21 +00006280 cast<TypeSpecTypeLoc>(TL.getNamedTypeLoc()).setNameLoc(IdLoc);
John McCall63b43852010-04-29 23:50:39 +00006281 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006282
John McCallb3d87482010-08-24 05:47:05 +00006283 return CreateParsedType(T, TSI);
Douglas Gregord57959a2009-03-27 23:10:48 +00006284}
6285
John McCallf312b1e2010-08-26 23:41:50 +00006286TypeResult
Douglas Gregora02411e2011-02-27 22:46:49 +00006287Sema::ActOnTypenameType(Scope *S, SourceLocation TypenameLoc,
6288 const CXXScopeSpec &SS,
6289 SourceLocation TemplateLoc,
6290 TemplateTy TemplateIn,
6291 SourceLocation TemplateNameLoc,
6292 SourceLocation LAngleLoc,
6293 ASTTemplateArgsPtr TemplateArgsIn,
6294 SourceLocation RAngleLoc) {
Douglas Gregor1a15dae2010-06-16 22:31:08 +00006295 if (TypenameLoc.isValid() && S && !S->getTemplateParamParent() &&
6296 !getLangOptions().CPlusPlus0x)
6297 Diag(TypenameLoc, diag::ext_typename_outside_of_template)
Douglas Gregora02411e2011-02-27 22:46:49 +00006298 << FixItHint::CreateRemoval(TypenameLoc);
6299
6300 // Translate the parser's template argument list in our AST format.
6301 TemplateArgumentListInfo TemplateArgs(LAngleLoc, RAngleLoc);
6302 translateTemplateArguments(TemplateArgsIn, TemplateArgs);
6303
6304 TemplateName Template = TemplateIn.get();
Douglas Gregoref24c4b2011-03-01 16:44:30 +00006305 if (DependentTemplateName *DTN = Template.getAsDependentTemplateName()) {
6306 // Construct a dependent template specialization type.
6307 assert(DTN && "dependent template has non-dependent name?");
6308 assert(DTN->getQualifier()
6309 == static_cast<NestedNameSpecifier*>(SS.getScopeRep()));
6310 QualType T = Context.getDependentTemplateSpecializationType(ETK_Typename,
6311 DTN->getQualifier(),
6312 DTN->getIdentifier(),
6313 TemplateArgs);
Douglas Gregora02411e2011-02-27 22:46:49 +00006314
Douglas Gregoref24c4b2011-03-01 16:44:30 +00006315 // Create source-location information for this type.
John McCall4e449832010-05-28 23:32:21 +00006316 TypeLocBuilder Builder;
Douglas Gregoref24c4b2011-03-01 16:44:30 +00006317 DependentTemplateSpecializationTypeLoc SpecTL
6318 = Builder.push<DependentTemplateSpecializationTypeLoc>(T);
Douglas Gregora02411e2011-02-27 22:46:49 +00006319 SpecTL.setLAngleLoc(LAngleLoc);
6320 SpecTL.setRAngleLoc(RAngleLoc);
Douglas Gregoref24c4b2011-03-01 16:44:30 +00006321 SpecTL.setKeywordLoc(TypenameLoc);
Douglas Gregor94fdffa2011-03-01 20:11:18 +00006322 SpecTL.setQualifierLoc(SS.getWithLocInContext(Context));
Douglas Gregoref24c4b2011-03-01 16:44:30 +00006323 SpecTL.setNameLoc(TemplateNameLoc);
Douglas Gregora02411e2011-02-27 22:46:49 +00006324 for (unsigned I = 0, N = TemplateArgs.size(); I != N; ++I)
6325 SpecTL.setArgLocInfo(I, TemplateArgs[I].getLocInfo());
Douglas Gregoref24c4b2011-03-01 16:44:30 +00006326 return CreateParsedType(T, Builder.getTypeSourceInfo(Context, T));
Douglas Gregor6946baf2009-09-02 13:05:45 +00006327 }
Douglas Gregora02411e2011-02-27 22:46:49 +00006328
Douglas Gregoref24c4b2011-03-01 16:44:30 +00006329 QualType T = CheckTemplateIdType(Template, TemplateNameLoc, TemplateArgs);
6330 if (T.isNull())
6331 return true;
Douglas Gregora02411e2011-02-27 22:46:49 +00006332
Douglas Gregoref24c4b2011-03-01 16:44:30 +00006333 // Provide source-location information for the template specialization
6334 // type.
Douglas Gregora02411e2011-02-27 22:46:49 +00006335 TypeLocBuilder Builder;
Douglas Gregoref24c4b2011-03-01 16:44:30 +00006336 TemplateSpecializationTypeLoc SpecTL
6337 = Builder.push<TemplateSpecializationTypeLoc>(T);
6338
6339 // FIXME: No place to set the location of the 'template' keyword!
Douglas Gregora02411e2011-02-27 22:46:49 +00006340 SpecTL.setLAngleLoc(LAngleLoc);
6341 SpecTL.setRAngleLoc(RAngleLoc);
Douglas Gregoref24c4b2011-03-01 16:44:30 +00006342 SpecTL.setTemplateNameLoc(TemplateNameLoc);
Douglas Gregora02411e2011-02-27 22:46:49 +00006343 for (unsigned I = 0, N = TemplateArgs.size(); I != N; ++I)
6344 SpecTL.setArgLocInfo(I, TemplateArgs[I].getLocInfo());
6345
Douglas Gregoref24c4b2011-03-01 16:44:30 +00006346 T = Context.getElaboratedType(ETK_Typename, SS.getScopeRep(), T);
6347 ElaboratedTypeLoc TL = Builder.push<ElaboratedTypeLoc>(T);
6348 TL.setKeywordLoc(TypenameLoc);
Douglas Gregor9e876872011-03-01 18:12:44 +00006349 TL.setQualifierLoc(SS.getWithLocInContext(Context));
6350
Douglas Gregoref24c4b2011-03-01 16:44:30 +00006351 TypeSourceInfo *TSI = Builder.getTypeSourceInfo(Context, T);
6352 return CreateParsedType(T, TSI);
Douglas Gregor17343172009-04-01 00:28:59 +00006353}
6354
Douglas Gregora02411e2011-02-27 22:46:49 +00006355
Douglas Gregord57959a2009-03-27 23:10:48 +00006356/// \brief Build the type that describes a C++ typename specifier,
6357/// e.g., "typename T::type".
6358QualType
Douglas Gregore29425b2011-02-28 22:42:13 +00006359Sema::CheckTypenameType(ElaboratedTypeKeyword Keyword,
6360 SourceLocation KeywordLoc,
6361 NestedNameSpecifierLoc QualifierLoc,
6362 const IdentifierInfo &II,
Abramo Bagnarae4da7a02010-05-19 21:37:53 +00006363 SourceLocation IILoc) {
John McCall77bb1aa2010-05-01 00:40:08 +00006364 CXXScopeSpec SS;
Douglas Gregore29425b2011-02-28 22:42:13 +00006365 SS.Adopt(QualifierLoc);
Douglas Gregord57959a2009-03-27 23:10:48 +00006366
John McCall77bb1aa2010-05-01 00:40:08 +00006367 DeclContext *Ctx = computeDeclContext(SS);
6368 if (!Ctx) {
6369 // If the nested-name-specifier is dependent and couldn't be
6370 // resolved to a type, build a typename type.
Douglas Gregore29425b2011-02-28 22:42:13 +00006371 assert(QualifierLoc.getNestedNameSpecifier()->isDependent());
6372 return Context.getDependentNameType(Keyword,
6373 QualifierLoc.getNestedNameSpecifier(),
6374 &II);
Douglas Gregor42af25f2009-05-11 19:58:34 +00006375 }
Douglas Gregord57959a2009-03-27 23:10:48 +00006376
John McCall77bb1aa2010-05-01 00:40:08 +00006377 // If the nested-name-specifier refers to the current instantiation,
6378 // the "typename" keyword itself is superfluous. In C++03, the
6379 // program is actually ill-formed. However, DR 382 (in C++0x CD1)
6380 // allows such extraneous "typename" keywords, and we retroactively
Douglas Gregor732281d2010-06-14 22:07:54 +00006381 // apply this DR to C++03 code with only a warning. In any case we continue.
Douglas Gregor42af25f2009-05-11 19:58:34 +00006382
John McCall77bb1aa2010-05-01 00:40:08 +00006383 if (RequireCompleteDeclContext(SS, Ctx))
6384 return QualType();
Douglas Gregord57959a2009-03-27 23:10:48 +00006385
6386 DeclarationName Name(&II);
Abramo Bagnarae4da7a02010-05-19 21:37:53 +00006387 LookupResult Result(*this, Name, IILoc, LookupOrdinaryName);
John McCalla24dc2e2009-11-17 02:14:36 +00006388 LookupQualifiedName(Result, Ctx);
Douglas Gregord57959a2009-03-27 23:10:48 +00006389 unsigned DiagID = 0;
6390 Decl *Referenced = 0;
John McCalla24dc2e2009-11-17 02:14:36 +00006391 switch (Result.getResultKind()) {
Douglas Gregord57959a2009-03-27 23:10:48 +00006392 case LookupResult::NotFound:
Douglas Gregor3f093272009-10-13 21:16:44 +00006393 DiagID = diag::err_typename_nested_not_found;
Douglas Gregord57959a2009-03-27 23:10:48 +00006394 break;
Douglas Gregord9545042010-12-09 00:06:27 +00006395
6396 case LookupResult::FoundUnresolvedValue: {
6397 // We found a using declaration that is a value. Most likely, the using
6398 // declaration itself is meant to have the 'typename' keyword.
Douglas Gregore29425b2011-02-28 22:42:13 +00006399 SourceRange FullRange(KeywordLoc.isValid() ? KeywordLoc : SS.getBeginLoc(),
Douglas Gregord9545042010-12-09 00:06:27 +00006400 IILoc);
6401 Diag(IILoc, diag::err_typename_refers_to_using_value_decl)
6402 << Name << Ctx << FullRange;
6403 if (UnresolvedUsingValueDecl *Using
6404 = dyn_cast<UnresolvedUsingValueDecl>(Result.getRepresentativeDecl())){
Douglas Gregordc355712011-02-25 00:36:19 +00006405 SourceLocation Loc = Using->getQualifierLoc().getBeginLoc();
Douglas Gregord9545042010-12-09 00:06:27 +00006406 Diag(Loc, diag::note_using_value_decl_missing_typename)
6407 << FixItHint::CreateInsertion(Loc, "typename ");
6408 }
6409 }
6410 // Fall through to create a dependent typename type, from which we can recover
6411 // better.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006412
Douglas Gregor7d3f5762010-01-15 01:44:47 +00006413 case LookupResult::NotFoundInCurrentInstantiation:
6414 // Okay, it's a member of an unknown instantiation.
Douglas Gregore29425b2011-02-28 22:42:13 +00006415 return Context.getDependentNameType(Keyword,
6416 QualifierLoc.getNestedNameSpecifier(),
6417 &II);
Douglas Gregord57959a2009-03-27 23:10:48 +00006418
6419 case LookupResult::Found:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006420 if (TypeDecl *Type = dyn_cast<TypeDecl>(Result.getFoundDecl())) {
Abramo Bagnara465d41b2010-05-11 21:36:43 +00006421 // We found a type. Build an ElaboratedType, since the
6422 // typename-specifier was just sugar.
Douglas Gregore29425b2011-02-28 22:42:13 +00006423 return Context.getElaboratedType(ETK_Typename,
6424 QualifierLoc.getNestedNameSpecifier(),
Abramo Bagnara465d41b2010-05-11 21:36:43 +00006425 Context.getTypeDeclType(Type));
Douglas Gregord57959a2009-03-27 23:10:48 +00006426 }
6427
6428 DiagID = diag::err_typename_nested_not_type;
John McCallf36e02d2009-10-09 21:13:30 +00006429 Referenced = Result.getFoundDecl();
Douglas Gregord57959a2009-03-27 23:10:48 +00006430 break;
6431
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006432
Jeffrey Yasskin9f61aa92009-12-12 05:05:38 +00006433 llvm_unreachable("unresolved using decl in non-dependent context");
John McCall7ba107a2009-11-18 02:36:19 +00006434 return QualType();
6435
Douglas Gregord57959a2009-03-27 23:10:48 +00006436 case LookupResult::FoundOverloaded:
6437 DiagID = diag::err_typename_nested_not_type;
6438 Referenced = *Result.begin();
6439 break;
6440
John McCall6e247262009-10-10 05:48:19 +00006441 case LookupResult::Ambiguous:
Douglas Gregord57959a2009-03-27 23:10:48 +00006442 return QualType();
6443 }
6444
6445 // If we get here, it's because name lookup did not find a
6446 // type. Emit an appropriate diagnostic and return an error.
Douglas Gregore29425b2011-02-28 22:42:13 +00006447 SourceRange FullRange(KeywordLoc.isValid() ? KeywordLoc : SS.getBeginLoc(),
Abramo Bagnarae4da7a02010-05-19 21:37:53 +00006448 IILoc);
6449 Diag(IILoc, DiagID) << FullRange << Name << Ctx;
Douglas Gregord57959a2009-03-27 23:10:48 +00006450 if (Referenced)
6451 Diag(Referenced->getLocation(), diag::note_typename_refers_here)
6452 << Name;
6453 return QualType();
6454}
Douglas Gregor4a959d82009-08-06 16:20:37 +00006455
6456namespace {
6457 // See Sema::RebuildTypeInCurrentInstantiation
Benjamin Kramer85b45212009-11-28 19:45:26 +00006458 class CurrentInstantiationRebuilder
Mike Stump1eb44332009-09-09 15:08:12 +00006459 : public TreeTransform<CurrentInstantiationRebuilder> {
Douglas Gregor4a959d82009-08-06 16:20:37 +00006460 SourceLocation Loc;
6461 DeclarationName Entity;
Mike Stump1eb44332009-09-09 15:08:12 +00006462
Douglas Gregor4a959d82009-08-06 16:20:37 +00006463 public:
Douglas Gregor895162d2010-04-30 18:55:50 +00006464 typedef TreeTransform<CurrentInstantiationRebuilder> inherited;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006465
Mike Stump1eb44332009-09-09 15:08:12 +00006466 CurrentInstantiationRebuilder(Sema &SemaRef,
Douglas Gregor4a959d82009-08-06 16:20:37 +00006467 SourceLocation Loc,
Mike Stump1eb44332009-09-09 15:08:12 +00006468 DeclarationName Entity)
6469 : TreeTransform<CurrentInstantiationRebuilder>(SemaRef),
Douglas Gregor4a959d82009-08-06 16:20:37 +00006470 Loc(Loc), Entity(Entity) { }
Mike Stump1eb44332009-09-09 15:08:12 +00006471
6472 /// \brief Determine whether the given type \p T has already been
Douglas Gregor4a959d82009-08-06 16:20:37 +00006473 /// transformed.
6474 ///
6475 /// For the purposes of type reconstruction, a type has already been
6476 /// transformed if it is NULL or if it is not dependent.
6477 bool AlreadyTransformed(QualType T) {
6478 return T.isNull() || !T->isDependentType();
6479 }
Mike Stump1eb44332009-09-09 15:08:12 +00006480
6481 /// \brief Returns the location of the entity whose type is being
Douglas Gregor4a959d82009-08-06 16:20:37 +00006482 /// rebuilt.
6483 SourceLocation getBaseLocation() { return Loc; }
Mike Stump1eb44332009-09-09 15:08:12 +00006484
Douglas Gregor4a959d82009-08-06 16:20:37 +00006485 /// \brief Returns the name of the entity whose type is being rebuilt.
6486 DeclarationName getBaseEntity() { return Entity; }
Mike Stump1eb44332009-09-09 15:08:12 +00006487
Douglas Gregor972e6ce2009-10-27 06:26:26 +00006488 /// \brief Sets the "base" location and entity when that
6489 /// information is known based on another transformation.
6490 void setBase(SourceLocation Loc, DeclarationName Entity) {
6491 this->Loc = Loc;
6492 this->Entity = Entity;
6493 }
Douglas Gregor4a959d82009-08-06 16:20:37 +00006494 };
6495}
6496
Douglas Gregor4a959d82009-08-06 16:20:37 +00006497/// \brief Rebuilds a type within the context of the current instantiation.
6498///
Mike Stump1eb44332009-09-09 15:08:12 +00006499/// The type \p T is part of the type of an out-of-line member definition of
Douglas Gregor4a959d82009-08-06 16:20:37 +00006500/// a class template (or class template partial specialization) that was parsed
Mike Stump1eb44332009-09-09 15:08:12 +00006501/// and constructed before we entered the scope of the class template (or
Douglas Gregor4a959d82009-08-06 16:20:37 +00006502/// partial specialization thereof). This routine will rebuild that type now
6503/// that we have entered the declarator's scope, which may produce different
6504/// canonical types, e.g.,
6505///
6506/// \code
6507/// template<typename T>
6508/// struct X {
6509/// typedef T* pointer;
6510/// pointer data();
6511/// };
6512///
6513/// template<typename T>
6514/// typename X<T>::pointer X<T>::data() { ... }
6515/// \endcode
6516///
Douglas Gregor4714c122010-03-31 17:34:00 +00006517/// Here, the type "typename X<T>::pointer" will be created as a DependentNameType,
Douglas Gregor4a959d82009-08-06 16:20:37 +00006518/// since we do not know that we can look into X<T> when we parsed the type.
6519/// This function will rebuild the type, performing the lookup of "pointer"
Abramo Bagnara465d41b2010-05-11 21:36:43 +00006520/// in X<T> and returning an ElaboratedType whose canonical type is the same
Douglas Gregor4a959d82009-08-06 16:20:37 +00006521/// as the canonical type of T*, allowing the return types of the out-of-line
6522/// definition and the declaration to match.
John McCall63b43852010-04-29 23:50:39 +00006523TypeSourceInfo *Sema::RebuildTypeInCurrentInstantiation(TypeSourceInfo *T,
6524 SourceLocation Loc,
6525 DeclarationName Name) {
6526 if (!T || !T->getType()->isDependentType())
Douglas Gregor4a959d82009-08-06 16:20:37 +00006527 return T;
Mike Stump1eb44332009-09-09 15:08:12 +00006528
Douglas Gregor4a959d82009-08-06 16:20:37 +00006529 CurrentInstantiationRebuilder Rebuilder(*this, Loc, Name);
6530 return Rebuilder.TransformType(T);
Benjamin Kramer27ba2f02009-08-11 22:33:06 +00006531}
Douglas Gregorbf4ea562009-09-15 16:23:51 +00006532
John McCall60d7b3a2010-08-24 06:29:42 +00006533ExprResult Sema::RebuildExprInCurrentInstantiation(Expr *E) {
John McCallb3d87482010-08-24 05:47:05 +00006534 CurrentInstantiationRebuilder Rebuilder(*this, E->getExprLoc(),
6535 DeclarationName());
6536 return Rebuilder.TransformExpr(E);
6537}
6538
John McCall63b43852010-04-29 23:50:39 +00006539bool Sema::RebuildNestedNameSpecifierInCurrentInstantiation(CXXScopeSpec &SS) {
Douglas Gregor7e384942011-02-25 16:07:42 +00006540 if (SS.isInvalid())
6541 return true;
John McCall31f17ec2010-04-27 00:57:59 +00006542
Douglas Gregor7e384942011-02-25 16:07:42 +00006543 NestedNameSpecifierLoc QualifierLoc = SS.getWithLocInContext(Context);
John McCall31f17ec2010-04-27 00:57:59 +00006544 CurrentInstantiationRebuilder Rebuilder(*this, SS.getRange().getBegin(),
6545 DeclarationName());
Douglas Gregor7e384942011-02-25 16:07:42 +00006546 NestedNameSpecifierLoc Rebuilt
6547 = Rebuilder.TransformNestedNameSpecifierLoc(QualifierLoc);
6548 if (!Rebuilt)
6549 return true;
John McCall63b43852010-04-29 23:50:39 +00006550
Douglas Gregor7e384942011-02-25 16:07:42 +00006551 SS.Adopt(Rebuilt);
John McCall63b43852010-04-29 23:50:39 +00006552 return false;
John McCall31f17ec2010-04-27 00:57:59 +00006553}
6554
Douglas Gregorbf4ea562009-09-15 16:23:51 +00006555/// \brief Produces a formatted string that describes the binding of
6556/// template parameters to template arguments.
6557std::string
6558Sema::getTemplateArgumentBindingsText(const TemplateParameterList *Params,
6559 const TemplateArgumentList &Args) {
Douglas Gregor910f8002010-11-07 23:05:16 +00006560 return getTemplateArgumentBindingsText(Params, Args.data(), Args.size());
Douglas Gregor9148c3f2009-11-11 19:13:48 +00006561}
6562
6563std::string
6564Sema::getTemplateArgumentBindingsText(const TemplateParameterList *Params,
6565 const TemplateArgument *Args,
6566 unsigned NumArgs) {
Douglas Gregor87dd6972010-12-20 16:52:59 +00006567 llvm::SmallString<128> Str;
6568 llvm::raw_svector_ostream Out(Str);
Douglas Gregorbf4ea562009-09-15 16:23:51 +00006569
Douglas Gregor9148c3f2009-11-11 19:13:48 +00006570 if (!Params || Params->size() == 0 || NumArgs == 0)
Douglas Gregor87dd6972010-12-20 16:52:59 +00006571 return std::string();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006572
Douglas Gregorbf4ea562009-09-15 16:23:51 +00006573 for (unsigned I = 0, N = Params->size(); I != N; ++I) {
Douglas Gregor9148c3f2009-11-11 19:13:48 +00006574 if (I >= NumArgs)
6575 break;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006576
Douglas Gregorbf4ea562009-09-15 16:23:51 +00006577 if (I == 0)
Douglas Gregor87dd6972010-12-20 16:52:59 +00006578 Out << "[with ";
Douglas Gregorbf4ea562009-09-15 16:23:51 +00006579 else
Douglas Gregor87dd6972010-12-20 16:52:59 +00006580 Out << ", ";
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006581
Douglas Gregorbf4ea562009-09-15 16:23:51 +00006582 if (const IdentifierInfo *Id = Params->getParam(I)->getIdentifier()) {
Douglas Gregor87dd6972010-12-20 16:52:59 +00006583 Out << Id->getName();
Douglas Gregorbf4ea562009-09-15 16:23:51 +00006584 } else {
Douglas Gregor87dd6972010-12-20 16:52:59 +00006585 Out << '$' << I;
Douglas Gregorbf4ea562009-09-15 16:23:51 +00006586 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006587
Douglas Gregor87dd6972010-12-20 16:52:59 +00006588 Out << " = ";
6589 Args[I].print(Context.PrintingPolicy, Out);
Douglas Gregorbf4ea562009-09-15 16:23:51 +00006590 }
Douglas Gregor87dd6972010-12-20 16:52:59 +00006591
6592 Out << ']';
6593 return Out.str();
Douglas Gregorbf4ea562009-09-15 16:23:51 +00006594}
Francois Pichet8387e2a2011-04-22 22:18:13 +00006595
6596void Sema::MarkAsLateParsedTemplate(FunctionDecl *FD, bool Flag) {
6597 if (!FD)
6598 return;
6599 FD->setLateTemplateParsed(Flag);
6600}
6601
6602bool Sema::IsInsideALocalClassWithinATemplateFunction() {
6603 DeclContext *DC = CurContext;
6604
6605 while (DC) {
6606 if (CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(CurContext)) {
6607 const FunctionDecl *FD = RD->isLocalClass();
6608 return (FD && FD->getTemplatedKind() != FunctionDecl::TK_NonTemplate);
6609 } else if (DC->isTranslationUnit() || DC->isNamespace())
6610 return false;
6611
6612 DC = DC->getParent();
6613 }
6614 return false;
6615}