blob: 929d74efa98a4121f486f68f3edd0ec72985af53 [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();
Douglas Gregord8bba9c2011-06-28 16:20:02 +0000297 Found.clear();
298 if (TypoCorrection Corrected = CorrectTypo(Found.getLookupNameInfo(),
299 Found.getLookupKind(), S, &SS,
300 LookupCtx, false,
301 CTC_CXXCasts)) {
302 Found.setLookupName(Corrected.getCorrection());
303 if (Corrected.getCorrectionDecl())
304 Found.addDecl(Corrected.getCorrectionDecl());
Douglas Gregor312eadb2011-04-24 05:37:28 +0000305 FilterAcceptableTemplateNames(Found);
John McCallad00b772010-06-16 08:42:20 +0000306 if (!Found.empty()) {
Douglas Gregord8bba9c2011-06-28 16:20:02 +0000307 std::string CorrectedStr(Corrected.getAsString(getLangOptions()));
308 std::string CorrectedQuotedStr(Corrected.getQuoted(getLangOptions()));
Douglas Gregorbfea2392009-12-31 08:11:17 +0000309 if (LookupCtx)
310 Diag(Found.getNameLoc(), diag::err_no_member_template_suggest)
Douglas Gregord8bba9c2011-06-28 16:20:02 +0000311 << Name << LookupCtx << CorrectedQuotedStr << SS.getRange()
312 << FixItHint::CreateReplacement(Found.getNameLoc(), CorrectedStr);
Douglas Gregorbfea2392009-12-31 08:11:17 +0000313 else
314 Diag(Found.getNameLoc(), diag::err_no_template_suggest)
Douglas Gregord8bba9c2011-06-28 16:20:02 +0000315 << Name << CorrectedQuotedStr
316 << FixItHint::CreateReplacement(Found.getNameLoc(), CorrectedStr);
Douglas Gregor67dd1d42010-01-07 00:17:44 +0000317 if (TemplateDecl *Template = Found.getAsSingle<TemplateDecl>())
318 Diag(Template->getLocation(), diag::note_previous_decl)
Douglas Gregord8bba9c2011-06-28 16:20:02 +0000319 << CorrectedQuotedStr;
John McCallad00b772010-06-16 08:42:20 +0000320 }
Douglas Gregorbfea2392009-12-31 08:11:17 +0000321 } else {
Douglas Gregor12eb5d62010-06-29 19:27:42 +0000322 Found.setLookupName(Name);
Douglas Gregorbfea2392009-12-31 08:11:17 +0000323 }
324 }
325
Douglas Gregor312eadb2011-04-24 05:37:28 +0000326 FilterAcceptableTemplateNames(Found);
Douglas Gregorf9f97a02010-07-16 16:54:17 +0000327 if (Found.empty()) {
328 if (isDependent)
329 MemberOfUnknownSpecialization = true;
John McCallf7a1a742009-11-24 19:00:30 +0000330 return;
Douglas Gregorf9f97a02010-07-16 16:54:17 +0000331 }
John McCallf7a1a742009-11-24 19:00:30 +0000332
333 if (S && !ObjectType.isNull() && !ObjectTypeSearchedInScope) {
334 // C++ [basic.lookup.classref]p1:
335 // [...] If the lookup in the class of the object expression finds a
336 // template, the name is also looked up in the context of the entire
337 // postfix-expression and [...]
338 //
339 LookupResult FoundOuter(*this, Found.getLookupName(), Found.getNameLoc(),
340 LookupOrdinaryName);
341 LookupName(FoundOuter, S);
Douglas Gregor312eadb2011-04-24 05:37:28 +0000342 FilterAcceptableTemplateNames(FoundOuter);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000343
John McCallf7a1a742009-11-24 19:00:30 +0000344 if (FoundOuter.empty()) {
345 // - if the name is not found, the name found in the class of the
346 // object expression is used, otherwise
Douglas Gregora6d1e762011-08-10 21:59:45 +0000347 } else if (!FoundOuter.getAsSingle<ClassTemplateDecl>() ||
348 FoundOuter.isAmbiguous()) {
John McCallf7a1a742009-11-24 19:00:30 +0000349 // - if the name is found in the context of the entire
350 // postfix-expression and does not name a class template, the name
351 // found in the class of the object expression is used, otherwise
Douglas Gregora6d1e762011-08-10 21:59:45 +0000352 FoundOuter.clear();
John McCallad00b772010-06-16 08:42:20 +0000353 } else if (!Found.isSuppressingDiagnostics()) {
John McCallf7a1a742009-11-24 19:00:30 +0000354 // - if the name found is a class template, it must refer to the same
355 // entity as the one found in the class of the object expression,
356 // otherwise the program is ill-formed.
357 if (!Found.isSingleResult() ||
358 Found.getFoundDecl()->getCanonicalDecl()
359 != FoundOuter.getFoundDecl()->getCanonicalDecl()) {
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000360 Diag(Found.getNameLoc(),
Jeffrey Yasskin21d07e42010-06-05 01:39:57 +0000361 diag::ext_nested_name_member_ref_lookup_ambiguous)
362 << Found.getLookupName()
363 << ObjectType;
John McCallf7a1a742009-11-24 19:00:30 +0000364 Diag(Found.getRepresentativeDecl()->getLocation(),
365 diag::note_ambig_member_ref_object_type)
366 << ObjectType;
367 Diag(FoundOuter.getFoundDecl()->getLocation(),
368 diag::note_ambig_member_ref_scope);
369
370 // Recover by taking the template that we found in the object
371 // expression's type.
372 }
373 }
374 }
375}
376
John McCall2f841ba2009-12-02 03:53:29 +0000377/// ActOnDependentIdExpression - Handle a dependent id-expression that
378/// was just parsed. This is only possible with an explicit scope
379/// specifier naming a dependent type.
John McCall60d7b3a2010-08-24 06:29:42 +0000380ExprResult
John McCallf7a1a742009-11-24 19:00:30 +0000381Sema::ActOnDependentIdExpression(const CXXScopeSpec &SS,
Abramo Bagnara25777432010-08-11 22:01:17 +0000382 const DeclarationNameInfo &NameInfo,
John McCall2f841ba2009-12-02 03:53:29 +0000383 bool isAddressOfOperand,
John McCallf7a1a742009-11-24 19:00:30 +0000384 const TemplateArgumentListInfo *TemplateArgs) {
John McCallea1471e2010-05-20 01:18:31 +0000385 DeclContext *DC = getFunctionLevelDeclContext();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000386
John McCall2f841ba2009-12-02 03:53:29 +0000387 if (!isAddressOfOperand &&
John McCallea1471e2010-05-20 01:18:31 +0000388 isa<CXXMethodDecl>(DC) &&
389 cast<CXXMethodDecl>(DC)->isInstance()) {
390 QualType ThisType = cast<CXXMethodDecl>(DC)->getThisType(Context);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000391
John McCallf7a1a742009-11-24 19:00:30 +0000392 // Since the 'this' expression is synthesized, we don't need to
393 // perform the double-lookup check.
394 NamedDecl *FirstQualifierInScope = 0;
395
John McCallaa81e162009-12-01 22:10:20 +0000396 return Owned(CXXDependentScopeMemberExpr::Create(Context,
397 /*This*/ 0, ThisType,
398 /*IsArrow*/ true,
John McCallf7a1a742009-11-24 19:00:30 +0000399 /*Op*/ SourceLocation(),
Douglas Gregor7c3179c2011-02-28 18:50:33 +0000400 SS.getWithLocInContext(Context),
John McCallf7a1a742009-11-24 19:00:30 +0000401 FirstQualifierInScope,
Abramo Bagnara25777432010-08-11 22:01:17 +0000402 NameInfo,
John McCallf7a1a742009-11-24 19:00:30 +0000403 TemplateArgs));
404 }
405
Abramo Bagnara25777432010-08-11 22:01:17 +0000406 return BuildDependentDeclRefExpr(SS, NameInfo, TemplateArgs);
John McCallf7a1a742009-11-24 19:00:30 +0000407}
408
John McCall60d7b3a2010-08-24 06:29:42 +0000409ExprResult
John McCallf7a1a742009-11-24 19:00:30 +0000410Sema::BuildDependentDeclRefExpr(const CXXScopeSpec &SS,
Abramo Bagnara25777432010-08-11 22:01:17 +0000411 const DeclarationNameInfo &NameInfo,
John McCallf7a1a742009-11-24 19:00:30 +0000412 const TemplateArgumentListInfo *TemplateArgs) {
413 return Owned(DependentScopeDeclRefExpr::Create(Context,
Douglas Gregor00cf3cc2011-02-25 20:49:16 +0000414 SS.getWithLocInContext(Context),
Abramo Bagnara25777432010-08-11 22:01:17 +0000415 NameInfo,
John McCallf7a1a742009-11-24 19:00:30 +0000416 TemplateArgs));
Douglas Gregord6fb7ef2008-12-18 19:37:40 +0000417}
418
Douglas Gregor72c3f312008-12-05 18:15:24 +0000419/// DiagnoseTemplateParameterShadow - Produce a diagnostic complaining
420/// that the template parameter 'PrevDecl' is being shadowed by a new
421/// declaration at location Loc. Returns true to indicate that this is
422/// an error, and false otherwise.
423bool Sema::DiagnoseTemplateParameterShadow(SourceLocation Loc, Decl *PrevDecl) {
Douglas Gregorf57172b2008-12-08 18:40:42 +0000424 assert(PrevDecl->isTemplateParameter() && "Not a template parameter");
Douglas Gregor72c3f312008-12-05 18:15:24 +0000425
426 // Microsoft Visual C++ permits template parameters to be shadowed.
Francois Pichet62ec1f22011-09-17 17:15:52 +0000427 if (getLangOptions().MicrosoftExt)
Douglas Gregor72c3f312008-12-05 18:15:24 +0000428 return false;
429
430 // C++ [temp.local]p4:
431 // A template-parameter shall not be redeclared within its
432 // scope (including nested scopes).
Mike Stump1eb44332009-09-09 15:08:12 +0000433 Diag(Loc, diag::err_template_param_shadow)
Douglas Gregor72c3f312008-12-05 18:15:24 +0000434 << cast<NamedDecl>(PrevDecl)->getDeclName();
435 Diag(PrevDecl->getLocation(), diag::note_template_param_here);
436 return true;
437}
438
Douglas Gregor2943aed2009-03-03 04:44:36 +0000439/// AdjustDeclIfTemplate - If the given decl happens to be a template, reset
Douglas Gregoraaba5e32009-02-04 19:02:06 +0000440/// the parameter D to reference the templated declaration and return a pointer
441/// to the template declaration. Otherwise, do nothing to D and return null.
John McCalld226f652010-08-21 09:40:31 +0000442TemplateDecl *Sema::AdjustDeclIfTemplate(Decl *&D) {
443 if (TemplateDecl *Temp = dyn_cast_or_null<TemplateDecl>(D)) {
444 D = Temp->getTemplatedDecl();
Douglas Gregoraaba5e32009-02-04 19:02:06 +0000445 return Temp;
446 }
447 return 0;
448}
449
Douglas Gregorba68eca2011-01-05 17:40:24 +0000450ParsedTemplateArgument ParsedTemplateArgument::getTemplatePackExpansion(
451 SourceLocation EllipsisLoc) const {
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000452 assert(Kind == Template &&
Douglas Gregorba68eca2011-01-05 17:40:24 +0000453 "Only template template arguments can be pack expansions here");
454 assert(getAsTemplate().get().containsUnexpandedParameterPack() &&
455 "Template template argument pack expansion without packs");
456 ParsedTemplateArgument Result(*this);
457 Result.EllipsisLoc = EllipsisLoc;
458 return Result;
459}
460
Douglas Gregor788cd062009-11-11 01:00:40 +0000461static TemplateArgumentLoc translateTemplateArgument(Sema &SemaRef,
462 const ParsedTemplateArgument &Arg) {
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000463
Douglas Gregor788cd062009-11-11 01:00:40 +0000464 switch (Arg.getKind()) {
465 case ParsedTemplateArgument::Type: {
John McCalla93c9342009-12-07 02:54:59 +0000466 TypeSourceInfo *DI;
Douglas Gregor788cd062009-11-11 01:00:40 +0000467 QualType T = SemaRef.GetTypeFromParser(Arg.getAsType(), &DI);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000468 if (!DI)
John McCalla93c9342009-12-07 02:54:59 +0000469 DI = SemaRef.Context.getTrivialTypeSourceInfo(T, Arg.getLocation());
Douglas Gregor788cd062009-11-11 01:00:40 +0000470 return TemplateArgumentLoc(TemplateArgument(T), DI);
471 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000472
Douglas Gregor788cd062009-11-11 01:00:40 +0000473 case ParsedTemplateArgument::NonType: {
474 Expr *E = static_cast<Expr *>(Arg.getAsExpr());
475 return TemplateArgumentLoc(TemplateArgument(E), E);
476 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000477
Douglas Gregor788cd062009-11-11 01:00:40 +0000478 case ParsedTemplateArgument::Template: {
John McCall2b5289b2010-08-23 07:28:44 +0000479 TemplateName Template = Arg.getAsTemplate().get();
Douglas Gregor2be29f42011-01-14 23:41:42 +0000480 TemplateArgument TArg;
481 if (Arg.getEllipsisLoc().isValid())
482 TArg = TemplateArgument(Template, llvm::Optional<unsigned int>());
483 else
484 TArg = Template;
485 return TemplateArgumentLoc(TArg,
Douglas Gregorb6744ef2011-03-02 17:09:35 +0000486 Arg.getScopeSpec().getWithLocInContext(
487 SemaRef.Context),
Douglas Gregorba68eca2011-01-05 17:40:24 +0000488 Arg.getLocation(),
489 Arg.getEllipsisLoc());
Douglas Gregor788cd062009-11-11 01:00:40 +0000490 }
491 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000492
Jeffrey Yasskin9f61aa92009-12-12 05:05:38 +0000493 llvm_unreachable("Unhandled parsed template argument");
Douglas Gregor788cd062009-11-11 01:00:40 +0000494 return TemplateArgumentLoc();
495}
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000496
Douglas Gregor788cd062009-11-11 01:00:40 +0000497/// \brief Translates template arguments as provided by the parser
498/// into template arguments used by semantic analysis.
John McCalld5532b62009-11-23 01:53:49 +0000499void Sema::translateTemplateArguments(const ASTTemplateArgsPtr &TemplateArgsIn,
500 TemplateArgumentListInfo &TemplateArgs) {
Douglas Gregor788cd062009-11-11 01:00:40 +0000501 for (unsigned I = 0, Last = TemplateArgsIn.size(); I != Last; ++I)
John McCalld5532b62009-11-23 01:53:49 +0000502 TemplateArgs.addArgument(translateTemplateArgument(*this,
503 TemplateArgsIn[I]));
Douglas Gregor788cd062009-11-11 01:00:40 +0000504}
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000505
Douglas Gregor72c3f312008-12-05 18:15:24 +0000506/// ActOnTypeParameter - Called when a C++ template type parameter
507/// (e.g., "typename T") has been parsed. Typename specifies whether
508/// the keyword "typename" was used to declare the type parameter
509/// (otherwise, "class" was used), and KeyLoc is the location of the
510/// "class" or "typename" keyword. ParamName is the name of the
511/// parameter (NULL indicates an unnamed template parameter) and
Chandler Carruth4fb86f82011-05-01 00:51:33 +0000512/// ParamNameLoc is the location of the parameter name (if any).
Douglas Gregor72c3f312008-12-05 18:15:24 +0000513/// If the type parameter has a default argument, it will be added
514/// later via ActOnTypeParameterDefault.
John McCalld226f652010-08-21 09:40:31 +0000515Decl *Sema::ActOnTypeParameter(Scope *S, bool Typename, bool Ellipsis,
516 SourceLocation EllipsisLoc,
517 SourceLocation KeyLoc,
518 IdentifierInfo *ParamName,
519 SourceLocation ParamNameLoc,
520 unsigned Depth, unsigned Position,
521 SourceLocation EqualLoc,
John McCallb3d87482010-08-24 05:47:05 +0000522 ParsedType DefaultArg) {
Mike Stump1eb44332009-09-09 15:08:12 +0000523 assert(S->isTemplateParamScope() &&
524 "Template type parameter not in template parameter scope!");
Douglas Gregor72c3f312008-12-05 18:15:24 +0000525 bool Invalid = false;
526
527 if (ParamName) {
Douglas Gregorc83c6872010-04-15 22:33:43 +0000528 NamedDecl *PrevDecl = LookupSingleName(S, ParamName, ParamNameLoc,
Douglas Gregorc0b39642010-04-15 23:40:53 +0000529 LookupOrdinaryName,
530 ForRedeclaration);
Douglas Gregorf57172b2008-12-08 18:40:42 +0000531 if (PrevDecl && PrevDecl->isTemplateParameter())
Douglas Gregor72c3f312008-12-05 18:15:24 +0000532 Invalid = Invalid || DiagnoseTemplateParameterShadow(ParamNameLoc,
Mike Stump1eb44332009-09-09 15:08:12 +0000533 PrevDecl);
Douglas Gregor72c3f312008-12-05 18:15:24 +0000534 }
535
Douglas Gregorddc29e12009-02-06 22:42:48 +0000536 SourceLocation Loc = ParamNameLoc;
537 if (!ParamName)
538 Loc = KeyLoc;
539
Douglas Gregor72c3f312008-12-05 18:15:24 +0000540 TemplateTypeParmDecl *Param
John McCall7a9813c2010-01-22 00:28:27 +0000541 = TemplateTypeParmDecl::Create(Context, Context.getTranslationUnitDecl(),
Abramo Bagnara344577e2011-03-06 15:48:19 +0000542 KeyLoc, Loc, Depth, Position, ParamName,
543 Typename, Ellipsis);
Douglas Gregor9a299e02011-03-04 17:52:15 +0000544 Param->setAccess(AS_public);
Douglas Gregor72c3f312008-12-05 18:15:24 +0000545 if (Invalid)
546 Param->setInvalidDecl();
547
548 if (ParamName) {
549 // Add the template parameter into the current scope.
John McCalld226f652010-08-21 09:40:31 +0000550 S->AddDecl(Param);
Douglas Gregor72c3f312008-12-05 18:15:24 +0000551 IdResolver.AddDecl(Param);
552 }
553
Douglas Gregor61c4d282011-01-05 15:48:55 +0000554 // C++0x [temp.param]p9:
555 // A default template-argument may be specified for any kind of
556 // template-parameter that is not a template parameter pack.
557 if (DefaultArg && Ellipsis) {
558 Diag(EqualLoc, diag::err_template_param_pack_default_arg);
559 DefaultArg = ParsedType();
560 }
561
Douglas Gregorbb3310a2010-07-01 00:00:45 +0000562 // Handle the default argument, if provided.
563 if (DefaultArg) {
564 TypeSourceInfo *DefaultTInfo;
565 GetTypeFromParser(DefaultArg, &DefaultTInfo);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000566
Douglas Gregorbb3310a2010-07-01 00:00:45 +0000567 assert(DefaultTInfo && "expected source information for type");
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000568
Douglas Gregor6f526752010-12-16 08:48:57 +0000569 // Check for unexpanded parameter packs.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000570 if (DiagnoseUnexpandedParameterPack(Loc, DefaultTInfo,
Douglas Gregor6f526752010-12-16 08:48:57 +0000571 UPPC_DefaultArgument))
572 return Param;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000573
Douglas Gregorbb3310a2010-07-01 00:00:45 +0000574 // Check the template argument itself.
575 if (CheckTemplateArgument(Param, DefaultTInfo)) {
576 Param->setInvalidDecl();
John McCalld226f652010-08-21 09:40:31 +0000577 return Param;
Douglas Gregorbb3310a2010-07-01 00:00:45 +0000578 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000579
Douglas Gregorbb3310a2010-07-01 00:00:45 +0000580 Param->setDefaultArgument(DefaultTInfo, false);
581 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000582
John McCalld226f652010-08-21 09:40:31 +0000583 return Param;
Douglas Gregor72c3f312008-12-05 18:15:24 +0000584}
585
Douglas Gregor2943aed2009-03-03 04:44:36 +0000586/// \brief Check that the type of a non-type template parameter is
587/// well-formed.
588///
589/// \returns the (possibly-promoted) parameter type if valid;
590/// otherwise, produces a diagnostic and returns a NULL type.
Mike Stump1eb44332009-09-09 15:08:12 +0000591QualType
Douglas Gregor2943aed2009-03-03 04:44:36 +0000592Sema::CheckNonTypeTemplateParameterType(QualType T, SourceLocation Loc) {
Douglas Gregora481ec42010-05-23 19:57:01 +0000593 // We don't allow variably-modified types as the type of non-type template
594 // parameters.
595 if (T->isVariablyModifiedType()) {
596 Diag(Loc, diag::err_variably_modified_nontype_template_param)
597 << T;
598 return QualType();
599 }
600
Douglas Gregor2943aed2009-03-03 04:44:36 +0000601 // C++ [temp.param]p4:
602 //
603 // A non-type template-parameter shall have one of the following
604 // (optionally cv-qualified) types:
605 //
606 // -- integral or enumeration type,
Douglas Gregor2ade35e2010-06-16 00:17:44 +0000607 if (T->isIntegralOrEnumerationType() ||
Mike Stump1eb44332009-09-09 15:08:12 +0000608 // -- pointer to object or pointer to function,
Eli Friedman13578692010-08-05 02:49:48 +0000609 T->isPointerType() ||
Mike Stump1eb44332009-09-09 15:08:12 +0000610 // -- reference to object or reference to function,
Douglas Gregor2943aed2009-03-03 04:44:36 +0000611 T->isReferenceType() ||
Douglas Gregor84ee2ee2011-05-21 23:15:46 +0000612 // -- pointer to member,
Douglas Gregor2943aed2009-03-03 04:44:36 +0000613 T->isMemberPointerType() ||
Douglas Gregor84ee2ee2011-05-21 23:15:46 +0000614 // -- std::nullptr_t.
615 T->isNullPtrType() ||
Douglas Gregor2943aed2009-03-03 04:44:36 +0000616 // If T is a dependent type, we can't do the check now, so we
617 // assume that it is well-formed.
618 T->isDependentType())
619 return T;
620 // C++ [temp.param]p8:
621 //
622 // A non-type template-parameter of type "array of T" or
623 // "function returning T" is adjusted to be of type "pointer to
624 // T" or "pointer to function returning T", respectively.
625 else if (T->isArrayType())
626 // FIXME: Keep the type prior to promotion?
627 return Context.getArrayDecayedType(T);
628 else if (T->isFunctionType())
629 // FIXME: Keep the type prior to promotion?
630 return Context.getPointerType(T);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000631
Douglas Gregor2943aed2009-03-03 04:44:36 +0000632 Diag(Loc, diag::err_template_nontype_parm_bad_type)
633 << T;
634
635 return QualType();
636}
637
John McCalld226f652010-08-21 09:40:31 +0000638Decl *Sema::ActOnNonTypeTemplateParameter(Scope *S, Declarator &D,
639 unsigned Depth,
640 unsigned Position,
641 SourceLocation EqualLoc,
John McCall9ae2f072010-08-23 23:25:46 +0000642 Expr *Default) {
John McCallbf1a0282010-06-04 23:28:52 +0000643 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
644 QualType T = TInfo->getType();
Douglas Gregor72c3f312008-12-05 18:15:24 +0000645
Douglas Gregoraaba5e32009-02-04 19:02:06 +0000646 assert(S->isTemplateParamScope() &&
647 "Non-type template parameter not in template parameter scope!");
Douglas Gregor72c3f312008-12-05 18:15:24 +0000648 bool Invalid = false;
649
650 IdentifierInfo *ParamName = D.getIdentifier();
651 if (ParamName) {
Douglas Gregorc83c6872010-04-15 22:33:43 +0000652 NamedDecl *PrevDecl = LookupSingleName(S, ParamName, D.getIdentifierLoc(),
Douglas Gregorc0b39642010-04-15 23:40:53 +0000653 LookupOrdinaryName,
654 ForRedeclaration);
Douglas Gregorf57172b2008-12-08 18:40:42 +0000655 if (PrevDecl && PrevDecl->isTemplateParameter())
Douglas Gregor72c3f312008-12-05 18:15:24 +0000656 Invalid = Invalid || DiagnoseTemplateParameterShadow(D.getIdentifierLoc(),
Douglas Gregoraaba5e32009-02-04 19:02:06 +0000657 PrevDecl);
Douglas Gregor72c3f312008-12-05 18:15:24 +0000658 }
659
Douglas Gregor4d2abba2010-12-16 15:36:43 +0000660 T = CheckNonTypeTemplateParameterType(T, D.getIdentifierLoc());
661 if (T.isNull()) {
Douglas Gregor2943aed2009-03-03 04:44:36 +0000662 T = Context.IntTy; // Recover with an 'int' type.
Douglas Gregorceef30c2009-03-09 16:46:39 +0000663 Invalid = true;
664 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000665
Douglas Gregor10738d32010-12-23 23:51:58 +0000666 bool IsParameterPack = D.hasEllipsis();
Douglas Gregor72c3f312008-12-05 18:15:24 +0000667 NonTypeTemplateParmDecl *Param
John McCall7a9813c2010-01-22 00:28:27 +0000668 = NonTypeTemplateParmDecl::Create(Context, Context.getTranslationUnitDecl(),
Abramo Bagnaraff676cb2011-03-08 08:55:46 +0000669 D.getSourceRange().getBegin(),
John McCall7a9813c2010-01-22 00:28:27 +0000670 D.getIdentifierLoc(),
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000671 Depth, Position, ParamName, T,
Douglas Gregor10738d32010-12-23 23:51:58 +0000672 IsParameterPack, TInfo);
Douglas Gregor9a299e02011-03-04 17:52:15 +0000673 Param->setAccess(AS_public);
674
Douglas Gregor72c3f312008-12-05 18:15:24 +0000675 if (Invalid)
676 Param->setInvalidDecl();
677
678 if (D.getIdentifier()) {
679 // Add the template parameter into the current scope.
John McCalld226f652010-08-21 09:40:31 +0000680 S->AddDecl(Param);
Douglas Gregor72c3f312008-12-05 18:15:24 +0000681 IdResolver.AddDecl(Param);
682 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000683
Douglas Gregor61c4d282011-01-05 15:48:55 +0000684 // C++0x [temp.param]p9:
685 // A default template-argument may be specified for any kind of
686 // template-parameter that is not a template parameter pack.
687 if (Default && IsParameterPack) {
688 Diag(EqualLoc, diag::err_template_param_pack_default_arg);
689 Default = 0;
690 }
691
Douglas Gregorbb3310a2010-07-01 00:00:45 +0000692 // Check the well-formedness of the default template argument, if provided.
Douglas Gregor10738d32010-12-23 23:51:58 +0000693 if (Default) {
Douglas Gregor6f526752010-12-16 08:48:57 +0000694 // Check for unexpanded parameter packs.
695 if (DiagnoseUnexpandedParameterPack(Default, UPPC_DefaultArgument))
696 return Param;
697
Douglas Gregorbb3310a2010-07-01 00:00:45 +0000698 TemplateArgument Converted;
John Wiegley429bb272011-04-08 18:41:53 +0000699 ExprResult DefaultRes = CheckTemplateArgument(Param, Param->getType(), Default, Converted);
700 if (DefaultRes.isInvalid()) {
Douglas Gregorbb3310a2010-07-01 00:00:45 +0000701 Param->setInvalidDecl();
John McCalld226f652010-08-21 09:40:31 +0000702 return Param;
Douglas Gregorbb3310a2010-07-01 00:00:45 +0000703 }
John Wiegley429bb272011-04-08 18:41:53 +0000704 Default = DefaultRes.take();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000705
John McCall9ae2f072010-08-23 23:25:46 +0000706 Param->setDefaultArgument(Default, false);
Douglas Gregorbb3310a2010-07-01 00:00:45 +0000707 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000708
John McCalld226f652010-08-21 09:40:31 +0000709 return Param;
Douglas Gregor72c3f312008-12-05 18:15:24 +0000710}
Douglas Gregorc4b4e7b2008-12-24 02:52:09 +0000711
Douglas Gregoraaba5e32009-02-04 19:02:06 +0000712/// ActOnTemplateTemplateParameter - Called when a C++ template template
713/// parameter (e.g. T in template <template <typename> class T> class array)
714/// has been parsed. S is the current scope.
John McCalld226f652010-08-21 09:40:31 +0000715Decl *Sema::ActOnTemplateTemplateParameter(Scope* S,
716 SourceLocation TmpLoc,
Richard Trieu90ab75b2011-09-09 03:18:59 +0000717 TemplateParameterList *Params,
Douglas Gregor61c4d282011-01-05 15:48:55 +0000718 SourceLocation EllipsisLoc,
John McCalld226f652010-08-21 09:40:31 +0000719 IdentifierInfo *Name,
720 SourceLocation NameLoc,
721 unsigned Depth,
722 unsigned Position,
723 SourceLocation EqualLoc,
Douglas Gregor61c4d282011-01-05 15:48:55 +0000724 ParsedTemplateArgument Default) {
Douglas Gregoraaba5e32009-02-04 19:02:06 +0000725 assert(S->isTemplateParamScope() &&
726 "Template template parameter not in template parameter scope!");
727
728 // Construct the parameter object.
Douglas Gregor61c4d282011-01-05 15:48:55 +0000729 bool IsParameterPack = EllipsisLoc.isValid();
Douglas Gregoraaba5e32009-02-04 19:02:06 +0000730 TemplateTemplateParmDecl *Param =
John McCall7a9813c2010-01-22 00:28:27 +0000731 TemplateTemplateParmDecl::Create(Context, Context.getTranslationUnitDecl(),
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000732 NameLoc.isInvalid()? TmpLoc : NameLoc,
733 Depth, Position, IsParameterPack,
Douglas Gregor61c4d282011-01-05 15:48:55 +0000734 Name, Params);
Douglas Gregor9a299e02011-03-04 17:52:15 +0000735 Param->setAccess(AS_public);
736
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000737 // If the template template parameter has a name, then link the identifier
Douglas Gregorbb3310a2010-07-01 00:00:45 +0000738 // into the scope and lookup mechanisms.
Douglas Gregoraaba5e32009-02-04 19:02:06 +0000739 if (Name) {
John McCalld226f652010-08-21 09:40:31 +0000740 S->AddDecl(Param);
Douglas Gregoraaba5e32009-02-04 19:02:06 +0000741 IdResolver.AddDecl(Param);
742 }
743
Douglas Gregor6f526752010-12-16 08:48:57 +0000744 if (Params->size() == 0) {
745 Diag(Param->getLocation(), diag::err_template_template_parm_no_parms)
746 << SourceRange(Params->getLAngleLoc(), Params->getRAngleLoc());
747 Param->setInvalidDecl();
748 }
749
Douglas Gregor61c4d282011-01-05 15:48:55 +0000750 // C++0x [temp.param]p9:
751 // A default template-argument may be specified for any kind of
752 // template-parameter that is not a template parameter pack.
753 if (IsParameterPack && !Default.isInvalid()) {
754 Diag(EqualLoc, diag::err_template_param_pack_default_arg);
755 Default = ParsedTemplateArgument();
756 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000757
Douglas Gregorbb3310a2010-07-01 00:00:45 +0000758 if (!Default.isInvalid()) {
759 // Check only that we have a template template argument. We don't want to
760 // try to check well-formedness now, because our template template parameter
761 // might have dependent types in its template parameters, which we wouldn't
762 // be able to match now.
763 //
764 // If none of the template template parameter's template arguments mention
765 // other template parameters, we could actually perform more checking here.
766 // However, it isn't worth doing.
767 TemplateArgumentLoc DefaultArg = translateTemplateArgument(*this, Default);
768 if (DefaultArg.getArgument().getAsTemplate().isNull()) {
769 Diag(DefaultArg.getLocation(), diag::err_template_arg_not_class_template)
770 << DefaultArg.getSourceRange();
John McCalld226f652010-08-21 09:40:31 +0000771 return Param;
Douglas Gregorbb3310a2010-07-01 00:00:45 +0000772 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000773
Douglas Gregor6f526752010-12-16 08:48:57 +0000774 // Check for unexpanded parameter packs.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000775 if (DiagnoseUnexpandedParameterPack(DefaultArg.getLocation(),
Douglas Gregor6f526752010-12-16 08:48:57 +0000776 DefaultArg.getArgument().getAsTemplate(),
777 UPPC_DefaultArgument))
778 return Param;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000779
Douglas Gregorbb3310a2010-07-01 00:00:45 +0000780 Param->setDefaultArgument(DefaultArg, false);
Douglas Gregord684b002009-02-10 19:49:53 +0000781 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000782
John McCalld226f652010-08-21 09:40:31 +0000783 return Param;
Douglas Gregord684b002009-02-10 19:49:53 +0000784}
785
Douglas Gregorc4b4e7b2008-12-24 02:52:09 +0000786/// ActOnTemplateParameterList - Builds a TemplateParameterList that
787/// contains the template parameters in Params/NumParams.
Richard Trieu90ab75b2011-09-09 03:18:59 +0000788TemplateParameterList *
Douglas Gregorc4b4e7b2008-12-24 02:52:09 +0000789Sema::ActOnTemplateParameterList(unsigned Depth,
790 SourceLocation ExportLoc,
Mike Stump1eb44332009-09-09 15:08:12 +0000791 SourceLocation TemplateLoc,
Douglas Gregorc4b4e7b2008-12-24 02:52:09 +0000792 SourceLocation LAngleLoc,
John McCalld226f652010-08-21 09:40:31 +0000793 Decl **Params, unsigned NumParams,
Douglas Gregorc4b4e7b2008-12-24 02:52:09 +0000794 SourceLocation RAngleLoc) {
795 if (ExportLoc.isValid())
Douglas Gregor51ffb0c2009-11-25 18:55:14 +0000796 Diag(ExportLoc, diag::warn_template_export_unsupported);
Douglas Gregorc4b4e7b2008-12-24 02:52:09 +0000797
Douglas Gregorddc29e12009-02-06 22:42:48 +0000798 return TemplateParameterList::Create(Context, TemplateLoc, LAngleLoc,
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000799 (NamedDecl**)Params, NumParams,
Douglas Gregorbf4ea562009-09-15 16:23:51 +0000800 RAngleLoc);
Douglas Gregorc4b4e7b2008-12-24 02:52:09 +0000801}
Douglas Gregoraaba5e32009-02-04 19:02:06 +0000802
John McCallb6217662010-03-15 10:12:16 +0000803static void SetNestedNameSpecifier(TagDecl *T, const CXXScopeSpec &SS) {
804 if (SS.isSet())
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000805 T->setQualifierInfo(SS.getWithLocInContext(T->getASTContext()));
John McCallb6217662010-03-15 10:12:16 +0000806}
807
John McCallf312b1e2010-08-26 23:41:50 +0000808DeclResult
John McCall0f434ec2009-07-31 02:45:11 +0000809Sema::CheckClassTemplate(Scope *S, unsigned TagSpec, TagUseKind TUK,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +0000810 SourceLocation KWLoc, CXXScopeSpec &SS,
Douglas Gregorddc29e12009-02-06 22:42:48 +0000811 IdentifierInfo *Name, SourceLocation NameLoc,
812 AttributeList *Attr,
Douglas Gregor05396e22009-08-25 17:23:04 +0000813 TemplateParameterList *TemplateParams,
Douglas Gregore7612302011-09-09 19:05:14 +0000814 AccessSpecifier AS, SourceLocation ModulePrivateLoc,
Abramo Bagnarac57c17d2011-03-10 13:28:31 +0000815 unsigned NumOuterTemplateParamLists,
816 TemplateParameterList** OuterTemplateParamLists) {
Mike Stump1eb44332009-09-09 15:08:12 +0000817 assert(TemplateParams && TemplateParams->size() > 0 &&
Douglas Gregor05396e22009-08-25 17:23:04 +0000818 "No template parameters");
John McCall0f434ec2009-07-31 02:45:11 +0000819 assert(TUK != TUK_Reference && "Can only declare or define class templates");
Douglas Gregord684b002009-02-10 19:49:53 +0000820 bool Invalid = false;
Douglas Gregorddc29e12009-02-06 22:42:48 +0000821
822 // Check that we can declare a template here.
Douglas Gregor05396e22009-08-25 17:23:04 +0000823 if (CheckTemplateDeclScope(S, TemplateParams))
Douglas Gregor212e81c2009-03-25 00:13:59 +0000824 return true;
Douglas Gregorddc29e12009-02-06 22:42:48 +0000825
Abramo Bagnara465d41b2010-05-11 21:36:43 +0000826 TagTypeKind Kind = TypeWithKeyword::getTagTypeKindForTypeSpec(TagSpec);
827 assert(Kind != TTK_Enum && "can't build template of enumerated type");
Douglas Gregorddc29e12009-02-06 22:42:48 +0000828
829 // There is no such thing as an unnamed class template.
830 if (!Name) {
831 Diag(KWLoc, diag::err_template_unnamed_class);
Douglas Gregor212e81c2009-03-25 00:13:59 +0000832 return true;
Douglas Gregorddc29e12009-02-06 22:42:48 +0000833 }
834
835 // Find any previous declaration with this name.
Douglas Gregor05396e22009-08-25 17:23:04 +0000836 DeclContext *SemanticContext;
John McCalla24dc2e2009-11-17 02:14:36 +0000837 LookupResult Previous(*this, Name, NameLoc, LookupOrdinaryName,
John McCall7d384dd2009-11-18 07:57:50 +0000838 ForRedeclaration);
Douglas Gregor05396e22009-08-25 17:23:04 +0000839 if (SS.isNotEmpty() && !SS.isInvalid()) {
840 SemanticContext = computeDeclContext(SS, true);
841 if (!SemanticContext) {
842 // FIXME: Produce a reasonable diagnostic here
843 return true;
844 }
Mike Stump1eb44332009-09-09 15:08:12 +0000845
John McCall77bb1aa2010-05-01 00:40:08 +0000846 if (RequireCompleteDeclContext(SS, SemanticContext))
847 return true;
848
Douglas Gregor20606502011-10-14 15:31:12 +0000849 // If we're adding a template to a dependent context, we may need to
850 // rebuilding some of the types used within the template parameter list,
851 // now that we know what the current instantiation is.
852 if (SemanticContext->isDependentContext()) {
853 ContextRAII SavedContext(*this, SemanticContext);
854 if (RebuildTemplateParamsInCurrentInstantiation(TemplateParams))
855 Invalid = true;
856 }
857
John McCalla24dc2e2009-11-17 02:14:36 +0000858 LookupQualifiedName(Previous, SemanticContext);
Douglas Gregor05396e22009-08-25 17:23:04 +0000859 } else {
860 SemanticContext = CurContext;
John McCalla24dc2e2009-11-17 02:14:36 +0000861 LookupName(Previous, S);
Douglas Gregor05396e22009-08-25 17:23:04 +0000862 }
Mike Stump1eb44332009-09-09 15:08:12 +0000863
Douglas Gregor57265e32010-04-12 16:00:01 +0000864 if (Previous.isAmbiguous())
865 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000866
Douglas Gregorddc29e12009-02-06 22:42:48 +0000867 NamedDecl *PrevDecl = 0;
868 if (Previous.begin() != Previous.end())
Douglas Gregor57265e32010-04-12 16:00:01 +0000869 PrevDecl = (*Previous.begin())->getUnderlyingDecl();
Douglas Gregorddc29e12009-02-06 22:42:48 +0000870
Douglas Gregorddc29e12009-02-06 22:42:48 +0000871 // If there is a previous declaration with the same name, check
872 // whether this is a valid redeclaration.
Mike Stump1eb44332009-09-09 15:08:12 +0000873 ClassTemplateDecl *PrevClassTemplate
Douglas Gregorddc29e12009-02-06 22:42:48 +0000874 = dyn_cast_or_null<ClassTemplateDecl>(PrevDecl);
Douglas Gregord7e5bdb2009-10-09 21:11:42 +0000875
876 // We may have found the injected-class-name of a class template,
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000877 // class template partial specialization, or class template specialization.
Douglas Gregord7e5bdb2009-10-09 21:11:42 +0000878 // In these cases, grab the template that is being defined or specialized.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000879 if (!PrevClassTemplate && PrevDecl && isa<CXXRecordDecl>(PrevDecl) &&
Douglas Gregord7e5bdb2009-10-09 21:11:42 +0000880 cast<CXXRecordDecl>(PrevDecl)->isInjectedClassName()) {
881 PrevDecl = cast<CXXRecordDecl>(PrevDecl->getDeclContext());
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000882 PrevClassTemplate
Douglas Gregord7e5bdb2009-10-09 21:11:42 +0000883 = cast<CXXRecordDecl>(PrevDecl)->getDescribedClassTemplate();
884 if (!PrevClassTemplate && isa<ClassTemplateSpecializationDecl>(PrevDecl)) {
885 PrevClassTemplate
886 = cast<ClassTemplateSpecializationDecl>(PrevDecl)
887 ->getSpecializedTemplate();
888 }
889 }
890
John McCall65c49462009-12-18 11:25:59 +0000891 if (TUK == TUK_Friend) {
John McCalle129d442009-12-17 23:21:11 +0000892 // C++ [namespace.memdef]p3:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000893 // [...] When looking for a prior declaration of a class or a function
894 // declared as a friend, and when the name of the friend class or
John McCalle129d442009-12-17 23:21:11 +0000895 // function is neither a qualified name nor a template-id, scopes outside
896 // the innermost enclosing namespace scope are not considered.
Douglas Gregorc1c9df72010-04-18 17:37:40 +0000897 if (!SS.isSet()) {
898 DeclContext *OutermostContext = CurContext;
899 while (!OutermostContext->isFileContext())
900 OutermostContext = OutermostContext->getLookupParent();
John McCall65c49462009-12-18 11:25:59 +0000901
Douglas Gregorc1c9df72010-04-18 17:37:40 +0000902 if (PrevDecl &&
903 (OutermostContext->Equals(PrevDecl->getDeclContext()) ||
904 OutermostContext->Encloses(PrevDecl->getDeclContext()))) {
905 SemanticContext = PrevDecl->getDeclContext();
906 } else {
907 // Declarations in outer scopes don't matter. However, the outermost
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000908 // context we computed is the semantic context for our new
Douglas Gregorc1c9df72010-04-18 17:37:40 +0000909 // declaration.
910 PrevDecl = PrevClassTemplate = 0;
911 SemanticContext = OutermostContext;
912 }
John McCalle129d442009-12-17 23:21:11 +0000913 }
Douglas Gregorc1c9df72010-04-18 17:37:40 +0000914
John McCalle129d442009-12-17 23:21:11 +0000915 if (CurContext->isDependentContext()) {
916 // If this is a dependent context, we don't want to link the friend
917 // class template to the template in scope, because that would perform
918 // checking of the template parameter lists that can't be performed
919 // until the outer context is instantiated.
920 PrevDecl = PrevClassTemplate = 0;
921 }
922 } else if (PrevDecl && !isDeclInScope(PrevDecl, SemanticContext, S))
923 PrevDecl = PrevClassTemplate = 0;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000924
Douglas Gregorddc29e12009-02-06 22:42:48 +0000925 if (PrevClassTemplate) {
926 // Ensure that the template parameter lists are compatible.
927 if (!TemplateParameterListsAreEqual(TemplateParams,
928 PrevClassTemplate->getTemplateParameters(),
Douglas Gregorfb898e12009-11-12 16:20:59 +0000929 /*Complain=*/true,
930 TPL_TemplateMatch))
Douglas Gregor212e81c2009-03-25 00:13:59 +0000931 return true;
Douglas Gregorddc29e12009-02-06 22:42:48 +0000932
933 // C++ [temp.class]p4:
934 // In a redeclaration, partial specialization, explicit
935 // specialization or explicit instantiation of a class template,
936 // the class-key shall agree in kind with the original class
937 // template declaration (7.1.5.3).
938 RecordDecl *PrevRecordDecl = PrevClassTemplate->getTemplatedDecl();
Richard Trieubbf34c02011-06-10 03:11:26 +0000939 if (!isAcceptableTagRedeclaration(PrevRecordDecl, Kind,
940 TUK == TUK_Definition, KWLoc, *Name)) {
Mike Stump1eb44332009-09-09 15:08:12 +0000941 Diag(KWLoc, diag::err_use_with_wrong_tag)
Douglas Gregora3a83512009-04-01 23:51:29 +0000942 << Name
Douglas Gregor849b2432010-03-31 17:46:05 +0000943 << FixItHint::CreateReplacement(KWLoc, PrevRecordDecl->getKindName());
Douglas Gregorddc29e12009-02-06 22:42:48 +0000944 Diag(PrevRecordDecl->getLocation(), diag::note_previous_use);
Douglas Gregora3a83512009-04-01 23:51:29 +0000945 Kind = PrevRecordDecl->getTagKind();
Douglas Gregorddc29e12009-02-06 22:42:48 +0000946 }
947
Douglas Gregorddc29e12009-02-06 22:42:48 +0000948 // Check for redefinition of this class template.
John McCall0f434ec2009-07-31 02:45:11 +0000949 if (TUK == TUK_Definition) {
Douglas Gregor952b0172010-02-11 01:04:33 +0000950 if (TagDecl *Def = PrevRecordDecl->getDefinition()) {
Douglas Gregorddc29e12009-02-06 22:42:48 +0000951 Diag(NameLoc, diag::err_redefinition) << Name;
952 Diag(Def->getLocation(), diag::note_previous_definition);
953 // FIXME: Would it make sense to try to "forget" the previous
954 // definition, as part of error recovery?
Douglas Gregor212e81c2009-03-25 00:13:59 +0000955 return true;
Douglas Gregorddc29e12009-02-06 22:42:48 +0000956 }
Douglas Gregor6311d2b2011-09-09 18:32:39 +0000957 }
Douglas Gregorddc29e12009-02-06 22:42:48 +0000958 } else if (PrevDecl && PrevDecl->isTemplateParameter()) {
959 // Maybe we will complain about the shadowed template parameter.
960 DiagnoseTemplateParameterShadow(NameLoc, PrevDecl);
961 // Just pretend that we didn't see the previous declaration.
962 PrevDecl = 0;
963 } else if (PrevDecl) {
964 // C++ [temp]p5:
965 // A class template shall not have the same name as any other
966 // template, class, function, object, enumeration, enumerator,
967 // namespace, or type in the same scope (3.3), except as specified
968 // in (14.5.4).
969 Diag(NameLoc, diag::err_redefinition_different_kind) << Name;
970 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
Douglas Gregor212e81c2009-03-25 00:13:59 +0000971 return true;
Douglas Gregorddc29e12009-02-06 22:42:48 +0000972 }
973
Douglas Gregord684b002009-02-10 19:49:53 +0000974 // Check the template parameter list of this declaration, possibly
975 // merging in the template parameter list from the previous class
976 // template declaration.
977 if (CheckTemplateParameterList(TemplateParams,
Douglas Gregor5b6d70e2009-11-25 17:50:39 +0000978 PrevClassTemplate? PrevClassTemplate->getTemplateParameters() : 0,
Douglas Gregord89d86f2011-02-04 04:20:44 +0000979 (SS.isSet() && SemanticContext &&
Douglas Gregor461bf2e2011-02-04 12:22:53 +0000980 SemanticContext->isRecord() &&
981 SemanticContext->isDependentContext())
Douglas Gregord89d86f2011-02-04 04:20:44 +0000982 ? TPC_ClassTemplateMember
983 : TPC_ClassTemplate))
Douglas Gregord684b002009-02-10 19:49:53 +0000984 Invalid = true;
Mike Stump1eb44332009-09-09 15:08:12 +0000985
Douglas Gregor57265e32010-04-12 16:00:01 +0000986 if (SS.isSet()) {
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000987 // If the name of the template was qualified, we must be defining the
Douglas Gregor57265e32010-04-12 16:00:01 +0000988 // template out-of-line.
989 if (!SS.isInvalid() && !Invalid && !PrevClassTemplate &&
990 !(TUK == TUK_Friend && CurContext->isDependentContext()))
991 Diag(NameLoc, diag::err_member_def_does_not_match)
992 << Name << SemanticContext << SS.getRange();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000993 }
994
Mike Stump1eb44332009-09-09 15:08:12 +0000995 CXXRecordDecl *NewClass =
Abramo Bagnaraba877ad2011-03-09 14:09:51 +0000996 CXXRecordDecl::Create(Context, Kind, SemanticContext, KWLoc, NameLoc, Name,
Mike Stump1eb44332009-09-09 15:08:12 +0000997 PrevClassTemplate?
Douglas Gregoraafc0cc2009-05-15 19:11:46 +0000998 PrevClassTemplate->getTemplatedDecl() : 0,
999 /*DelayTypeCreation=*/true);
John McCallb6217662010-03-15 10:12:16 +00001000 SetNestedNameSpecifier(NewClass, SS);
Abramo Bagnarac57c17d2011-03-10 13:28:31 +00001001 if (NumOuterTemplateParamLists > 0)
1002 NewClass->setTemplateParameterListsInfo(Context,
1003 NumOuterTemplateParamLists,
1004 OuterTemplateParamLists);
Douglas Gregorddc29e12009-02-06 22:42:48 +00001005
1006 ClassTemplateDecl *NewTemplate
1007 = ClassTemplateDecl::Create(Context, SemanticContext, NameLoc,
1008 DeclarationName(Name), TemplateParams,
Douglas Gregor5953d8b2009-03-19 17:26:29 +00001009 NewClass, PrevClassTemplate);
Douglas Gregorbefc20e2009-03-26 00:10:35 +00001010 NewClass->setDescribedClassTemplate(NewTemplate);
Douglas Gregor6311d2b2011-09-09 18:32:39 +00001011
1012 if (PrevClassTemplate && PrevClassTemplate->isModulePrivate()) {
1013 NewTemplate->setModulePrivate();
Douglas Gregore7612302011-09-09 19:05:14 +00001014 } else if (ModulePrivateLoc.isValid()) {
1015 if (PrevClassTemplate && !PrevClassTemplate->isModulePrivate())
1016 diagnoseModulePrivateRedeclaration(NewTemplate, PrevClassTemplate,
1017 ModulePrivateLoc);
1018 else
1019 NewTemplate->setModulePrivate();
1020 }
Douglas Gregor8d267c52011-09-09 02:06:17 +00001021
Douglas Gregoraafc0cc2009-05-15 19:11:46 +00001022 // Build the type for the class template declaration now.
Douglas Gregor24bae922010-07-08 18:37:38 +00001023 QualType T = NewTemplate->getInjectedClassNameSpecialization();
John McCall3cb0ebd2010-03-10 03:28:59 +00001024 T = Context.getInjectedClassNameType(NewClass, T);
Douglas Gregoraafc0cc2009-05-15 19:11:46 +00001025 assert(T->isDependentType() && "Class template type is not dependent?");
1026 (void)T;
1027
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001028 // If we are providing an explicit specialization of a member that is a
Douglas Gregorfd056bc2009-10-13 16:30:37 +00001029 // class template, make a note of that.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001030 if (PrevClassTemplate &&
Douglas Gregorfd056bc2009-10-13 16:30:37 +00001031 PrevClassTemplate->getInstantiatedFromMemberTemplate())
1032 PrevClassTemplate->setMemberSpecialization();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001033
Anders Carlsson4cbe82c2009-03-26 01:24:28 +00001034 // Set the access specifier.
Douglas Gregord85bea22009-09-26 06:47:28 +00001035 if (!Invalid && TUK != TUK_Friend)
John McCall05b23ea2009-09-14 21:59:20 +00001036 SetMemberAccessSpecifier(NewTemplate, PrevClassTemplate, AS);
Mike Stump1eb44332009-09-09 15:08:12 +00001037
Douglas Gregorddc29e12009-02-06 22:42:48 +00001038 // Set the lexical context of these templates
1039 NewClass->setLexicalDeclContext(CurContext);
1040 NewTemplate->setLexicalDeclContext(CurContext);
1041
John McCall0f434ec2009-07-31 02:45:11 +00001042 if (TUK == TUK_Definition)
Douglas Gregorddc29e12009-02-06 22:42:48 +00001043 NewClass->startDefinition();
1044
1045 if (Attr)
Douglas Gregor9cdda0c2009-06-17 21:51:59 +00001046 ProcessDeclAttributeList(S, NewClass, Attr);
Douglas Gregorddc29e12009-02-06 22:42:48 +00001047
John McCall05b23ea2009-09-14 21:59:20 +00001048 if (TUK != TUK_Friend)
1049 PushOnScopeChains(NewTemplate, S);
1050 else {
Douglas Gregord85bea22009-09-26 06:47:28 +00001051 if (PrevClassTemplate && PrevClassTemplate->getAccess() != AS_none) {
John McCall05b23ea2009-09-14 21:59:20 +00001052 NewTemplate->setAccess(PrevClassTemplate->getAccess());
Douglas Gregord85bea22009-09-26 06:47:28 +00001053 NewClass->setAccess(PrevClassTemplate->getAccess());
1054 }
John McCall05b23ea2009-09-14 21:59:20 +00001055
Douglas Gregord85bea22009-09-26 06:47:28 +00001056 NewTemplate->setObjectOfFriendDecl(/* PreviouslyDeclared = */
1057 PrevClassTemplate != NULL);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001058
John McCall05b23ea2009-09-14 21:59:20 +00001059 // Friend templates are visible in fairly strange ways.
1060 if (!CurContext->isDependentContext()) {
Sebastian Redl7a126a42010-08-31 00:36:30 +00001061 DeclContext *DC = SemanticContext->getRedeclContext();
John McCall05b23ea2009-09-14 21:59:20 +00001062 DC->makeDeclVisibleInContext(NewTemplate, /* Recoverable = */ false);
1063 if (Scope *EnclosingScope = getScopeForDeclContext(S, DC))
1064 PushOnScopeChains(NewTemplate, EnclosingScope,
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001065 /* AddToContext = */ false);
John McCall05b23ea2009-09-14 21:59:20 +00001066 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001067
Douglas Gregord85bea22009-09-26 06:47:28 +00001068 FriendDecl *Friend = FriendDecl::Create(Context, CurContext,
1069 NewClass->getLocation(),
1070 NewTemplate,
1071 /*FIXME:*/NewClass->getLocation());
1072 Friend->setAccess(AS_public);
1073 CurContext->addDecl(Friend);
John McCall05b23ea2009-09-14 21:59:20 +00001074 }
Douglas Gregorddc29e12009-02-06 22:42:48 +00001075
Douglas Gregord684b002009-02-10 19:49:53 +00001076 if (Invalid) {
1077 NewTemplate->setInvalidDecl();
1078 NewClass->setInvalidDecl();
1079 }
John McCalld226f652010-08-21 09:40:31 +00001080 return NewTemplate;
Douglas Gregorddc29e12009-02-06 22:42:48 +00001081}
1082
Douglas Gregor5b6d70e2009-11-25 17:50:39 +00001083/// \brief Diagnose the presence of a default template argument on a
1084/// template parameter, which is ill-formed in certain contexts.
1085///
1086/// \returns true if the default template argument should be dropped.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001087static bool DiagnoseDefaultTemplateArgument(Sema &S,
Douglas Gregor5b6d70e2009-11-25 17:50:39 +00001088 Sema::TemplateParamListContext TPC,
1089 SourceLocation ParamLoc,
1090 SourceRange DefArgRange) {
1091 switch (TPC) {
1092 case Sema::TPC_ClassTemplate:
Richard Smith3e4c6c42011-05-05 21:57:07 +00001093 case Sema::TPC_TypeAliasTemplate:
Douglas Gregor5b6d70e2009-11-25 17:50:39 +00001094 return false;
1095
1096 case Sema::TPC_FunctionTemplate:
Douglas Gregord89d86f2011-02-04 04:20:44 +00001097 case Sema::TPC_FriendFunctionTemplateDefinition:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001098 // C++ [temp.param]p9:
Douglas Gregor5b6d70e2009-11-25 17:50:39 +00001099 // A default template-argument shall not be specified in a
1100 // function template declaration or a function template
1101 // definition [...]
Douglas Gregord89d86f2011-02-04 04:20:44 +00001102 // If a friend function template declaration specifies a default
1103 // template-argument, that declaration shall be a definition and shall be
1104 // the only declaration of the function template in the translation unit.
1105 // (C++98/03 doesn't have this wording; see DR226).
Douglas Gregor5b6d70e2009-11-25 17:50:39 +00001106 if (!S.getLangOptions().CPlusPlus0x)
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001107 S.Diag(ParamLoc,
Douglas Gregoree5d21f2011-02-04 03:57:22 +00001108 diag::ext_template_parameter_default_in_function_template)
Douglas Gregor5b6d70e2009-11-25 17:50:39 +00001109 << DefArgRange;
1110 return false;
1111
1112 case Sema::TPC_ClassTemplateMember:
1113 // C++0x [temp.param]p9:
1114 // A default template-argument shall not be specified in the
1115 // template-parameter-lists of the definition of a member of a
1116 // class template that appears outside of the member's class.
1117 S.Diag(ParamLoc, diag::err_template_parameter_default_template_member)
1118 << DefArgRange;
1119 return true;
1120
1121 case Sema::TPC_FriendFunctionTemplate:
1122 // C++ [temp.param]p9:
1123 // A default template-argument shall not be specified in a
1124 // friend template declaration.
1125 S.Diag(ParamLoc, diag::err_template_parameter_default_friend_template)
1126 << DefArgRange;
1127 return true;
1128
1129 // FIXME: C++0x [temp.param]p9 allows default template-arguments
1130 // for friend function templates if there is only a single
1131 // declaration (and it is a definition). Strange!
1132 }
1133
1134 return false;
1135}
1136
Douglas Gregor4d2abba2010-12-16 15:36:43 +00001137/// \brief Check for unexpanded parameter packs within the template parameters
1138/// of a template template parameter, recursively.
Benjamin Kramerda57f3e2011-03-26 12:38:21 +00001139static bool DiagnoseUnexpandedParameterPacks(Sema &S,
1140 TemplateTemplateParmDecl *TTP) {
Douglas Gregor4d2abba2010-12-16 15:36:43 +00001141 TemplateParameterList *Params = TTP->getTemplateParameters();
1142 for (unsigned I = 0, N = Params->size(); I != N; ++I) {
1143 NamedDecl *P = Params->getParam(I);
1144 if (NonTypeTemplateParmDecl *NTTP = dyn_cast<NonTypeTemplateParmDecl>(P)) {
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001145 if (S.DiagnoseUnexpandedParameterPack(NTTP->getLocation(),
Douglas Gregor4d2abba2010-12-16 15:36:43 +00001146 NTTP->getTypeSourceInfo(),
1147 Sema::UPPC_NonTypeTemplateParameterType))
1148 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001149
Douglas Gregor4d2abba2010-12-16 15:36:43 +00001150 continue;
1151 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001152
1153 if (TemplateTemplateParmDecl *InnerTTP
Douglas Gregor4d2abba2010-12-16 15:36:43 +00001154 = dyn_cast<TemplateTemplateParmDecl>(P))
1155 if (DiagnoseUnexpandedParameterPacks(S, InnerTTP))
1156 return true;
1157 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001158
Douglas Gregor4d2abba2010-12-16 15:36:43 +00001159 return false;
1160}
1161
Douglas Gregord684b002009-02-10 19:49:53 +00001162/// \brief Checks the validity of a template parameter list, possibly
1163/// considering the template parameter list from a previous
1164/// declaration.
1165///
1166/// If an "old" template parameter list is provided, it must be
1167/// equivalent (per TemplateParameterListsAreEqual) to the "new"
1168/// template parameter list.
1169///
1170/// \param NewParams Template parameter list for a new template
1171/// declaration. This template parameter list will be updated with any
1172/// default arguments that are carried through from the previous
1173/// template parameter list.
1174///
1175/// \param OldParams If provided, template parameter list from a
1176/// previous declaration of the same template. Default template
1177/// arguments will be merged from the old template parameter list to
1178/// the new template parameter list.
1179///
Douglas Gregor5b6d70e2009-11-25 17:50:39 +00001180/// \param TPC Describes the context in which we are checking the given
1181/// template parameter list.
1182///
Douglas Gregord684b002009-02-10 19:49:53 +00001183/// \returns true if an error occurred, false otherwise.
1184bool Sema::CheckTemplateParameterList(TemplateParameterList *NewParams,
Douglas Gregor5b6d70e2009-11-25 17:50:39 +00001185 TemplateParameterList *OldParams,
1186 TemplateParamListContext TPC) {
Douglas Gregord684b002009-02-10 19:49:53 +00001187 bool Invalid = false;
Mike Stump1eb44332009-09-09 15:08:12 +00001188
Douglas Gregord684b002009-02-10 19:49:53 +00001189 // C++ [temp.param]p10:
1190 // The set of default template-arguments available for use with a
1191 // template declaration or definition is obtained by merging the
1192 // default arguments from the definition (if in scope) and all
1193 // declarations in scope in the same way default function
1194 // arguments are (8.3.6).
1195 bool SawDefaultArgument = false;
1196 SourceLocation PreviousDefaultArgLoc;
Douglas Gregorc15cb382009-02-09 23:23:08 +00001197
Anders Carlsson49d25572009-06-12 23:20:15 +00001198 bool SawParameterPack = false;
1199 SourceLocation ParameterPackLoc;
1200
Mike Stump1a35fde2009-02-11 23:03:27 +00001201 // Dummy initialization to avoid warnings.
Douglas Gregor1bc69132009-02-11 20:46:19 +00001202 TemplateParameterList::iterator OldParam = NewParams->end();
Douglas Gregord684b002009-02-10 19:49:53 +00001203 if (OldParams)
1204 OldParam = OldParams->begin();
1205
Douglas Gregorfd1a8fd2011-01-27 01:40:17 +00001206 bool RemoveDefaultArguments = false;
Douglas Gregord684b002009-02-10 19:49:53 +00001207 for (TemplateParameterList::iterator NewParam = NewParams->begin(),
1208 NewParamEnd = NewParams->end();
1209 NewParam != NewParamEnd; ++NewParam) {
1210 // Variables used to diagnose redundant default arguments
1211 bool RedundantDefaultArg = false;
1212 SourceLocation OldDefaultLoc;
1213 SourceLocation NewDefaultLoc;
1214
1215 // Variables used to diagnose missing default arguments
1216 bool MissingDefaultArg = false;
1217
Anders Carlsson49d25572009-06-12 23:20:15 +00001218 // C++0x [temp.param]p11:
Richard Smith3e4c6c42011-05-05 21:57:07 +00001219 // If a template parameter of a primary class template or alias template
1220 // is a template parameter pack, it shall be the last template parameter.
1221 if (SawParameterPack &&
1222 (TPC == TPC_ClassTemplate || TPC == TPC_TypeAliasTemplate)) {
Mike Stump1eb44332009-09-09 15:08:12 +00001223 Diag(ParameterPackLoc,
Anders Carlsson49d25572009-06-12 23:20:15 +00001224 diag::err_template_param_pack_must_be_last_template_parameter);
1225 Invalid = true;
1226 }
1227
Douglas Gregord684b002009-02-10 19:49:53 +00001228 if (TemplateTypeParmDecl *NewTypeParm
1229 = dyn_cast<TemplateTypeParmDecl>(*NewParam)) {
Douglas Gregor5b6d70e2009-11-25 17:50:39 +00001230 // Check the presence of a default argument here.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001231 if (NewTypeParm->hasDefaultArgument() &&
1232 DiagnoseDefaultTemplateArgument(*this, TPC,
1233 NewTypeParm->getLocation(),
Douglas Gregor5b6d70e2009-11-25 17:50:39 +00001234 NewTypeParm->getDefaultArgumentInfo()->getTypeLoc()
Abramo Bagnarabd054db2010-05-20 10:00:11 +00001235 .getSourceRange()))
Douglas Gregor5b6d70e2009-11-25 17:50:39 +00001236 NewTypeParm->removeDefaultArgument();
1237
1238 // Merge default arguments for template type parameters.
Mike Stump1eb44332009-09-09 15:08:12 +00001239 TemplateTypeParmDecl *OldTypeParm
Douglas Gregord684b002009-02-10 19:49:53 +00001240 = OldParams? cast<TemplateTypeParmDecl>(*OldParam) : 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001241
Anders Carlsson49d25572009-06-12 23:20:15 +00001242 if (NewTypeParm->isParameterPack()) {
1243 assert(!NewTypeParm->hasDefaultArgument() &&
1244 "Parameter packs can't have a default argument!");
1245 SawParameterPack = true;
1246 ParameterPackLoc = NewTypeParm->getLocation();
Mike Stump1eb44332009-09-09 15:08:12 +00001247 } else if (OldTypeParm && OldTypeParm->hasDefaultArgument() &&
John McCall833ca992009-10-29 08:12:44 +00001248 NewTypeParm->hasDefaultArgument()) {
Douglas Gregord684b002009-02-10 19:49:53 +00001249 OldDefaultLoc = OldTypeParm->getDefaultArgumentLoc();
1250 NewDefaultLoc = NewTypeParm->getDefaultArgumentLoc();
1251 SawDefaultArgument = true;
1252 RedundantDefaultArg = true;
1253 PreviousDefaultArgLoc = NewDefaultLoc;
1254 } else if (OldTypeParm && OldTypeParm->hasDefaultArgument()) {
1255 // Merge the default argument from the old declaration to the
1256 // new declaration.
1257 SawDefaultArgument = true;
John McCall833ca992009-10-29 08:12:44 +00001258 NewTypeParm->setDefaultArgument(OldTypeParm->getDefaultArgumentInfo(),
Douglas Gregord684b002009-02-10 19:49:53 +00001259 true);
1260 PreviousDefaultArgLoc = OldTypeParm->getDefaultArgumentLoc();
1261 } else if (NewTypeParm->hasDefaultArgument()) {
1262 SawDefaultArgument = true;
1263 PreviousDefaultArgLoc = NewTypeParm->getDefaultArgumentLoc();
1264 } else if (SawDefaultArgument)
1265 MissingDefaultArg = true;
Mike Stumpac5fc7c2009-08-04 21:02:39 +00001266 } else if (NonTypeTemplateParmDecl *NewNonTypeParm
Douglas Gregord684b002009-02-10 19:49:53 +00001267 = dyn_cast<NonTypeTemplateParmDecl>(*NewParam)) {
Douglas Gregor4d2abba2010-12-16 15:36:43 +00001268 // Check for unexpanded parameter packs.
1269 if (DiagnoseUnexpandedParameterPack(NewNonTypeParm->getLocation(),
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001270 NewNonTypeParm->getTypeSourceInfo(),
Douglas Gregor4d2abba2010-12-16 15:36:43 +00001271 UPPC_NonTypeTemplateParameterType)) {
1272 Invalid = true;
1273 continue;
1274 }
1275
Douglas Gregor5b6d70e2009-11-25 17:50:39 +00001276 // Check the presence of a default argument here.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001277 if (NewNonTypeParm->hasDefaultArgument() &&
1278 DiagnoseDefaultTemplateArgument(*this, TPC,
1279 NewNonTypeParm->getLocation(),
Douglas Gregor5b6d70e2009-11-25 17:50:39 +00001280 NewNonTypeParm->getDefaultArgument()->getSourceRange())) {
Abramo Bagnarad92f7a22010-06-09 09:26:05 +00001281 NewNonTypeParm->removeDefaultArgument();
Douglas Gregor5b6d70e2009-11-25 17:50:39 +00001282 }
1283
Mike Stumpac5fc7c2009-08-04 21:02:39 +00001284 // Merge default arguments for non-type template parameters
Douglas Gregord684b002009-02-10 19:49:53 +00001285 NonTypeTemplateParmDecl *OldNonTypeParm
1286 = OldParams? cast<NonTypeTemplateParmDecl>(*OldParam) : 0;
Douglas Gregor1ed64762011-01-05 16:19:19 +00001287 if (NewNonTypeParm->isParameterPack()) {
1288 assert(!NewNonTypeParm->hasDefaultArgument() &&
1289 "Parameter packs can't have a default argument!");
1290 SawParameterPack = true;
1291 ParameterPackLoc = NewNonTypeParm->getLocation();
1292 } else if (OldNonTypeParm && OldNonTypeParm->hasDefaultArgument() &&
Douglas Gregord684b002009-02-10 19:49:53 +00001293 NewNonTypeParm->hasDefaultArgument()) {
1294 OldDefaultLoc = OldNonTypeParm->getDefaultArgumentLoc();
1295 NewDefaultLoc = NewNonTypeParm->getDefaultArgumentLoc();
1296 SawDefaultArgument = true;
1297 RedundantDefaultArg = true;
1298 PreviousDefaultArgLoc = NewDefaultLoc;
1299 } else if (OldNonTypeParm && OldNonTypeParm->hasDefaultArgument()) {
1300 // Merge the default argument from the old declaration to the
1301 // new declaration.
1302 SawDefaultArgument = true;
1303 // FIXME: We need to create a new kind of "default argument"
Douglas Gregor61c4d282011-01-05 15:48:55 +00001304 // expression that points to a previous non-type template
Douglas Gregord684b002009-02-10 19:49:53 +00001305 // parameter.
1306 NewNonTypeParm->setDefaultArgument(
Abramo Bagnarad92f7a22010-06-09 09:26:05 +00001307 OldNonTypeParm->getDefaultArgument(),
1308 /*Inherited=*/ true);
Douglas Gregord684b002009-02-10 19:49:53 +00001309 PreviousDefaultArgLoc = OldNonTypeParm->getDefaultArgumentLoc();
1310 } else if (NewNonTypeParm->hasDefaultArgument()) {
1311 SawDefaultArgument = true;
1312 PreviousDefaultArgLoc = NewNonTypeParm->getDefaultArgumentLoc();
1313 } else if (SawDefaultArgument)
Mike Stump1eb44332009-09-09 15:08:12 +00001314 MissingDefaultArg = true;
Mike Stumpac5fc7c2009-08-04 21:02:39 +00001315 } else {
Douglas Gregor5b6d70e2009-11-25 17:50:39 +00001316 // Check the presence of a default argument here.
Douglas Gregord684b002009-02-10 19:49:53 +00001317 TemplateTemplateParmDecl *NewTemplateParm
1318 = cast<TemplateTemplateParmDecl>(*NewParam);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001319
Douglas Gregor4d2abba2010-12-16 15:36:43 +00001320 // Check for unexpanded parameter packs, recursively.
1321 if (DiagnoseUnexpandedParameterPacks(*this, NewTemplateParm)) {
1322 Invalid = true;
1323 continue;
1324 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001325
1326 if (NewTemplateParm->hasDefaultArgument() &&
1327 DiagnoseDefaultTemplateArgument(*this, TPC,
1328 NewTemplateParm->getLocation(),
Douglas Gregor5b6d70e2009-11-25 17:50:39 +00001329 NewTemplateParm->getDefaultArgument().getSourceRange()))
Abramo Bagnarad92f7a22010-06-09 09:26:05 +00001330 NewTemplateParm->removeDefaultArgument();
Douglas Gregor5b6d70e2009-11-25 17:50:39 +00001331
1332 // Merge default arguments for template template parameters
Douglas Gregord684b002009-02-10 19:49:53 +00001333 TemplateTemplateParmDecl *OldTemplateParm
1334 = OldParams? cast<TemplateTemplateParmDecl>(*OldParam) : 0;
Douglas Gregor1ed64762011-01-05 16:19:19 +00001335 if (NewTemplateParm->isParameterPack()) {
1336 assert(!NewTemplateParm->hasDefaultArgument() &&
1337 "Parameter packs can't have a default argument!");
1338 SawParameterPack = true;
1339 ParameterPackLoc = NewTemplateParm->getLocation();
1340 } else if (OldTemplateParm && OldTemplateParm->hasDefaultArgument() &&
Douglas Gregord684b002009-02-10 19:49:53 +00001341 NewTemplateParm->hasDefaultArgument()) {
Douglas Gregor788cd062009-11-11 01:00:40 +00001342 OldDefaultLoc = OldTemplateParm->getDefaultArgument().getLocation();
1343 NewDefaultLoc = NewTemplateParm->getDefaultArgument().getLocation();
Douglas Gregord684b002009-02-10 19:49:53 +00001344 SawDefaultArgument = true;
1345 RedundantDefaultArg = true;
1346 PreviousDefaultArgLoc = NewDefaultLoc;
1347 } else if (OldTemplateParm && OldTemplateParm->hasDefaultArgument()) {
1348 // Merge the default argument from the old declaration to the
1349 // new declaration.
1350 SawDefaultArgument = true;
Mike Stump390b4cc2009-05-16 07:39:55 +00001351 // FIXME: We need to create a new kind of "default argument" expression
1352 // that points to a previous template template parameter.
Douglas Gregord684b002009-02-10 19:49:53 +00001353 NewTemplateParm->setDefaultArgument(
Abramo Bagnarad92f7a22010-06-09 09:26:05 +00001354 OldTemplateParm->getDefaultArgument(),
1355 /*Inherited=*/ true);
Douglas Gregor788cd062009-11-11 01:00:40 +00001356 PreviousDefaultArgLoc
1357 = OldTemplateParm->getDefaultArgument().getLocation();
Douglas Gregord684b002009-02-10 19:49:53 +00001358 } else if (NewTemplateParm->hasDefaultArgument()) {
1359 SawDefaultArgument = true;
Douglas Gregor788cd062009-11-11 01:00:40 +00001360 PreviousDefaultArgLoc
1361 = NewTemplateParm->getDefaultArgument().getLocation();
Douglas Gregord684b002009-02-10 19:49:53 +00001362 } else if (SawDefaultArgument)
Mike Stump1eb44332009-09-09 15:08:12 +00001363 MissingDefaultArg = true;
Douglas Gregord684b002009-02-10 19:49:53 +00001364 }
1365
1366 if (RedundantDefaultArg) {
1367 // C++ [temp.param]p12:
1368 // A template-parameter shall not be given default arguments
1369 // by two different declarations in the same scope.
1370 Diag(NewDefaultLoc, diag::err_template_param_default_arg_redefinition);
1371 Diag(OldDefaultLoc, diag::note_template_param_prev_default_arg);
1372 Invalid = true;
Douglas Gregoree5d21f2011-02-04 03:57:22 +00001373 } else if (MissingDefaultArg && TPC != TPC_FunctionTemplate) {
Douglas Gregord684b002009-02-10 19:49:53 +00001374 // C++ [temp.param]p11:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001375 // If a template-parameter of a class template has a default
1376 // template-argument, each subsequent template-parameter shall either
Douglas Gregorb49e4152011-01-05 16:21:17 +00001377 // have a default template-argument supplied or be a template parameter
1378 // pack.
Mike Stump1eb44332009-09-09 15:08:12 +00001379 Diag((*NewParam)->getLocation(),
Douglas Gregord684b002009-02-10 19:49:53 +00001380 diag::err_template_param_default_arg_missing);
1381 Diag(PreviousDefaultArgLoc, diag::note_template_param_prev_default_arg);
1382 Invalid = true;
Douglas Gregorfd1a8fd2011-01-27 01:40:17 +00001383 RemoveDefaultArguments = true;
Douglas Gregord684b002009-02-10 19:49:53 +00001384 }
1385
1386 // If we have an old template parameter list that we're merging
1387 // in, move on to the next parameter.
1388 if (OldParams)
1389 ++OldParam;
1390 }
1391
Douglas Gregorfd1a8fd2011-01-27 01:40:17 +00001392 // We were missing some default arguments at the end of the list, so remove
1393 // all of the default arguments.
1394 if (RemoveDefaultArguments) {
1395 for (TemplateParameterList::iterator NewParam = NewParams->begin(),
1396 NewParamEnd = NewParams->end();
1397 NewParam != NewParamEnd; ++NewParam) {
1398 if (TemplateTypeParmDecl *TTP = dyn_cast<TemplateTypeParmDecl>(*NewParam))
1399 TTP->removeDefaultArgument();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001400 else if (NonTypeTemplateParmDecl *NTTP
Douglas Gregorfd1a8fd2011-01-27 01:40:17 +00001401 = dyn_cast<NonTypeTemplateParmDecl>(*NewParam))
1402 NTTP->removeDefaultArgument();
1403 else
1404 cast<TemplateTemplateParmDecl>(*NewParam)->removeDefaultArgument();
1405 }
1406 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001407
Douglas Gregord684b002009-02-10 19:49:53 +00001408 return Invalid;
1409}
Douglas Gregorc15cb382009-02-09 23:23:08 +00001410
John McCall4e2cbb22010-10-20 05:44:58 +00001411namespace {
1412
1413/// A class which looks for a use of a certain level of template
1414/// parameter.
1415struct DependencyChecker : RecursiveASTVisitor<DependencyChecker> {
1416 typedef RecursiveASTVisitor<DependencyChecker> super;
1417
1418 unsigned Depth;
1419 bool Match;
1420
1421 DependencyChecker(TemplateParameterList *Params) : Match(false) {
1422 NamedDecl *ND = Params->getParam(0);
1423 if (TemplateTypeParmDecl *PD = dyn_cast<TemplateTypeParmDecl>(ND)) {
1424 Depth = PD->getDepth();
1425 } else if (NonTypeTemplateParmDecl *PD =
1426 dyn_cast<NonTypeTemplateParmDecl>(ND)) {
1427 Depth = PD->getDepth();
1428 } else {
1429 Depth = cast<TemplateTemplateParmDecl>(ND)->getDepth();
1430 }
1431 }
1432
1433 bool Matches(unsigned ParmDepth) {
1434 if (ParmDepth >= Depth) {
1435 Match = true;
1436 return true;
1437 }
1438 return false;
1439 }
1440
1441 bool VisitTemplateTypeParmType(const TemplateTypeParmType *T) {
1442 return !Matches(T->getDepth());
1443 }
1444
1445 bool TraverseTemplateName(TemplateName N) {
1446 if (TemplateTemplateParmDecl *PD =
1447 dyn_cast_or_null<TemplateTemplateParmDecl>(N.getAsTemplateDecl()))
1448 if (Matches(PD->getDepth())) return false;
1449 return super::TraverseTemplateName(N);
1450 }
1451
1452 bool VisitDeclRefExpr(DeclRefExpr *E) {
1453 if (NonTypeTemplateParmDecl *PD =
1454 dyn_cast<NonTypeTemplateParmDecl>(E->getDecl())) {
1455 if (PD->getDepth() == Depth) {
1456 Match = true;
1457 return false;
1458 }
1459 }
1460 return super::VisitDeclRefExpr(E);
1461 }
Douglas Gregor18c83392011-05-13 00:34:01 +00001462
1463 bool TraverseInjectedClassNameType(const InjectedClassNameType *T) {
1464 return TraverseType(T->getInjectedSpecializationType());
1465 }
John McCall4e2cbb22010-10-20 05:44:58 +00001466};
1467}
1468
Douglas Gregorc8406492011-05-10 18:27:06 +00001469/// Determines whether a given type depends on the given parameter
John McCall4e2cbb22010-10-20 05:44:58 +00001470/// list.
1471static bool
Douglas Gregorc8406492011-05-10 18:27:06 +00001472DependsOnTemplateParameters(QualType T, TemplateParameterList *Params) {
John McCall4e2cbb22010-10-20 05:44:58 +00001473 DependencyChecker Checker(Params);
Douglas Gregorc8406492011-05-10 18:27:06 +00001474 Checker.TraverseType(T);
John McCall4e2cbb22010-10-20 05:44:58 +00001475 return Checker.Match;
1476}
1477
Douglas Gregorc8406492011-05-10 18:27:06 +00001478// Find the source range corresponding to the named type in the given
1479// nested-name-specifier, if any.
1480static SourceRange getRangeOfTypeInNestedNameSpecifier(ASTContext &Context,
1481 QualType T,
1482 const CXXScopeSpec &SS) {
1483 NestedNameSpecifierLoc NNSLoc(SS.getScopeRep(), SS.location_data());
1484 while (NestedNameSpecifier *NNS = NNSLoc.getNestedNameSpecifier()) {
1485 if (const Type *CurType = NNS->getAsType()) {
1486 if (Context.hasSameUnqualifiedType(T, QualType(CurType, 0)))
1487 return NNSLoc.getTypeLoc().getSourceRange();
1488 } else
1489 break;
1490
1491 NNSLoc = NNSLoc.getPrefix();
1492 }
1493
1494 return SourceRange();
1495}
1496
Mike Stump1eb44332009-09-09 15:08:12 +00001497/// \brief Match the given template parameter lists to the given scope
Douglas Gregorf59a56e2009-07-21 23:53:31 +00001498/// specifier, returning the template parameter list that applies to the
1499/// name.
1500///
1501/// \param DeclStartLoc the start of the declaration that has a scope
1502/// specifier or a template parameter list.
Mike Stump1eb44332009-09-09 15:08:12 +00001503///
Douglas Gregorc8406492011-05-10 18:27:06 +00001504/// \param DeclLoc The location of the declaration itself.
1505///
Douglas Gregorf59a56e2009-07-21 23:53:31 +00001506/// \param SS the scope specifier that will be matched to the given template
1507/// parameter lists. This scope specifier precedes a qualified name that is
1508/// being declared.
1509///
1510/// \param ParamLists the template parameter lists, from the outermost to the
1511/// innermost template parameter lists.
1512///
1513/// \param NumParamLists the number of template parameter lists in ParamLists.
1514///
John McCall77e8b112010-04-13 20:37:33 +00001515/// \param IsFriend Whether to apply the slightly different rules for
1516/// matching template parameters to scope specifiers in friend
1517/// declarations.
1518///
Douglas Gregor1fef4e62009-10-07 22:35:40 +00001519/// \param IsExplicitSpecialization will be set true if the entity being
1520/// declared is an explicit specialization, false otherwise.
1521///
Mike Stump1eb44332009-09-09 15:08:12 +00001522/// \returns the template parameter list, if any, that corresponds to the
Douglas Gregorf59a56e2009-07-21 23:53:31 +00001523/// name that is preceded by the scope specifier @p SS. This template
Abramo Bagnara7f0a9152011-03-18 15:16:37 +00001524/// parameter list may have template parameters (if we're declaring a
Mike Stump1eb44332009-09-09 15:08:12 +00001525/// template) or may have no template parameters (if we're declaring a
Abramo Bagnara7f0a9152011-03-18 15:16:37 +00001526/// template specialization), or may be NULL (if what we're declaring isn't
Douglas Gregorf59a56e2009-07-21 23:53:31 +00001527/// itself a template).
1528TemplateParameterList *
1529Sema::MatchTemplateParametersToScopeSpecifier(SourceLocation DeclStartLoc,
Douglas Gregorc8406492011-05-10 18:27:06 +00001530 SourceLocation DeclLoc,
Douglas Gregorf59a56e2009-07-21 23:53:31 +00001531 const CXXScopeSpec &SS,
1532 TemplateParameterList **ParamLists,
Douglas Gregor1fef4e62009-10-07 22:35:40 +00001533 unsigned NumParamLists,
John McCall77e8b112010-04-13 20:37:33 +00001534 bool IsFriend,
Douglas Gregor0167f3c2010-07-14 23:14:12 +00001535 bool &IsExplicitSpecialization,
1536 bool &Invalid) {
Douglas Gregor1fef4e62009-10-07 22:35:40 +00001537 IsExplicitSpecialization = false;
Douglas Gregorc8406492011-05-10 18:27:06 +00001538 Invalid = false;
1539
1540 // The sequence of nested types to which we will match up the template
1541 // parameter lists. We first build this list by starting with the type named
1542 // by the nested-name-specifier and walking out until we run out of types.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001543 SmallVector<QualType, 4> NestedTypes;
Douglas Gregorc8406492011-05-10 18:27:06 +00001544 QualType T;
Douglas Gregor714c9922011-05-15 17:27:27 +00001545 if (SS.getScopeRep()) {
1546 if (CXXRecordDecl *Record
1547 = dyn_cast_or_null<CXXRecordDecl>(computeDeclContext(SS, true)))
1548 T = Context.getTypeDeclType(Record);
1549 else
1550 T = QualType(SS.getScopeRep()->getAsType(), 0);
1551 }
Douglas Gregorc8406492011-05-10 18:27:06 +00001552
1553 // If we found an explicit specialization that prevents us from needing
1554 // 'template<>' headers, this will be set to the location of that
1555 // explicit specialization.
1556 SourceLocation ExplicitSpecLoc;
1557
1558 while (!T.isNull()) {
1559 NestedTypes.push_back(T);
1560
1561 // Retrieve the parent of a record type.
1562 if (CXXRecordDecl *Record = T->getAsCXXRecordDecl()) {
1563 // If this type is an explicit specialization, we're done.
1564 if (ClassTemplateSpecializationDecl *Spec
1565 = dyn_cast<ClassTemplateSpecializationDecl>(Record)) {
1566 if (!isa<ClassTemplatePartialSpecializationDecl>(Spec) &&
1567 Spec->getSpecializationKind() == TSK_ExplicitSpecialization) {
1568 ExplicitSpecLoc = Spec->getLocation();
1569 break;
Douglas Gregor3ebd7532009-11-23 12:11:45 +00001570 }
Douglas Gregorc8406492011-05-10 18:27:06 +00001571 } else if (Record->getTemplateSpecializationKind()
1572 == TSK_ExplicitSpecialization) {
1573 ExplicitSpecLoc = Record->getLocation();
John McCall77e8b112010-04-13 20:37:33 +00001574 break;
1575 }
Douglas Gregorc8406492011-05-10 18:27:06 +00001576
1577 if (TypeDecl *Parent = dyn_cast<TypeDecl>(Record->getParent()))
1578 T = Context.getTypeDeclType(Parent);
1579 else
1580 T = QualType();
1581 continue;
1582 }
1583
1584 if (const TemplateSpecializationType *TST
1585 = T->getAs<TemplateSpecializationType>()) {
1586 if (TemplateDecl *Template = TST->getTemplateName().getAsTemplateDecl()) {
1587 if (TypeDecl *Parent = dyn_cast<TypeDecl>(Template->getDeclContext()))
1588 T = Context.getTypeDeclType(Parent);
1589 else
1590 T = QualType();
1591 continue;
Douglas Gregorf59a56e2009-07-21 23:53:31 +00001592 }
Douglas Gregorc8406492011-05-10 18:27:06 +00001593 }
1594
1595 // Look one step prior in a dependent template specialization type.
1596 if (const DependentTemplateSpecializationType *DependentTST
1597 = T->getAs<DependentTemplateSpecializationType>()) {
1598 if (NestedNameSpecifier *NNS = DependentTST->getQualifier())
1599 T = QualType(NNS->getAsType(), 0);
1600 else
1601 T = QualType();
1602 continue;
1603 }
1604
1605 // Look one step prior in a dependent name type.
1606 if (const DependentNameType *DependentName = T->getAs<DependentNameType>()){
1607 if (NestedNameSpecifier *NNS = DependentName->getQualifier())
1608 T = QualType(NNS->getAsType(), 0);
1609 else
1610 T = QualType();
1611 continue;
1612 }
1613
1614 // Retrieve the parent of an enumeration type.
1615 if (const EnumType *EnumT = T->getAs<EnumType>()) {
1616 // FIXME: Forward-declared enums require a TSK_ExplicitSpecialization
1617 // check here.
1618 EnumDecl *Enum = EnumT->getDecl();
1619
1620 // Get to the parent type.
1621 if (TypeDecl *Parent = dyn_cast<TypeDecl>(Enum->getParent()))
1622 T = Context.getTypeDeclType(Parent);
1623 else
1624 T = QualType();
1625 continue;
Douglas Gregorf59a56e2009-07-21 23:53:31 +00001626 }
Mike Stump1eb44332009-09-09 15:08:12 +00001627
Douglas Gregorc8406492011-05-10 18:27:06 +00001628 T = QualType();
1629 }
1630 // Reverse the nested types list, since we want to traverse from the outermost
1631 // to the innermost while checking template-parameter-lists.
1632 std::reverse(NestedTypes.begin(), NestedTypes.end());
Douglas Gregorb88e8882009-07-30 17:40:51 +00001633
Douglas Gregorc8406492011-05-10 18:27:06 +00001634 // C++0x [temp.expl.spec]p17:
1635 // A member or a member template may be nested within many
1636 // enclosing class templates. In an explicit specialization for
1637 // such a member, the member declaration shall be preceded by a
1638 // template<> for each enclosing class template that is
1639 // explicitly specialized.
Douglas Gregor89b9f102011-06-06 15:22:55 +00001640 bool SawNonEmptyTemplateParameterList = false;
Douglas Gregorc8406492011-05-10 18:27:06 +00001641 unsigned ParamIdx = 0;
1642 for (unsigned TypeIdx = 0, NumTypes = NestedTypes.size(); TypeIdx != NumTypes;
1643 ++TypeIdx) {
1644 T = NestedTypes[TypeIdx];
1645
1646 // Whether we expect a 'template<>' header.
1647 bool NeedEmptyTemplateHeader = false;
1648
1649 // Whether we expect a template header with parameters.
1650 bool NeedNonemptyTemplateHeader = false;
1651
1652 // For a dependent type, the set of template parameters that we
1653 // expect to see.
1654 TemplateParameterList *ExpectedTemplateParams = 0;
1655
Douglas Gregor175c5bb2011-05-11 23:26:17 +00001656 // C++0x [temp.expl.spec]p15:
1657 // A member or a member template may be nested within many enclosing
1658 // class templates. In an explicit specialization for such a member, the
1659 // member declaration shall be preceded by a template<> for each
1660 // enclosing class template that is explicitly specialized.
Douglas Gregorc8406492011-05-10 18:27:06 +00001661 if (CXXRecordDecl *Record = T->getAsCXXRecordDecl()) {
1662 if (ClassTemplatePartialSpecializationDecl *Partial
1663 = dyn_cast<ClassTemplatePartialSpecializationDecl>(Record)) {
1664 ExpectedTemplateParams = Partial->getTemplateParameters();
1665 NeedNonemptyTemplateHeader = true;
1666 } else if (Record->isDependentType()) {
1667 if (Record->getDescribedClassTemplate()) {
John McCall31f17ec2010-04-27 00:57:59 +00001668 ExpectedTemplateParams = Record->getDescribedClassTemplate()
Douglas Gregorc8406492011-05-10 18:27:06 +00001669 ->getTemplateParameters();
1670 NeedNonemptyTemplateHeader = true;
1671 }
1672 } else if (ClassTemplateSpecializationDecl *Spec
1673 = dyn_cast<ClassTemplateSpecializationDecl>(Record)) {
1674 // C++0x [temp.expl.spec]p4:
1675 // Members of an explicitly specialized class template are defined
1676 // in the same manner as members of normal classes, and not using
1677 // the template<> syntax.
1678 if (Spec->getSpecializationKind() != TSK_ExplicitSpecialization)
1679 NeedEmptyTemplateHeader = true;
1680 else
Douglas Gregor95ea4502011-06-01 22:37:07 +00001681 continue;
Douglas Gregorc8406492011-05-10 18:27:06 +00001682 } else if (Record->getTemplateSpecializationKind()) {
1683 if (Record->getTemplateSpecializationKind()
Douglas Gregor175c5bb2011-05-11 23:26:17 +00001684 != TSK_ExplicitSpecialization &&
1685 TypeIdx == NumTypes - 1)
1686 IsExplicitSpecialization = true;
1687
1688 continue;
Douglas Gregorc8406492011-05-10 18:27:06 +00001689 }
1690 } else if (const TemplateSpecializationType *TST
1691 = T->getAs<TemplateSpecializationType>()) {
1692 if (TemplateDecl *Template = TST->getTemplateName().getAsTemplateDecl()) {
1693 ExpectedTemplateParams = Template->getTemplateParameters();
1694 NeedNonemptyTemplateHeader = true;
1695 }
1696 } else if (T->getAs<DependentTemplateSpecializationType>()) {
1697 // FIXME: We actually could/should check the template arguments here
1698 // against the corresponding template parameter list.
1699 NeedNonemptyTemplateHeader = false;
1700 }
1701
Douglas Gregor89b9f102011-06-06 15:22:55 +00001702 // C++ [temp.expl.spec]p16:
1703 // In an explicit specialization declaration for a member of a class
1704 // template or a member template that ap- pears in namespace scope, the
1705 // member template and some of its enclosing class templates may remain
1706 // unspecialized, except that the declaration shall not explicitly
1707 // specialize a class member template if its en- closing class templates
1708 // are not explicitly specialized as well.
1709 if (ParamIdx < NumParamLists) {
1710 if (ParamLists[ParamIdx]->size() == 0) {
1711 if (SawNonEmptyTemplateParameterList) {
1712 Diag(DeclLoc, diag::err_specialize_member_of_template)
1713 << ParamLists[ParamIdx]->getSourceRange();
1714 Invalid = true;
1715 IsExplicitSpecialization = false;
1716 return 0;
1717 }
1718 } else
1719 SawNonEmptyTemplateParameterList = true;
1720 }
1721
Douglas Gregorc8406492011-05-10 18:27:06 +00001722 if (NeedEmptyTemplateHeader) {
1723 // If we're on the last of the types, and we need a 'template<>' header
1724 // here, then it's an explicit specialization.
1725 if (TypeIdx == NumTypes - 1)
1726 IsExplicitSpecialization = true;
1727
1728 if (ParamIdx < NumParamLists) {
1729 if (ParamLists[ParamIdx]->size() > 0) {
1730 // The header has template parameters when it shouldn't. Complain.
1731 Diag(ParamLists[ParamIdx]->getTemplateLoc(),
1732 diag::err_template_param_list_matches_nontemplate)
1733 << T
1734 << SourceRange(ParamLists[ParamIdx]->getLAngleLoc(),
1735 ParamLists[ParamIdx]->getRAngleLoc())
1736 << getRangeOfTypeInNestedNameSpecifier(Context, T, SS);
1737 Invalid = true;
1738 return 0;
1739 }
1740
1741 // Consume this template header.
1742 ++ParamIdx;
1743 continue;
1744 }
1745
1746 if (!IsFriend) {
1747 // We don't have a template header, but we should.
1748 SourceLocation ExpectedTemplateLoc;
1749 if (NumParamLists > 0)
1750 ExpectedTemplateLoc = ParamLists[0]->getTemplateLoc();
1751 else
1752 ExpectedTemplateLoc = DeclStartLoc;
1753
1754 Diag(DeclLoc, diag::err_template_spec_needs_header)
1755 << getRangeOfTypeInNestedNameSpecifier(Context, T, SS)
1756 << FixItHint::CreateInsertion(ExpectedTemplateLoc, "template<> ");
1757 }
1758
1759 continue;
1760 }
1761
1762 if (NeedNonemptyTemplateHeader) {
1763 // In friend declarations we can have template-ids which don't
1764 // depend on the corresponding template parameter lists. But
1765 // assume that empty parameter lists are supposed to match this
1766 // template-id.
1767 if (IsFriend && T->isDependentType()) {
1768 if (ParamIdx < NumParamLists &&
1769 DependsOnTemplateParameters(T, ParamLists[ParamIdx]))
1770 ExpectedTemplateParams = 0;
1771 else
1772 continue;
Mike Stump1eb44332009-09-09 15:08:12 +00001773 }
Douglas Gregor5b6d70e2009-11-25 17:50:39 +00001774
Douglas Gregorc8406492011-05-10 18:27:06 +00001775 if (ParamIdx < NumParamLists) {
1776 // Check the template parameter list, if we can.
1777 if (ExpectedTemplateParams &&
1778 !TemplateParameterListsAreEqual(ParamLists[ParamIdx],
1779 ExpectedTemplateParams,
1780 true, TPL_TemplateMatch))
1781 Invalid = true;
1782
1783 if (!Invalid &&
1784 CheckTemplateParameterList(ParamLists[ParamIdx], 0,
1785 TPC_ClassTemplateMember))
1786 Invalid = true;
1787
1788 ++ParamIdx;
1789 continue;
1790 }
1791
1792 Diag(DeclLoc, diag::err_template_spec_needs_template_parameters)
1793 << T
1794 << getRangeOfTypeInNestedNameSpecifier(Context, T, SS);
1795 Invalid = true;
1796 continue;
1797 }
Douglas Gregorf59a56e2009-07-21 23:53:31 +00001798 }
Douglas Gregorc8406492011-05-10 18:27:06 +00001799
Douglas Gregorf59a56e2009-07-21 23:53:31 +00001800 // If there were at least as many template-ids as there were template
1801 // parameter lists, then there are no template parameter lists remaining for
1802 // the declaration itself.
John McCall4e2cbb22010-10-20 05:44:58 +00001803 if (ParamIdx >= NumParamLists)
Douglas Gregorf59a56e2009-07-21 23:53:31 +00001804 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001805
Douglas Gregorf59a56e2009-07-21 23:53:31 +00001806 // If there were too many template parameter lists, complain about that now.
Douglas Gregorc8406492011-05-10 18:27:06 +00001807 if (ParamIdx < NumParamLists - 1) {
1808 bool HasAnyExplicitSpecHeader = false;
1809 bool AllExplicitSpecHeaders = true;
1810 for (unsigned I = ParamIdx; I != NumParamLists - 1; ++I) {
1811 if (ParamLists[I]->size() == 0)
1812 HasAnyExplicitSpecHeader = true;
1813 else
1814 AllExplicitSpecHeaders = false;
Douglas Gregorf59a56e2009-07-21 23:53:31 +00001815 }
Douglas Gregorc8406492011-05-10 18:27:06 +00001816
1817 Diag(ParamLists[ParamIdx]->getTemplateLoc(),
1818 AllExplicitSpecHeaders? diag::warn_template_spec_extra_headers
1819 : diag::err_template_spec_extra_headers)
1820 << SourceRange(ParamLists[ParamIdx]->getTemplateLoc(),
1821 ParamLists[NumParamLists - 2]->getRAngleLoc());
1822
1823 // If there was a specialization somewhere, such that 'template<>' is
1824 // not required, and there were any 'template<>' headers, note where the
1825 // specialization occurred.
1826 if (ExplicitSpecLoc.isValid() && HasAnyExplicitSpecHeader)
1827 Diag(ExplicitSpecLoc,
1828 diag::note_explicit_template_spec_does_not_need_header)
1829 << NestedTypes.back();
1830
1831 // We have a template parameter list with no corresponding scope, which
1832 // means that the resulting template declaration can't be instantiated
1833 // properly (we'll end up with dependent nodes when we shouldn't).
1834 if (!AllExplicitSpecHeaders)
1835 Invalid = true;
Douglas Gregorf59a56e2009-07-21 23:53:31 +00001836 }
Mike Stump1eb44332009-09-09 15:08:12 +00001837
Douglas Gregor89b9f102011-06-06 15:22:55 +00001838 // C++ [temp.expl.spec]p16:
1839 // In an explicit specialization declaration for a member of a class
1840 // template or a member template that ap- pears in namespace scope, the
1841 // member template and some of its enclosing class templates may remain
1842 // unspecialized, except that the declaration shall not explicitly
1843 // specialize a class member template if its en- closing class templates
1844 // are not explicitly specialized as well.
1845 if (ParamLists[NumParamLists - 1]->size() == 0 &&
1846 SawNonEmptyTemplateParameterList) {
1847 Diag(DeclLoc, diag::err_specialize_member_of_template)
1848 << ParamLists[ParamIdx]->getSourceRange();
1849 Invalid = true;
1850 IsExplicitSpecialization = false;
1851 return 0;
1852 }
1853
Douglas Gregorf59a56e2009-07-21 23:53:31 +00001854 // Return the last template parameter list, which corresponds to the
1855 // entity being declared.
1856 return ParamLists[NumParamLists - 1];
1857}
1858
Douglas Gregor6cd9d4a2011-03-04 21:37:14 +00001859void Sema::NoteAllFoundTemplates(TemplateName Name) {
1860 if (TemplateDecl *Template = Name.getAsTemplateDecl()) {
1861 Diag(Template->getLocation(), diag::note_template_declared_here)
1862 << (isa<FunctionTemplateDecl>(Template)? 0
1863 : isa<ClassTemplateDecl>(Template)? 1
Richard Smith3e4c6c42011-05-05 21:57:07 +00001864 : isa<TypeAliasTemplateDecl>(Template)? 2
1865 : 3)
Douglas Gregor6cd9d4a2011-03-04 21:37:14 +00001866 << Template->getDeclName();
1867 return;
1868 }
1869
1870 if (OverloadedTemplateStorage *OST = Name.getAsOverloadedTemplate()) {
1871 for (OverloadedTemplateStorage::iterator I = OST->begin(),
1872 IEnd = OST->end();
1873 I != IEnd; ++I)
1874 Diag((*I)->getLocation(), diag::note_template_declared_here)
1875 << 0 << (*I)->getDeclName();
1876
1877 return;
1878 }
1879}
1880
1881
Douglas Gregor7532dc62009-03-30 22:58:21 +00001882QualType Sema::CheckTemplateIdType(TemplateName Name,
1883 SourceLocation TemplateLoc,
Douglas Gregor67714232011-03-03 02:41:12 +00001884 TemplateArgumentListInfo &TemplateArgs) {
John McCall14606042011-06-30 08:33:18 +00001885 DependentTemplateName *DTN
1886 = Name.getUnderlying().getAsDependentTemplateName();
Richard Smith3e4c6c42011-05-05 21:57:07 +00001887 if (DTN && DTN->isIdentifier())
1888 // When building a template-id where the template-name is dependent,
1889 // assume the template is a type template. Either our assumption is
1890 // correct, or the code is ill-formed and will be diagnosed when the
1891 // dependent name is substituted.
1892 return Context.getDependentTemplateSpecializationType(ETK_None,
1893 DTN->getQualifier(),
1894 DTN->getIdentifier(),
1895 TemplateArgs);
1896
Douglas Gregor7532dc62009-03-30 22:58:21 +00001897 TemplateDecl *Template = Name.getAsTemplateDecl();
Douglas Gregor6cd9d4a2011-03-04 21:37:14 +00001898 if (!Template || isa<FunctionTemplateDecl>(Template)) {
1899 // We might have a substituted template template parameter pack. If so,
1900 // build a template specialization type for it.
1901 if (Name.getAsSubstTemplateTemplateParmPack())
1902 return Context.getTemplateSpecializationType(Name, TemplateArgs);
Richard Smith3e4c6c42011-05-05 21:57:07 +00001903
Douglas Gregor6cd9d4a2011-03-04 21:37:14 +00001904 Diag(TemplateLoc, diag::err_template_id_not_a_type)
1905 << Name;
1906 NoteAllFoundTemplates(Name);
1907 return QualType();
Douglas Gregorc45c2322009-03-31 00:43:58 +00001908 }
Douglas Gregor7532dc62009-03-30 22:58:21 +00001909
Douglas Gregor40808ce2009-03-09 23:48:35 +00001910 // Check that the template argument list is well-formed for this
1911 // template.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001912 SmallVector<TemplateArgument, 4> Converted;
John McCalld5532b62009-11-23 01:53:49 +00001913 if (CheckTemplateArgumentList(Template, TemplateLoc, TemplateArgs,
Douglas Gregor16134c62009-07-01 00:28:38 +00001914 false, Converted))
Douglas Gregor40808ce2009-03-09 23:48:35 +00001915 return QualType();
1916
Douglas Gregor910f8002010-11-07 23:05:16 +00001917 assert((Converted.size() == Template->getTemplateParameters()->size()) &&
Douglas Gregor40808ce2009-03-09 23:48:35 +00001918 "Converted template argument list is too short!");
1919
1920 QualType CanonType;
1921
Douglas Gregor561f8122011-07-01 01:22:09 +00001922 bool InstantiationDependent = false;
Richard Smith3e4c6c42011-05-05 21:57:07 +00001923 if (TypeAliasTemplateDecl *AliasTemplate
1924 = dyn_cast<TypeAliasTemplateDecl>(Template)) {
1925 // Find the canonical type for this type alias template specialization.
1926 TypeAliasDecl *Pattern = AliasTemplate->getTemplatedDecl();
1927 if (Pattern->isInvalidDecl())
1928 return QualType();
1929
1930 TemplateArgumentList TemplateArgs(TemplateArgumentList::OnStack,
1931 Converted.data(), Converted.size());
1932
1933 // Only substitute for the innermost template argument list.
1934 MultiLevelTemplateArgumentList TemplateArgLists;
Richard Smith18041742011-05-14 15:04:18 +00001935 TemplateArgLists.addOuterTemplateArguments(&TemplateArgs);
Richard Smithaff37b42011-05-12 00:06:17 +00001936 unsigned Depth = AliasTemplate->getTemplateParameters()->getDepth();
1937 for (unsigned I = 0; I < Depth; ++I)
1938 TemplateArgLists.addOuterTemplateArguments(0, 0);
Richard Smith3e4c6c42011-05-05 21:57:07 +00001939
1940 InstantiatingTemplate Inst(*this, TemplateLoc, Template);
1941 CanonType = SubstType(Pattern->getUnderlyingType(),
1942 TemplateArgLists, AliasTemplate->getLocation(),
1943 AliasTemplate->getDeclName());
1944 if (CanonType.isNull())
1945 return QualType();
1946 } else if (Name.isDependent() ||
1947 TemplateSpecializationType::anyDependentTemplateArguments(
Douglas Gregor561f8122011-07-01 01:22:09 +00001948 TemplateArgs, InstantiationDependent)) {
Douglas Gregor40808ce2009-03-09 23:48:35 +00001949 // This class template specialization is a dependent
1950 // type. Therefore, its canonical type is another class template
1951 // specialization type that contains all of the converted
1952 // arguments in canonical form. This ensures that, e.g., A<T> and
1953 // A<T, T> have identical types when A is declared as:
1954 //
1955 // template<typename T, typename U = T> struct A;
Douglas Gregor25a3ef72009-05-07 06:41:52 +00001956 TemplateName CanonName = Context.getCanonicalTemplateName(Name);
Mike Stump1eb44332009-09-09 15:08:12 +00001957 CanonType = Context.getTemplateSpecializationType(CanonName,
Douglas Gregor910f8002010-11-07 23:05:16 +00001958 Converted.data(),
1959 Converted.size());
Mike Stump1eb44332009-09-09 15:08:12 +00001960
Douglas Gregor1275ae02009-07-28 23:00:59 +00001961 // FIXME: CanonType is not actually the canonical type, and unfortunately
John McCall833ca992009-10-29 08:12:44 +00001962 // it is a TemplateSpecializationType that we will never use again.
Douglas Gregor1275ae02009-07-28 23:00:59 +00001963 // In the future, we need to teach getTemplateSpecializationType to only
1964 // build the canonical type and return that to us.
1965 CanonType = Context.getCanonicalType(CanonType);
John McCall31f17ec2010-04-27 00:57:59 +00001966
1967 // This might work out to be a current instantiation, in which
1968 // case the canonical type needs to be the InjectedClassNameType.
1969 //
1970 // TODO: in theory this could be a simple hashtable lookup; most
1971 // changes to CurContext don't change the set of current
1972 // instantiations.
1973 if (isa<ClassTemplateDecl>(Template)) {
1974 for (DeclContext *Ctx = CurContext; Ctx; Ctx = Ctx->getLookupParent()) {
1975 // If we get out to a namespace, we're done.
1976 if (Ctx->isFileContext()) break;
1977
1978 // If this isn't a record, keep looking.
1979 CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(Ctx);
1980 if (!Record) continue;
1981
1982 // Look for one of the two cases with InjectedClassNameTypes
1983 // and check whether it's the same template.
1984 if (!isa<ClassTemplatePartialSpecializationDecl>(Record) &&
1985 !Record->getDescribedClassTemplate())
1986 continue;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001987
John McCall31f17ec2010-04-27 00:57:59 +00001988 // Fetch the injected class name type and check whether its
1989 // injected type is equal to the type we just built.
1990 QualType ICNT = Context.getTypeDeclType(Record);
1991 QualType Injected = cast<InjectedClassNameType>(ICNT)
1992 ->getInjectedSpecializationType();
1993
1994 if (CanonType != Injected->getCanonicalTypeInternal())
1995 continue;
1996
1997 // If so, the canonical type of this TST is the injected
1998 // class name type of the record we just found.
1999 assert(ICNT.isCanonical());
2000 CanonType = ICNT;
John McCall31f17ec2010-04-27 00:57:59 +00002001 break;
2002 }
2003 }
Mike Stump1eb44332009-09-09 15:08:12 +00002004 } else if (ClassTemplateDecl *ClassTemplate
Douglas Gregor7532dc62009-03-30 22:58:21 +00002005 = dyn_cast<ClassTemplateDecl>(Template)) {
Douglas Gregor40808ce2009-03-09 23:48:35 +00002006 // Find the class template specialization declaration that
2007 // corresponds to these arguments.
Douglas Gregor40808ce2009-03-09 23:48:35 +00002008 void *InsertPos = 0;
2009 ClassTemplateSpecializationDecl *Decl
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002010 = ClassTemplate->findSpecialization(Converted.data(), Converted.size(),
Douglas Gregor910f8002010-11-07 23:05:16 +00002011 InsertPos);
Douglas Gregor40808ce2009-03-09 23:48:35 +00002012 if (!Decl) {
2013 // This is the first time we have referenced this class template
2014 // specialization. Create the canonical declaration and add it to
2015 // the set of specializations.
Mike Stump1eb44332009-09-09 15:08:12 +00002016 Decl = ClassTemplateSpecializationDecl::Create(Context,
Douglas Gregor13c85772010-05-06 00:28:52 +00002017 ClassTemplate->getTemplatedDecl()->getTagKind(),
2018 ClassTemplate->getDeclContext(),
Abramo Bagnara09d82122011-10-03 20:34:03 +00002019 ClassTemplate->getTemplatedDecl()->getLocStart(),
Abramo Bagnaraba877ad2011-03-09 14:09:51 +00002020 ClassTemplate->getLocation(),
Douglas Gregor910f8002010-11-07 23:05:16 +00002021 ClassTemplate,
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002022 Converted.data(),
Douglas Gregor910f8002010-11-07 23:05:16 +00002023 Converted.size(), 0);
Argyrios Kyrtzidiscc0b1bc2010-07-20 13:59:28 +00002024 ClassTemplate->AddSpecialization(Decl, InsertPos);
Douglas Gregor40808ce2009-03-09 23:48:35 +00002025 Decl->setLexicalDeclContext(CurContext);
2026 }
2027
2028 CanonType = Context.getTypeDeclType(Decl);
John McCall3cb0ebd2010-03-10 03:28:59 +00002029 assert(isa<RecordType>(CanonType) &&
2030 "type of non-dependent specialization is not a RecordType");
Douglas Gregor40808ce2009-03-09 23:48:35 +00002031 }
Mike Stump1eb44332009-09-09 15:08:12 +00002032
Douglas Gregor40808ce2009-03-09 23:48:35 +00002033 // Build the fully-sugared type for this class template
2034 // specialization, which refers back to the class template
2035 // specialization we created or found.
John McCall71d74bc2010-06-13 09:25:03 +00002036 return Context.getTemplateSpecializationType(Name, TemplateArgs, CanonType);
Douglas Gregor40808ce2009-03-09 23:48:35 +00002037}
2038
John McCallf312b1e2010-08-26 23:41:50 +00002039TypeResult
Douglas Gregor059101f2011-03-02 00:47:37 +00002040Sema::ActOnTemplateIdType(CXXScopeSpec &SS,
2041 TemplateTy TemplateD, SourceLocation TemplateLoc,
Mike Stump1eb44332009-09-09 15:08:12 +00002042 SourceLocation LAngleLoc,
Douglas Gregor7532dc62009-03-30 22:58:21 +00002043 ASTTemplateArgsPtr TemplateArgsIn,
John McCall6b2becf2009-09-08 17:47:29 +00002044 SourceLocation RAngleLoc) {
Douglas Gregor059101f2011-03-02 00:47:37 +00002045 if (SS.isInvalid())
2046 return true;
2047
Douglas Gregor7532dc62009-03-30 22:58:21 +00002048 TemplateName Template = TemplateD.getAsVal<TemplateName>();
Douglas Gregor55f6b142009-02-09 18:46:07 +00002049
Douglas Gregor40808ce2009-03-09 23:48:35 +00002050 // Translate the parser's template argument list in our AST format.
John McCalld5532b62009-11-23 01:53:49 +00002051 TemplateArgumentListInfo TemplateArgs(LAngleLoc, RAngleLoc);
Douglas Gregor314b97f2009-11-10 19:49:08 +00002052 translateTemplateArguments(TemplateArgsIn, TemplateArgs);
Douglas Gregorc15cb382009-02-09 23:23:08 +00002053
Douglas Gregora88f09f2011-02-28 17:23:35 +00002054 if (DependentTemplateName *DTN = Template.getAsDependentTemplateName()) {
2055 QualType T = Context.getDependentTemplateSpecializationType(ETK_None,
2056 DTN->getQualifier(),
2057 DTN->getIdentifier(),
2058 TemplateArgs);
2059
2060 // Build type-source information.
2061 TypeLocBuilder TLB;
2062 DependentTemplateSpecializationTypeLoc SpecTL
2063 = TLB.push<DependentTemplateSpecializationTypeLoc>(T);
Douglas Gregor059101f2011-03-02 00:47:37 +00002064 SpecTL.setKeywordLoc(SourceLocation());
Douglas Gregora88f09f2011-02-28 17:23:35 +00002065 SpecTL.setNameLoc(TemplateLoc);
2066 SpecTL.setLAngleLoc(LAngleLoc);
2067 SpecTL.setRAngleLoc(RAngleLoc);
Douglas Gregor94fdffa2011-03-01 20:11:18 +00002068 SpecTL.setQualifierLoc(SS.getWithLocInContext(Context));
Douglas Gregora88f09f2011-02-28 17:23:35 +00002069 for (unsigned I = 0, N = SpecTL.getNumArgs(); I != N; ++I)
2070 SpecTL.setArgLocInfo(I, TemplateArgs[I].getLocInfo());
2071 return CreateParsedType(T, TLB.getTypeSourceInfo(Context, T));
2072 }
2073
John McCalld5532b62009-11-23 01:53:49 +00002074 QualType Result = CheckTemplateIdType(Template, TemplateLoc, TemplateArgs);
Douglas Gregor40808ce2009-03-09 23:48:35 +00002075 TemplateArgsIn.release();
Douglas Gregor31a19b62009-04-01 21:51:26 +00002076
2077 if (Result.isNull())
2078 return true;
2079
Douglas Gregor059101f2011-03-02 00:47:37 +00002080 // Build type-source information.
2081 TypeLocBuilder TLB;
2082 TemplateSpecializationTypeLoc SpecTL
2083 = TLB.push<TemplateSpecializationTypeLoc>(Result);
2084 SpecTL.setTemplateNameLoc(TemplateLoc);
2085 SpecTL.setLAngleLoc(LAngleLoc);
2086 SpecTL.setRAngleLoc(RAngleLoc);
2087 for (unsigned i = 0, e = SpecTL.getNumArgs(); i != e; ++i)
2088 SpecTL.setArgLocInfo(i, TemplateArgs[i].getLocInfo());
John McCall833ca992009-10-29 08:12:44 +00002089
Douglas Gregor059101f2011-03-02 00:47:37 +00002090 if (SS.isNotEmpty()) {
2091 // Create an elaborated-type-specifier containing the nested-name-specifier.
2092 Result = Context.getElaboratedType(ETK_None, SS.getScopeRep(), Result);
2093 ElaboratedTypeLoc ElabTL = TLB.push<ElaboratedTypeLoc>(Result);
2094 ElabTL.setKeywordLoc(SourceLocation());
2095 ElabTL.setQualifierLoc(SS.getWithLocInContext(Context));
2096 }
2097
2098 return CreateParsedType(Result, TLB.getTypeSourceInfo(Context, Result));
John McCall6b2becf2009-09-08 17:47:29 +00002099}
John McCallf1bbbb42009-09-04 01:14:41 +00002100
Douglas Gregor059101f2011-03-02 00:47:37 +00002101TypeResult Sema::ActOnTagTemplateIdType(TagUseKind TUK,
John McCallf312b1e2010-08-26 23:41:50 +00002102 TypeSpecifierType TagSpec,
Douglas Gregor059101f2011-03-02 00:47:37 +00002103 SourceLocation TagLoc,
2104 CXXScopeSpec &SS,
2105 TemplateTy TemplateD,
2106 SourceLocation TemplateLoc,
2107 SourceLocation LAngleLoc,
2108 ASTTemplateArgsPtr TemplateArgsIn,
2109 SourceLocation RAngleLoc) {
2110 TemplateName Template = TemplateD.getAsVal<TemplateName>();
2111
2112 // Translate the parser's template argument list in our AST format.
2113 TemplateArgumentListInfo TemplateArgs(LAngleLoc, RAngleLoc);
2114 translateTemplateArguments(TemplateArgsIn, TemplateArgs);
2115
2116 // Determine the tag kind
Abramo Bagnara465d41b2010-05-11 21:36:43 +00002117 TagTypeKind TagKind = TypeWithKeyword::getTagTypeKindForTypeSpec(TagSpec);
Douglas Gregor059101f2011-03-02 00:47:37 +00002118 ElaboratedTypeKeyword Keyword
2119 = TypeWithKeyword::getKeywordForTagTypeKind(TagKind);
Mike Stump1eb44332009-09-09 15:08:12 +00002120
Douglas Gregor059101f2011-03-02 00:47:37 +00002121 if (DependentTemplateName *DTN = Template.getAsDependentTemplateName()) {
2122 QualType T = Context.getDependentTemplateSpecializationType(Keyword,
2123 DTN->getQualifier(),
2124 DTN->getIdentifier(),
2125 TemplateArgs);
2126
2127 // Build type-source information.
2128 TypeLocBuilder TLB;
2129 DependentTemplateSpecializationTypeLoc SpecTL
2130 = TLB.push<DependentTemplateSpecializationTypeLoc>(T);
2131 SpecTL.setKeywordLoc(TagLoc);
2132 SpecTL.setNameLoc(TemplateLoc);
2133 SpecTL.setLAngleLoc(LAngleLoc);
2134 SpecTL.setRAngleLoc(RAngleLoc);
2135 SpecTL.setQualifierLoc(SS.getWithLocInContext(Context));
2136 for (unsigned I = 0, N = SpecTL.getNumArgs(); I != N; ++I)
2137 SpecTL.setArgLocInfo(I, TemplateArgs[I].getLocInfo());
2138 return CreateParsedType(T, TLB.getTypeSourceInfo(Context, T));
2139 }
Richard Smith3e4c6c42011-05-05 21:57:07 +00002140
2141 if (TypeAliasTemplateDecl *TAT =
2142 dyn_cast_or_null<TypeAliasTemplateDecl>(Template.getAsTemplateDecl())) {
2143 // C++0x [dcl.type.elab]p2:
2144 // If the identifier resolves to a typedef-name or the simple-template-id
2145 // resolves to an alias template specialization, the
2146 // elaborated-type-specifier is ill-formed.
2147 Diag(TemplateLoc, diag::err_tag_reference_non_tag) << 4;
2148 Diag(TAT->getLocation(), diag::note_declared_at);
2149 }
Douglas Gregor059101f2011-03-02 00:47:37 +00002150
2151 QualType Result = CheckTemplateIdType(Template, TemplateLoc, TemplateArgs);
2152 if (Result.isNull())
Matt Beaumont-Gay3a51d412011-08-25 23:22:24 +00002153 return TypeResult(true);
Douglas Gregor059101f2011-03-02 00:47:37 +00002154
2155 // Check the tag kind
2156 if (const RecordType *RT = Result->getAs<RecordType>()) {
John McCall6b2becf2009-09-08 17:47:29 +00002157 RecordDecl *D = RT->getDecl();
Douglas Gregor059101f2011-03-02 00:47:37 +00002158
John McCall6b2becf2009-09-08 17:47:29 +00002159 IdentifierInfo *Id = D->getIdentifier();
2160 assert(Id && "templated class must have an identifier");
Douglas Gregor059101f2011-03-02 00:47:37 +00002161
Richard Trieubbf34c02011-06-10 03:11:26 +00002162 if (!isAcceptableTagRedeclaration(D, TagKind, TUK == TUK_Definition,
2163 TagLoc, *Id)) {
John McCall6b2becf2009-09-08 17:47:29 +00002164 Diag(TagLoc, diag::err_use_with_wrong_tag)
Douglas Gregor059101f2011-03-02 00:47:37 +00002165 << Result
Douglas Gregor849b2432010-03-31 17:46:05 +00002166 << FixItHint::CreateReplacement(SourceRange(TagLoc), D->getKindName());
John McCallc4e70192009-09-11 04:59:25 +00002167 Diag(D->getLocation(), diag::note_previous_use);
John McCallf1bbbb42009-09-04 01:14:41 +00002168 }
2169 }
Douglas Gregor059101f2011-03-02 00:47:37 +00002170
2171 // Provide source-location information for the template specialization.
2172 TypeLocBuilder TLB;
2173 TemplateSpecializationTypeLoc SpecTL
2174 = TLB.push<TemplateSpecializationTypeLoc>(Result);
2175 SpecTL.setTemplateNameLoc(TemplateLoc);
2176 SpecTL.setLAngleLoc(LAngleLoc);
2177 SpecTL.setRAngleLoc(RAngleLoc);
2178 for (unsigned i = 0, e = SpecTL.getNumArgs(); i != e; ++i)
2179 SpecTL.setArgLocInfo(i, TemplateArgs[i].getLocInfo());
John McCallf1bbbb42009-09-04 01:14:41 +00002180
Douglas Gregor059101f2011-03-02 00:47:37 +00002181 // Construct an elaborated type containing the nested-name-specifier (if any)
2182 // and keyword.
2183 Result = Context.getElaboratedType(Keyword, SS.getScopeRep(), Result);
2184 ElaboratedTypeLoc ElabTL = TLB.push<ElaboratedTypeLoc>(Result);
2185 ElabTL.setKeywordLoc(TagLoc);
2186 ElabTL.setQualifierLoc(SS.getWithLocInContext(Context));
2187 return CreateParsedType(Result, TLB.getTypeSourceInfo(Context, Result));
Douglas Gregor55f6b142009-02-09 18:46:07 +00002188}
2189
John McCall60d7b3a2010-08-24 06:29:42 +00002190ExprResult Sema::BuildTemplateIdExpr(const CXXScopeSpec &SS,
Douglas Gregor4c9be892011-02-28 20:01:57 +00002191 LookupResult &R,
2192 bool RequiresADL,
John McCalld5532b62009-11-23 01:53:49 +00002193 const TemplateArgumentListInfo &TemplateArgs) {
Douglas Gregoredce4dd2009-06-30 22:34:41 +00002194 // FIXME: Can we do any checking at this point? I guess we could check the
2195 // template arguments that we have against the template name, if the template
Mike Stump1eb44332009-09-09 15:08:12 +00002196 // name refers to a single template. That's not a terribly common case,
Douglas Gregoredce4dd2009-06-30 22:34:41 +00002197 // though.
Douglas Gregor1be8eec2011-02-19 21:32:49 +00002198 // foo<int> could identify a single function unambiguously
2199 // This approach does NOT work, since f<int>(1);
2200 // gets resolved prior to resorting to overload resolution
2201 // i.e., template<class T> void f(double);
2202 // vs template<class T, class U> void f(U);
John McCallf7a1a742009-11-24 19:00:30 +00002203
2204 // These should be filtered out by our callers.
2205 assert(!R.empty() && "empty lookup results when building templateid");
2206 assert(!R.isAmbiguous() && "ambiguous lookup when building templateid");
2207
John McCallc373d482010-01-27 01:50:18 +00002208 // We don't want lookup warnings at this point.
2209 R.suppressDiagnostics();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002210
John McCallf7a1a742009-11-24 19:00:30 +00002211 UnresolvedLookupExpr *ULE
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00002212 = UnresolvedLookupExpr::Create(Context, R.getNamingClass(),
Douglas Gregor4c9be892011-02-28 20:01:57 +00002213 SS.getWithLocInContext(Context),
Abramo Bagnara25777432010-08-11 22:01:17 +00002214 R.getLookupNameInfo(),
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002215 RequiresADL, TemplateArgs,
Douglas Gregor5a84dec2010-05-23 18:57:34 +00002216 R.begin(), R.end());
John McCallf7a1a742009-11-24 19:00:30 +00002217
2218 return Owned(ULE);
Douglas Gregoredce4dd2009-06-30 22:34:41 +00002219}
2220
John McCallf7a1a742009-11-24 19:00:30 +00002221// We actually only call this from template instantiation.
John McCall60d7b3a2010-08-24 06:29:42 +00002222ExprResult
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00002223Sema::BuildQualifiedTemplateIdExpr(CXXScopeSpec &SS,
Abramo Bagnara25777432010-08-11 22:01:17 +00002224 const DeclarationNameInfo &NameInfo,
John McCallf7a1a742009-11-24 19:00:30 +00002225 const TemplateArgumentListInfo &TemplateArgs) {
2226 DeclContext *DC;
2227 if (!(DC = computeDeclContext(SS, false)) ||
2228 DC->isDependentContext() ||
John McCall77bb1aa2010-05-01 00:40:08 +00002229 RequireCompleteDeclContext(SS, DC))
Abramo Bagnara25777432010-08-11 22:01:17 +00002230 return BuildDependentDeclRefExpr(SS, NameInfo, &TemplateArgs);
Mike Stump1eb44332009-09-09 15:08:12 +00002231
Douglas Gregor1fd6d442010-05-21 23:18:07 +00002232 bool MemberOfUnknownSpecialization;
Abramo Bagnara25777432010-08-11 22:01:17 +00002233 LookupResult R(*this, NameInfo, LookupOrdinaryName);
Douglas Gregor1fd6d442010-05-21 23:18:07 +00002234 LookupTemplateName(R, (Scope*) 0, SS, QualType(), /*Entering*/ false,
2235 MemberOfUnknownSpecialization);
Mike Stump1eb44332009-09-09 15:08:12 +00002236
John McCallf7a1a742009-11-24 19:00:30 +00002237 if (R.isAmbiguous())
2238 return ExprError();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002239
John McCallf7a1a742009-11-24 19:00:30 +00002240 if (R.empty()) {
Abramo Bagnara25777432010-08-11 22:01:17 +00002241 Diag(NameInfo.getLoc(), diag::err_template_kw_refers_to_non_template)
2242 << NameInfo.getName() << SS.getRange();
John McCallf7a1a742009-11-24 19:00:30 +00002243 return ExprError();
2244 }
2245
2246 if (ClassTemplateDecl *Temp = R.getAsSingle<ClassTemplateDecl>()) {
Abramo Bagnara25777432010-08-11 22:01:17 +00002247 Diag(NameInfo.getLoc(), diag::err_template_kw_refers_to_class_template)
2248 << (NestedNameSpecifier*) SS.getScopeRep()
2249 << NameInfo.getName() << SS.getRange();
John McCallf7a1a742009-11-24 19:00:30 +00002250 Diag(Temp->getLocation(), diag::note_referenced_class_template);
2251 return ExprError();
2252 }
2253
2254 return BuildTemplateIdExpr(SS, R, /* ADL */ false, TemplateArgs);
Douglas Gregoredce4dd2009-06-30 22:34:41 +00002255}
2256
Douglas Gregorc45c2322009-03-31 00:43:58 +00002257/// \brief Form a dependent template name.
2258///
2259/// This action forms a dependent template name given the template
2260/// name and its (presumably dependent) scope specifier. For
2261/// example, given "MetaFun::template apply", the scope specifier \p
2262/// SS will be "MetaFun::", \p TemplateKWLoc contains the location
2263/// of the "template" keyword, and "apply" is the \p Name.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002264TemplateNameKind Sema::ActOnDependentTemplateName(Scope *S,
Douglas Gregord6ab2322010-06-16 23:00:59 +00002265 SourceLocation TemplateKWLoc,
2266 CXXScopeSpec &SS,
2267 UnqualifiedId &Name,
John McCallb3d87482010-08-24 05:47:05 +00002268 ParsedType ObjectType,
Douglas Gregord6ab2322010-06-16 23:00:59 +00002269 bool EnteringContext,
2270 TemplateTy &Result) {
Douglas Gregor1a15dae2010-06-16 22:31:08 +00002271 if (TemplateKWLoc.isValid() && S && !S->getTemplateParamParent() &&
2272 !getLangOptions().CPlusPlus0x)
2273 Diag(TemplateKWLoc, diag::ext_template_outside_of_template)
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002274 << FixItHint::CreateRemoval(TemplateKWLoc);
2275
Douglas Gregor0707bc52010-01-19 16:01:07 +00002276 DeclContext *LookupCtx = 0;
2277 if (SS.isSet())
2278 LookupCtx = computeDeclContext(SS, EnteringContext);
2279 if (!LookupCtx && ObjectType)
John McCallb3d87482010-08-24 05:47:05 +00002280 LookupCtx = computeDeclContext(ObjectType.get());
Douglas Gregor0707bc52010-01-19 16:01:07 +00002281 if (LookupCtx) {
Douglas Gregorc45c2322009-03-31 00:43:58 +00002282 // C++0x [temp.names]p5:
2283 // If a name prefixed by the keyword template is not the name of
2284 // a template, the program is ill-formed. [Note: the keyword
2285 // template may not be applied to non-template members of class
2286 // templates. -end note ] [ Note: as is the case with the
2287 // typename prefix, the template prefix is allowed in cases
2288 // where it is not strictly necessary; i.e., when the
2289 // nested-name-specifier or the expression on the left of the ->
2290 // or . is not dependent on a template-parameter, or the use
2291 // does not appear in the scope of a template. -end note]
2292 //
2293 // Note: C++03 was more strict here, because it banned the use of
2294 // the "template" keyword prior to a template-name that was not a
2295 // dependent name. C++ DR468 relaxed this requirement (the
2296 // "template" keyword is now permitted). We follow the C++0x
Douglas Gregor732281d2010-06-14 22:07:54 +00002297 // rules, even in C++03 mode with a warning, retroactively applying the DR.
Douglas Gregor1fd6d442010-05-21 23:18:07 +00002298 bool MemberOfUnknownSpecialization;
Abramo Bagnara7c153532010-08-06 12:11:11 +00002299 TemplateNameKind TNK = isTemplateName(0, SS, TemplateKWLoc.isValid(), Name,
2300 ObjectType, EnteringContext, Result,
Douglas Gregor1fd6d442010-05-21 23:18:07 +00002301 MemberOfUnknownSpecialization);
Douglas Gregor0707bc52010-01-19 16:01:07 +00002302 if (TNK == TNK_Non_template && LookupCtx->isDependentContext() &&
2303 isa<CXXRecordDecl>(LookupCtx) &&
Douglas Gregord078bd22011-03-11 23:27:41 +00002304 (!cast<CXXRecordDecl>(LookupCtx)->hasDefinition() ||
2305 cast<CXXRecordDecl>(LookupCtx)->hasAnyDependentBases())) {
Douglas Gregord6ab2322010-06-16 23:00:59 +00002306 // This is a dependent template. Handle it below.
Douglas Gregor9edad9b2010-01-14 17:47:39 +00002307 } else if (TNK == TNK_Non_template) {
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002308 Diag(Name.getSourceRange().getBegin(),
Douglas Gregor014e88d2009-11-03 23:16:33 +00002309 diag::err_template_kw_refers_to_non_template)
Abramo Bagnara25777432010-08-11 22:01:17 +00002310 << GetNameFromUnqualifiedId(Name).getName()
Douglas Gregor0278e122010-05-05 05:58:24 +00002311 << Name.getSourceRange()
2312 << TemplateKWLoc;
Douglas Gregord6ab2322010-06-16 23:00:59 +00002313 return TNK_Non_template;
Douglas Gregor9edad9b2010-01-14 17:47:39 +00002314 } else {
2315 // We found something; return it.
Douglas Gregord6ab2322010-06-16 23:00:59 +00002316 return TNK;
Douglas Gregorc45c2322009-03-31 00:43:58 +00002317 }
Douglas Gregorc45c2322009-03-31 00:43:58 +00002318 }
2319
Mike Stump1eb44332009-09-09 15:08:12 +00002320 NestedNameSpecifier *Qualifier
Douglas Gregor2dd078a2009-09-02 22:59:36 +00002321 = static_cast<NestedNameSpecifier *>(SS.getScopeRep());
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002322
Douglas Gregor014e88d2009-11-03 23:16:33 +00002323 switch (Name.getKind()) {
2324 case UnqualifiedId::IK_Identifier:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002325 Result = TemplateTy::make(Context.getDependentTemplateName(Qualifier,
Douglas Gregord6ab2322010-06-16 23:00:59 +00002326 Name.Identifier));
2327 return TNK_Dependent_template_name;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002328
Douglas Gregorca1bdd72009-11-04 00:56:37 +00002329 case UnqualifiedId::IK_OperatorFunctionId:
Douglas Gregord6ab2322010-06-16 23:00:59 +00002330 Result = TemplateTy::make(Context.getDependentTemplateName(Qualifier,
Douglas Gregorca1bdd72009-11-04 00:56:37 +00002331 Name.OperatorFunctionId.Operator));
Douglas Gregord6ab2322010-06-16 23:00:59 +00002332 return TNK_Dependent_template_name;
Sean Hunte6252d12009-11-28 08:58:14 +00002333
2334 case UnqualifiedId::IK_LiteralOperatorId:
David Blaikieb219cfc2011-09-23 05:06:16 +00002335 llvm_unreachable(
2336 "We don't support these; Parse shouldn't have allowed propagation");
Sean Hunte6252d12009-11-28 08:58:14 +00002337
Douglas Gregor014e88d2009-11-03 23:16:33 +00002338 default:
2339 break;
2340 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002341
2342 Diag(Name.getSourceRange().getBegin(),
Douglas Gregor014e88d2009-11-03 23:16:33 +00002343 diag::err_template_kw_refers_to_non_template)
Abramo Bagnara25777432010-08-11 22:01:17 +00002344 << GetNameFromUnqualifiedId(Name).getName()
Douglas Gregor0278e122010-05-05 05:58:24 +00002345 << Name.getSourceRange()
2346 << TemplateKWLoc;
Douglas Gregord6ab2322010-06-16 23:00:59 +00002347 return TNK_Non_template;
Douglas Gregorc45c2322009-03-31 00:43:58 +00002348}
2349
Mike Stump1eb44332009-09-09 15:08:12 +00002350bool Sema::CheckTemplateTypeArgument(TemplateTypeParmDecl *Param,
John McCall833ca992009-10-29 08:12:44 +00002351 const TemplateArgumentLoc &AL,
Chris Lattner5f9e2722011-07-23 10:55:15 +00002352 SmallVectorImpl<TemplateArgument> &Converted) {
John McCall833ca992009-10-29 08:12:44 +00002353 const TemplateArgument &Arg = AL.getArgument();
2354
Anders Carlsson436b1562009-06-13 00:33:33 +00002355 // Check template type parameter.
Jeffrey Yasskindb88d8a2010-04-08 00:03:06 +00002356 switch(Arg.getKind()) {
2357 case TemplateArgument::Type:
Anders Carlsson436b1562009-06-13 00:33:33 +00002358 // C++ [temp.arg.type]p1:
2359 // A template-argument for a template-parameter which is a
2360 // type shall be a type-id.
Jeffrey Yasskindb88d8a2010-04-08 00:03:06 +00002361 break;
2362 case TemplateArgument::Template: {
2363 // We have a template type parameter but the template argument
2364 // is a template without any arguments.
2365 SourceRange SR = AL.getSourceRange();
2366 TemplateName Name = Arg.getAsTemplate();
2367 Diag(SR.getBegin(), diag::err_template_missing_args)
2368 << Name << SR;
2369 if (TemplateDecl *Decl = Name.getAsTemplateDecl())
2370 Diag(Decl->getLocation(), diag::note_template_decl_here);
Anders Carlsson436b1562009-06-13 00:33:33 +00002371
Jeffrey Yasskindb88d8a2010-04-08 00:03:06 +00002372 return true;
2373 }
2374 default: {
Anders Carlsson436b1562009-06-13 00:33:33 +00002375 // We have a template type parameter but the template argument
2376 // is not a type.
John McCall828bff22009-10-29 18:45:58 +00002377 SourceRange SR = AL.getSourceRange();
2378 Diag(SR.getBegin(), diag::err_template_arg_must_be_type) << SR;
Anders Carlsson436b1562009-06-13 00:33:33 +00002379 Diag(Param->getLocation(), diag::note_template_param_here);
Mike Stump1eb44332009-09-09 15:08:12 +00002380
Anders Carlsson436b1562009-06-13 00:33:33 +00002381 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00002382 }
Jeffrey Yasskindb88d8a2010-04-08 00:03:06 +00002383 }
Anders Carlsson436b1562009-06-13 00:33:33 +00002384
John McCalla93c9342009-12-07 02:54:59 +00002385 if (CheckTemplateArgument(Param, AL.getTypeSourceInfo()))
Anders Carlsson436b1562009-06-13 00:33:33 +00002386 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00002387
Anders Carlsson436b1562009-06-13 00:33:33 +00002388 // Add the converted template type argument.
Douglas Gregore559ca12011-06-17 22:11:49 +00002389 QualType ArgType = Context.getCanonicalType(Arg.getAsType());
2390
2391 // Objective-C ARC:
2392 // If an explicitly-specified template argument type is a lifetime type
2393 // with no lifetime qualifier, the __strong lifetime qualifier is inferred.
2394 if (getLangOptions().ObjCAutoRefCount &&
2395 ArgType->isObjCLifetimeType() &&
2396 !ArgType.getObjCLifetime()) {
2397 Qualifiers Qs;
2398 Qs.setObjCLifetime(Qualifiers::OCL_Strong);
2399 ArgType = Context.getQualifiedType(ArgType, Qs);
2400 }
2401
2402 Converted.push_back(TemplateArgument(ArgType));
Anders Carlsson436b1562009-06-13 00:33:33 +00002403 return false;
2404}
2405
Douglas Gregor0f8716b2009-11-09 19:17:50 +00002406/// \brief Substitute template arguments into the default template argument for
2407/// the given template type parameter.
2408///
2409/// \param SemaRef the semantic analysis object for which we are performing
2410/// the substitution.
2411///
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002412/// \param Template the template that we are synthesizing template arguments
Douglas Gregor0f8716b2009-11-09 19:17:50 +00002413/// for.
2414///
2415/// \param TemplateLoc the location of the template name that started the
2416/// template-id we are checking.
2417///
2418/// \param RAngleLoc the location of the right angle bracket ('>') that
2419/// terminates the template-id.
2420///
2421/// \param Param the template template parameter whose default we are
2422/// substituting into.
2423///
2424/// \param Converted the list of template arguments provided for template
2425/// parameters that precede \p Param in the template parameter list.
Douglas Gregor0f8716b2009-11-09 19:17:50 +00002426/// \returns the substituted template argument, or NULL if an error occurred.
John McCalla93c9342009-12-07 02:54:59 +00002427static TypeSourceInfo *
Douglas Gregor0f8716b2009-11-09 19:17:50 +00002428SubstDefaultTemplateArgument(Sema &SemaRef,
2429 TemplateDecl *Template,
2430 SourceLocation TemplateLoc,
2431 SourceLocation RAngleLoc,
2432 TemplateTypeParmDecl *Param,
Chris Lattner5f9e2722011-07-23 10:55:15 +00002433 SmallVectorImpl<TemplateArgument> &Converted) {
John McCalla93c9342009-12-07 02:54:59 +00002434 TypeSourceInfo *ArgType = Param->getDefaultArgumentInfo();
Douglas Gregor0f8716b2009-11-09 19:17:50 +00002435
2436 // If the argument type is dependent, instantiate it now based
2437 // on the previously-computed template arguments.
2438 if (ArgType->getType()->isDependentType()) {
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002439 TemplateArgumentList TemplateArgs(TemplateArgumentList::OnStack,
Douglas Gregor910f8002010-11-07 23:05:16 +00002440 Converted.data(), Converted.size());
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002441
Douglas Gregor0f8716b2009-11-09 19:17:50 +00002442 MultiLevelTemplateArgumentList AllTemplateArgs
2443 = SemaRef.getTemplateInstantiationArgs(Template, &TemplateArgs);
2444
2445 Sema::InstantiatingTemplate Inst(SemaRef, TemplateLoc,
Douglas Gregor910f8002010-11-07 23:05:16 +00002446 Template, Converted.data(),
2447 Converted.size(),
Douglas Gregor0f8716b2009-11-09 19:17:50 +00002448 SourceRange(TemplateLoc, RAngleLoc));
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002449
Douglas Gregor0f8716b2009-11-09 19:17:50 +00002450 ArgType = SemaRef.SubstType(ArgType, AllTemplateArgs,
2451 Param->getDefaultArgumentLoc(),
2452 Param->getDeclName());
2453 }
2454
2455 return ArgType;
2456}
2457
2458/// \brief Substitute template arguments into the default template argument for
2459/// the given non-type template parameter.
2460///
2461/// \param SemaRef the semantic analysis object for which we are performing
2462/// the substitution.
2463///
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002464/// \param Template the template that we are synthesizing template arguments
Douglas Gregor0f8716b2009-11-09 19:17:50 +00002465/// for.
2466///
2467/// \param TemplateLoc the location of the template name that started the
2468/// template-id we are checking.
2469///
2470/// \param RAngleLoc the location of the right angle bracket ('>') that
2471/// terminates the template-id.
2472///
Douglas Gregor788cd062009-11-11 01:00:40 +00002473/// \param Param the non-type template parameter whose default we are
Douglas Gregor0f8716b2009-11-09 19:17:50 +00002474/// substituting into.
2475///
2476/// \param Converted the list of template arguments provided for template
2477/// parameters that precede \p Param in the template parameter list.
2478///
2479/// \returns the substituted template argument, or NULL if an error occurred.
John McCall60d7b3a2010-08-24 06:29:42 +00002480static ExprResult
Douglas Gregor0f8716b2009-11-09 19:17:50 +00002481SubstDefaultTemplateArgument(Sema &SemaRef,
2482 TemplateDecl *Template,
2483 SourceLocation TemplateLoc,
2484 SourceLocation RAngleLoc,
2485 NonTypeTemplateParmDecl *Param,
Chris Lattner5f9e2722011-07-23 10:55:15 +00002486 SmallVectorImpl<TemplateArgument> &Converted) {
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002487 TemplateArgumentList TemplateArgs(TemplateArgumentList::OnStack,
Douglas Gregor910f8002010-11-07 23:05:16 +00002488 Converted.data(), Converted.size());
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002489
Douglas Gregor0f8716b2009-11-09 19:17:50 +00002490 MultiLevelTemplateArgumentList AllTemplateArgs
2491 = SemaRef.getTemplateInstantiationArgs(Template, &TemplateArgs);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002492
Douglas Gregor0f8716b2009-11-09 19:17:50 +00002493 Sema::InstantiatingTemplate Inst(SemaRef, TemplateLoc,
Douglas Gregor910f8002010-11-07 23:05:16 +00002494 Template, Converted.data(),
2495 Converted.size(),
Douglas Gregor0f8716b2009-11-09 19:17:50 +00002496 SourceRange(TemplateLoc, RAngleLoc));
2497
2498 return SemaRef.SubstExpr(Param->getDefaultArgument(), AllTemplateArgs);
2499}
2500
Douglas Gregor788cd062009-11-11 01:00:40 +00002501/// \brief Substitute template arguments into the default template argument for
2502/// the given template template parameter.
2503///
2504/// \param SemaRef the semantic analysis object for which we are performing
2505/// the substitution.
2506///
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002507/// \param Template the template that we are synthesizing template arguments
Douglas Gregor788cd062009-11-11 01:00:40 +00002508/// for.
2509///
2510/// \param TemplateLoc the location of the template name that started the
2511/// template-id we are checking.
2512///
2513/// \param RAngleLoc the location of the right angle bracket ('>') that
2514/// terminates the template-id.
2515///
2516/// \param Param the template template parameter whose default we are
2517/// substituting into.
2518///
2519/// \param Converted the list of template arguments provided for template
2520/// parameters that precede \p Param in the template parameter list.
2521///
Douglas Gregor1d752d72011-03-02 18:46:51 +00002522/// \param QualifierLoc Will be set to the nested-name-specifier (with
2523/// source-location information) that precedes the template name.
Douglas Gregorb6744ef2011-03-02 17:09:35 +00002524///
Douglas Gregor788cd062009-11-11 01:00:40 +00002525/// \returns the substituted template argument, or NULL if an error occurred.
2526static TemplateName
2527SubstDefaultTemplateArgument(Sema &SemaRef,
2528 TemplateDecl *Template,
2529 SourceLocation TemplateLoc,
2530 SourceLocation RAngleLoc,
2531 TemplateTemplateParmDecl *Param,
Chris Lattner5f9e2722011-07-23 10:55:15 +00002532 SmallVectorImpl<TemplateArgument> &Converted,
Douglas Gregorb6744ef2011-03-02 17:09:35 +00002533 NestedNameSpecifierLoc &QualifierLoc) {
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002534 TemplateArgumentList TemplateArgs(TemplateArgumentList::OnStack,
Douglas Gregor910f8002010-11-07 23:05:16 +00002535 Converted.data(), Converted.size());
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002536
Douglas Gregor788cd062009-11-11 01:00:40 +00002537 MultiLevelTemplateArgumentList AllTemplateArgs
2538 = SemaRef.getTemplateInstantiationArgs(Template, &TemplateArgs);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002539
Douglas Gregor788cd062009-11-11 01:00:40 +00002540 Sema::InstantiatingTemplate Inst(SemaRef, TemplateLoc,
Douglas Gregor910f8002010-11-07 23:05:16 +00002541 Template, Converted.data(),
2542 Converted.size(),
Douglas Gregor788cd062009-11-11 01:00:40 +00002543 SourceRange(TemplateLoc, RAngleLoc));
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002544
Douglas Gregorb6744ef2011-03-02 17:09:35 +00002545 // Substitute into the nested-name-specifier first,
Douglas Gregor1d752d72011-03-02 18:46:51 +00002546 QualifierLoc = Param->getDefaultArgument().getTemplateQualifierLoc();
Douglas Gregorb6744ef2011-03-02 17:09:35 +00002547 if (QualifierLoc) {
2548 QualifierLoc = SemaRef.SubstNestedNameSpecifierLoc(QualifierLoc,
2549 AllTemplateArgs);
2550 if (!QualifierLoc)
2551 return TemplateName();
2552 }
2553
Douglas Gregor1d752d72011-03-02 18:46:51 +00002554 return SemaRef.SubstTemplateName(QualifierLoc,
Douglas Gregor788cd062009-11-11 01:00:40 +00002555 Param->getDefaultArgument().getArgument().getAsTemplate(),
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002556 Param->getDefaultArgument().getTemplateNameLoc(),
Douglas Gregor788cd062009-11-11 01:00:40 +00002557 AllTemplateArgs);
2558}
2559
Douglas Gregor51ffb0c2009-11-25 18:55:14 +00002560/// \brief If the given template parameter has a default template
2561/// argument, substitute into that default template argument and
2562/// return the corresponding template argument.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002563TemplateArgumentLoc
Douglas Gregor51ffb0c2009-11-25 18:55:14 +00002564Sema::SubstDefaultTemplateArgumentIfAvailable(TemplateDecl *Template,
2565 SourceLocation TemplateLoc,
2566 SourceLocation RAngleLoc,
2567 Decl *Param,
Chris Lattner5f9e2722011-07-23 10:55:15 +00002568 SmallVectorImpl<TemplateArgument> &Converted) {
Douglas Gregor910f8002010-11-07 23:05:16 +00002569 if (TemplateTypeParmDecl *TypeParm = dyn_cast<TemplateTypeParmDecl>(Param)) {
Douglas Gregor51ffb0c2009-11-25 18:55:14 +00002570 if (!TypeParm->hasDefaultArgument())
2571 return TemplateArgumentLoc();
2572
John McCalla93c9342009-12-07 02:54:59 +00002573 TypeSourceInfo *DI = SubstDefaultTemplateArgument(*this, Template,
Douglas Gregor51ffb0c2009-11-25 18:55:14 +00002574 TemplateLoc,
2575 RAngleLoc,
2576 TypeParm,
2577 Converted);
2578 if (DI)
2579 return TemplateArgumentLoc(TemplateArgument(DI->getType()), DI);
2580
2581 return TemplateArgumentLoc();
2582 }
2583
2584 if (NonTypeTemplateParmDecl *NonTypeParm
2585 = dyn_cast<NonTypeTemplateParmDecl>(Param)) {
2586 if (!NonTypeParm->hasDefaultArgument())
2587 return TemplateArgumentLoc();
2588
John McCall60d7b3a2010-08-24 06:29:42 +00002589 ExprResult Arg = SubstDefaultTemplateArgument(*this, Template,
Douglas Gregorb6744ef2011-03-02 17:09:35 +00002590 TemplateLoc,
2591 RAngleLoc,
2592 NonTypeParm,
2593 Converted);
Douglas Gregor51ffb0c2009-11-25 18:55:14 +00002594 if (Arg.isInvalid())
2595 return TemplateArgumentLoc();
2596
2597 Expr *ArgE = Arg.takeAs<Expr>();
2598 return TemplateArgumentLoc(TemplateArgument(ArgE), ArgE);
2599 }
2600
2601 TemplateTemplateParmDecl *TempTempParm
2602 = cast<TemplateTemplateParmDecl>(Param);
2603 if (!TempTempParm->hasDefaultArgument())
2604 return TemplateArgumentLoc();
2605
Douglas Gregorb6744ef2011-03-02 17:09:35 +00002606
Douglas Gregor1d752d72011-03-02 18:46:51 +00002607 NestedNameSpecifierLoc QualifierLoc;
Douglas Gregor51ffb0c2009-11-25 18:55:14 +00002608 TemplateName TName = SubstDefaultTemplateArgument(*this, Template,
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002609 TemplateLoc,
Douglas Gregor51ffb0c2009-11-25 18:55:14 +00002610 RAngleLoc,
2611 TempTempParm,
Douglas Gregorb6744ef2011-03-02 17:09:35 +00002612 Converted,
2613 QualifierLoc);
Douglas Gregor51ffb0c2009-11-25 18:55:14 +00002614 if (TName.isNull())
2615 return TemplateArgumentLoc();
2616
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002617 return TemplateArgumentLoc(TemplateArgument(TName),
Douglas Gregorb6744ef2011-03-02 17:09:35 +00002618 TempTempParm->getDefaultArgument().getTemplateQualifierLoc(),
Douglas Gregor51ffb0c2009-11-25 18:55:14 +00002619 TempTempParm->getDefaultArgument().getTemplateNameLoc());
2620}
2621
Douglas Gregore7526412009-11-11 19:31:23 +00002622/// \brief Check that the given template argument corresponds to the given
2623/// template parameter.
Douglas Gregor6952f1e2011-01-19 20:10:05 +00002624///
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002625/// \param Param The template parameter against which the argument will be
Douglas Gregor6952f1e2011-01-19 20:10:05 +00002626/// checked.
2627///
2628/// \param Arg The template argument.
2629///
2630/// \param Template The template in which the template argument resides.
2631///
2632/// \param TemplateLoc The location of the template name for the template
2633/// whose argument list we're matching.
2634///
2635/// \param RAngleLoc The location of the right angle bracket ('>') that closes
2636/// the template argument list.
2637///
2638/// \param ArgumentPackIndex The index into the argument pack where this
2639/// argument will be placed. Only valid if the parameter is a parameter pack.
2640///
2641/// \param Converted The checked, converted argument will be added to the
2642/// end of this small vector.
2643///
2644/// \param CTAK Describes how we arrived at this particular template argument:
2645/// explicitly written, deduced, etc.
2646///
2647/// \returns true on error, false otherwise.
Douglas Gregore7526412009-11-11 19:31:23 +00002648bool Sema::CheckTemplateArgument(NamedDecl *Param,
2649 const TemplateArgumentLoc &Arg,
Douglas Gregor54c53cc2011-01-04 23:35:54 +00002650 NamedDecl *Template,
Douglas Gregore7526412009-11-11 19:31:23 +00002651 SourceLocation TemplateLoc,
Douglas Gregore7526412009-11-11 19:31:23 +00002652 SourceLocation RAngleLoc,
Douglas Gregor6952f1e2011-01-19 20:10:05 +00002653 unsigned ArgumentPackIndex,
Chris Lattner5f9e2722011-07-23 10:55:15 +00002654 SmallVectorImpl<TemplateArgument> &Converted,
Douglas Gregor02024a92010-03-28 02:42:43 +00002655 CheckTemplateArgumentKind CTAK) {
Douglas Gregord9e15302009-11-11 19:41:09 +00002656 // Check template type parameters.
2657 if (TemplateTypeParmDecl *TTP = dyn_cast<TemplateTypeParmDecl>(Param))
Douglas Gregore7526412009-11-11 19:31:23 +00002658 return CheckTemplateTypeArgument(TTP, Arg, Converted);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002659
Douglas Gregord9e15302009-11-11 19:41:09 +00002660 // Check non-type template parameters.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002661 if (NonTypeTemplateParmDecl *NTTP =dyn_cast<NonTypeTemplateParmDecl>(Param)) {
Douglas Gregore7526412009-11-11 19:31:23 +00002662 // Do substitution on the type of the non-type template parameter
Peter Collingbourne9f6f6a12010-12-10 17:08:53 +00002663 // with the template arguments we've seen thus far. But if the
2664 // template has a dependent context then we cannot substitute yet.
Douglas Gregore7526412009-11-11 19:31:23 +00002665 QualType NTTPType = NTTP->getType();
Douglas Gregor6952f1e2011-01-19 20:10:05 +00002666 if (NTTP->isParameterPack() && NTTP->isExpandedParameterPack())
2667 NTTPType = NTTP->getExpansionType(ArgumentPackIndex);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002668
Peter Collingbourne9f6f6a12010-12-10 17:08:53 +00002669 if (NTTPType->isDependentType() &&
2670 !isa<TemplateTemplateParmDecl>(Template) &&
2671 !Template->getDeclContext()->isDependentContext()) {
Douglas Gregore7526412009-11-11 19:31:23 +00002672 // Do substitution on the type of the non-type template parameter.
2673 InstantiatingTemplate Inst(*this, TemplateLoc, Template,
Douglas Gregor910f8002010-11-07 23:05:16 +00002674 NTTP, Converted.data(), Converted.size(),
Douglas Gregore7526412009-11-11 19:31:23 +00002675 SourceRange(TemplateLoc, RAngleLoc));
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002676
2677 TemplateArgumentList TemplateArgs(TemplateArgumentList::OnStack,
Douglas Gregor910f8002010-11-07 23:05:16 +00002678 Converted.data(), Converted.size());
Douglas Gregore7526412009-11-11 19:31:23 +00002679 NTTPType = SubstType(NTTPType,
2680 MultiLevelTemplateArgumentList(TemplateArgs),
2681 NTTP->getLocation(),
2682 NTTP->getDeclName());
2683 // If that worked, check the non-type template parameter type
2684 // for validity.
2685 if (!NTTPType.isNull())
2686 NTTPType = CheckNonTypeTemplateParameterType(NTTPType,
2687 NTTP->getLocation());
2688 if (NTTPType.isNull())
2689 return true;
2690 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002691
Douglas Gregore7526412009-11-11 19:31:23 +00002692 switch (Arg.getArgument().getKind()) {
2693 case TemplateArgument::Null:
David Blaikieb219cfc2011-09-23 05:06:16 +00002694 llvm_unreachable("Should never see a NULL template argument here");
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002695
Douglas Gregore7526412009-11-11 19:31:23 +00002696 case TemplateArgument::Expression: {
Douglas Gregore7526412009-11-11 19:31:23 +00002697 TemplateArgument Result;
John Wiegley429bb272011-04-08 18:41:53 +00002698 ExprResult Res =
2699 CheckTemplateArgument(NTTP, NTTPType, Arg.getArgument().getAsExpr(),
2700 Result, CTAK);
2701 if (Res.isInvalid())
Douglas Gregore7526412009-11-11 19:31:23 +00002702 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002703
Douglas Gregor910f8002010-11-07 23:05:16 +00002704 Converted.push_back(Result);
Douglas Gregore7526412009-11-11 19:31:23 +00002705 break;
2706 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002707
Douglas Gregore7526412009-11-11 19:31:23 +00002708 case TemplateArgument::Declaration:
2709 case TemplateArgument::Integral:
2710 // We've already checked this template argument, so just copy
2711 // it to the list of converted arguments.
Douglas Gregor910f8002010-11-07 23:05:16 +00002712 Converted.push_back(Arg.getArgument());
Douglas Gregore7526412009-11-11 19:31:23 +00002713 break;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002714
Douglas Gregore7526412009-11-11 19:31:23 +00002715 case TemplateArgument::Template:
Douglas Gregora7fc9012011-01-05 18:58:31 +00002716 case TemplateArgument::TemplateExpansion:
Douglas Gregore7526412009-11-11 19:31:23 +00002717 // We were given a template template argument. It may not be ill-formed;
2718 // see below.
2719 if (DependentTemplateName *DTN
Douglas Gregora7fc9012011-01-05 18:58:31 +00002720 = Arg.getArgument().getAsTemplateOrTemplatePattern()
2721 .getAsDependentTemplateName()) {
Douglas Gregore7526412009-11-11 19:31:23 +00002722 // We have a template argument such as \c T::template X, which we
2723 // parsed as a template template argument. However, since we now
2724 // know that we need a non-type template argument, convert this
Abramo Bagnara25777432010-08-11 22:01:17 +00002725 // template name into an expression.
2726
2727 DeclarationNameInfo NameInfo(DTN->getIdentifier(),
2728 Arg.getTemplateNameLoc());
2729
Douglas Gregor00cf3cc2011-02-25 20:49:16 +00002730 CXXScopeSpec SS;
Douglas Gregorb6744ef2011-03-02 17:09:35 +00002731 SS.Adopt(Arg.getTemplateQualifierLoc());
John Wiegley429bb272011-04-08 18:41:53 +00002732 ExprResult E = Owned(DependentScopeDeclRefExpr::Create(Context,
Douglas Gregor00cf3cc2011-02-25 20:49:16 +00002733 SS.getWithLocInContext(Context),
John Wiegley429bb272011-04-08 18:41:53 +00002734 NameInfo));
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002735
Douglas Gregora7fc9012011-01-05 18:58:31 +00002736 // If we parsed the template argument as a pack expansion, create a
2737 // pack expansion expression.
2738 if (Arg.getArgument().getKind() == TemplateArgument::TemplateExpansion){
John Wiegley429bb272011-04-08 18:41:53 +00002739 E = ActOnPackExpansion(E.take(), Arg.getTemplateEllipsisLoc());
2740 if (E.isInvalid())
Douglas Gregora7fc9012011-01-05 18:58:31 +00002741 return true;
Douglas Gregora7fc9012011-01-05 18:58:31 +00002742 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002743
Douglas Gregore7526412009-11-11 19:31:23 +00002744 TemplateArgument Result;
John Wiegley429bb272011-04-08 18:41:53 +00002745 E = CheckTemplateArgument(NTTP, NTTPType, E.take(), Result);
2746 if (E.isInvalid())
Douglas Gregore7526412009-11-11 19:31:23 +00002747 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002748
Douglas Gregor910f8002010-11-07 23:05:16 +00002749 Converted.push_back(Result);
Douglas Gregore7526412009-11-11 19:31:23 +00002750 break;
2751 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002752
Douglas Gregore7526412009-11-11 19:31:23 +00002753 // We have a template argument that actually does refer to a class
Richard Smith3e4c6c42011-05-05 21:57:07 +00002754 // template, alias template, or template template parameter, and
Douglas Gregore7526412009-11-11 19:31:23 +00002755 // therefore cannot be a non-type template argument.
2756 Diag(Arg.getLocation(), diag::err_template_arg_must_be_expr)
2757 << Arg.getSourceRange();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002758
Douglas Gregore7526412009-11-11 19:31:23 +00002759 Diag(Param->getLocation(), diag::note_template_param_here);
2760 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002761
Douglas Gregore7526412009-11-11 19:31:23 +00002762 case TemplateArgument::Type: {
2763 // We have a non-type template parameter but the template
2764 // argument is a type.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002765
Douglas Gregore7526412009-11-11 19:31:23 +00002766 // C++ [temp.arg]p2:
2767 // In a template-argument, an ambiguity between a type-id and
2768 // an expression is resolved to a type-id, regardless of the
2769 // form of the corresponding template-parameter.
2770 //
2771 // We warn specifically about this case, since it can be rather
2772 // confusing for users.
2773 QualType T = Arg.getArgument().getAsType();
2774 SourceRange SR = Arg.getSourceRange();
2775 if (T->isFunctionType())
2776 Diag(SR.getBegin(), diag::err_template_arg_nontype_ambig) << SR << T;
2777 else
2778 Diag(SR.getBegin(), diag::err_template_arg_must_be_expr) << SR;
2779 Diag(Param->getLocation(), diag::note_template_param_here);
2780 return true;
2781 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002782
Douglas Gregore7526412009-11-11 19:31:23 +00002783 case TemplateArgument::Pack:
Jeffrey Yasskin9f61aa92009-12-12 05:05:38 +00002784 llvm_unreachable("Caller must expand template argument packs");
Douglas Gregore7526412009-11-11 19:31:23 +00002785 break;
2786 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002787
Douglas Gregore7526412009-11-11 19:31:23 +00002788 return false;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002789 }
2790
2791
Douglas Gregore7526412009-11-11 19:31:23 +00002792 // Check template template parameters.
2793 TemplateTemplateParmDecl *TempParm = cast<TemplateTemplateParmDecl>(Param);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002794
Douglas Gregore7526412009-11-11 19:31:23 +00002795 // Substitute into the template parameter list of the template
2796 // template parameter, since previously-supplied template arguments
2797 // may appear within the template template parameter.
2798 {
2799 // Set up a template instantiation context.
2800 LocalInstantiationScope Scope(*this);
2801 InstantiatingTemplate Inst(*this, TemplateLoc, Template,
Douglas Gregor910f8002010-11-07 23:05:16 +00002802 TempParm, Converted.data(), Converted.size(),
Douglas Gregore7526412009-11-11 19:31:23 +00002803 SourceRange(TemplateLoc, RAngleLoc));
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002804
2805 TemplateArgumentList TemplateArgs(TemplateArgumentList::OnStack,
Douglas Gregor910f8002010-11-07 23:05:16 +00002806 Converted.data(), Converted.size());
Douglas Gregore7526412009-11-11 19:31:23 +00002807 TempParm = cast_or_null<TemplateTemplateParmDecl>(
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002808 SubstDecl(TempParm, CurContext,
Douglas Gregore7526412009-11-11 19:31:23 +00002809 MultiLevelTemplateArgumentList(TemplateArgs)));
2810 if (!TempParm)
2811 return true;
Douglas Gregore7526412009-11-11 19:31:23 +00002812 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002813
Douglas Gregore7526412009-11-11 19:31:23 +00002814 switch (Arg.getArgument().getKind()) {
2815 case TemplateArgument::Null:
David Blaikieb219cfc2011-09-23 05:06:16 +00002816 llvm_unreachable("Should never see a NULL template argument here");
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002817
Douglas Gregore7526412009-11-11 19:31:23 +00002818 case TemplateArgument::Template:
Douglas Gregora7fc9012011-01-05 18:58:31 +00002819 case TemplateArgument::TemplateExpansion:
Douglas Gregore7526412009-11-11 19:31:23 +00002820 if (CheckTemplateArgument(TempParm, Arg))
2821 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002822
Douglas Gregor910f8002010-11-07 23:05:16 +00002823 Converted.push_back(Arg.getArgument());
Douglas Gregore7526412009-11-11 19:31:23 +00002824 break;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002825
Douglas Gregore7526412009-11-11 19:31:23 +00002826 case TemplateArgument::Expression:
2827 case TemplateArgument::Type:
2828 // We have a template template parameter but the template
2829 // argument does not refer to a template.
Richard Smith3e4c6c42011-05-05 21:57:07 +00002830 Diag(Arg.getLocation(), diag::err_template_arg_must_be_template)
2831 << getLangOptions().CPlusPlus0x;
Douglas Gregore7526412009-11-11 19:31:23 +00002832 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002833
Douglas Gregore7526412009-11-11 19:31:23 +00002834 case TemplateArgument::Declaration:
Jeffrey Yasskin9f61aa92009-12-12 05:05:38 +00002835 llvm_unreachable(
Douglas Gregore7526412009-11-11 19:31:23 +00002836 "Declaration argument with template template parameter");
2837 break;
2838 case TemplateArgument::Integral:
Jeffrey Yasskin9f61aa92009-12-12 05:05:38 +00002839 llvm_unreachable(
Douglas Gregore7526412009-11-11 19:31:23 +00002840 "Integral argument with template template parameter");
2841 break;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002842
Douglas Gregore7526412009-11-11 19:31:23 +00002843 case TemplateArgument::Pack:
Jeffrey Yasskin9f61aa92009-12-12 05:05:38 +00002844 llvm_unreachable("Caller must expand template argument packs");
Douglas Gregore7526412009-11-11 19:31:23 +00002845 break;
2846 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002847
Douglas Gregore7526412009-11-11 19:31:23 +00002848 return false;
2849}
2850
Douglas Gregorc15cb382009-02-09 23:23:08 +00002851/// \brief Check that the given template argument list is well-formed
2852/// for specializing the given template.
2853bool Sema::CheckTemplateArgumentList(TemplateDecl *Template,
2854 SourceLocation TemplateLoc,
Douglas Gregor67714232011-03-03 02:41:12 +00002855 TemplateArgumentListInfo &TemplateArgs,
Douglas Gregor16134c62009-07-01 00:28:38 +00002856 bool PartialTemplateArgs,
Chris Lattner5f9e2722011-07-23 10:55:15 +00002857 SmallVectorImpl<TemplateArgument> &Converted) {
Douglas Gregorc15cb382009-02-09 23:23:08 +00002858 TemplateParameterList *Params = Template->getTemplateParameters();
2859 unsigned NumParams = Params->size();
John McCalld5532b62009-11-23 01:53:49 +00002860 unsigned NumArgs = TemplateArgs.size();
Douglas Gregorc15cb382009-02-09 23:23:08 +00002861 bool Invalid = false;
2862
John McCalld5532b62009-11-23 01:53:49 +00002863 SourceLocation RAngleLoc = TemplateArgs.getRAngleLoc();
2864
Mike Stump1eb44332009-09-09 15:08:12 +00002865 bool HasParameterPack =
Anders Carlsson0ceffb52009-06-13 02:08:00 +00002866 NumParams > 0 && Params->getParam(NumParams - 1)->isTemplateParameterPack();
Mike Stump1eb44332009-09-09 15:08:12 +00002867
Anders Carlsson0ceffb52009-06-13 02:08:00 +00002868 if ((NumArgs > NumParams && !HasParameterPack) ||
Douglas Gregor16134c62009-07-01 00:28:38 +00002869 (NumArgs < Params->getMinRequiredArguments() &&
2870 !PartialTemplateArgs)) {
Douglas Gregorc15cb382009-02-09 23:23:08 +00002871 // FIXME: point at either the first arg beyond what we can handle,
2872 // or the '>', depending on whether we have too many or too few
2873 // arguments.
2874 SourceRange Range;
2875 if (NumArgs > NumParams)
Douglas Gregor40808ce2009-03-09 23:48:35 +00002876 Range = SourceRange(TemplateArgs[NumParams].getLocation(), RAngleLoc);
Douglas Gregorc15cb382009-02-09 23:23:08 +00002877 Diag(TemplateLoc, diag::err_template_arg_list_different_arity)
2878 << (NumArgs > NumParams)
2879 << (isa<ClassTemplateDecl>(Template)? 0 :
2880 isa<FunctionTemplateDecl>(Template)? 1 :
2881 isa<TemplateTemplateParmDecl>(Template)? 2 : 3)
2882 << Template << Range;
Douglas Gregor62cb18d2009-02-11 18:16:40 +00002883 Diag(Template->getLocation(), diag::note_template_decl_here)
2884 << Params->getSourceRange();
Douglas Gregorc15cb382009-02-09 23:23:08 +00002885 Invalid = true;
2886 }
Mike Stump1eb44332009-09-09 15:08:12 +00002887
2888 // C++ [temp.arg]p1:
Douglas Gregorc15cb382009-02-09 23:23:08 +00002889 // [...] The type and form of each template-argument specified in
2890 // a template-id shall match the type and form specified for the
2891 // corresponding parameter declared by the template in its
2892 // template-parameter-list.
Douglas Gregor67714232011-03-03 02:41:12 +00002893 bool isTemplateTemplateParameter = isa<TemplateTemplateParmDecl>(Template);
Chris Lattner5f9e2722011-07-23 10:55:15 +00002894 SmallVector<TemplateArgument, 2> ArgumentPack;
Douglas Gregor14be16b2010-12-20 16:57:52 +00002895 TemplateParameterList::iterator Param = Params->begin(),
2896 ParamEnd = Params->end();
Douglas Gregorc15cb382009-02-09 23:23:08 +00002897 unsigned ArgIdx = 0;
Douglas Gregor8dde14e2011-01-24 16:14:37 +00002898 LocalInstantiationScope InstScope(*this, true);
Douglas Gregor14be16b2010-12-20 16:57:52 +00002899 while (Param != ParamEnd) {
Douglas Gregorf35f8282009-11-11 21:54:23 +00002900 if (ArgIdx < NumArgs) {
Douglas Gregor6952f1e2011-01-19 20:10:05 +00002901 // If we have an expanded parameter pack, make sure we don't have too
2902 // many arguments.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002903 if (NonTypeTemplateParmDecl *NTTP
Douglas Gregor6952f1e2011-01-19 20:10:05 +00002904 = dyn_cast<NonTypeTemplateParmDecl>(*Param)) {
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002905 if (NTTP->isExpandedParameterPack() &&
Douglas Gregor6952f1e2011-01-19 20:10:05 +00002906 ArgumentPack.size() >= NTTP->getNumExpansionTypes()) {
2907 Diag(TemplateLoc, diag::err_template_arg_list_different_arity)
2908 << true
2909 << (isa<ClassTemplateDecl>(Template)? 0 :
2910 isa<FunctionTemplateDecl>(Template)? 1 :
2911 isa<TemplateTemplateParmDecl>(Template)? 2 : 3)
2912 << Template;
2913 Diag(Template->getLocation(), diag::note_template_decl_here)
2914 << Params->getSourceRange();
2915 return true;
2916 }
2917 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002918
Douglas Gregorf35f8282009-11-11 21:54:23 +00002919 // Check the template argument we were given.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002920 if (CheckTemplateArgument(*Param, TemplateArgs[ArgIdx], Template,
2921 TemplateLoc, RAngleLoc,
Douglas Gregor6952f1e2011-01-19 20:10:05 +00002922 ArgumentPack.size(), Converted))
Douglas Gregorf35f8282009-11-11 21:54:23 +00002923 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002924
Douglas Gregor14be16b2010-12-20 16:57:52 +00002925 if ((*Param)->isTemplateParameterPack()) {
2926 // The template parameter was a template parameter pack, so take the
2927 // deduced argument and place it on the argument pack. Note that we
2928 // stay on the same template parameter so that we can deduce more
2929 // arguments.
2930 ArgumentPack.push_back(Converted.back());
2931 Converted.pop_back();
2932 } else {
2933 // Move to the next template parameter.
2934 ++Param;
2935 }
2936 ++ArgIdx;
Douglas Gregorf35f8282009-11-11 21:54:23 +00002937 continue;
Douglas Gregor3e00bad2009-02-17 01:05:43 +00002938 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002939
Douglas Gregor8735b292011-06-03 02:59:40 +00002940 // If we're checking a partial template argument list, we're done.
2941 if (PartialTemplateArgs) {
2942 if ((*Param)->isTemplateParameterPack() && !ArgumentPack.empty())
2943 Converted.push_back(TemplateArgument::CreatePackCopy(Context,
2944 ArgumentPack.data(),
2945 ArgumentPack.size()));
2946
2947 return Invalid;
2948 }
2949
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002950 // If we have a template parameter pack with no more corresponding
Douglas Gregor14be16b2010-12-20 16:57:52 +00002951 // arguments, just break out now and we'll fill in the argument pack below.
2952 if ((*Param)->isTemplateParameterPack())
2953 break;
Douglas Gregorf968d832011-05-27 01:19:52 +00002954
Douglas Gregorf35f8282009-11-11 21:54:23 +00002955 // We have a default template argument that we will use.
2956 TemplateArgumentLoc Arg;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002957
Douglas Gregorf35f8282009-11-11 21:54:23 +00002958 // Retrieve the default template argument from the template
2959 // parameter. For each kind of template parameter, we substitute the
2960 // template arguments provided thus far and any "outer" template arguments
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002961 // (when the template parameter was part of a nested template) into
Douglas Gregorf35f8282009-11-11 21:54:23 +00002962 // the default argument.
2963 if (TemplateTypeParmDecl *TTP = dyn_cast<TemplateTypeParmDecl>(*Param)) {
2964 if (!TTP->hasDefaultArgument()) {
Douglas Gregor8735b292011-06-03 02:59:40 +00002965 assert(Invalid && "Missing default argument");
Douglas Gregorf35f8282009-11-11 21:54:23 +00002966 break;
2967 }
2968
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002969 TypeSourceInfo *ArgType = SubstDefaultTemplateArgument(*this,
Douglas Gregorf35f8282009-11-11 21:54:23 +00002970 Template,
2971 TemplateLoc,
2972 RAngleLoc,
2973 TTP,
2974 Converted);
2975 if (!ArgType)
2976 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002977
Douglas Gregorf35f8282009-11-11 21:54:23 +00002978 Arg = TemplateArgumentLoc(TemplateArgument(ArgType->getType()),
2979 ArgType);
2980 } else if (NonTypeTemplateParmDecl *NTTP
2981 = dyn_cast<NonTypeTemplateParmDecl>(*Param)) {
2982 if (!NTTP->hasDefaultArgument()) {
Douglas Gregor8735b292011-06-03 02:59:40 +00002983 assert(Invalid && "Missing default argument");
Douglas Gregorf35f8282009-11-11 21:54:23 +00002984 break;
2985 }
2986
John McCall60d7b3a2010-08-24 06:29:42 +00002987 ExprResult E = SubstDefaultTemplateArgument(*this, Template,
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002988 TemplateLoc,
2989 RAngleLoc,
2990 NTTP,
Douglas Gregorf35f8282009-11-11 21:54:23 +00002991 Converted);
2992 if (E.isInvalid())
2993 return true;
2994
2995 Expr *Ex = E.takeAs<Expr>();
2996 Arg = TemplateArgumentLoc(TemplateArgument(Ex), Ex);
2997 } else {
2998 TemplateTemplateParmDecl *TempParm
2999 = cast<TemplateTemplateParmDecl>(*Param);
3000
3001 if (!TempParm->hasDefaultArgument()) {
Douglas Gregor8735b292011-06-03 02:59:40 +00003002 assert(Invalid && "Missing default argument");
Douglas Gregorf35f8282009-11-11 21:54:23 +00003003 break;
3004 }
3005
Douglas Gregor1d752d72011-03-02 18:46:51 +00003006 NestedNameSpecifierLoc QualifierLoc;
Douglas Gregorf35f8282009-11-11 21:54:23 +00003007 TemplateName Name = SubstDefaultTemplateArgument(*this, Template,
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003008 TemplateLoc,
3009 RAngleLoc,
Douglas Gregorf35f8282009-11-11 21:54:23 +00003010 TempParm,
Douglas Gregorb6744ef2011-03-02 17:09:35 +00003011 Converted,
3012 QualifierLoc);
Douglas Gregorf35f8282009-11-11 21:54:23 +00003013 if (Name.isNull())
3014 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003015
Douglas Gregorb6744ef2011-03-02 17:09:35 +00003016 Arg = TemplateArgumentLoc(TemplateArgument(Name), QualifierLoc,
3017 TempParm->getDefaultArgument().getTemplateNameLoc());
Douglas Gregorf35f8282009-11-11 21:54:23 +00003018 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003019
Douglas Gregorf35f8282009-11-11 21:54:23 +00003020 // Introduce an instantiation record that describes where we are using
3021 // the default template argument.
3022 InstantiatingTemplate Instantiating(*this, RAngleLoc, Template, *Param,
Douglas Gregor910f8002010-11-07 23:05:16 +00003023 Converted.data(), Converted.size(),
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003024 SourceRange(TemplateLoc, RAngleLoc));
3025
Douglas Gregorf35f8282009-11-11 21:54:23 +00003026 // Check the default template argument.
Douglas Gregord9e15302009-11-11 19:41:09 +00003027 if (CheckTemplateArgument(*Param, Arg, Template, TemplateLoc,
Douglas Gregor6952f1e2011-01-19 20:10:05 +00003028 RAngleLoc, 0, Converted))
Douglas Gregore7526412009-11-11 19:31:23 +00003029 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003030
Douglas Gregor67714232011-03-03 02:41:12 +00003031 // Core issue 150 (assumed resolution): if this is a template template
3032 // parameter, keep track of the default template arguments from the
3033 // template definition.
3034 if (isTemplateTemplateParameter)
3035 TemplateArgs.addArgument(Arg);
3036
Douglas Gregor14be16b2010-12-20 16:57:52 +00003037 // Move to the next template parameter and argument.
3038 ++Param;
3039 ++ArgIdx;
Douglas Gregorc15cb382009-02-09 23:23:08 +00003040 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003041
Douglas Gregor14be16b2010-12-20 16:57:52 +00003042 // Form argument packs for each of the parameter packs remaining.
3043 while (Param != ParamEnd) {
Douglas Gregord3731192011-01-10 07:32:04 +00003044 // If we're checking a partial list of template arguments, don't fill
3045 // in arguments for non-template parameter packs.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003046
3047 if ((*Param)->isTemplateParameterPack()) {
Douglas Gregor8735b292011-06-03 02:59:40 +00003048 if (ArgumentPack.empty())
Douglas Gregor14be16b2010-12-20 16:57:52 +00003049 Converted.push_back(TemplateArgument(0, 0));
Douglas Gregor203e6a32011-01-11 23:09:57 +00003050 else {
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003051 Converted.push_back(TemplateArgument::CreatePackCopy(Context,
3052 ArgumentPack.data(),
Douglas Gregor203e6a32011-01-11 23:09:57 +00003053 ArgumentPack.size()));
Douglas Gregor14be16b2010-12-20 16:57:52 +00003054 ArgumentPack.clear();
3055 }
3056 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003057
Douglas Gregor14be16b2010-12-20 16:57:52 +00003058 ++Param;
3059 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003060
Douglas Gregorc15cb382009-02-09 23:23:08 +00003061 return Invalid;
3062}
3063
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003064namespace {
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003065 class UnnamedLocalNoLinkageFinder
3066 : public TypeVisitor<UnnamedLocalNoLinkageFinder, bool>
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003067 {
3068 Sema &S;
3069 SourceRange SR;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003070
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003071 typedef TypeVisitor<UnnamedLocalNoLinkageFinder, bool> inherited;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003072
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003073 public:
3074 UnnamedLocalNoLinkageFinder(Sema &S, SourceRange SR) : S(S), SR(SR) { }
3075
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003076 bool Visit(QualType T) {
3077 return inherited::Visit(T.getTypePtr());
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003078 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003079
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003080#define TYPE(Class, Parent) \
3081 bool Visit##Class##Type(const Class##Type *);
3082#define ABSTRACT_TYPE(Class, Parent) \
3083 bool Visit##Class##Type(const Class##Type *) { return false; }
3084#define NON_CANONICAL_TYPE(Class, Parent) \
3085 bool Visit##Class##Type(const Class##Type *) { return false; }
3086#include "clang/AST/TypeNodes.def"
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003087
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003088 bool VisitTagDecl(const TagDecl *Tag);
3089 bool VisitNestedNameSpecifier(NestedNameSpecifier *NNS);
3090 };
3091}
3092
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003093bool UnnamedLocalNoLinkageFinder::VisitBuiltinType(const BuiltinType*) {
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003094 return false;
3095}
3096
3097bool UnnamedLocalNoLinkageFinder::VisitComplexType(const ComplexType* T) {
3098 return Visit(T->getElementType());
3099}
3100
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003101bool UnnamedLocalNoLinkageFinder::VisitPointerType(const PointerType* T) {
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003102 return Visit(T->getPointeeType());
3103}
3104
3105bool UnnamedLocalNoLinkageFinder::VisitBlockPointerType(
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003106 const BlockPointerType* T) {
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003107 return Visit(T->getPointeeType());
3108}
3109
3110bool UnnamedLocalNoLinkageFinder::VisitLValueReferenceType(
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003111 const LValueReferenceType* T) {
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003112 return Visit(T->getPointeeType());
3113}
3114
3115bool UnnamedLocalNoLinkageFinder::VisitRValueReferenceType(
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003116 const RValueReferenceType* T) {
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003117 return Visit(T->getPointeeType());
3118}
3119
3120bool UnnamedLocalNoLinkageFinder::VisitMemberPointerType(
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003121 const MemberPointerType* T) {
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003122 return Visit(T->getPointeeType()) || Visit(QualType(T->getClass(), 0));
3123}
3124
3125bool UnnamedLocalNoLinkageFinder::VisitConstantArrayType(
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003126 const ConstantArrayType* T) {
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003127 return Visit(T->getElementType());
3128}
3129
3130bool UnnamedLocalNoLinkageFinder::VisitIncompleteArrayType(
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003131 const IncompleteArrayType* T) {
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003132 return Visit(T->getElementType());
3133}
3134
3135bool UnnamedLocalNoLinkageFinder::VisitVariableArrayType(
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003136 const VariableArrayType* T) {
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003137 return Visit(T->getElementType());
3138}
3139
3140bool UnnamedLocalNoLinkageFinder::VisitDependentSizedArrayType(
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003141 const DependentSizedArrayType* T) {
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003142 return Visit(T->getElementType());
3143}
3144
3145bool UnnamedLocalNoLinkageFinder::VisitDependentSizedExtVectorType(
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003146 const DependentSizedExtVectorType* T) {
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003147 return Visit(T->getElementType());
3148}
3149
3150bool UnnamedLocalNoLinkageFinder::VisitVectorType(const VectorType* T) {
3151 return Visit(T->getElementType());
3152}
3153
3154bool UnnamedLocalNoLinkageFinder::VisitExtVectorType(const ExtVectorType* T) {
3155 return Visit(T->getElementType());
3156}
3157
3158bool UnnamedLocalNoLinkageFinder::VisitFunctionProtoType(
3159 const FunctionProtoType* T) {
3160 for (FunctionProtoType::arg_type_iterator A = T->arg_type_begin(),
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003161 AEnd = T->arg_type_end();
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003162 A != AEnd; ++A) {
3163 if (Visit(*A))
3164 return true;
3165 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003166
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003167 return Visit(T->getResultType());
3168}
3169
3170bool UnnamedLocalNoLinkageFinder::VisitFunctionNoProtoType(
3171 const FunctionNoProtoType* T) {
3172 return Visit(T->getResultType());
3173}
3174
3175bool UnnamedLocalNoLinkageFinder::VisitUnresolvedUsingType(
3176 const UnresolvedUsingType*) {
3177 return false;
3178}
3179
3180bool UnnamedLocalNoLinkageFinder::VisitTypeOfExprType(const TypeOfExprType*) {
3181 return false;
3182}
3183
3184bool UnnamedLocalNoLinkageFinder::VisitTypeOfType(const TypeOfType* T) {
3185 return Visit(T->getUnderlyingType());
3186}
3187
3188bool UnnamedLocalNoLinkageFinder::VisitDecltypeType(const DecltypeType*) {
3189 return false;
3190}
3191
Sean Huntca63c202011-05-24 22:41:36 +00003192bool UnnamedLocalNoLinkageFinder::VisitUnaryTransformType(
3193 const UnaryTransformType*) {
3194 return false;
3195}
3196
Richard Smith34b41d92011-02-20 03:19:35 +00003197bool UnnamedLocalNoLinkageFinder::VisitAutoType(const AutoType *T) {
3198 return Visit(T->getDeducedType());
3199}
3200
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003201bool UnnamedLocalNoLinkageFinder::VisitRecordType(const RecordType* T) {
3202 return VisitTagDecl(T->getDecl());
3203}
3204
3205bool UnnamedLocalNoLinkageFinder::VisitEnumType(const EnumType* T) {
3206 return VisitTagDecl(T->getDecl());
3207}
3208
3209bool UnnamedLocalNoLinkageFinder::VisitTemplateTypeParmType(
3210 const TemplateTypeParmType*) {
3211 return false;
3212}
3213
Douglas Gregorc3069d62011-01-14 02:55:32 +00003214bool UnnamedLocalNoLinkageFinder::VisitSubstTemplateTypeParmPackType(
3215 const SubstTemplateTypeParmPackType *) {
3216 return false;
3217}
3218
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003219bool UnnamedLocalNoLinkageFinder::VisitTemplateSpecializationType(
3220 const TemplateSpecializationType*) {
3221 return false;
3222}
3223
3224bool UnnamedLocalNoLinkageFinder::VisitInjectedClassNameType(
3225 const InjectedClassNameType* T) {
3226 return VisitTagDecl(T->getDecl());
3227}
3228
3229bool UnnamedLocalNoLinkageFinder::VisitDependentNameType(
3230 const DependentNameType* T) {
3231 return VisitNestedNameSpecifier(T->getQualifier());
3232}
3233
3234bool UnnamedLocalNoLinkageFinder::VisitDependentTemplateSpecializationType(
3235 const DependentTemplateSpecializationType* T) {
3236 return VisitNestedNameSpecifier(T->getQualifier());
3237}
3238
Douglas Gregor7536dd52010-12-20 02:24:11 +00003239bool UnnamedLocalNoLinkageFinder::VisitPackExpansionType(
3240 const PackExpansionType* T) {
3241 return Visit(T->getPattern());
3242}
3243
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003244bool UnnamedLocalNoLinkageFinder::VisitObjCObjectType(const ObjCObjectType *) {
3245 return false;
3246}
3247
3248bool UnnamedLocalNoLinkageFinder::VisitObjCInterfaceType(
3249 const ObjCInterfaceType *) {
3250 return false;
3251}
3252
3253bool UnnamedLocalNoLinkageFinder::VisitObjCObjectPointerType(
3254 const ObjCObjectPointerType *) {
3255 return false;
3256}
3257
Eli Friedmanb001de72011-10-06 23:00:33 +00003258bool UnnamedLocalNoLinkageFinder::VisitAtomicType(const AtomicType* T) {
3259 return Visit(T->getValueType());
3260}
3261
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003262bool UnnamedLocalNoLinkageFinder::VisitTagDecl(const TagDecl *Tag) {
3263 if (Tag->getDeclContext()->isFunctionOrMethod()) {
3264 S.Diag(SR.getBegin(), diag::ext_template_arg_local_type)
3265 << S.Context.getTypeDeclType(Tag) << SR;
3266 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003267 }
3268
Richard Smith162e1c12011-04-15 14:24:37 +00003269 if (!Tag->getDeclName() && !Tag->getTypedefNameForAnonDecl()) {
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003270 S.Diag(SR.getBegin(), diag::ext_template_arg_unnamed_type) << SR;
3271 S.Diag(Tag->getLocation(), diag::note_template_unnamed_type_here);
3272 return true;
3273 }
3274
3275 return false;
3276}
3277
3278bool UnnamedLocalNoLinkageFinder::VisitNestedNameSpecifier(
3279 NestedNameSpecifier *NNS) {
3280 if (NNS->getPrefix() && VisitNestedNameSpecifier(NNS->getPrefix()))
3281 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003282
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003283 switch (NNS->getKind()) {
3284 case NestedNameSpecifier::Identifier:
3285 case NestedNameSpecifier::Namespace:
Douglas Gregor14aba762011-02-24 02:36:08 +00003286 case NestedNameSpecifier::NamespaceAlias:
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003287 case NestedNameSpecifier::Global:
3288 return false;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003289
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003290 case NestedNameSpecifier::TypeSpec:
3291 case NestedNameSpecifier::TypeSpecWithTemplate:
3292 return Visit(QualType(NNS->getAsType(), 0));
3293 }
Fariborz Jahanian7b1ec6c2010-10-13 16:19:16 +00003294 return false;
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003295}
3296
3297
Douglas Gregorc15cb382009-02-09 23:23:08 +00003298/// \brief Check a template argument against its corresponding
3299/// template type parameter.
3300///
3301/// This routine implements the semantics of C++ [temp.arg.type]. It
3302/// returns true if an error occurred, and false otherwise.
Mike Stump1eb44332009-09-09 15:08:12 +00003303bool Sema::CheckTemplateArgument(TemplateTypeParmDecl *Param,
John McCalla93c9342009-12-07 02:54:59 +00003304 TypeSourceInfo *ArgInfo) {
3305 assert(ArgInfo && "invalid TypeSourceInfo");
John McCall833ca992009-10-29 08:12:44 +00003306 QualType Arg = ArgInfo->getType();
Douglas Gregor0fddb972010-05-22 16:17:30 +00003307 SourceRange SR = ArgInfo->getTypeLoc().getSourceRange();
Chandler Carruth17fb8552010-09-03 21:12:34 +00003308
3309 if (Arg->isVariablyModifiedType()) {
3310 return Diag(SR.getBegin(), diag::err_variably_modified_template_arg) << Arg;
Douglas Gregor4b52e252009-12-21 23:17:24 +00003311 } else if (Context.hasSameUnqualifiedType(Arg, Context.OverloadTy)) {
Douglas Gregor4b52e252009-12-21 23:17:24 +00003312 return Diag(SR.getBegin(), diag::err_template_arg_overload_type) << SR;
Douglas Gregorc15cb382009-02-09 23:23:08 +00003313 }
3314
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003315 // C++03 [temp.arg.type]p2:
3316 // A local type, a type with no linkage, an unnamed type or a type
3317 // compounded from any of these types shall not be used as a
3318 // template-argument for a template type-parameter.
3319 //
3320 // C++0x allows these, and even in C++03 we allow them as an extension with
3321 // a warning.
Douglas Gregordb4d4bb2010-10-13 18:05:20 +00003322 if (!LangOpts.CPlusPlus0x && Arg->hasUnnamedOrLocalType()) {
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003323 UnnamedLocalNoLinkageFinder Finder(*this, SR);
3324 (void)Finder.Visit(Context.getCanonicalType(Arg));
3325 }
3326
Douglas Gregorc15cb382009-02-09 23:23:08 +00003327 return false;
3328}
3329
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003330/// \brief Checks whether the given template argument is the address
3331/// of an object or function according to C++ [temp.arg.nontype]p1.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003332static bool
Douglas Gregorb7a09262010-04-01 18:32:35 +00003333CheckTemplateArgumentAddressOfObjectOrFunction(Sema &S,
3334 NonTypeTemplateParmDecl *Param,
3335 QualType ParamType,
3336 Expr *ArgIn,
3337 TemplateArgument &Converted) {
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003338 bool Invalid = false;
Douglas Gregorb7a09262010-04-01 18:32:35 +00003339 Expr *Arg = ArgIn;
3340 QualType ArgType = Arg->getType();
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003341
3342 // See through any implicit casts we added to fix the type.
John McCall91a57552011-07-15 05:09:51 +00003343 Arg = Arg->IgnoreImpCasts();
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003344
3345 // C++ [temp.arg.nontype]p1:
Mike Stump1eb44332009-09-09 15:08:12 +00003346 //
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003347 // A template-argument for a non-type, non-template
3348 // template-parameter shall be one of: [...]
3349 //
3350 // -- the address of an object or function with external
3351 // linkage, including function templates and function
3352 // template-ids but excluding non-static class members,
3353 // expressed as & id-expression where the & is optional if
3354 // the name refers to a function or array, or if the
3355 // corresponding template-parameter is a reference; or
Mike Stump1eb44332009-09-09 15:08:12 +00003356
Abramo Bagnara2c5399f2010-09-13 06:06:58 +00003357 // In C++98/03 mode, give an extension warning on any extra parentheses.
3358 // See http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_defects.html#773
3359 bool ExtraParens = false;
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003360 while (ParenExpr *Parens = dyn_cast<ParenExpr>(Arg)) {
Abramo Bagnara2c5399f2010-09-13 06:06:58 +00003361 if (!Invalid && !ExtraParens && !S.getLangOptions().CPlusPlus0x) {
Douglas Gregorb7a09262010-04-01 18:32:35 +00003362 S.Diag(Arg->getSourceRange().getBegin(),
Abramo Bagnara2c5399f2010-09-13 06:06:58 +00003363 diag::ext_template_arg_extra_parens)
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003364 << Arg->getSourceRange();
Abramo Bagnara2c5399f2010-09-13 06:06:58 +00003365 ExtraParens = true;
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003366 }
3367
3368 Arg = Parens->getSubExpr();
3369 }
3370
John McCall91a57552011-07-15 05:09:51 +00003371 while (SubstNonTypeTemplateParmExpr *subst =
3372 dyn_cast<SubstNonTypeTemplateParmExpr>(Arg))
3373 Arg = subst->getReplacement()->IgnoreImpCasts();
3374
Douglas Gregorb7a09262010-04-01 18:32:35 +00003375 bool AddressTaken = false;
3376 SourceLocation AddrOpLoc;
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003377 if (UnaryOperator *UnOp = dyn_cast<UnaryOperator>(Arg)) {
John McCall2de56d12010-08-25 11:45:40 +00003378 if (UnOp->getOpcode() == UO_AddrOf) {
John McCall91a57552011-07-15 05:09:51 +00003379 Arg = UnOp->getSubExpr();
Douglas Gregorb7a09262010-04-01 18:32:35 +00003380 AddressTaken = true;
3381 AddrOpLoc = UnOp->getOperatorLoc();
3382 }
Francois Picheta343a412011-04-29 09:08:14 +00003383 }
John McCall91a57552011-07-15 05:09:51 +00003384
Francois Pichet62ec1f22011-09-17 17:15:52 +00003385 if (S.getLangOptions().MicrosoftExt && isa<CXXUuidofExpr>(Arg)) {
John McCall91a57552011-07-15 05:09:51 +00003386 Converted = TemplateArgument(ArgIn);
3387 return false;
3388 }
3389
3390 while (SubstNonTypeTemplateParmExpr *subst =
3391 dyn_cast<SubstNonTypeTemplateParmExpr>(Arg))
3392 Arg = subst->getReplacement()->IgnoreImpCasts();
3393
3394 DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(Arg);
Douglas Gregorb7a09262010-04-01 18:32:35 +00003395 if (!DRE) {
Douglas Gregor1a8cf732010-04-14 23:11:21 +00003396 S.Diag(Arg->getLocStart(), diag::err_template_arg_not_decl_ref)
3397 << Arg->getSourceRange();
Douglas Gregorb7a09262010-04-01 18:32:35 +00003398 S.Diag(Param->getLocation(), diag::note_template_param_here);
3399 return true;
3400 }
Chandler Carruth038cc392010-01-31 10:01:20 +00003401
3402 // Stop checking the precise nature of the argument if it is value dependent,
3403 // it should be checked when instantiated.
Douglas Gregorb7a09262010-04-01 18:32:35 +00003404 if (Arg->isValueDependent()) {
John McCall3fa5cae2010-10-26 07:05:15 +00003405 Converted = TemplateArgument(ArgIn);
Chandler Carruth038cc392010-01-31 10:01:20 +00003406 return false;
Douglas Gregorb7a09262010-04-01 18:32:35 +00003407 }
Chandler Carruth038cc392010-01-31 10:01:20 +00003408
Douglas Gregorb7a09262010-04-01 18:32:35 +00003409 if (!isa<ValueDecl>(DRE->getDecl())) {
3410 S.Diag(Arg->getSourceRange().getBegin(),
3411 diag::err_template_arg_not_object_or_func_form)
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003412 << Arg->getSourceRange();
Douglas Gregorb7a09262010-04-01 18:32:35 +00003413 S.Diag(Param->getLocation(), diag::note_template_param_here);
3414 return true;
3415 }
3416
3417 NamedDecl *Entity = 0;
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003418
3419 // Cannot refer to non-static data members
Douglas Gregorb7a09262010-04-01 18:32:35 +00003420 if (FieldDecl *Field = dyn_cast<FieldDecl>(DRE->getDecl())) {
3421 S.Diag(Arg->getSourceRange().getBegin(), diag::err_template_arg_field)
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003422 << Field << Arg->getSourceRange();
Douglas Gregorb7a09262010-04-01 18:32:35 +00003423 S.Diag(Param->getLocation(), diag::note_template_param_here);
3424 return true;
3425 }
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003426
3427 // Cannot refer to non-static member functions
3428 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(DRE->getDecl()))
Douglas Gregorb7a09262010-04-01 18:32:35 +00003429 if (!Method->isStatic()) {
3430 S.Diag(Arg->getSourceRange().getBegin(), diag::err_template_arg_method)
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003431 << Method << Arg->getSourceRange();
Douglas Gregorb7a09262010-04-01 18:32:35 +00003432 S.Diag(Param->getLocation(), diag::note_template_param_here);
3433 return true;
3434 }
Mike Stump1eb44332009-09-09 15:08:12 +00003435
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003436 // Functions must have external linkage.
3437 if (FunctionDecl *Func = dyn_cast<FunctionDecl>(DRE->getDecl())) {
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +00003438 if (!isExternalLinkage(Func->getLinkage())) {
Douglas Gregorb7a09262010-04-01 18:32:35 +00003439 S.Diag(Arg->getSourceRange().getBegin(),
3440 diag::err_template_arg_function_not_extern)
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003441 << Func << Arg->getSourceRange();
Douglas Gregorb7a09262010-04-01 18:32:35 +00003442 S.Diag(Func->getLocation(), diag::note_template_arg_internal_object)
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003443 << true;
3444 return true;
3445 }
3446
3447 // Okay: we've named a function with external linkage.
Douglas Gregor3e00bad2009-02-17 01:05:43 +00003448 Entity = Func;
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003449
Douglas Gregorb7a09262010-04-01 18:32:35 +00003450 // If the template parameter has pointer type, the function decays.
3451 if (ParamType->isPointerType() && !AddressTaken)
3452 ArgType = S.Context.getPointerType(Func->getType());
3453 else if (AddressTaken && ParamType->isReferenceType()) {
3454 // If we originally had an address-of operator, but the
3455 // parameter has reference type, complain and (if things look
3456 // like they will work) drop the address-of operator.
3457 if (!S.Context.hasSameUnqualifiedType(Func->getType(),
3458 ParamType.getNonReferenceType())) {
3459 S.Diag(AddrOpLoc, diag::err_template_arg_address_of_non_pointer)
3460 << ParamType;
3461 S.Diag(Param->getLocation(), diag::note_template_param_here);
3462 return true;
3463 }
3464
3465 S.Diag(AddrOpLoc, diag::err_template_arg_address_of_non_pointer)
3466 << ParamType
3467 << FixItHint::CreateRemoval(AddrOpLoc);
3468 S.Diag(Param->getLocation(), diag::note_template_param_here);
3469
3470 ArgType = Func->getType();
3471 }
3472 } else if (VarDecl *Var = dyn_cast<VarDecl>(DRE->getDecl())) {
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +00003473 if (!isExternalLinkage(Var->getLinkage())) {
Douglas Gregorb7a09262010-04-01 18:32:35 +00003474 S.Diag(Arg->getSourceRange().getBegin(),
3475 diag::err_template_arg_object_not_extern)
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003476 << Var << Arg->getSourceRange();
Douglas Gregorb7a09262010-04-01 18:32:35 +00003477 S.Diag(Var->getLocation(), diag::note_template_arg_internal_object)
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003478 << true;
3479 return true;
3480 }
3481
Douglas Gregorb7a09262010-04-01 18:32:35 +00003482 // A value of reference type is not an object.
3483 if (Var->getType()->isReferenceType()) {
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003484 S.Diag(Arg->getSourceRange().getBegin(),
Douglas Gregorb7a09262010-04-01 18:32:35 +00003485 diag::err_template_arg_reference_var)
3486 << Var->getType() << Arg->getSourceRange();
3487 S.Diag(Param->getLocation(), diag::note_template_param_here);
3488 return true;
3489 }
3490
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003491 // Okay: we've named an object with external linkage
Douglas Gregor3e00bad2009-02-17 01:05:43 +00003492 Entity = Var;
Douglas Gregorb7a09262010-04-01 18:32:35 +00003493
3494 // If the template parameter has pointer type, we must have taken
3495 // the address of this object.
3496 if (ParamType->isReferenceType()) {
3497 if (AddressTaken) {
3498 // If we originally had an address-of operator, but the
3499 // parameter has reference type, complain and (if things look
3500 // like they will work) drop the address-of operator.
3501 if (!S.Context.hasSameUnqualifiedType(Var->getType(),
3502 ParamType.getNonReferenceType())) {
3503 S.Diag(AddrOpLoc, diag::err_template_arg_address_of_non_pointer)
3504 << ParamType;
3505 S.Diag(Param->getLocation(), diag::note_template_param_here);
3506 return true;
3507 }
3508
3509 S.Diag(AddrOpLoc, diag::err_template_arg_address_of_non_pointer)
3510 << ParamType
3511 << FixItHint::CreateRemoval(AddrOpLoc);
3512 S.Diag(Param->getLocation(), diag::note_template_param_here);
3513
3514 ArgType = Var->getType();
3515 }
3516 } else if (!AddressTaken && ParamType->isPointerType()) {
3517 if (Var->getType()->isArrayType()) {
3518 // Array-to-pointer decay.
3519 ArgType = S.Context.getArrayDecayedType(Var->getType());
3520 } else {
3521 // If the template parameter has pointer type but the address of
3522 // this object was not taken, complain and (possibly) recover by
3523 // taking the address of the entity.
3524 ArgType = S.Context.getPointerType(Var->getType());
3525 if (!S.Context.hasSameUnqualifiedType(ArgType, ParamType)) {
3526 S.Diag(Arg->getLocStart(), diag::err_template_arg_not_address_of)
3527 << ParamType;
3528 S.Diag(Param->getLocation(), diag::note_template_param_here);
3529 return true;
3530 }
3531
3532 S.Diag(Arg->getLocStart(), diag::err_template_arg_not_address_of)
3533 << ParamType
3534 << FixItHint::CreateInsertion(Arg->getLocStart(), "&");
3535
3536 S.Diag(Param->getLocation(), diag::note_template_param_here);
3537 }
3538 }
3539 } else {
3540 // We found something else, but we don't know specifically what it is.
3541 S.Diag(Arg->getSourceRange().getBegin(),
3542 diag::err_template_arg_not_object_or_func)
3543 << Arg->getSourceRange();
3544 S.Diag(DRE->getDecl()->getLocation(), diag::note_template_arg_refers_here);
3545 return true;
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003546 }
Mike Stump1eb44332009-09-09 15:08:12 +00003547
John McCallf85e1932011-06-15 23:02:42 +00003548 bool ObjCLifetimeConversion;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003549 if (ParamType->isPointerType() &&
Douglas Gregorb7a09262010-04-01 18:32:35 +00003550 !ParamType->getAs<PointerType>()->getPointeeType()->isFunctionType() &&
John McCallf85e1932011-06-15 23:02:42 +00003551 S.IsQualificationConversion(ArgType, ParamType, false,
3552 ObjCLifetimeConversion)) {
Douglas Gregorb7a09262010-04-01 18:32:35 +00003553 // For pointer-to-object types, qualification conversions are
3554 // permitted.
3555 } else {
3556 if (const ReferenceType *ParamRef = ParamType->getAs<ReferenceType>()) {
3557 if (!ParamRef->getPointeeType()->isFunctionType()) {
3558 // C++ [temp.arg.nontype]p5b3:
3559 // For a non-type template-parameter of type reference to
3560 // object, no conversions apply. The type referred to by the
3561 // reference may be more cv-qualified than the (otherwise
3562 // identical) type of the template- argument. The
3563 // template-parameter is bound directly to the
3564 // template-argument, which shall be an lvalue.
3565
3566 // FIXME: Other qualifiers?
3567 unsigned ParamQuals = ParamRef->getPointeeType().getCVRQualifiers();
3568 unsigned ArgQuals = ArgType.getCVRQualifiers();
3569
3570 if ((ParamQuals | ArgQuals) != ParamQuals) {
3571 S.Diag(Arg->getSourceRange().getBegin(),
3572 diag::err_template_arg_ref_bind_ignores_quals)
3573 << ParamType << Arg->getType()
3574 << Arg->getSourceRange();
3575 S.Diag(Param->getLocation(), diag::note_template_param_here);
3576 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003577 }
Douglas Gregorb7a09262010-04-01 18:32:35 +00003578 }
3579 }
3580
3581 // At this point, the template argument refers to an object or
3582 // function with external linkage. We now need to check whether the
3583 // argument and parameter types are compatible.
3584 if (!S.Context.hasSameUnqualifiedType(ArgType,
3585 ParamType.getNonReferenceType())) {
3586 // We can't perform this conversion or binding.
3587 if (ParamType->isReferenceType())
3588 S.Diag(Arg->getLocStart(), diag::err_template_arg_no_ref_bind)
John McCall91a57552011-07-15 05:09:51 +00003589 << ParamType << ArgIn->getType() << Arg->getSourceRange();
Douglas Gregorb7a09262010-04-01 18:32:35 +00003590 else
3591 S.Diag(Arg->getLocStart(), diag::err_template_arg_not_convertible)
John McCall91a57552011-07-15 05:09:51 +00003592 << ArgIn->getType() << ParamType << Arg->getSourceRange();
Douglas Gregorb7a09262010-04-01 18:32:35 +00003593 S.Diag(Param->getLocation(), diag::note_template_param_here);
3594 return true;
3595 }
3596 }
3597
3598 // Create the template argument.
3599 Converted = TemplateArgument(Entity->getCanonicalDecl());
Douglas Gregor77c13e02010-04-24 18:20:53 +00003600 S.MarkDeclarationReferenced(Arg->getLocStart(), Entity);
Douglas Gregorb7a09262010-04-01 18:32:35 +00003601 return false;
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003602}
3603
3604/// \brief Checks whether the given template argument is a pointer to
3605/// member constant according to C++ [temp.arg.nontype]p1.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003606bool Sema::CheckTemplateArgumentPointerToMember(Expr *Arg,
Douglas Gregorcaddba02009-11-12 18:38:13 +00003607 TemplateArgument &Converted) {
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003608 bool Invalid = false;
3609
3610 // See through any implicit casts we added to fix the type.
Eli Friedman73c39ab2009-10-20 08:27:19 +00003611 while (ImplicitCastExpr *Cast = dyn_cast<ImplicitCastExpr>(Arg))
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003612 Arg = Cast->getSubExpr();
3613
3614 // C++ [temp.arg.nontype]p1:
Mike Stump1eb44332009-09-09 15:08:12 +00003615 //
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003616 // A template-argument for a non-type, non-template
3617 // template-parameter shall be one of: [...]
3618 //
3619 // -- a pointer to member expressed as described in 5.3.1.
Douglas Gregora2813ce2009-10-23 18:54:35 +00003620 DeclRefExpr *DRE = 0;
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003621
Abramo Bagnara2c5399f2010-09-13 06:06:58 +00003622 // In C++98/03 mode, give an extension warning on any extra parentheses.
3623 // See http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_defects.html#773
3624 bool ExtraParens = false;
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003625 while (ParenExpr *Parens = dyn_cast<ParenExpr>(Arg)) {
Abramo Bagnara2c5399f2010-09-13 06:06:58 +00003626 if (!Invalid && !ExtraParens && !getLangOptions().CPlusPlus0x) {
Mike Stump1eb44332009-09-09 15:08:12 +00003627 Diag(Arg->getSourceRange().getBegin(),
Abramo Bagnara2c5399f2010-09-13 06:06:58 +00003628 diag::ext_template_arg_extra_parens)
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003629 << Arg->getSourceRange();
Abramo Bagnara2c5399f2010-09-13 06:06:58 +00003630 ExtraParens = true;
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003631 }
3632
3633 Arg = Parens->getSubExpr();
3634 }
3635
John McCall91a57552011-07-15 05:09:51 +00003636 while (SubstNonTypeTemplateParmExpr *subst =
3637 dyn_cast<SubstNonTypeTemplateParmExpr>(Arg))
3638 Arg = subst->getReplacement()->IgnoreImpCasts();
3639
Douglas Gregorcaddba02009-11-12 18:38:13 +00003640 // A pointer-to-member constant written &Class::member.
3641 if (UnaryOperator *UnOp = dyn_cast<UnaryOperator>(Arg)) {
John McCall2de56d12010-08-25 11:45:40 +00003642 if (UnOp->getOpcode() == UO_AddrOf) {
Douglas Gregora2813ce2009-10-23 18:54:35 +00003643 DRE = dyn_cast<DeclRefExpr>(UnOp->getSubExpr());
3644 if (DRE && !DRE->getQualifier())
3645 DRE = 0;
3646 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003647 }
Douglas Gregorcaddba02009-11-12 18:38:13 +00003648 // A constant of pointer-to-member type.
3649 else if ((DRE = dyn_cast<DeclRefExpr>(Arg))) {
3650 if (ValueDecl *VD = dyn_cast<ValueDecl>(DRE->getDecl())) {
3651 if (VD->getType()->isMemberPointerType()) {
3652 if (isa<NonTypeTemplateParmDecl>(VD) ||
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003653 (isa<VarDecl>(VD) &&
Douglas Gregorcaddba02009-11-12 18:38:13 +00003654 Context.getCanonicalType(VD->getType()).isConstQualified())) {
3655 if (Arg->isTypeDependent() || Arg->isValueDependent())
John McCall3fa5cae2010-10-26 07:05:15 +00003656 Converted = TemplateArgument(Arg);
Douglas Gregorcaddba02009-11-12 18:38:13 +00003657 else
3658 Converted = TemplateArgument(VD->getCanonicalDecl());
3659 return Invalid;
3660 }
3661 }
3662 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003663
Douglas Gregorcaddba02009-11-12 18:38:13 +00003664 DRE = 0;
3665 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003666
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003667 if (!DRE)
3668 return Diag(Arg->getSourceRange().getBegin(),
3669 diag::err_template_arg_not_pointer_to_member_form)
3670 << Arg->getSourceRange();
3671
3672 if (isa<FieldDecl>(DRE->getDecl()) || isa<CXXMethodDecl>(DRE->getDecl())) {
3673 assert((isa<FieldDecl>(DRE->getDecl()) ||
3674 !cast<CXXMethodDecl>(DRE->getDecl())->isStatic()) &&
3675 "Only non-static member pointers can make it here");
3676
3677 // Okay: this is the address of a non-static member, and therefore
3678 // a member pointer constant.
Douglas Gregorcaddba02009-11-12 18:38:13 +00003679 if (Arg->isTypeDependent() || Arg->isValueDependent())
John McCall3fa5cae2010-10-26 07:05:15 +00003680 Converted = TemplateArgument(Arg);
Douglas Gregorcaddba02009-11-12 18:38:13 +00003681 else
3682 Converted = TemplateArgument(DRE->getDecl()->getCanonicalDecl());
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003683 return Invalid;
3684 }
3685
3686 // We found something else, but we don't know specifically what it is.
Mike Stump1eb44332009-09-09 15:08:12 +00003687 Diag(Arg->getSourceRange().getBegin(),
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003688 diag::err_template_arg_not_pointer_to_member_form)
3689 << Arg->getSourceRange();
Mike Stump1eb44332009-09-09 15:08:12 +00003690 Diag(DRE->getDecl()->getLocation(),
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003691 diag::note_template_arg_refers_here);
3692 return true;
3693}
3694
Douglas Gregorc15cb382009-02-09 23:23:08 +00003695/// \brief Check a template argument against its corresponding
3696/// non-type template parameter.
3697///
Douglas Gregor2943aed2009-03-03 04:44:36 +00003698/// This routine implements the semantics of C++ [temp.arg.nontype].
John Wiegley429bb272011-04-08 18:41:53 +00003699/// If an error occurred, it returns ExprError(); otherwise, it
3700/// returns the converted template argument. \p
Douglas Gregor2943aed2009-03-03 04:44:36 +00003701/// InstantiatedParamType is the type of the non-type template
3702/// parameter after it has been instantiated.
John Wiegley429bb272011-04-08 18:41:53 +00003703ExprResult Sema::CheckTemplateArgument(NonTypeTemplateParmDecl *Param,
3704 QualType InstantiatedParamType, Expr *Arg,
3705 TemplateArgument &Converted,
3706 CheckTemplateArgumentKind CTAK) {
Douglas Gregor40808ce2009-03-09 23:48:35 +00003707 SourceLocation StartLoc = Arg->getSourceRange().getBegin();
3708
Douglas Gregor6ae5e662009-02-10 23:36:10 +00003709 // If either the parameter has a dependent type or the argument is
3710 // type-dependent, there's nothing we can check now.
Douglas Gregor40808ce2009-03-09 23:48:35 +00003711 if (InstantiatedParamType->isDependentType() || Arg->isTypeDependent()) {
3712 // FIXME: Produce a cloned, canonical expression?
Douglas Gregor02cbbd22009-06-11 18:10:32 +00003713 Converted = TemplateArgument(Arg);
John Wiegley429bb272011-04-08 18:41:53 +00003714 return Owned(Arg);
Douglas Gregor40808ce2009-03-09 23:48:35 +00003715 }
Douglas Gregor6ae5e662009-02-10 23:36:10 +00003716
3717 // C++ [temp.arg.nontype]p5:
3718 // The following conversions are performed on each expression used
3719 // as a non-type template-argument. If a non-type
3720 // template-argument cannot be converted to the type of the
3721 // corresponding template-parameter then the program is
3722 // ill-formed.
3723 //
3724 // -- for a non-type template-parameter of integral or
3725 // enumeration type, integral promotions (4.5) and integral
3726 // conversions (4.7) are applied.
Douglas Gregor2943aed2009-03-03 04:44:36 +00003727 QualType ParamType = InstantiatedParamType;
Douglas Gregora35284b2009-02-11 00:19:33 +00003728 QualType ArgType = Arg->getType();
Douglas Gregor2ade35e2010-06-16 00:17:44 +00003729 if (ParamType->isIntegralOrEnumerationType()) {
Douglas Gregor6ae5e662009-02-10 23:36:10 +00003730 // C++ [temp.arg.nontype]p1:
3731 // A template-argument for a non-type, non-template
3732 // template-parameter shall be one of:
3733 //
3734 // -- an integral constant-expression of integral or enumeration
3735 // type; or
3736 // -- the name of a non-type template-parameter; or
3737 SourceLocation NonConstantLoc;
Douglas Gregor3e00bad2009-02-17 01:05:43 +00003738 llvm::APSInt Value;
Douglas Gregor2ade35e2010-06-16 00:17:44 +00003739 if (!ArgType->isIntegralOrEnumerationType()) {
Mike Stump1eb44332009-09-09 15:08:12 +00003740 Diag(Arg->getSourceRange().getBegin(),
Douglas Gregor6ae5e662009-02-10 23:36:10 +00003741 diag::err_template_arg_not_integral_or_enumeral)
3742 << ArgType << Arg->getSourceRange();
3743 Diag(Param->getLocation(), diag::note_template_param_here);
John Wiegley429bb272011-04-08 18:41:53 +00003744 return ExprError();
Douglas Gregor6ae5e662009-02-10 23:36:10 +00003745 } else if (!Arg->isValueDependent() &&
Douglas Gregor3e00bad2009-02-17 01:05:43 +00003746 !Arg->isIntegerConstantExpr(Value, Context, &NonConstantLoc)) {
Douglas Gregor6ae5e662009-02-10 23:36:10 +00003747 Diag(NonConstantLoc, diag::err_template_arg_not_ice)
3748 << ArgType << Arg->getSourceRange();
John Wiegley429bb272011-04-08 18:41:53 +00003749 return ExprError();
Douglas Gregor6ae5e662009-02-10 23:36:10 +00003750 }
3751
Douglas Gregor02024a92010-03-28 02:42:43 +00003752 // From here on out, all we care about are the unqualified forms
3753 // of the parameter and argument types.
3754 ParamType = ParamType.getUnqualifiedType();
3755 ArgType = ArgType.getUnqualifiedType();
Douglas Gregor6ae5e662009-02-10 23:36:10 +00003756
3757 // Try to convert the argument to the parameter's type.
Douglas Gregorff524392009-11-04 21:50:46 +00003758 if (Context.hasSameType(ParamType, ArgType)) {
Douglas Gregor6ae5e662009-02-10 23:36:10 +00003759 // Okay: no conversion necessary
Douglas Gregor02024a92010-03-28 02:42:43 +00003760 } else if (CTAK == CTAK_Deduced) {
3761 // C++ [temp.deduct.type]p17:
3762 // If, in the declaration of a function template with a non-type
3763 // template-parameter, the non-type template- parameter is used
3764 // in an expression in the function parameter-list and, if the
3765 // corresponding template-argument is deduced, the
3766 // template-argument type shall match the type of the
3767 // template-parameter exactly, except that a template-argument
3768 // deduced from an array bound may be of any integral type.
3769 Diag(StartLoc, diag::err_deduced_non_type_template_arg_type_mismatch)
3770 << ArgType << ParamType;
3771 Diag(Param->getLocation(), diag::note_template_param_here);
John Wiegley429bb272011-04-08 18:41:53 +00003772 return ExprError();
John McCalldaa8e4e2010-11-15 09:13:47 +00003773 } else if (ParamType->isBooleanType()) {
3774 // This is an integral-to-boolean conversion.
John Wiegley429bb272011-04-08 18:41:53 +00003775 Arg = ImpCastExprToType(Arg, ParamType, CK_IntegralToBoolean).take();
Douglas Gregor6ae5e662009-02-10 23:36:10 +00003776 } else if (IsIntegralPromotion(Arg, ArgType, ParamType) ||
3777 !ParamType->isEnumeralType()) {
3778 // This is an integral promotion or conversion.
John Wiegley429bb272011-04-08 18:41:53 +00003779 Arg = ImpCastExprToType(Arg, ParamType, CK_IntegralCast).take();
Douglas Gregor6ae5e662009-02-10 23:36:10 +00003780 } else {
3781 // We can't perform this conversion.
Mike Stump1eb44332009-09-09 15:08:12 +00003782 Diag(Arg->getSourceRange().getBegin(),
Douglas Gregor6ae5e662009-02-10 23:36:10 +00003783 diag::err_template_arg_not_convertible)
Douglas Gregor2943aed2009-03-03 04:44:36 +00003784 << Arg->getType() << InstantiatedParamType << Arg->getSourceRange();
Douglas Gregor6ae5e662009-02-10 23:36:10 +00003785 Diag(Param->getLocation(), diag::note_template_param_here);
John Wiegley429bb272011-04-08 18:41:53 +00003786 return ExprError();
Douglas Gregor6ae5e662009-02-10 23:36:10 +00003787 }
3788
Douglas Gregorc7469372011-05-04 21:55:00 +00003789 // Add the value of this argument to the list of converted
3790 // arguments. We use the bitwidth and signedness of the template
3791 // parameter.
3792 if (Arg->isValueDependent()) {
3793 // The argument is value-dependent. Create a new
3794 // TemplateArgument with the converted expression.
3795 Converted = TemplateArgument(Arg);
3796 return Owned(Arg);
3797 }
3798
Douglas Gregorf80a9d52009-03-14 00:20:21 +00003799 QualType IntegerType = Context.getCanonicalType(ParamType);
John McCall183700f2009-09-21 23:43:11 +00003800 if (const EnumType *Enum = IntegerType->getAs<EnumType>())
Douglas Gregor02cbbd22009-06-11 18:10:32 +00003801 IntegerType = Context.getCanonicalType(Enum->getDecl()->getIntegerType());
Douglas Gregorf80a9d52009-03-14 00:20:21 +00003802
Douglas Gregorc7469372011-05-04 21:55:00 +00003803 if (ParamType->isBooleanType()) {
3804 // Value must be zero or one.
3805 Value = Value != 0;
3806 unsigned AllowedBits = Context.getTypeSize(IntegerType);
3807 if (Value.getBitWidth() != AllowedBits)
3808 Value = Value.extOrTrunc(AllowedBits);
Douglas Gregor575a1c92011-05-20 16:38:50 +00003809 Value.setIsSigned(IntegerType->isSignedIntegerOrEnumerationType());
Douglas Gregorc7469372011-05-04 21:55:00 +00003810 } else {
Douglas Gregor1a6e0342010-03-26 02:38:37 +00003811 llvm::APSInt OldValue = Value;
Douglas Gregorc7469372011-05-04 21:55:00 +00003812
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003813 // Coerce the template argument's value to the value it will have
Douglas Gregor1a6e0342010-03-26 02:38:37 +00003814 // based on the template parameter's type.
Douglas Gregor0d4fd8e2010-03-26 00:39:40 +00003815 unsigned AllowedBits = Context.getTypeSize(IntegerType);
Douglas Gregor0d4fd8e2010-03-26 00:39:40 +00003816 if (Value.getBitWidth() != AllowedBits)
Jay Foad9f71a8f2010-12-07 08:25:34 +00003817 Value = Value.extOrTrunc(AllowedBits);
Douglas Gregor575a1c92011-05-20 16:38:50 +00003818 Value.setIsSigned(IntegerType->isSignedIntegerOrEnumerationType());
Douglas Gregorc7469372011-05-04 21:55:00 +00003819
Douglas Gregor1a6e0342010-03-26 02:38:37 +00003820 // Complain if an unsigned parameter received a negative value.
Douglas Gregor575a1c92011-05-20 16:38:50 +00003821 if (IntegerType->isUnsignedIntegerOrEnumerationType()
Douglas Gregorc7469372011-05-04 21:55:00 +00003822 && (OldValue.isSigned() && OldValue.isNegative())) {
Douglas Gregor1a6e0342010-03-26 02:38:37 +00003823 Diag(Arg->getSourceRange().getBegin(), diag::warn_template_arg_negative)
3824 << OldValue.toString(10) << Value.toString(10) << Param->getType()
3825 << Arg->getSourceRange();
3826 Diag(Param->getLocation(), diag::note_template_param_here);
3827 }
Douglas Gregorc7469372011-05-04 21:55:00 +00003828
Douglas Gregor1a6e0342010-03-26 02:38:37 +00003829 // Complain if we overflowed the template parameter's type.
3830 unsigned RequiredBits;
Douglas Gregor575a1c92011-05-20 16:38:50 +00003831 if (IntegerType->isUnsignedIntegerOrEnumerationType())
Douglas Gregor1a6e0342010-03-26 02:38:37 +00003832 RequiredBits = OldValue.getActiveBits();
3833 else if (OldValue.isUnsigned())
3834 RequiredBits = OldValue.getActiveBits() + 1;
3835 else
3836 RequiredBits = OldValue.getMinSignedBits();
3837 if (RequiredBits > AllowedBits) {
3838 Diag(Arg->getSourceRange().getBegin(),
3839 diag::warn_template_arg_too_large)
3840 << OldValue.toString(10) << Value.toString(10) << Param->getType()
3841 << Arg->getSourceRange();
3842 Diag(Param->getLocation(), diag::note_template_param_here);
3843 }
Douglas Gregorf80a9d52009-03-14 00:20:21 +00003844 }
Douglas Gregor3e00bad2009-02-17 01:05:43 +00003845
John McCall833ca992009-10-29 08:12:44 +00003846 Converted = TemplateArgument(Value,
Douglas Gregor6b63f552011-08-09 01:55:14 +00003847 ParamType->isEnumeralType()
3848 ? Context.getCanonicalType(ParamType)
3849 : IntegerType);
John Wiegley429bb272011-04-08 18:41:53 +00003850 return Owned(Arg);
Douglas Gregor6ae5e662009-02-10 23:36:10 +00003851 }
Douglas Gregora35284b2009-02-11 00:19:33 +00003852
John McCall6bb80172010-03-30 21:47:33 +00003853 DeclAccessPair FoundResult; // temporary for ResolveOverloadedFunction
3854
Douglas Gregorb7a09262010-04-01 18:32:35 +00003855 // C++0x [temp.arg.nontype]p5 bullets 2, 4 and 6 permit conversion
3856 // from a template argument of type std::nullptr_t to a non-type
3857 // template parameter of type pointer to object, pointer to
3858 // function, or pointer-to-member, respectively.
Douglas Gregor84ee2ee2011-05-21 23:15:46 +00003859 if (ArgType->isNullPtrType()) {
3860 if (ParamType->isPointerType() || ParamType->isMemberPointerType()) {
3861 Converted = TemplateArgument((NamedDecl *)0);
3862 return Owned(Arg);
3863 }
3864
3865 if (ParamType->isNullPtrType()) {
3866 llvm::APSInt Zero(Context.getTypeSize(Context.NullPtrTy), true);
3867 Converted = TemplateArgument(Zero, Context.NullPtrTy);
3868 return Owned(Arg);
3869 }
Douglas Gregorb7a09262010-04-01 18:32:35 +00003870 }
3871
Douglas Gregorb86b0572009-02-11 01:18:59 +00003872 // Handle pointer-to-function, reference-to-function, and
3873 // pointer-to-member-function all in (roughly) the same way.
3874 if (// -- For a non-type template-parameter of type pointer to
3875 // function, only the function-to-pointer conversion (4.3) is
3876 // applied. If the template-argument represents a set of
3877 // overloaded functions (or a pointer to such), the matching
3878 // function is selected from the set (13.4).
3879 (ParamType->isPointerType() &&
Ted Kremenek6217b802009-07-29 21:53:49 +00003880 ParamType->getAs<PointerType>()->getPointeeType()->isFunctionType()) ||
Douglas Gregorb86b0572009-02-11 01:18:59 +00003881 // -- For a non-type template-parameter of type reference to
3882 // function, no conversions apply. If the template-argument
3883 // represents a set of overloaded functions, the matching
3884 // function is selected from the set (13.4).
3885 (ParamType->isReferenceType() &&
Ted Kremenek6217b802009-07-29 21:53:49 +00003886 ParamType->getAs<ReferenceType>()->getPointeeType()->isFunctionType()) ||
Douglas Gregorb86b0572009-02-11 01:18:59 +00003887 // -- For a non-type template-parameter of type pointer to
3888 // member function, no conversions apply. If the
3889 // template-argument represents a set of overloaded member
3890 // functions, the matching member function is selected from
3891 // the set (13.4).
3892 (ParamType->isMemberPointerType() &&
Ted Kremenek6217b802009-07-29 21:53:49 +00003893 ParamType->getAs<MemberPointerType>()->getPointeeType()
Douglas Gregorb86b0572009-02-11 01:18:59 +00003894 ->isFunctionType())) {
Douglas Gregorb7a09262010-04-01 18:32:35 +00003895
Douglas Gregor1a8cf732010-04-14 23:11:21 +00003896 if (Arg->getType() == Context.OverloadTy) {
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003897 if (FunctionDecl *Fn = ResolveAddressOfOverloadedFunction(Arg, ParamType,
Douglas Gregor1a8cf732010-04-14 23:11:21 +00003898 true,
3899 FoundResult)) {
3900 if (DiagnoseUseOfDecl(Fn, Arg->getSourceRange().getBegin()))
John Wiegley429bb272011-04-08 18:41:53 +00003901 return ExprError();
Douglas Gregor1a8cf732010-04-14 23:11:21 +00003902
3903 Arg = FixOverloadedFunctionReference(Arg, FoundResult, Fn);
3904 ArgType = Arg->getType();
3905 } else
John Wiegley429bb272011-04-08 18:41:53 +00003906 return ExprError();
Douglas Gregora35284b2009-02-11 00:19:33 +00003907 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003908
John Wiegley429bb272011-04-08 18:41:53 +00003909 if (!ParamType->isMemberPointerType()) {
3910 if (CheckTemplateArgumentAddressOfObjectOrFunction(*this, Param,
3911 ParamType,
3912 Arg, Converted))
3913 return ExprError();
3914 return Owned(Arg);
3915 }
Douglas Gregorb7a09262010-04-01 18:32:35 +00003916
John McCallf85e1932011-06-15 23:02:42 +00003917 bool ObjCLifetimeConversion;
Douglas Gregor14d0aee2011-01-27 00:58:17 +00003918 if (IsQualificationConversion(ArgType, ParamType.getNonReferenceType(),
John McCallf85e1932011-06-15 23:02:42 +00003919 false, ObjCLifetimeConversion)) {
Eli Friedmanc1c0dfb2011-09-27 21:58:52 +00003920 Arg = ImpCastExprToType(Arg, ParamType, CK_NoOp,
3921 Arg->getValueKind()).take();
Douglas Gregorb7a09262010-04-01 18:32:35 +00003922 } else if (!Context.hasSameUnqualifiedType(ArgType,
3923 ParamType.getNonReferenceType())) {
Douglas Gregora35284b2009-02-11 00:19:33 +00003924 // We can't perform this conversion.
Mike Stump1eb44332009-09-09 15:08:12 +00003925 Diag(Arg->getSourceRange().getBegin(),
Douglas Gregora35284b2009-02-11 00:19:33 +00003926 diag::err_template_arg_not_convertible)
Douglas Gregor2943aed2009-03-03 04:44:36 +00003927 << Arg->getType() << InstantiatedParamType << Arg->getSourceRange();
Douglas Gregora35284b2009-02-11 00:19:33 +00003928 Diag(Param->getLocation(), diag::note_template_param_here);
John Wiegley429bb272011-04-08 18:41:53 +00003929 return ExprError();
Douglas Gregora35284b2009-02-11 00:19:33 +00003930 }
Mike Stump1eb44332009-09-09 15:08:12 +00003931
John Wiegley429bb272011-04-08 18:41:53 +00003932 if (CheckTemplateArgumentPointerToMember(Arg, Converted))
3933 return ExprError();
3934 return Owned(Arg);
Douglas Gregora35284b2009-02-11 00:19:33 +00003935 }
3936
Chris Lattnerfe90de72009-02-20 21:37:53 +00003937 if (ParamType->isPointerType()) {
Douglas Gregorb86b0572009-02-11 01:18:59 +00003938 // -- for a non-type template-parameter of type pointer to
3939 // object, qualification conversions (4.4) and the
3940 // array-to-pointer conversion (4.2) are applied.
Sebastian Redl6e8ed162009-05-10 18:38:11 +00003941 // C++0x also allows a value of std::nullptr_t.
Eli Friedman13578692010-08-05 02:49:48 +00003942 assert(ParamType->getPointeeType()->isIncompleteOrObjectType() &&
Douglas Gregorb86b0572009-02-11 01:18:59 +00003943 "Only object pointers allowed here");
Douglas Gregorf684e6e2009-02-11 00:44:29 +00003944
John Wiegley429bb272011-04-08 18:41:53 +00003945 if (CheckTemplateArgumentAddressOfObjectOrFunction(*this, Param,
3946 ParamType,
3947 Arg, Converted))
3948 return ExprError();
3949 return Owned(Arg);
Douglas Gregorf684e6e2009-02-11 00:44:29 +00003950 }
Mike Stump1eb44332009-09-09 15:08:12 +00003951
Ted Kremenek6217b802009-07-29 21:53:49 +00003952 if (const ReferenceType *ParamRefType = ParamType->getAs<ReferenceType>()) {
Douglas Gregorb86b0572009-02-11 01:18:59 +00003953 // -- For a non-type template-parameter of type reference to
3954 // object, no conversions apply. The type referred to by the
3955 // reference may be more cv-qualified than the (otherwise
3956 // identical) type of the template-argument. The
3957 // template-parameter is bound directly to the
3958 // template-argument, which must be an lvalue.
Eli Friedman13578692010-08-05 02:49:48 +00003959 assert(ParamRefType->getPointeeType()->isIncompleteOrObjectType() &&
Douglas Gregorb86b0572009-02-11 01:18:59 +00003960 "Only object references allowed here");
Douglas Gregorf684e6e2009-02-11 00:44:29 +00003961
Douglas Gregor1a8cf732010-04-14 23:11:21 +00003962 if (Arg->getType() == Context.OverloadTy) {
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003963 if (FunctionDecl *Fn = ResolveAddressOfOverloadedFunction(Arg,
3964 ParamRefType->getPointeeType(),
Douglas Gregor1a8cf732010-04-14 23:11:21 +00003965 true,
3966 FoundResult)) {
3967 if (DiagnoseUseOfDecl(Fn, Arg->getSourceRange().getBegin()))
John Wiegley429bb272011-04-08 18:41:53 +00003968 return ExprError();
Douglas Gregor1a8cf732010-04-14 23:11:21 +00003969
3970 Arg = FixOverloadedFunctionReference(Arg, FoundResult, Fn);
3971 ArgType = Arg->getType();
3972 } else
John Wiegley429bb272011-04-08 18:41:53 +00003973 return ExprError();
Douglas Gregorb86b0572009-02-11 01:18:59 +00003974 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003975
John Wiegley429bb272011-04-08 18:41:53 +00003976 if (CheckTemplateArgumentAddressOfObjectOrFunction(*this, Param,
3977 ParamType,
3978 Arg, Converted))
3979 return ExprError();
3980 return Owned(Arg);
Douglas Gregorb86b0572009-02-11 01:18:59 +00003981 }
Douglas Gregor658bbb52009-02-11 16:16:59 +00003982
3983 // -- For a non-type template-parameter of type pointer to data
3984 // member, qualification conversions (4.4) are applied.
3985 assert(ParamType->isMemberPointerType() && "Only pointers to members remain");
3986
John McCallf85e1932011-06-15 23:02:42 +00003987 bool ObjCLifetimeConversion;
Douglas Gregor8e6563b2009-02-11 18:22:40 +00003988 if (Context.hasSameUnqualifiedType(ParamType, ArgType)) {
Douglas Gregor658bbb52009-02-11 16:16:59 +00003989 // Types match exactly: nothing more to do here.
John McCallf85e1932011-06-15 23:02:42 +00003990 } else if (IsQualificationConversion(ArgType, ParamType, false,
3991 ObjCLifetimeConversion)) {
Eli Friedmanc1c0dfb2011-09-27 21:58:52 +00003992 Arg = ImpCastExprToType(Arg, ParamType, CK_NoOp,
3993 Arg->getValueKind()).take();
Douglas Gregor658bbb52009-02-11 16:16:59 +00003994 } else {
3995 // We can't perform this conversion.
Mike Stump1eb44332009-09-09 15:08:12 +00003996 Diag(Arg->getSourceRange().getBegin(),
Douglas Gregor658bbb52009-02-11 16:16:59 +00003997 diag::err_template_arg_not_convertible)
Douglas Gregor2943aed2009-03-03 04:44:36 +00003998 << Arg->getType() << InstantiatedParamType << Arg->getSourceRange();
Douglas Gregor658bbb52009-02-11 16:16:59 +00003999 Diag(Param->getLocation(), diag::note_template_param_here);
John Wiegley429bb272011-04-08 18:41:53 +00004000 return ExprError();
Douglas Gregor658bbb52009-02-11 16:16:59 +00004001 }
4002
John Wiegley429bb272011-04-08 18:41:53 +00004003 if (CheckTemplateArgumentPointerToMember(Arg, Converted))
4004 return ExprError();
4005 return Owned(Arg);
Douglas Gregorc15cb382009-02-09 23:23:08 +00004006}
4007
4008/// \brief Check a template argument against its corresponding
4009/// template template parameter.
4010///
4011/// This routine implements the semantics of C++ [temp.arg.template].
4012/// It returns true if an error occurred, and false otherwise.
4013bool Sema::CheckTemplateArgument(TemplateTemplateParmDecl *Param,
Douglas Gregor788cd062009-11-11 01:00:40 +00004014 const TemplateArgumentLoc &Arg) {
4015 TemplateName Name = Arg.getArgument().getAsTemplate();
4016 TemplateDecl *Template = Name.getAsTemplateDecl();
4017 if (!Template) {
4018 // Any dependent template name is fine.
4019 assert(Name.isDependent() && "Non-dependent template isn't a declaration?");
4020 return false;
4021 }
Douglas Gregordd0574e2009-02-10 00:24:35 +00004022
Richard Smith3e4c6c42011-05-05 21:57:07 +00004023 // C++0x [temp.arg.template]p1:
Douglas Gregordd0574e2009-02-10 00:24:35 +00004024 // A template-argument for a template template-parameter shall be
Richard Smith3e4c6c42011-05-05 21:57:07 +00004025 // the name of a class template or an alias template, expressed as an
4026 // id-expression. When the template-argument names a class template, only
Douglas Gregordd0574e2009-02-10 00:24:35 +00004027 // primary class templates are considered when matching the
4028 // template template argument with the corresponding parameter;
4029 // partial specializations are not considered even if their
4030 // parameter lists match that of the template template parameter.
Douglas Gregorba1ecb52009-06-12 19:43:02 +00004031 //
4032 // Note that we also allow template template parameters here, which
4033 // will happen when we are dealing with, e.g., class template
4034 // partial specializations.
Mike Stump1eb44332009-09-09 15:08:12 +00004035 if (!isa<ClassTemplateDecl>(Template) &&
Richard Smith3e4c6c42011-05-05 21:57:07 +00004036 !isa<TemplateTemplateParmDecl>(Template) &&
4037 !isa<TypeAliasTemplateDecl>(Template)) {
Mike Stump1eb44332009-09-09 15:08:12 +00004038 assert(isa<FunctionTemplateDecl>(Template) &&
Douglas Gregordd0574e2009-02-10 00:24:35 +00004039 "Only function templates are possible here");
Douglas Gregor788cd062009-11-11 01:00:40 +00004040 Diag(Arg.getLocation(), diag::err_template_arg_not_class_template);
Douglas Gregore53060f2009-06-25 22:08:12 +00004041 Diag(Template->getLocation(), diag::note_template_arg_refers_here_func)
Douglas Gregordd0574e2009-02-10 00:24:35 +00004042 << Template;
4043 }
4044
4045 return !TemplateParameterListsAreEqual(Template->getTemplateParameters(),
4046 Param->getTemplateParameters(),
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004047 true,
Douglas Gregorfb898e12009-11-12 16:20:59 +00004048 TPL_TemplateTemplateArgumentMatch,
Douglas Gregor788cd062009-11-11 01:00:40 +00004049 Arg.getLocation());
Douglas Gregorc15cb382009-02-09 23:23:08 +00004050}
4051
Douglas Gregor02024a92010-03-28 02:42:43 +00004052/// \brief Given a non-type template argument that refers to a
4053/// declaration and the type of its corresponding non-type template
4054/// parameter, produce an expression that properly refers to that
4055/// declaration.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004056ExprResult
Douglas Gregor02024a92010-03-28 02:42:43 +00004057Sema::BuildExpressionFromDeclTemplateArgument(const TemplateArgument &Arg,
4058 QualType ParamType,
4059 SourceLocation Loc) {
4060 assert(Arg.getKind() == TemplateArgument::Declaration &&
4061 "Only declaration template arguments permitted here");
4062 ValueDecl *VD = cast<ValueDecl>(Arg.getAsDecl());
4063
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004064 if (VD->getDeclContext()->isRecord() &&
Douglas Gregor02024a92010-03-28 02:42:43 +00004065 (isa<CXXMethodDecl>(VD) || isa<FieldDecl>(VD))) {
4066 // If the value is a class member, we might have a pointer-to-member.
4067 // Determine whether the non-type template template parameter is of
4068 // pointer-to-member type. If so, we need to build an appropriate
4069 // expression for a pointer-to-member, since a "normal" DeclRefExpr
4070 // would refer to the member itself.
4071 if (ParamType->isMemberPointerType()) {
4072 QualType ClassType
4073 = Context.getTypeDeclType(cast<RecordDecl>(VD->getDeclContext()));
4074 NestedNameSpecifier *Qualifier
John McCall9ae2f072010-08-23 23:25:46 +00004075 = NestedNameSpecifier::Create(Context, 0, false,
4076 ClassType.getTypePtr());
Douglas Gregor02024a92010-03-28 02:42:43 +00004077 CXXScopeSpec SS;
Douglas Gregorc34348a2011-02-24 17:54:50 +00004078 SS.MakeTrivial(Context, Qualifier, Loc);
John McCalldfa1edb2010-11-23 20:48:44 +00004079
4080 // The actual value-ness of this is unimportant, but for
4081 // internal consistency's sake, references to instance methods
4082 // are r-values.
4083 ExprValueKind VK = VK_LValue;
4084 if (isa<CXXMethodDecl>(VD) && cast<CXXMethodDecl>(VD)->isInstance())
4085 VK = VK_RValue;
4086
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004087 ExprResult RefExpr = BuildDeclRefExpr(VD,
John McCallf89e55a2010-11-18 06:31:45 +00004088 VD->getType().getNonReferenceType(),
John McCalldfa1edb2010-11-23 20:48:44 +00004089 VK,
John McCallf89e55a2010-11-18 06:31:45 +00004090 Loc,
4091 &SS);
Douglas Gregor02024a92010-03-28 02:42:43 +00004092 if (RefExpr.isInvalid())
4093 return ExprError();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004094
John McCall2de56d12010-08-25 11:45:40 +00004095 RefExpr = CreateBuiltinUnaryOp(Loc, UO_AddrOf, RefExpr.get());
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004096
Douglas Gregorc0c83002010-04-30 21:46:38 +00004097 // We might need to perform a trailing qualification conversion, since
4098 // the element type on the parameter could be more qualified than the
4099 // element type in the expression we constructed.
John McCallf85e1932011-06-15 23:02:42 +00004100 bool ObjCLifetimeConversion;
Douglas Gregorc0c83002010-04-30 21:46:38 +00004101 if (IsQualificationConversion(((Expr*) RefExpr.get())->getType(),
John McCallf85e1932011-06-15 23:02:42 +00004102 ParamType.getUnqualifiedType(), false,
4103 ObjCLifetimeConversion))
John Wiegley429bb272011-04-08 18:41:53 +00004104 RefExpr = ImpCastExprToType(RefExpr.take(), ParamType.getUnqualifiedType(), CK_NoOp);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004105
Douglas Gregor02024a92010-03-28 02:42:43 +00004106 assert(!RefExpr.isInvalid() &&
4107 Context.hasSameType(((Expr*) RefExpr.get())->getType(),
Douglas Gregorc0c83002010-04-30 21:46:38 +00004108 ParamType.getUnqualifiedType()));
Douglas Gregor02024a92010-03-28 02:42:43 +00004109 return move(RefExpr);
4110 }
4111 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004112
Douglas Gregor02024a92010-03-28 02:42:43 +00004113 QualType T = VD->getType().getNonReferenceType();
4114 if (ParamType->isPointerType()) {
Douglas Gregorb7a09262010-04-01 18:32:35 +00004115 // When the non-type template parameter is a pointer, take the
4116 // address of the declaration.
John McCallf89e55a2010-11-18 06:31:45 +00004117 ExprResult RefExpr = BuildDeclRefExpr(VD, T, VK_LValue, Loc);
Douglas Gregor02024a92010-03-28 02:42:43 +00004118 if (RefExpr.isInvalid())
4119 return ExprError();
Douglas Gregorb7a09262010-04-01 18:32:35 +00004120
4121 if (T->isFunctionType() || T->isArrayType()) {
4122 // Decay functions and arrays.
John Wiegley429bb272011-04-08 18:41:53 +00004123 RefExpr = DefaultFunctionArrayConversion(RefExpr.take());
4124 if (RefExpr.isInvalid())
4125 return ExprError();
Douglas Gregorb7a09262010-04-01 18:32:35 +00004126
4127 return move(RefExpr);
Douglas Gregor02024a92010-03-28 02:42:43 +00004128 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004129
Douglas Gregorb7a09262010-04-01 18:32:35 +00004130 // Take the address of everything else
John McCall2de56d12010-08-25 11:45:40 +00004131 return CreateBuiltinUnaryOp(Loc, UO_AddrOf, RefExpr.get());
Douglas Gregor02024a92010-03-28 02:42:43 +00004132 }
4133
John McCallf89e55a2010-11-18 06:31:45 +00004134 ExprValueKind VK = VK_RValue;
4135
Douglas Gregor02024a92010-03-28 02:42:43 +00004136 // If the non-type template parameter has reference type, qualify the
4137 // resulting declaration reference with the extra qualifiers on the
4138 // type that the reference refers to.
John McCallf89e55a2010-11-18 06:31:45 +00004139 if (const ReferenceType *TargetRef = ParamType->getAs<ReferenceType>()) {
4140 VK = VK_LValue;
4141 T = Context.getQualifiedType(T,
4142 TargetRef->getPointeeType().getQualifiers());
4143 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004144
John McCallf89e55a2010-11-18 06:31:45 +00004145 return BuildDeclRefExpr(VD, T, VK, Loc);
Douglas Gregor02024a92010-03-28 02:42:43 +00004146}
4147
4148/// \brief Construct a new expression that refers to the given
4149/// integral template argument with the given source-location
4150/// information.
4151///
4152/// This routine takes care of the mapping from an integral template
4153/// argument (which may have any integral type) to the appropriate
4154/// literal value.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004155ExprResult
Douglas Gregor02024a92010-03-28 02:42:43 +00004156Sema::BuildExpressionFromIntegralTemplateArgument(const TemplateArgument &Arg,
4157 SourceLocation Loc) {
4158 assert(Arg.getKind() == TemplateArgument::Integral &&
Douglas Gregord3731192011-01-10 07:32:04 +00004159 "Operation is only valid for integral template arguments");
Douglas Gregor02024a92010-03-28 02:42:43 +00004160 QualType T = Arg.getIntegralType();
Douglas Gregor5cee1192011-07-27 05:40:30 +00004161 if (T->isAnyCharacterType()) {
4162 CharacterLiteral::CharacterKind Kind;
4163 if (T->isWideCharType())
4164 Kind = CharacterLiteral::Wide;
4165 else if (T->isChar16Type())
4166 Kind = CharacterLiteral::UTF16;
4167 else if (T->isChar32Type())
4168 Kind = CharacterLiteral::UTF32;
4169 else
4170 Kind = CharacterLiteral::Ascii;
4171
Douglas Gregor02024a92010-03-28 02:42:43 +00004172 return Owned(new (Context) CharacterLiteral(
Douglas Gregor5cee1192011-07-27 05:40:30 +00004173 Arg.getAsIntegral()->getZExtValue(),
4174 Kind, T, Loc));
4175 }
4176
Douglas Gregor02024a92010-03-28 02:42:43 +00004177 if (T->isBooleanType())
4178 return Owned(new (Context) CXXBoolLiteralExpr(
4179 Arg.getAsIntegral()->getBoolValue(),
Chris Lattner223de242011-04-25 20:37:58 +00004180 T, Loc));
Douglas Gregor02024a92010-03-28 02:42:43 +00004181
Douglas Gregor84ee2ee2011-05-21 23:15:46 +00004182 if (T->isNullPtrType())
4183 return Owned(new (Context) CXXNullPtrLiteralExpr(Context.NullPtrTy, Loc));
4184
Chris Lattner223de242011-04-25 20:37:58 +00004185 // If this is an enum type that we're instantiating, we need to use an integer
4186 // type the same size as the enumerator. We don't want to build an
4187 // IntegerLiteral with enum type.
Peter Collingbournefb7b3632010-12-15 15:06:14 +00004188 QualType BT;
4189 if (const EnumType *ET = T->getAs<EnumType>())
Chris Lattner223de242011-04-25 20:37:58 +00004190 BT = ET->getDecl()->getIntegerType();
Peter Collingbournefb7b3632010-12-15 15:06:14 +00004191 else
4192 BT = T;
4193
John McCall4e9272d2011-07-15 07:47:58 +00004194 Expr *E = IntegerLiteral::Create(Context, *Arg.getAsIntegral(), BT, Loc);
4195 if (T->isEnumeralType()) {
4196 // FIXME: This is a hack. We need a better way to handle substituted
4197 // non-type template parameters.
4198 E = CStyleCastExpr::Create(Context, T, VK_RValue, CK_IntegralCast, E, 0,
4199 Context.getTrivialTypeSourceInfo(T, Loc),
4200 Loc, Loc);
4201 }
4202
4203 return Owned(E);
Douglas Gregor02024a92010-03-28 02:42:43 +00004204}
4205
Douglas Gregorab7ddf02011-01-12 23:45:44 +00004206/// \brief Match two template parameters within template parameter lists.
4207static bool MatchTemplateParameterKind(Sema &S, NamedDecl *New, NamedDecl *Old,
4208 bool Complain,
4209 Sema::TemplateParameterListEqualKind Kind,
4210 SourceLocation TemplateArgLoc) {
4211 // Check the actual kind (type, non-type, template).
4212 if (Old->getKind() != New->getKind()) {
4213 if (Complain) {
4214 unsigned NextDiag = diag::err_template_param_different_kind;
4215 if (TemplateArgLoc.isValid()) {
4216 S.Diag(TemplateArgLoc, diag::err_template_arg_template_params_mismatch);
4217 NextDiag = diag::note_template_param_different_kind;
4218 }
4219 S.Diag(New->getLocation(), NextDiag)
4220 << (Kind != Sema::TPL_TemplateMatch);
4221 S.Diag(Old->getLocation(), diag::note_template_prev_declaration)
4222 << (Kind != Sema::TPL_TemplateMatch);
4223 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004224
Douglas Gregorab7ddf02011-01-12 23:45:44 +00004225 return false;
4226 }
4227
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004228 // Check that both are parameter packs are neither are parameter packs.
4229 // However, if we are matching a template template argument to a
Douglas Gregora0347822011-01-13 00:08:50 +00004230 // template template parameter, the template template parameter can have
4231 // a parameter pack where the template template argument does not.
4232 if (Old->isTemplateParameterPack() != New->isTemplateParameterPack() &&
4233 !(Kind == Sema::TPL_TemplateTemplateArgumentMatch &&
4234 Old->isTemplateParameterPack())) {
Douglas Gregorab7ddf02011-01-12 23:45:44 +00004235 if (Complain) {
4236 unsigned NextDiag = diag::err_template_parameter_pack_non_pack;
4237 if (TemplateArgLoc.isValid()) {
4238 S.Diag(TemplateArgLoc,
4239 diag::err_template_arg_template_params_mismatch);
4240 NextDiag = diag::note_template_parameter_pack_non_pack;
4241 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004242
Douglas Gregorab7ddf02011-01-12 23:45:44 +00004243 unsigned ParamKind = isa<TemplateTypeParmDecl>(New)? 0
4244 : isa<NonTypeTemplateParmDecl>(New)? 1
4245 : 2;
4246 S.Diag(New->getLocation(), NextDiag)
4247 << ParamKind << New->isParameterPack();
4248 S.Diag(Old->getLocation(), diag::note_template_parameter_pack_here)
4249 << ParamKind << Old->isParameterPack();
4250 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004251
Douglas Gregorab7ddf02011-01-12 23:45:44 +00004252 return false;
4253 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004254
Douglas Gregorab7ddf02011-01-12 23:45:44 +00004255 // For non-type template parameters, check the type of the parameter.
4256 if (NonTypeTemplateParmDecl *OldNTTP
4257 = dyn_cast<NonTypeTemplateParmDecl>(Old)) {
4258 NonTypeTemplateParmDecl *NewNTTP = cast<NonTypeTemplateParmDecl>(New);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004259
Douglas Gregorab7ddf02011-01-12 23:45:44 +00004260 // If we are matching a template template argument to a template
4261 // template parameter and one of the non-type template parameter types
4262 // is dependent, then we must wait until template instantiation time
4263 // to actually compare the arguments.
4264 if (Kind == Sema::TPL_TemplateTemplateArgumentMatch &&
4265 (OldNTTP->getType()->isDependentType() ||
4266 NewNTTP->getType()->isDependentType()))
4267 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004268
Douglas Gregorab7ddf02011-01-12 23:45:44 +00004269 if (!S.Context.hasSameType(OldNTTP->getType(), NewNTTP->getType())) {
4270 if (Complain) {
4271 unsigned NextDiag = diag::err_template_nontype_parm_different_type;
4272 if (TemplateArgLoc.isValid()) {
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004273 S.Diag(TemplateArgLoc,
Douglas Gregorab7ddf02011-01-12 23:45:44 +00004274 diag::err_template_arg_template_params_mismatch);
4275 NextDiag = diag::note_template_nontype_parm_different_type;
4276 }
4277 S.Diag(NewNTTP->getLocation(), NextDiag)
4278 << NewNTTP->getType()
4279 << (Kind != Sema::TPL_TemplateMatch);
4280 S.Diag(OldNTTP->getLocation(),
4281 diag::note_template_nontype_parm_prev_declaration)
4282 << OldNTTP->getType();
4283 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004284
Douglas Gregorab7ddf02011-01-12 23:45:44 +00004285 return false;
4286 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004287
Douglas Gregorab7ddf02011-01-12 23:45:44 +00004288 return true;
4289 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004290
Douglas Gregorab7ddf02011-01-12 23:45:44 +00004291 // For template template parameters, check the template parameter types.
4292 // The template parameter lists of template template
4293 // parameters must agree.
4294 if (TemplateTemplateParmDecl *OldTTP
4295 = dyn_cast<TemplateTemplateParmDecl>(Old)) {
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004296 TemplateTemplateParmDecl *NewTTP = cast<TemplateTemplateParmDecl>(New);
Douglas Gregorab7ddf02011-01-12 23:45:44 +00004297 return S.TemplateParameterListsAreEqual(NewTTP->getTemplateParameters(),
4298 OldTTP->getTemplateParameters(),
4299 Complain,
4300 (Kind == Sema::TPL_TemplateMatch
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004301 ? Sema::TPL_TemplateTemplateParmMatch
Douglas Gregorab7ddf02011-01-12 23:45:44 +00004302 : Kind),
4303 TemplateArgLoc);
4304 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004305
Douglas Gregorab7ddf02011-01-12 23:45:44 +00004306 return true;
4307}
Douglas Gregor02024a92010-03-28 02:42:43 +00004308
Douglas Gregora0347822011-01-13 00:08:50 +00004309/// \brief Diagnose a known arity mismatch when comparing template argument
4310/// lists.
4311static
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004312void DiagnoseTemplateParameterListArityMismatch(Sema &S,
Douglas Gregora0347822011-01-13 00:08:50 +00004313 TemplateParameterList *New,
4314 TemplateParameterList *Old,
4315 Sema::TemplateParameterListEqualKind Kind,
4316 SourceLocation TemplateArgLoc) {
4317 unsigned NextDiag = diag::err_template_param_list_different_arity;
4318 if (TemplateArgLoc.isValid()) {
4319 S.Diag(TemplateArgLoc, diag::err_template_arg_template_params_mismatch);
4320 NextDiag = diag::note_template_param_list_different_arity;
4321 }
4322 S.Diag(New->getTemplateLoc(), NextDiag)
4323 << (New->size() > Old->size())
4324 << (Kind != Sema::TPL_TemplateMatch)
4325 << SourceRange(New->getTemplateLoc(), New->getRAngleLoc());
4326 S.Diag(Old->getTemplateLoc(), diag::note_template_prev_declaration)
4327 << (Kind != Sema::TPL_TemplateMatch)
4328 << SourceRange(Old->getTemplateLoc(), Old->getRAngleLoc());
4329}
4330
Douglas Gregorddc29e12009-02-06 22:42:48 +00004331/// \brief Determine whether the given template parameter lists are
4332/// equivalent.
4333///
Mike Stump1eb44332009-09-09 15:08:12 +00004334/// \param New The new template parameter list, typically written in the
Douglas Gregorddc29e12009-02-06 22:42:48 +00004335/// source code as part of a new template declaration.
4336///
4337/// \param Old The old template parameter list, typically found via
4338/// name lookup of the template declared with this template parameter
4339/// list.
4340///
4341/// \param Complain If true, this routine will produce a diagnostic if
4342/// the template parameter lists are not equivalent.
4343///
Douglas Gregorfb898e12009-11-12 16:20:59 +00004344/// \param Kind describes how we are to match the template parameter lists.
Douglas Gregordd0574e2009-02-10 00:24:35 +00004345///
4346/// \param TemplateArgLoc If this source location is valid, then we
4347/// are actually checking the template parameter list of a template
4348/// argument (New) against the template parameter list of its
4349/// corresponding template template parameter (Old). We produce
4350/// slightly different diagnostics in this scenario.
4351///
Douglas Gregorddc29e12009-02-06 22:42:48 +00004352/// \returns True if the template parameter lists are equal, false
4353/// otherwise.
Mike Stump1eb44332009-09-09 15:08:12 +00004354bool
Douglas Gregorddc29e12009-02-06 22:42:48 +00004355Sema::TemplateParameterListsAreEqual(TemplateParameterList *New,
4356 TemplateParameterList *Old,
4357 bool Complain,
Douglas Gregorfb898e12009-11-12 16:20:59 +00004358 TemplateParameterListEqualKind Kind,
Douglas Gregordd0574e2009-02-10 00:24:35 +00004359 SourceLocation TemplateArgLoc) {
Douglas Gregora0347822011-01-13 00:08:50 +00004360 if (Old->size() != New->size() && Kind != TPL_TemplateTemplateArgumentMatch) {
4361 if (Complain)
4362 DiagnoseTemplateParameterListArityMismatch(*this, New, Old, Kind,
4363 TemplateArgLoc);
Douglas Gregorddc29e12009-02-06 22:42:48 +00004364
4365 return false;
4366 }
4367
Douglas Gregorab7ddf02011-01-12 23:45:44 +00004368 // C++0x [temp.arg.template]p3:
4369 // A template-argument matches a template template-parameter (call it P)
NAKAMURA Takumi00995302011-01-27 07:09:49 +00004370 // when each of the template parameters in the template-parameter-list of
Richard Smith3e4c6c42011-05-05 21:57:07 +00004371 // the template-argument's corresponding class template or alias template
NAKAMURA Takumi00995302011-01-27 07:09:49 +00004372 // (call it A) matches the corresponding template parameter in the
Douglas Gregora0347822011-01-13 00:08:50 +00004373 // template-parameter-list of P. [...]
4374 TemplateParameterList::iterator NewParm = New->begin();
4375 TemplateParameterList::iterator NewParmEnd = New->end();
Douglas Gregorddc29e12009-02-06 22:42:48 +00004376 for (TemplateParameterList::iterator OldParm = Old->begin(),
Douglas Gregora0347822011-01-13 00:08:50 +00004377 OldParmEnd = Old->end();
4378 OldParm != OldParmEnd; ++OldParm) {
Douglas Gregorc421f542011-01-13 18:47:47 +00004379 if (Kind != TPL_TemplateTemplateArgumentMatch ||
4380 !(*OldParm)->isTemplateParameterPack()) {
Douglas Gregora0347822011-01-13 00:08:50 +00004381 if (NewParm == NewParmEnd) {
4382 if (Complain)
4383 DiagnoseTemplateParameterListArityMismatch(*this, New, Old, Kind,
4384 TemplateArgLoc);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004385
Douglas Gregora0347822011-01-13 00:08:50 +00004386 return false;
4387 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004388
Douglas Gregora0347822011-01-13 00:08:50 +00004389 if (!MatchTemplateParameterKind(*this, *NewParm, *OldParm, Complain,
4390 Kind, TemplateArgLoc))
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004391 return false;
4392
Douglas Gregora0347822011-01-13 00:08:50 +00004393 ++NewParm;
4394 continue;
4395 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004396
Douglas Gregora0347822011-01-13 00:08:50 +00004397 // C++0x [temp.arg.template]p3:
NAKAMURA Takumi00995302011-01-27 07:09:49 +00004398 // [...] When P's template- parameter-list contains a template parameter
4399 // pack (14.5.3), the template parameter pack will match zero or more
4400 // template parameters or template parameter packs in the
Douglas Gregora0347822011-01-13 00:08:50 +00004401 // template-parameter-list of A with the same type and form as the
4402 // template parameter pack in P (ignoring whether those template
4403 // parameters are template parameter packs).
4404 for (; NewParm != NewParmEnd; ++NewParm) {
4405 if (!MatchTemplateParameterKind(*this, *NewParm, *OldParm, Complain,
4406 Kind, TemplateArgLoc))
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004407 return false;
Douglas Gregora0347822011-01-13 00:08:50 +00004408 }
Douglas Gregorddc29e12009-02-06 22:42:48 +00004409 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004410
Douglas Gregora0347822011-01-13 00:08:50 +00004411 // Make sure we exhausted all of the arguments.
4412 if (NewParm != NewParmEnd) {
4413 if (Complain)
4414 DiagnoseTemplateParameterListArityMismatch(*this, New, Old, Kind,
4415 TemplateArgLoc);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004416
Douglas Gregora0347822011-01-13 00:08:50 +00004417 return false;
4418 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004419
Douglas Gregorddc29e12009-02-06 22:42:48 +00004420 return true;
4421}
4422
4423/// \brief Check whether a template can be declared within this scope.
4424///
4425/// If the template declaration is valid in this scope, returns
4426/// false. Otherwise, issues a diagnostic and returns true.
Mike Stump1eb44332009-09-09 15:08:12 +00004427bool
Douglas Gregor05396e22009-08-25 17:23:04 +00004428Sema::CheckTemplateDeclScope(Scope *S, TemplateParameterList *TemplateParams) {
Douglas Gregorddc29e12009-02-06 22:42:48 +00004429 // Find the nearest enclosing declaration scope.
4430 while ((S->getFlags() & Scope::DeclScope) == 0 ||
4431 (S->getFlags() & Scope::TemplateParamScope) != 0)
4432 S = S->getParent();
Mike Stump1eb44332009-09-09 15:08:12 +00004433
Douglas Gregorddc29e12009-02-06 22:42:48 +00004434 // C++ [temp]p2:
4435 // A template-declaration can appear only as a namespace scope or
4436 // class scope declaration.
4437 DeclContext *Ctx = static_cast<DeclContext *>(S->getEntity());
Eli Friedman1503f772009-07-31 01:43:05 +00004438 if (Ctx && isa<LinkageSpecDecl>(Ctx) &&
4439 cast<LinkageSpecDecl>(Ctx)->getLanguage() != LinkageSpecDecl::lang_cxx)
Mike Stump1eb44332009-09-09 15:08:12 +00004440 return Diag(TemplateParams->getTemplateLoc(), diag::err_template_linkage)
Douglas Gregor05396e22009-08-25 17:23:04 +00004441 << TemplateParams->getSourceRange();
Mike Stump1eb44332009-09-09 15:08:12 +00004442
Eli Friedman1503f772009-07-31 01:43:05 +00004443 while (Ctx && isa<LinkageSpecDecl>(Ctx))
Douglas Gregorddc29e12009-02-06 22:42:48 +00004444 Ctx = Ctx->getParent();
Douglas Gregorddc29e12009-02-06 22:42:48 +00004445
4446 if (Ctx && (Ctx->isFileContext() || Ctx->isRecord()))
4447 return false;
4448
Mike Stump1eb44332009-09-09 15:08:12 +00004449 return Diag(TemplateParams->getTemplateLoc(),
Douglas Gregor05396e22009-08-25 17:23:04 +00004450 diag::err_template_outside_namespace_or_class_scope)
4451 << TemplateParams->getSourceRange();
Douglas Gregorddc29e12009-02-06 22:42:48 +00004452}
Douglas Gregorcc636682009-02-17 23:15:12 +00004453
Douglas Gregord5cb8762009-10-07 00:13:32 +00004454/// \brief Determine what kind of template specialization the given declaration
4455/// is.
4456static TemplateSpecializationKind getTemplateSpecializationKind(NamedDecl *D) {
4457 if (!D)
4458 return TSK_Undeclared;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004459
Douglas Gregorf6b11852009-10-08 15:14:33 +00004460 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(D))
4461 return Record->getTemplateSpecializationKind();
Douglas Gregord5cb8762009-10-07 00:13:32 +00004462 if (FunctionDecl *Function = dyn_cast<FunctionDecl>(D))
4463 return Function->getTemplateSpecializationKind();
Douglas Gregor251b4ff2009-10-08 07:24:58 +00004464 if (VarDecl *Var = dyn_cast<VarDecl>(D))
4465 return Var->getTemplateSpecializationKind();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004466
Douglas Gregord5cb8762009-10-07 00:13:32 +00004467 return TSK_Undeclared;
4468}
4469
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004470/// \brief Check whether a specialization is well-formed in the current
Douglas Gregor9302da62009-10-14 23:50:59 +00004471/// context.
Douglas Gregor88b70942009-02-25 22:02:03 +00004472///
Douglas Gregor9302da62009-10-14 23:50:59 +00004473/// This routine determines whether a template specialization can be declared
4474/// in the current context (C++ [temp.expl.spec]p2).
Douglas Gregord5cb8762009-10-07 00:13:32 +00004475///
4476/// \param S the semantic analysis object for which this check is being
4477/// performed.
4478///
4479/// \param Specialized the entity being specialized or instantiated, which
4480/// may be a kind of template (class template, function template, etc.) or
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004481/// a member of a class template (member function, static data member,
Douglas Gregord5cb8762009-10-07 00:13:32 +00004482/// member class).
4483///
4484/// \param PrevDecl the previous declaration of this entity, if any.
4485///
4486/// \param Loc the location of the explicit specialization or instantiation of
4487/// this entity.
4488///
4489/// \param IsPartialSpecialization whether this is a partial specialization of
4490/// a class template.
4491///
Douglas Gregord5cb8762009-10-07 00:13:32 +00004492/// \returns true if there was an error that we cannot recover from, false
4493/// otherwise.
4494static bool CheckTemplateSpecializationScope(Sema &S,
4495 NamedDecl *Specialized,
4496 NamedDecl *PrevDecl,
4497 SourceLocation Loc,
Douglas Gregor9302da62009-10-14 23:50:59 +00004498 bool IsPartialSpecialization) {
Douglas Gregord5cb8762009-10-07 00:13:32 +00004499 // Keep these "kind" numbers in sync with the %select statements in the
4500 // various diagnostics emitted by this routine.
4501 int EntityKind = 0;
Ted Kremenekfe62b062011-01-14 22:31:36 +00004502 if (isa<ClassTemplateDecl>(Specialized))
Douglas Gregord5cb8762009-10-07 00:13:32 +00004503 EntityKind = IsPartialSpecialization? 1 : 0;
Ted Kremenekfe62b062011-01-14 22:31:36 +00004504 else if (isa<FunctionTemplateDecl>(Specialized))
Douglas Gregord5cb8762009-10-07 00:13:32 +00004505 EntityKind = 2;
Ted Kremenekfe62b062011-01-14 22:31:36 +00004506 else if (isa<CXXMethodDecl>(Specialized))
Douglas Gregord5cb8762009-10-07 00:13:32 +00004507 EntityKind = 3;
4508 else if (isa<VarDecl>(Specialized))
4509 EntityKind = 4;
4510 else if (isa<RecordDecl>(Specialized))
4511 EntityKind = 5;
4512 else {
Douglas Gregor9302da62009-10-14 23:50:59 +00004513 S.Diag(Loc, diag::err_template_spec_unknown_kind);
4514 S.Diag(Specialized->getLocation(), diag::note_specialized_entity);
Douglas Gregord5cb8762009-10-07 00:13:32 +00004515 return true;
4516 }
4517
Douglas Gregor88b70942009-02-25 22:02:03 +00004518 // C++ [temp.expl.spec]p2:
4519 // An explicit specialization shall be declared in the namespace
4520 // of which the template is a member, or, for member templates, in
4521 // the namespace of which the enclosing class or enclosing class
4522 // template is a member. An explicit specialization of a member
4523 // function, member class or static data member of a class
4524 // template shall be declared in the namespace of which the class
4525 // template is a member. Such a declaration may also be a
4526 // definition. If the declaration is not a definition, the
4527 // specialization may be defined later in the name- space in which
4528 // the explicit specialization was declared, or in a namespace
4529 // that encloses the one in which the explicit specialization was
4530 // declared.
Sebastian Redl7a126a42010-08-31 00:36:30 +00004531 if (S.CurContext->getRedeclContext()->isFunctionOrMethod()) {
Douglas Gregord5cb8762009-10-07 00:13:32 +00004532 S.Diag(Loc, diag::err_template_spec_decl_function_scope)
Douglas Gregor9302da62009-10-14 23:50:59 +00004533 << Specialized;
Douglas Gregor88b70942009-02-25 22:02:03 +00004534 return true;
4535 }
Douglas Gregor7974c3b2009-10-07 17:21:34 +00004536
Douglas Gregor0a407472009-10-07 17:30:37 +00004537 if (S.CurContext->isRecord() && !IsPartialSpecialization) {
Francois Pichet62ec1f22011-09-17 17:15:52 +00004538 if (S.getLangOptions().MicrosoftExt) {
Francois Pichetaf0f4d02011-08-14 03:52:19 +00004539 // Do not warn for class scope explicit specialization during
4540 // instantiation, warning was already emitted during pattern
4541 // semantic analysis.
4542 if (!S.ActiveTemplateInstantiations.size())
4543 S.Diag(Loc, diag::ext_function_specialization_in_class)
4544 << Specialized;
4545 } else {
4546 S.Diag(Loc, diag::err_template_spec_decl_class_scope)
4547 << Specialized;
4548 return true;
4549 }
Douglas Gregor0a407472009-10-07 17:30:37 +00004550 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004551
Douglas Gregor7974c3b2009-10-07 17:21:34 +00004552 // C++ [temp.class.spec]p6:
4553 // A class template partial specialization may be declared or redeclared
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004554 // in any namespace scope in which its definition may be defined (14.5.1
4555 // and 14.5.2).
Douglas Gregord5cb8762009-10-07 00:13:32 +00004556 bool ComplainedAboutScope = false;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004557 DeclContext *SpecializedContext
Douglas Gregord5cb8762009-10-07 00:13:32 +00004558 = Specialized->getDeclContext()->getEnclosingNamespaceContext();
Douglas Gregor7974c3b2009-10-07 17:21:34 +00004559 DeclContext *DC = S.CurContext->getEnclosingNamespaceContext();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004560 if ((!PrevDecl ||
Douglas Gregor9302da62009-10-14 23:50:59 +00004561 getTemplateSpecializationKind(PrevDecl) == TSK_Undeclared ||
4562 getTemplateSpecializationKind(PrevDecl) == TSK_ImplicitInstantiation)){
Douglas Gregor121dc9a2010-09-12 05:08:28 +00004563 // C++ [temp.exp.spec]p2:
4564 // An explicit specialization shall be declared in the namespace of which
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004565 // the template is a member, or, for member templates, in the namespace
Douglas Gregor121dc9a2010-09-12 05:08:28 +00004566 // of which the enclosing class or enclosing class template is a member.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004567 // An explicit specialization of a member function, member class or
4568 // static data member of a class template shall be declared in the
Douglas Gregor121dc9a2010-09-12 05:08:28 +00004569 // namespace of which the class template is a member.
4570 //
4571 // C++0x [temp.expl.spec]p2:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004572 // An explicit specialization shall be declared in a namespace enclosing
Douglas Gregor121dc9a2010-09-12 05:08:28 +00004573 // the specialized template.
4574 if (!DC->InEnclosingNamespaceSetOf(SpecializedContext) &&
4575 !(S.getLangOptions().CPlusPlus0x && DC->Encloses(SpecializedContext))) {
Douglas Gregora4d5de52010-09-12 05:24:55 +00004576 bool IsCPlusPlus0xExtension
4577 = !S.getLangOptions().CPlusPlus0x && DC->Encloses(SpecializedContext);
Douglas Gregor9302da62009-10-14 23:50:59 +00004578 if (isa<TranslationUnitDecl>(SpecializedContext))
Douglas Gregora4d5de52010-09-12 05:24:55 +00004579 S.Diag(Loc, IsCPlusPlus0xExtension
4580 ? diag::ext_template_spec_decl_out_of_scope_global
4581 : diag::err_template_spec_decl_out_of_scope_global)
4582 << EntityKind << Specialized;
Douglas Gregor9302da62009-10-14 23:50:59 +00004583 else if (isa<NamespaceDecl>(SpecializedContext))
Douglas Gregora4d5de52010-09-12 05:24:55 +00004584 S.Diag(Loc, IsCPlusPlus0xExtension
4585 ? diag::ext_template_spec_decl_out_of_scope
4586 : diag::err_template_spec_decl_out_of_scope)
4587 << EntityKind << Specialized
4588 << cast<NamedDecl>(SpecializedContext);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004589
Douglas Gregor9302da62009-10-14 23:50:59 +00004590 S.Diag(Specialized->getLocation(), diag::note_specialized_entity);
4591 ComplainedAboutScope = true;
Douglas Gregor88b70942009-02-25 22:02:03 +00004592 }
Douglas Gregor88b70942009-02-25 22:02:03 +00004593 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004594
4595 // Make sure that this redeclaration (or definition) occurs in an enclosing
Douglas Gregor9302da62009-10-14 23:50:59 +00004596 // namespace.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004597 // Note that HandleDeclarator() performs this check for explicit
Douglas Gregord5cb8762009-10-07 00:13:32 +00004598 // specializations of function templates, static data members, and member
4599 // functions, so we skip the check here for those kinds of entities.
4600 // FIXME: HandleDeclarator's diagnostics aren't quite as good, though.
Douglas Gregor7974c3b2009-10-07 17:21:34 +00004601 // Should we refactor that check, so that it occurs later?
4602 if (!ComplainedAboutScope && !DC->Encloses(SpecializedContext) &&
Douglas Gregor9302da62009-10-14 23:50:59 +00004603 !(isa<FunctionTemplateDecl>(Specialized) || isa<VarDecl>(Specialized) ||
4604 isa<FunctionDecl>(Specialized))) {
Douglas Gregord5cb8762009-10-07 00:13:32 +00004605 if (isa<TranslationUnitDecl>(SpecializedContext))
4606 S.Diag(Loc, diag::err_template_spec_redecl_global_scope)
4607 << EntityKind << Specialized;
4608 else if (isa<NamespaceDecl>(SpecializedContext))
4609 S.Diag(Loc, diag::err_template_spec_redecl_out_of_scope)
4610 << EntityKind << Specialized
4611 << cast<NamedDecl>(SpecializedContext);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004612
Douglas Gregor9302da62009-10-14 23:50:59 +00004613 S.Diag(Specialized->getLocation(), diag::note_specialized_entity);
Douglas Gregor88b70942009-02-25 22:02:03 +00004614 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004615
Douglas Gregord5cb8762009-10-07 00:13:32 +00004616 // FIXME: check for specialization-after-instantiation errors and such.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004617
Douglas Gregor88b70942009-02-25 22:02:03 +00004618 return false;
4619}
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004620
Douglas Gregorbacb9492011-01-03 21:13:47 +00004621/// \brief Subroutine of Sema::CheckClassTemplatePartialSpecializationArgs
4622/// that checks non-type template partial specialization arguments.
4623static bool CheckNonTypeClassTemplatePartialSpecializationArgs(Sema &S,
4624 NonTypeTemplateParmDecl *Param,
4625 const TemplateArgument *Args,
4626 unsigned NumArgs) {
4627 for (unsigned I = 0; I != NumArgs; ++I) {
4628 if (Args[I].getKind() == TemplateArgument::Pack) {
4629 if (CheckNonTypeClassTemplatePartialSpecializationArgs(S, Param,
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004630 Args[I].pack_begin(),
Douglas Gregorbacb9492011-01-03 21:13:47 +00004631 Args[I].pack_size()))
4632 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004633
Douglas Gregore94866f2009-06-12 21:21:02 +00004634 continue;
Douglas Gregorbacb9492011-01-03 21:13:47 +00004635 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004636
Douglas Gregorbacb9492011-01-03 21:13:47 +00004637 Expr *ArgExpr = Args[I].getAsExpr();
Douglas Gregor6aa75cf2009-06-12 22:08:06 +00004638 if (!ArgExpr) {
Douglas Gregore94866f2009-06-12 21:21:02 +00004639 continue;
Douglas Gregor6aa75cf2009-06-12 22:08:06 +00004640 }
Douglas Gregore94866f2009-06-12 21:21:02 +00004641
Douglas Gregor7a21fd42011-01-03 21:37:45 +00004642 // We can have a pack expansion of any of the bullets below.
Douglas Gregorbacb9492011-01-03 21:13:47 +00004643 if (PackExpansionExpr *Expansion = dyn_cast<PackExpansionExpr>(ArgExpr))
4644 ArgExpr = Expansion->getPattern();
Douglas Gregor54c53cc2011-01-04 23:35:54 +00004645
4646 // Strip off any implicit casts we added as part of type checking.
4647 while (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(ArgExpr))
4648 ArgExpr = ICE->getSubExpr();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004649
Douglas Gregore94866f2009-06-12 21:21:02 +00004650 // C++ [temp.class.spec]p8:
4651 // A non-type argument is non-specialized if it is the name of a
4652 // non-type parameter. All other non-type arguments are
4653 // specialized.
4654 //
4655 // Below, we check the two conditions that only apply to
4656 // specialized non-type arguments, so skip any non-specialized
4657 // arguments.
4658 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(ArgExpr))
Douglas Gregor54c53cc2011-01-04 23:35:54 +00004659 if (isa<NonTypeTemplateParmDecl>(DRE->getDecl()))
Douglas Gregore94866f2009-06-12 21:21:02 +00004660 continue;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004661
Douglas Gregore94866f2009-06-12 21:21:02 +00004662 // C++ [temp.class.spec]p9:
4663 // Within the argument list of a class template partial
4664 // specialization, the following restrictions apply:
4665 // -- A partially specialized non-type argument expression
4666 // shall not involve a template parameter of the partial
4667 // specialization except when the argument expression is a
4668 // simple identifier.
4669 if (ArgExpr->isTypeDependent() || ArgExpr->isValueDependent()) {
Douglas Gregorbacb9492011-01-03 21:13:47 +00004670 S.Diag(ArgExpr->getLocStart(),
Douglas Gregore94866f2009-06-12 21:21:02 +00004671 diag::err_dependent_non_type_arg_in_partial_spec)
4672 << ArgExpr->getSourceRange();
4673 return true;
4674 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004675
Douglas Gregore94866f2009-06-12 21:21:02 +00004676 // -- The type of a template parameter corresponding to a
4677 // specialized non-type argument shall not be dependent on a
4678 // parameter of the specialization.
4679 if (Param->getType()->isDependentType()) {
Douglas Gregorbacb9492011-01-03 21:13:47 +00004680 S.Diag(ArgExpr->getLocStart(),
Douglas Gregore94866f2009-06-12 21:21:02 +00004681 diag::err_dependent_typed_non_type_arg_in_partial_spec)
4682 << Param->getType()
4683 << ArgExpr->getSourceRange();
Douglas Gregorbacb9492011-01-03 21:13:47 +00004684 S.Diag(Param->getLocation(), diag::note_template_param_here);
Douglas Gregore94866f2009-06-12 21:21:02 +00004685 return true;
4686 }
4687 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004688
Douglas Gregorbacb9492011-01-03 21:13:47 +00004689 return false;
4690}
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004691
Douglas Gregorbacb9492011-01-03 21:13:47 +00004692/// \brief Check the non-type template arguments of a class template
4693/// partial specialization according to C++ [temp.class.spec]p9.
4694///
4695/// \param TemplateParams the template parameters of the primary class
4696/// template.
4697///
4698/// \param TemplateArg the template arguments of the class template
4699/// partial specialization.
4700///
4701/// \returns true if there was an error, false otherwise.
4702static bool CheckClassTemplatePartialSpecializationArgs(Sema &S,
4703 TemplateParameterList *TemplateParams,
Chris Lattner5f9e2722011-07-23 10:55:15 +00004704 SmallVectorImpl<TemplateArgument> &TemplateArgs) {
Douglas Gregorbacb9492011-01-03 21:13:47 +00004705 const TemplateArgument *ArgList = TemplateArgs.data();
4706
4707 for (unsigned I = 0, N = TemplateParams->size(); I != N; ++I) {
4708 NonTypeTemplateParmDecl *Param
4709 = dyn_cast<NonTypeTemplateParmDecl>(TemplateParams->getParam(I));
4710 if (!Param)
4711 continue;
4712
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004713 if (CheckNonTypeClassTemplatePartialSpecializationArgs(S, Param,
Douglas Gregorbacb9492011-01-03 21:13:47 +00004714 &ArgList[I], 1))
4715 return true;
4716 }
Douglas Gregore94866f2009-06-12 21:21:02 +00004717
4718 return false;
4719}
4720
Douglas Gregordc0a11c2010-02-26 06:03:23 +00004721/// \brief Retrieve the previous declaration of the given declaration.
4722static NamedDecl *getPreviousDecl(NamedDecl *ND) {
4723 if (VarDecl *VD = dyn_cast<VarDecl>(ND))
4724 return VD->getPreviousDeclaration();
4725 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(ND))
4726 return FD->getPreviousDeclaration();
4727 if (TagDecl *TD = dyn_cast<TagDecl>(ND))
4728 return TD->getPreviousDeclaration();
Richard Smith162e1c12011-04-15 14:24:37 +00004729 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(ND))
Douglas Gregordc0a11c2010-02-26 06:03:23 +00004730 return TD->getPreviousDeclaration();
4731 if (FunctionTemplateDecl *FTD = dyn_cast<FunctionTemplateDecl>(ND))
4732 return FTD->getPreviousDeclaration();
4733 if (ClassTemplateDecl *CTD = dyn_cast<ClassTemplateDecl>(ND))
4734 return CTD->getPreviousDeclaration();
4735 return 0;
4736}
4737
John McCalld226f652010-08-21 09:40:31 +00004738DeclResult
John McCall0f434ec2009-07-31 02:45:11 +00004739Sema::ActOnClassTemplateSpecialization(Scope *S, unsigned TagSpec,
4740 TagUseKind TUK,
Mike Stump1eb44332009-09-09 15:08:12 +00004741 SourceLocation KWLoc,
Douglas Gregord023aec2011-09-09 20:53:38 +00004742 SourceLocation ModulePrivateLoc,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00004743 CXXScopeSpec &SS,
Douglas Gregor7532dc62009-03-30 22:58:21 +00004744 TemplateTy TemplateD,
Douglas Gregorcc636682009-02-17 23:15:12 +00004745 SourceLocation TemplateNameLoc,
4746 SourceLocation LAngleLoc,
Douglas Gregor40808ce2009-03-09 23:48:35 +00004747 ASTTemplateArgsPtr TemplateArgsIn,
Douglas Gregorcc636682009-02-17 23:15:12 +00004748 SourceLocation RAngleLoc,
4749 AttributeList *Attr,
4750 MultiTemplateParamsArg TemplateParameterLists) {
Douglas Gregorfc9cd612009-09-26 20:57:03 +00004751 assert(TUK != TUK_Reference && "References are not specializations");
John McCallf1bbbb42009-09-04 01:14:41 +00004752
Abramo Bagnara7f0a9152011-03-18 15:16:37 +00004753 // NOTE: KWLoc is the location of the tag keyword. This will instead
4754 // store the location of the outermost template keyword in the declaration.
4755 SourceLocation TemplateKWLoc = TemplateParameterLists.size() > 0
4756 ? TemplateParameterLists.get()[0]->getTemplateLoc() : SourceLocation();
4757
Douglas Gregorcc636682009-02-17 23:15:12 +00004758 // Find the class template we're specializing
Douglas Gregor7532dc62009-03-30 22:58:21 +00004759 TemplateName Name = TemplateD.getAsVal<TemplateName>();
Mike Stump1eb44332009-09-09 15:08:12 +00004760 ClassTemplateDecl *ClassTemplate
Douglas Gregor8b13c082009-11-12 00:46:20 +00004761 = dyn_cast_or_null<ClassTemplateDecl>(Name.getAsTemplateDecl());
4762
4763 if (!ClassTemplate) {
4764 Diag(TemplateNameLoc, diag::err_not_class_template_specialization)
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004765 << (Name.getAsTemplateDecl() &&
Douglas Gregor8b13c082009-11-12 00:46:20 +00004766 isa<TemplateTemplateParmDecl>(Name.getAsTemplateDecl()));
4767 return true;
4768 }
Douglas Gregorcc636682009-02-17 23:15:12 +00004769
Douglas Gregor1fef4e62009-10-07 22:35:40 +00004770 bool isExplicitSpecialization = false;
Douglas Gregorc8ab2562009-05-31 09:31:02 +00004771 bool isPartialSpecialization = false;
4772
Douglas Gregor88b70942009-02-25 22:02:03 +00004773 // Check the validity of the template headers that introduce this
4774 // template.
Douglas Gregorfc9cd612009-09-26 20:57:03 +00004775 // FIXME: We probably shouldn't complain about these headers for
4776 // friend declarations.
Douglas Gregor0167f3c2010-07-14 23:14:12 +00004777 bool Invalid = false;
Douglas Gregor05396e22009-08-25 17:23:04 +00004778 TemplateParameterList *TemplateParams
Douglas Gregorc8406492011-05-10 18:27:06 +00004779 = MatchTemplateParametersToScopeSpecifier(TemplateNameLoc,
4780 TemplateNameLoc,
4781 SS,
Mike Stump1eb44332009-09-09 15:08:12 +00004782 (TemplateParameterList**)TemplateParameterLists.get(),
Douglas Gregor1fef4e62009-10-07 22:35:40 +00004783 TemplateParameterLists.size(),
John McCall77e8b112010-04-13 20:37:33 +00004784 TUK == TUK_Friend,
Douglas Gregor0167f3c2010-07-14 23:14:12 +00004785 isExplicitSpecialization,
4786 Invalid);
4787 if (Invalid)
4788 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004789
Douglas Gregor05396e22009-08-25 17:23:04 +00004790 if (TemplateParams && TemplateParams->size() > 0) {
4791 isPartialSpecialization = true;
Douglas Gregor88b70942009-02-25 22:02:03 +00004792
Douglas Gregorb0ee93c2010-12-21 08:14:57 +00004793 if (TUK == TUK_Friend) {
4794 Diag(KWLoc, diag::err_partial_specialization_friend)
4795 << SourceRange(LAngleLoc, RAngleLoc);
4796 return true;
4797 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004798
Douglas Gregor05396e22009-08-25 17:23:04 +00004799 // C++ [temp.class.spec]p10:
4800 // The template parameter list of a specialization shall not
4801 // contain default template argument values.
4802 for (unsigned I = 0, N = TemplateParams->size(); I != N; ++I) {
4803 Decl *Param = TemplateParams->getParam(I);
4804 if (TemplateTypeParmDecl *TTP = dyn_cast<TemplateTypeParmDecl>(Param)) {
4805 if (TTP->hasDefaultArgument()) {
Mike Stump1eb44332009-09-09 15:08:12 +00004806 Diag(TTP->getDefaultArgumentLoc(),
Douglas Gregor05396e22009-08-25 17:23:04 +00004807 diag::err_default_arg_in_partial_spec);
John McCall833ca992009-10-29 08:12:44 +00004808 TTP->removeDefaultArgument();
Douglas Gregor05396e22009-08-25 17:23:04 +00004809 }
4810 } else if (NonTypeTemplateParmDecl *NTTP
4811 = dyn_cast<NonTypeTemplateParmDecl>(Param)) {
4812 if (Expr *DefArg = NTTP->getDefaultArgument()) {
Mike Stump1eb44332009-09-09 15:08:12 +00004813 Diag(NTTP->getDefaultArgumentLoc(),
Douglas Gregor05396e22009-08-25 17:23:04 +00004814 diag::err_default_arg_in_partial_spec)
4815 << DefArg->getSourceRange();
Abramo Bagnarad92f7a22010-06-09 09:26:05 +00004816 NTTP->removeDefaultArgument();
Douglas Gregor05396e22009-08-25 17:23:04 +00004817 }
4818 } else {
4819 TemplateTemplateParmDecl *TTP = cast<TemplateTemplateParmDecl>(Param);
Douglas Gregor788cd062009-11-11 01:00:40 +00004820 if (TTP->hasDefaultArgument()) {
4821 Diag(TTP->getDefaultArgument().getLocation(),
Douglas Gregor05396e22009-08-25 17:23:04 +00004822 diag::err_default_arg_in_partial_spec)
Douglas Gregor788cd062009-11-11 01:00:40 +00004823 << TTP->getDefaultArgument().getSourceRange();
Abramo Bagnarad92f7a22010-06-09 09:26:05 +00004824 TTP->removeDefaultArgument();
Douglas Gregorba1ecb52009-06-12 19:43:02 +00004825 }
4826 }
4827 }
Douglas Gregora735b202009-10-13 14:39:41 +00004828 } else if (TemplateParams) {
4829 if (TUK == TUK_Friend)
4830 Diag(KWLoc, diag::err_template_spec_friend)
Douglas Gregor849b2432010-03-31 17:46:05 +00004831 << FixItHint::CreateRemoval(
Douglas Gregora735b202009-10-13 14:39:41 +00004832 SourceRange(TemplateParams->getTemplateLoc(),
4833 TemplateParams->getRAngleLoc()))
4834 << SourceRange(LAngleLoc, RAngleLoc);
4835 else
4836 isExplicitSpecialization = true;
4837 } else if (TUK != TUK_Friend) {
Douglas Gregor05396e22009-08-25 17:23:04 +00004838 Diag(KWLoc, diag::err_template_spec_needs_header)
Douglas Gregor849b2432010-03-31 17:46:05 +00004839 << FixItHint::CreateInsertion(KWLoc, "template<> ");
Douglas Gregor1fef4e62009-10-07 22:35:40 +00004840 isExplicitSpecialization = true;
4841 }
Douglas Gregor88b70942009-02-25 22:02:03 +00004842
Douglas Gregorcc636682009-02-17 23:15:12 +00004843 // Check that the specialization uses the same tag kind as the
4844 // original template.
Abramo Bagnara465d41b2010-05-11 21:36:43 +00004845 TagTypeKind Kind = TypeWithKeyword::getTagTypeKindForTypeSpec(TagSpec);
4846 assert(Kind != TTK_Enum && "Invalid enum tag in class template spec!");
Douglas Gregor501c5ce2009-05-14 16:41:31 +00004847 if (!isAcceptableTagRedeclaration(ClassTemplate->getTemplatedDecl(),
Richard Trieubbf34c02011-06-10 03:11:26 +00004848 Kind, TUK == TUK_Definition, KWLoc,
Douglas Gregor501c5ce2009-05-14 16:41:31 +00004849 *ClassTemplate->getIdentifier())) {
Mike Stump1eb44332009-09-09 15:08:12 +00004850 Diag(KWLoc, diag::err_use_with_wrong_tag)
Douglas Gregora3a83512009-04-01 23:51:29 +00004851 << ClassTemplate
Douglas Gregor849b2432010-03-31 17:46:05 +00004852 << FixItHint::CreateReplacement(KWLoc,
Douglas Gregora3a83512009-04-01 23:51:29 +00004853 ClassTemplate->getTemplatedDecl()->getKindName());
Mike Stump1eb44332009-09-09 15:08:12 +00004854 Diag(ClassTemplate->getTemplatedDecl()->getLocation(),
Douglas Gregorcc636682009-02-17 23:15:12 +00004855 diag::note_previous_use);
4856 Kind = ClassTemplate->getTemplatedDecl()->getTagKind();
4857 }
4858
Douglas Gregor40808ce2009-03-09 23:48:35 +00004859 // Translate the parser's template argument list in our AST format.
John McCalld5532b62009-11-23 01:53:49 +00004860 TemplateArgumentListInfo TemplateArgs;
4861 TemplateArgs.setLAngleLoc(LAngleLoc);
4862 TemplateArgs.setRAngleLoc(RAngleLoc);
Douglas Gregor314b97f2009-11-10 19:49:08 +00004863 translateTemplateArguments(TemplateArgsIn, TemplateArgs);
Douglas Gregor40808ce2009-03-09 23:48:35 +00004864
Douglas Gregor925910d2011-01-03 20:35:03 +00004865 // Check for unexpanded parameter packs in any of the template arguments.
4866 for (unsigned I = 0, N = TemplateArgs.size(); I != N; ++I)
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004867 if (DiagnoseUnexpandedParameterPack(TemplateArgs[I],
Douglas Gregor925910d2011-01-03 20:35:03 +00004868 UPPC_PartialSpecialization))
4869 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004870
Douglas Gregorcc636682009-02-17 23:15:12 +00004871 // Check that the template argument list is well-formed for this
4872 // template.
Chris Lattner5f9e2722011-07-23 10:55:15 +00004873 SmallVector<TemplateArgument, 4> Converted;
John McCalld5532b62009-11-23 01:53:49 +00004874 if (CheckTemplateArgumentList(ClassTemplate, TemplateNameLoc,
4875 TemplateArgs, false, Converted))
Douglas Gregor212e81c2009-03-25 00:13:59 +00004876 return true;
Douglas Gregorcc636682009-02-17 23:15:12 +00004877
Douglas Gregor910f8002010-11-07 23:05:16 +00004878 assert((Converted.size() == ClassTemplate->getTemplateParameters()->size()) &&
Douglas Gregorcc636682009-02-17 23:15:12 +00004879 "Converted template argument list is too short!");
Mike Stump1eb44332009-09-09 15:08:12 +00004880
Douglas Gregorc8ab2562009-05-31 09:31:02 +00004881 // Find the class template (partial) specialization declaration that
Douglas Gregorcc636682009-02-17 23:15:12 +00004882 // corresponds to these arguments.
Douglas Gregorba1ecb52009-06-12 19:43:02 +00004883 if (isPartialSpecialization) {
Douglas Gregorbacb9492011-01-03 21:13:47 +00004884 if (CheckClassTemplatePartialSpecializationArgs(*this,
Douglas Gregore94866f2009-06-12 21:21:02 +00004885 ClassTemplate->getTemplateParameters(),
Douglas Gregorb9c66312010-12-23 17:13:55 +00004886 Converted))
Douglas Gregore94866f2009-06-12 21:21:02 +00004887 return true;
4888
Douglas Gregor561f8122011-07-01 01:22:09 +00004889 bool InstantiationDependent;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004890 if (!Name.isDependent() &&
Douglas Gregorde090962010-02-09 00:37:32 +00004891 !TemplateSpecializationType::anyDependentTemplateArguments(
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004892 TemplateArgs.getArgumentArray(),
Douglas Gregor561f8122011-07-01 01:22:09 +00004893 TemplateArgs.size(),
4894 InstantiationDependent)) {
Douglas Gregorde090962010-02-09 00:37:32 +00004895 Diag(TemplateNameLoc, diag::err_partial_spec_fully_specialized)
4896 << ClassTemplate->getDeclName();
4897 isPartialSpecialization = false;
Douglas Gregorde090962010-02-09 00:37:32 +00004898 }
4899 }
Argyrios Kyrtzidiscc0b1bc2010-07-20 13:59:28 +00004900
Douglas Gregorcc636682009-02-17 23:15:12 +00004901 void *InsertPos = 0;
Douglas Gregorc8ab2562009-05-31 09:31:02 +00004902 ClassTemplateSpecializationDecl *PrevDecl = 0;
4903
4904 if (isPartialSpecialization)
Argyrios Kyrtzidiscc0b1bc2010-07-20 13:59:28 +00004905 // FIXME: Template parameter list matters, too
Douglas Gregorc8ab2562009-05-31 09:31:02 +00004906 PrevDecl
Douglas Gregor910f8002010-11-07 23:05:16 +00004907 = ClassTemplate->findPartialSpecialization(Converted.data(),
4908 Converted.size(),
Argyrios Kyrtzidiscc0b1bc2010-07-20 13:59:28 +00004909 InsertPos);
Douglas Gregorc8ab2562009-05-31 09:31:02 +00004910 else
4911 PrevDecl
Douglas Gregor910f8002010-11-07 23:05:16 +00004912 = ClassTemplate->findSpecialization(Converted.data(),
4913 Converted.size(), InsertPos);
Douglas Gregorcc636682009-02-17 23:15:12 +00004914
4915 ClassTemplateSpecializationDecl *Specialization = 0;
4916
Douglas Gregor88b70942009-02-25 22:02:03 +00004917 // Check whether we can declare a class template specialization in
4918 // the current scope.
Douglas Gregorfc9cd612009-09-26 20:57:03 +00004919 if (TUK != TUK_Friend &&
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004920 CheckTemplateSpecializationScope(*this, ClassTemplate, PrevDecl,
4921 TemplateNameLoc,
Douglas Gregor9302da62009-10-14 23:50:59 +00004922 isPartialSpecialization))
Douglas Gregor212e81c2009-03-25 00:13:59 +00004923 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004924
Douglas Gregorb88e8882009-07-30 17:40:51 +00004925 // The canonical type
4926 QualType CanonType;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004927 if (PrevDecl &&
Douglas Gregorfc9cd612009-09-26 20:57:03 +00004928 (PrevDecl->getSpecializationKind() == TSK_Undeclared ||
Douglas Gregorde090962010-02-09 00:37:32 +00004929 TUK == TUK_Friend)) {
Douglas Gregorcc636682009-02-17 23:15:12 +00004930 // Since the only prior class template specialization with these
Douglas Gregorfc9cd612009-09-26 20:57:03 +00004931 // arguments was referenced but not declared, or we're only
4932 // referencing this specialization as a friend, reuse that
Abramo Bagnara7f0a9152011-03-18 15:16:37 +00004933 // declaration node as our own, updating its source location and
4934 // the list of outer template parameters to reflect our new declaration.
Douglas Gregorcc636682009-02-17 23:15:12 +00004935 Specialization = PrevDecl;
Douglas Gregor6bc9f7e2009-02-25 22:18:32 +00004936 Specialization->setLocation(TemplateNameLoc);
Abramo Bagnara7f0a9152011-03-18 15:16:37 +00004937 if (TemplateParameterLists.size() > 0) {
4938 Specialization->setTemplateParameterListsInfo(Context,
4939 TemplateParameterLists.size(),
4940 (TemplateParameterList**) TemplateParameterLists.release());
4941 }
Douglas Gregorcc636682009-02-17 23:15:12 +00004942 PrevDecl = 0;
Douglas Gregorb88e8882009-07-30 17:40:51 +00004943 CanonType = Context.getTypeDeclType(Specialization);
Douglas Gregorc8ab2562009-05-31 09:31:02 +00004944 } else if (isPartialSpecialization) {
Douglas Gregorb88e8882009-07-30 17:40:51 +00004945 // Build the canonical type that describes the converted template
4946 // arguments of the class template partial specialization.
Douglas Gregorde090962010-02-09 00:37:32 +00004947 TemplateName CanonTemplate = Context.getCanonicalTemplateName(Name);
4948 CanonType = Context.getTemplateSpecializationType(CanonTemplate,
Douglas Gregorb9c66312010-12-23 17:13:55 +00004949 Converted.data(),
4950 Converted.size());
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004951
4952 if (Context.hasSameType(CanonType,
Douglas Gregorb9c66312010-12-23 17:13:55 +00004953 ClassTemplate->getInjectedClassNameSpecialization())) {
4954 // C++ [temp.class.spec]p9b3:
4955 //
4956 // -- The argument list of the specialization shall not be identical
4957 // to the implicit argument list of the primary template.
4958 Diag(TemplateNameLoc, diag::err_partial_spec_args_match_primary_template)
Douglas Gregor8d267c52011-09-09 02:06:17 +00004959 << (TUK == TUK_Definition)
4960 << FixItHint::CreateRemoval(SourceRange(LAngleLoc, RAngleLoc));
Douglas Gregorb9c66312010-12-23 17:13:55 +00004961 return CheckClassTemplate(S, TagSpec, TUK, KWLoc, SS,
4962 ClassTemplate->getIdentifier(),
4963 TemplateNameLoc,
4964 Attr,
4965 TemplateParams,
Douglas Gregore7612302011-09-09 19:05:14 +00004966 AS_none, /*ModulePrivateLoc=*/SourceLocation(),
Abramo Bagnara7f0a9152011-03-18 15:16:37 +00004967 TemplateParameterLists.size() - 1,
Abramo Bagnarac57c17d2011-03-10 13:28:31 +00004968 (TemplateParameterList**) TemplateParameterLists.release());
Douglas Gregorb9c66312010-12-23 17:13:55 +00004969 }
Douglas Gregorb88e8882009-07-30 17:40:51 +00004970
Douglas Gregorc8ab2562009-05-31 09:31:02 +00004971 // Create a new class template partial specialization declaration node.
Douglas Gregorc8ab2562009-05-31 09:31:02 +00004972 ClassTemplatePartialSpecializationDecl *PrevPartial
4973 = cast_or_null<ClassTemplatePartialSpecializationDecl>(PrevDecl);
Douglas Gregordc60c1e2010-04-30 05:56:50 +00004974 unsigned SequenceNumber = PrevPartial? PrevPartial->getSequenceNumber()
Argyrios Kyrtzidiscc0b1bc2010-07-20 13:59:28 +00004975 : ClassTemplate->getNextPartialSpecSequenceNumber();
Mike Stump1eb44332009-09-09 15:08:12 +00004976 ClassTemplatePartialSpecializationDecl *Partial
Douglas Gregor13c85772010-05-06 00:28:52 +00004977 = ClassTemplatePartialSpecializationDecl::Create(Context, Kind,
Douglas Gregorc8ab2562009-05-31 09:31:02 +00004978 ClassTemplate->getDeclContext(),
Abramo Bagnaraba877ad2011-03-09 14:09:51 +00004979 KWLoc, TemplateNameLoc,
Anders Carlsson91fdf6f2009-06-05 04:06:48 +00004980 TemplateParams,
4981 ClassTemplate,
Douglas Gregor910f8002010-11-07 23:05:16 +00004982 Converted.data(),
4983 Converted.size(),
John McCalld5532b62009-11-23 01:53:49 +00004984 TemplateArgs,
John McCall3cb0ebd2010-03-10 03:28:59 +00004985 CanonType,
Douglas Gregordc60c1e2010-04-30 05:56:50 +00004986 PrevPartial,
4987 SequenceNumber);
John McCallb6217662010-03-15 10:12:16 +00004988 SetNestedNameSpecifier(Partial, SS);
Abramo Bagnara7f0a9152011-03-18 15:16:37 +00004989 if (TemplateParameterLists.size() > 1 && SS.isSet()) {
Douglas Gregorc722ea42010-06-15 17:44:38 +00004990 Partial->setTemplateParameterListsInfo(Context,
Abramo Bagnara7f0a9152011-03-18 15:16:37 +00004991 TemplateParameterLists.size() - 1,
Abramo Bagnara9b934882010-06-12 08:15:14 +00004992 (TemplateParameterList**) TemplateParameterLists.release());
4993 }
Douglas Gregorc8ab2562009-05-31 09:31:02 +00004994
Argyrios Kyrtzidiscc0b1bc2010-07-20 13:59:28 +00004995 if (!PrevPartial)
4996 ClassTemplate->AddPartialSpecialization(Partial, InsertPos);
Douglas Gregorc8ab2562009-05-31 09:31:02 +00004997 Specialization = Partial;
Douglas Gregor031a5882009-06-13 00:26:55 +00004998
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004999 // If we are providing an explicit specialization of a member class
Douglas Gregored9c0f92009-10-29 00:04:11 +00005000 // template specialization, make a note of that.
5001 if (PrevPartial && PrevPartial->getInstantiatedFromMember())
5002 PrevPartial->setMemberSpecialization();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005003
Douglas Gregor031a5882009-06-13 00:26:55 +00005004 // Check that all of the template parameters of the class template
5005 // partial specialization are deducible from the template
5006 // arguments. If not, this class template partial specialization
5007 // will never be used.
Chris Lattner5f9e2722011-07-23 10:55:15 +00005008 SmallVector<bool, 8> DeducibleParams;
Douglas Gregor031a5882009-06-13 00:26:55 +00005009 DeducibleParams.resize(TemplateParams->size());
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005010 MarkUsedTemplateParameters(Partial->getTemplateArgs(), true,
Douglas Gregored9c0f92009-10-29 00:04:11 +00005011 TemplateParams->getDepth(),
Douglas Gregore73bb602009-09-14 21:25:05 +00005012 DeducibleParams);
Douglas Gregor031a5882009-06-13 00:26:55 +00005013 unsigned NumNonDeducible = 0;
5014 for (unsigned I = 0, N = DeducibleParams.size(); I != N; ++I)
5015 if (!DeducibleParams[I])
5016 ++NumNonDeducible;
5017
5018 if (NumNonDeducible) {
5019 Diag(TemplateNameLoc, diag::warn_partial_specs_not_deducible)
5020 << (NumNonDeducible > 1)
5021 << SourceRange(TemplateNameLoc, RAngleLoc);
5022 for (unsigned I = 0, N = DeducibleParams.size(); I != N; ++I) {
5023 if (!DeducibleParams[I]) {
5024 NamedDecl *Param = cast<NamedDecl>(TemplateParams->getParam(I));
5025 if (Param->getDeclName())
Mike Stump1eb44332009-09-09 15:08:12 +00005026 Diag(Param->getLocation(),
Douglas Gregor031a5882009-06-13 00:26:55 +00005027 diag::note_partial_spec_unused_parameter)
5028 << Param->getDeclName();
5029 else
Mike Stump1eb44332009-09-09 15:08:12 +00005030 Diag(Param->getLocation(),
Douglas Gregor031a5882009-06-13 00:26:55 +00005031 diag::note_partial_spec_unused_parameter)
Benjamin Kramer476d8b82010-08-11 14:47:12 +00005032 << "<anonymous>";
Douglas Gregor031a5882009-06-13 00:26:55 +00005033 }
5034 }
5035 }
Douglas Gregorcc636682009-02-17 23:15:12 +00005036 } else {
5037 // Create a new class template specialization declaration node for
Douglas Gregorfc9cd612009-09-26 20:57:03 +00005038 // this explicit specialization or friend declaration.
Douglas Gregorcc636682009-02-17 23:15:12 +00005039 Specialization
Douglas Gregor13c85772010-05-06 00:28:52 +00005040 = ClassTemplateSpecializationDecl::Create(Context, Kind,
Douglas Gregorcc636682009-02-17 23:15:12 +00005041 ClassTemplate->getDeclContext(),
Abramo Bagnaraba877ad2011-03-09 14:09:51 +00005042 KWLoc, TemplateNameLoc,
Mike Stump1eb44332009-09-09 15:08:12 +00005043 ClassTemplate,
Douglas Gregor910f8002010-11-07 23:05:16 +00005044 Converted.data(),
5045 Converted.size(),
Douglas Gregorcc636682009-02-17 23:15:12 +00005046 PrevDecl);
John McCallb6217662010-03-15 10:12:16 +00005047 SetNestedNameSpecifier(Specialization, SS);
Abramo Bagnara7f0a9152011-03-18 15:16:37 +00005048 if (TemplateParameterLists.size() > 0) {
Douglas Gregorc722ea42010-06-15 17:44:38 +00005049 Specialization->setTemplateParameterListsInfo(Context,
Abramo Bagnara7f0a9152011-03-18 15:16:37 +00005050 TemplateParameterLists.size(),
Abramo Bagnara9b934882010-06-12 08:15:14 +00005051 (TemplateParameterList**) TemplateParameterLists.release());
5052 }
Douglas Gregorcc636682009-02-17 23:15:12 +00005053
Argyrios Kyrtzidiscc0b1bc2010-07-20 13:59:28 +00005054 if (!PrevDecl)
5055 ClassTemplate->AddSpecialization(Specialization, InsertPos);
Douglas Gregorb88e8882009-07-30 17:40:51 +00005056
5057 CanonType = Context.getTypeDeclType(Specialization);
Douglas Gregorcc636682009-02-17 23:15:12 +00005058 }
5059
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00005060 // C++ [temp.expl.spec]p6:
5061 // If a template, a member template or the member of a class template is
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005062 // explicitly specialized then that specialization shall be declared
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00005063 // before the first use of that specialization that would cause an implicit
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005064 // instantiation to take place, in every translation unit in which such a
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00005065 // use occurs; no diagnostic is required.
5066 if (PrevDecl && PrevDecl->getPointOfInstantiation().isValid()) {
Douglas Gregordc0a11c2010-02-26 06:03:23 +00005067 bool Okay = false;
5068 for (NamedDecl *Prev = PrevDecl; Prev; Prev = getPreviousDecl(Prev)) {
5069 // Is there any previous explicit specialization declaration?
5070 if (getTemplateSpecializationKind(Prev) == TSK_ExplicitSpecialization) {
5071 Okay = true;
5072 break;
5073 }
5074 }
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00005075
Douglas Gregordc0a11c2010-02-26 06:03:23 +00005076 if (!Okay) {
5077 SourceRange Range(TemplateNameLoc, RAngleLoc);
5078 Diag(TemplateNameLoc, diag::err_specialization_after_instantiation)
5079 << Context.getTypeDeclType(Specialization) << Range;
5080
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005081 Diag(PrevDecl->getPointOfInstantiation(),
Douglas Gregordc0a11c2010-02-26 06:03:23 +00005082 diag::note_instantiation_required_here)
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005083 << (PrevDecl->getTemplateSpecializationKind()
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00005084 != TSK_ImplicitInstantiation);
Douglas Gregordc0a11c2010-02-26 06:03:23 +00005085 return true;
5086 }
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00005087 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005088
Douglas Gregorfc9cd612009-09-26 20:57:03 +00005089 // If this is not a friend, note that this is an explicit specialization.
5090 if (TUK != TUK_Friend)
5091 Specialization->setSpecializationKind(TSK_ExplicitSpecialization);
Douglas Gregorcc636682009-02-17 23:15:12 +00005092
5093 // Check that this isn't a redefinition of this specialization.
John McCall0f434ec2009-07-31 02:45:11 +00005094 if (TUK == TUK_Definition) {
Douglas Gregor952b0172010-02-11 01:04:33 +00005095 if (RecordDecl *Def = Specialization->getDefinition()) {
Douglas Gregorcc636682009-02-17 23:15:12 +00005096 SourceRange Range(TemplateNameLoc, RAngleLoc);
Mike Stump1eb44332009-09-09 15:08:12 +00005097 Diag(TemplateNameLoc, diag::err_redefinition)
Douglas Gregorc8ab2562009-05-31 09:31:02 +00005098 << Context.getTypeDeclType(Specialization) << Range;
Douglas Gregorcc636682009-02-17 23:15:12 +00005099 Diag(Def->getLocation(), diag::note_previous_definition);
5100 Specialization->setInvalidDecl();
Douglas Gregor212e81c2009-03-25 00:13:59 +00005101 return true;
Douglas Gregorcc636682009-02-17 23:15:12 +00005102 }
5103 }
5104
John McCall7f1b9872010-12-18 03:30:47 +00005105 if (Attr)
5106 ProcessDeclAttributeList(S, Specialization, Attr);
5107
Douglas Gregord023aec2011-09-09 20:53:38 +00005108 if (ModulePrivateLoc.isValid())
5109 Diag(Specialization->getLocation(), diag::err_module_private_specialization)
5110 << (isPartialSpecialization? 1 : 0)
5111 << FixItHint::CreateRemoval(ModulePrivateLoc);
5112
Douglas Gregorfc705b82009-02-26 22:19:44 +00005113 // Build the fully-sugared type for this class template
5114 // specialization as the user wrote in the specialization
5115 // itself. This means that we'll pretty-print the type retrieved
5116 // from the specialization's declaration the way that the user
5117 // actually wrote the specialization, rather than formatting the
5118 // name based on the "canonical" representation used to store the
5119 // template arguments in the specialization.
John McCall3cb0ebd2010-03-10 03:28:59 +00005120 TypeSourceInfo *WrittenTy
5121 = Context.getTemplateSpecializationTypeInfo(Name, TemplateNameLoc,
5122 TemplateArgs, CanonType);
Abramo Bagnarac98971d2010-06-12 07:44:57 +00005123 if (TUK != TUK_Friend) {
Douglas Gregorfc9cd612009-09-26 20:57:03 +00005124 Specialization->setTypeAsWritten(WrittenTy);
Abramo Bagnara7f0a9152011-03-18 15:16:37 +00005125 Specialization->setTemplateKeywordLoc(TemplateKWLoc);
Abramo Bagnarac98971d2010-06-12 07:44:57 +00005126 }
Douglas Gregor40808ce2009-03-09 23:48:35 +00005127 TemplateArgsIn.release();
Douglas Gregorcc636682009-02-17 23:15:12 +00005128
Douglas Gregor6bc9f7e2009-02-25 22:18:32 +00005129 // C++ [temp.expl.spec]p9:
5130 // A template explicit specialization is in the scope of the
5131 // namespace in which the template was defined.
5132 //
5133 // We actually implement this paragraph where we set the semantic
5134 // context (in the creation of the ClassTemplateSpecializationDecl),
5135 // but we also maintain the lexical context where the actual
5136 // definition occurs.
Douglas Gregorcc636682009-02-17 23:15:12 +00005137 Specialization->setLexicalDeclContext(CurContext);
Mike Stump1eb44332009-09-09 15:08:12 +00005138
Douglas Gregorcc636682009-02-17 23:15:12 +00005139 // We may be starting the definition of this specialization.
John McCall0f434ec2009-07-31 02:45:11 +00005140 if (TUK == TUK_Definition)
Douglas Gregorcc636682009-02-17 23:15:12 +00005141 Specialization->startDefinition();
5142
Douglas Gregorfc9cd612009-09-26 20:57:03 +00005143 if (TUK == TUK_Friend) {
5144 FriendDecl *Friend = FriendDecl::Create(Context, CurContext,
5145 TemplateNameLoc,
John McCall32f2fb52010-03-25 18:04:51 +00005146 WrittenTy,
Douglas Gregorfc9cd612009-09-26 20:57:03 +00005147 /*FIXME:*/KWLoc);
5148 Friend->setAccess(AS_public);
5149 CurContext->addDecl(Friend);
5150 } else {
5151 // Add the specialization into its lexical context, so that it can
5152 // be seen when iterating through the list of declarations in that
5153 // context. However, specializations are not found by name lookup.
5154 CurContext->addDecl(Specialization);
5155 }
John McCalld226f652010-08-21 09:40:31 +00005156 return Specialization;
Douglas Gregorcc636682009-02-17 23:15:12 +00005157}
Douglas Gregord57959a2009-03-27 23:10:48 +00005158
John McCalld226f652010-08-21 09:40:31 +00005159Decl *Sema::ActOnTemplateDeclarator(Scope *S,
Douglas Gregore542c862009-06-23 23:11:28 +00005160 MultiTemplateParamsArg TemplateParameterLists,
John McCalld226f652010-08-21 09:40:31 +00005161 Declarator &D) {
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +00005162 return HandleDeclarator(S, D, move(TemplateParameterLists));
Douglas Gregore542c862009-06-23 23:11:28 +00005163}
5164
John McCalld226f652010-08-21 09:40:31 +00005165Decl *Sema::ActOnStartOfFunctionTemplateDef(Scope *FnBodyScope,
Douglas Gregor52591bf2009-06-24 00:54:41 +00005166 MultiTemplateParamsArg TemplateParameterLists,
John McCalld226f652010-08-21 09:40:31 +00005167 Declarator &D) {
Douglas Gregor52591bf2009-06-24 00:54:41 +00005168 assert(getCurFunctionDecl() == 0 && "Function parsing confused");
Abramo Bagnara075f8f12010-12-10 16:29:40 +00005169 DeclaratorChunk::FunctionTypeInfo &FTI = D.getFunctionTypeInfo();
Mike Stump1eb44332009-09-09 15:08:12 +00005170
Douglas Gregor52591bf2009-06-24 00:54:41 +00005171 if (FTI.hasPrototype) {
Mike Stump1eb44332009-09-09 15:08:12 +00005172 // FIXME: Diagnose arguments without names in C.
Douglas Gregor52591bf2009-06-24 00:54:41 +00005173 }
Mike Stump1eb44332009-09-09 15:08:12 +00005174
Douglas Gregor52591bf2009-06-24 00:54:41 +00005175 Scope *ParentScope = FnBodyScope->getParent();
Mike Stump1eb44332009-09-09 15:08:12 +00005176
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +00005177 D.setFunctionDefinition(true);
John McCalld226f652010-08-21 09:40:31 +00005178 Decl *DP = HandleDeclarator(ParentScope, D,
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +00005179 move(TemplateParameterLists));
Mike Stump1eb44332009-09-09 15:08:12 +00005180 if (FunctionTemplateDecl *FunctionTemplate
John McCalld226f652010-08-21 09:40:31 +00005181 = dyn_cast_or_null<FunctionTemplateDecl>(DP))
Mike Stump1eb44332009-09-09 15:08:12 +00005182 return ActOnStartOfFunctionDef(FnBodyScope,
John McCalld226f652010-08-21 09:40:31 +00005183 FunctionTemplate->getTemplatedDecl());
5184 if (FunctionDecl *Function = dyn_cast_or_null<FunctionDecl>(DP))
5185 return ActOnStartOfFunctionDef(FnBodyScope, Function);
5186 return 0;
Douglas Gregor52591bf2009-06-24 00:54:41 +00005187}
5188
John McCall75042392010-02-11 01:33:53 +00005189/// \brief Strips various properties off an implicit instantiation
5190/// that has just been explicitly specialized.
5191static void StripImplicitInstantiation(NamedDecl *D) {
Sean Huntcf807c42010-08-18 23:23:40 +00005192 D->dropAttrs();
John McCall75042392010-02-11 01:33:53 +00005193
5194 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
5195 FD->setInlineSpecified(false);
5196 }
5197}
5198
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005199/// \brief Diagnose cases where we have an explicit template specialization
Douglas Gregor454885e2009-10-15 15:54:05 +00005200/// before/after an explicit template instantiation, producing diagnostics
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005201/// for those cases where they are required and determining whether the
Douglas Gregor454885e2009-10-15 15:54:05 +00005202/// new specialization/instantiation will have any effect.
5203///
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005204/// \param NewLoc the location of the new explicit specialization or
Douglas Gregor454885e2009-10-15 15:54:05 +00005205/// instantiation.
5206///
5207/// \param NewTSK the kind of the new explicit specialization or instantiation.
5208///
5209/// \param PrevDecl the previous declaration of the entity.
5210///
5211/// \param PrevTSK the kind of the old explicit specialization or instantiatin.
5212///
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005213/// \param PrevPointOfInstantiation if valid, indicates where the previus
Douglas Gregor454885e2009-10-15 15:54:05 +00005214/// declaration was instantiated (either implicitly or explicitly).
5215///
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005216/// \param HasNoEffect will be set to true to indicate that the new
Douglas Gregor454885e2009-10-15 15:54:05 +00005217/// specialization or instantiation has no effect and should be ignored.
5218///
5219/// \returns true if there was an error that should prevent the introduction of
5220/// the new declaration into the AST, false otherwise.
Douglas Gregor0d035142009-10-27 18:42:08 +00005221bool
5222Sema::CheckSpecializationInstantiationRedecl(SourceLocation NewLoc,
5223 TemplateSpecializationKind NewTSK,
5224 NamedDecl *PrevDecl,
5225 TemplateSpecializationKind PrevTSK,
5226 SourceLocation PrevPointOfInstantiation,
Abramo Bagnarac98971d2010-06-12 07:44:57 +00005227 bool &HasNoEffect) {
5228 HasNoEffect = false;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005229
Douglas Gregor454885e2009-10-15 15:54:05 +00005230 switch (NewTSK) {
5231 case TSK_Undeclared:
5232 case TSK_ImplicitInstantiation:
David Blaikieb219cfc2011-09-23 05:06:16 +00005233 llvm_unreachable("Don't check implicit instantiations here");
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005234
Douglas Gregor454885e2009-10-15 15:54:05 +00005235 case TSK_ExplicitSpecialization:
5236 switch (PrevTSK) {
5237 case TSK_Undeclared:
5238 case TSK_ExplicitSpecialization:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005239 // Okay, we're just specializing something that is either already
Douglas Gregor454885e2009-10-15 15:54:05 +00005240 // explicitly specialized or has merely been mentioned without any
5241 // instantiation.
5242 return false;
5243
5244 case TSK_ImplicitInstantiation:
5245 if (PrevPointOfInstantiation.isInvalid()) {
5246 // The declaration itself has not actually been instantiated, so it is
5247 // still okay to specialize it.
John McCall75042392010-02-11 01:33:53 +00005248 StripImplicitInstantiation(PrevDecl);
Douglas Gregor454885e2009-10-15 15:54:05 +00005249 return false;
5250 }
5251 // Fall through
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005252
Douglas Gregor454885e2009-10-15 15:54:05 +00005253 case TSK_ExplicitInstantiationDeclaration:
5254 case TSK_ExplicitInstantiationDefinition:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005255 assert((PrevTSK == TSK_ImplicitInstantiation ||
5256 PrevPointOfInstantiation.isValid()) &&
Douglas Gregor454885e2009-10-15 15:54:05 +00005257 "Explicit instantiation without point of instantiation?");
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005258
Douglas Gregor454885e2009-10-15 15:54:05 +00005259 // C++ [temp.expl.spec]p6:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005260 // If a template, a member template or the member of a class template
Douglas Gregor454885e2009-10-15 15:54:05 +00005261 // is explicitly specialized then that specialization shall be declared
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005262 // before the first use of that specialization that would cause an
Douglas Gregor454885e2009-10-15 15:54:05 +00005263 // implicit instantiation to take place, in every translation unit in
5264 // which such a use occurs; no diagnostic is required.
Douglas Gregordc0a11c2010-02-26 06:03:23 +00005265 for (NamedDecl *Prev = PrevDecl; Prev; Prev = getPreviousDecl(Prev)) {
5266 // Is there any previous explicit specialization declaration?
5267 if (getTemplateSpecializationKind(Prev) == TSK_ExplicitSpecialization)
5268 return false;
5269 }
5270
Douglas Gregor0d035142009-10-27 18:42:08 +00005271 Diag(NewLoc, diag::err_specialization_after_instantiation)
Douglas Gregor454885e2009-10-15 15:54:05 +00005272 << PrevDecl;
Douglas Gregor0d035142009-10-27 18:42:08 +00005273 Diag(PrevPointOfInstantiation, diag::note_instantiation_required_here)
Douglas Gregor454885e2009-10-15 15:54:05 +00005274 << (PrevTSK != TSK_ImplicitInstantiation);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005275
Douglas Gregor454885e2009-10-15 15:54:05 +00005276 return true;
5277 }
5278 break;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005279
Douglas Gregor454885e2009-10-15 15:54:05 +00005280 case TSK_ExplicitInstantiationDeclaration:
5281 switch (PrevTSK) {
5282 case TSK_ExplicitInstantiationDeclaration:
5283 // This explicit instantiation declaration is redundant (that's okay).
Abramo Bagnarac98971d2010-06-12 07:44:57 +00005284 HasNoEffect = true;
Douglas Gregor454885e2009-10-15 15:54:05 +00005285 return false;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005286
Douglas Gregor454885e2009-10-15 15:54:05 +00005287 case TSK_Undeclared:
5288 case TSK_ImplicitInstantiation:
5289 // We're explicitly instantiating something that may have already been
5290 // implicitly instantiated; that's fine.
5291 return false;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005292
Douglas Gregor454885e2009-10-15 15:54:05 +00005293 case TSK_ExplicitSpecialization:
5294 // C++0x [temp.explicit]p4:
5295 // For a given set of template parameters, if an explicit instantiation
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005296 // of a template appears after a declaration of an explicit
Douglas Gregor454885e2009-10-15 15:54:05 +00005297 // specialization for that template, the explicit instantiation has no
5298 // effect.
Abramo Bagnarac98971d2010-06-12 07:44:57 +00005299 HasNoEffect = true;
Douglas Gregor454885e2009-10-15 15:54:05 +00005300 return false;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005301
Douglas Gregor454885e2009-10-15 15:54:05 +00005302 case TSK_ExplicitInstantiationDefinition:
5303 // C++0x [temp.explicit]p10:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005304 // If an entity is the subject of both an explicit instantiation
5305 // declaration and an explicit instantiation definition in the same
Douglas Gregor454885e2009-10-15 15:54:05 +00005306 // translation unit, the definition shall follow the declaration.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005307 Diag(NewLoc,
Douglas Gregor0d035142009-10-27 18:42:08 +00005308 diag::err_explicit_instantiation_declaration_after_definition);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005309 Diag(PrevPointOfInstantiation,
Douglas Gregor0d035142009-10-27 18:42:08 +00005310 diag::note_explicit_instantiation_definition_here);
Douglas Gregor454885e2009-10-15 15:54:05 +00005311 assert(PrevPointOfInstantiation.isValid() &&
5312 "Explicit instantiation without point of instantiation?");
Abramo Bagnarac98971d2010-06-12 07:44:57 +00005313 HasNoEffect = true;
Douglas Gregor454885e2009-10-15 15:54:05 +00005314 return false;
5315 }
5316 break;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005317
Douglas Gregor454885e2009-10-15 15:54:05 +00005318 case TSK_ExplicitInstantiationDefinition:
5319 switch (PrevTSK) {
5320 case TSK_Undeclared:
5321 case TSK_ImplicitInstantiation:
5322 // We're explicitly instantiating something that may have already been
5323 // implicitly instantiated; that's fine.
5324 return false;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005325
Douglas Gregor454885e2009-10-15 15:54:05 +00005326 case TSK_ExplicitSpecialization:
5327 // C++ DR 259, C++0x [temp.explicit]p4:
5328 // For a given set of template parameters, if an explicit
5329 // instantiation of a template appears after a declaration of
5330 // an explicit specialization for that template, the explicit
5331 // instantiation has no effect.
5332 //
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005333 // In C++98/03 mode, we only give an extension warning here, because it
Douglas Gregorc42b6522010-04-09 21:02:29 +00005334 // is not harmful to try to explicitly instantiate something that
Douglas Gregor454885e2009-10-15 15:54:05 +00005335 // has been explicitly specialized.
Douglas Gregor0d035142009-10-27 18:42:08 +00005336 if (!getLangOptions().CPlusPlus0x) {
5337 Diag(NewLoc, diag::ext_explicit_instantiation_after_specialization)
Douglas Gregor454885e2009-10-15 15:54:05 +00005338 << PrevDecl;
Douglas Gregor0d035142009-10-27 18:42:08 +00005339 Diag(PrevDecl->getLocation(),
Douglas Gregor454885e2009-10-15 15:54:05 +00005340 diag::note_previous_template_specialization);
5341 }
Abramo Bagnarac98971d2010-06-12 07:44:57 +00005342 HasNoEffect = true;
Douglas Gregor454885e2009-10-15 15:54:05 +00005343 return false;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005344
Douglas Gregor454885e2009-10-15 15:54:05 +00005345 case TSK_ExplicitInstantiationDeclaration:
5346 // We're explicity instantiating a definition for something for which we
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005347 // were previously asked to suppress instantiations. That's fine.
Douglas Gregor454885e2009-10-15 15:54:05 +00005348 return false;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005349
Douglas Gregor454885e2009-10-15 15:54:05 +00005350 case TSK_ExplicitInstantiationDefinition:
5351 // C++0x [temp.spec]p5:
5352 // For a given template and a given set of template-arguments,
5353 // - an explicit instantiation definition shall appear at most once
5354 // in a program,
Douglas Gregor0d035142009-10-27 18:42:08 +00005355 Diag(NewLoc, diag::err_explicit_instantiation_duplicate)
Douglas Gregor454885e2009-10-15 15:54:05 +00005356 << PrevDecl;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005357 Diag(PrevPointOfInstantiation,
Douglas Gregor0d035142009-10-27 18:42:08 +00005358 diag::note_previous_explicit_instantiation);
Abramo Bagnarac98971d2010-06-12 07:44:57 +00005359 HasNoEffect = true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005360 return false;
Douglas Gregor454885e2009-10-15 15:54:05 +00005361 }
5362 break;
5363 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005364
David Blaikieb219cfc2011-09-23 05:06:16 +00005365 llvm_unreachable("Missing specialization/instantiation case?");
Douglas Gregor454885e2009-10-15 15:54:05 +00005366}
5367
John McCallaf2094e2010-04-08 09:05:18 +00005368/// \brief Perform semantic analysis for the given dependent function
5369/// template specialization. The only possible way to get a dependent
5370/// function template specialization is with a friend declaration,
5371/// like so:
5372///
5373/// template <class T> void foo(T);
5374/// template <class T> class A {
5375/// friend void foo<>(T);
5376/// };
5377///
5378/// There really isn't any useful analysis we can do here, so we
5379/// just store the information.
5380bool
5381Sema::CheckDependentFunctionTemplateSpecialization(FunctionDecl *FD,
5382 const TemplateArgumentListInfo &ExplicitTemplateArgs,
5383 LookupResult &Previous) {
5384 // Remove anything from Previous that isn't a function template in
5385 // the correct context.
Sebastian Redl7a126a42010-08-31 00:36:30 +00005386 DeclContext *FDLookupContext = FD->getDeclContext()->getRedeclContext();
John McCallaf2094e2010-04-08 09:05:18 +00005387 LookupResult::Filter F = Previous.makeFilter();
5388 while (F.hasNext()) {
5389 NamedDecl *D = F.next()->getUnderlyingDecl();
5390 if (!isa<FunctionTemplateDecl>(D) ||
Sebastian Redl7a126a42010-08-31 00:36:30 +00005391 !FDLookupContext->InEnclosingNamespaceSetOf(
5392 D->getDeclContext()->getRedeclContext()))
John McCallaf2094e2010-04-08 09:05:18 +00005393 F.erase();
5394 }
5395 F.done();
5396
5397 // Should this be diagnosed here?
5398 if (Previous.empty()) return true;
5399
5400 FD->setDependentTemplateSpecialization(Context, Previous.asUnresolvedSet(),
5401 ExplicitTemplateArgs);
5402 return false;
5403}
5404
Abramo Bagnarae03db982010-05-20 15:32:11 +00005405/// \brief Perform semantic analysis for the given function template
Douglas Gregorb9aa6b22009-09-24 23:14:47 +00005406/// specialization.
5407///
Abramo Bagnarae03db982010-05-20 15:32:11 +00005408/// This routine performs all of the semantic analysis required for an
Douglas Gregorb9aa6b22009-09-24 23:14:47 +00005409/// explicit function template specialization. On successful completion,
5410/// the function declaration \p FD will become a function template
5411/// specialization.
5412///
5413/// \param FD the function declaration, which will be updated to become a
5414/// function template specialization.
5415///
Abramo Bagnarae03db982010-05-20 15:32:11 +00005416/// \param ExplicitTemplateArgs the explicitly-provided template arguments,
5417/// if any. Note that this may be valid info even when 0 arguments are
5418/// explicitly provided as in, e.g., \c void sort<>(char*, char*);
5419/// as it anyway contains info on the angle brackets locations.
Douglas Gregorb9aa6b22009-09-24 23:14:47 +00005420///
Francois Pichet59e7c562011-07-08 06:21:47 +00005421/// \param Previous the set of declarations that may be specialized by
Abramo Bagnarae03db982010-05-20 15:32:11 +00005422/// this function specialization.
5423bool
Douglas Gregorb9aa6b22009-09-24 23:14:47 +00005424Sema::CheckFunctionTemplateSpecialization(FunctionDecl *FD,
Douglas Gregor67714232011-03-03 02:41:12 +00005425 TemplateArgumentListInfo *ExplicitTemplateArgs,
John McCall68263142009-11-18 22:49:29 +00005426 LookupResult &Previous) {
Douglas Gregorb9aa6b22009-09-24 23:14:47 +00005427 // The set of function template specializations that could match this
5428 // explicit function template specialization.
John McCallc373d482010-01-27 01:50:18 +00005429 UnresolvedSet<8> Candidates;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005430
Sebastian Redl7a126a42010-08-31 00:36:30 +00005431 DeclContext *FDLookupContext = FD->getDeclContext()->getRedeclContext();
John McCall68263142009-11-18 22:49:29 +00005432 for (LookupResult::iterator I = Previous.begin(), E = Previous.end();
5433 I != E; ++I) {
5434 NamedDecl *Ovl = (*I)->getUnderlyingDecl();
5435 if (FunctionTemplateDecl *FunTmpl = dyn_cast<FunctionTemplateDecl>(Ovl)) {
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005436 // Only consider templates found within the same semantic lookup scope as
Douglas Gregorb9aa6b22009-09-24 23:14:47 +00005437 // FD.
Sebastian Redl7a126a42010-08-31 00:36:30 +00005438 if (!FDLookupContext->InEnclosingNamespaceSetOf(
5439 Ovl->getDeclContext()->getRedeclContext()))
Douglas Gregorb9aa6b22009-09-24 23:14:47 +00005440 continue;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005441
Douglas Gregorb9aa6b22009-09-24 23:14:47 +00005442 // C++ [temp.expl.spec]p11:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005443 // A trailing template-argument can be left unspecified in the
5444 // template-id naming an explicit function template specialization
Douglas Gregorb9aa6b22009-09-24 23:14:47 +00005445 // provided it can be deduced from the function argument type.
5446 // Perform template argument deduction to determine whether we may be
5447 // specializing this template.
5448 // FIXME: It is somewhat wasteful to build
John McCall5769d612010-02-08 23:07:23 +00005449 TemplateDeductionInfo Info(Context, FD->getLocation());
Douglas Gregorb9aa6b22009-09-24 23:14:47 +00005450 FunctionDecl *Specialization = 0;
5451 if (TemplateDeductionResult TDK
John McCalld5532b62009-11-23 01:53:49 +00005452 = DeduceTemplateArguments(FunTmpl, ExplicitTemplateArgs,
Douglas Gregorb9aa6b22009-09-24 23:14:47 +00005453 FD->getType(),
5454 Specialization,
5455 Info)) {
5456 // FIXME: Template argument deduction failed; record why it failed, so
5457 // that we can provide nifty diagnostics.
5458 (void)TDK;
5459 continue;
5460 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005461
Douglas Gregorb9aa6b22009-09-24 23:14:47 +00005462 // Record this candidate.
John McCallc373d482010-01-27 01:50:18 +00005463 Candidates.addDecl(Specialization, I.getAccess());
Douglas Gregorb9aa6b22009-09-24 23:14:47 +00005464 }
5465 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005466
Douglas Gregorc5df30f2009-09-26 03:41:46 +00005467 // Find the most specialized function template.
John McCallc373d482010-01-27 01:50:18 +00005468 UnresolvedSetIterator Result
5469 = getMostSpecialized(Candidates.begin(), Candidates.end(),
Douglas Gregor5c7bf422011-01-11 17:34:58 +00005470 TPOC_Other, 0, FD->getLocation(),
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005471 PDiag(diag::err_function_template_spec_no_match)
Douglas Gregorc5df30f2009-09-26 03:41:46 +00005472 << FD->getDeclName(),
Douglas Gregorfe6b2d42010-03-29 23:34:08 +00005473 PDiag(diag::err_function_template_spec_ambiguous)
John McCalld5532b62009-11-23 01:53:49 +00005474 << FD->getDeclName() << (ExplicitTemplateArgs != 0),
Douglas Gregorfe6b2d42010-03-29 23:34:08 +00005475 PDiag(diag::note_function_template_spec_matched));
John McCallc373d482010-01-27 01:50:18 +00005476 if (Result == Candidates.end())
Douglas Gregorb9aa6b22009-09-24 23:14:47 +00005477 return true;
John McCallc373d482010-01-27 01:50:18 +00005478
5479 // Ignore access information; it doesn't figure into redeclaration checking.
5480 FunctionDecl *Specialization = cast<FunctionDecl>(*Result);
Abramo Bagnaraabfb4052011-03-04 17:20:30 +00005481
5482 FunctionTemplateSpecializationInfo *SpecInfo
5483 = Specialization->getTemplateSpecializationInfo();
5484 assert(SpecInfo && "Function template specialization info missing?");
Francois Pichet59e7c562011-07-08 06:21:47 +00005485
5486 // Note: do not overwrite location info if previous template
5487 // specialization kind was explicit.
5488 TemplateSpecializationKind TSK = SpecInfo->getTemplateSpecializationKind();
5489 if (TSK == TSK_Undeclared || TSK == TSK_ImplicitInstantiation)
5490 Specialization->setLocation(FD->getLocation());
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005491
Douglas Gregorb9aa6b22009-09-24 23:14:47 +00005492 // FIXME: Check if the prior specialization has a point of instantiation.
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00005493 // If so, we have run afoul of .
John McCall7ad650f2010-03-24 07:46:06 +00005494
5495 // If this is a friend declaration, then we're not really declaring
5496 // an explicit specialization.
5497 bool isFriend = (FD->getFriendObjectKind() != Decl::FOK_None);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005498
Douglas Gregord5cb8762009-10-07 00:13:32 +00005499 // Check the scope of this explicit specialization.
John McCall7ad650f2010-03-24 07:46:06 +00005500 if (!isFriend &&
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005501 CheckTemplateSpecializationScope(*this,
Douglas Gregord5cb8762009-10-07 00:13:32 +00005502 Specialization->getPrimaryTemplate(),
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005503 Specialization, FD->getLocation(),
Douglas Gregor9302da62009-10-14 23:50:59 +00005504 false))
Douglas Gregord5cb8762009-10-07 00:13:32 +00005505 return true;
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00005506
5507 // C++ [temp.expl.spec]p6:
5508 // If a template, a member template or the member of a class template is
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005509 // explicitly specialized then that specialization shall be declared
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00005510 // before the first use of that specialization that would cause an implicit
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005511 // instantiation to take place, in every translation unit in which such a
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00005512 // use occurs; no diagnostic is required.
Abramo Bagnarac98971d2010-06-12 07:44:57 +00005513 bool HasNoEffect = false;
John McCall7ad650f2010-03-24 07:46:06 +00005514 if (!isFriend &&
5515 CheckSpecializationInstantiationRedecl(FD->getLocation(),
John McCall75042392010-02-11 01:33:53 +00005516 TSK_ExplicitSpecialization,
5517 Specialization,
5518 SpecInfo->getTemplateSpecializationKind(),
5519 SpecInfo->getPointOfInstantiation(),
Abramo Bagnarac98971d2010-06-12 07:44:57 +00005520 HasNoEffect))
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00005521 return true;
Douglas Gregore885e182011-05-21 18:53:30 +00005522
Douglas Gregorb9aa6b22009-09-24 23:14:47 +00005523 // Mark the prior declaration as an explicit specialization, so that later
5524 // clients know that this is an explicit specialization.
Argyrios Kyrtzidisbbc64542010-08-15 01:15:20 +00005525 if (!isFriend) {
John McCall7ad650f2010-03-24 07:46:06 +00005526 SpecInfo->setTemplateSpecializationKind(TSK_ExplicitSpecialization);
Argyrios Kyrtzidisbbc64542010-08-15 01:15:20 +00005527 MarkUnusedFileScopedDecl(Specialization);
5528 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005529
Douglas Gregorb9aa6b22009-09-24 23:14:47 +00005530 // Turn the given function declaration into a function template
5531 // specialization, with the template arguments from the previous
5532 // specialization.
Abramo Bagnarae03db982010-05-20 15:32:11 +00005533 // Take copies of (semantic and syntactic) template argument lists.
5534 const TemplateArgumentList* TemplArgs = new (Context)
5535 TemplateArgumentList(Specialization->getTemplateSpecializationArgs());
Douglas Gregor838db382010-02-11 01:19:42 +00005536 FD->setFunctionTemplateSpecialization(Specialization->getPrimaryTemplate(),
Abramo Bagnarae03db982010-05-20 15:32:11 +00005537 TemplArgs, /*InsertPos=*/0,
5538 SpecInfo->getTemplateSpecializationKind(),
Argyrios Kyrtzidis71a76052011-09-22 20:07:09 +00005539 ExplicitTemplateArgs);
Douglas Gregore885e182011-05-21 18:53:30 +00005540 FD->setStorageClass(Specialization->getStorageClass());
5541
Douglas Gregorb9aa6b22009-09-24 23:14:47 +00005542 // The "previous declaration" for this function template specialization is
5543 // the prior function template specialization.
John McCall68263142009-11-18 22:49:29 +00005544 Previous.clear();
5545 Previous.addDecl(Specialization);
Douglas Gregorb9aa6b22009-09-24 23:14:47 +00005546 return false;
5547}
5548
Douglas Gregor251b4ff2009-10-08 07:24:58 +00005549/// \brief Perform semantic analysis for the given non-template member
Douglas Gregor1fef4e62009-10-07 22:35:40 +00005550/// specialization.
5551///
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005552/// This routine performs all of the semantic analysis required for an
Douglas Gregor1fef4e62009-10-07 22:35:40 +00005553/// explicit member function specialization. On successful completion,
5554/// the function declaration \p FD will become a member function
5555/// specialization.
5556///
Douglas Gregor251b4ff2009-10-08 07:24:58 +00005557/// \param Member the member declaration, which will be updated to become a
5558/// specialization.
Douglas Gregor1fef4e62009-10-07 22:35:40 +00005559///
John McCall68263142009-11-18 22:49:29 +00005560/// \param Previous the set of declarations, one of which may be specialized
5561/// by this function specialization; the set will be modified to contain the
5562/// redeclared member.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005563bool
John McCall68263142009-11-18 22:49:29 +00005564Sema::CheckMemberSpecialization(NamedDecl *Member, LookupResult &Previous) {
Douglas Gregor251b4ff2009-10-08 07:24:58 +00005565 assert(!isa<TemplateDecl>(Member) && "Only for non-template members");
John McCall77e8b112010-04-13 20:37:33 +00005566
Douglas Gregor251b4ff2009-10-08 07:24:58 +00005567 // Try to find the member we are instantiating.
5568 NamedDecl *Instantiation = 0;
5569 NamedDecl *InstantiatedFrom = 0;
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00005570 MemberSpecializationInfo *MSInfo = 0;
5571
John McCall68263142009-11-18 22:49:29 +00005572 if (Previous.empty()) {
Douglas Gregor251b4ff2009-10-08 07:24:58 +00005573 // Nowhere to look anyway.
5574 } else if (FunctionDecl *Function = dyn_cast<FunctionDecl>(Member)) {
John McCall68263142009-11-18 22:49:29 +00005575 for (LookupResult::iterator I = Previous.begin(), E = Previous.end();
5576 I != E; ++I) {
5577 NamedDecl *D = (*I)->getUnderlyingDecl();
5578 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D)) {
Douglas Gregor251b4ff2009-10-08 07:24:58 +00005579 if (Context.hasSameType(Function->getType(), Method->getType())) {
5580 Instantiation = Method;
5581 InstantiatedFrom = Method->getInstantiatedFromMemberFunction();
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00005582 MSInfo = Method->getMemberSpecializationInfo();
Douglas Gregor251b4ff2009-10-08 07:24:58 +00005583 break;
5584 }
Douglas Gregor1fef4e62009-10-07 22:35:40 +00005585 }
5586 }
Douglas Gregor251b4ff2009-10-08 07:24:58 +00005587 } else if (isa<VarDecl>(Member)) {
John McCall68263142009-11-18 22:49:29 +00005588 VarDecl *PrevVar;
5589 if (Previous.isSingleResult() &&
5590 (PrevVar = dyn_cast<VarDecl>(Previous.getFoundDecl())))
Douglas Gregor251b4ff2009-10-08 07:24:58 +00005591 if (PrevVar->isStaticDataMember()) {
John McCall68263142009-11-18 22:49:29 +00005592 Instantiation = PrevVar;
Douglas Gregor251b4ff2009-10-08 07:24:58 +00005593 InstantiatedFrom = PrevVar->getInstantiatedFromStaticDataMember();
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00005594 MSInfo = PrevVar->getMemberSpecializationInfo();
Douglas Gregor251b4ff2009-10-08 07:24:58 +00005595 }
5596 } else if (isa<RecordDecl>(Member)) {
John McCall68263142009-11-18 22:49:29 +00005597 CXXRecordDecl *PrevRecord;
5598 if (Previous.isSingleResult() &&
5599 (PrevRecord = dyn_cast<CXXRecordDecl>(Previous.getFoundDecl()))) {
5600 Instantiation = PrevRecord;
Douglas Gregor251b4ff2009-10-08 07:24:58 +00005601 InstantiatedFrom = PrevRecord->getInstantiatedFromMemberClass();
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00005602 MSInfo = PrevRecord->getMemberSpecializationInfo();
Douglas Gregor251b4ff2009-10-08 07:24:58 +00005603 }
Douglas Gregor1fef4e62009-10-07 22:35:40 +00005604 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005605
Douglas Gregor1fef4e62009-10-07 22:35:40 +00005606 if (!Instantiation) {
Douglas Gregor251b4ff2009-10-08 07:24:58 +00005607 // There is no previous declaration that matches. Since member
Douglas Gregor1fef4e62009-10-07 22:35:40 +00005608 // specializations are always out-of-line, the caller will complain about
5609 // this mismatch later.
5610 return false;
5611 }
John McCall77e8b112010-04-13 20:37:33 +00005612
5613 // If this is a friend, just bail out here before we start turning
5614 // things into explicit specializations.
5615 if (Member->getFriendObjectKind() != Decl::FOK_None) {
5616 // Preserve instantiation information.
5617 if (InstantiatedFrom && isa<CXXMethodDecl>(Member)) {
5618 cast<CXXMethodDecl>(Member)->setInstantiationOfMemberFunction(
5619 cast<CXXMethodDecl>(InstantiatedFrom),
5620 cast<CXXMethodDecl>(Instantiation)->getTemplateSpecializationKind());
5621 } else if (InstantiatedFrom && isa<CXXRecordDecl>(Member)) {
5622 cast<CXXRecordDecl>(Member)->setInstantiationOfMemberClass(
5623 cast<CXXRecordDecl>(InstantiatedFrom),
5624 cast<CXXRecordDecl>(Instantiation)->getTemplateSpecializationKind());
5625 }
5626
5627 Previous.clear();
5628 Previous.addDecl(Instantiation);
5629 return false;
5630 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005631
Douglas Gregor251b4ff2009-10-08 07:24:58 +00005632 // Make sure that this is a specialization of a member.
5633 if (!InstantiatedFrom) {
5634 Diag(Member->getLocation(), diag::err_spec_member_not_instantiated)
5635 << Member;
Douglas Gregor1fef4e62009-10-07 22:35:40 +00005636 Diag(Instantiation->getLocation(), diag::note_specialized_decl);
5637 return true;
5638 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005639
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00005640 // C++ [temp.expl.spec]p6:
5641 // If a template, a member template or the member of a class template is
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005642 // explicitly specialized then that spe- cialization shall be declared
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00005643 // before the first use of that specialization that would cause an implicit
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005644 // instantiation to take place, in every translation unit in which such a
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00005645 // use occurs; no diagnostic is required.
5646 assert(MSInfo && "Member specialization info missing?");
John McCall75042392010-02-11 01:33:53 +00005647
Abramo Bagnarac98971d2010-06-12 07:44:57 +00005648 bool HasNoEffect = false;
John McCall75042392010-02-11 01:33:53 +00005649 if (CheckSpecializationInstantiationRedecl(Member->getLocation(),
5650 TSK_ExplicitSpecialization,
5651 Instantiation,
5652 MSInfo->getTemplateSpecializationKind(),
5653 MSInfo->getPointOfInstantiation(),
Abramo Bagnarac98971d2010-06-12 07:44:57 +00005654 HasNoEffect))
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00005655 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005656
Douglas Gregor1fef4e62009-10-07 22:35:40 +00005657 // Check the scope of this explicit specialization.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005658 if (CheckTemplateSpecializationScope(*this,
Douglas Gregor251b4ff2009-10-08 07:24:58 +00005659 InstantiatedFrom,
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005660 Instantiation, Member->getLocation(),
Douglas Gregor9302da62009-10-14 23:50:59 +00005661 false))
Douglas Gregor1fef4e62009-10-07 22:35:40 +00005662 return true;
Douglas Gregor2db32322009-10-07 23:56:10 +00005663
Douglas Gregor251b4ff2009-10-08 07:24:58 +00005664 // Note that this is an explicit instantiation of a member.
Douglas Gregorf6b11852009-10-08 15:14:33 +00005665 // the original declaration to note that it is an explicit specialization
5666 // (if it was previously an implicit instantiation). This latter step
5667 // makes bookkeeping easier.
Douglas Gregor251b4ff2009-10-08 07:24:58 +00005668 if (isa<FunctionDecl>(Member)) {
Douglas Gregorf6b11852009-10-08 15:14:33 +00005669 FunctionDecl *InstantiationFunction = cast<FunctionDecl>(Instantiation);
5670 if (InstantiationFunction->getTemplateSpecializationKind() ==
5671 TSK_ImplicitInstantiation) {
5672 InstantiationFunction->setTemplateSpecializationKind(
5673 TSK_ExplicitSpecialization);
5674 InstantiationFunction->setLocation(Member->getLocation());
5675 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005676
Douglas Gregor251b4ff2009-10-08 07:24:58 +00005677 cast<FunctionDecl>(Member)->setInstantiationOfMemberFunction(
5678 cast<CXXMethodDecl>(InstantiatedFrom),
5679 TSK_ExplicitSpecialization);
Argyrios Kyrtzidisbbc64542010-08-15 01:15:20 +00005680 MarkUnusedFileScopedDecl(InstantiationFunction);
Douglas Gregor251b4ff2009-10-08 07:24:58 +00005681 } else if (isa<VarDecl>(Member)) {
Douglas Gregorf6b11852009-10-08 15:14:33 +00005682 VarDecl *InstantiationVar = cast<VarDecl>(Instantiation);
5683 if (InstantiationVar->getTemplateSpecializationKind() ==
5684 TSK_ImplicitInstantiation) {
5685 InstantiationVar->setTemplateSpecializationKind(
5686 TSK_ExplicitSpecialization);
5687 InstantiationVar->setLocation(Member->getLocation());
5688 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005689
Douglas Gregor251b4ff2009-10-08 07:24:58 +00005690 Context.setInstantiatedFromStaticDataMember(cast<VarDecl>(Member),
5691 cast<VarDecl>(InstantiatedFrom),
5692 TSK_ExplicitSpecialization);
Argyrios Kyrtzidisbbc64542010-08-15 01:15:20 +00005693 MarkUnusedFileScopedDecl(InstantiationVar);
Douglas Gregor251b4ff2009-10-08 07:24:58 +00005694 } else {
5695 assert(isa<CXXRecordDecl>(Member) && "Only member classes remain");
Douglas Gregorf6b11852009-10-08 15:14:33 +00005696 CXXRecordDecl *InstantiationClass = cast<CXXRecordDecl>(Instantiation);
5697 if (InstantiationClass->getTemplateSpecializationKind() ==
5698 TSK_ImplicitInstantiation) {
5699 InstantiationClass->setTemplateSpecializationKind(
5700 TSK_ExplicitSpecialization);
5701 InstantiationClass->setLocation(Member->getLocation());
5702 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005703
Douglas Gregor251b4ff2009-10-08 07:24:58 +00005704 cast<CXXRecordDecl>(Member)->setInstantiationOfMemberClass(
Douglas Gregorf6b11852009-10-08 15:14:33 +00005705 cast<CXXRecordDecl>(InstantiatedFrom),
5706 TSK_ExplicitSpecialization);
Douglas Gregor251b4ff2009-10-08 07:24:58 +00005707 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005708
Douglas Gregor1fef4e62009-10-07 22:35:40 +00005709 // Save the caller the trouble of having to figure out which declaration
5710 // this specialization matches.
John McCall68263142009-11-18 22:49:29 +00005711 Previous.clear();
5712 Previous.addDecl(Instantiation);
Douglas Gregor1fef4e62009-10-07 22:35:40 +00005713 return false;
5714}
5715
Douglas Gregor558c0322009-10-14 23:41:34 +00005716/// \brief Check the scope of an explicit instantiation.
Douglas Gregor669eed82010-07-13 00:10:04 +00005717///
5718/// \returns true if a serious error occurs, false otherwise.
5719static bool CheckExplicitInstantiationScope(Sema &S, NamedDecl *D,
Douglas Gregor558c0322009-10-14 23:41:34 +00005720 SourceLocation InstLoc,
5721 bool WasQualifiedName) {
Sebastian Redl7a126a42010-08-31 00:36:30 +00005722 DeclContext *OrigContext= D->getDeclContext()->getEnclosingNamespaceContext();
5723 DeclContext *CurContext = S.CurContext->getRedeclContext();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005724
Douglas Gregor669eed82010-07-13 00:10:04 +00005725 if (CurContext->isRecord()) {
5726 S.Diag(InstLoc, diag::err_explicit_instantiation_in_class)
5727 << D;
5728 return true;
5729 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005730
Douglas Gregor558c0322009-10-14 23:41:34 +00005731 // C++0x [temp.explicit]p2:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005732 // An explicit instantiation shall appear in an enclosing namespace of its
Douglas Gregor558c0322009-10-14 23:41:34 +00005733 // template.
5734 //
5735 // This is DR275, which we do not retroactively apply to C++98/03.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005736 if (S.getLangOptions().CPlusPlus0x &&
Sebastian Redl7a126a42010-08-31 00:36:30 +00005737 !CurContext->Encloses(OrigContext)) {
5738 if (NamespaceDecl *NS = dyn_cast<NamespaceDecl>(OrigContext))
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005739 S.Diag(InstLoc,
5740 S.getLangOptions().CPlusPlus0x?
Douglas Gregor2166beb2010-05-11 17:39:34 +00005741 diag::err_explicit_instantiation_out_of_scope
5742 : diag::warn_explicit_instantiation_out_of_scope_0x)
Douglas Gregor558c0322009-10-14 23:41:34 +00005743 << D << NS;
5744 else
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005745 S.Diag(InstLoc,
Douglas Gregor2166beb2010-05-11 17:39:34 +00005746 S.getLangOptions().CPlusPlus0x?
5747 diag::err_explicit_instantiation_must_be_global
5748 : diag::warn_explicit_instantiation_out_of_scope_0x)
Douglas Gregor558c0322009-10-14 23:41:34 +00005749 << D;
5750 S.Diag(D->getLocation(), diag::note_explicit_instantiation_here);
Douglas Gregor669eed82010-07-13 00:10:04 +00005751 return false;
Douglas Gregor558c0322009-10-14 23:41:34 +00005752 }
Sebastian Redl7a126a42010-08-31 00:36:30 +00005753
Douglas Gregor558c0322009-10-14 23:41:34 +00005754 // C++0x [temp.explicit]p2:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005755 // If the name declared in the explicit instantiation is an unqualified
5756 // name, the explicit instantiation shall appear in the namespace where
Douglas Gregor558c0322009-10-14 23:41:34 +00005757 // its template is declared or, if that namespace is inline (7.3.1), any
5758 // namespace from its enclosing namespace set.
5759 if (WasQualifiedName)
Douglas Gregor669eed82010-07-13 00:10:04 +00005760 return false;
Sebastian Redl7a126a42010-08-31 00:36:30 +00005761
5762 if (CurContext->InEnclosingNamespaceSetOf(OrigContext))
Douglas Gregor669eed82010-07-13 00:10:04 +00005763 return false;
Sebastian Redl7a126a42010-08-31 00:36:30 +00005764
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005765 S.Diag(InstLoc,
Douglas Gregor2166beb2010-05-11 17:39:34 +00005766 S.getLangOptions().CPlusPlus0x?
5767 diag::err_explicit_instantiation_unqualified_wrong_namespace
5768 : diag::warn_explicit_instantiation_unqualified_wrong_namespace_0x)
Sebastian Redl7a126a42010-08-31 00:36:30 +00005769 << D << OrigContext;
Douglas Gregor558c0322009-10-14 23:41:34 +00005770 S.Diag(D->getLocation(), diag::note_explicit_instantiation_here);
Douglas Gregor669eed82010-07-13 00:10:04 +00005771 return false;
Douglas Gregor558c0322009-10-14 23:41:34 +00005772}
5773
5774/// \brief Determine whether the given scope specifier has a template-id in it.
5775static bool ScopeSpecifierHasTemplateId(const CXXScopeSpec &SS) {
5776 if (!SS.isSet())
5777 return false;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005778
Douglas Gregor558c0322009-10-14 23:41:34 +00005779 // C++0x [temp.explicit]p2:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005780 // If the explicit instantiation is for a member function, a member class
Douglas Gregor558c0322009-10-14 23:41:34 +00005781 // or a static data member of a class template specialization, the name of
5782 // the class template specialization in the qualified-id for the member
5783 // name shall be a simple-template-id.
5784 //
5785 // C++98 has the same restriction, just worded differently.
5786 for (NestedNameSpecifier *NNS = (NestedNameSpecifier *)SS.getScopeRep();
5787 NNS; NNS = NNS->getPrefix())
John McCallf4c73712011-01-19 06:33:43 +00005788 if (const Type *T = NNS->getAsType())
Douglas Gregor558c0322009-10-14 23:41:34 +00005789 if (isa<TemplateSpecializationType>(T))
5790 return true;
5791
5792 return false;
5793}
5794
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00005795// Explicit instantiation of a class template specialization
John McCallf312b1e2010-08-26 23:41:50 +00005796DeclResult
Mike Stump1eb44332009-09-09 15:08:12 +00005797Sema::ActOnExplicitInstantiation(Scope *S,
Douglas Gregor45f96552009-09-04 06:33:52 +00005798 SourceLocation ExternLoc,
5799 SourceLocation TemplateLoc,
Mike Stump1eb44332009-09-09 15:08:12 +00005800 unsigned TagSpec,
Douglas Gregor93dfdb12009-05-13 00:25:59 +00005801 SourceLocation KWLoc,
5802 const CXXScopeSpec &SS,
5803 TemplateTy TemplateD,
5804 SourceLocation TemplateNameLoc,
5805 SourceLocation LAngleLoc,
5806 ASTTemplateArgsPtr TemplateArgsIn,
Douglas Gregor93dfdb12009-05-13 00:25:59 +00005807 SourceLocation RAngleLoc,
5808 AttributeList *Attr) {
5809 // Find the class template we're specializing
5810 TemplateName Name = TemplateD.getAsVal<TemplateName>();
Mike Stump1eb44332009-09-09 15:08:12 +00005811 ClassTemplateDecl *ClassTemplate
Douglas Gregor93dfdb12009-05-13 00:25:59 +00005812 = cast<ClassTemplateDecl>(Name.getAsTemplateDecl());
5813
5814 // Check that the specialization uses the same tag kind as the
5815 // original template.
Abramo Bagnara465d41b2010-05-11 21:36:43 +00005816 TagTypeKind Kind = TypeWithKeyword::getTagTypeKindForTypeSpec(TagSpec);
5817 assert(Kind != TTK_Enum &&
5818 "Invalid enum tag in class template explicit instantiation!");
Douglas Gregor501c5ce2009-05-14 16:41:31 +00005819 if (!isAcceptableTagRedeclaration(ClassTemplate->getTemplatedDecl(),
Richard Trieubbf34c02011-06-10 03:11:26 +00005820 Kind, /*isDefinition*/false, KWLoc,
Douglas Gregor501c5ce2009-05-14 16:41:31 +00005821 *ClassTemplate->getIdentifier())) {
Mike Stump1eb44332009-09-09 15:08:12 +00005822 Diag(KWLoc, diag::err_use_with_wrong_tag)
Douglas Gregor93dfdb12009-05-13 00:25:59 +00005823 << ClassTemplate
Douglas Gregor849b2432010-03-31 17:46:05 +00005824 << FixItHint::CreateReplacement(KWLoc,
Douglas Gregor93dfdb12009-05-13 00:25:59 +00005825 ClassTemplate->getTemplatedDecl()->getKindName());
Mike Stump1eb44332009-09-09 15:08:12 +00005826 Diag(ClassTemplate->getTemplatedDecl()->getLocation(),
Douglas Gregor93dfdb12009-05-13 00:25:59 +00005827 diag::note_previous_use);
5828 Kind = ClassTemplate->getTemplatedDecl()->getTagKind();
5829 }
5830
Douglas Gregor558c0322009-10-14 23:41:34 +00005831 // C++0x [temp.explicit]p2:
5832 // There are two forms of explicit instantiation: an explicit instantiation
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005833 // definition and an explicit instantiation declaration. An explicit
5834 // instantiation declaration begins with the extern keyword. [...]
Douglas Gregord5cb8762009-10-07 00:13:32 +00005835 TemplateSpecializationKind TSK
5836 = ExternLoc.isInvalid()? TSK_ExplicitInstantiationDefinition
5837 : TSK_ExplicitInstantiationDeclaration;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005838
Douglas Gregor93dfdb12009-05-13 00:25:59 +00005839 // Translate the parser's template argument list in our AST format.
John McCalld5532b62009-11-23 01:53:49 +00005840 TemplateArgumentListInfo TemplateArgs(LAngleLoc, RAngleLoc);
Douglas Gregor314b97f2009-11-10 19:49:08 +00005841 translateTemplateArguments(TemplateArgsIn, TemplateArgs);
Douglas Gregor93dfdb12009-05-13 00:25:59 +00005842
5843 // Check that the template argument list is well-formed for this
5844 // template.
Chris Lattner5f9e2722011-07-23 10:55:15 +00005845 SmallVector<TemplateArgument, 4> Converted;
John McCalld5532b62009-11-23 01:53:49 +00005846 if (CheckTemplateArgumentList(ClassTemplate, TemplateNameLoc,
5847 TemplateArgs, false, Converted))
Douglas Gregor93dfdb12009-05-13 00:25:59 +00005848 return true;
5849
Douglas Gregor910f8002010-11-07 23:05:16 +00005850 assert((Converted.size() == ClassTemplate->getTemplateParameters()->size()) &&
Douglas Gregor93dfdb12009-05-13 00:25:59 +00005851 "Converted template argument list is too short!");
Mike Stump1eb44332009-09-09 15:08:12 +00005852
Douglas Gregor93dfdb12009-05-13 00:25:59 +00005853 // Find the class template specialization declaration that
5854 // corresponds to these arguments.
Douglas Gregor93dfdb12009-05-13 00:25:59 +00005855 void *InsertPos = 0;
5856 ClassTemplateSpecializationDecl *PrevDecl
Douglas Gregor910f8002010-11-07 23:05:16 +00005857 = ClassTemplate->findSpecialization(Converted.data(),
5858 Converted.size(), InsertPos);
Douglas Gregor93dfdb12009-05-13 00:25:59 +00005859
Abramo Bagnarac98971d2010-06-12 07:44:57 +00005860 TemplateSpecializationKind PrevDecl_TSK
5861 = PrevDecl ? PrevDecl->getTemplateSpecializationKind() : TSK_Undeclared;
5862
Douglas Gregord5cb8762009-10-07 00:13:32 +00005863 // C++0x [temp.explicit]p2:
5864 // [...] An explicit instantiation shall appear in an enclosing
5865 // namespace of its template. [...]
5866 //
5867 // This is C++ DR 275.
Douglas Gregor669eed82010-07-13 00:10:04 +00005868 if (CheckExplicitInstantiationScope(*this, ClassTemplate, TemplateNameLoc,
5869 SS.isSet()))
5870 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005871
Douglas Gregor93dfdb12009-05-13 00:25:59 +00005872 ClassTemplateSpecializationDecl *Specialization = 0;
5873
Abramo Bagnarac98971d2010-06-12 07:44:57 +00005874 bool HasNoEffect = false;
Douglas Gregor93dfdb12009-05-13 00:25:59 +00005875 if (PrevDecl) {
Douglas Gregor0d035142009-10-27 18:42:08 +00005876 if (CheckSpecializationInstantiationRedecl(TemplateNameLoc, TSK,
Abramo Bagnarac98971d2010-06-12 07:44:57 +00005877 PrevDecl, PrevDecl_TSK,
Douglas Gregor89a5bea2009-10-15 22:53:21 +00005878 PrevDecl->getPointOfInstantiation(),
Abramo Bagnarac98971d2010-06-12 07:44:57 +00005879 HasNoEffect))
John McCalld226f652010-08-21 09:40:31 +00005880 return PrevDecl;
Douglas Gregor93dfdb12009-05-13 00:25:59 +00005881
Abramo Bagnarac98971d2010-06-12 07:44:57 +00005882 // Even though HasNoEffect == true means that this explicit instantiation
5883 // has no effect on semantics, we go on to put its syntax in the AST.
5884
5885 if (PrevDecl_TSK == TSK_ImplicitInstantiation ||
5886 PrevDecl_TSK == TSK_Undeclared) {
Douglas Gregor52604ab2009-09-11 21:19:12 +00005887 // Since the only prior class template specialization with these
5888 // arguments was referenced but not declared, reuse that
Abramo Bagnarac98971d2010-06-12 07:44:57 +00005889 // declaration node as our own, updating the source location
5890 // for the template name to reflect our new declaration.
5891 // (Other source locations will be updated later.)
Douglas Gregor52604ab2009-09-11 21:19:12 +00005892 Specialization = PrevDecl;
5893 Specialization->setLocation(TemplateNameLoc);
5894 PrevDecl = 0;
5895 }
Douglas Gregor89a5bea2009-10-15 22:53:21 +00005896 }
Abramo Bagnarac98971d2010-06-12 07:44:57 +00005897
Douglas Gregor52604ab2009-09-11 21:19:12 +00005898 if (!Specialization) {
Douglas Gregor93dfdb12009-05-13 00:25:59 +00005899 // Create a new class template specialization declaration node for
5900 // this explicit specialization.
5901 Specialization
Douglas Gregor13c85772010-05-06 00:28:52 +00005902 = ClassTemplateSpecializationDecl::Create(Context, Kind,
Douglas Gregor93dfdb12009-05-13 00:25:59 +00005903 ClassTemplate->getDeclContext(),
Abramo Bagnaraba877ad2011-03-09 14:09:51 +00005904 KWLoc, TemplateNameLoc,
Douglas Gregor93dfdb12009-05-13 00:25:59 +00005905 ClassTemplate,
Douglas Gregor910f8002010-11-07 23:05:16 +00005906 Converted.data(),
5907 Converted.size(),
5908 PrevDecl);
John McCallb6217662010-03-15 10:12:16 +00005909 SetNestedNameSpecifier(Specialization, SS);
Douglas Gregor93dfdb12009-05-13 00:25:59 +00005910
Argyrios Kyrtzidiscc0b1bc2010-07-20 13:59:28 +00005911 if (!HasNoEffect && !PrevDecl) {
Abramo Bagnarac98971d2010-06-12 07:44:57 +00005912 // Insert the new specialization.
Argyrios Kyrtzidiscc0b1bc2010-07-20 13:59:28 +00005913 ClassTemplate->AddSpecialization(Specialization, InsertPos);
Abramo Bagnarac98971d2010-06-12 07:44:57 +00005914 }
Douglas Gregor93dfdb12009-05-13 00:25:59 +00005915 }
5916
5917 // Build the fully-sugared type for this explicit instantiation as
5918 // the user wrote in the explicit instantiation itself. This means
5919 // that we'll pretty-print the type retrieved from the
5920 // specialization's declaration the way that the user actually wrote
5921 // the explicit instantiation, rather than formatting the name based
5922 // on the "canonical" representation used to store the template
5923 // arguments in the specialization.
John McCall3cb0ebd2010-03-10 03:28:59 +00005924 TypeSourceInfo *WrittenTy
5925 = Context.getTemplateSpecializationTypeInfo(Name, TemplateNameLoc,
5926 TemplateArgs,
Douglas Gregor93dfdb12009-05-13 00:25:59 +00005927 Context.getTypeDeclType(Specialization));
5928 Specialization->setTypeAsWritten(WrittenTy);
5929 TemplateArgsIn.release();
5930
Abramo Bagnarac98971d2010-06-12 07:44:57 +00005931 // Set source locations for keywords.
5932 Specialization->setExternLoc(ExternLoc);
5933 Specialization->setTemplateKeywordLoc(TemplateLoc);
5934
5935 // Add the explicit instantiation into its lexical context. However,
5936 // since explicit instantiations are never found by name lookup, we
5937 // just put it into the declaration context directly.
5938 Specialization->setLexicalDeclContext(CurContext);
5939 CurContext->addDecl(Specialization);
5940
5941 // Syntax is now OK, so return if it has no other effect on semantics.
5942 if (HasNoEffect) {
5943 // Set the template specialization kind.
5944 Specialization->setTemplateSpecializationKind(TSK);
John McCalld226f652010-08-21 09:40:31 +00005945 return Specialization;
Douglas Gregord78f5982009-11-25 06:01:46 +00005946 }
Douglas Gregor93dfdb12009-05-13 00:25:59 +00005947
5948 // C++ [temp.explicit]p3:
Douglas Gregor93dfdb12009-05-13 00:25:59 +00005949 // A definition of a class template or class member template
5950 // shall be in scope at the point of the explicit instantiation of
5951 // the class template or class member template.
5952 //
5953 // This check comes when we actually try to perform the
5954 // instantiation.
Douglas Gregor89a5bea2009-10-15 22:53:21 +00005955 ClassTemplateSpecializationDecl *Def
5956 = cast_or_null<ClassTemplateSpecializationDecl>(
Douglas Gregor952b0172010-02-11 01:04:33 +00005957 Specialization->getDefinition());
Douglas Gregor89a5bea2009-10-15 22:53:21 +00005958 if (!Def)
Douglas Gregor972e6ce2009-10-27 06:26:26 +00005959 InstantiateClassTemplateSpecialization(TemplateNameLoc, Specialization, TSK);
Abramo Bagnarac98971d2010-06-12 07:44:57 +00005960 else if (TSK == TSK_ExplicitInstantiationDefinition) {
Douglas Gregor6fb745b2010-05-13 16:44:06 +00005961 MarkVTableUsed(TemplateNameLoc, Specialization, true);
Abramo Bagnarac98971d2010-06-12 07:44:57 +00005962 Specialization->setPointOfInstantiation(Def->getPointOfInstantiation());
5963 }
Douglas Gregor6fb745b2010-05-13 16:44:06 +00005964
Douglas Gregor0d035142009-10-27 18:42:08 +00005965 // Instantiate the members of this class template specialization.
5966 Def = cast_or_null<ClassTemplateSpecializationDecl>(
Douglas Gregor952b0172010-02-11 01:04:33 +00005967 Specialization->getDefinition());
Rafael Espindolab0f65ca2010-03-22 23:12:48 +00005968 if (Def) {
Rafael Espindolaf075b222010-03-23 19:55:22 +00005969 TemplateSpecializationKind Old_TSK = Def->getTemplateSpecializationKind();
5970
5971 // Fix a TSK_ExplicitInstantiationDeclaration followed by a
5972 // TSK_ExplicitInstantiationDefinition
5973 if (Old_TSK == TSK_ExplicitInstantiationDeclaration &&
5974 TSK == TSK_ExplicitInstantiationDefinition)
5975 Def->setTemplateSpecializationKind(TSK);
Rafael Espindolab0f65ca2010-03-22 23:12:48 +00005976
Douglas Gregor89a5bea2009-10-15 22:53:21 +00005977 InstantiateClassTemplateSpecializationMembers(TemplateNameLoc, Def, TSK);
Rafael Espindolab0f65ca2010-03-22 23:12:48 +00005978 }
Douglas Gregor93dfdb12009-05-13 00:25:59 +00005979
Abramo Bagnarac98971d2010-06-12 07:44:57 +00005980 // Set the template specialization kind.
5981 Specialization->setTemplateSpecializationKind(TSK);
John McCalld226f652010-08-21 09:40:31 +00005982 return Specialization;
Douglas Gregor93dfdb12009-05-13 00:25:59 +00005983}
5984
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00005985// Explicit instantiation of a member class of a class template.
John McCalld226f652010-08-21 09:40:31 +00005986DeclResult
Mike Stump1eb44332009-09-09 15:08:12 +00005987Sema::ActOnExplicitInstantiation(Scope *S,
Douglas Gregor45f96552009-09-04 06:33:52 +00005988 SourceLocation ExternLoc,
5989 SourceLocation TemplateLoc,
Mike Stump1eb44332009-09-09 15:08:12 +00005990 unsigned TagSpec,
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00005991 SourceLocation KWLoc,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00005992 CXXScopeSpec &SS,
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00005993 IdentifierInfo *Name,
5994 SourceLocation NameLoc,
5995 AttributeList *Attr) {
5996
Douglas Gregor402abb52009-05-28 23:31:59 +00005997 bool Owned = false;
John McCallc4e70192009-09-11 04:59:25 +00005998 bool IsDependent = false;
John McCallf312b1e2010-08-26 23:41:50 +00005999 Decl *TagD = ActOnTag(S, TagSpec, Sema::TUK_Reference,
John McCalld226f652010-08-21 09:40:31 +00006000 KWLoc, SS, Name, NameLoc, Attr, AS_none,
Douglas Gregore7612302011-09-09 19:05:14 +00006001 /*ModulePrivateLoc=*/SourceLocation(),
John McCalld226f652010-08-21 09:40:31 +00006002 MultiTemplateParamsArg(*this, 0, 0),
Abramo Bagnaraa88cefd2010-12-03 18:54:17 +00006003 Owned, IsDependent, false, false,
Douglas Gregor1274ccd2010-10-08 23:50:27 +00006004 TypeResult());
John McCallc4e70192009-09-11 04:59:25 +00006005 assert(!IsDependent && "explicit instantiation of dependent name not yet handled");
6006
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00006007 if (!TagD)
6008 return true;
6009
John McCalld226f652010-08-21 09:40:31 +00006010 TagDecl *Tag = cast<TagDecl>(TagD);
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00006011 if (Tag->isEnum()) {
6012 Diag(TemplateLoc, diag::err_explicit_instantiation_enum)
6013 << Context.getTypeDeclType(Tag);
6014 return true;
6015 }
6016
Douglas Gregord0c87372009-05-27 17:30:49 +00006017 if (Tag->isInvalidDecl())
6018 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006019
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00006020 CXXRecordDecl *Record = cast<CXXRecordDecl>(Tag);
6021 CXXRecordDecl *Pattern = Record->getInstantiatedFromMemberClass();
6022 if (!Pattern) {
6023 Diag(TemplateLoc, diag::err_explicit_instantiation_nontemplate_type)
6024 << Context.getTypeDeclType(Record);
6025 Diag(Record->getLocation(), diag::note_nontemplate_decl_here);
6026 return true;
6027 }
6028
Douglas Gregor558c0322009-10-14 23:41:34 +00006029 // C++0x [temp.explicit]p2:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006030 // If the explicit instantiation is for a class or member class, the
6031 // elaborated-type-specifier in the declaration shall include a
Douglas Gregor558c0322009-10-14 23:41:34 +00006032 // simple-template-id.
6033 //
6034 // C++98 has the same restriction, just worded differently.
6035 if (!ScopeSpecifierHasTemplateId(SS))
Douglas Gregora2dd8282010-06-16 16:26:47 +00006036 Diag(TemplateLoc, diag::ext_explicit_instantiation_without_qualified_id)
Douglas Gregor558c0322009-10-14 23:41:34 +00006037 << Record << SS.getRange();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006038
Douglas Gregor558c0322009-10-14 23:41:34 +00006039 // C++0x [temp.explicit]p2:
6040 // There are two forms of explicit instantiation: an explicit instantiation
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006041 // definition and an explicit instantiation declaration. An explicit
Douglas Gregor558c0322009-10-14 23:41:34 +00006042 // instantiation declaration begins with the extern keyword. [...]
Douglas Gregora74bbe22009-10-14 21:46:58 +00006043 TemplateSpecializationKind TSK
6044 = ExternLoc.isInvalid()? TSK_ExplicitInstantiationDefinition
6045 : TSK_ExplicitInstantiationDeclaration;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006046
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00006047 // C++0x [temp.explicit]p2:
6048 // [...] An explicit instantiation shall appear in an enclosing
6049 // namespace of its template. [...]
6050 //
6051 // This is C++ DR 275.
Douglas Gregor558c0322009-10-14 23:41:34 +00006052 CheckExplicitInstantiationScope(*this, Record, NameLoc, true);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006053
Douglas Gregor454885e2009-10-15 15:54:05 +00006054 // Verify that it is okay to explicitly instantiate here.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006055 CXXRecordDecl *PrevDecl
Douglas Gregor583f33b2009-10-15 18:07:02 +00006056 = cast_or_null<CXXRecordDecl>(Record->getPreviousDeclaration());
Douglas Gregor952b0172010-02-11 01:04:33 +00006057 if (!PrevDecl && Record->getDefinition())
Douglas Gregor583f33b2009-10-15 18:07:02 +00006058 PrevDecl = Record;
6059 if (PrevDecl) {
Douglas Gregor454885e2009-10-15 15:54:05 +00006060 MemberSpecializationInfo *MSInfo = PrevDecl->getMemberSpecializationInfo();
Abramo Bagnarac98971d2010-06-12 07:44:57 +00006061 bool HasNoEffect = false;
Douglas Gregor454885e2009-10-15 15:54:05 +00006062 assert(MSInfo && "No member specialization information?");
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006063 if (CheckSpecializationInstantiationRedecl(TemplateLoc, TSK,
Douglas Gregor454885e2009-10-15 15:54:05 +00006064 PrevDecl,
6065 MSInfo->getTemplateSpecializationKind(),
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006066 MSInfo->getPointOfInstantiation(),
Abramo Bagnarac98971d2010-06-12 07:44:57 +00006067 HasNoEffect))
Douglas Gregor454885e2009-10-15 15:54:05 +00006068 return true;
Abramo Bagnarac98971d2010-06-12 07:44:57 +00006069 if (HasNoEffect)
Douglas Gregor454885e2009-10-15 15:54:05 +00006070 return TagD;
6071 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006072
Douglas Gregor89a5bea2009-10-15 22:53:21 +00006073 CXXRecordDecl *RecordDef
Douglas Gregor952b0172010-02-11 01:04:33 +00006074 = cast_or_null<CXXRecordDecl>(Record->getDefinition());
Douglas Gregor89a5bea2009-10-15 22:53:21 +00006075 if (!RecordDef) {
Douglas Gregorbf7643e2009-10-15 12:53:22 +00006076 // C++ [temp.explicit]p3:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006077 // A definition of a member class of a class template shall be in scope
Douglas Gregorbf7643e2009-10-15 12:53:22 +00006078 // at the point of an explicit instantiation of the member class.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006079 CXXRecordDecl *Def
Douglas Gregor952b0172010-02-11 01:04:33 +00006080 = cast_or_null<CXXRecordDecl>(Pattern->getDefinition());
Douglas Gregorbf7643e2009-10-15 12:53:22 +00006081 if (!Def) {
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00006082 Diag(TemplateLoc, diag::err_explicit_instantiation_undefined_member)
6083 << 0 << Record->getDeclName() << Record->getDeclContext();
Douglas Gregorbf7643e2009-10-15 12:53:22 +00006084 Diag(Pattern->getLocation(), diag::note_forward_declaration)
6085 << Pattern;
6086 return true;
Douglas Gregor0d035142009-10-27 18:42:08 +00006087 } else {
6088 if (InstantiateClass(NameLoc, Record, Def,
6089 getTemplateInstantiationArgs(Record),
6090 TSK))
6091 return true;
6092
Douglas Gregor952b0172010-02-11 01:04:33 +00006093 RecordDef = cast_or_null<CXXRecordDecl>(Record->getDefinition());
Douglas Gregor0d035142009-10-27 18:42:08 +00006094 if (!RecordDef)
6095 return true;
6096 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006097 }
6098
Douglas Gregor0d035142009-10-27 18:42:08 +00006099 // Instantiate all of the members of the class.
6100 InstantiateClassMembers(NameLoc, RecordDef,
6101 getTemplateInstantiationArgs(Record), TSK);
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00006102
Douglas Gregor6fb745b2010-05-13 16:44:06 +00006103 if (TSK == TSK_ExplicitInstantiationDefinition)
6104 MarkVTableUsed(NameLoc, RecordDef, true);
6105
Mike Stump390b4cc2009-05-16 07:39:55 +00006106 // FIXME: We don't have any representation for explicit instantiations of
6107 // member classes. Such a representation is not needed for compilation, but it
6108 // should be available for clients that want to see all of the declarations in
6109 // the source code.
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00006110 return TagD;
6111}
6112
John McCallf312b1e2010-08-26 23:41:50 +00006113DeclResult Sema::ActOnExplicitInstantiation(Scope *S,
6114 SourceLocation ExternLoc,
6115 SourceLocation TemplateLoc,
6116 Declarator &D) {
Douglas Gregord5a423b2009-09-25 18:43:00 +00006117 // Explicit instantiations always require a name.
Abramo Bagnara25777432010-08-11 22:01:17 +00006118 // TODO: check if/when DNInfo should replace Name.
6119 DeclarationNameInfo NameInfo = GetNameForDeclarator(D);
6120 DeclarationName Name = NameInfo.getName();
Douglas Gregord5a423b2009-09-25 18:43:00 +00006121 if (!Name) {
6122 if (!D.isInvalidType())
6123 Diag(D.getDeclSpec().getSourceRange().getBegin(),
6124 diag::err_explicit_instantiation_requires_name)
6125 << D.getDeclSpec().getSourceRange()
6126 << D.getSourceRange();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006127
Douglas Gregord5a423b2009-09-25 18:43:00 +00006128 return true;
6129 }
6130
6131 // The scope passed in may not be a decl scope. Zip up the scope tree until
6132 // we find one that is.
6133 while ((S->getFlags() & Scope::DeclScope) == 0 ||
6134 (S->getFlags() & Scope::TemplateParamScope) != 0)
6135 S = S->getParent();
6136
6137 // Determine the type of the declaration.
John McCallbf1a0282010-06-04 23:28:52 +00006138 TypeSourceInfo *T = GetTypeForDeclarator(D, S);
6139 QualType R = T->getType();
Douglas Gregord5a423b2009-09-25 18:43:00 +00006140 if (R.isNull())
6141 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006142
Douglas Gregore885e182011-05-21 18:53:30 +00006143 // C++ [dcl.stc]p1:
6144 // A storage-class-specifier shall not be specified in [...] an explicit
6145 // instantiation (14.7.2) directive.
Douglas Gregord5a423b2009-09-25 18:43:00 +00006146 if (D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_typedef) {
Douglas Gregord5a423b2009-09-25 18:43:00 +00006147 Diag(D.getIdentifierLoc(), diag::err_explicit_instantiation_of_typedef)
6148 << Name;
6149 return true;
Douglas Gregore885e182011-05-21 18:53:30 +00006150 } else if (D.getDeclSpec().getStorageClassSpec()
6151 != DeclSpec::SCS_unspecified) {
6152 // Complain about then remove the storage class specifier.
6153 Diag(D.getIdentifierLoc(), diag::err_explicit_instantiation_storage_class)
6154 << FixItHint::CreateRemoval(D.getDeclSpec().getStorageClassSpecLoc());
6155
6156 D.getMutableDeclSpec().ClearStorageClassSpecs();
Douglas Gregord5a423b2009-09-25 18:43:00 +00006157 }
6158
Douglas Gregor663b5a02009-10-14 20:14:33 +00006159 // C++0x [temp.explicit]p1:
6160 // [...] An explicit instantiation of a function template shall not use the
6161 // inline or constexpr specifiers.
6162 // Presumably, this also applies to member functions of class templates as
6163 // well.
6164 if (D.getDeclSpec().isInlineSpecified() && getLangOptions().CPlusPlus0x)
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006165 Diag(D.getDeclSpec().getInlineSpecLoc(),
Douglas Gregor663b5a02009-10-14 20:14:33 +00006166 diag::err_explicit_instantiation_inline)
Douglas Gregor849b2432010-03-31 17:46:05 +00006167 <<FixItHint::CreateRemoval(D.getDeclSpec().getInlineSpecLoc());
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006168
Douglas Gregor663b5a02009-10-14 20:14:33 +00006169 // FIXME: check for constexpr specifier.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006170
Douglas Gregor558c0322009-10-14 23:41:34 +00006171 // C++0x [temp.explicit]p2:
6172 // There are two forms of explicit instantiation: an explicit instantiation
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006173 // definition and an explicit instantiation declaration. An explicit
6174 // instantiation declaration begins with the extern keyword. [...]
Douglas Gregord5a423b2009-09-25 18:43:00 +00006175 TemplateSpecializationKind TSK
6176 = ExternLoc.isInvalid()? TSK_ExplicitInstantiationDefinition
6177 : TSK_ExplicitInstantiationDeclaration;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006178
Abramo Bagnara25777432010-08-11 22:01:17 +00006179 LookupResult Previous(*this, NameInfo, LookupOrdinaryName);
John McCalla24dc2e2009-11-17 02:14:36 +00006180 LookupParsedName(Previous, S, &D.getCXXScopeSpec());
Douglas Gregord5a423b2009-09-25 18:43:00 +00006181
6182 if (!R->isFunctionType()) {
6183 // C++ [temp.explicit]p1:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006184 // A [...] static data member of a class template can be explicitly
6185 // instantiated from the member definition associated with its class
Douglas Gregord5a423b2009-09-25 18:43:00 +00006186 // template.
John McCalla24dc2e2009-11-17 02:14:36 +00006187 if (Previous.isAmbiguous())
6188 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006189
John McCall1bcee0a2009-12-02 08:25:40 +00006190 VarDecl *Prev = Previous.getAsSingle<VarDecl>();
Douglas Gregord5a423b2009-09-25 18:43:00 +00006191 if (!Prev || !Prev->isStaticDataMember()) {
6192 // We expect to see a data data member here.
6193 Diag(D.getIdentifierLoc(), diag::err_explicit_instantiation_not_known)
6194 << Name;
6195 for (LookupResult::iterator P = Previous.begin(), PEnd = Previous.end();
6196 P != PEnd; ++P)
John McCallf36e02d2009-10-09 21:13:30 +00006197 Diag((*P)->getLocation(), diag::note_explicit_instantiation_here);
Douglas Gregord5a423b2009-09-25 18:43:00 +00006198 return true;
6199 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006200
Douglas Gregord5a423b2009-09-25 18:43:00 +00006201 if (!Prev->getInstantiatedFromStaticDataMember()) {
6202 // FIXME: Check for explicit specialization?
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006203 Diag(D.getIdentifierLoc(),
Douglas Gregord5a423b2009-09-25 18:43:00 +00006204 diag::err_explicit_instantiation_data_member_not_instantiated)
6205 << Prev;
6206 Diag(Prev->getLocation(), diag::note_explicit_instantiation_here);
6207 // FIXME: Can we provide a note showing where this was declared?
6208 return true;
6209 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006210
Douglas Gregor558c0322009-10-14 23:41:34 +00006211 // C++0x [temp.explicit]p2:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006212 // If the explicit instantiation is for a member function, a member class
Douglas Gregor558c0322009-10-14 23:41:34 +00006213 // or a static data member of a class template specialization, the name of
6214 // the class template specialization in the qualified-id for the member
6215 // name shall be a simple-template-id.
6216 //
6217 // C++98 has the same restriction, just worded differently.
6218 if (!ScopeSpecifierHasTemplateId(D.getCXXScopeSpec()))
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006219 Diag(D.getIdentifierLoc(),
Douglas Gregora2dd8282010-06-16 16:26:47 +00006220 diag::ext_explicit_instantiation_without_qualified_id)
Douglas Gregor558c0322009-10-14 23:41:34 +00006221 << Prev << D.getCXXScopeSpec().getRange();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006222
Douglas Gregor558c0322009-10-14 23:41:34 +00006223 // Check the scope of this explicit instantiation.
6224 CheckExplicitInstantiationScope(*this, Prev, D.getIdentifierLoc(), true);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006225
Douglas Gregor454885e2009-10-15 15:54:05 +00006226 // Verify that it is okay to explicitly instantiate here.
6227 MemberSpecializationInfo *MSInfo = Prev->getMemberSpecializationInfo();
6228 assert(MSInfo && "Missing static data member specialization info?");
Abramo Bagnarac98971d2010-06-12 07:44:57 +00006229 bool HasNoEffect = false;
Douglas Gregor0d035142009-10-27 18:42:08 +00006230 if (CheckSpecializationInstantiationRedecl(D.getIdentifierLoc(), TSK, Prev,
Douglas Gregor454885e2009-10-15 15:54:05 +00006231 MSInfo->getTemplateSpecializationKind(),
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006232 MSInfo->getPointOfInstantiation(),
Abramo Bagnarac98971d2010-06-12 07:44:57 +00006233 HasNoEffect))
Douglas Gregor454885e2009-10-15 15:54:05 +00006234 return true;
Abramo Bagnarac98971d2010-06-12 07:44:57 +00006235 if (HasNoEffect)
John McCalld226f652010-08-21 09:40:31 +00006236 return (Decl*) 0;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006237
Douglas Gregord5a423b2009-09-25 18:43:00 +00006238 // Instantiate static data member.
Douglas Gregor0a897e32009-10-15 17:21:20 +00006239 Prev->setTemplateSpecializationKind(TSK, D.getIdentifierLoc());
Douglas Gregord5a423b2009-09-25 18:43:00 +00006240 if (TSK == TSK_ExplicitInstantiationDefinition)
Chandler Carruth58e390e2010-08-25 08:27:02 +00006241 InstantiateStaticDataMemberDefinition(D.getIdentifierLoc(), Prev);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006242
Douglas Gregord5a423b2009-09-25 18:43:00 +00006243 // FIXME: Create an ExplicitInstantiation node?
John McCalld226f652010-08-21 09:40:31 +00006244 return (Decl*) 0;
Douglas Gregord5a423b2009-09-25 18:43:00 +00006245 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006246
6247 // If the declarator is a template-id, translate the parser's template
Douglas Gregor0b60d9e2009-09-25 23:53:26 +00006248 // argument list into our AST format.
Douglas Gregordb422df2009-09-25 21:45:23 +00006249 bool HasExplicitTemplateArgs = false;
John McCalld5532b62009-11-23 01:53:49 +00006250 TemplateArgumentListInfo TemplateArgs;
Douglas Gregor3f9a0562009-11-03 01:35:08 +00006251 if (D.getName().getKind() == UnqualifiedId::IK_TemplateId) {
6252 TemplateIdAnnotation *TemplateId = D.getName().TemplateId;
John McCalld5532b62009-11-23 01:53:49 +00006253 TemplateArgs.setLAngleLoc(TemplateId->LAngleLoc);
6254 TemplateArgs.setRAngleLoc(TemplateId->RAngleLoc);
Douglas Gregordb422df2009-09-25 21:45:23 +00006255 ASTTemplateArgsPtr TemplateArgsPtr(*this,
6256 TemplateId->getTemplateArgs(),
Douglas Gregordb422df2009-09-25 21:45:23 +00006257 TemplateId->NumArgs);
John McCalld5532b62009-11-23 01:53:49 +00006258 translateTemplateArguments(TemplateArgsPtr, TemplateArgs);
Douglas Gregordb422df2009-09-25 21:45:23 +00006259 HasExplicitTemplateArgs = true;
Douglas Gregorb2f81cf2009-10-01 23:51:25 +00006260 TemplateArgsPtr.release();
Douglas Gregordb422df2009-09-25 21:45:23 +00006261 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006262
Douglas Gregord5a423b2009-09-25 18:43:00 +00006263 // C++ [temp.explicit]p1:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006264 // A [...] function [...] can be explicitly instantiated from its template.
6265 // A member function [...] of a class template can be explicitly
6266 // instantiated from the member definition associated with its class
Douglas Gregord5a423b2009-09-25 18:43:00 +00006267 // template.
John McCallc373d482010-01-27 01:50:18 +00006268 UnresolvedSet<8> Matches;
Douglas Gregord5a423b2009-09-25 18:43:00 +00006269 for (LookupResult::iterator P = Previous.begin(), PEnd = Previous.end();
6270 P != PEnd; ++P) {
6271 NamedDecl *Prev = *P;
Douglas Gregordb422df2009-09-25 21:45:23 +00006272 if (!HasExplicitTemplateArgs) {
6273 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(Prev)) {
6274 if (Context.hasSameUnqualifiedType(Method->getType(), R)) {
6275 Matches.clear();
Douglas Gregor48026d22010-01-11 18:40:55 +00006276
John McCallc373d482010-01-27 01:50:18 +00006277 Matches.addDecl(Method, P.getAccess());
Douglas Gregor48026d22010-01-11 18:40:55 +00006278 if (Method->getTemplateSpecializationKind() == TSK_Undeclared)
6279 break;
Douglas Gregordb422df2009-09-25 21:45:23 +00006280 }
Douglas Gregord5a423b2009-09-25 18:43:00 +00006281 }
6282 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006283
Douglas Gregord5a423b2009-09-25 18:43:00 +00006284 FunctionTemplateDecl *FunTmpl = dyn_cast<FunctionTemplateDecl>(Prev);
6285 if (!FunTmpl)
6286 continue;
6287
John McCall5769d612010-02-08 23:07:23 +00006288 TemplateDeductionInfo Info(Context, D.getIdentifierLoc());
Douglas Gregord5a423b2009-09-25 18:43:00 +00006289 FunctionDecl *Specialization = 0;
6290 if (TemplateDeductionResult TDK
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006291 = DeduceTemplateArguments(FunTmpl,
John McCalld5532b62009-11-23 01:53:49 +00006292 (HasExplicitTemplateArgs ? &TemplateArgs : 0),
Douglas Gregord5a423b2009-09-25 18:43:00 +00006293 R, Specialization, Info)) {
6294 // FIXME: Keep track of almost-matches?
6295 (void)TDK;
6296 continue;
6297 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006298
John McCallc373d482010-01-27 01:50:18 +00006299 Matches.addDecl(Specialization, P.getAccess());
Douglas Gregord5a423b2009-09-25 18:43:00 +00006300 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006301
Douglas Gregord5a423b2009-09-25 18:43:00 +00006302 // Find the most specialized function template specialization.
John McCallc373d482010-01-27 01:50:18 +00006303 UnresolvedSetIterator Result
Douglas Gregor5c7bf422011-01-11 17:34:58 +00006304 = getMostSpecialized(Matches.begin(), Matches.end(), TPOC_Other, 0,
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006305 D.getIdentifierLoc(),
Douglas Gregorfe6b2d42010-03-29 23:34:08 +00006306 PDiag(diag::err_explicit_instantiation_not_known) << Name,
6307 PDiag(diag::err_explicit_instantiation_ambiguous) << Name,
6308 PDiag(diag::note_explicit_instantiation_candidate));
Douglas Gregord5a423b2009-09-25 18:43:00 +00006309
John McCallc373d482010-01-27 01:50:18 +00006310 if (Result == Matches.end())
Douglas Gregord5a423b2009-09-25 18:43:00 +00006311 return true;
John McCallc373d482010-01-27 01:50:18 +00006312
6313 // Ignore access control bits, we don't need them for redeclaration checking.
6314 FunctionDecl *Specialization = cast<FunctionDecl>(*Result);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006315
Douglas Gregor0a897e32009-10-15 17:21:20 +00006316 if (Specialization->getTemplateSpecializationKind() == TSK_Undeclared) {
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006317 Diag(D.getIdentifierLoc(),
Douglas Gregord5a423b2009-09-25 18:43:00 +00006318 diag::err_explicit_instantiation_member_function_not_instantiated)
6319 << Specialization
6320 << (Specialization->getTemplateSpecializationKind() ==
6321 TSK_ExplicitSpecialization);
6322 Diag(Specialization->getLocation(), diag::note_explicit_instantiation_here);
6323 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006324 }
6325
Douglas Gregor0a897e32009-10-15 17:21:20 +00006326 FunctionDecl *PrevDecl = Specialization->getPreviousDeclaration();
Douglas Gregor583f33b2009-10-15 18:07:02 +00006327 if (!PrevDecl && Specialization->isThisDeclarationADefinition())
6328 PrevDecl = Specialization;
6329
Douglas Gregor0a897e32009-10-15 17:21:20 +00006330 if (PrevDecl) {
Abramo Bagnarac98971d2010-06-12 07:44:57 +00006331 bool HasNoEffect = false;
Douglas Gregor0d035142009-10-27 18:42:08 +00006332 if (CheckSpecializationInstantiationRedecl(D.getIdentifierLoc(), TSK,
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006333 PrevDecl,
6334 PrevDecl->getTemplateSpecializationKind(),
Douglas Gregor0a897e32009-10-15 17:21:20 +00006335 PrevDecl->getPointOfInstantiation(),
Abramo Bagnarac98971d2010-06-12 07:44:57 +00006336 HasNoEffect))
Douglas Gregor0a897e32009-10-15 17:21:20 +00006337 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006338
Douglas Gregor0a897e32009-10-15 17:21:20 +00006339 // FIXME: We may still want to build some representation of this
6340 // explicit specialization.
Abramo Bagnarac98971d2010-06-12 07:44:57 +00006341 if (HasNoEffect)
John McCalld226f652010-08-21 09:40:31 +00006342 return (Decl*) 0;
Douglas Gregor0a897e32009-10-15 17:21:20 +00006343 }
Anders Carlsson26d6e9d2009-11-24 05:34:41 +00006344
6345 Specialization->setTemplateSpecializationKind(TSK, D.getIdentifierLoc());
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006346
Douglas Gregor0a897e32009-10-15 17:21:20 +00006347 if (TSK == TSK_ExplicitInstantiationDefinition)
Chandler Carruth58e390e2010-08-25 08:27:02 +00006348 InstantiateFunctionDefinition(D.getIdentifierLoc(), Specialization);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006349
Douglas Gregor558c0322009-10-14 23:41:34 +00006350 // C++0x [temp.explicit]p2:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006351 // If the explicit instantiation is for a member function, a member class
Douglas Gregor558c0322009-10-14 23:41:34 +00006352 // or a static data member of a class template specialization, the name of
6353 // the class template specialization in the qualified-id for the member
6354 // name shall be a simple-template-id.
6355 //
6356 // C++98 has the same restriction, just worded differently.
Douglas Gregor0a897e32009-10-15 17:21:20 +00006357 FunctionTemplateDecl *FunTmpl = Specialization->getPrimaryTemplate();
Douglas Gregor3f9a0562009-11-03 01:35:08 +00006358 if (D.getName().getKind() != UnqualifiedId::IK_TemplateId && !FunTmpl &&
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006359 D.getCXXScopeSpec().isSet() &&
Douglas Gregor558c0322009-10-14 23:41:34 +00006360 !ScopeSpecifierHasTemplateId(D.getCXXScopeSpec()))
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006361 Diag(D.getIdentifierLoc(),
Douglas Gregora2dd8282010-06-16 16:26:47 +00006362 diag::ext_explicit_instantiation_without_qualified_id)
Douglas Gregor558c0322009-10-14 23:41:34 +00006363 << Specialization << D.getCXXScopeSpec().getRange();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006364
Douglas Gregor558c0322009-10-14 23:41:34 +00006365 CheckExplicitInstantiationScope(*this,
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006366 FunTmpl? (NamedDecl *)FunTmpl
Douglas Gregor558c0322009-10-14 23:41:34 +00006367 : Specialization->getInstantiatedFromMemberFunction(),
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006368 D.getIdentifierLoc(),
Douglas Gregor558c0322009-10-14 23:41:34 +00006369 D.getCXXScopeSpec().isSet());
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006370
Douglas Gregord5a423b2009-09-25 18:43:00 +00006371 // FIXME: Create some kind of ExplicitInstantiationDecl here.
John McCalld226f652010-08-21 09:40:31 +00006372 return (Decl*) 0;
Douglas Gregord5a423b2009-09-25 18:43:00 +00006373}
6374
John McCallf312b1e2010-08-26 23:41:50 +00006375TypeResult
John McCallc4e70192009-09-11 04:59:25 +00006376Sema::ActOnDependentTag(Scope *S, unsigned TagSpec, TagUseKind TUK,
6377 const CXXScopeSpec &SS, IdentifierInfo *Name,
6378 SourceLocation TagLoc, SourceLocation NameLoc) {
6379 // This has to hold, because SS is expected to be defined.
6380 assert(Name && "Expected a name in a dependent tag");
6381
6382 NestedNameSpecifier *NNS
6383 = static_cast<NestedNameSpecifier *>(SS.getScopeRep());
6384 if (!NNS)
6385 return true;
6386
Abramo Bagnara465d41b2010-05-11 21:36:43 +00006387 TagTypeKind Kind = TypeWithKeyword::getTagTypeKindForTypeSpec(TagSpec);
Daniel Dunbar12c0ade2010-04-01 16:50:48 +00006388
Douglas Gregor48c89f42010-04-24 16:38:41 +00006389 if (TUK == TUK_Declaration || TUK == TUK_Definition) {
6390 Diag(NameLoc, diag::err_dependent_tag_decl)
Abramo Bagnara465d41b2010-05-11 21:36:43 +00006391 << (TUK == TUK_Definition) << Kind << SS.getRange();
Douglas Gregor48c89f42010-04-24 16:38:41 +00006392 return true;
6393 }
Abramo Bagnara465d41b2010-05-11 21:36:43 +00006394
Douglas Gregor059101f2011-03-02 00:47:37 +00006395 // Create the resulting type.
Abramo Bagnara465d41b2010-05-11 21:36:43 +00006396 ElaboratedTypeKeyword Kwd = TypeWithKeyword::getKeywordForTagTypeKind(Kind);
Douglas Gregor059101f2011-03-02 00:47:37 +00006397 QualType Result = Context.getDependentNameType(Kwd, NNS, Name);
6398
6399 // Create type-source location information for this type.
6400 TypeLocBuilder TLB;
6401 DependentNameTypeLoc TL = TLB.push<DependentNameTypeLoc>(Result);
6402 TL.setKeywordLoc(TagLoc);
6403 TL.setQualifierLoc(SS.getWithLocInContext(Context));
6404 TL.setNameLoc(NameLoc);
6405 return CreateParsedType(Result, TLB.getTypeSourceInfo(Context, Result));
John McCallc4e70192009-09-11 04:59:25 +00006406}
6407
John McCallf312b1e2010-08-26 23:41:50 +00006408TypeResult
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006409Sema::ActOnTypenameType(Scope *S, SourceLocation TypenameLoc,
6410 const CXXScopeSpec &SS, const IdentifierInfo &II,
Douglas Gregor1a15dae2010-06-16 22:31:08 +00006411 SourceLocation IdLoc) {
Douglas Gregore29425b2011-02-28 22:42:13 +00006412 if (SS.isInvalid())
Douglas Gregord57959a2009-03-27 23:10:48 +00006413 return true;
Douglas Gregore29425b2011-02-28 22:42:13 +00006414
Douglas Gregor1a15dae2010-06-16 22:31:08 +00006415 if (TypenameLoc.isValid() && S && !S->getTemplateParamParent() &&
6416 !getLangOptions().CPlusPlus0x)
6417 Diag(TypenameLoc, diag::ext_typename_outside_of_template)
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006418 << FixItHint::CreateRemoval(TypenameLoc);
6419
Douglas Gregor2494dd02011-03-01 01:34:45 +00006420 NestedNameSpecifierLoc QualifierLoc = SS.getWithLocInContext(Context);
Douglas Gregor9e876872011-03-01 18:12:44 +00006421 QualType T = CheckTypenameType(TypenameLoc.isValid()? ETK_Typename : ETK_None,
6422 TypenameLoc, QualifierLoc, II, IdLoc);
Douglas Gregor31a19b62009-04-01 21:51:26 +00006423 if (T.isNull())
6424 return true;
John McCall63b43852010-04-29 23:50:39 +00006425
6426 TypeSourceInfo *TSI = Context.CreateTypeSourceInfo(T);
6427 if (isa<DependentNameType>(T)) {
6428 DependentNameTypeLoc TL = cast<DependentNameTypeLoc>(TSI->getTypeLoc());
John McCall4e449832010-05-28 23:32:21 +00006429 TL.setKeywordLoc(TypenameLoc);
Douglas Gregor2494dd02011-03-01 01:34:45 +00006430 TL.setQualifierLoc(QualifierLoc);
John McCall4e449832010-05-28 23:32:21 +00006431 TL.setNameLoc(IdLoc);
John McCall63b43852010-04-29 23:50:39 +00006432 } else {
Abramo Bagnara465d41b2010-05-11 21:36:43 +00006433 ElaboratedTypeLoc TL = cast<ElaboratedTypeLoc>(TSI->getTypeLoc());
John McCall4e449832010-05-28 23:32:21 +00006434 TL.setKeywordLoc(TypenameLoc);
Douglas Gregor9e876872011-03-01 18:12:44 +00006435 TL.setQualifierLoc(QualifierLoc);
John McCall4e449832010-05-28 23:32:21 +00006436 cast<TypeSpecTypeLoc>(TL.getNamedTypeLoc()).setNameLoc(IdLoc);
John McCall63b43852010-04-29 23:50:39 +00006437 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006438
John McCallb3d87482010-08-24 05:47:05 +00006439 return CreateParsedType(T, TSI);
Douglas Gregord57959a2009-03-27 23:10:48 +00006440}
6441
John McCallf312b1e2010-08-26 23:41:50 +00006442TypeResult
Douglas Gregora02411e2011-02-27 22:46:49 +00006443Sema::ActOnTypenameType(Scope *S, SourceLocation TypenameLoc,
6444 const CXXScopeSpec &SS,
6445 SourceLocation TemplateLoc,
6446 TemplateTy TemplateIn,
6447 SourceLocation TemplateNameLoc,
6448 SourceLocation LAngleLoc,
6449 ASTTemplateArgsPtr TemplateArgsIn,
6450 SourceLocation RAngleLoc) {
Douglas Gregor1a15dae2010-06-16 22:31:08 +00006451 if (TypenameLoc.isValid() && S && !S->getTemplateParamParent() &&
6452 !getLangOptions().CPlusPlus0x)
6453 Diag(TypenameLoc, diag::ext_typename_outside_of_template)
Douglas Gregora02411e2011-02-27 22:46:49 +00006454 << FixItHint::CreateRemoval(TypenameLoc);
6455
6456 // Translate the parser's template argument list in our AST format.
6457 TemplateArgumentListInfo TemplateArgs(LAngleLoc, RAngleLoc);
6458 translateTemplateArguments(TemplateArgsIn, TemplateArgs);
6459
6460 TemplateName Template = TemplateIn.get();
Douglas Gregoref24c4b2011-03-01 16:44:30 +00006461 if (DependentTemplateName *DTN = Template.getAsDependentTemplateName()) {
6462 // Construct a dependent template specialization type.
6463 assert(DTN && "dependent template has non-dependent name?");
6464 assert(DTN->getQualifier()
6465 == static_cast<NestedNameSpecifier*>(SS.getScopeRep()));
6466 QualType T = Context.getDependentTemplateSpecializationType(ETK_Typename,
6467 DTN->getQualifier(),
6468 DTN->getIdentifier(),
6469 TemplateArgs);
Douglas Gregora02411e2011-02-27 22:46:49 +00006470
Douglas Gregoref24c4b2011-03-01 16:44:30 +00006471 // Create source-location information for this type.
John McCall4e449832010-05-28 23:32:21 +00006472 TypeLocBuilder Builder;
Douglas Gregoref24c4b2011-03-01 16:44:30 +00006473 DependentTemplateSpecializationTypeLoc SpecTL
6474 = Builder.push<DependentTemplateSpecializationTypeLoc>(T);
Douglas Gregora02411e2011-02-27 22:46:49 +00006475 SpecTL.setLAngleLoc(LAngleLoc);
6476 SpecTL.setRAngleLoc(RAngleLoc);
Douglas Gregoref24c4b2011-03-01 16:44:30 +00006477 SpecTL.setKeywordLoc(TypenameLoc);
Douglas Gregor94fdffa2011-03-01 20:11:18 +00006478 SpecTL.setQualifierLoc(SS.getWithLocInContext(Context));
Douglas Gregoref24c4b2011-03-01 16:44:30 +00006479 SpecTL.setNameLoc(TemplateNameLoc);
Douglas Gregora02411e2011-02-27 22:46:49 +00006480 for (unsigned I = 0, N = TemplateArgs.size(); I != N; ++I)
6481 SpecTL.setArgLocInfo(I, TemplateArgs[I].getLocInfo());
Douglas Gregoref24c4b2011-03-01 16:44:30 +00006482 return CreateParsedType(T, Builder.getTypeSourceInfo(Context, T));
Douglas Gregor6946baf2009-09-02 13:05:45 +00006483 }
Douglas Gregora02411e2011-02-27 22:46:49 +00006484
Douglas Gregoref24c4b2011-03-01 16:44:30 +00006485 QualType T = CheckTemplateIdType(Template, TemplateNameLoc, TemplateArgs);
6486 if (T.isNull())
6487 return true;
Douglas Gregora02411e2011-02-27 22:46:49 +00006488
Douglas Gregoref24c4b2011-03-01 16:44:30 +00006489 // Provide source-location information for the template specialization
6490 // type.
Douglas Gregora02411e2011-02-27 22:46:49 +00006491 TypeLocBuilder Builder;
Douglas Gregoref24c4b2011-03-01 16:44:30 +00006492 TemplateSpecializationTypeLoc SpecTL
6493 = Builder.push<TemplateSpecializationTypeLoc>(T);
6494
6495 // FIXME: No place to set the location of the 'template' keyword!
Douglas Gregora02411e2011-02-27 22:46:49 +00006496 SpecTL.setLAngleLoc(LAngleLoc);
6497 SpecTL.setRAngleLoc(RAngleLoc);
Douglas Gregoref24c4b2011-03-01 16:44:30 +00006498 SpecTL.setTemplateNameLoc(TemplateNameLoc);
Douglas Gregora02411e2011-02-27 22:46:49 +00006499 for (unsigned I = 0, N = TemplateArgs.size(); I != N; ++I)
6500 SpecTL.setArgLocInfo(I, TemplateArgs[I].getLocInfo());
6501
Douglas Gregoref24c4b2011-03-01 16:44:30 +00006502 T = Context.getElaboratedType(ETK_Typename, SS.getScopeRep(), T);
6503 ElaboratedTypeLoc TL = Builder.push<ElaboratedTypeLoc>(T);
6504 TL.setKeywordLoc(TypenameLoc);
Douglas Gregor9e876872011-03-01 18:12:44 +00006505 TL.setQualifierLoc(SS.getWithLocInContext(Context));
6506
Douglas Gregoref24c4b2011-03-01 16:44:30 +00006507 TypeSourceInfo *TSI = Builder.getTypeSourceInfo(Context, T);
6508 return CreateParsedType(T, TSI);
Douglas Gregor17343172009-04-01 00:28:59 +00006509}
6510
Douglas Gregora02411e2011-02-27 22:46:49 +00006511
Douglas Gregord57959a2009-03-27 23:10:48 +00006512/// \brief Build the type that describes a C++ typename specifier,
6513/// e.g., "typename T::type".
6514QualType
Douglas Gregore29425b2011-02-28 22:42:13 +00006515Sema::CheckTypenameType(ElaboratedTypeKeyword Keyword,
6516 SourceLocation KeywordLoc,
6517 NestedNameSpecifierLoc QualifierLoc,
6518 const IdentifierInfo &II,
Abramo Bagnarae4da7a02010-05-19 21:37:53 +00006519 SourceLocation IILoc) {
John McCall77bb1aa2010-05-01 00:40:08 +00006520 CXXScopeSpec SS;
Douglas Gregore29425b2011-02-28 22:42:13 +00006521 SS.Adopt(QualifierLoc);
Douglas Gregord57959a2009-03-27 23:10:48 +00006522
John McCall77bb1aa2010-05-01 00:40:08 +00006523 DeclContext *Ctx = computeDeclContext(SS);
6524 if (!Ctx) {
6525 // If the nested-name-specifier is dependent and couldn't be
6526 // resolved to a type, build a typename type.
Douglas Gregore29425b2011-02-28 22:42:13 +00006527 assert(QualifierLoc.getNestedNameSpecifier()->isDependent());
6528 return Context.getDependentNameType(Keyword,
6529 QualifierLoc.getNestedNameSpecifier(),
6530 &II);
Douglas Gregor42af25f2009-05-11 19:58:34 +00006531 }
Douglas Gregord57959a2009-03-27 23:10:48 +00006532
John McCall77bb1aa2010-05-01 00:40:08 +00006533 // If the nested-name-specifier refers to the current instantiation,
6534 // the "typename" keyword itself is superfluous. In C++03, the
6535 // program is actually ill-formed. However, DR 382 (in C++0x CD1)
6536 // allows such extraneous "typename" keywords, and we retroactively
Douglas Gregor732281d2010-06-14 22:07:54 +00006537 // apply this DR to C++03 code with only a warning. In any case we continue.
Douglas Gregor42af25f2009-05-11 19:58:34 +00006538
John McCall77bb1aa2010-05-01 00:40:08 +00006539 if (RequireCompleteDeclContext(SS, Ctx))
6540 return QualType();
Douglas Gregord57959a2009-03-27 23:10:48 +00006541
6542 DeclarationName Name(&II);
Abramo Bagnarae4da7a02010-05-19 21:37:53 +00006543 LookupResult Result(*this, Name, IILoc, LookupOrdinaryName);
John McCalla24dc2e2009-11-17 02:14:36 +00006544 LookupQualifiedName(Result, Ctx);
Douglas Gregord57959a2009-03-27 23:10:48 +00006545 unsigned DiagID = 0;
6546 Decl *Referenced = 0;
John McCalla24dc2e2009-11-17 02:14:36 +00006547 switch (Result.getResultKind()) {
Douglas Gregord57959a2009-03-27 23:10:48 +00006548 case LookupResult::NotFound:
Douglas Gregor3f093272009-10-13 21:16:44 +00006549 DiagID = diag::err_typename_nested_not_found;
Douglas Gregord57959a2009-03-27 23:10:48 +00006550 break;
Douglas Gregord9545042010-12-09 00:06:27 +00006551
6552 case LookupResult::FoundUnresolvedValue: {
6553 // We found a using declaration that is a value. Most likely, the using
6554 // declaration itself is meant to have the 'typename' keyword.
Douglas Gregore29425b2011-02-28 22:42:13 +00006555 SourceRange FullRange(KeywordLoc.isValid() ? KeywordLoc : SS.getBeginLoc(),
Douglas Gregord9545042010-12-09 00:06:27 +00006556 IILoc);
6557 Diag(IILoc, diag::err_typename_refers_to_using_value_decl)
6558 << Name << Ctx << FullRange;
6559 if (UnresolvedUsingValueDecl *Using
6560 = dyn_cast<UnresolvedUsingValueDecl>(Result.getRepresentativeDecl())){
Douglas Gregordc355712011-02-25 00:36:19 +00006561 SourceLocation Loc = Using->getQualifierLoc().getBeginLoc();
Douglas Gregord9545042010-12-09 00:06:27 +00006562 Diag(Loc, diag::note_using_value_decl_missing_typename)
6563 << FixItHint::CreateInsertion(Loc, "typename ");
6564 }
6565 }
6566 // Fall through to create a dependent typename type, from which we can recover
6567 // better.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006568
Douglas Gregor7d3f5762010-01-15 01:44:47 +00006569 case LookupResult::NotFoundInCurrentInstantiation:
6570 // Okay, it's a member of an unknown instantiation.
Douglas Gregore29425b2011-02-28 22:42:13 +00006571 return Context.getDependentNameType(Keyword,
6572 QualifierLoc.getNestedNameSpecifier(),
6573 &II);
Douglas Gregord57959a2009-03-27 23:10:48 +00006574
6575 case LookupResult::Found:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006576 if (TypeDecl *Type = dyn_cast<TypeDecl>(Result.getFoundDecl())) {
Abramo Bagnara465d41b2010-05-11 21:36:43 +00006577 // We found a type. Build an ElaboratedType, since the
6578 // typename-specifier was just sugar.
Douglas Gregore29425b2011-02-28 22:42:13 +00006579 return Context.getElaboratedType(ETK_Typename,
6580 QualifierLoc.getNestedNameSpecifier(),
Abramo Bagnara465d41b2010-05-11 21:36:43 +00006581 Context.getTypeDeclType(Type));
Douglas Gregord57959a2009-03-27 23:10:48 +00006582 }
6583
6584 DiagID = diag::err_typename_nested_not_type;
John McCallf36e02d2009-10-09 21:13:30 +00006585 Referenced = Result.getFoundDecl();
Douglas Gregord57959a2009-03-27 23:10:48 +00006586 break;
6587
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006588
Jeffrey Yasskin9f61aa92009-12-12 05:05:38 +00006589 llvm_unreachable("unresolved using decl in non-dependent context");
John McCall7ba107a2009-11-18 02:36:19 +00006590 return QualType();
6591
Douglas Gregord57959a2009-03-27 23:10:48 +00006592 case LookupResult::FoundOverloaded:
6593 DiagID = diag::err_typename_nested_not_type;
6594 Referenced = *Result.begin();
6595 break;
6596
John McCall6e247262009-10-10 05:48:19 +00006597 case LookupResult::Ambiguous:
Douglas Gregord57959a2009-03-27 23:10:48 +00006598 return QualType();
6599 }
6600
6601 // If we get here, it's because name lookup did not find a
6602 // type. Emit an appropriate diagnostic and return an error.
Douglas Gregore29425b2011-02-28 22:42:13 +00006603 SourceRange FullRange(KeywordLoc.isValid() ? KeywordLoc : SS.getBeginLoc(),
Abramo Bagnarae4da7a02010-05-19 21:37:53 +00006604 IILoc);
6605 Diag(IILoc, DiagID) << FullRange << Name << Ctx;
Douglas Gregord57959a2009-03-27 23:10:48 +00006606 if (Referenced)
6607 Diag(Referenced->getLocation(), diag::note_typename_refers_here)
6608 << Name;
6609 return QualType();
6610}
Douglas Gregor4a959d82009-08-06 16:20:37 +00006611
6612namespace {
6613 // See Sema::RebuildTypeInCurrentInstantiation
Benjamin Kramer85b45212009-11-28 19:45:26 +00006614 class CurrentInstantiationRebuilder
Mike Stump1eb44332009-09-09 15:08:12 +00006615 : public TreeTransform<CurrentInstantiationRebuilder> {
Douglas Gregor4a959d82009-08-06 16:20:37 +00006616 SourceLocation Loc;
6617 DeclarationName Entity;
Mike Stump1eb44332009-09-09 15:08:12 +00006618
Douglas Gregor4a959d82009-08-06 16:20:37 +00006619 public:
Douglas Gregor895162d2010-04-30 18:55:50 +00006620 typedef TreeTransform<CurrentInstantiationRebuilder> inherited;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006621
Mike Stump1eb44332009-09-09 15:08:12 +00006622 CurrentInstantiationRebuilder(Sema &SemaRef,
Douglas Gregor4a959d82009-08-06 16:20:37 +00006623 SourceLocation Loc,
Mike Stump1eb44332009-09-09 15:08:12 +00006624 DeclarationName Entity)
6625 : TreeTransform<CurrentInstantiationRebuilder>(SemaRef),
Douglas Gregor4a959d82009-08-06 16:20:37 +00006626 Loc(Loc), Entity(Entity) { }
Mike Stump1eb44332009-09-09 15:08:12 +00006627
6628 /// \brief Determine whether the given type \p T has already been
Douglas Gregor4a959d82009-08-06 16:20:37 +00006629 /// transformed.
6630 ///
6631 /// For the purposes of type reconstruction, a type has already been
6632 /// transformed if it is NULL or if it is not dependent.
6633 bool AlreadyTransformed(QualType T) {
6634 return T.isNull() || !T->isDependentType();
6635 }
Mike Stump1eb44332009-09-09 15:08:12 +00006636
6637 /// \brief Returns the location of the entity whose type is being
Douglas Gregor4a959d82009-08-06 16:20:37 +00006638 /// rebuilt.
6639 SourceLocation getBaseLocation() { return Loc; }
Mike Stump1eb44332009-09-09 15:08:12 +00006640
Douglas Gregor4a959d82009-08-06 16:20:37 +00006641 /// \brief Returns the name of the entity whose type is being rebuilt.
6642 DeclarationName getBaseEntity() { return Entity; }
Mike Stump1eb44332009-09-09 15:08:12 +00006643
Douglas Gregor972e6ce2009-10-27 06:26:26 +00006644 /// \brief Sets the "base" location and entity when that
6645 /// information is known based on another transformation.
6646 void setBase(SourceLocation Loc, DeclarationName Entity) {
6647 this->Loc = Loc;
6648 this->Entity = Entity;
6649 }
Douglas Gregor4a959d82009-08-06 16:20:37 +00006650 };
6651}
6652
Douglas Gregor4a959d82009-08-06 16:20:37 +00006653/// \brief Rebuilds a type within the context of the current instantiation.
6654///
Mike Stump1eb44332009-09-09 15:08:12 +00006655/// The type \p T is part of the type of an out-of-line member definition of
Douglas Gregor4a959d82009-08-06 16:20:37 +00006656/// a class template (or class template partial specialization) that was parsed
Mike Stump1eb44332009-09-09 15:08:12 +00006657/// and constructed before we entered the scope of the class template (or
Douglas Gregor4a959d82009-08-06 16:20:37 +00006658/// partial specialization thereof). This routine will rebuild that type now
6659/// that we have entered the declarator's scope, which may produce different
6660/// canonical types, e.g.,
6661///
6662/// \code
6663/// template<typename T>
6664/// struct X {
6665/// typedef T* pointer;
6666/// pointer data();
6667/// };
6668///
6669/// template<typename T>
6670/// typename X<T>::pointer X<T>::data() { ... }
6671/// \endcode
6672///
Douglas Gregor4714c122010-03-31 17:34:00 +00006673/// Here, the type "typename X<T>::pointer" will be created as a DependentNameType,
Douglas Gregor4a959d82009-08-06 16:20:37 +00006674/// since we do not know that we can look into X<T> when we parsed the type.
6675/// This function will rebuild the type, performing the lookup of "pointer"
Abramo Bagnara465d41b2010-05-11 21:36:43 +00006676/// in X<T> and returning an ElaboratedType whose canonical type is the same
Douglas Gregor4a959d82009-08-06 16:20:37 +00006677/// as the canonical type of T*, allowing the return types of the out-of-line
6678/// definition and the declaration to match.
John McCall63b43852010-04-29 23:50:39 +00006679TypeSourceInfo *Sema::RebuildTypeInCurrentInstantiation(TypeSourceInfo *T,
6680 SourceLocation Loc,
6681 DeclarationName Name) {
6682 if (!T || !T->getType()->isDependentType())
Douglas Gregor4a959d82009-08-06 16:20:37 +00006683 return T;
Mike Stump1eb44332009-09-09 15:08:12 +00006684
Douglas Gregor4a959d82009-08-06 16:20:37 +00006685 CurrentInstantiationRebuilder Rebuilder(*this, Loc, Name);
6686 return Rebuilder.TransformType(T);
Benjamin Kramer27ba2f02009-08-11 22:33:06 +00006687}
Douglas Gregorbf4ea562009-09-15 16:23:51 +00006688
John McCall60d7b3a2010-08-24 06:29:42 +00006689ExprResult Sema::RebuildExprInCurrentInstantiation(Expr *E) {
John McCallb3d87482010-08-24 05:47:05 +00006690 CurrentInstantiationRebuilder Rebuilder(*this, E->getExprLoc(),
6691 DeclarationName());
6692 return Rebuilder.TransformExpr(E);
6693}
6694
John McCall63b43852010-04-29 23:50:39 +00006695bool Sema::RebuildNestedNameSpecifierInCurrentInstantiation(CXXScopeSpec &SS) {
Douglas Gregor7e384942011-02-25 16:07:42 +00006696 if (SS.isInvalid())
6697 return true;
John McCall31f17ec2010-04-27 00:57:59 +00006698
Douglas Gregor7e384942011-02-25 16:07:42 +00006699 NestedNameSpecifierLoc QualifierLoc = SS.getWithLocInContext(Context);
John McCall31f17ec2010-04-27 00:57:59 +00006700 CurrentInstantiationRebuilder Rebuilder(*this, SS.getRange().getBegin(),
6701 DeclarationName());
Douglas Gregor7e384942011-02-25 16:07:42 +00006702 NestedNameSpecifierLoc Rebuilt
6703 = Rebuilder.TransformNestedNameSpecifierLoc(QualifierLoc);
6704 if (!Rebuilt)
6705 return true;
John McCall63b43852010-04-29 23:50:39 +00006706
Douglas Gregor7e384942011-02-25 16:07:42 +00006707 SS.Adopt(Rebuilt);
John McCall63b43852010-04-29 23:50:39 +00006708 return false;
John McCall31f17ec2010-04-27 00:57:59 +00006709}
6710
Douglas Gregor20606502011-10-14 15:31:12 +00006711/// \brief Rebuild the template parameters now that we know we're in a current
6712/// instantiation.
6713bool Sema::RebuildTemplateParamsInCurrentInstantiation(
6714 TemplateParameterList *Params) {
6715 for (unsigned I = 0, N = Params->size(); I != N; ++I) {
6716 Decl *Param = Params->getParam(I);
6717
6718 // There is nothing to rebuild in a type parameter.
6719 if (isa<TemplateTypeParmDecl>(Param))
6720 continue;
6721
6722 // Rebuild the template parameter list of a template template parameter.
6723 if (TemplateTemplateParmDecl *TTP
6724 = dyn_cast<TemplateTemplateParmDecl>(Param)) {
6725 if (RebuildTemplateParamsInCurrentInstantiation(
6726 TTP->getTemplateParameters()))
6727 return true;
6728
6729 continue;
6730 }
6731
6732 // Rebuild the type of a non-type template parameter.
6733 NonTypeTemplateParmDecl *NTTP = cast<NonTypeTemplateParmDecl>(Param);
6734 TypeSourceInfo *NewTSI
6735 = RebuildTypeInCurrentInstantiation(NTTP->getTypeSourceInfo(),
6736 NTTP->getLocation(),
6737 NTTP->getDeclName());
6738 if (!NewTSI)
6739 return true;
6740
6741 if (NewTSI != NTTP->getTypeSourceInfo()) {
6742 NTTP->setTypeSourceInfo(NewTSI);
6743 NTTP->setType(NewTSI->getType());
6744 }
6745 }
6746
6747 return false;
6748}
6749
Douglas Gregorbf4ea562009-09-15 16:23:51 +00006750/// \brief Produces a formatted string that describes the binding of
6751/// template parameters to template arguments.
6752std::string
6753Sema::getTemplateArgumentBindingsText(const TemplateParameterList *Params,
6754 const TemplateArgumentList &Args) {
Douglas Gregor910f8002010-11-07 23:05:16 +00006755 return getTemplateArgumentBindingsText(Params, Args.data(), Args.size());
Douglas Gregor9148c3f2009-11-11 19:13:48 +00006756}
6757
6758std::string
6759Sema::getTemplateArgumentBindingsText(const TemplateParameterList *Params,
6760 const TemplateArgument *Args,
6761 unsigned NumArgs) {
Douglas Gregor87dd6972010-12-20 16:52:59 +00006762 llvm::SmallString<128> Str;
6763 llvm::raw_svector_ostream Out(Str);
Douglas Gregorbf4ea562009-09-15 16:23:51 +00006764
Douglas Gregor9148c3f2009-11-11 19:13:48 +00006765 if (!Params || Params->size() == 0 || NumArgs == 0)
Douglas Gregor87dd6972010-12-20 16:52:59 +00006766 return std::string();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006767
Douglas Gregorbf4ea562009-09-15 16:23:51 +00006768 for (unsigned I = 0, N = Params->size(); I != N; ++I) {
Douglas Gregor9148c3f2009-11-11 19:13:48 +00006769 if (I >= NumArgs)
6770 break;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006771
Douglas Gregorbf4ea562009-09-15 16:23:51 +00006772 if (I == 0)
Douglas Gregor87dd6972010-12-20 16:52:59 +00006773 Out << "[with ";
Douglas Gregorbf4ea562009-09-15 16:23:51 +00006774 else
Douglas Gregor87dd6972010-12-20 16:52:59 +00006775 Out << ", ";
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006776
Douglas Gregorbf4ea562009-09-15 16:23:51 +00006777 if (const IdentifierInfo *Id = Params->getParam(I)->getIdentifier()) {
Douglas Gregor87dd6972010-12-20 16:52:59 +00006778 Out << Id->getName();
Douglas Gregorbf4ea562009-09-15 16:23:51 +00006779 } else {
Douglas Gregor87dd6972010-12-20 16:52:59 +00006780 Out << '$' << I;
Douglas Gregorbf4ea562009-09-15 16:23:51 +00006781 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006782
Douglas Gregor87dd6972010-12-20 16:52:59 +00006783 Out << " = ";
Douglas Gregor8987b232011-09-27 23:30:47 +00006784 Args[I].print(getPrintingPolicy(), Out);
Douglas Gregorbf4ea562009-09-15 16:23:51 +00006785 }
Douglas Gregor87dd6972010-12-20 16:52:59 +00006786
6787 Out << ']';
6788 return Out.str();
Douglas Gregorbf4ea562009-09-15 16:23:51 +00006789}
Francois Pichet8387e2a2011-04-22 22:18:13 +00006790
6791void Sema::MarkAsLateParsedTemplate(FunctionDecl *FD, bool Flag) {
6792 if (!FD)
6793 return;
6794 FD->setLateTemplateParsed(Flag);
6795}
6796
6797bool Sema::IsInsideALocalClassWithinATemplateFunction() {
6798 DeclContext *DC = CurContext;
6799
6800 while (DC) {
6801 if (CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(CurContext)) {
6802 const FunctionDecl *FD = RD->isLocalClass();
6803 return (FD && FD->getTemplatedKind() != FunctionDecl::TK_NonTemplate);
6804 } else if (DC->isTranslationUnit() || DC->isNamespace())
6805 return false;
6806
6807 DC = DC->getParent();
6808 }
6809 return false;
6810}