blob: fc1173d9d16dac6ca27f53d464642a552cd189c8 [file] [log] [blame]
Douglas Gregor72c3f312008-12-05 18:15:24 +00001//===------- SemaTemplate.cpp - Semantic Analysis for C++ Templates -------===/
2
3//
4// The LLVM Compiler Infrastructure
5//
6// This file is distributed under the University of Illinois Open Source
7// License. See LICENSE.TXT for details.
Douglas Gregor99ebf652009-02-27 19:31:52 +00008//===----------------------------------------------------------------------===/
Douglas Gregor72c3f312008-12-05 18:15:24 +00009
10//
11// This file implements semantic analysis for C++ templates.
Douglas Gregor99ebf652009-02-27 19:31:52 +000012//===----------------------------------------------------------------------===/
Douglas Gregor72c3f312008-12-05 18:15:24 +000013
14#include "Sema.h"
Douglas Gregorddc29e12009-02-06 22:42:48 +000015#include "clang/AST/ASTContext.h"
Douglas Gregor898574e2008-12-05 23:32:09 +000016#include "clang/AST/Expr.h"
Douglas Gregorcc45cb32009-02-11 19:52:55 +000017#include "clang/AST/ExprCXX.h"
Douglas Gregoraaba5e32009-02-04 19:02:06 +000018#include "clang/AST/DeclTemplate.h"
Douglas Gregor72c3f312008-12-05 18:15:24 +000019#include "clang/Parse/DeclSpec.h"
20#include "clang/Basic/LangOptions.h"
21
22using namespace clang;
23
Douglas Gregord6fb7ef2008-12-18 19:37:40 +000024/// isTemplateName - Determines whether the identifier II is a
25/// template name in the current scope, and returns the template
26/// declaration if II names a template. An optional CXXScope can be
27/// passed to indicate the C++ scope in which the identifier will be
28/// found.
Douglas Gregor39a8de12009-02-25 19:37:18 +000029TemplateNameKind Sema::isTemplateName(IdentifierInfo &II, Scope *S,
30 DeclTy *&Template,
31 const CXXScopeSpec *SS) {
Douglas Gregor47b9a1c2009-02-04 17:27:36 +000032 NamedDecl *IIDecl = LookupParsedName(S, SS, &II, LookupOrdinaryName);
Douglas Gregord6fb7ef2008-12-18 19:37:40 +000033
34 if (IIDecl) {
Douglas Gregor55f6b142009-02-09 18:46:07 +000035 if (isa<TemplateDecl>(IIDecl)) {
36 Template = IIDecl;
37 if (isa<FunctionTemplateDecl>(IIDecl))
38 return TNK_Function_template;
39 else if (isa<ClassTemplateDecl>(IIDecl))
40 return TNK_Class_template;
41 else if (isa<TemplateTemplateParmDecl>(IIDecl))
42 return TNK_Template_template_parm;
43 else
44 assert(false && "Unknown TemplateDecl");
45 }
Douglas Gregoraaba5e32009-02-04 19:02:06 +000046
Douglas Gregor55f6b142009-02-09 18:46:07 +000047 // FIXME: What follows is a gross hack.
Douglas Gregord6fb7ef2008-12-18 19:37:40 +000048 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(IIDecl)) {
Douglas Gregor55f6b142009-02-09 18:46:07 +000049 if (FD->getType()->isDependentType()) {
50 Template = FD;
51 return TNK_Function_template;
52 }
Douglas Gregord6fb7ef2008-12-18 19:37:40 +000053 } else if (OverloadedFunctionDecl *Ovl
54 = dyn_cast<OverloadedFunctionDecl>(IIDecl)) {
55 for (OverloadedFunctionDecl::function_iterator F = Ovl->function_begin(),
56 FEnd = Ovl->function_end();
57 F != FEnd; ++F) {
Douglas Gregor55f6b142009-02-09 18:46:07 +000058 if ((*F)->getType()->isDependentType()) {
59 Template = Ovl;
60 return TNK_Function_template;
61 }
Douglas Gregord6fb7ef2008-12-18 19:37:40 +000062 }
63 }
Douglas Gregord6fb7ef2008-12-18 19:37:40 +000064 }
Douglas Gregor55f6b142009-02-09 18:46:07 +000065 return TNK_Non_template;
Douglas Gregord6fb7ef2008-12-18 19:37:40 +000066}
67
Douglas Gregor72c3f312008-12-05 18:15:24 +000068/// DiagnoseTemplateParameterShadow - Produce a diagnostic complaining
69/// that the template parameter 'PrevDecl' is being shadowed by a new
70/// declaration at location Loc. Returns true to indicate that this is
71/// an error, and false otherwise.
72bool Sema::DiagnoseTemplateParameterShadow(SourceLocation Loc, Decl *PrevDecl) {
Douglas Gregorf57172b2008-12-08 18:40:42 +000073 assert(PrevDecl->isTemplateParameter() && "Not a template parameter");
Douglas Gregor72c3f312008-12-05 18:15:24 +000074
75 // Microsoft Visual C++ permits template parameters to be shadowed.
76 if (getLangOptions().Microsoft)
77 return false;
78
79 // C++ [temp.local]p4:
80 // A template-parameter shall not be redeclared within its
81 // scope (including nested scopes).
82 Diag(Loc, diag::err_template_param_shadow)
83 << cast<NamedDecl>(PrevDecl)->getDeclName();
84 Diag(PrevDecl->getLocation(), diag::note_template_param_here);
85 return true;
86}
87
Douglas Gregor2943aed2009-03-03 04:44:36 +000088/// AdjustDeclIfTemplate - If the given decl happens to be a template, reset
Douglas Gregoraaba5e32009-02-04 19:02:06 +000089/// the parameter D to reference the templated declaration and return a pointer
90/// to the template declaration. Otherwise, do nothing to D and return null.
91TemplateDecl *Sema::AdjustDeclIfTemplate(DeclTy *&D)
92{
93 if(TemplateDecl *Temp = dyn_cast<TemplateDecl>(static_cast<Decl*>(D))) {
94 D = Temp->getTemplatedDecl();
95 return Temp;
96 }
97 return 0;
98}
99
Douglas Gregor72c3f312008-12-05 18:15:24 +0000100/// ActOnTypeParameter - Called when a C++ template type parameter
101/// (e.g., "typename T") has been parsed. Typename specifies whether
102/// the keyword "typename" was used to declare the type parameter
103/// (otherwise, "class" was used), and KeyLoc is the location of the
104/// "class" or "typename" keyword. ParamName is the name of the
105/// parameter (NULL indicates an unnamed template parameter) and
106/// ParamName is the location of the parameter name (if any).
107/// If the type parameter has a default argument, it will be added
108/// later via ActOnTypeParameterDefault.
109Sema::DeclTy *Sema::ActOnTypeParameter(Scope *S, bool Typename,
110 SourceLocation KeyLoc,
111 IdentifierInfo *ParamName,
Douglas Gregorc4b4e7b2008-12-24 02:52:09 +0000112 SourceLocation ParamNameLoc,
113 unsigned Depth, unsigned Position) {
Douglas Gregor72c3f312008-12-05 18:15:24 +0000114 assert(S->isTemplateParamScope() &&
115 "Template type parameter not in template parameter scope!");
116 bool Invalid = false;
117
118 if (ParamName) {
Douglas Gregor47b9a1c2009-02-04 17:27:36 +0000119 NamedDecl *PrevDecl = LookupName(S, ParamName, LookupTagName);
Douglas Gregorf57172b2008-12-08 18:40:42 +0000120 if (PrevDecl && PrevDecl->isTemplateParameter())
Douglas Gregor72c3f312008-12-05 18:15:24 +0000121 Invalid = Invalid || DiagnoseTemplateParameterShadow(ParamNameLoc,
122 PrevDecl);
123 }
124
Douglas Gregorddc29e12009-02-06 22:42:48 +0000125 SourceLocation Loc = ParamNameLoc;
126 if (!ParamName)
127 Loc = KeyLoc;
128
Douglas Gregor72c3f312008-12-05 18:15:24 +0000129 TemplateTypeParmDecl *Param
Douglas Gregorddc29e12009-02-06 22:42:48 +0000130 = TemplateTypeParmDecl::Create(Context, CurContext, Loc,
Douglas Gregoraaba5e32009-02-04 19:02:06 +0000131 Depth, Position, ParamName, Typename);
Douglas Gregor72c3f312008-12-05 18:15:24 +0000132 if (Invalid)
133 Param->setInvalidDecl();
134
135 if (ParamName) {
136 // Add the template parameter into the current scope.
137 S->AddDecl(Param);
138 IdResolver.AddDecl(Param);
139 }
140
141 return Param;
142}
143
Douglas Gregord684b002009-02-10 19:49:53 +0000144/// ActOnTypeParameterDefault - Adds a default argument (the type
145/// Default) to the given template type parameter (TypeParam).
146void Sema::ActOnTypeParameterDefault(DeclTy *TypeParam,
147 SourceLocation EqualLoc,
148 SourceLocation DefaultLoc,
149 TypeTy *DefaultT) {
150 TemplateTypeParmDecl *Parm
151 = cast<TemplateTypeParmDecl>(static_cast<Decl *>(TypeParam));
152 QualType Default = QualType::getFromOpaquePtr(DefaultT);
153
154 // C++ [temp.param]p14:
155 // A template-parameter shall not be used in its own default argument.
156 // FIXME: Implement this check! Needs a recursive walk over the types.
157
158 // Check the template argument itself.
159 if (CheckTemplateArgument(Parm, Default, DefaultLoc)) {
160 Parm->setInvalidDecl();
161 return;
162 }
163
164 Parm->setDefaultArgument(Default, DefaultLoc, false);
165}
166
Douglas Gregor2943aed2009-03-03 04:44:36 +0000167/// \brief Check that the type of a non-type template parameter is
168/// well-formed.
169///
170/// \returns the (possibly-promoted) parameter type if valid;
171/// otherwise, produces a diagnostic and returns a NULL type.
172QualType
173Sema::CheckNonTypeTemplateParameterType(QualType T, SourceLocation Loc) {
174 // C++ [temp.param]p4:
175 //
176 // A non-type template-parameter shall have one of the following
177 // (optionally cv-qualified) types:
178 //
179 // -- integral or enumeration type,
180 if (T->isIntegralType() || T->isEnumeralType() ||
181 // -- pointer to object or pointer to function,
182 (T->isPointerType() &&
183 (T->getAsPointerType()->getPointeeType()->isObjectType() ||
184 T->getAsPointerType()->getPointeeType()->isFunctionType())) ||
185 // -- reference to object or reference to function,
186 T->isReferenceType() ||
187 // -- pointer to member.
188 T->isMemberPointerType() ||
189 // If T is a dependent type, we can't do the check now, so we
190 // assume that it is well-formed.
191 T->isDependentType())
192 return T;
193 // C++ [temp.param]p8:
194 //
195 // A non-type template-parameter of type "array of T" or
196 // "function returning T" is adjusted to be of type "pointer to
197 // T" or "pointer to function returning T", respectively.
198 else if (T->isArrayType())
199 // FIXME: Keep the type prior to promotion?
200 return Context.getArrayDecayedType(T);
201 else if (T->isFunctionType())
202 // FIXME: Keep the type prior to promotion?
203 return Context.getPointerType(T);
204
205 Diag(Loc, diag::err_template_nontype_parm_bad_type)
206 << T;
207
208 return QualType();
209}
210
Douglas Gregor72c3f312008-12-05 18:15:24 +0000211/// ActOnNonTypeTemplateParameter - Called when a C++ non-type
212/// template parameter (e.g., "int Size" in "template<int Size>
213/// class Array") has been parsed. S is the current scope and D is
214/// the parsed declarator.
Douglas Gregorc4b4e7b2008-12-24 02:52:09 +0000215Sema::DeclTy *Sema::ActOnNonTypeTemplateParameter(Scope *S, Declarator &D,
216 unsigned Depth,
217 unsigned Position) {
Douglas Gregor72c3f312008-12-05 18:15:24 +0000218 QualType T = GetTypeForDeclarator(D, S);
219
Douglas Gregoraaba5e32009-02-04 19:02:06 +0000220 assert(S->isTemplateParamScope() &&
221 "Non-type template parameter not in template parameter scope!");
Douglas Gregor72c3f312008-12-05 18:15:24 +0000222 bool Invalid = false;
223
224 IdentifierInfo *ParamName = D.getIdentifier();
225 if (ParamName) {
Douglas Gregor47b9a1c2009-02-04 17:27:36 +0000226 NamedDecl *PrevDecl = LookupName(S, ParamName, LookupTagName);
Douglas Gregorf57172b2008-12-08 18:40:42 +0000227 if (PrevDecl && PrevDecl->isTemplateParameter())
Douglas Gregor72c3f312008-12-05 18:15:24 +0000228 Invalid = Invalid || DiagnoseTemplateParameterShadow(D.getIdentifierLoc(),
Douglas Gregoraaba5e32009-02-04 19:02:06 +0000229 PrevDecl);
Douglas Gregor72c3f312008-12-05 18:15:24 +0000230 }
231
Douglas Gregor2943aed2009-03-03 04:44:36 +0000232 T = CheckNonTypeTemplateParameterType(T, D.getIdentifierLoc());
Douglas Gregorceef30c2009-03-09 16:46:39 +0000233 if (T.isNull()) {
Douglas Gregor2943aed2009-03-03 04:44:36 +0000234 T = Context.IntTy; // Recover with an 'int' type.
Douglas Gregorceef30c2009-03-09 16:46:39 +0000235 Invalid = true;
236 }
Douglas Gregor5d290d52009-02-10 17:43:50 +0000237
Douglas Gregor72c3f312008-12-05 18:15:24 +0000238 NonTypeTemplateParmDecl *Param
239 = NonTypeTemplateParmDecl::Create(Context, CurContext, D.getIdentifierLoc(),
Douglas Gregoraaba5e32009-02-04 19:02:06 +0000240 Depth, Position, ParamName, T);
Douglas Gregor72c3f312008-12-05 18:15:24 +0000241 if (Invalid)
242 Param->setInvalidDecl();
243
244 if (D.getIdentifier()) {
245 // Add the template parameter into the current scope.
246 S->AddDecl(Param);
247 IdResolver.AddDecl(Param);
248 }
249 return Param;
250}
Douglas Gregorc4b4e7b2008-12-24 02:52:09 +0000251
Douglas Gregord684b002009-02-10 19:49:53 +0000252/// \brief Adds a default argument to the given non-type template
253/// parameter.
254void Sema::ActOnNonTypeTemplateParameterDefault(DeclTy *TemplateParamD,
255 SourceLocation EqualLoc,
256 ExprArg DefaultE) {
257 NonTypeTemplateParmDecl *TemplateParm
258 = cast<NonTypeTemplateParmDecl>(static_cast<Decl *>(TemplateParamD));
259 Expr *Default = static_cast<Expr *>(DefaultE.get());
260
261 // C++ [temp.param]p14:
262 // A template-parameter shall not be used in its own default argument.
263 // FIXME: Implement this check! Needs a recursive walk over the types.
264
265 // Check the well-formedness of the default template argument.
Douglas Gregor2943aed2009-03-03 04:44:36 +0000266 if (CheckTemplateArgument(TemplateParm, TemplateParm->getType(), Default)) {
Douglas Gregord684b002009-02-10 19:49:53 +0000267 TemplateParm->setInvalidDecl();
268 return;
269 }
270
271 TemplateParm->setDefaultArgument(static_cast<Expr *>(DefaultE.release()));
272}
273
Douglas Gregoraaba5e32009-02-04 19:02:06 +0000274
275/// ActOnTemplateTemplateParameter - Called when a C++ template template
276/// parameter (e.g. T in template <template <typename> class T> class array)
277/// has been parsed. S is the current scope.
278Sema::DeclTy *Sema::ActOnTemplateTemplateParameter(Scope* S,
279 SourceLocation TmpLoc,
280 TemplateParamsTy *Params,
281 IdentifierInfo *Name,
282 SourceLocation NameLoc,
283 unsigned Depth,
284 unsigned Position)
285{
286 assert(S->isTemplateParamScope() &&
287 "Template template parameter not in template parameter scope!");
288
289 // Construct the parameter object.
290 TemplateTemplateParmDecl *Param =
291 TemplateTemplateParmDecl::Create(Context, CurContext, TmpLoc, Depth,
292 Position, Name,
293 (TemplateParameterList*)Params);
294
295 // Make sure the parameter is valid.
296 // FIXME: Decl object is not currently invalidated anywhere so this doesn't
297 // do anything yet. However, if the template parameter list or (eventual)
298 // default value is ever invalidated, that will propagate here.
299 bool Invalid = false;
300 if (Invalid) {
301 Param->setInvalidDecl();
302 }
303
304 // If the tt-param has a name, then link the identifier into the scope
305 // and lookup mechanisms.
306 if (Name) {
307 S->AddDecl(Param);
308 IdResolver.AddDecl(Param);
309 }
310
311 return Param;
312}
313
Douglas Gregord684b002009-02-10 19:49:53 +0000314/// \brief Adds a default argument to the given template template
315/// parameter.
316void Sema::ActOnTemplateTemplateParameterDefault(DeclTy *TemplateParamD,
317 SourceLocation EqualLoc,
318 ExprArg DefaultE) {
319 TemplateTemplateParmDecl *TemplateParm
320 = cast<TemplateTemplateParmDecl>(static_cast<Decl *>(TemplateParamD));
321
322 // Since a template-template parameter's default argument is an
323 // id-expression, it must be a DeclRefExpr.
324 DeclRefExpr *Default
325 = cast<DeclRefExpr>(static_cast<Expr *>(DefaultE.get()));
326
327 // C++ [temp.param]p14:
328 // A template-parameter shall not be used in its own default argument.
329 // FIXME: Implement this check! Needs a recursive walk over the types.
330
331 // Check the well-formedness of the template argument.
332 if (!isa<TemplateDecl>(Default->getDecl())) {
333 Diag(Default->getSourceRange().getBegin(),
334 diag::err_template_arg_must_be_template)
335 << Default->getSourceRange();
336 TemplateParm->setInvalidDecl();
337 return;
338 }
339 if (CheckTemplateArgument(TemplateParm, Default)) {
340 TemplateParm->setInvalidDecl();
341 return;
342 }
343
344 DefaultE.release();
345 TemplateParm->setDefaultArgument(Default);
346}
347
Douglas Gregorc4b4e7b2008-12-24 02:52:09 +0000348/// ActOnTemplateParameterList - Builds a TemplateParameterList that
349/// contains the template parameters in Params/NumParams.
350Sema::TemplateParamsTy *
351Sema::ActOnTemplateParameterList(unsigned Depth,
352 SourceLocation ExportLoc,
353 SourceLocation TemplateLoc,
354 SourceLocation LAngleLoc,
355 DeclTy **Params, unsigned NumParams,
356 SourceLocation RAngleLoc) {
357 if (ExportLoc.isValid())
358 Diag(ExportLoc, diag::note_template_export_unsupported);
359
Douglas Gregorddc29e12009-02-06 22:42:48 +0000360 return TemplateParameterList::Create(Context, TemplateLoc, LAngleLoc,
361 (Decl**)Params, NumParams, RAngleLoc);
Douglas Gregorc4b4e7b2008-12-24 02:52:09 +0000362}
Douglas Gregoraaba5e32009-02-04 19:02:06 +0000363
Douglas Gregorddc29e12009-02-06 22:42:48 +0000364Sema::DeclTy *
365Sema::ActOnClassTemplate(Scope *S, unsigned TagSpec, TagKind TK,
366 SourceLocation KWLoc, const CXXScopeSpec &SS,
367 IdentifierInfo *Name, SourceLocation NameLoc,
368 AttributeList *Attr,
369 MultiTemplateParamsArg TemplateParameterLists) {
370 assert(TemplateParameterLists.size() > 0 && "No template parameter lists?");
371 assert(TK != TK_Reference && "Can only declare or define class templates");
Douglas Gregord684b002009-02-10 19:49:53 +0000372 bool Invalid = false;
Douglas Gregorddc29e12009-02-06 22:42:48 +0000373
374 // Check that we can declare a template here.
375 if (CheckTemplateDeclScope(S, TemplateParameterLists))
376 return 0;
377
378 TagDecl::TagKind Kind;
379 switch (TagSpec) {
380 default: assert(0 && "Unknown tag type!");
381 case DeclSpec::TST_struct: Kind = TagDecl::TK_struct; break;
382 case DeclSpec::TST_union: Kind = TagDecl::TK_union; break;
383 case DeclSpec::TST_class: Kind = TagDecl::TK_class; break;
384 }
385
386 // There is no such thing as an unnamed class template.
387 if (!Name) {
388 Diag(KWLoc, diag::err_template_unnamed_class);
389 return 0;
390 }
391
392 // Find any previous declaration with this name.
393 LookupResult Previous = LookupParsedName(S, &SS, Name, LookupOrdinaryName,
394 true);
395 assert(!Previous.isAmbiguous() && "Ambiguity in class template redecl?");
396 NamedDecl *PrevDecl = 0;
397 if (Previous.begin() != Previous.end())
398 PrevDecl = *Previous.begin();
399
400 DeclContext *SemanticContext = CurContext;
401 if (SS.isNotEmpty() && !SS.isInvalid()) {
402 SemanticContext = static_cast<DeclContext*>(SS.getScopeRep());
403
404 // FIXME: need to match up several levels of template parameter
405 // lists here.
406 }
407
408 // FIXME: member templates!
409 TemplateParameterList *TemplateParams
410 = static_cast<TemplateParameterList *>(*TemplateParameterLists.release());
411
412 // If there is a previous declaration with the same name, check
413 // whether this is a valid redeclaration.
414 ClassTemplateDecl *PrevClassTemplate
415 = dyn_cast_or_null<ClassTemplateDecl>(PrevDecl);
416 if (PrevClassTemplate) {
417 // Ensure that the template parameter lists are compatible.
418 if (!TemplateParameterListsAreEqual(TemplateParams,
419 PrevClassTemplate->getTemplateParameters(),
420 /*Complain=*/true))
421 return 0;
422
423 // C++ [temp.class]p4:
424 // In a redeclaration, partial specialization, explicit
425 // specialization or explicit instantiation of a class template,
426 // the class-key shall agree in kind with the original class
427 // template declaration (7.1.5.3).
428 RecordDecl *PrevRecordDecl = PrevClassTemplate->getTemplatedDecl();
429 if (PrevRecordDecl->getTagKind() != Kind) {
430 Diag(KWLoc, diag::err_use_with_wrong_tag) << Name;
431 Diag(PrevRecordDecl->getLocation(), diag::note_previous_use);
432 return 0;
433 }
434
435
436 // Check for redefinition of this class template.
437 if (TK == TK_Definition) {
438 if (TagDecl *Def = PrevRecordDecl->getDefinition(Context)) {
439 Diag(NameLoc, diag::err_redefinition) << Name;
440 Diag(Def->getLocation(), diag::note_previous_definition);
441 // FIXME: Would it make sense to try to "forget" the previous
442 // definition, as part of error recovery?
443 return 0;
444 }
445 }
446 } else if (PrevDecl && PrevDecl->isTemplateParameter()) {
447 // Maybe we will complain about the shadowed template parameter.
448 DiagnoseTemplateParameterShadow(NameLoc, PrevDecl);
449 // Just pretend that we didn't see the previous declaration.
450 PrevDecl = 0;
451 } else if (PrevDecl) {
452 // C++ [temp]p5:
453 // A class template shall not have the same name as any other
454 // template, class, function, object, enumeration, enumerator,
455 // namespace, or type in the same scope (3.3), except as specified
456 // in (14.5.4).
457 Diag(NameLoc, diag::err_redefinition_different_kind) << Name;
458 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
459 return 0;
460 }
461
Douglas Gregord684b002009-02-10 19:49:53 +0000462 // Check the template parameter list of this declaration, possibly
463 // merging in the template parameter list from the previous class
464 // template declaration.
465 if (CheckTemplateParameterList(TemplateParams,
466 PrevClassTemplate? PrevClassTemplate->getTemplateParameters() : 0))
467 Invalid = true;
468
Douglas Gregorddc29e12009-02-06 22:42:48 +0000469 // If we had a scope specifier, we better have a previous template
470 // declaration!
471
472 TagDecl *NewClass =
473 CXXRecordDecl::Create(Context, Kind, SemanticContext, NameLoc, Name,
474 PrevClassTemplate?
475 PrevClassTemplate->getTemplatedDecl() : 0);
476
477 ClassTemplateDecl *NewTemplate
478 = ClassTemplateDecl::Create(Context, SemanticContext, NameLoc,
479 DeclarationName(Name), TemplateParams,
480 NewClass);
481
482 // Set the lexical context of these templates
483 NewClass->setLexicalDeclContext(CurContext);
484 NewTemplate->setLexicalDeclContext(CurContext);
485
486 if (TK == TK_Definition)
487 NewClass->startDefinition();
488
489 if (Attr)
490 ProcessDeclAttributeList(NewClass, Attr);
491
492 PushOnScopeChains(NewTemplate, S);
493
Douglas Gregord684b002009-02-10 19:49:53 +0000494 if (Invalid) {
495 NewTemplate->setInvalidDecl();
496 NewClass->setInvalidDecl();
497 }
Douglas Gregorddc29e12009-02-06 22:42:48 +0000498 return NewTemplate;
499}
500
Douglas Gregord684b002009-02-10 19:49:53 +0000501/// \brief Checks the validity of a template parameter list, possibly
502/// considering the template parameter list from a previous
503/// declaration.
504///
505/// If an "old" template parameter list is provided, it must be
506/// equivalent (per TemplateParameterListsAreEqual) to the "new"
507/// template parameter list.
508///
509/// \param NewParams Template parameter list for a new template
510/// declaration. This template parameter list will be updated with any
511/// default arguments that are carried through from the previous
512/// template parameter list.
513///
514/// \param OldParams If provided, template parameter list from a
515/// previous declaration of the same template. Default template
516/// arguments will be merged from the old template parameter list to
517/// the new template parameter list.
518///
519/// \returns true if an error occurred, false otherwise.
520bool Sema::CheckTemplateParameterList(TemplateParameterList *NewParams,
521 TemplateParameterList *OldParams) {
522 bool Invalid = false;
523
524 // C++ [temp.param]p10:
525 // The set of default template-arguments available for use with a
526 // template declaration or definition is obtained by merging the
527 // default arguments from the definition (if in scope) and all
528 // declarations in scope in the same way default function
529 // arguments are (8.3.6).
530 bool SawDefaultArgument = false;
531 SourceLocation PreviousDefaultArgLoc;
Douglas Gregorc15cb382009-02-09 23:23:08 +0000532
Mike Stump1a35fde2009-02-11 23:03:27 +0000533 // Dummy initialization to avoid warnings.
Douglas Gregor1bc69132009-02-11 20:46:19 +0000534 TemplateParameterList::iterator OldParam = NewParams->end();
Douglas Gregord684b002009-02-10 19:49:53 +0000535 if (OldParams)
536 OldParam = OldParams->begin();
537
538 for (TemplateParameterList::iterator NewParam = NewParams->begin(),
539 NewParamEnd = NewParams->end();
540 NewParam != NewParamEnd; ++NewParam) {
541 // Variables used to diagnose redundant default arguments
542 bool RedundantDefaultArg = false;
543 SourceLocation OldDefaultLoc;
544 SourceLocation NewDefaultLoc;
545
546 // Variables used to diagnose missing default arguments
547 bool MissingDefaultArg = false;
548
549 // Merge default arguments for template type parameters.
550 if (TemplateTypeParmDecl *NewTypeParm
551 = dyn_cast<TemplateTypeParmDecl>(*NewParam)) {
552 TemplateTypeParmDecl *OldTypeParm
553 = OldParams? cast<TemplateTypeParmDecl>(*OldParam) : 0;
554
555 if (OldTypeParm && OldTypeParm->hasDefaultArgument() &&
556 NewTypeParm->hasDefaultArgument()) {
557 OldDefaultLoc = OldTypeParm->getDefaultArgumentLoc();
558 NewDefaultLoc = NewTypeParm->getDefaultArgumentLoc();
559 SawDefaultArgument = true;
560 RedundantDefaultArg = true;
561 PreviousDefaultArgLoc = NewDefaultLoc;
562 } else if (OldTypeParm && OldTypeParm->hasDefaultArgument()) {
563 // Merge the default argument from the old declaration to the
564 // new declaration.
565 SawDefaultArgument = true;
566 NewTypeParm->setDefaultArgument(OldTypeParm->getDefaultArgument(),
567 OldTypeParm->getDefaultArgumentLoc(),
568 true);
569 PreviousDefaultArgLoc = OldTypeParm->getDefaultArgumentLoc();
570 } else if (NewTypeParm->hasDefaultArgument()) {
571 SawDefaultArgument = true;
572 PreviousDefaultArgLoc = NewTypeParm->getDefaultArgumentLoc();
573 } else if (SawDefaultArgument)
574 MissingDefaultArg = true;
575 }
576 // Merge default arguments for non-type template parameters
577 else if (NonTypeTemplateParmDecl *NewNonTypeParm
578 = dyn_cast<NonTypeTemplateParmDecl>(*NewParam)) {
579 NonTypeTemplateParmDecl *OldNonTypeParm
580 = OldParams? cast<NonTypeTemplateParmDecl>(*OldParam) : 0;
581 if (OldNonTypeParm && OldNonTypeParm->hasDefaultArgument() &&
582 NewNonTypeParm->hasDefaultArgument()) {
583 OldDefaultLoc = OldNonTypeParm->getDefaultArgumentLoc();
584 NewDefaultLoc = NewNonTypeParm->getDefaultArgumentLoc();
585 SawDefaultArgument = true;
586 RedundantDefaultArg = true;
587 PreviousDefaultArgLoc = NewDefaultLoc;
588 } else if (OldNonTypeParm && OldNonTypeParm->hasDefaultArgument()) {
589 // Merge the default argument from the old declaration to the
590 // new declaration.
591 SawDefaultArgument = true;
592 // FIXME: We need to create a new kind of "default argument"
593 // expression that points to a previous template template
594 // parameter.
595 NewNonTypeParm->setDefaultArgument(
596 OldNonTypeParm->getDefaultArgument());
597 PreviousDefaultArgLoc = OldNonTypeParm->getDefaultArgumentLoc();
598 } else if (NewNonTypeParm->hasDefaultArgument()) {
599 SawDefaultArgument = true;
600 PreviousDefaultArgLoc = NewNonTypeParm->getDefaultArgumentLoc();
601 } else if (SawDefaultArgument)
602 MissingDefaultArg = true;
603 }
604 // Merge default arguments for template template parameters
605 else {
606 TemplateTemplateParmDecl *NewTemplateParm
607 = cast<TemplateTemplateParmDecl>(*NewParam);
608 TemplateTemplateParmDecl *OldTemplateParm
609 = OldParams? cast<TemplateTemplateParmDecl>(*OldParam) : 0;
610 if (OldTemplateParm && OldTemplateParm->hasDefaultArgument() &&
611 NewTemplateParm->hasDefaultArgument()) {
612 OldDefaultLoc = OldTemplateParm->getDefaultArgumentLoc();
613 NewDefaultLoc = NewTemplateParm->getDefaultArgumentLoc();
614 SawDefaultArgument = true;
615 RedundantDefaultArg = true;
616 PreviousDefaultArgLoc = NewDefaultLoc;
617 } else if (OldTemplateParm && OldTemplateParm->hasDefaultArgument()) {
618 // Merge the default argument from the old declaration to the
619 // new declaration.
620 SawDefaultArgument = true;
621 // FIXME: We need to create a new kind of "default argument"
622 // expression that points to a previous template template
623 // parameter.
624 NewTemplateParm->setDefaultArgument(
625 OldTemplateParm->getDefaultArgument());
626 PreviousDefaultArgLoc = OldTemplateParm->getDefaultArgumentLoc();
627 } else if (NewTemplateParm->hasDefaultArgument()) {
628 SawDefaultArgument = true;
629 PreviousDefaultArgLoc = NewTemplateParm->getDefaultArgumentLoc();
630 } else if (SawDefaultArgument)
631 MissingDefaultArg = true;
632 }
633
634 if (RedundantDefaultArg) {
635 // C++ [temp.param]p12:
636 // A template-parameter shall not be given default arguments
637 // by two different declarations in the same scope.
638 Diag(NewDefaultLoc, diag::err_template_param_default_arg_redefinition);
639 Diag(OldDefaultLoc, diag::note_template_param_prev_default_arg);
640 Invalid = true;
641 } else if (MissingDefaultArg) {
642 // C++ [temp.param]p11:
643 // If a template-parameter has a default template-argument,
644 // all subsequent template-parameters shall have a default
645 // template-argument supplied.
646 Diag((*NewParam)->getLocation(),
647 diag::err_template_param_default_arg_missing);
648 Diag(PreviousDefaultArgLoc, diag::note_template_param_prev_default_arg);
649 Invalid = true;
650 }
651
652 // If we have an old template parameter list that we're merging
653 // in, move on to the next parameter.
654 if (OldParams)
655 ++OldParam;
656 }
657
658 return Invalid;
659}
Douglas Gregorc15cb382009-02-09 23:23:08 +0000660
Douglas Gregor40808ce2009-03-09 23:48:35 +0000661/// \brief Translates template arguments as provided by the parser
662/// into template arguments used by semantic analysis.
663static void
664translateTemplateArguments(ASTTemplateArgsPtr &TemplateArgsIn,
665 SourceLocation *TemplateArgLocs,
666 llvm::SmallVector<TemplateArgument, 16> &TemplateArgs) {
667 TemplateArgs.reserve(TemplateArgsIn.size());
668
669 void **Args = TemplateArgsIn.getArgs();
670 bool *ArgIsType = TemplateArgsIn.getArgIsType();
671 for (unsigned Arg = 0, Last = TemplateArgsIn.size(); Arg != Last; ++Arg) {
672 TemplateArgs.push_back(
673 ArgIsType[Arg]? TemplateArgument(TemplateArgLocs[Arg],
674 QualType::getFromOpaquePtr(Args[Arg]))
675 : TemplateArgument(reinterpret_cast<Expr *>(Args[Arg])));
676 }
677}
678
679QualType Sema::CheckClassTemplateId(ClassTemplateDecl *ClassTemplate,
680 SourceLocation TemplateLoc,
681 SourceLocation LAngleLoc,
682 const TemplateArgument *TemplateArgs,
683 unsigned NumTemplateArgs,
684 SourceLocation RAngleLoc) {
685 // Check that the template argument list is well-formed for this
686 // template.
687 llvm::SmallVector<TemplateArgument, 16> ConvertedTemplateArgs;
688 if (CheckTemplateArgumentList(ClassTemplate, TemplateLoc, LAngleLoc,
689 TemplateArgs, NumTemplateArgs, RAngleLoc,
690 ConvertedTemplateArgs))
691 return QualType();
692
693 assert((ConvertedTemplateArgs.size() ==
694 ClassTemplate->getTemplateParameters()->size()) &&
695 "Converted template argument list is too short!");
696
697 QualType CanonType;
698
699 if (ClassTemplateSpecializationType::anyDependentTemplateArguments(
700 TemplateArgs,
701 NumTemplateArgs)) {
702 // This class template specialization is a dependent
703 // type. Therefore, its canonical type is another class template
704 // specialization type that contains all of the converted
705 // arguments in canonical form. This ensures that, e.g., A<T> and
706 // A<T, T> have identical types when A is declared as:
707 //
708 // template<typename T, typename U = T> struct A;
709
710 CanonType = Context.getClassTemplateSpecializationType(ClassTemplate,
711 &ConvertedTemplateArgs[0],
712 ConvertedTemplateArgs.size());
713 } else {
714 // Find the class template specialization declaration that
715 // corresponds to these arguments.
716 llvm::FoldingSetNodeID ID;
717 ClassTemplateSpecializationDecl::Profile(ID, &ConvertedTemplateArgs[0],
718 ConvertedTemplateArgs.size());
719 void *InsertPos = 0;
720 ClassTemplateSpecializationDecl *Decl
721 = ClassTemplate->getSpecializations().FindNodeOrInsertPos(ID, InsertPos);
722 if (!Decl) {
723 // This is the first time we have referenced this class template
724 // specialization. Create the canonical declaration and add it to
725 // the set of specializations.
726 Decl = ClassTemplateSpecializationDecl::Create(Context,
727 ClassTemplate->getDeclContext(),
728 TemplateLoc,
729 ClassTemplate,
730 &ConvertedTemplateArgs[0],
731 ConvertedTemplateArgs.size(),
732 0);
733 ClassTemplate->getSpecializations().InsertNode(Decl, InsertPos);
734 Decl->setLexicalDeclContext(CurContext);
735 }
736
737 CanonType = Context.getTypeDeclType(Decl);
738 }
739
740 // Build the fully-sugared type for this class template
741 // specialization, which refers back to the class template
742 // specialization we created or found.
743 return Context.getClassTemplateSpecializationType(ClassTemplate,
744 TemplateArgs,
745 NumTemplateArgs,
746 CanonType);
747}
748
Douglas Gregorcc636682009-02-17 23:15:12 +0000749Action::TypeResult
750Sema::ActOnClassTemplateId(DeclTy *TemplateD, SourceLocation TemplateLoc,
751 SourceLocation LAngleLoc,
Douglas Gregor40808ce2009-03-09 23:48:35 +0000752 ASTTemplateArgsPtr TemplateArgsIn,
Douglas Gregorcc636682009-02-17 23:15:12 +0000753 SourceLocation *TemplateArgLocs,
754 SourceLocation RAngleLoc,
755 const CXXScopeSpec *SS) {
Douglas Gregor55f6b142009-02-09 18:46:07 +0000756 TemplateDecl *Template = cast<TemplateDecl>(static_cast<Decl *>(TemplateD));
Douglas Gregor3e00bad2009-02-17 01:05:43 +0000757 ClassTemplateDecl *ClassTemplate = cast<ClassTemplateDecl>(Template);
Douglas Gregor55f6b142009-02-09 18:46:07 +0000758
Douglas Gregor40808ce2009-03-09 23:48:35 +0000759 // Translate the parser's template argument list in our AST format.
760 llvm::SmallVector<TemplateArgument, 16> TemplateArgs;
761 translateTemplateArguments(TemplateArgsIn, TemplateArgLocs, TemplateArgs);
Douglas Gregorc15cb382009-02-09 23:23:08 +0000762
Douglas Gregor40808ce2009-03-09 23:48:35 +0000763 QualType Result = CheckClassTemplateId(ClassTemplate, TemplateLoc,
764 LAngleLoc,
765 &TemplateArgs[0],
766 TemplateArgs.size(),
767 RAngleLoc);
Douglas Gregor3e00bad2009-02-17 01:05:43 +0000768
Douglas Gregor40808ce2009-03-09 23:48:35 +0000769 TemplateArgsIn.release();
Douglas Gregor5908e9f2009-02-09 19:34:22 +0000770 return Result.getAsOpaquePtr();
Douglas Gregor55f6b142009-02-09 18:46:07 +0000771}
772
Douglas Gregorc15cb382009-02-09 23:23:08 +0000773/// \brief Check that the given template argument list is well-formed
774/// for specializing the given template.
775bool Sema::CheckTemplateArgumentList(TemplateDecl *Template,
776 SourceLocation TemplateLoc,
777 SourceLocation LAngleLoc,
Douglas Gregor40808ce2009-03-09 23:48:35 +0000778 const TemplateArgument *TemplateArgs,
779 unsigned NumTemplateArgs,
Douglas Gregor3e00bad2009-02-17 01:05:43 +0000780 SourceLocation RAngleLoc,
781 llvm::SmallVectorImpl<TemplateArgument> &Converted) {
Douglas Gregorc15cb382009-02-09 23:23:08 +0000782 TemplateParameterList *Params = Template->getTemplateParameters();
783 unsigned NumParams = Params->size();
Douglas Gregor40808ce2009-03-09 23:48:35 +0000784 unsigned NumArgs = NumTemplateArgs;
Douglas Gregorc15cb382009-02-09 23:23:08 +0000785 bool Invalid = false;
786
787 if (NumArgs > NumParams ||
Douglas Gregor62cb18d2009-02-11 18:16:40 +0000788 NumArgs < Params->getMinRequiredArguments()) {
Douglas Gregorc15cb382009-02-09 23:23:08 +0000789 // FIXME: point at either the first arg beyond what we can handle,
790 // or the '>', depending on whether we have too many or too few
791 // arguments.
792 SourceRange Range;
793 if (NumArgs > NumParams)
Douglas Gregor40808ce2009-03-09 23:48:35 +0000794 Range = SourceRange(TemplateArgs[NumParams].getLocation(), RAngleLoc);
Douglas Gregorc15cb382009-02-09 23:23:08 +0000795 Diag(TemplateLoc, diag::err_template_arg_list_different_arity)
796 << (NumArgs > NumParams)
797 << (isa<ClassTemplateDecl>(Template)? 0 :
798 isa<FunctionTemplateDecl>(Template)? 1 :
799 isa<TemplateTemplateParmDecl>(Template)? 2 : 3)
800 << Template << Range;
Douglas Gregor62cb18d2009-02-11 18:16:40 +0000801 Diag(Template->getLocation(), diag::note_template_decl_here)
802 << Params->getSourceRange();
Douglas Gregorc15cb382009-02-09 23:23:08 +0000803 Invalid = true;
804 }
805
806 // C++ [temp.arg]p1:
807 // [...] The type and form of each template-argument specified in
808 // a template-id shall match the type and form specified for the
809 // corresponding parameter declared by the template in its
810 // template-parameter-list.
811 unsigned ArgIdx = 0;
812 for (TemplateParameterList::iterator Param = Params->begin(),
813 ParamEnd = Params->end();
814 Param != ParamEnd; ++Param, ++ArgIdx) {
815 // Decode the template argument
Douglas Gregor40808ce2009-03-09 23:48:35 +0000816 TemplateArgument Arg;
Douglas Gregorc15cb382009-02-09 23:23:08 +0000817 if (ArgIdx >= NumArgs) {
Douglas Gregor3e00bad2009-02-17 01:05:43 +0000818 // Retrieve the default template argument from the template
819 // parameter.
820 if (TemplateTypeParmDecl *TTP = dyn_cast<TemplateTypeParmDecl>(*Param)) {
821 if (!TTP->hasDefaultArgument())
822 break;
823
Douglas Gregor40808ce2009-03-09 23:48:35 +0000824 QualType ArgType = TTP->getDefaultArgument();
Douglas Gregor99ebf652009-02-27 19:31:52 +0000825
826 // If the argument type is dependent, instantiate it now based
827 // on the previously-computed template arguments.
828 if (ArgType->isDependentType())
829 ArgType = InstantiateType(ArgType, &Converted[0], Converted.size(),
830 TTP->getDefaultArgumentLoc(),
831 TTP->getDeclName());
832
833 if (ArgType.isNull())
Douglas Gregorcd281c32009-02-28 00:25:32 +0000834 return true;
Douglas Gregor99ebf652009-02-27 19:31:52 +0000835
Douglas Gregor40808ce2009-03-09 23:48:35 +0000836 Arg = TemplateArgument(TTP->getLocation(), ArgType);
Douglas Gregor3e00bad2009-02-17 01:05:43 +0000837 } else if (NonTypeTemplateParmDecl *NTTP
838 = dyn_cast<NonTypeTemplateParmDecl>(*Param)) {
839 if (!NTTP->hasDefaultArgument())
840 break;
841
Douglas Gregor2943aed2009-03-03 04:44:36 +0000842 // FIXME: Instantiate default argument
Douglas Gregor40808ce2009-03-09 23:48:35 +0000843 Arg = TemplateArgument(NTTP->getDefaultArgument());
Douglas Gregor3e00bad2009-02-17 01:05:43 +0000844 } else {
845 TemplateTemplateParmDecl *TempParm
846 = cast<TemplateTemplateParmDecl>(*Param);
847
848 if (!TempParm->hasDefaultArgument())
849 break;
850
Douglas Gregor2943aed2009-03-03 04:44:36 +0000851 // FIXME: Instantiate default argument
Douglas Gregor40808ce2009-03-09 23:48:35 +0000852 Arg = TemplateArgument(TempParm->getDefaultArgument());
Douglas Gregor3e00bad2009-02-17 01:05:43 +0000853 }
854 } else {
855 // Retrieve the template argument produced by the user.
Douglas Gregor40808ce2009-03-09 23:48:35 +0000856 Arg = TemplateArgs[ArgIdx];
Douglas Gregor3e00bad2009-02-17 01:05:43 +0000857 }
858
Douglas Gregorc15cb382009-02-09 23:23:08 +0000859
860 if (TemplateTypeParmDecl *TTP = dyn_cast<TemplateTypeParmDecl>(*Param)) {
861 // Check template type parameters.
Douglas Gregor40808ce2009-03-09 23:48:35 +0000862 if (Arg.getKind() == TemplateArgument::Type) {
863 if (CheckTemplateArgument(TTP, Arg.getAsType(), Arg.getLocation()))
Douglas Gregorc15cb382009-02-09 23:23:08 +0000864 Invalid = true;
Douglas Gregor3e00bad2009-02-17 01:05:43 +0000865
866 // Add the converted template type argument.
867 Converted.push_back(
Douglas Gregor40808ce2009-03-09 23:48:35 +0000868 TemplateArgument(Arg.getLocation(),
869 Context.getCanonicalType(Arg.getAsType())));
Douglas Gregorc15cb382009-02-09 23:23:08 +0000870 continue;
871 }
872
873 // C++ [temp.arg.type]p1:
874 // A template-argument for a template-parameter which is a
875 // type shall be a type-id.
876
877 // We have a template type parameter but the template argument
Douglas Gregor40808ce2009-03-09 23:48:35 +0000878 // is not a type.
879 Diag(Arg.getLocation(), diag::err_template_arg_must_be_type);
Douglas Gregor8b642592009-02-10 00:53:15 +0000880 Diag((*Param)->getLocation(), diag::note_template_param_here);
Douglas Gregorc15cb382009-02-09 23:23:08 +0000881 Invalid = true;
882 } else if (NonTypeTemplateParmDecl *NTTP
883 = dyn_cast<NonTypeTemplateParmDecl>(*Param)) {
884 // Check non-type template parameters.
Douglas Gregor2943aed2009-03-03 04:44:36 +0000885
886 // Instantiate the type of the non-type template parameter with
887 // the template arguments we've seen thus far.
888 QualType NTTPType = NTTP->getType();
889 if (NTTPType->isDependentType()) {
890 // Instantiate the type of the non-type template parameter.
891 NTTPType = InstantiateType(NTTPType,
892 &Converted[0], Converted.size(),
893 NTTP->getLocation(),
894 NTTP->getDeclName());
895 // If that worked, check the non-type template parameter type
896 // for validity.
897 if (!NTTPType.isNull())
898 NTTPType = CheckNonTypeTemplateParameterType(NTTPType,
899 NTTP->getLocation());
900
901 if (NTTPType.isNull()) {
902 Invalid = true;
903 break;
904 }
905 }
906
Douglas Gregor40808ce2009-03-09 23:48:35 +0000907 switch (Arg.getKind()) {
908 case TemplateArgument::Expression: {
909 Expr *E = Arg.getAsExpr();
910 if (CheckTemplateArgument(NTTP, NTTPType, E, &Converted))
Douglas Gregorc15cb382009-02-09 23:23:08 +0000911 Invalid = true;
Douglas Gregor40808ce2009-03-09 23:48:35 +0000912 break;
Douglas Gregorc15cb382009-02-09 23:23:08 +0000913 }
914
Douglas Gregor40808ce2009-03-09 23:48:35 +0000915 case TemplateArgument::Declaration:
916 case TemplateArgument::Integral:
917 // We've already checked this template argument, so just copy
918 // it to the list of converted arguments.
919 Converted.push_back(Arg);
920 break;
Douglas Gregorc15cb382009-02-09 23:23:08 +0000921
Douglas Gregor40808ce2009-03-09 23:48:35 +0000922 case TemplateArgument::Type:
923 // We have a non-type template parameter but the template
924 // argument is a type.
925
926 // C++ [temp.arg]p2:
927 // In a template-argument, an ambiguity between a type-id and
928 // an expression is resolved to a type-id, regardless of the
929 // form of the corresponding template-parameter.
930 //
931 // We warn specifically about this case, since it can be rather
932 // confusing for users.
933 if (Arg.getAsType()->isFunctionType())
934 Diag(Arg.getLocation(), diag::err_template_arg_nontype_ambig)
935 << Arg.getAsType();
936 else
937 Diag(Arg.getLocation(), diag::err_template_arg_must_be_expr);
938 Diag((*Param)->getLocation(), diag::note_template_param_here);
939 Invalid = true;
940 }
Douglas Gregorc15cb382009-02-09 23:23:08 +0000941 } else {
942 // Check template template parameters.
943 TemplateTemplateParmDecl *TempParm
944 = cast<TemplateTemplateParmDecl>(*Param);
945
Douglas Gregor40808ce2009-03-09 23:48:35 +0000946 switch (Arg.getKind()) {
947 case TemplateArgument::Expression: {
948 Expr *ArgExpr = Arg.getAsExpr();
949 if (ArgExpr && isa<DeclRefExpr>(ArgExpr) &&
950 isa<TemplateDecl>(cast<DeclRefExpr>(ArgExpr)->getDecl())) {
951 if (CheckTemplateArgument(TempParm, cast<DeclRefExpr>(ArgExpr)))
952 Invalid = true;
953
954 // Add the converted template argument.
955 // FIXME: Need the "canonical" template declaration!
956 Converted.push_back(
957 TemplateArgument(Arg.getLocation(),
958 cast<DeclRefExpr>(ArgExpr)->getDecl()));
959 continue;
960 }
961 }
962 // fall through
963
964 case TemplateArgument::Type: {
965 // We have a template template parameter but the template
966 // argument does not refer to a template.
967 Diag(Arg.getLocation(), diag::err_template_arg_must_be_template);
968 Invalid = true;
969 break;
Douglas Gregorc15cb382009-02-09 23:23:08 +0000970 }
971
Douglas Gregor40808ce2009-03-09 23:48:35 +0000972 case TemplateArgument::Declaration:
973 // We've already checked this template argument, so just copy
974 // it to the list of converted arguments.
975 Converted.push_back(Arg);
976 break;
977
978 case TemplateArgument::Integral:
979 assert(false && "Integral argument with template template parameter");
980 break;
981 }
Douglas Gregorc15cb382009-02-09 23:23:08 +0000982 }
983 }
984
985 return Invalid;
986}
987
988/// \brief Check a template argument against its corresponding
989/// template type parameter.
990///
991/// This routine implements the semantics of C++ [temp.arg.type]. It
992/// returns true if an error occurred, and false otherwise.
993bool Sema::CheckTemplateArgument(TemplateTypeParmDecl *Param,
994 QualType Arg, SourceLocation ArgLoc) {
995 // C++ [temp.arg.type]p2:
996 // A local type, a type with no linkage, an unnamed type or a type
997 // compounded from any of these types shall not be used as a
998 // template-argument for a template type-parameter.
999 //
1000 // FIXME: Perform the recursive and no-linkage type checks.
1001 const TagType *Tag = 0;
1002 if (const EnumType *EnumT = Arg->getAsEnumType())
1003 Tag = EnumT;
1004 else if (const RecordType *RecordT = Arg->getAsRecordType())
1005 Tag = RecordT;
1006 if (Tag && Tag->getDecl()->getDeclContext()->isFunctionOrMethod())
1007 return Diag(ArgLoc, diag::err_template_arg_local_type)
1008 << QualType(Tag, 0);
Douglas Gregor98137532009-03-10 18:33:27 +00001009 else if (Tag && !Tag->getDecl()->getDeclName() &&
1010 !Tag->getDecl()->getTypedefForAnonDecl()) {
Douglas Gregorc15cb382009-02-09 23:23:08 +00001011 Diag(ArgLoc, diag::err_template_arg_unnamed_type);
1012 Diag(Tag->getDecl()->getLocation(), diag::note_template_unnamed_type_here);
1013 return true;
1014 }
1015
1016 return false;
1017}
1018
Douglas Gregorcc45cb32009-02-11 19:52:55 +00001019/// \brief Checks whether the given template argument is the address
1020/// of an object or function according to C++ [temp.arg.nontype]p1.
Douglas Gregor3e00bad2009-02-17 01:05:43 +00001021bool Sema::CheckTemplateArgumentAddressOfObjectOrFunction(Expr *Arg,
1022 NamedDecl *&Entity) {
Douglas Gregorcc45cb32009-02-11 19:52:55 +00001023 bool Invalid = false;
1024
1025 // See through any implicit casts we added to fix the type.
1026 if (ImplicitCastExpr *Cast = dyn_cast<ImplicitCastExpr>(Arg))
1027 Arg = Cast->getSubExpr();
1028
1029 // C++ [temp.arg.nontype]p1:
1030 //
1031 // A template-argument for a non-type, non-template
1032 // template-parameter shall be one of: [...]
1033 //
1034 // -- the address of an object or function with external
1035 // linkage, including function templates and function
1036 // template-ids but excluding non-static class members,
1037 // expressed as & id-expression where the & is optional if
1038 // the name refers to a function or array, or if the
1039 // corresponding template-parameter is a reference; or
1040 DeclRefExpr *DRE = 0;
1041
1042 // Ignore (and complain about) any excess parentheses.
1043 while (ParenExpr *Parens = dyn_cast<ParenExpr>(Arg)) {
1044 if (!Invalid) {
1045 Diag(Arg->getSourceRange().getBegin(),
1046 diag::err_template_arg_extra_parens)
1047 << Arg->getSourceRange();
1048 Invalid = true;
1049 }
1050
1051 Arg = Parens->getSubExpr();
1052 }
1053
1054 if (UnaryOperator *UnOp = dyn_cast<UnaryOperator>(Arg)) {
1055 if (UnOp->getOpcode() == UnaryOperator::AddrOf)
1056 DRE = dyn_cast<DeclRefExpr>(UnOp->getSubExpr());
1057 } else
1058 DRE = dyn_cast<DeclRefExpr>(Arg);
1059
1060 if (!DRE || !isa<ValueDecl>(DRE->getDecl()))
1061 return Diag(Arg->getSourceRange().getBegin(),
1062 diag::err_template_arg_not_object_or_func_form)
1063 << Arg->getSourceRange();
1064
1065 // Cannot refer to non-static data members
1066 if (FieldDecl *Field = dyn_cast<FieldDecl>(DRE->getDecl()))
1067 return Diag(Arg->getSourceRange().getBegin(), diag::err_template_arg_field)
1068 << Field << Arg->getSourceRange();
1069
1070 // Cannot refer to non-static member functions
1071 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(DRE->getDecl()))
1072 if (!Method->isStatic())
1073 return Diag(Arg->getSourceRange().getBegin(),
1074 diag::err_template_arg_method)
1075 << Method << Arg->getSourceRange();
1076
1077 // Functions must have external linkage.
1078 if (FunctionDecl *Func = dyn_cast<FunctionDecl>(DRE->getDecl())) {
1079 if (Func->getStorageClass() == FunctionDecl::Static) {
1080 Diag(Arg->getSourceRange().getBegin(),
1081 diag::err_template_arg_function_not_extern)
1082 << Func << Arg->getSourceRange();
1083 Diag(Func->getLocation(), diag::note_template_arg_internal_object)
1084 << true;
1085 return true;
1086 }
1087
1088 // Okay: we've named a function with external linkage.
Douglas Gregor3e00bad2009-02-17 01:05:43 +00001089 Entity = Func;
Douglas Gregorcc45cb32009-02-11 19:52:55 +00001090 return Invalid;
1091 }
1092
1093 if (VarDecl *Var = dyn_cast<VarDecl>(DRE->getDecl())) {
1094 if (!Var->hasGlobalStorage()) {
1095 Diag(Arg->getSourceRange().getBegin(),
1096 diag::err_template_arg_object_not_extern)
1097 << Var << Arg->getSourceRange();
1098 Diag(Var->getLocation(), diag::note_template_arg_internal_object)
1099 << true;
1100 return true;
1101 }
1102
1103 // Okay: we've named an object with external linkage
Douglas Gregor3e00bad2009-02-17 01:05:43 +00001104 Entity = Var;
Douglas Gregorcc45cb32009-02-11 19:52:55 +00001105 return Invalid;
1106 }
1107
1108 // We found something else, but we don't know specifically what it is.
1109 Diag(Arg->getSourceRange().getBegin(),
1110 diag::err_template_arg_not_object_or_func)
1111 << Arg->getSourceRange();
1112 Diag(DRE->getDecl()->getLocation(),
1113 diag::note_template_arg_refers_here);
1114 return true;
1115}
1116
1117/// \brief Checks whether the given template argument is a pointer to
1118/// member constant according to C++ [temp.arg.nontype]p1.
Douglas Gregor3e00bad2009-02-17 01:05:43 +00001119bool
1120Sema::CheckTemplateArgumentPointerToMember(Expr *Arg, NamedDecl *&Member) {
Douglas Gregorcc45cb32009-02-11 19:52:55 +00001121 bool Invalid = false;
1122
1123 // See through any implicit casts we added to fix the type.
1124 if (ImplicitCastExpr *Cast = dyn_cast<ImplicitCastExpr>(Arg))
1125 Arg = Cast->getSubExpr();
1126
1127 // C++ [temp.arg.nontype]p1:
1128 //
1129 // A template-argument for a non-type, non-template
1130 // template-parameter shall be one of: [...]
1131 //
1132 // -- a pointer to member expressed as described in 5.3.1.
1133 QualifiedDeclRefExpr *DRE = 0;
1134
1135 // Ignore (and complain about) any excess parentheses.
1136 while (ParenExpr *Parens = dyn_cast<ParenExpr>(Arg)) {
1137 if (!Invalid) {
1138 Diag(Arg->getSourceRange().getBegin(),
1139 diag::err_template_arg_extra_parens)
1140 << Arg->getSourceRange();
1141 Invalid = true;
1142 }
1143
1144 Arg = Parens->getSubExpr();
1145 }
1146
1147 if (UnaryOperator *UnOp = dyn_cast<UnaryOperator>(Arg))
1148 if (UnOp->getOpcode() == UnaryOperator::AddrOf)
1149 DRE = dyn_cast<QualifiedDeclRefExpr>(UnOp->getSubExpr());
1150
1151 if (!DRE)
1152 return Diag(Arg->getSourceRange().getBegin(),
1153 diag::err_template_arg_not_pointer_to_member_form)
1154 << Arg->getSourceRange();
1155
1156 if (isa<FieldDecl>(DRE->getDecl()) || isa<CXXMethodDecl>(DRE->getDecl())) {
1157 assert((isa<FieldDecl>(DRE->getDecl()) ||
1158 !cast<CXXMethodDecl>(DRE->getDecl())->isStatic()) &&
1159 "Only non-static member pointers can make it here");
1160
1161 // Okay: this is the address of a non-static member, and therefore
1162 // a member pointer constant.
Douglas Gregor3e00bad2009-02-17 01:05:43 +00001163 Member = DRE->getDecl();
Douglas Gregorcc45cb32009-02-11 19:52:55 +00001164 return Invalid;
1165 }
1166
1167 // We found something else, but we don't know specifically what it is.
1168 Diag(Arg->getSourceRange().getBegin(),
1169 diag::err_template_arg_not_pointer_to_member_form)
1170 << Arg->getSourceRange();
1171 Diag(DRE->getDecl()->getLocation(),
1172 diag::note_template_arg_refers_here);
1173 return true;
1174}
1175
Douglas Gregorc15cb382009-02-09 23:23:08 +00001176/// \brief Check a template argument against its corresponding
1177/// non-type template parameter.
1178///
Douglas Gregor2943aed2009-03-03 04:44:36 +00001179/// This routine implements the semantics of C++ [temp.arg.nontype].
1180/// It returns true if an error occurred, and false otherwise. \p
1181/// InstantiatedParamType is the type of the non-type template
1182/// parameter after it has been instantiated.
Douglas Gregor3e00bad2009-02-17 01:05:43 +00001183///
1184/// If Converted is non-NULL and no errors occur, the value
1185/// of this argument will be added to the end of the Converted vector.
Douglas Gregorc15cb382009-02-09 23:23:08 +00001186bool Sema::CheckTemplateArgument(NonTypeTemplateParmDecl *Param,
Douglas Gregor2943aed2009-03-03 04:44:36 +00001187 QualType InstantiatedParamType, Expr *&Arg,
Douglas Gregor3e00bad2009-02-17 01:05:43 +00001188 llvm::SmallVectorImpl<TemplateArgument> *Converted) {
Douglas Gregor40808ce2009-03-09 23:48:35 +00001189 SourceLocation StartLoc = Arg->getSourceRange().getBegin();
1190
Douglas Gregor6ae5e662009-02-10 23:36:10 +00001191 // If either the parameter has a dependent type or the argument is
1192 // type-dependent, there's nothing we can check now.
Douglas Gregor3e00bad2009-02-17 01:05:43 +00001193 // FIXME: Add template argument to Converted!
Douglas Gregor40808ce2009-03-09 23:48:35 +00001194 if (InstantiatedParamType->isDependentType() || Arg->isTypeDependent()) {
1195 // FIXME: Produce a cloned, canonical expression?
1196 Converted->push_back(TemplateArgument(Arg));
Douglas Gregor6ae5e662009-02-10 23:36:10 +00001197 return false;
Douglas Gregor40808ce2009-03-09 23:48:35 +00001198 }
Douglas Gregor6ae5e662009-02-10 23:36:10 +00001199
1200 // C++ [temp.arg.nontype]p5:
1201 // The following conversions are performed on each expression used
1202 // as a non-type template-argument. If a non-type
1203 // template-argument cannot be converted to the type of the
1204 // corresponding template-parameter then the program is
1205 // ill-formed.
1206 //
1207 // -- for a non-type template-parameter of integral or
1208 // enumeration type, integral promotions (4.5) and integral
1209 // conversions (4.7) are applied.
Douglas Gregor2943aed2009-03-03 04:44:36 +00001210 QualType ParamType = InstantiatedParamType;
Douglas Gregora35284b2009-02-11 00:19:33 +00001211 QualType ArgType = Arg->getType();
Douglas Gregor6ae5e662009-02-10 23:36:10 +00001212 if (ParamType->isIntegralType() || ParamType->isEnumeralType()) {
Douglas Gregor6ae5e662009-02-10 23:36:10 +00001213 // C++ [temp.arg.nontype]p1:
1214 // A template-argument for a non-type, non-template
1215 // template-parameter shall be one of:
1216 //
1217 // -- an integral constant-expression of integral or enumeration
1218 // type; or
1219 // -- the name of a non-type template-parameter; or
1220 SourceLocation NonConstantLoc;
Douglas Gregor3e00bad2009-02-17 01:05:43 +00001221 llvm::APSInt Value;
Douglas Gregor6ae5e662009-02-10 23:36:10 +00001222 if (!ArgType->isIntegralType() && !ArgType->isEnumeralType()) {
1223 Diag(Arg->getSourceRange().getBegin(),
1224 diag::err_template_arg_not_integral_or_enumeral)
1225 << ArgType << Arg->getSourceRange();
1226 Diag(Param->getLocation(), diag::note_template_param_here);
1227 return true;
1228 } else if (!Arg->isValueDependent() &&
Douglas Gregor3e00bad2009-02-17 01:05:43 +00001229 !Arg->isIntegerConstantExpr(Value, Context, &NonConstantLoc)) {
Douglas Gregor6ae5e662009-02-10 23:36:10 +00001230 Diag(NonConstantLoc, diag::err_template_arg_not_ice)
1231 << ArgType << Arg->getSourceRange();
1232 return true;
1233 }
1234
1235 // FIXME: We need some way to more easily get the unqualified form
1236 // of the types without going all the way to the
1237 // canonical type.
1238 if (Context.getCanonicalType(ParamType).getCVRQualifiers())
1239 ParamType = Context.getCanonicalType(ParamType).getUnqualifiedType();
1240 if (Context.getCanonicalType(ArgType).getCVRQualifiers())
1241 ArgType = Context.getCanonicalType(ArgType).getUnqualifiedType();
1242
1243 // Try to convert the argument to the parameter's type.
1244 if (ParamType == ArgType) {
1245 // Okay: no conversion necessary
1246 } else if (IsIntegralPromotion(Arg, ArgType, ParamType) ||
1247 !ParamType->isEnumeralType()) {
1248 // This is an integral promotion or conversion.
1249 ImpCastExprToType(Arg, ParamType);
1250 } else {
1251 // We can't perform this conversion.
1252 Diag(Arg->getSourceRange().getBegin(),
1253 diag::err_template_arg_not_convertible)
Douglas Gregor2943aed2009-03-03 04:44:36 +00001254 << Arg->getType() << InstantiatedParamType << Arg->getSourceRange();
Douglas Gregor6ae5e662009-02-10 23:36:10 +00001255 Diag(Param->getLocation(), diag::note_template_param_here);
1256 return true;
1257 }
1258
Douglas Gregor3e00bad2009-02-17 01:05:43 +00001259 // FIXME: Check overflow of template arguments?
1260
1261 if (Converted) {
1262 // Add the value of this argument to the list of converted
1263 // arguments. We use the bitwidth and signedness of the template
1264 // parameter.
1265 QualType IntegerType = Context.getCanonicalType(ParamType);
1266 if (const EnumType *Enum = IntegerType->getAsEnumType())
1267 IntegerType = Enum->getDecl()->getIntegerType();
1268
1269 llvm::APInt CanonicalArg(Context.getTypeSize(IntegerType), 0,
1270 IntegerType->isSignedIntegerType());
1271 CanonicalArg = Value;
1272
Douglas Gregor40808ce2009-03-09 23:48:35 +00001273 Converted->push_back(TemplateArgument(StartLoc, CanonicalArg));
Douglas Gregor3e00bad2009-02-17 01:05:43 +00001274 }
1275
Douglas Gregor6ae5e662009-02-10 23:36:10 +00001276 return false;
1277 }
Douglas Gregora35284b2009-02-11 00:19:33 +00001278
Douglas Gregorb86b0572009-02-11 01:18:59 +00001279 // Handle pointer-to-function, reference-to-function, and
1280 // pointer-to-member-function all in (roughly) the same way.
1281 if (// -- For a non-type template-parameter of type pointer to
1282 // function, only the function-to-pointer conversion (4.3) is
1283 // applied. If the template-argument represents a set of
1284 // overloaded functions (or a pointer to such), the matching
1285 // function is selected from the set (13.4).
1286 (ParamType->isPointerType() &&
1287 ParamType->getAsPointerType()->getPointeeType()->isFunctionType()) ||
1288 // -- For a non-type template-parameter of type reference to
1289 // function, no conversions apply. If the template-argument
1290 // represents a set of overloaded functions, the matching
1291 // function is selected from the set (13.4).
1292 (ParamType->isReferenceType() &&
1293 ParamType->getAsReferenceType()->getPointeeType()->isFunctionType()) ||
1294 // -- For a non-type template-parameter of type pointer to
1295 // member function, no conversions apply. If the
1296 // template-argument represents a set of overloaded member
1297 // functions, the matching member function is selected from
1298 // the set (13.4).
1299 (ParamType->isMemberPointerType() &&
1300 ParamType->getAsMemberPointerType()->getPointeeType()
1301 ->isFunctionType())) {
Douglas Gregorcc45cb32009-02-11 19:52:55 +00001302 if (Context.hasSameUnqualifiedType(ArgType,
1303 ParamType.getNonReferenceType())) {
Douglas Gregora35284b2009-02-11 00:19:33 +00001304 // We don't have to do anything: the types already match.
Douglas Gregorb86b0572009-02-11 01:18:59 +00001305 } else if (ArgType->isFunctionType() && ParamType->isPointerType()) {
Douglas Gregora35284b2009-02-11 00:19:33 +00001306 ArgType = Context.getPointerType(ArgType);
1307 ImpCastExprToType(Arg, ArgType);
1308 } else if (FunctionDecl *Fn
1309 = ResolveAddressOfOverloadedFunction(Arg, ParamType, true)) {
Douglas Gregor48f3bb92009-02-18 21:56:37 +00001310 if (DiagnoseUseOfDecl(Fn, Arg->getSourceRange().getBegin()))
1311 return true;
1312
Douglas Gregora35284b2009-02-11 00:19:33 +00001313 FixOverloadedFunctionReference(Arg, Fn);
1314 ArgType = Arg->getType();
Douglas Gregorb86b0572009-02-11 01:18:59 +00001315 if (ArgType->isFunctionType() && ParamType->isPointerType()) {
Douglas Gregora35284b2009-02-11 00:19:33 +00001316 ArgType = Context.getPointerType(Arg->getType());
1317 ImpCastExprToType(Arg, ArgType);
1318 }
1319 }
1320
Douglas Gregorcc45cb32009-02-11 19:52:55 +00001321 if (!Context.hasSameUnqualifiedType(ArgType,
1322 ParamType.getNonReferenceType())) {
Douglas Gregora35284b2009-02-11 00:19:33 +00001323 // We can't perform this conversion.
1324 Diag(Arg->getSourceRange().getBegin(),
1325 diag::err_template_arg_not_convertible)
Douglas Gregor2943aed2009-03-03 04:44:36 +00001326 << Arg->getType() << InstantiatedParamType << Arg->getSourceRange();
Douglas Gregora35284b2009-02-11 00:19:33 +00001327 Diag(Param->getLocation(), diag::note_template_param_here);
1328 return true;
1329 }
Douglas Gregorcc45cb32009-02-11 19:52:55 +00001330
Douglas Gregor3e00bad2009-02-17 01:05:43 +00001331 if (ParamType->isMemberPointerType()) {
1332 NamedDecl *Member = 0;
1333 if (CheckTemplateArgumentPointerToMember(Arg, Member))
1334 return true;
1335
1336 if (Converted)
Douglas Gregor40808ce2009-03-09 23:48:35 +00001337 Converted->push_back(TemplateArgument(StartLoc, Member));
Douglas Gregor3e00bad2009-02-17 01:05:43 +00001338
1339 return false;
1340 }
Douglas Gregorcc45cb32009-02-11 19:52:55 +00001341
Douglas Gregor3e00bad2009-02-17 01:05:43 +00001342 NamedDecl *Entity = 0;
1343 if (CheckTemplateArgumentAddressOfObjectOrFunction(Arg, Entity))
1344 return true;
1345
1346 if (Converted)
Douglas Gregor40808ce2009-03-09 23:48:35 +00001347 Converted->push_back(TemplateArgument(StartLoc, Entity));
Douglas Gregor3e00bad2009-02-17 01:05:43 +00001348 return false;
Douglas Gregora35284b2009-02-11 00:19:33 +00001349 }
1350
Chris Lattnerfe90de72009-02-20 21:37:53 +00001351 if (ParamType->isPointerType()) {
Douglas Gregorb86b0572009-02-11 01:18:59 +00001352 // -- for a non-type template-parameter of type pointer to
1353 // object, qualification conversions (4.4) and the
1354 // array-to-pointer conversion (4.2) are applied.
Chris Lattnerfe90de72009-02-20 21:37:53 +00001355 assert(ParamType->getAsPointerType()->getPointeeType()->isObjectType() &&
Douglas Gregorb86b0572009-02-11 01:18:59 +00001356 "Only object pointers allowed here");
Douglas Gregorf684e6e2009-02-11 00:44:29 +00001357
Douglas Gregorb86b0572009-02-11 01:18:59 +00001358 if (ArgType->isArrayType()) {
1359 ArgType = Context.getArrayDecayedType(ArgType);
1360 ImpCastExprToType(Arg, ArgType);
Douglas Gregorf684e6e2009-02-11 00:44:29 +00001361 }
Douglas Gregorb86b0572009-02-11 01:18:59 +00001362
1363 if (IsQualificationConversion(ArgType, ParamType)) {
1364 ArgType = ParamType;
1365 ImpCastExprToType(Arg, ParamType);
1366 }
1367
Douglas Gregor8e6563b2009-02-11 18:22:40 +00001368 if (!Context.hasSameUnqualifiedType(ArgType, ParamType)) {
Douglas Gregorb86b0572009-02-11 01:18:59 +00001369 // We can't perform this conversion.
1370 Diag(Arg->getSourceRange().getBegin(),
1371 diag::err_template_arg_not_convertible)
Douglas Gregor2943aed2009-03-03 04:44:36 +00001372 << Arg->getType() << InstantiatedParamType << Arg->getSourceRange();
Douglas Gregorb86b0572009-02-11 01:18:59 +00001373 Diag(Param->getLocation(), diag::note_template_param_here);
1374 return true;
1375 }
1376
Douglas Gregor3e00bad2009-02-17 01:05:43 +00001377 NamedDecl *Entity = 0;
1378 if (CheckTemplateArgumentAddressOfObjectOrFunction(Arg, Entity))
1379 return true;
1380
1381 if (Converted)
Douglas Gregor40808ce2009-03-09 23:48:35 +00001382 Converted->push_back(TemplateArgument(StartLoc, Entity));
Douglas Gregor3e00bad2009-02-17 01:05:43 +00001383
1384 return false;
Douglas Gregorf684e6e2009-02-11 00:44:29 +00001385 }
Douglas Gregorb86b0572009-02-11 01:18:59 +00001386
1387 if (const ReferenceType *ParamRefType = ParamType->getAsReferenceType()) {
1388 // -- For a non-type template-parameter of type reference to
1389 // object, no conversions apply. The type referred to by the
1390 // reference may be more cv-qualified than the (otherwise
1391 // identical) type of the template-argument. The
1392 // template-parameter is bound directly to the
1393 // template-argument, which must be an lvalue.
1394 assert(ParamRefType->getPointeeType()->isObjectType() &&
1395 "Only object references allowed here");
Douglas Gregorf684e6e2009-02-11 00:44:29 +00001396
Douglas Gregor8e6563b2009-02-11 18:22:40 +00001397 if (!Context.hasSameUnqualifiedType(ParamRefType->getPointeeType(), ArgType)) {
Douglas Gregorb86b0572009-02-11 01:18:59 +00001398 Diag(Arg->getSourceRange().getBegin(),
1399 diag::err_template_arg_no_ref_bind)
Douglas Gregor2943aed2009-03-03 04:44:36 +00001400 << InstantiatedParamType << Arg->getType()
Douglas Gregorb86b0572009-02-11 01:18:59 +00001401 << Arg->getSourceRange();
1402 Diag(Param->getLocation(), diag::note_template_param_here);
1403 return true;
1404 }
1405
1406 unsigned ParamQuals
1407 = Context.getCanonicalType(ParamType).getCVRQualifiers();
1408 unsigned ArgQuals = Context.getCanonicalType(ArgType).getCVRQualifiers();
1409
1410 if ((ParamQuals | ArgQuals) != ParamQuals) {
1411 Diag(Arg->getSourceRange().getBegin(),
1412 diag::err_template_arg_ref_bind_ignores_quals)
Douglas Gregor2943aed2009-03-03 04:44:36 +00001413 << InstantiatedParamType << Arg->getType()
Douglas Gregorb86b0572009-02-11 01:18:59 +00001414 << Arg->getSourceRange();
1415 Diag(Param->getLocation(), diag::note_template_param_here);
1416 return true;
1417 }
1418
Douglas Gregor3e00bad2009-02-17 01:05:43 +00001419 NamedDecl *Entity = 0;
1420 if (CheckTemplateArgumentAddressOfObjectOrFunction(Arg, Entity))
1421 return true;
1422
1423 if (Converted)
Douglas Gregor40808ce2009-03-09 23:48:35 +00001424 Converted->push_back(TemplateArgument(StartLoc, Entity));
Douglas Gregor3e00bad2009-02-17 01:05:43 +00001425
1426 return false;
Douglas Gregorb86b0572009-02-11 01:18:59 +00001427 }
Douglas Gregor658bbb52009-02-11 16:16:59 +00001428
1429 // -- For a non-type template-parameter of type pointer to data
1430 // member, qualification conversions (4.4) are applied.
1431 assert(ParamType->isMemberPointerType() && "Only pointers to members remain");
1432
Douglas Gregor8e6563b2009-02-11 18:22:40 +00001433 if (Context.hasSameUnqualifiedType(ParamType, ArgType)) {
Douglas Gregor658bbb52009-02-11 16:16:59 +00001434 // Types match exactly: nothing more to do here.
1435 } else if (IsQualificationConversion(ArgType, ParamType)) {
1436 ImpCastExprToType(Arg, ParamType);
1437 } else {
1438 // We can't perform this conversion.
1439 Diag(Arg->getSourceRange().getBegin(),
1440 diag::err_template_arg_not_convertible)
Douglas Gregor2943aed2009-03-03 04:44:36 +00001441 << Arg->getType() << InstantiatedParamType << Arg->getSourceRange();
Douglas Gregor658bbb52009-02-11 16:16:59 +00001442 Diag(Param->getLocation(), diag::note_template_param_here);
1443 return true;
1444 }
1445
Douglas Gregor3e00bad2009-02-17 01:05:43 +00001446 NamedDecl *Member = 0;
1447 if (CheckTemplateArgumentPointerToMember(Arg, Member))
1448 return true;
1449
1450 if (Converted)
Douglas Gregor40808ce2009-03-09 23:48:35 +00001451 Converted->push_back(TemplateArgument(StartLoc, Member));
Douglas Gregor3e00bad2009-02-17 01:05:43 +00001452
1453 return false;
Douglas Gregorc15cb382009-02-09 23:23:08 +00001454}
1455
1456/// \brief Check a template argument against its corresponding
1457/// template template parameter.
1458///
1459/// This routine implements the semantics of C++ [temp.arg.template].
1460/// It returns true if an error occurred, and false otherwise.
1461bool Sema::CheckTemplateArgument(TemplateTemplateParmDecl *Param,
1462 DeclRefExpr *Arg) {
Douglas Gregordd0574e2009-02-10 00:24:35 +00001463 assert(isa<TemplateDecl>(Arg->getDecl()) && "Only template decls allowed");
1464 TemplateDecl *Template = cast<TemplateDecl>(Arg->getDecl());
1465
1466 // C++ [temp.arg.template]p1:
1467 // A template-argument for a template template-parameter shall be
1468 // the name of a class template, expressed as id-expression. Only
1469 // primary class templates are considered when matching the
1470 // template template argument with the corresponding parameter;
1471 // partial specializations are not considered even if their
1472 // parameter lists match that of the template template parameter.
1473 if (!isa<ClassTemplateDecl>(Template)) {
1474 assert(isa<FunctionTemplateDecl>(Template) &&
1475 "Only function templates are possible here");
Douglas Gregorcc45cb32009-02-11 19:52:55 +00001476 Diag(Arg->getSourceRange().getBegin(),
1477 diag::note_template_arg_refers_here_func)
Douglas Gregordd0574e2009-02-10 00:24:35 +00001478 << Template;
1479 }
1480
1481 return !TemplateParameterListsAreEqual(Template->getTemplateParameters(),
1482 Param->getTemplateParameters(),
1483 true, true,
1484 Arg->getSourceRange().getBegin());
Douglas Gregorc15cb382009-02-09 23:23:08 +00001485}
1486
Douglas Gregorddc29e12009-02-06 22:42:48 +00001487/// \brief Determine whether the given template parameter lists are
1488/// equivalent.
1489///
1490/// \param New The new template parameter list, typically written in the
1491/// source code as part of a new template declaration.
1492///
1493/// \param Old The old template parameter list, typically found via
1494/// name lookup of the template declared with this template parameter
1495/// list.
1496///
1497/// \param Complain If true, this routine will produce a diagnostic if
1498/// the template parameter lists are not equivalent.
1499///
Douglas Gregordd0574e2009-02-10 00:24:35 +00001500/// \param IsTemplateTemplateParm If true, this routine is being
1501/// called to compare the template parameter lists of a template
1502/// template parameter.
1503///
1504/// \param TemplateArgLoc If this source location is valid, then we
1505/// are actually checking the template parameter list of a template
1506/// argument (New) against the template parameter list of its
1507/// corresponding template template parameter (Old). We produce
1508/// slightly different diagnostics in this scenario.
1509///
Douglas Gregorddc29e12009-02-06 22:42:48 +00001510/// \returns True if the template parameter lists are equal, false
1511/// otherwise.
1512bool
1513Sema::TemplateParameterListsAreEqual(TemplateParameterList *New,
1514 TemplateParameterList *Old,
1515 bool Complain,
Douglas Gregordd0574e2009-02-10 00:24:35 +00001516 bool IsTemplateTemplateParm,
1517 SourceLocation TemplateArgLoc) {
Douglas Gregorddc29e12009-02-06 22:42:48 +00001518 if (Old->size() != New->size()) {
1519 if (Complain) {
Douglas Gregordd0574e2009-02-10 00:24:35 +00001520 unsigned NextDiag = diag::err_template_param_list_different_arity;
1521 if (TemplateArgLoc.isValid()) {
1522 Diag(TemplateArgLoc, diag::err_template_arg_template_params_mismatch);
1523 NextDiag = diag::note_template_param_list_different_arity;
1524 }
1525 Diag(New->getTemplateLoc(), NextDiag)
1526 << (New->size() > Old->size())
1527 << IsTemplateTemplateParm
1528 << SourceRange(New->getTemplateLoc(), New->getRAngleLoc());
Douglas Gregorddc29e12009-02-06 22:42:48 +00001529 Diag(Old->getTemplateLoc(), diag::note_template_prev_declaration)
1530 << IsTemplateTemplateParm
1531 << SourceRange(Old->getTemplateLoc(), Old->getRAngleLoc());
1532 }
1533
1534 return false;
1535 }
1536
1537 for (TemplateParameterList::iterator OldParm = Old->begin(),
1538 OldParmEnd = Old->end(), NewParm = New->begin();
1539 OldParm != OldParmEnd; ++OldParm, ++NewParm) {
1540 if ((*OldParm)->getKind() != (*NewParm)->getKind()) {
Douglas Gregordd0574e2009-02-10 00:24:35 +00001541 unsigned NextDiag = diag::err_template_param_different_kind;
1542 if (TemplateArgLoc.isValid()) {
1543 Diag(TemplateArgLoc, diag::err_template_arg_template_params_mismatch);
1544 NextDiag = diag::note_template_param_different_kind;
1545 }
1546 Diag((*NewParm)->getLocation(), NextDiag)
Douglas Gregorddc29e12009-02-06 22:42:48 +00001547 << IsTemplateTemplateParm;
1548 Diag((*OldParm)->getLocation(), diag::note_template_prev_declaration)
1549 << IsTemplateTemplateParm;
1550 return false;
1551 }
1552
1553 if (isa<TemplateTypeParmDecl>(*OldParm)) {
1554 // Okay; all template type parameters are equivalent (since we
Douglas Gregordd0574e2009-02-10 00:24:35 +00001555 // know we're at the same index).
1556#if 0
1557 // FIXME: Enable this code in debug mode *after* we properly go
1558 // through and "instantiate" the template parameter lists of
1559 // template template parameters. It's only after this
1560 // instantiation that (1) any dependent types within the
1561 // template parameter list of the template template parameter
1562 // can be checked, and (2) the template type parameter depths
1563 // will match up.
Douglas Gregorddc29e12009-02-06 22:42:48 +00001564 QualType OldParmType
1565 = Context.getTypeDeclType(cast<TemplateTypeParmDecl>(*OldParm));
1566 QualType NewParmType
1567 = Context.getTypeDeclType(cast<TemplateTypeParmDecl>(*NewParm));
1568 assert(Context.getCanonicalType(OldParmType) ==
1569 Context.getCanonicalType(NewParmType) &&
1570 "type parameter mismatch?");
1571#endif
1572 } else if (NonTypeTemplateParmDecl *OldNTTP
1573 = dyn_cast<NonTypeTemplateParmDecl>(*OldParm)) {
1574 // The types of non-type template parameters must agree.
1575 NonTypeTemplateParmDecl *NewNTTP
1576 = cast<NonTypeTemplateParmDecl>(*NewParm);
1577 if (Context.getCanonicalType(OldNTTP->getType()) !=
1578 Context.getCanonicalType(NewNTTP->getType())) {
1579 if (Complain) {
Douglas Gregordd0574e2009-02-10 00:24:35 +00001580 unsigned NextDiag = diag::err_template_nontype_parm_different_type;
1581 if (TemplateArgLoc.isValid()) {
1582 Diag(TemplateArgLoc,
1583 diag::err_template_arg_template_params_mismatch);
1584 NextDiag = diag::note_template_nontype_parm_different_type;
1585 }
1586 Diag(NewNTTP->getLocation(), NextDiag)
Douglas Gregorddc29e12009-02-06 22:42:48 +00001587 << NewNTTP->getType()
1588 << IsTemplateTemplateParm;
1589 Diag(OldNTTP->getLocation(),
1590 diag::note_template_nontype_parm_prev_declaration)
1591 << OldNTTP->getType();
1592 }
1593 return false;
1594 }
1595 } else {
1596 // The template parameter lists of template template
1597 // parameters must agree.
1598 // FIXME: Could we perform a faster "type" comparison here?
1599 assert(isa<TemplateTemplateParmDecl>(*OldParm) &&
1600 "Only template template parameters handled here");
1601 TemplateTemplateParmDecl *OldTTP
1602 = cast<TemplateTemplateParmDecl>(*OldParm);
1603 TemplateTemplateParmDecl *NewTTP
1604 = cast<TemplateTemplateParmDecl>(*NewParm);
1605 if (!TemplateParameterListsAreEqual(NewTTP->getTemplateParameters(),
1606 OldTTP->getTemplateParameters(),
1607 Complain,
Douglas Gregordd0574e2009-02-10 00:24:35 +00001608 /*IsTemplateTemplateParm=*/true,
1609 TemplateArgLoc))
Douglas Gregorddc29e12009-02-06 22:42:48 +00001610 return false;
1611 }
1612 }
1613
1614 return true;
1615}
1616
1617/// \brief Check whether a template can be declared within this scope.
1618///
1619/// If the template declaration is valid in this scope, returns
1620/// false. Otherwise, issues a diagnostic and returns true.
1621bool
1622Sema::CheckTemplateDeclScope(Scope *S,
1623 MultiTemplateParamsArg &TemplateParameterLists) {
1624 assert(TemplateParameterLists.size() > 0 && "Not a template");
1625
1626 // Find the nearest enclosing declaration scope.
1627 while ((S->getFlags() & Scope::DeclScope) == 0 ||
1628 (S->getFlags() & Scope::TemplateParamScope) != 0)
1629 S = S->getParent();
1630
1631 TemplateParameterList *TemplateParams =
1632 static_cast<TemplateParameterList*>(*TemplateParameterLists.get());
1633 SourceLocation TemplateLoc = TemplateParams->getTemplateLoc();
1634 SourceRange TemplateRange
1635 = SourceRange(TemplateLoc, TemplateParams->getRAngleLoc());
1636
1637 // C++ [temp]p2:
1638 // A template-declaration can appear only as a namespace scope or
1639 // class scope declaration.
1640 DeclContext *Ctx = static_cast<DeclContext *>(S->getEntity());
1641 while (Ctx && isa<LinkageSpecDecl>(Ctx)) {
1642 if (cast<LinkageSpecDecl>(Ctx)->getLanguage() != LinkageSpecDecl::lang_cxx)
1643 return Diag(TemplateLoc, diag::err_template_linkage)
1644 << TemplateRange;
1645
1646 Ctx = Ctx->getParent();
1647 }
1648
1649 if (Ctx && (Ctx->isFileContext() || Ctx->isRecord()))
1650 return false;
1651
1652 return Diag(TemplateLoc, diag::err_template_outside_namespace_or_class_scope)
1653 << TemplateRange;
1654}
Douglas Gregorcc636682009-02-17 23:15:12 +00001655
Douglas Gregor88b70942009-02-25 22:02:03 +00001656/// \brief Check whether a class template specialization in the
1657/// current context is well-formed.
1658///
1659/// This routine determines whether a class template specialization
1660/// can be declared in the current context (C++ [temp.expl.spec]p2)
1661/// and emits appropriate diagnostics if there was an error. It
1662/// returns true if there was an error that we cannot recover from,
1663/// and false otherwise.
1664bool
1665Sema::CheckClassTemplateSpecializationScope(ClassTemplateDecl *ClassTemplate,
1666 ClassTemplateSpecializationDecl *PrevDecl,
1667 SourceLocation TemplateNameLoc,
1668 SourceRange ScopeSpecifierRange) {
1669 // C++ [temp.expl.spec]p2:
1670 // An explicit specialization shall be declared in the namespace
1671 // of which the template is a member, or, for member templates, in
1672 // the namespace of which the enclosing class or enclosing class
1673 // template is a member. An explicit specialization of a member
1674 // function, member class or static data member of a class
1675 // template shall be declared in the namespace of which the class
1676 // template is a member. Such a declaration may also be a
1677 // definition. If the declaration is not a definition, the
1678 // specialization may be defined later in the name- space in which
1679 // the explicit specialization was declared, or in a namespace
1680 // that encloses the one in which the explicit specialization was
1681 // declared.
1682 if (CurContext->getLookupContext()->isFunctionOrMethod()) {
1683 Diag(TemplateNameLoc, diag::err_template_spec_decl_function_scope)
1684 << ClassTemplate;
1685 return true;
1686 }
1687
1688 DeclContext *DC = CurContext->getEnclosingNamespaceContext();
1689 DeclContext *TemplateContext
1690 = ClassTemplate->getDeclContext()->getEnclosingNamespaceContext();
1691 if (!PrevDecl || PrevDecl->getSpecializationKind() == TSK_Undeclared) {
1692 // There is no prior declaration of this entity, so this
1693 // specialization must be in the same context as the template
1694 // itself.
1695 if (DC != TemplateContext) {
1696 if (isa<TranslationUnitDecl>(TemplateContext))
1697 Diag(TemplateNameLoc, diag::err_template_spec_decl_out_of_scope_global)
1698 << ClassTemplate << ScopeSpecifierRange;
1699 else if (isa<NamespaceDecl>(TemplateContext))
1700 Diag(TemplateNameLoc, diag::err_template_spec_decl_out_of_scope)
1701 << ClassTemplate << cast<NamedDecl>(TemplateContext)
1702 << ScopeSpecifierRange;
1703
1704 Diag(ClassTemplate->getLocation(), diag::note_template_decl_here);
1705 }
1706
1707 return false;
1708 }
1709
1710 // We have a previous declaration of this entity. Make sure that
1711 // this redeclaration (or definition) occurs in an enclosing namespace.
1712 if (!CurContext->Encloses(TemplateContext)) {
1713 if (isa<TranslationUnitDecl>(TemplateContext))
1714 Diag(TemplateNameLoc, diag::err_template_spec_redecl_global_scope)
1715 << ClassTemplate << ScopeSpecifierRange;
1716 else if (isa<NamespaceDecl>(TemplateContext))
1717 Diag(TemplateNameLoc, diag::err_template_spec_redecl_out_of_scope)
1718 << ClassTemplate << cast<NamedDecl>(TemplateContext)
1719 << ScopeSpecifierRange;
1720
1721 Diag(ClassTemplate->getLocation(), diag::note_template_decl_here);
1722 }
1723
1724 return false;
1725}
1726
Douglas Gregorcc636682009-02-17 23:15:12 +00001727Sema::DeclTy *
1728Sema::ActOnClassTemplateSpecialization(Scope *S, unsigned TagSpec, TagKind TK,
1729 SourceLocation KWLoc,
1730 const CXXScopeSpec &SS,
1731 DeclTy *TemplateD,
1732 SourceLocation TemplateNameLoc,
1733 SourceLocation LAngleLoc,
Douglas Gregor40808ce2009-03-09 23:48:35 +00001734 ASTTemplateArgsPtr TemplateArgsIn,
Douglas Gregorcc636682009-02-17 23:15:12 +00001735 SourceLocation *TemplateArgLocs,
1736 SourceLocation RAngleLoc,
1737 AttributeList *Attr,
1738 MultiTemplateParamsArg TemplateParameterLists) {
Douglas Gregorcc636682009-02-17 23:15:12 +00001739 // Find the class template we're specializing
1740 ClassTemplateDecl *ClassTemplate
1741 = dyn_cast_or_null<ClassTemplateDecl>(static_cast<Decl *>(TemplateD));
1742 if (!ClassTemplate)
1743 return 0;
1744
Douglas Gregor88b70942009-02-25 22:02:03 +00001745 // Check the validity of the template headers that introduce this
1746 // template.
Douglas Gregor6bc9f7e2009-02-25 22:18:32 +00001747 // FIXME: Once we have member templates, we'll need to check
1748 // C++ [temp.expl.spec]p17-18, where we could have multiple levels of
1749 // template<> headers.
Douglas Gregor4b2d3f72009-02-26 21:00:50 +00001750 if (TemplateParameterLists.size() == 0)
1751 Diag(KWLoc, diag::err_template_spec_needs_header)
Douglas Gregorb2fb6de2009-02-27 17:53:17 +00001752 << CodeModificationHint::CreateInsertion(KWLoc, "template<> ");
Douglas Gregor4b2d3f72009-02-26 21:00:50 +00001753 else {
Douglas Gregor88b70942009-02-25 22:02:03 +00001754 TemplateParameterList *TemplateParams
1755 = static_cast<TemplateParameterList*>(*TemplateParameterLists.get());
1756 if (TemplateParameterLists.size() > 1) {
1757 Diag(TemplateParams->getTemplateLoc(),
1758 diag::err_template_spec_extra_headers);
1759 return 0;
1760 }
1761
1762 if (TemplateParams->size() > 0) {
1763 // FIXME: No support for class template partial specialization.
1764 Diag(TemplateParams->getTemplateLoc(),
1765 diag::unsup_template_partial_spec);
1766 return 0;
1767 }
1768 }
1769
Douglas Gregorcc636682009-02-17 23:15:12 +00001770 // Check that the specialization uses the same tag kind as the
1771 // original template.
1772 TagDecl::TagKind Kind;
1773 switch (TagSpec) {
1774 default: assert(0 && "Unknown tag type!");
1775 case DeclSpec::TST_struct: Kind = TagDecl::TK_struct; break;
1776 case DeclSpec::TST_union: Kind = TagDecl::TK_union; break;
1777 case DeclSpec::TST_class: Kind = TagDecl::TK_class; break;
1778 }
1779 if (ClassTemplate->getTemplatedDecl()->getTagKind() != Kind) {
1780 Diag(KWLoc, diag::err_use_with_wrong_tag) << ClassTemplate;
1781 Diag(ClassTemplate->getTemplatedDecl()->getLocation(),
1782 diag::note_previous_use);
1783 Kind = ClassTemplate->getTemplatedDecl()->getTagKind();
1784 }
1785
Douglas Gregor40808ce2009-03-09 23:48:35 +00001786 // Translate the parser's template argument list in our AST format.
1787 llvm::SmallVector<TemplateArgument, 16> TemplateArgs;
1788 translateTemplateArguments(TemplateArgsIn, TemplateArgLocs, TemplateArgs);
1789
Douglas Gregorcc636682009-02-17 23:15:12 +00001790 // Check that the template argument list is well-formed for this
1791 // template.
1792 llvm::SmallVector<TemplateArgument, 16> ConvertedTemplateArgs;
1793 if (CheckTemplateArgumentList(ClassTemplate, TemplateNameLoc, LAngleLoc,
Douglas Gregor40808ce2009-03-09 23:48:35 +00001794 &TemplateArgs[0], TemplateArgs.size(),
1795 RAngleLoc, ConvertedTemplateArgs))
Douglas Gregorcc636682009-02-17 23:15:12 +00001796 return 0;
1797
1798 assert((ConvertedTemplateArgs.size() ==
1799 ClassTemplate->getTemplateParameters()->size()) &&
1800 "Converted template argument list is too short!");
1801
1802 // Find the class template specialization declaration that
1803 // corresponds to these arguments.
1804 llvm::FoldingSetNodeID ID;
1805 ClassTemplateSpecializationDecl::Profile(ID, &ConvertedTemplateArgs[0],
1806 ConvertedTemplateArgs.size());
1807 void *InsertPos = 0;
1808 ClassTemplateSpecializationDecl *PrevDecl
1809 = ClassTemplate->getSpecializations().FindNodeOrInsertPos(ID, InsertPos);
1810
1811 ClassTemplateSpecializationDecl *Specialization = 0;
1812
Douglas Gregor88b70942009-02-25 22:02:03 +00001813 // Check whether we can declare a class template specialization in
1814 // the current scope.
1815 if (CheckClassTemplateSpecializationScope(ClassTemplate, PrevDecl,
1816 TemplateNameLoc,
1817 SS.getRange()))
1818 return 0;
1819
Douglas Gregorcc636682009-02-17 23:15:12 +00001820 if (PrevDecl && PrevDecl->getSpecializationKind() == TSK_Undeclared) {
1821 // Since the only prior class template specialization with these
1822 // arguments was referenced but not declared, reuse that
1823 // declaration node as our own, updating its source location to
1824 // reflect our new declaration.
Douglas Gregorcc636682009-02-17 23:15:12 +00001825 Specialization = PrevDecl;
Douglas Gregor6bc9f7e2009-02-25 22:18:32 +00001826 Specialization->setLocation(TemplateNameLoc);
Douglas Gregorcc636682009-02-17 23:15:12 +00001827 PrevDecl = 0;
1828 } else {
1829 // Create a new class template specialization declaration node for
1830 // this explicit specialization.
1831 Specialization
1832 = ClassTemplateSpecializationDecl::Create(Context,
1833 ClassTemplate->getDeclContext(),
1834 TemplateNameLoc,
1835 ClassTemplate,
1836 &ConvertedTemplateArgs[0],
1837 ConvertedTemplateArgs.size(),
1838 PrevDecl);
1839
1840 if (PrevDecl) {
1841 ClassTemplate->getSpecializations().RemoveNode(PrevDecl);
1842 ClassTemplate->getSpecializations().GetOrInsertNode(Specialization);
1843 } else {
1844 ClassTemplate->getSpecializations().InsertNode(Specialization,
1845 InsertPos);
1846 }
1847 }
1848
1849 // Note that this is an explicit specialization.
1850 Specialization->setSpecializationKind(TSK_ExplicitSpecialization);
1851
1852 // Check that this isn't a redefinition of this specialization.
1853 if (TK == TK_Definition) {
1854 if (RecordDecl *Def = Specialization->getDefinition(Context)) {
1855 // FIXME: Should also handle explicit specialization after
1856 // implicit instantiation with a special diagnostic.
1857 SourceRange Range(TemplateNameLoc, RAngleLoc);
1858 Diag(TemplateNameLoc, diag::err_redefinition)
1859 << Specialization << Range;
1860 Diag(Def->getLocation(), diag::note_previous_definition);
1861 Specialization->setInvalidDecl();
1862 return 0;
1863 }
1864 }
1865
Douglas Gregorfc705b82009-02-26 22:19:44 +00001866 // Build the fully-sugared type for this class template
1867 // specialization as the user wrote in the specialization
1868 // itself. This means that we'll pretty-print the type retrieved
1869 // from the specialization's declaration the way that the user
1870 // actually wrote the specialization, rather than formatting the
1871 // name based on the "canonical" representation used to store the
1872 // template arguments in the specialization.
1873 Specialization->setTypeAsWritten(
1874 Context.getClassTemplateSpecializationType(ClassTemplate,
Douglas Gregor40808ce2009-03-09 23:48:35 +00001875 &TemplateArgs[0],
Douglas Gregorfc705b82009-02-26 22:19:44 +00001876 TemplateArgs.size(),
Douglas Gregorfc705b82009-02-26 22:19:44 +00001877 Context.getTypeDeclType(Specialization)));
Douglas Gregor40808ce2009-03-09 23:48:35 +00001878 TemplateArgsIn.release();
Douglas Gregorcc636682009-02-17 23:15:12 +00001879
Douglas Gregor6bc9f7e2009-02-25 22:18:32 +00001880 // C++ [temp.expl.spec]p9:
1881 // A template explicit specialization is in the scope of the
1882 // namespace in which the template was defined.
1883 //
1884 // We actually implement this paragraph where we set the semantic
1885 // context (in the creation of the ClassTemplateSpecializationDecl),
1886 // but we also maintain the lexical context where the actual
1887 // definition occurs.
Douglas Gregorcc636682009-02-17 23:15:12 +00001888 Specialization->setLexicalDeclContext(CurContext);
1889
1890 // We may be starting the definition of this specialization.
1891 if (TK == TK_Definition)
1892 Specialization->startDefinition();
1893
1894 // Add the specialization into its lexical context, so that it can
1895 // be seen when iterating through the list of declarations in that
1896 // context. However, specializations are not found by name lookup.
1897 CurContext->addDecl(Specialization);
1898 return Specialization;
1899}