blob: 6f1ab19f10e061d2a61cf36973cad960b2c2d4a2 [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
Douglas Gregor4a959d82009-08-06 16:20:37 +000012#include "TreeTransform.h"
Douglas Gregorddc29e12009-02-06 22:42:48 +000013#include "clang/AST/ASTContext.h"
John McCall92b7f702010-03-11 07:50:04 +000014#include "clang/AST/DeclFriend.h"
Douglas Gregoraaba5e32009-02-04 19:02:06 +000015#include "clang/AST/DeclTemplate.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000016#include "clang/AST/Expr.h"
17#include "clang/AST/ExprCXX.h"
John McCall4e2cbb22010-10-20 05:44:58 +000018#include "clang/AST/RecursiveASTVisitor.h"
Douglas Gregor5f3aeb62010-10-13 00:27:52 +000019#include "clang/AST/TypeVisitor.h"
Douglas Gregor72c3f312008-12-05 18:15:24 +000020#include "clang/Basic/LangOptions.h"
Douglas Gregord5a423b2009-09-25 18:43:00 +000021#include "clang/Basic/PartialDiagnostic.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000022#include "clang/Sema/DeclSpec.h"
23#include "clang/Sema/Lookup.h"
24#include "clang/Sema/ParsedTemplate.h"
25#include "clang/Sema/Scope.h"
26#include "clang/Sema/SemaInternal.h"
27#include "clang/Sema/Template.h"
28#include "clang/Sema/TemplateDeduction.h"
Benjamin Kramer013b3662012-01-30 16:17:39 +000029#include "llvm/ADT/SmallBitVector.h"
Benjamin Kramer8fe83e12012-02-04 13:45:25 +000030#include "llvm/ADT/SmallString.h"
Douglas Gregorbf4ea562009-09-15 16:23:51 +000031#include "llvm/ADT/StringExtras.h"
Douglas Gregor72c3f312008-12-05 18:15:24 +000032using namespace clang;
John McCall2a7fb272010-08-25 05:32:35 +000033using namespace sema;
Douglas Gregor72c3f312008-12-05 18:15:24 +000034
John McCall78b81052010-11-10 02:40:36 +000035// Exported for use by Parser.
36SourceRange
37clang::getTemplateParamsRange(TemplateParameterList const * const *Ps,
38 unsigned N) {
39 if (!N) return SourceRange();
40 return SourceRange(Ps[0]->getTemplateLoc(), Ps[N-1]->getRAngleLoc());
41}
42
Douglas Gregor2dd078a2009-09-02 22:59:36 +000043/// \brief Determine whether the declaration found is acceptable as the name
44/// of a template and, if so, return that template declaration. Otherwise,
45/// returns NULL.
John McCallad00b772010-06-16 08:42:20 +000046static NamedDecl *isAcceptableTemplateName(ASTContext &Context,
Douglas Gregor5a7a5bb2012-03-10 23:52:41 +000047 NamedDecl *Orig,
48 bool AllowFunctionTemplates) {
John McCallad00b772010-06-16 08:42:20 +000049 NamedDecl *D = Orig->getUnderlyingDecl();
Mike Stump1eb44332009-09-09 15:08:12 +000050
Douglas Gregor5a7a5bb2012-03-10 23:52:41 +000051 if (isa<TemplateDecl>(D)) {
52 if (!AllowFunctionTemplates && isa<FunctionTemplateDecl>(D))
53 return 0;
54
John McCallad00b772010-06-16 08:42:20 +000055 return Orig;
Douglas Gregor5a7a5bb2012-03-10 23:52:41 +000056 }
Mike Stump1eb44332009-09-09 15:08:12 +000057
Douglas Gregor2dd078a2009-09-02 22:59:36 +000058 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(D)) {
59 // C++ [temp.local]p1:
60 // Like normal (non-template) classes, class templates have an
61 // injected-class-name (Clause 9). The injected-class-name
62 // can be used with or without a template-argument-list. When
63 // it is used without a template-argument-list, it is
64 // equivalent to the injected-class-name followed by the
65 // template-parameters of the class template enclosed in
66 // <>. When it is used with a template-argument-list, it
67 // refers to the specified class template specialization,
68 // which could be the current specialization or another
69 // specialization.
70 if (Record->isInjectedClassName()) {
Douglas Gregor542b5482009-10-14 17:30:58 +000071 Record = cast<CXXRecordDecl>(Record->getDeclContext());
Douglas Gregor2dd078a2009-09-02 22:59:36 +000072 if (Record->getDescribedClassTemplate())
73 return Record->getDescribedClassTemplate();
74
75 if (ClassTemplateSpecializationDecl *Spec
76 = dyn_cast<ClassTemplateSpecializationDecl>(Record))
77 return Spec->getSpecializedTemplate();
78 }
Mike Stump1eb44332009-09-09 15:08:12 +000079
Douglas Gregor2dd078a2009-09-02 22:59:36 +000080 return 0;
81 }
Mike Stump1eb44332009-09-09 15:08:12 +000082
Douglas Gregor2dd078a2009-09-02 22:59:36 +000083 return 0;
84}
85
Douglas Gregor5a7a5bb2012-03-10 23:52:41 +000086void Sema::FilterAcceptableTemplateNames(LookupResult &R,
87 bool AllowFunctionTemplates) {
Douglas Gregor01e56ae2010-04-12 20:54:26 +000088 // The set of class templates we've already seen.
89 llvm::SmallPtrSet<ClassTemplateDecl *, 8> ClassTemplates;
John McCallf7a1a742009-11-24 19:00:30 +000090 LookupResult::Filter filter = R.makeFilter();
91 while (filter.hasNext()) {
92 NamedDecl *Orig = filter.next();
Douglas Gregor5a7a5bb2012-03-10 23:52:41 +000093 NamedDecl *Repl = isAcceptableTemplateName(Context, Orig,
94 AllowFunctionTemplates);
John McCallf7a1a742009-11-24 19:00:30 +000095 if (!Repl)
96 filter.erase();
Douglas Gregor01e56ae2010-04-12 20:54:26 +000097 else if (Repl != Orig) {
98
99 // C++ [temp.local]p3:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000100 // A lookup that finds an injected-class-name (10.2) can result in an
Douglas Gregor01e56ae2010-04-12 20:54:26 +0000101 // ambiguity in certain cases (for example, if it is found in more than
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000102 // one base class). If all of the injected-class-names that are found
103 // refer to specializations of the same class template, and if the name
Richard Smith3e4c6c42011-05-05 21:57:07 +0000104 // is used as a template-name, the reference refers to the class
105 // template itself and not a specialization thereof, and is not
Douglas Gregor01e56ae2010-04-12 20:54:26 +0000106 // ambiguous.
Douglas Gregor01e56ae2010-04-12 20:54:26 +0000107 if (ClassTemplateDecl *ClassTmpl = dyn_cast<ClassTemplateDecl>(Repl))
108 if (!ClassTemplates.insert(ClassTmpl)) {
109 filter.erase();
110 continue;
111 }
John McCall8ba66912010-08-13 07:02:08 +0000112
113 // FIXME: we promote access to public here as a workaround to
114 // the fact that LookupResult doesn't let us remember that we
115 // found this template through a particular injected class name,
116 // which means we end up doing nasty things to the invariants.
117 // Pretending that access is public is *much* safer.
118 filter.replace(Repl, AS_public);
Douglas Gregor01e56ae2010-04-12 20:54:26 +0000119 }
John McCallf7a1a742009-11-24 19:00:30 +0000120 }
121 filter.done();
122}
123
Douglas Gregor5a7a5bb2012-03-10 23:52:41 +0000124bool Sema::hasAnyAcceptableTemplateNames(LookupResult &R,
125 bool AllowFunctionTemplates) {
Douglas Gregor312eadb2011-04-24 05:37:28 +0000126 for (LookupResult::iterator I = R.begin(), IEnd = R.end(); I != IEnd; ++I)
Douglas Gregor5a7a5bb2012-03-10 23:52:41 +0000127 if (isAcceptableTemplateName(Context, *I, AllowFunctionTemplates))
Douglas Gregor312eadb2011-04-24 05:37:28 +0000128 return true;
129
Douglas Gregor3b887352011-04-27 04:48:22 +0000130 return false;
Douglas Gregor312eadb2011-04-24 05:37:28 +0000131}
132
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000133TemplateNameKind Sema::isTemplateName(Scope *S,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +0000134 CXXScopeSpec &SS,
Abramo Bagnara7c153532010-08-06 12:11:11 +0000135 bool hasTemplateKeyword,
Douglas Gregor014e88d2009-11-03 23:16:33 +0000136 UnqualifiedId &Name,
John McCallb3d87482010-08-24 05:47:05 +0000137 ParsedType ObjectTypePtr,
Douglas Gregor495c35d2009-08-25 22:51:20 +0000138 bool EnteringContext,
Douglas Gregor1fd6d442010-05-21 23:18:07 +0000139 TemplateTy &TemplateResult,
140 bool &MemberOfUnknownSpecialization) {
David Blaikie4e4d0842012-03-11 07:00:24 +0000141 assert(getLangOpts().CPlusPlus && "No template names in C!");
Douglas Gregorb862b8f2010-01-11 23:29:10 +0000142
Douglas Gregor014e88d2009-11-03 23:16:33 +0000143 DeclarationName TName;
Douglas Gregor1fd6d442010-05-21 23:18:07 +0000144 MemberOfUnknownSpecialization = false;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000145
Douglas Gregor014e88d2009-11-03 23:16:33 +0000146 switch (Name.getKind()) {
147 case UnqualifiedId::IK_Identifier:
148 TName = DeclarationName(Name.Identifier);
149 break;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000150
Douglas Gregor014e88d2009-11-03 23:16:33 +0000151 case UnqualifiedId::IK_OperatorFunctionId:
152 TName = Context.DeclarationNames.getCXXOperatorName(
153 Name.OperatorFunctionId.Operator);
154 break;
155
Sean Hunte6252d12009-11-28 08:58:14 +0000156 case UnqualifiedId::IK_LiteralOperatorId:
Sean Hunt3e518bd2009-11-29 07:34:05 +0000157 TName = Context.DeclarationNames.getCXXLiteralOperatorName(Name.Identifier);
158 break;
Sean Hunte6252d12009-11-28 08:58:14 +0000159
Douglas Gregor014e88d2009-11-03 23:16:33 +0000160 default:
161 return TNK_Non_template;
162 }
Mike Stump1eb44332009-09-09 15:08:12 +0000163
John McCallb3d87482010-08-24 05:47:05 +0000164 QualType ObjectType = ObjectTypePtr.get();
Mike Stump1eb44332009-09-09 15:08:12 +0000165
Daniel Dunbar96a00142012-03-09 18:35:03 +0000166 LookupResult R(*this, TName, Name.getLocStart(), LookupOrdinaryName);
Douglas Gregor1fd6d442010-05-21 23:18:07 +0000167 LookupTemplateName(R, S, SS, ObjectType, EnteringContext,
168 MemberOfUnknownSpecialization);
John McCall67d22fb2010-08-28 20:17:00 +0000169 if (R.empty()) return TNK_Non_template;
170 if (R.isAmbiguous()) {
171 // Suppress diagnostics; we'll redo this lookup later.
John McCallb8592062010-08-13 02:23:42 +0000172 R.suppressDiagnostics();
John McCall67d22fb2010-08-28 20:17:00 +0000173
174 // FIXME: we might have ambiguous templates, in which case we
175 // should at least parse them properly!
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000176 return TNK_Non_template;
John McCallb8592062010-08-13 02:23:42 +0000177 }
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000178
John McCall0bd6feb2009-12-02 08:04:21 +0000179 TemplateName Template;
180 TemplateNameKind TemplateKind;
Mike Stump1eb44332009-09-09 15:08:12 +0000181
John McCall0bd6feb2009-12-02 08:04:21 +0000182 unsigned ResultCount = R.end() - R.begin();
183 if (ResultCount > 1) {
184 // We assume that we'll preserve the qualifier from a function
185 // template name in other ways.
186 Template = Context.getOverloadedTemplateName(R.begin(), R.end());
187 TemplateKind = TNK_Function_template;
John McCallb8592062010-08-13 02:23:42 +0000188
189 // We'll do this lookup again later.
190 R.suppressDiagnostics();
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000191 } else {
John McCall0bd6feb2009-12-02 08:04:21 +0000192 TemplateDecl *TD = cast<TemplateDecl>((*R.begin())->getUnderlyingDecl());
193
194 if (SS.isSet() && !SS.isInvalid()) {
195 NestedNameSpecifier *Qualifier
196 = static_cast<NestedNameSpecifier *>(SS.getScopeRep());
Abramo Bagnara7c153532010-08-06 12:11:11 +0000197 Template = Context.getQualifiedTemplateName(Qualifier,
198 hasTemplateKeyword, TD);
John McCall0bd6feb2009-12-02 08:04:21 +0000199 } else {
200 Template = TemplateName(TD);
201 }
202
John McCallb8592062010-08-13 02:23:42 +0000203 if (isa<FunctionTemplateDecl>(TD)) {
John McCall0bd6feb2009-12-02 08:04:21 +0000204 TemplateKind = TNK_Function_template;
John McCallb8592062010-08-13 02:23:42 +0000205
206 // We'll do this lookup again later.
207 R.suppressDiagnostics();
208 } else {
Richard Smith3e4c6c42011-05-05 21:57:07 +0000209 assert(isa<ClassTemplateDecl>(TD) || isa<TemplateTemplateParmDecl>(TD) ||
210 isa<TypeAliasTemplateDecl>(TD));
John McCall0bd6feb2009-12-02 08:04:21 +0000211 TemplateKind = TNK_Type_template;
212 }
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000213 }
Mike Stump1eb44332009-09-09 15:08:12 +0000214
John McCall0bd6feb2009-12-02 08:04:21 +0000215 TemplateResult = TemplateTy::make(Template);
216 return TemplateKind;
John McCallf7a1a742009-11-24 19:00:30 +0000217}
218
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000219bool Sema::DiagnoseUnknownTemplateName(const IdentifierInfo &II,
Douglas Gregor84d0a192010-01-12 21:28:44 +0000220 SourceLocation IILoc,
221 Scope *S,
222 const CXXScopeSpec *SS,
223 TemplateTy &SuggestedTemplate,
224 TemplateNameKind &SuggestedKind) {
225 // We can't recover unless there's a dependent scope specifier preceding the
226 // template name.
Douglas Gregord5ab9b02010-05-21 23:43:39 +0000227 // FIXME: Typo correction?
Douglas Gregor84d0a192010-01-12 21:28:44 +0000228 if (!SS || !SS->isSet() || !isDependentScopeSpecifier(*SS) ||
229 computeDeclContext(*SS))
230 return false;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000231
Douglas Gregor84d0a192010-01-12 21:28:44 +0000232 // The code is missing a 'template' keyword prior to the dependent template
233 // name.
234 NestedNameSpecifier *Qualifier = (NestedNameSpecifier*)SS->getScopeRep();
235 Diag(IILoc, diag::err_template_kw_missing)
236 << Qualifier << II.getName()
Douglas Gregor849b2432010-03-31 17:46:05 +0000237 << FixItHint::CreateInsertion(IILoc, "template ");
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000238 SuggestedTemplate
Douglas Gregor84d0a192010-01-12 21:28:44 +0000239 = TemplateTy::make(Context.getDependentTemplateName(Qualifier, &II));
240 SuggestedKind = TNK_Dependent_template_name;
241 return true;
242}
243
John McCallf7a1a742009-11-24 19:00:30 +0000244void Sema::LookupTemplateName(LookupResult &Found,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +0000245 Scope *S, CXXScopeSpec &SS,
John McCallf7a1a742009-11-24 19:00:30 +0000246 QualType ObjectType,
Douglas Gregor1fd6d442010-05-21 23:18:07 +0000247 bool EnteringContext,
248 bool &MemberOfUnknownSpecialization) {
John McCallf7a1a742009-11-24 19:00:30 +0000249 // Determine where to perform name lookup
Douglas Gregor1fd6d442010-05-21 23:18:07 +0000250 MemberOfUnknownSpecialization = false;
John McCallf7a1a742009-11-24 19:00:30 +0000251 DeclContext *LookupCtx = 0;
252 bool isDependent = false;
253 if (!ObjectType.isNull()) {
254 // This nested-name-specifier occurs in a member access expression, e.g.,
255 // x->B::f, and we are looking into the type of the object.
256 assert(!SS.isSet() && "ObjectType and scope specifier cannot coexist");
257 LookupCtx = computeDeclContext(ObjectType);
258 isDependent = ObjectType->isDependentType();
Richard Smith33f0faa2013-06-07 20:03:01 +0000259 assert((isDependent || !ObjectType->isIncompleteType() ||
260 ObjectType->castAs<TagType>()->isBeingDefined()) &&
John McCallf7a1a742009-11-24 19:00:30 +0000261 "Caller should have completed object type");
Douglas Gregor1d7049a2012-01-12 16:11:24 +0000262
263 // Template names cannot appear inside an Objective-C class or object type.
264 if (ObjectType->isObjCObjectOrInterfaceType()) {
265 Found.clear();
266 return;
267 }
John McCallf7a1a742009-11-24 19:00:30 +0000268 } else if (SS.isSet()) {
269 // This nested-name-specifier occurs after another nested-name-specifier,
270 // so long into the context associated with the prior nested-name-specifier.
271 LookupCtx = computeDeclContext(SS, EnteringContext);
272 isDependent = isDependentScopeSpecifier(SS);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000273
John McCallf7a1a742009-11-24 19:00:30 +0000274 // The declaration context must be complete.
John McCall77bb1aa2010-05-01 00:40:08 +0000275 if (LookupCtx && RequireCompleteDeclContext(SS, LookupCtx))
John McCallf7a1a742009-11-24 19:00:30 +0000276 return;
277 }
278
279 bool ObjectTypeSearchedInScope = false;
Douglas Gregor5a7a5bb2012-03-10 23:52:41 +0000280 bool AllowFunctionTemplatesInLookup = true;
John McCallf7a1a742009-11-24 19:00:30 +0000281 if (LookupCtx) {
282 // Perform "qualified" name lookup into the declaration context we
283 // computed, which is either the type of the base of a member access
284 // expression or the declaration context associated with a prior
285 // nested-name-specifier.
286 LookupQualifiedName(Found, LookupCtx);
John McCallf7a1a742009-11-24 19:00:30 +0000287 if (!ObjectType.isNull() && Found.empty()) {
288 // C++ [basic.lookup.classref]p1:
289 // In a class member access expression (5.2.5), if the . or -> token is
290 // immediately followed by an identifier followed by a <, the
291 // identifier must be looked up to determine whether the < is the
292 // beginning of a template argument list (14.2) or a less-than operator.
293 // The identifier is first looked up in the class of the object
294 // expression. If the identifier is not found, it is then looked up in
295 // the context of the entire postfix-expression and shall name a class
296 // or function template.
John McCallf7a1a742009-11-24 19:00:30 +0000297 if (S) LookupName(Found, S);
298 ObjectTypeSearchedInScope = true;
Douglas Gregor5a7a5bb2012-03-10 23:52:41 +0000299 AllowFunctionTemplatesInLookup = false;
John McCallf7a1a742009-11-24 19:00:30 +0000300 }
Douglas Gregorf9f97a02010-07-16 16:54:17 +0000301 } else if (isDependent && (!S || ObjectType.isNull())) {
Douglas Gregor2e933882010-01-12 17:06:20 +0000302 // We cannot look into a dependent object type or nested nme
303 // specifier.
Douglas Gregor1fd6d442010-05-21 23:18:07 +0000304 MemberOfUnknownSpecialization = true;
John McCallf7a1a742009-11-24 19:00:30 +0000305 return;
306 } else {
307 // Perform unqualified name lookup in the current scope.
308 LookupName(Found, S);
Douglas Gregor5a7a5bb2012-03-10 23:52:41 +0000309
310 if (!ObjectType.isNull())
311 AllowFunctionTemplatesInLookup = false;
John McCallf7a1a742009-11-24 19:00:30 +0000312 }
313
Douglas Gregor2e933882010-01-12 17:06:20 +0000314 if (Found.empty() && !isDependent) {
Douglas Gregorbfea2392009-12-31 08:11:17 +0000315 // If we did not find any names, attempt to correct any typos.
316 DeclarationName Name = Found.getLookupName();
Douglas Gregord8bba9c2011-06-28 16:20:02 +0000317 Found.clear();
Kaelyn Uhrainf8ec8c92012-01-13 23:10:36 +0000318 // Simple filter callback that, for keywords, only accepts the C++ *_cast
319 CorrectionCandidateCallback FilterCCC;
320 FilterCCC.WantTypeSpecifiers = false;
321 FilterCCC.WantExpressionKeywords = false;
322 FilterCCC.WantRemainingKeywords = false;
323 FilterCCC.WantCXXNamedCasts = true;
Douglas Gregord8bba9c2011-06-28 16:20:02 +0000324 if (TypoCorrection Corrected = CorrectTypo(Found.getLookupNameInfo(),
325 Found.getLookupKind(), S, &SS,
Kaelyn Uhrain16e46dd2012-01-31 23:49:25 +0000326 FilterCCC, LookupCtx)) {
Douglas Gregord8bba9c2011-06-28 16:20:02 +0000327 Found.setLookupName(Corrected.getCorrection());
328 if (Corrected.getCorrectionDecl())
329 Found.addDecl(Corrected.getCorrectionDecl());
Douglas Gregor312eadb2011-04-24 05:37:28 +0000330 FilterAcceptableTemplateNames(Found);
John McCallad00b772010-06-16 08:42:20 +0000331 if (!Found.empty()) {
David Blaikie4e4d0842012-03-11 07:00:24 +0000332 std::string CorrectedStr(Corrected.getAsString(getLangOpts()));
333 std::string CorrectedQuotedStr(Corrected.getQuoted(getLangOpts()));
Kaelyn Uhrainb2567dd2013-07-02 23:47:44 +0000334 if (LookupCtx) {
335 bool droppedSpecifier = Corrected.WillReplaceSpecifier() &&
336 Name.getAsString() == CorrectedStr;
Douglas Gregorbfea2392009-12-31 08:11:17 +0000337 Diag(Found.getNameLoc(), diag::err_no_member_template_suggest)
Kaelyn Uhrainb2567dd2013-07-02 23:47:44 +0000338 << Name << LookupCtx << droppedSpecifier << CorrectedQuotedStr
339 << SS.getRange()
David Blaikie6952c012012-10-12 20:00:44 +0000340 << FixItHint::CreateReplacement(Corrected.getCorrectionRange(),
341 CorrectedStr);
Kaelyn Uhrainb2567dd2013-07-02 23:47:44 +0000342 } else {
Douglas Gregorbfea2392009-12-31 08:11:17 +0000343 Diag(Found.getNameLoc(), diag::err_no_template_suggest)
Douglas Gregord8bba9c2011-06-28 16:20:02 +0000344 << Name << CorrectedQuotedStr
345 << FixItHint::CreateReplacement(Found.getNameLoc(), CorrectedStr);
Kaelyn Uhrainb2567dd2013-07-02 23:47:44 +0000346 }
Douglas Gregor67dd1d42010-01-07 00:17:44 +0000347 if (TemplateDecl *Template = Found.getAsSingle<TemplateDecl>())
348 Diag(Template->getLocation(), diag::note_previous_decl)
Douglas Gregord8bba9c2011-06-28 16:20:02 +0000349 << CorrectedQuotedStr;
John McCallad00b772010-06-16 08:42:20 +0000350 }
Douglas Gregorbfea2392009-12-31 08:11:17 +0000351 } else {
Douglas Gregor12eb5d62010-06-29 19:27:42 +0000352 Found.setLookupName(Name);
Douglas Gregorbfea2392009-12-31 08:11:17 +0000353 }
354 }
355
Douglas Gregor5a7a5bb2012-03-10 23:52:41 +0000356 FilterAcceptableTemplateNames(Found, AllowFunctionTemplatesInLookup);
Douglas Gregorf9f97a02010-07-16 16:54:17 +0000357 if (Found.empty()) {
358 if (isDependent)
359 MemberOfUnknownSpecialization = true;
John McCallf7a1a742009-11-24 19:00:30 +0000360 return;
Douglas Gregorf9f97a02010-07-16 16:54:17 +0000361 }
John McCallf7a1a742009-11-24 19:00:30 +0000362
Douglas Gregor05e60762012-05-01 20:23:02 +0000363 if (S && !ObjectType.isNull() && !ObjectTypeSearchedInScope &&
Richard Smith80ad52f2013-01-02 11:42:31 +0000364 !(getLangOpts().CPlusPlus11 && !Found.empty())) {
Douglas Gregor05e60762012-05-01 20:23:02 +0000365 // C++03 [basic.lookup.classref]p1:
John McCallf7a1a742009-11-24 19:00:30 +0000366 // [...] If the lookup in the class of the object expression finds a
367 // template, the name is also looked up in the context of the entire
368 // postfix-expression and [...]
369 //
Douglas Gregor05e60762012-05-01 20:23:02 +0000370 // Note: C++11 does not perform this second lookup.
John McCallf7a1a742009-11-24 19:00:30 +0000371 LookupResult FoundOuter(*this, Found.getLookupName(), Found.getNameLoc(),
372 LookupOrdinaryName);
373 LookupName(FoundOuter, S);
Douglas Gregor5a7a5bb2012-03-10 23:52:41 +0000374 FilterAcceptableTemplateNames(FoundOuter, /*AllowFunctionTemplates=*/false);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000375
John McCallf7a1a742009-11-24 19:00:30 +0000376 if (FoundOuter.empty()) {
377 // - if the name is not found, the name found in the class of the
378 // object expression is used, otherwise
Douglas Gregora6d1e762011-08-10 21:59:45 +0000379 } else if (!FoundOuter.getAsSingle<ClassTemplateDecl>() ||
380 FoundOuter.isAmbiguous()) {
John McCallf7a1a742009-11-24 19:00:30 +0000381 // - if the name is found in the context of the entire
382 // postfix-expression and does not name a class template, the name
383 // found in the class of the object expression is used, otherwise
Douglas Gregora6d1e762011-08-10 21:59:45 +0000384 FoundOuter.clear();
John McCallad00b772010-06-16 08:42:20 +0000385 } else if (!Found.isSuppressingDiagnostics()) {
John McCallf7a1a742009-11-24 19:00:30 +0000386 // - if the name found is a class template, it must refer to the same
387 // entity as the one found in the class of the object expression,
388 // otherwise the program is ill-formed.
389 if (!Found.isSingleResult() ||
390 Found.getFoundDecl()->getCanonicalDecl()
391 != FoundOuter.getFoundDecl()->getCanonicalDecl()) {
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000392 Diag(Found.getNameLoc(),
Jeffrey Yasskin21d07e42010-06-05 01:39:57 +0000393 diag::ext_nested_name_member_ref_lookup_ambiguous)
394 << Found.getLookupName()
395 << ObjectType;
John McCallf7a1a742009-11-24 19:00:30 +0000396 Diag(Found.getRepresentativeDecl()->getLocation(),
397 diag::note_ambig_member_ref_object_type)
398 << ObjectType;
399 Diag(FoundOuter.getFoundDecl()->getLocation(),
400 diag::note_ambig_member_ref_scope);
401
402 // Recover by taking the template that we found in the object
403 // expression's type.
404 }
405 }
406 }
407}
408
John McCall2f841ba2009-12-02 03:53:29 +0000409/// ActOnDependentIdExpression - Handle a dependent id-expression that
410/// was just parsed. This is only possible with an explicit scope
411/// specifier naming a dependent type.
John McCall60d7b3a2010-08-24 06:29:42 +0000412ExprResult
John McCallf7a1a742009-11-24 19:00:30 +0000413Sema::ActOnDependentIdExpression(const CXXScopeSpec &SS,
Abramo Bagnarae4b92762012-01-27 09:46:47 +0000414 SourceLocation TemplateKWLoc,
Abramo Bagnara25777432010-08-11 22:01:17 +0000415 const DeclarationNameInfo &NameInfo,
John McCall2f841ba2009-12-02 03:53:29 +0000416 bool isAddressOfOperand,
John McCallf7a1a742009-11-24 19:00:30 +0000417 const TemplateArgumentListInfo *TemplateArgs) {
John McCallea1471e2010-05-20 01:18:31 +0000418 DeclContext *DC = getFunctionLevelDeclContext();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000419
John McCall2f841ba2009-12-02 03:53:29 +0000420 if (!isAddressOfOperand &&
John McCallea1471e2010-05-20 01:18:31 +0000421 isa<CXXMethodDecl>(DC) &&
422 cast<CXXMethodDecl>(DC)->isInstance()) {
423 QualType ThisType = cast<CXXMethodDecl>(DC)->getThisType(Context);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000424
John McCallf7a1a742009-11-24 19:00:30 +0000425 // Since the 'this' expression is synthesized, we don't need to
426 // perform the double-lookup check.
427 NamedDecl *FirstQualifierInScope = 0;
428
John McCallaa81e162009-12-01 22:10:20 +0000429 return Owned(CXXDependentScopeMemberExpr::Create(Context,
430 /*This*/ 0, ThisType,
431 /*IsArrow*/ true,
John McCallf7a1a742009-11-24 19:00:30 +0000432 /*Op*/ SourceLocation(),
Douglas Gregor7c3179c2011-02-28 18:50:33 +0000433 SS.getWithLocInContext(Context),
Abramo Bagnarae4b92762012-01-27 09:46:47 +0000434 TemplateKWLoc,
John McCallf7a1a742009-11-24 19:00:30 +0000435 FirstQualifierInScope,
Abramo Bagnara25777432010-08-11 22:01:17 +0000436 NameInfo,
John McCallf7a1a742009-11-24 19:00:30 +0000437 TemplateArgs));
438 }
439
Abramo Bagnarae4b92762012-01-27 09:46:47 +0000440 return BuildDependentDeclRefExpr(SS, TemplateKWLoc, NameInfo, TemplateArgs);
John McCallf7a1a742009-11-24 19:00:30 +0000441}
442
John McCall60d7b3a2010-08-24 06:29:42 +0000443ExprResult
John McCallf7a1a742009-11-24 19:00:30 +0000444Sema::BuildDependentDeclRefExpr(const CXXScopeSpec &SS,
Abramo Bagnarae4b92762012-01-27 09:46:47 +0000445 SourceLocation TemplateKWLoc,
Abramo Bagnara25777432010-08-11 22:01:17 +0000446 const DeclarationNameInfo &NameInfo,
John McCallf7a1a742009-11-24 19:00:30 +0000447 const TemplateArgumentListInfo *TemplateArgs) {
448 return Owned(DependentScopeDeclRefExpr::Create(Context,
Douglas Gregor00cf3cc2011-02-25 20:49:16 +0000449 SS.getWithLocInContext(Context),
Abramo Bagnarae4b92762012-01-27 09:46:47 +0000450 TemplateKWLoc,
Abramo Bagnara25777432010-08-11 22:01:17 +0000451 NameInfo,
John McCallf7a1a742009-11-24 19:00:30 +0000452 TemplateArgs));
Douglas Gregord6fb7ef2008-12-18 19:37:40 +0000453}
454
Douglas Gregor72c3f312008-12-05 18:15:24 +0000455/// DiagnoseTemplateParameterShadow - Produce a diagnostic complaining
456/// that the template parameter 'PrevDecl' is being shadowed by a new
457/// declaration at location Loc. Returns true to indicate that this is
458/// an error, and false otherwise.
Douglas Gregorcb8f9512011-10-20 17:58:49 +0000459void Sema::DiagnoseTemplateParameterShadow(SourceLocation Loc, Decl *PrevDecl) {
Douglas Gregorf57172b2008-12-08 18:40:42 +0000460 assert(PrevDecl->isTemplateParameter() && "Not a template parameter");
Douglas Gregor72c3f312008-12-05 18:15:24 +0000461
462 // Microsoft Visual C++ permits template parameters to be shadowed.
David Blaikie4e4d0842012-03-11 07:00:24 +0000463 if (getLangOpts().MicrosoftExt)
Douglas Gregorcb8f9512011-10-20 17:58:49 +0000464 return;
Douglas Gregor72c3f312008-12-05 18:15:24 +0000465
466 // C++ [temp.local]p4:
467 // A template-parameter shall not be redeclared within its
468 // scope (including nested scopes).
Mike Stump1eb44332009-09-09 15:08:12 +0000469 Diag(Loc, diag::err_template_param_shadow)
Douglas Gregor72c3f312008-12-05 18:15:24 +0000470 << cast<NamedDecl>(PrevDecl)->getDeclName();
471 Diag(PrevDecl->getLocation(), diag::note_template_param_here);
Douglas Gregorcb8f9512011-10-20 17:58:49 +0000472 return;
Douglas Gregor72c3f312008-12-05 18:15:24 +0000473}
474
Douglas Gregor2943aed2009-03-03 04:44:36 +0000475/// AdjustDeclIfTemplate - If the given decl happens to be a template, reset
Douglas Gregoraaba5e32009-02-04 19:02:06 +0000476/// the parameter D to reference the templated declaration and return a pointer
477/// to the template declaration. Otherwise, do nothing to D and return null.
John McCalld226f652010-08-21 09:40:31 +0000478TemplateDecl *Sema::AdjustDeclIfTemplate(Decl *&D) {
479 if (TemplateDecl *Temp = dyn_cast_or_null<TemplateDecl>(D)) {
480 D = Temp->getTemplatedDecl();
Douglas Gregoraaba5e32009-02-04 19:02:06 +0000481 return Temp;
482 }
483 return 0;
484}
485
Douglas Gregorba68eca2011-01-05 17:40:24 +0000486ParsedTemplateArgument ParsedTemplateArgument::getTemplatePackExpansion(
487 SourceLocation EllipsisLoc) const {
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000488 assert(Kind == Template &&
Douglas Gregorba68eca2011-01-05 17:40:24 +0000489 "Only template template arguments can be pack expansions here");
490 assert(getAsTemplate().get().containsUnexpandedParameterPack() &&
491 "Template template argument pack expansion without packs");
492 ParsedTemplateArgument Result(*this);
493 Result.EllipsisLoc = EllipsisLoc;
494 return Result;
495}
496
Douglas Gregor788cd062009-11-11 01:00:40 +0000497static TemplateArgumentLoc translateTemplateArgument(Sema &SemaRef,
498 const ParsedTemplateArgument &Arg) {
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000499
Douglas Gregor788cd062009-11-11 01:00:40 +0000500 switch (Arg.getKind()) {
501 case ParsedTemplateArgument::Type: {
John McCalla93c9342009-12-07 02:54:59 +0000502 TypeSourceInfo *DI;
Douglas Gregor788cd062009-11-11 01:00:40 +0000503 QualType T = SemaRef.GetTypeFromParser(Arg.getAsType(), &DI);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000504 if (!DI)
John McCalla93c9342009-12-07 02:54:59 +0000505 DI = SemaRef.Context.getTrivialTypeSourceInfo(T, Arg.getLocation());
Douglas Gregor788cd062009-11-11 01:00:40 +0000506 return TemplateArgumentLoc(TemplateArgument(T), DI);
507 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000508
Douglas Gregor788cd062009-11-11 01:00:40 +0000509 case ParsedTemplateArgument::NonType: {
510 Expr *E = static_cast<Expr *>(Arg.getAsExpr());
511 return TemplateArgumentLoc(TemplateArgument(E), E);
512 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000513
Douglas Gregor788cd062009-11-11 01:00:40 +0000514 case ParsedTemplateArgument::Template: {
John McCall2b5289b2010-08-23 07:28:44 +0000515 TemplateName Template = Arg.getAsTemplate().get();
Douglas Gregor2be29f42011-01-14 23:41:42 +0000516 TemplateArgument TArg;
517 if (Arg.getEllipsisLoc().isValid())
David Blaikiedc84cd52013-02-20 22:23:23 +0000518 TArg = TemplateArgument(Template, Optional<unsigned int>());
Douglas Gregor2be29f42011-01-14 23:41:42 +0000519 else
520 TArg = Template;
521 return TemplateArgumentLoc(TArg,
Douglas Gregorb6744ef2011-03-02 17:09:35 +0000522 Arg.getScopeSpec().getWithLocInContext(
523 SemaRef.Context),
Douglas Gregorba68eca2011-01-05 17:40:24 +0000524 Arg.getLocation(),
525 Arg.getEllipsisLoc());
Douglas Gregor788cd062009-11-11 01:00:40 +0000526 }
527 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000528
Jeffrey Yasskin9f61aa92009-12-12 05:05:38 +0000529 llvm_unreachable("Unhandled parsed template argument");
Douglas Gregor788cd062009-11-11 01:00:40 +0000530}
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000531
Douglas Gregor788cd062009-11-11 01:00:40 +0000532/// \brief Translates template arguments as provided by the parser
533/// into template arguments used by semantic analysis.
John McCalld5532b62009-11-23 01:53:49 +0000534void Sema::translateTemplateArguments(const ASTTemplateArgsPtr &TemplateArgsIn,
535 TemplateArgumentListInfo &TemplateArgs) {
Douglas Gregor788cd062009-11-11 01:00:40 +0000536 for (unsigned I = 0, Last = TemplateArgsIn.size(); I != Last; ++I)
John McCalld5532b62009-11-23 01:53:49 +0000537 TemplateArgs.addArgument(translateTemplateArgument(*this,
538 TemplateArgsIn[I]));
Douglas Gregor788cd062009-11-11 01:00:40 +0000539}
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000540
Richard Smithc7e863f2013-06-25 22:21:36 +0000541static void maybeDiagnoseTemplateParameterShadow(Sema &SemaRef, Scope *S,
542 SourceLocation Loc,
543 IdentifierInfo *Name) {
544 NamedDecl *PrevDecl = SemaRef.LookupSingleName(
545 S, Name, Loc, Sema::LookupOrdinaryName, Sema::ForRedeclaration);
546 if (PrevDecl && PrevDecl->isTemplateParameter())
547 SemaRef.DiagnoseTemplateParameterShadow(Loc, PrevDecl);
548}
549
Douglas Gregor72c3f312008-12-05 18:15:24 +0000550/// ActOnTypeParameter - Called when a C++ template type parameter
551/// (e.g., "typename T") has been parsed. Typename specifies whether
552/// the keyword "typename" was used to declare the type parameter
553/// (otherwise, "class" was used), and KeyLoc is the location of the
554/// "class" or "typename" keyword. ParamName is the name of the
555/// parameter (NULL indicates an unnamed template parameter) and
Chandler Carruth4fb86f82011-05-01 00:51:33 +0000556/// ParamNameLoc is the location of the parameter name (if any).
Douglas Gregor72c3f312008-12-05 18:15:24 +0000557/// If the type parameter has a default argument, it will be added
558/// later via ActOnTypeParameterDefault.
John McCalld226f652010-08-21 09:40:31 +0000559Decl *Sema::ActOnTypeParameter(Scope *S, bool Typename, bool Ellipsis,
560 SourceLocation EllipsisLoc,
561 SourceLocation KeyLoc,
562 IdentifierInfo *ParamName,
563 SourceLocation ParamNameLoc,
564 unsigned Depth, unsigned Position,
565 SourceLocation EqualLoc,
John McCallb3d87482010-08-24 05:47:05 +0000566 ParsedType DefaultArg) {
Mike Stump1eb44332009-09-09 15:08:12 +0000567 assert(S->isTemplateParamScope() &&
568 "Template type parameter not in template parameter scope!");
Douglas Gregor72c3f312008-12-05 18:15:24 +0000569 bool Invalid = false;
570
Douglas Gregorddc29e12009-02-06 22:42:48 +0000571 SourceLocation Loc = ParamNameLoc;
572 if (!ParamName)
573 Loc = KeyLoc;
574
Douglas Gregor72c3f312008-12-05 18:15:24 +0000575 TemplateTypeParmDecl *Param
John McCall7a9813c2010-01-22 00:28:27 +0000576 = TemplateTypeParmDecl::Create(Context, Context.getTranslationUnitDecl(),
Abramo Bagnara344577e2011-03-06 15:48:19 +0000577 KeyLoc, Loc, Depth, Position, ParamName,
578 Typename, Ellipsis);
Douglas Gregor9a299e02011-03-04 17:52:15 +0000579 Param->setAccess(AS_public);
Douglas Gregor72c3f312008-12-05 18:15:24 +0000580 if (Invalid)
581 Param->setInvalidDecl();
582
583 if (ParamName) {
Richard Smithc7e863f2013-06-25 22:21:36 +0000584 maybeDiagnoseTemplateParameterShadow(*this, S, ParamNameLoc, ParamName);
585
Douglas Gregor72c3f312008-12-05 18:15:24 +0000586 // Add the template parameter into the current scope.
John McCalld226f652010-08-21 09:40:31 +0000587 S->AddDecl(Param);
Douglas Gregor72c3f312008-12-05 18:15:24 +0000588 IdResolver.AddDecl(Param);
589 }
590
Douglas Gregor61c4d282011-01-05 15:48:55 +0000591 // C++0x [temp.param]p9:
592 // A default template-argument may be specified for any kind of
593 // template-parameter that is not a template parameter pack.
594 if (DefaultArg && Ellipsis) {
595 Diag(EqualLoc, diag::err_template_param_pack_default_arg);
596 DefaultArg = ParsedType();
597 }
598
Douglas Gregorbb3310a2010-07-01 00:00:45 +0000599 // Handle the default argument, if provided.
600 if (DefaultArg) {
601 TypeSourceInfo *DefaultTInfo;
602 GetTypeFromParser(DefaultArg, &DefaultTInfo);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000603
Douglas Gregorbb3310a2010-07-01 00:00:45 +0000604 assert(DefaultTInfo && "expected source information for type");
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000605
Douglas Gregor6f526752010-12-16 08:48:57 +0000606 // Check for unexpanded parameter packs.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000607 if (DiagnoseUnexpandedParameterPack(Loc, DefaultTInfo,
Douglas Gregor6f526752010-12-16 08:48:57 +0000608 UPPC_DefaultArgument))
609 return Param;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000610
Douglas Gregorbb3310a2010-07-01 00:00:45 +0000611 // Check the template argument itself.
612 if (CheckTemplateArgument(Param, DefaultTInfo)) {
613 Param->setInvalidDecl();
John McCalld226f652010-08-21 09:40:31 +0000614 return Param;
Douglas Gregorbb3310a2010-07-01 00:00:45 +0000615 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000616
Douglas Gregorbb3310a2010-07-01 00:00:45 +0000617 Param->setDefaultArgument(DefaultTInfo, false);
618 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000619
John McCalld226f652010-08-21 09:40:31 +0000620 return Param;
Douglas Gregor72c3f312008-12-05 18:15:24 +0000621}
622
Douglas Gregor2943aed2009-03-03 04:44:36 +0000623/// \brief Check that the type of a non-type template parameter is
624/// well-formed.
625///
626/// \returns the (possibly-promoted) parameter type if valid;
627/// otherwise, produces a diagnostic and returns a NULL type.
Mike Stump1eb44332009-09-09 15:08:12 +0000628QualType
Douglas Gregor2943aed2009-03-03 04:44:36 +0000629Sema::CheckNonTypeTemplateParameterType(QualType T, SourceLocation Loc) {
Douglas Gregora481ec42010-05-23 19:57:01 +0000630 // We don't allow variably-modified types as the type of non-type template
631 // parameters.
632 if (T->isVariablyModifiedType()) {
633 Diag(Loc, diag::err_variably_modified_nontype_template_param)
634 << T;
635 return QualType();
636 }
637
Douglas Gregor2943aed2009-03-03 04:44:36 +0000638 // C++ [temp.param]p4:
639 //
640 // A non-type template-parameter shall have one of the following
641 // (optionally cv-qualified) types:
642 //
643 // -- integral or enumeration type,
Douglas Gregor2ade35e2010-06-16 00:17:44 +0000644 if (T->isIntegralOrEnumerationType() ||
Mike Stump1eb44332009-09-09 15:08:12 +0000645 // -- pointer to object or pointer to function,
Eli Friedman13578692010-08-05 02:49:48 +0000646 T->isPointerType() ||
Mike Stump1eb44332009-09-09 15:08:12 +0000647 // -- reference to object or reference to function,
Douglas Gregor2943aed2009-03-03 04:44:36 +0000648 T->isReferenceType() ||
Douglas Gregor84ee2ee2011-05-21 23:15:46 +0000649 // -- pointer to member,
Douglas Gregor2943aed2009-03-03 04:44:36 +0000650 T->isMemberPointerType() ||
Douglas Gregor84ee2ee2011-05-21 23:15:46 +0000651 // -- std::nullptr_t.
652 T->isNullPtrType() ||
Douglas Gregor2943aed2009-03-03 04:44:36 +0000653 // If T is a dependent type, we can't do the check now, so we
654 // assume that it is well-formed.
Richard Smithe37f4842012-03-13 07:21:50 +0000655 T->isDependentType()) {
656 // C++ [temp.param]p5: The top-level cv-qualifiers on the template-parameter
657 // are ignored when determining its type.
658 return T.getUnqualifiedType();
659 }
660
Douglas Gregor2943aed2009-03-03 04:44:36 +0000661 // C++ [temp.param]p8:
662 //
663 // A non-type template-parameter of type "array of T" or
664 // "function returning T" is adjusted to be of type "pointer to
665 // T" or "pointer to function returning T", respectively.
666 else if (T->isArrayType())
667 // FIXME: Keep the type prior to promotion?
668 return Context.getArrayDecayedType(T);
669 else if (T->isFunctionType())
670 // FIXME: Keep the type prior to promotion?
671 return Context.getPointerType(T);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000672
Douglas Gregor2943aed2009-03-03 04:44:36 +0000673 Diag(Loc, diag::err_template_nontype_parm_bad_type)
674 << T;
675
676 return QualType();
677}
678
John McCalld226f652010-08-21 09:40:31 +0000679Decl *Sema::ActOnNonTypeTemplateParameter(Scope *S, Declarator &D,
680 unsigned Depth,
681 unsigned Position,
682 SourceLocation EqualLoc,
John McCall9ae2f072010-08-23 23:25:46 +0000683 Expr *Default) {
John McCallbf1a0282010-06-04 23:28:52 +0000684 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
685 QualType T = TInfo->getType();
Douglas Gregor72c3f312008-12-05 18:15:24 +0000686
Douglas Gregoraaba5e32009-02-04 19:02:06 +0000687 assert(S->isTemplateParamScope() &&
688 "Non-type template parameter not in template parameter scope!");
Douglas Gregor72c3f312008-12-05 18:15:24 +0000689 bool Invalid = false;
690
Douglas Gregor4d2abba2010-12-16 15:36:43 +0000691 T = CheckNonTypeTemplateParameterType(T, D.getIdentifierLoc());
692 if (T.isNull()) {
Douglas Gregor2943aed2009-03-03 04:44:36 +0000693 T = Context.IntTy; // Recover with an 'int' type.
Douglas Gregorceef30c2009-03-09 16:46:39 +0000694 Invalid = true;
695 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000696
Richard Smithc7e863f2013-06-25 22:21:36 +0000697 IdentifierInfo *ParamName = D.getIdentifier();
Douglas Gregor10738d32010-12-23 23:51:58 +0000698 bool IsParameterPack = D.hasEllipsis();
Douglas Gregor72c3f312008-12-05 18:15:24 +0000699 NonTypeTemplateParmDecl *Param
John McCall7a9813c2010-01-22 00:28:27 +0000700 = NonTypeTemplateParmDecl::Create(Context, Context.getTranslationUnitDecl(),
Daniel Dunbar96a00142012-03-09 18:35:03 +0000701 D.getLocStart(),
John McCall7a9813c2010-01-22 00:28:27 +0000702 D.getIdentifierLoc(),
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000703 Depth, Position, ParamName, T,
Douglas Gregor10738d32010-12-23 23:51:58 +0000704 IsParameterPack, TInfo);
Douglas Gregor9a299e02011-03-04 17:52:15 +0000705 Param->setAccess(AS_public);
Richard Smithc7e863f2013-06-25 22:21:36 +0000706
Douglas Gregor72c3f312008-12-05 18:15:24 +0000707 if (Invalid)
708 Param->setInvalidDecl();
709
Richard Smithc7e863f2013-06-25 22:21:36 +0000710 if (ParamName) {
711 maybeDiagnoseTemplateParameterShadow(*this, S, D.getIdentifierLoc(),
712 ParamName);
713
Douglas Gregor72c3f312008-12-05 18:15:24 +0000714 // Add the template parameter into the current scope.
John McCalld226f652010-08-21 09:40:31 +0000715 S->AddDecl(Param);
Douglas Gregor72c3f312008-12-05 18:15:24 +0000716 IdResolver.AddDecl(Param);
717 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000718
Douglas Gregor61c4d282011-01-05 15:48:55 +0000719 // C++0x [temp.param]p9:
720 // A default template-argument may be specified for any kind of
721 // template-parameter that is not a template parameter pack.
722 if (Default && IsParameterPack) {
723 Diag(EqualLoc, diag::err_template_param_pack_default_arg);
724 Default = 0;
725 }
726
Douglas Gregorbb3310a2010-07-01 00:00:45 +0000727 // Check the well-formedness of the default template argument, if provided.
Douglas Gregor10738d32010-12-23 23:51:58 +0000728 if (Default) {
Douglas Gregor6f526752010-12-16 08:48:57 +0000729 // Check for unexpanded parameter packs.
730 if (DiagnoseUnexpandedParameterPack(Default, UPPC_DefaultArgument))
731 return Param;
732
Douglas Gregorbb3310a2010-07-01 00:00:45 +0000733 TemplateArgument Converted;
John Wiegley429bb272011-04-08 18:41:53 +0000734 ExprResult DefaultRes = CheckTemplateArgument(Param, Param->getType(), Default, Converted);
735 if (DefaultRes.isInvalid()) {
Douglas Gregorbb3310a2010-07-01 00:00:45 +0000736 Param->setInvalidDecl();
John McCalld226f652010-08-21 09:40:31 +0000737 return Param;
Douglas Gregorbb3310a2010-07-01 00:00:45 +0000738 }
John Wiegley429bb272011-04-08 18:41:53 +0000739 Default = DefaultRes.take();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000740
John McCall9ae2f072010-08-23 23:25:46 +0000741 Param->setDefaultArgument(Default, false);
Douglas Gregorbb3310a2010-07-01 00:00:45 +0000742 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000743
John McCalld226f652010-08-21 09:40:31 +0000744 return Param;
Douglas Gregor72c3f312008-12-05 18:15:24 +0000745}
Douglas Gregorc4b4e7b2008-12-24 02:52:09 +0000746
Douglas Gregoraaba5e32009-02-04 19:02:06 +0000747/// ActOnTemplateTemplateParameter - Called when a C++ template template
James Dennett699c9042012-06-15 07:13:21 +0000748/// parameter (e.g. T in template <template \<typename> class T> class array)
Douglas Gregoraaba5e32009-02-04 19:02:06 +0000749/// has been parsed. S is the current scope.
John McCalld226f652010-08-21 09:40:31 +0000750Decl *Sema::ActOnTemplateTemplateParameter(Scope* S,
751 SourceLocation TmpLoc,
Richard Trieu90ab75b2011-09-09 03:18:59 +0000752 TemplateParameterList *Params,
Douglas Gregor61c4d282011-01-05 15:48:55 +0000753 SourceLocation EllipsisLoc,
John McCalld226f652010-08-21 09:40:31 +0000754 IdentifierInfo *Name,
755 SourceLocation NameLoc,
756 unsigned Depth,
757 unsigned Position,
758 SourceLocation EqualLoc,
Douglas Gregor61c4d282011-01-05 15:48:55 +0000759 ParsedTemplateArgument Default) {
Douglas Gregoraaba5e32009-02-04 19:02:06 +0000760 assert(S->isTemplateParamScope() &&
761 "Template template parameter not in template parameter scope!");
762
763 // Construct the parameter object.
Douglas Gregor61c4d282011-01-05 15:48:55 +0000764 bool IsParameterPack = EllipsisLoc.isValid();
Douglas Gregoraaba5e32009-02-04 19:02:06 +0000765 TemplateTemplateParmDecl *Param =
John McCall7a9813c2010-01-22 00:28:27 +0000766 TemplateTemplateParmDecl::Create(Context, Context.getTranslationUnitDecl(),
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000767 NameLoc.isInvalid()? TmpLoc : NameLoc,
768 Depth, Position, IsParameterPack,
Douglas Gregor61c4d282011-01-05 15:48:55 +0000769 Name, Params);
Douglas Gregor9a299e02011-03-04 17:52:15 +0000770 Param->setAccess(AS_public);
771
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000772 // If the template template parameter has a name, then link the identifier
Douglas Gregorbb3310a2010-07-01 00:00:45 +0000773 // into the scope and lookup mechanisms.
Douglas Gregoraaba5e32009-02-04 19:02:06 +0000774 if (Name) {
Richard Smithc7e863f2013-06-25 22:21:36 +0000775 maybeDiagnoseTemplateParameterShadow(*this, S, NameLoc, Name);
776
John McCalld226f652010-08-21 09:40:31 +0000777 S->AddDecl(Param);
Douglas Gregoraaba5e32009-02-04 19:02:06 +0000778 IdResolver.AddDecl(Param);
779 }
780
Douglas Gregor6f526752010-12-16 08:48:57 +0000781 if (Params->size() == 0) {
782 Diag(Param->getLocation(), diag::err_template_template_parm_no_parms)
783 << SourceRange(Params->getLAngleLoc(), Params->getRAngleLoc());
784 Param->setInvalidDecl();
785 }
786
Douglas Gregor61c4d282011-01-05 15:48:55 +0000787 // C++0x [temp.param]p9:
788 // A default template-argument may be specified for any kind of
789 // template-parameter that is not a template parameter pack.
790 if (IsParameterPack && !Default.isInvalid()) {
791 Diag(EqualLoc, diag::err_template_param_pack_default_arg);
792 Default = ParsedTemplateArgument();
793 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000794
Douglas Gregorbb3310a2010-07-01 00:00:45 +0000795 if (!Default.isInvalid()) {
796 // Check only that we have a template template argument. We don't want to
797 // try to check well-formedness now, because our template template parameter
798 // might have dependent types in its template parameters, which we wouldn't
799 // be able to match now.
800 //
801 // If none of the template template parameter's template arguments mention
802 // other template parameters, we could actually perform more checking here.
803 // However, it isn't worth doing.
804 TemplateArgumentLoc DefaultArg = translateTemplateArgument(*this, Default);
805 if (DefaultArg.getArgument().getAsTemplate().isNull()) {
806 Diag(DefaultArg.getLocation(), diag::err_template_arg_not_class_template)
807 << DefaultArg.getSourceRange();
John McCalld226f652010-08-21 09:40:31 +0000808 return Param;
Douglas Gregorbb3310a2010-07-01 00:00:45 +0000809 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000810
Douglas Gregor6f526752010-12-16 08:48:57 +0000811 // Check for unexpanded parameter packs.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000812 if (DiagnoseUnexpandedParameterPack(DefaultArg.getLocation(),
Douglas Gregor6f526752010-12-16 08:48:57 +0000813 DefaultArg.getArgument().getAsTemplate(),
814 UPPC_DefaultArgument))
815 return Param;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000816
Douglas Gregorbb3310a2010-07-01 00:00:45 +0000817 Param->setDefaultArgument(DefaultArg, false);
Douglas Gregord684b002009-02-10 19:49:53 +0000818 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000819
John McCalld226f652010-08-21 09:40:31 +0000820 return Param;
Douglas Gregord684b002009-02-10 19:49:53 +0000821}
822
Douglas Gregorc4b4e7b2008-12-24 02:52:09 +0000823/// ActOnTemplateParameterList - Builds a TemplateParameterList that
824/// contains the template parameters in Params/NumParams.
Richard Trieu90ab75b2011-09-09 03:18:59 +0000825TemplateParameterList *
Douglas Gregorc4b4e7b2008-12-24 02:52:09 +0000826Sema::ActOnTemplateParameterList(unsigned Depth,
827 SourceLocation ExportLoc,
Mike Stump1eb44332009-09-09 15:08:12 +0000828 SourceLocation TemplateLoc,
Douglas Gregorc4b4e7b2008-12-24 02:52:09 +0000829 SourceLocation LAngleLoc,
John McCalld226f652010-08-21 09:40:31 +0000830 Decl **Params, unsigned NumParams,
Douglas Gregorc4b4e7b2008-12-24 02:52:09 +0000831 SourceLocation RAngleLoc) {
832 if (ExportLoc.isValid())
Douglas Gregor51ffb0c2009-11-25 18:55:14 +0000833 Diag(ExportLoc, diag::warn_template_export_unsupported);
Douglas Gregorc4b4e7b2008-12-24 02:52:09 +0000834
Douglas Gregorddc29e12009-02-06 22:42:48 +0000835 return TemplateParameterList::Create(Context, TemplateLoc, LAngleLoc,
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000836 (NamedDecl**)Params, NumParams,
Douglas Gregorbf4ea562009-09-15 16:23:51 +0000837 RAngleLoc);
Douglas Gregorc4b4e7b2008-12-24 02:52:09 +0000838}
Douglas Gregoraaba5e32009-02-04 19:02:06 +0000839
John McCallb6217662010-03-15 10:12:16 +0000840static void SetNestedNameSpecifier(TagDecl *T, const CXXScopeSpec &SS) {
841 if (SS.isSet())
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000842 T->setQualifierInfo(SS.getWithLocInContext(T->getASTContext()));
John McCallb6217662010-03-15 10:12:16 +0000843}
844
John McCallf312b1e2010-08-26 23:41:50 +0000845DeclResult
John McCall0f434ec2009-07-31 02:45:11 +0000846Sema::CheckClassTemplate(Scope *S, unsigned TagSpec, TagUseKind TUK,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +0000847 SourceLocation KWLoc, CXXScopeSpec &SS,
Douglas Gregorddc29e12009-02-06 22:42:48 +0000848 IdentifierInfo *Name, SourceLocation NameLoc,
849 AttributeList *Attr,
Douglas Gregor05396e22009-08-25 17:23:04 +0000850 TemplateParameterList *TemplateParams,
Douglas Gregore7612302011-09-09 19:05:14 +0000851 AccessSpecifier AS, SourceLocation ModulePrivateLoc,
Abramo Bagnarac57c17d2011-03-10 13:28:31 +0000852 unsigned NumOuterTemplateParamLists,
853 TemplateParameterList** OuterTemplateParamLists) {
Mike Stump1eb44332009-09-09 15:08:12 +0000854 assert(TemplateParams && TemplateParams->size() > 0 &&
Douglas Gregor05396e22009-08-25 17:23:04 +0000855 "No template parameters");
John McCall0f434ec2009-07-31 02:45:11 +0000856 assert(TUK != TUK_Reference && "Can only declare or define class templates");
Douglas Gregord684b002009-02-10 19:49:53 +0000857 bool Invalid = false;
Douglas Gregorddc29e12009-02-06 22:42:48 +0000858
859 // Check that we can declare a template here.
Douglas Gregor05396e22009-08-25 17:23:04 +0000860 if (CheckTemplateDeclScope(S, TemplateParams))
Douglas Gregor212e81c2009-03-25 00:13:59 +0000861 return true;
Douglas Gregorddc29e12009-02-06 22:42:48 +0000862
Abramo Bagnara465d41b2010-05-11 21:36:43 +0000863 TagTypeKind Kind = TypeWithKeyword::getTagTypeKindForTypeSpec(TagSpec);
864 assert(Kind != TTK_Enum && "can't build template of enumerated type");
Douglas Gregorddc29e12009-02-06 22:42:48 +0000865
866 // There is no such thing as an unnamed class template.
867 if (!Name) {
868 Diag(KWLoc, diag::err_template_unnamed_class);
Douglas Gregor212e81c2009-03-25 00:13:59 +0000869 return true;
Douglas Gregorddc29e12009-02-06 22:42:48 +0000870 }
871
Richard Smith71c598f2012-04-21 01:27:54 +0000872 // Find any previous declaration with this name. For a friend with no
873 // scope explicitly specified, we only look for tag declarations (per
874 // C++11 [basic.lookup.elab]p2).
Douglas Gregor05396e22009-08-25 17:23:04 +0000875 DeclContext *SemanticContext;
Richard Smith71c598f2012-04-21 01:27:54 +0000876 LookupResult Previous(*this, Name, NameLoc,
877 (SS.isEmpty() && TUK == TUK_Friend)
878 ? LookupTagName : LookupOrdinaryName,
John McCall7d384dd2009-11-18 07:57:50 +0000879 ForRedeclaration);
Douglas Gregor05396e22009-08-25 17:23:04 +0000880 if (SS.isNotEmpty() && !SS.isInvalid()) {
881 SemanticContext = computeDeclContext(SS, true);
882 if (!SemanticContext) {
Douglas Gregor8b0fa522012-03-30 16:20:47 +0000883 // FIXME: Horrible, horrible hack! We can't currently represent this
884 // in the AST, and historically we have just ignored such friend
885 // class templates, so don't complain here.
886 if (TUK != TUK_Friend)
887 Diag(NameLoc, diag::err_template_qualified_declarator_no_match)
888 << SS.getScopeRep() << SS.getRange();
Douglas Gregor05396e22009-08-25 17:23:04 +0000889 return true;
890 }
Mike Stump1eb44332009-09-09 15:08:12 +0000891
John McCall77bb1aa2010-05-01 00:40:08 +0000892 if (RequireCompleteDeclContext(SS, SemanticContext))
893 return true;
894
Douglas Gregor20606502011-10-14 15:31:12 +0000895 // If we're adding a template to a dependent context, we may need to
896 // rebuilding some of the types used within the template parameter list,
897 // now that we know what the current instantiation is.
898 if (SemanticContext->isDependentContext()) {
899 ContextRAII SavedContext(*this, SemanticContext);
900 if (RebuildTemplateParamsInCurrentInstantiation(TemplateParams))
901 Invalid = true;
Douglas Gregor69605872012-03-28 16:01:27 +0000902 } else if (TUK != TUK_Friend && TUK != TUK_Reference)
903 diagnoseQualifiedDeclaration(SS, SemanticContext, Name, NameLoc);
Richard Smith71c598f2012-04-21 01:27:54 +0000904
John McCalla24dc2e2009-11-17 02:14:36 +0000905 LookupQualifiedName(Previous, SemanticContext);
Douglas Gregor05396e22009-08-25 17:23:04 +0000906 } else {
907 SemanticContext = CurContext;
John McCalla24dc2e2009-11-17 02:14:36 +0000908 LookupName(Previous, S);
Douglas Gregor05396e22009-08-25 17:23:04 +0000909 }
Mike Stump1eb44332009-09-09 15:08:12 +0000910
Douglas Gregor57265e32010-04-12 16:00:01 +0000911 if (Previous.isAmbiguous())
912 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000913
Douglas Gregorddc29e12009-02-06 22:42:48 +0000914 NamedDecl *PrevDecl = 0;
915 if (Previous.begin() != Previous.end())
Douglas Gregor57265e32010-04-12 16:00:01 +0000916 PrevDecl = (*Previous.begin())->getUnderlyingDecl();
Douglas Gregorddc29e12009-02-06 22:42:48 +0000917
Douglas Gregorddc29e12009-02-06 22:42:48 +0000918 // If there is a previous declaration with the same name, check
919 // whether this is a valid redeclaration.
Mike Stump1eb44332009-09-09 15:08:12 +0000920 ClassTemplateDecl *PrevClassTemplate
Douglas Gregorddc29e12009-02-06 22:42:48 +0000921 = dyn_cast_or_null<ClassTemplateDecl>(PrevDecl);
Douglas Gregord7e5bdb2009-10-09 21:11:42 +0000922
923 // We may have found the injected-class-name of a class template,
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000924 // class template partial specialization, or class template specialization.
Douglas Gregord7e5bdb2009-10-09 21:11:42 +0000925 // In these cases, grab the template that is being defined or specialized.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000926 if (!PrevClassTemplate && PrevDecl && isa<CXXRecordDecl>(PrevDecl) &&
Douglas Gregord7e5bdb2009-10-09 21:11:42 +0000927 cast<CXXRecordDecl>(PrevDecl)->isInjectedClassName()) {
928 PrevDecl = cast<CXXRecordDecl>(PrevDecl->getDeclContext());
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000929 PrevClassTemplate
Douglas Gregord7e5bdb2009-10-09 21:11:42 +0000930 = cast<CXXRecordDecl>(PrevDecl)->getDescribedClassTemplate();
931 if (!PrevClassTemplate && isa<ClassTemplateSpecializationDecl>(PrevDecl)) {
932 PrevClassTemplate
933 = cast<ClassTemplateSpecializationDecl>(PrevDecl)
934 ->getSpecializedTemplate();
935 }
936 }
937
John McCall65c49462009-12-18 11:25:59 +0000938 if (TUK == TUK_Friend) {
John McCalle129d442009-12-17 23:21:11 +0000939 // C++ [namespace.memdef]p3:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000940 // [...] When looking for a prior declaration of a class or a function
941 // declared as a friend, and when the name of the friend class or
John McCalle129d442009-12-17 23:21:11 +0000942 // function is neither a qualified name nor a template-id, scopes outside
943 // the innermost enclosing namespace scope are not considered.
Douglas Gregorc1c9df72010-04-18 17:37:40 +0000944 if (!SS.isSet()) {
945 DeclContext *OutermostContext = CurContext;
946 while (!OutermostContext->isFileContext())
947 OutermostContext = OutermostContext->getLookupParent();
John McCall65c49462009-12-18 11:25:59 +0000948
Richard Smithc93e0142012-04-20 07:12:26 +0000949 if (PrevDecl &&
Douglas Gregorc1c9df72010-04-18 17:37:40 +0000950 (OutermostContext->Equals(PrevDecl->getDeclContext()) ||
951 OutermostContext->Encloses(PrevDecl->getDeclContext()))) {
952 SemanticContext = PrevDecl->getDeclContext();
953 } else {
954 // Declarations in outer scopes don't matter. However, the outermost
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000955 // context we computed is the semantic context for our new
Douglas Gregorc1c9df72010-04-18 17:37:40 +0000956 // declaration.
957 PrevDecl = PrevClassTemplate = 0;
958 SemanticContext = OutermostContext;
Richard Smith71c598f2012-04-21 01:27:54 +0000959
960 // Check that the chosen semantic context doesn't already contain a
961 // declaration of this name as a non-tag type.
962 LookupResult Previous(*this, Name, NameLoc, LookupOrdinaryName,
963 ForRedeclaration);
964 DeclContext *LookupContext = SemanticContext;
965 while (LookupContext->isTransparentContext())
966 LookupContext = LookupContext->getLookupParent();
967 LookupQualifiedName(Previous, LookupContext);
968
969 if (Previous.isAmbiguous())
970 return true;
971
972 if (Previous.begin() != Previous.end())
973 PrevDecl = (*Previous.begin())->getUnderlyingDecl();
Douglas Gregorc1c9df72010-04-18 17:37:40 +0000974 }
John McCalle129d442009-12-17 23:21:11 +0000975 }
John McCalle129d442009-12-17 23:21:11 +0000976 } else if (PrevDecl && !isDeclInScope(PrevDecl, SemanticContext, S))
977 PrevDecl = PrevClassTemplate = 0;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000978
Douglas Gregorddc29e12009-02-06 22:42:48 +0000979 if (PrevClassTemplate) {
Richard Smith6e21b162012-04-22 02:13:50 +0000980 // Ensure that the template parameter lists are compatible. Skip this check
981 // for a friend in a dependent context: the template parameter list itself
982 // could be dependent.
983 if (!(TUK == TUK_Friend && CurContext->isDependentContext()) &&
984 !TemplateParameterListsAreEqual(TemplateParams,
Douglas Gregorddc29e12009-02-06 22:42:48 +0000985 PrevClassTemplate->getTemplateParameters(),
Douglas Gregorfb898e12009-11-12 16:20:59 +0000986 /*Complain=*/true,
987 TPL_TemplateMatch))
Douglas Gregor212e81c2009-03-25 00:13:59 +0000988 return true;
Douglas Gregorddc29e12009-02-06 22:42:48 +0000989
990 // C++ [temp.class]p4:
991 // In a redeclaration, partial specialization, explicit
992 // specialization or explicit instantiation of a class template,
993 // the class-key shall agree in kind with the original class
994 // template declaration (7.1.5.3).
995 RecordDecl *PrevRecordDecl = PrevClassTemplate->getTemplatedDecl();
Richard Trieubbf34c02011-06-10 03:11:26 +0000996 if (!isAcceptableTagRedeclaration(PrevRecordDecl, Kind,
997 TUK == TUK_Definition, KWLoc, *Name)) {
Mike Stump1eb44332009-09-09 15:08:12 +0000998 Diag(KWLoc, diag::err_use_with_wrong_tag)
Douglas Gregora3a83512009-04-01 23:51:29 +0000999 << Name
Douglas Gregor849b2432010-03-31 17:46:05 +00001000 << FixItHint::CreateReplacement(KWLoc, PrevRecordDecl->getKindName());
Douglas Gregorddc29e12009-02-06 22:42:48 +00001001 Diag(PrevRecordDecl->getLocation(), diag::note_previous_use);
Douglas Gregora3a83512009-04-01 23:51:29 +00001002 Kind = PrevRecordDecl->getTagKind();
Douglas Gregorddc29e12009-02-06 22:42:48 +00001003 }
1004
Douglas Gregorddc29e12009-02-06 22:42:48 +00001005 // Check for redefinition of this class template.
John McCall0f434ec2009-07-31 02:45:11 +00001006 if (TUK == TUK_Definition) {
Douglas Gregor952b0172010-02-11 01:04:33 +00001007 if (TagDecl *Def = PrevRecordDecl->getDefinition()) {
Douglas Gregorddc29e12009-02-06 22:42:48 +00001008 Diag(NameLoc, diag::err_redefinition) << Name;
1009 Diag(Def->getLocation(), diag::note_previous_definition);
1010 // FIXME: Would it make sense to try to "forget" the previous
1011 // definition, as part of error recovery?
Douglas Gregor212e81c2009-03-25 00:13:59 +00001012 return true;
Douglas Gregorddc29e12009-02-06 22:42:48 +00001013 }
Douglas Gregor6311d2b2011-09-09 18:32:39 +00001014 }
Douglas Gregorddc29e12009-02-06 22:42:48 +00001015 } else if (PrevDecl && PrevDecl->isTemplateParameter()) {
1016 // Maybe we will complain about the shadowed template parameter.
1017 DiagnoseTemplateParameterShadow(NameLoc, PrevDecl);
1018 // Just pretend that we didn't see the previous declaration.
1019 PrevDecl = 0;
1020 } else if (PrevDecl) {
1021 // C++ [temp]p5:
1022 // A class template shall not have the same name as any other
1023 // template, class, function, object, enumeration, enumerator,
1024 // namespace, or type in the same scope (3.3), except as specified
1025 // in (14.5.4).
1026 Diag(NameLoc, diag::err_redefinition_different_kind) << Name;
1027 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
Douglas Gregor212e81c2009-03-25 00:13:59 +00001028 return true;
Douglas Gregorddc29e12009-02-06 22:42:48 +00001029 }
1030
Douglas Gregord684b002009-02-10 19:49:53 +00001031 // Check the template parameter list of this declaration, possibly
1032 // merging in the template parameter list from the previous class
Richard Smith6e21b162012-04-22 02:13:50 +00001033 // template declaration. Skip this check for a friend in a dependent
1034 // context, because the template parameter list might be dependent.
1035 if (!(TUK == TUK_Friend && CurContext->isDependentContext()) &&
David Majnemer87b12b22013-06-25 22:08:55 +00001036 CheckTemplateParameterList(
1037 TemplateParams,
1038 PrevClassTemplate ? PrevClassTemplate->getTemplateParameters() : 0,
1039 (SS.isSet() && SemanticContext && SemanticContext->isRecord() &&
1040 SemanticContext->isDependentContext())
1041 ? TPC_ClassTemplateMember
1042 : TUK == TUK_Friend ? TPC_FriendClassTemplate
1043 : TPC_ClassTemplate))
Douglas Gregord684b002009-02-10 19:49:53 +00001044 Invalid = true;
Mike Stump1eb44332009-09-09 15:08:12 +00001045
Douglas Gregor57265e32010-04-12 16:00:01 +00001046 if (SS.isSet()) {
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001047 // If the name of the template was qualified, we must be defining the
Douglas Gregor57265e32010-04-12 16:00:01 +00001048 // template out-of-line.
Richard Smith6e21b162012-04-22 02:13:50 +00001049 if (!SS.isInvalid() && !Invalid && !PrevClassTemplate) {
1050 Diag(NameLoc, TUK == TUK_Friend ? diag::err_friend_decl_does_not_match
1051 : diag::err_member_def_does_not_match)
Douglas Gregor57265e32010-04-12 16:00:01 +00001052 << Name << SemanticContext << SS.getRange();
Douglas Gregorea9f54a2011-11-01 21:35:16 +00001053 Invalid = true;
1054 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001055 }
1056
Mike Stump1eb44332009-09-09 15:08:12 +00001057 CXXRecordDecl *NewClass =
Abramo Bagnaraba877ad2011-03-09 14:09:51 +00001058 CXXRecordDecl::Create(Context, Kind, SemanticContext, KWLoc, NameLoc, Name,
Mike Stump1eb44332009-09-09 15:08:12 +00001059 PrevClassTemplate?
Douglas Gregoraafc0cc2009-05-15 19:11:46 +00001060 PrevClassTemplate->getTemplatedDecl() : 0,
1061 /*DelayTypeCreation=*/true);
John McCallb6217662010-03-15 10:12:16 +00001062 SetNestedNameSpecifier(NewClass, SS);
Abramo Bagnarac57c17d2011-03-10 13:28:31 +00001063 if (NumOuterTemplateParamLists > 0)
1064 NewClass->setTemplateParameterListsInfo(Context,
1065 NumOuterTemplateParamLists,
1066 OuterTemplateParamLists);
Douglas Gregorddc29e12009-02-06 22:42:48 +00001067
Eli Friedman572ae0a2012-02-10 02:02:21 +00001068 // Add alignment attributes if necessary; these attributes are checked when
1069 // the ASTContext lays out the structure.
Eli Friedman2016c8c2012-08-08 21:08:34 +00001070 if (TUK == TUK_Definition) {
1071 AddAlignmentAttributesForRecord(NewClass);
1072 AddMsStructLayoutForRecord(NewClass);
1073 }
Eli Friedman572ae0a2012-02-10 02:02:21 +00001074
Douglas Gregorddc29e12009-02-06 22:42:48 +00001075 ClassTemplateDecl *NewTemplate
1076 = ClassTemplateDecl::Create(Context, SemanticContext, NameLoc,
1077 DeclarationName(Name), TemplateParams,
Douglas Gregor5953d8b2009-03-19 17:26:29 +00001078 NewClass, PrevClassTemplate);
Douglas Gregorbefc20e2009-03-26 00:10:35 +00001079 NewClass->setDescribedClassTemplate(NewTemplate);
Douglas Gregor6311d2b2011-09-09 18:32:39 +00001080
Douglas Gregor2ccd89c2011-12-20 18:11:52 +00001081 if (ModulePrivateLoc.isValid())
Douglas Gregor6311d2b2011-09-09 18:32:39 +00001082 NewTemplate->setModulePrivate();
Douglas Gregor8d267c52011-09-09 02:06:17 +00001083
Douglas Gregoraafc0cc2009-05-15 19:11:46 +00001084 // Build the type for the class template declaration now.
Douglas Gregor24bae922010-07-08 18:37:38 +00001085 QualType T = NewTemplate->getInjectedClassNameSpecialization();
John McCall3cb0ebd2010-03-10 03:28:59 +00001086 T = Context.getInjectedClassNameType(NewClass, T);
Douglas Gregoraafc0cc2009-05-15 19:11:46 +00001087 assert(T->isDependentType() && "Class template type is not dependent?");
1088 (void)T;
1089
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001090 // If we are providing an explicit specialization of a member that is a
Douglas Gregorfd056bc2009-10-13 16:30:37 +00001091 // class template, make a note of that.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001092 if (PrevClassTemplate &&
Douglas Gregorfd056bc2009-10-13 16:30:37 +00001093 PrevClassTemplate->getInstantiatedFromMemberTemplate())
1094 PrevClassTemplate->setMemberSpecialization();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001095
Anders Carlsson4cbe82c2009-03-26 01:24:28 +00001096 // Set the access specifier.
Douglas Gregor42acead2012-03-17 23:06:31 +00001097 if (!Invalid && TUK != TUK_Friend && NewTemplate->getDeclContext()->isRecord())
John McCall05b23ea2009-09-14 21:59:20 +00001098 SetMemberAccessSpecifier(NewTemplate, PrevClassTemplate, AS);
Mike Stump1eb44332009-09-09 15:08:12 +00001099
Douglas Gregorddc29e12009-02-06 22:42:48 +00001100 // Set the lexical context of these templates
1101 NewClass->setLexicalDeclContext(CurContext);
1102 NewTemplate->setLexicalDeclContext(CurContext);
1103
John McCall0f434ec2009-07-31 02:45:11 +00001104 if (TUK == TUK_Definition)
Douglas Gregorddc29e12009-02-06 22:42:48 +00001105 NewClass->startDefinition();
1106
1107 if (Attr)
Douglas Gregor9cdda0c2009-06-17 21:51:59 +00001108 ProcessDeclAttributeList(S, NewClass, Attr);
Douglas Gregorddc29e12009-02-06 22:42:48 +00001109
Rafael Espindola4bda1d82012-08-22 14:52:14 +00001110 if (PrevClassTemplate)
1111 mergeDeclAttributes(NewClass, PrevClassTemplate->getTemplatedDecl());
1112
Rafael Espindola6b603702012-07-13 18:04:45 +00001113 AddPushedVisibilityAttribute(NewClass);
1114
John McCall05b23ea2009-09-14 21:59:20 +00001115 if (TUK != TUK_Friend)
1116 PushOnScopeChains(NewTemplate, S);
1117 else {
Douglas Gregord85bea22009-09-26 06:47:28 +00001118 if (PrevClassTemplate && PrevClassTemplate->getAccess() != AS_none) {
John McCall05b23ea2009-09-14 21:59:20 +00001119 NewTemplate->setAccess(PrevClassTemplate->getAccess());
Douglas Gregord85bea22009-09-26 06:47:28 +00001120 NewClass->setAccess(PrevClassTemplate->getAccess());
1121 }
John McCall05b23ea2009-09-14 21:59:20 +00001122
Richard Smith22050f22013-07-17 23:53:16 +00001123 NewTemplate->setObjectOfFriendDecl();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001124
John McCall05b23ea2009-09-14 21:59:20 +00001125 // Friend templates are visible in fairly strange ways.
1126 if (!CurContext->isDependentContext()) {
Sebastian Redl7a126a42010-08-31 00:36:30 +00001127 DeclContext *DC = SemanticContext->getRedeclContext();
Richard Smith1b7f9cb2012-03-13 03:12:56 +00001128 DC->makeDeclVisibleInContext(NewTemplate);
John McCall05b23ea2009-09-14 21:59:20 +00001129 if (Scope *EnclosingScope = getScopeForDeclContext(S, DC))
1130 PushOnScopeChains(NewTemplate, EnclosingScope,
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001131 /* AddToContext = */ false);
John McCall05b23ea2009-09-14 21:59:20 +00001132 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001133
Douglas Gregord85bea22009-09-26 06:47:28 +00001134 FriendDecl *Friend = FriendDecl::Create(Context, CurContext,
1135 NewClass->getLocation(),
1136 NewTemplate,
1137 /*FIXME:*/NewClass->getLocation());
1138 Friend->setAccess(AS_public);
1139 CurContext->addDecl(Friend);
John McCall05b23ea2009-09-14 21:59:20 +00001140 }
Douglas Gregorddc29e12009-02-06 22:42:48 +00001141
Douglas Gregord684b002009-02-10 19:49:53 +00001142 if (Invalid) {
1143 NewTemplate->setInvalidDecl();
1144 NewClass->setInvalidDecl();
1145 }
Rafael Espindolad3d02dd2012-07-13 01:19:08 +00001146
Dmitri Gribenko96b09862012-07-31 22:37:06 +00001147 ActOnDocumentableDecl(NewTemplate);
1148
John McCalld226f652010-08-21 09:40:31 +00001149 return NewTemplate;
Douglas Gregorddc29e12009-02-06 22:42:48 +00001150}
1151
Douglas Gregor5b6d70e2009-11-25 17:50:39 +00001152/// \brief Diagnose the presence of a default template argument on a
1153/// template parameter, which is ill-formed in certain contexts.
1154///
1155/// \returns true if the default template argument should be dropped.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001156static bool DiagnoseDefaultTemplateArgument(Sema &S,
Douglas Gregor5b6d70e2009-11-25 17:50:39 +00001157 Sema::TemplateParamListContext TPC,
1158 SourceLocation ParamLoc,
1159 SourceRange DefArgRange) {
1160 switch (TPC) {
1161 case Sema::TPC_ClassTemplate:
Richard Smith3e4c6c42011-05-05 21:57:07 +00001162 case Sema::TPC_TypeAliasTemplate:
Douglas Gregor5b6d70e2009-11-25 17:50:39 +00001163 return false;
1164
1165 case Sema::TPC_FunctionTemplate:
Douglas Gregord89d86f2011-02-04 04:20:44 +00001166 case Sema::TPC_FriendFunctionTemplateDefinition:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001167 // C++ [temp.param]p9:
Douglas Gregor5b6d70e2009-11-25 17:50:39 +00001168 // A default template-argument shall not be specified in a
1169 // function template declaration or a function template
1170 // definition [...]
Douglas Gregord89d86f2011-02-04 04:20:44 +00001171 // If a friend function template declaration specifies a default
1172 // template-argument, that declaration shall be a definition and shall be
1173 // the only declaration of the function template in the translation unit.
1174 // (C++98/03 doesn't have this wording; see DR226).
Richard Smith80ad52f2013-01-02 11:42:31 +00001175 S.Diag(ParamLoc, S.getLangOpts().CPlusPlus11 ?
Richard Smithebaf0e62011-10-18 20:49:44 +00001176 diag::warn_cxx98_compat_template_parameter_default_in_function_template
1177 : diag::ext_template_parameter_default_in_function_template)
1178 << DefArgRange;
Douglas Gregor5b6d70e2009-11-25 17:50:39 +00001179 return false;
1180
1181 case Sema::TPC_ClassTemplateMember:
1182 // C++0x [temp.param]p9:
1183 // A default template-argument shall not be specified in the
1184 // template-parameter-lists of the definition of a member of a
1185 // class template that appears outside of the member's class.
1186 S.Diag(ParamLoc, diag::err_template_parameter_default_template_member)
1187 << DefArgRange;
1188 return true;
1189
David Majnemer87b12b22013-06-25 22:08:55 +00001190 case Sema::TPC_FriendClassTemplate:
Douglas Gregor5b6d70e2009-11-25 17:50:39 +00001191 case Sema::TPC_FriendFunctionTemplate:
1192 // C++ [temp.param]p9:
1193 // A default template-argument shall not be specified in a
1194 // friend template declaration.
1195 S.Diag(ParamLoc, diag::err_template_parameter_default_friend_template)
1196 << DefArgRange;
1197 return true;
1198
1199 // FIXME: C++0x [temp.param]p9 allows default template-arguments
1200 // for friend function templates if there is only a single
1201 // declaration (and it is a definition). Strange!
1202 }
1203
David Blaikie7530c032012-01-17 06:56:22 +00001204 llvm_unreachable("Invalid TemplateParamListContext!");
Douglas Gregor5b6d70e2009-11-25 17:50:39 +00001205}
1206
Douglas Gregor4d2abba2010-12-16 15:36:43 +00001207/// \brief Check for unexpanded parameter packs within the template parameters
1208/// of a template template parameter, recursively.
Benjamin Kramerda57f3e2011-03-26 12:38:21 +00001209static bool DiagnoseUnexpandedParameterPacks(Sema &S,
1210 TemplateTemplateParmDecl *TTP) {
Richard Smith6964b3f2012-09-07 02:06:42 +00001211 // A template template parameter which is a parameter pack is also a pack
1212 // expansion.
1213 if (TTP->isParameterPack())
1214 return false;
1215
Douglas Gregor4d2abba2010-12-16 15:36:43 +00001216 TemplateParameterList *Params = TTP->getTemplateParameters();
1217 for (unsigned I = 0, N = Params->size(); I != N; ++I) {
1218 NamedDecl *P = Params->getParam(I);
1219 if (NonTypeTemplateParmDecl *NTTP = dyn_cast<NonTypeTemplateParmDecl>(P)) {
Richard Smith6964b3f2012-09-07 02:06:42 +00001220 if (!NTTP->isParameterPack() &&
1221 S.DiagnoseUnexpandedParameterPack(NTTP->getLocation(),
Douglas Gregor4d2abba2010-12-16 15:36:43 +00001222 NTTP->getTypeSourceInfo(),
1223 Sema::UPPC_NonTypeTemplateParameterType))
1224 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001225
Douglas Gregor4d2abba2010-12-16 15:36:43 +00001226 continue;
1227 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001228
1229 if (TemplateTemplateParmDecl *InnerTTP
Douglas Gregor4d2abba2010-12-16 15:36:43 +00001230 = dyn_cast<TemplateTemplateParmDecl>(P))
1231 if (DiagnoseUnexpandedParameterPacks(S, InnerTTP))
1232 return true;
1233 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001234
Douglas Gregor4d2abba2010-12-16 15:36:43 +00001235 return false;
1236}
1237
Douglas Gregord684b002009-02-10 19:49:53 +00001238/// \brief Checks the validity of a template parameter list, possibly
1239/// considering the template parameter list from a previous
1240/// declaration.
1241///
1242/// If an "old" template parameter list is provided, it must be
1243/// equivalent (per TemplateParameterListsAreEqual) to the "new"
1244/// template parameter list.
1245///
1246/// \param NewParams Template parameter list for a new template
1247/// declaration. This template parameter list will be updated with any
1248/// default arguments that are carried through from the previous
1249/// template parameter list.
1250///
1251/// \param OldParams If provided, template parameter list from a
1252/// previous declaration of the same template. Default template
1253/// arguments will be merged from the old template parameter list to
1254/// the new template parameter list.
1255///
Douglas Gregor5b6d70e2009-11-25 17:50:39 +00001256/// \param TPC Describes the context in which we are checking the given
1257/// template parameter list.
1258///
Douglas Gregord684b002009-02-10 19:49:53 +00001259/// \returns true if an error occurred, false otherwise.
1260bool Sema::CheckTemplateParameterList(TemplateParameterList *NewParams,
Douglas Gregor5b6d70e2009-11-25 17:50:39 +00001261 TemplateParameterList *OldParams,
1262 TemplateParamListContext TPC) {
Douglas Gregord684b002009-02-10 19:49:53 +00001263 bool Invalid = false;
Mike Stump1eb44332009-09-09 15:08:12 +00001264
Douglas Gregord684b002009-02-10 19:49:53 +00001265 // C++ [temp.param]p10:
1266 // The set of default template-arguments available for use with a
1267 // template declaration or definition is obtained by merging the
1268 // default arguments from the definition (if in scope) and all
1269 // declarations in scope in the same way default function
1270 // arguments are (8.3.6).
1271 bool SawDefaultArgument = false;
1272 SourceLocation PreviousDefaultArgLoc;
Douglas Gregorc15cb382009-02-09 23:23:08 +00001273
Mike Stump1a35fde2009-02-11 23:03:27 +00001274 // Dummy initialization to avoid warnings.
Douglas Gregor1bc69132009-02-11 20:46:19 +00001275 TemplateParameterList::iterator OldParam = NewParams->end();
Douglas Gregord684b002009-02-10 19:49:53 +00001276 if (OldParams)
1277 OldParam = OldParams->begin();
1278
Douglas Gregorfd1a8fd2011-01-27 01:40:17 +00001279 bool RemoveDefaultArguments = false;
Douglas Gregord684b002009-02-10 19:49:53 +00001280 for (TemplateParameterList::iterator NewParam = NewParams->begin(),
1281 NewParamEnd = NewParams->end();
1282 NewParam != NewParamEnd; ++NewParam) {
1283 // Variables used to diagnose redundant default arguments
1284 bool RedundantDefaultArg = false;
1285 SourceLocation OldDefaultLoc;
1286 SourceLocation NewDefaultLoc;
1287
David Blaikie1368e582011-10-19 05:19:50 +00001288 // Variable used to diagnose missing default arguments
Douglas Gregord684b002009-02-10 19:49:53 +00001289 bool MissingDefaultArg = false;
1290
David Blaikie1368e582011-10-19 05:19:50 +00001291 // Variable used to diagnose non-final parameter packs
1292 bool SawParameterPack = false;
Anders Carlsson49d25572009-06-12 23:20:15 +00001293
Douglas Gregord684b002009-02-10 19:49:53 +00001294 if (TemplateTypeParmDecl *NewTypeParm
1295 = dyn_cast<TemplateTypeParmDecl>(*NewParam)) {
Douglas Gregor5b6d70e2009-11-25 17:50:39 +00001296 // Check the presence of a default argument here.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001297 if (NewTypeParm->hasDefaultArgument() &&
1298 DiagnoseDefaultTemplateArgument(*this, TPC,
1299 NewTypeParm->getLocation(),
Douglas Gregor5b6d70e2009-11-25 17:50:39 +00001300 NewTypeParm->getDefaultArgumentInfo()->getTypeLoc()
Abramo Bagnarabd054db2010-05-20 10:00:11 +00001301 .getSourceRange()))
Douglas Gregor5b6d70e2009-11-25 17:50:39 +00001302 NewTypeParm->removeDefaultArgument();
1303
1304 // Merge default arguments for template type parameters.
Mike Stump1eb44332009-09-09 15:08:12 +00001305 TemplateTypeParmDecl *OldTypeParm
Douglas Gregord684b002009-02-10 19:49:53 +00001306 = OldParams? cast<TemplateTypeParmDecl>(*OldParam) : 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001307
Anders Carlsson49d25572009-06-12 23:20:15 +00001308 if (NewTypeParm->isParameterPack()) {
1309 assert(!NewTypeParm->hasDefaultArgument() &&
1310 "Parameter packs can't have a default argument!");
1311 SawParameterPack = true;
Mike Stump1eb44332009-09-09 15:08:12 +00001312 } else if (OldTypeParm && OldTypeParm->hasDefaultArgument() &&
John McCall833ca992009-10-29 08:12:44 +00001313 NewTypeParm->hasDefaultArgument()) {
Douglas Gregord684b002009-02-10 19:49:53 +00001314 OldDefaultLoc = OldTypeParm->getDefaultArgumentLoc();
1315 NewDefaultLoc = NewTypeParm->getDefaultArgumentLoc();
1316 SawDefaultArgument = true;
1317 RedundantDefaultArg = true;
1318 PreviousDefaultArgLoc = NewDefaultLoc;
1319 } else if (OldTypeParm && OldTypeParm->hasDefaultArgument()) {
1320 // Merge the default argument from the old declaration to the
1321 // new declaration.
1322 SawDefaultArgument = true;
John McCall833ca992009-10-29 08:12:44 +00001323 NewTypeParm->setDefaultArgument(OldTypeParm->getDefaultArgumentInfo(),
Douglas Gregord684b002009-02-10 19:49:53 +00001324 true);
1325 PreviousDefaultArgLoc = OldTypeParm->getDefaultArgumentLoc();
1326 } else if (NewTypeParm->hasDefaultArgument()) {
1327 SawDefaultArgument = true;
1328 PreviousDefaultArgLoc = NewTypeParm->getDefaultArgumentLoc();
1329 } else if (SawDefaultArgument)
1330 MissingDefaultArg = true;
Mike Stumpac5fc7c2009-08-04 21:02:39 +00001331 } else if (NonTypeTemplateParmDecl *NewNonTypeParm
Douglas Gregord684b002009-02-10 19:49:53 +00001332 = dyn_cast<NonTypeTemplateParmDecl>(*NewParam)) {
Douglas Gregor4d2abba2010-12-16 15:36:43 +00001333 // Check for unexpanded parameter packs.
Richard Smith6964b3f2012-09-07 02:06:42 +00001334 if (!NewNonTypeParm->isParameterPack() &&
1335 DiagnoseUnexpandedParameterPack(NewNonTypeParm->getLocation(),
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001336 NewNonTypeParm->getTypeSourceInfo(),
Douglas Gregor4d2abba2010-12-16 15:36:43 +00001337 UPPC_NonTypeTemplateParameterType)) {
1338 Invalid = true;
1339 continue;
1340 }
1341
Douglas Gregor5b6d70e2009-11-25 17:50:39 +00001342 // Check the presence of a default argument here.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001343 if (NewNonTypeParm->hasDefaultArgument() &&
1344 DiagnoseDefaultTemplateArgument(*this, TPC,
1345 NewNonTypeParm->getLocation(),
Douglas Gregor5b6d70e2009-11-25 17:50:39 +00001346 NewNonTypeParm->getDefaultArgument()->getSourceRange())) {
Abramo Bagnarad92f7a22010-06-09 09:26:05 +00001347 NewNonTypeParm->removeDefaultArgument();
Douglas Gregor5b6d70e2009-11-25 17:50:39 +00001348 }
1349
Mike Stumpac5fc7c2009-08-04 21:02:39 +00001350 // Merge default arguments for non-type template parameters
Douglas Gregord684b002009-02-10 19:49:53 +00001351 NonTypeTemplateParmDecl *OldNonTypeParm
1352 = OldParams? cast<NonTypeTemplateParmDecl>(*OldParam) : 0;
Douglas Gregor1ed64762011-01-05 16:19:19 +00001353 if (NewNonTypeParm->isParameterPack()) {
1354 assert(!NewNonTypeParm->hasDefaultArgument() &&
1355 "Parameter packs can't have a default argument!");
Richard Smith6964b3f2012-09-07 02:06:42 +00001356 if (!NewNonTypeParm->isPackExpansion())
1357 SawParameterPack = true;
Douglas Gregor1ed64762011-01-05 16:19:19 +00001358 } else if (OldNonTypeParm && OldNonTypeParm->hasDefaultArgument() &&
Douglas Gregord684b002009-02-10 19:49:53 +00001359 NewNonTypeParm->hasDefaultArgument()) {
1360 OldDefaultLoc = OldNonTypeParm->getDefaultArgumentLoc();
1361 NewDefaultLoc = NewNonTypeParm->getDefaultArgumentLoc();
1362 SawDefaultArgument = true;
1363 RedundantDefaultArg = true;
1364 PreviousDefaultArgLoc = NewDefaultLoc;
1365 } else if (OldNonTypeParm && OldNonTypeParm->hasDefaultArgument()) {
1366 // Merge the default argument from the old declaration to the
1367 // new declaration.
1368 SawDefaultArgument = true;
1369 // FIXME: We need to create a new kind of "default argument"
Douglas Gregor61c4d282011-01-05 15:48:55 +00001370 // expression that points to a previous non-type template
Douglas Gregord684b002009-02-10 19:49:53 +00001371 // parameter.
1372 NewNonTypeParm->setDefaultArgument(
Abramo Bagnarad92f7a22010-06-09 09:26:05 +00001373 OldNonTypeParm->getDefaultArgument(),
1374 /*Inherited=*/ true);
Douglas Gregord684b002009-02-10 19:49:53 +00001375 PreviousDefaultArgLoc = OldNonTypeParm->getDefaultArgumentLoc();
1376 } else if (NewNonTypeParm->hasDefaultArgument()) {
1377 SawDefaultArgument = true;
1378 PreviousDefaultArgLoc = NewNonTypeParm->getDefaultArgumentLoc();
1379 } else if (SawDefaultArgument)
Mike Stump1eb44332009-09-09 15:08:12 +00001380 MissingDefaultArg = true;
Mike Stumpac5fc7c2009-08-04 21:02:39 +00001381 } else {
Douglas Gregord684b002009-02-10 19:49:53 +00001382 TemplateTemplateParmDecl *NewTemplateParm
1383 = cast<TemplateTemplateParmDecl>(*NewParam);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001384
Douglas Gregor4d2abba2010-12-16 15:36:43 +00001385 // Check for unexpanded parameter packs, recursively.
Douglas Gregor65019ac2011-10-25 03:44:56 +00001386 if (::DiagnoseUnexpandedParameterPacks(*this, NewTemplateParm)) {
Douglas Gregor4d2abba2010-12-16 15:36:43 +00001387 Invalid = true;
1388 continue;
1389 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001390
David Blaikie1368e582011-10-19 05:19:50 +00001391 // Check the presence of a default argument here.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001392 if (NewTemplateParm->hasDefaultArgument() &&
1393 DiagnoseDefaultTemplateArgument(*this, TPC,
1394 NewTemplateParm->getLocation(),
Douglas Gregor5b6d70e2009-11-25 17:50:39 +00001395 NewTemplateParm->getDefaultArgument().getSourceRange()))
Abramo Bagnarad92f7a22010-06-09 09:26:05 +00001396 NewTemplateParm->removeDefaultArgument();
Douglas Gregor5b6d70e2009-11-25 17:50:39 +00001397
1398 // Merge default arguments for template template parameters
Douglas Gregord684b002009-02-10 19:49:53 +00001399 TemplateTemplateParmDecl *OldTemplateParm
1400 = OldParams? cast<TemplateTemplateParmDecl>(*OldParam) : 0;
Douglas Gregor1ed64762011-01-05 16:19:19 +00001401 if (NewTemplateParm->isParameterPack()) {
1402 assert(!NewTemplateParm->hasDefaultArgument() &&
1403 "Parameter packs can't have a default argument!");
Richard Smith6964b3f2012-09-07 02:06:42 +00001404 if (!NewTemplateParm->isPackExpansion())
1405 SawParameterPack = true;
Douglas Gregor1ed64762011-01-05 16:19:19 +00001406 } else if (OldTemplateParm && OldTemplateParm->hasDefaultArgument() &&
Douglas Gregord684b002009-02-10 19:49:53 +00001407 NewTemplateParm->hasDefaultArgument()) {
Douglas Gregor788cd062009-11-11 01:00:40 +00001408 OldDefaultLoc = OldTemplateParm->getDefaultArgument().getLocation();
1409 NewDefaultLoc = NewTemplateParm->getDefaultArgument().getLocation();
Douglas Gregord684b002009-02-10 19:49:53 +00001410 SawDefaultArgument = true;
1411 RedundantDefaultArg = true;
1412 PreviousDefaultArgLoc = NewDefaultLoc;
1413 } else if (OldTemplateParm && OldTemplateParm->hasDefaultArgument()) {
1414 // Merge the default argument from the old declaration to the
1415 // new declaration.
1416 SawDefaultArgument = true;
Mike Stump390b4cc2009-05-16 07:39:55 +00001417 // FIXME: We need to create a new kind of "default argument" expression
1418 // that points to a previous template template parameter.
Douglas Gregord684b002009-02-10 19:49:53 +00001419 NewTemplateParm->setDefaultArgument(
Abramo Bagnarad92f7a22010-06-09 09:26:05 +00001420 OldTemplateParm->getDefaultArgument(),
1421 /*Inherited=*/ true);
Douglas Gregor788cd062009-11-11 01:00:40 +00001422 PreviousDefaultArgLoc
1423 = OldTemplateParm->getDefaultArgument().getLocation();
Douglas Gregord684b002009-02-10 19:49:53 +00001424 } else if (NewTemplateParm->hasDefaultArgument()) {
1425 SawDefaultArgument = true;
Douglas Gregor788cd062009-11-11 01:00:40 +00001426 PreviousDefaultArgLoc
1427 = NewTemplateParm->getDefaultArgument().getLocation();
Douglas Gregord684b002009-02-10 19:49:53 +00001428 } else if (SawDefaultArgument)
Mike Stump1eb44332009-09-09 15:08:12 +00001429 MissingDefaultArg = true;
Douglas Gregord684b002009-02-10 19:49:53 +00001430 }
1431
Richard Smith6964b3f2012-09-07 02:06:42 +00001432 // C++11 [temp.param]p11:
David Blaikie1368e582011-10-19 05:19:50 +00001433 // If a template parameter of a primary class template or alias template
1434 // is a template parameter pack, it shall be the last template parameter.
Richard Smith6964b3f2012-09-07 02:06:42 +00001435 if (SawParameterPack && (NewParam + 1) != NewParamEnd &&
David Blaikie1368e582011-10-19 05:19:50 +00001436 (TPC == TPC_ClassTemplate || TPC == TPC_TypeAliasTemplate)) {
1437 Diag((*NewParam)->getLocation(),
1438 diag::err_template_param_pack_must_be_last_template_parameter);
1439 Invalid = true;
1440 }
1441
Douglas Gregord684b002009-02-10 19:49:53 +00001442 if (RedundantDefaultArg) {
1443 // C++ [temp.param]p12:
1444 // A template-parameter shall not be given default arguments
1445 // by two different declarations in the same scope.
1446 Diag(NewDefaultLoc, diag::err_template_param_default_arg_redefinition);
1447 Diag(OldDefaultLoc, diag::note_template_param_prev_default_arg);
1448 Invalid = true;
Douglas Gregoree5d21f2011-02-04 03:57:22 +00001449 } else if (MissingDefaultArg && TPC != TPC_FunctionTemplate) {
Douglas Gregord684b002009-02-10 19:49:53 +00001450 // C++ [temp.param]p11:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001451 // If a template-parameter of a class template has a default
1452 // template-argument, each subsequent template-parameter shall either
Douglas Gregorb49e4152011-01-05 16:21:17 +00001453 // have a default template-argument supplied or be a template parameter
1454 // pack.
Mike Stump1eb44332009-09-09 15:08:12 +00001455 Diag((*NewParam)->getLocation(),
Douglas Gregord684b002009-02-10 19:49:53 +00001456 diag::err_template_param_default_arg_missing);
1457 Diag(PreviousDefaultArgLoc, diag::note_template_param_prev_default_arg);
1458 Invalid = true;
Douglas Gregorfd1a8fd2011-01-27 01:40:17 +00001459 RemoveDefaultArguments = true;
Douglas Gregord684b002009-02-10 19:49:53 +00001460 }
1461
1462 // If we have an old template parameter list that we're merging
1463 // in, move on to the next parameter.
1464 if (OldParams)
1465 ++OldParam;
1466 }
1467
Douglas Gregorfd1a8fd2011-01-27 01:40:17 +00001468 // We were missing some default arguments at the end of the list, so remove
1469 // all of the default arguments.
1470 if (RemoveDefaultArguments) {
1471 for (TemplateParameterList::iterator NewParam = NewParams->begin(),
1472 NewParamEnd = NewParams->end();
1473 NewParam != NewParamEnd; ++NewParam) {
1474 if (TemplateTypeParmDecl *TTP = dyn_cast<TemplateTypeParmDecl>(*NewParam))
1475 TTP->removeDefaultArgument();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001476 else if (NonTypeTemplateParmDecl *NTTP
Douglas Gregorfd1a8fd2011-01-27 01:40:17 +00001477 = dyn_cast<NonTypeTemplateParmDecl>(*NewParam))
1478 NTTP->removeDefaultArgument();
1479 else
1480 cast<TemplateTemplateParmDecl>(*NewParam)->removeDefaultArgument();
1481 }
1482 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001483
Douglas Gregord684b002009-02-10 19:49:53 +00001484 return Invalid;
1485}
Douglas Gregorc15cb382009-02-09 23:23:08 +00001486
John McCall4e2cbb22010-10-20 05:44:58 +00001487namespace {
1488
1489/// A class which looks for a use of a certain level of template
1490/// parameter.
1491struct DependencyChecker : RecursiveASTVisitor<DependencyChecker> {
1492 typedef RecursiveASTVisitor<DependencyChecker> super;
1493
1494 unsigned Depth;
1495 bool Match;
1496
1497 DependencyChecker(TemplateParameterList *Params) : Match(false) {
1498 NamedDecl *ND = Params->getParam(0);
1499 if (TemplateTypeParmDecl *PD = dyn_cast<TemplateTypeParmDecl>(ND)) {
1500 Depth = PD->getDepth();
1501 } else if (NonTypeTemplateParmDecl *PD =
1502 dyn_cast<NonTypeTemplateParmDecl>(ND)) {
1503 Depth = PD->getDepth();
1504 } else {
1505 Depth = cast<TemplateTemplateParmDecl>(ND)->getDepth();
1506 }
1507 }
1508
1509 bool Matches(unsigned ParmDepth) {
1510 if (ParmDepth >= Depth) {
1511 Match = true;
1512 return true;
1513 }
1514 return false;
1515 }
1516
1517 bool VisitTemplateTypeParmType(const TemplateTypeParmType *T) {
1518 return !Matches(T->getDepth());
1519 }
1520
1521 bool TraverseTemplateName(TemplateName N) {
1522 if (TemplateTemplateParmDecl *PD =
1523 dyn_cast_or_null<TemplateTemplateParmDecl>(N.getAsTemplateDecl()))
1524 if (Matches(PD->getDepth())) return false;
1525 return super::TraverseTemplateName(N);
1526 }
1527
1528 bool VisitDeclRefExpr(DeclRefExpr *E) {
1529 if (NonTypeTemplateParmDecl *PD =
1530 dyn_cast<NonTypeTemplateParmDecl>(E->getDecl())) {
1531 if (PD->getDepth() == Depth) {
1532 Match = true;
1533 return false;
1534 }
1535 }
1536 return super::VisitDeclRefExpr(E);
1537 }
Douglas Gregor18c83392011-05-13 00:34:01 +00001538
1539 bool TraverseInjectedClassNameType(const InjectedClassNameType *T) {
1540 return TraverseType(T->getInjectedSpecializationType());
1541 }
John McCall4e2cbb22010-10-20 05:44:58 +00001542};
1543}
1544
Douglas Gregorc8406492011-05-10 18:27:06 +00001545/// Determines whether a given type depends on the given parameter
John McCall4e2cbb22010-10-20 05:44:58 +00001546/// list.
1547static bool
Douglas Gregorc8406492011-05-10 18:27:06 +00001548DependsOnTemplateParameters(QualType T, TemplateParameterList *Params) {
John McCall4e2cbb22010-10-20 05:44:58 +00001549 DependencyChecker Checker(Params);
Douglas Gregorc8406492011-05-10 18:27:06 +00001550 Checker.TraverseType(T);
John McCall4e2cbb22010-10-20 05:44:58 +00001551 return Checker.Match;
1552}
1553
Douglas Gregorc8406492011-05-10 18:27:06 +00001554// Find the source range corresponding to the named type in the given
1555// nested-name-specifier, if any.
1556static SourceRange getRangeOfTypeInNestedNameSpecifier(ASTContext &Context,
1557 QualType T,
1558 const CXXScopeSpec &SS) {
1559 NestedNameSpecifierLoc NNSLoc(SS.getScopeRep(), SS.location_data());
1560 while (NestedNameSpecifier *NNS = NNSLoc.getNestedNameSpecifier()) {
1561 if (const Type *CurType = NNS->getAsType()) {
1562 if (Context.hasSameUnqualifiedType(T, QualType(CurType, 0)))
1563 return NNSLoc.getTypeLoc().getSourceRange();
1564 } else
1565 break;
1566
1567 NNSLoc = NNSLoc.getPrefix();
1568 }
1569
1570 return SourceRange();
1571}
1572
Mike Stump1eb44332009-09-09 15:08:12 +00001573/// \brief Match the given template parameter lists to the given scope
Douglas Gregorf59a56e2009-07-21 23:53:31 +00001574/// specifier, returning the template parameter list that applies to the
1575/// name.
1576///
1577/// \param DeclStartLoc the start of the declaration that has a scope
1578/// specifier or a template parameter list.
Mike Stump1eb44332009-09-09 15:08:12 +00001579///
Douglas Gregorc8406492011-05-10 18:27:06 +00001580/// \param DeclLoc The location of the declaration itself.
1581///
Douglas Gregorf59a56e2009-07-21 23:53:31 +00001582/// \param SS the scope specifier that will be matched to the given template
1583/// parameter lists. This scope specifier precedes a qualified name that is
1584/// being declared.
1585///
1586/// \param ParamLists the template parameter lists, from the outermost to the
1587/// innermost template parameter lists.
1588///
1589/// \param NumParamLists the number of template parameter lists in ParamLists.
1590///
John McCall77e8b112010-04-13 20:37:33 +00001591/// \param IsFriend Whether to apply the slightly different rules for
1592/// matching template parameters to scope specifiers in friend
1593/// declarations.
1594///
Douglas Gregor1fef4e62009-10-07 22:35:40 +00001595/// \param IsExplicitSpecialization will be set true if the entity being
1596/// declared is an explicit specialization, false otherwise.
1597///
Mike Stump1eb44332009-09-09 15:08:12 +00001598/// \returns the template parameter list, if any, that corresponds to the
Douglas Gregorf59a56e2009-07-21 23:53:31 +00001599/// name that is preceded by the scope specifier @p SS. This template
Abramo Bagnara7f0a9152011-03-18 15:16:37 +00001600/// parameter list may have template parameters (if we're declaring a
Mike Stump1eb44332009-09-09 15:08:12 +00001601/// template) or may have no template parameters (if we're declaring a
Abramo Bagnara7f0a9152011-03-18 15:16:37 +00001602/// template specialization), or may be NULL (if what we're declaring isn't
Douglas Gregorf59a56e2009-07-21 23:53:31 +00001603/// itself a template).
1604TemplateParameterList *
1605Sema::MatchTemplateParametersToScopeSpecifier(SourceLocation DeclStartLoc,
Douglas Gregorc8406492011-05-10 18:27:06 +00001606 SourceLocation DeclLoc,
Douglas Gregorf59a56e2009-07-21 23:53:31 +00001607 const CXXScopeSpec &SS,
1608 TemplateParameterList **ParamLists,
Douglas Gregor1fef4e62009-10-07 22:35:40 +00001609 unsigned NumParamLists,
John McCall77e8b112010-04-13 20:37:33 +00001610 bool IsFriend,
Douglas Gregor0167f3c2010-07-14 23:14:12 +00001611 bool &IsExplicitSpecialization,
1612 bool &Invalid) {
Douglas Gregor1fef4e62009-10-07 22:35:40 +00001613 IsExplicitSpecialization = false;
Douglas Gregorc8406492011-05-10 18:27:06 +00001614 Invalid = false;
1615
1616 // The sequence of nested types to which we will match up the template
1617 // parameter lists. We first build this list by starting with the type named
1618 // by the nested-name-specifier and walking out until we run out of types.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001619 SmallVector<QualType, 4> NestedTypes;
Douglas Gregorc8406492011-05-10 18:27:06 +00001620 QualType T;
Douglas Gregor714c9922011-05-15 17:27:27 +00001621 if (SS.getScopeRep()) {
1622 if (CXXRecordDecl *Record
1623 = dyn_cast_or_null<CXXRecordDecl>(computeDeclContext(SS, true)))
1624 T = Context.getTypeDeclType(Record);
1625 else
1626 T = QualType(SS.getScopeRep()->getAsType(), 0);
1627 }
Douglas Gregorc8406492011-05-10 18:27:06 +00001628
1629 // If we found an explicit specialization that prevents us from needing
1630 // 'template<>' headers, this will be set to the location of that
1631 // explicit specialization.
1632 SourceLocation ExplicitSpecLoc;
1633
1634 while (!T.isNull()) {
1635 NestedTypes.push_back(T);
1636
1637 // Retrieve the parent of a record type.
1638 if (CXXRecordDecl *Record = T->getAsCXXRecordDecl()) {
1639 // If this type is an explicit specialization, we're done.
1640 if (ClassTemplateSpecializationDecl *Spec
1641 = dyn_cast<ClassTemplateSpecializationDecl>(Record)) {
1642 if (!isa<ClassTemplatePartialSpecializationDecl>(Spec) &&
1643 Spec->getSpecializationKind() == TSK_ExplicitSpecialization) {
1644 ExplicitSpecLoc = Spec->getLocation();
1645 break;
Douglas Gregor3ebd7532009-11-23 12:11:45 +00001646 }
Douglas Gregorc8406492011-05-10 18:27:06 +00001647 } else if (Record->getTemplateSpecializationKind()
1648 == TSK_ExplicitSpecialization) {
1649 ExplicitSpecLoc = Record->getLocation();
John McCall77e8b112010-04-13 20:37:33 +00001650 break;
1651 }
Douglas Gregorc8406492011-05-10 18:27:06 +00001652
1653 if (TypeDecl *Parent = dyn_cast<TypeDecl>(Record->getParent()))
1654 T = Context.getTypeDeclType(Parent);
1655 else
1656 T = QualType();
1657 continue;
1658 }
1659
1660 if (const TemplateSpecializationType *TST
1661 = T->getAs<TemplateSpecializationType>()) {
1662 if (TemplateDecl *Template = TST->getTemplateName().getAsTemplateDecl()) {
1663 if (TypeDecl *Parent = dyn_cast<TypeDecl>(Template->getDeclContext()))
1664 T = Context.getTypeDeclType(Parent);
1665 else
1666 T = QualType();
1667 continue;
Douglas Gregorf59a56e2009-07-21 23:53:31 +00001668 }
Douglas Gregorc8406492011-05-10 18:27:06 +00001669 }
1670
1671 // Look one step prior in a dependent template specialization type.
1672 if (const DependentTemplateSpecializationType *DependentTST
1673 = T->getAs<DependentTemplateSpecializationType>()) {
1674 if (NestedNameSpecifier *NNS = DependentTST->getQualifier())
1675 T = QualType(NNS->getAsType(), 0);
1676 else
1677 T = QualType();
1678 continue;
1679 }
1680
1681 // Look one step prior in a dependent name type.
1682 if (const DependentNameType *DependentName = T->getAs<DependentNameType>()){
1683 if (NestedNameSpecifier *NNS = DependentName->getQualifier())
1684 T = QualType(NNS->getAsType(), 0);
1685 else
1686 T = QualType();
1687 continue;
1688 }
1689
1690 // Retrieve the parent of an enumeration type.
1691 if (const EnumType *EnumT = T->getAs<EnumType>()) {
1692 // FIXME: Forward-declared enums require a TSK_ExplicitSpecialization
1693 // check here.
1694 EnumDecl *Enum = EnumT->getDecl();
1695
1696 // Get to the parent type.
1697 if (TypeDecl *Parent = dyn_cast<TypeDecl>(Enum->getParent()))
1698 T = Context.getTypeDeclType(Parent);
1699 else
1700 T = QualType();
1701 continue;
Douglas Gregorf59a56e2009-07-21 23:53:31 +00001702 }
Mike Stump1eb44332009-09-09 15:08:12 +00001703
Douglas Gregorc8406492011-05-10 18:27:06 +00001704 T = QualType();
1705 }
1706 // Reverse the nested types list, since we want to traverse from the outermost
1707 // to the innermost while checking template-parameter-lists.
1708 std::reverse(NestedTypes.begin(), NestedTypes.end());
Douglas Gregorb88e8882009-07-30 17:40:51 +00001709
Douglas Gregorc8406492011-05-10 18:27:06 +00001710 // C++0x [temp.expl.spec]p17:
1711 // A member or a member template may be nested within many
1712 // enclosing class templates. In an explicit specialization for
1713 // such a member, the member declaration shall be preceded by a
1714 // template<> for each enclosing class template that is
1715 // explicitly specialized.
Douglas Gregor89b9f102011-06-06 15:22:55 +00001716 bool SawNonEmptyTemplateParameterList = false;
Douglas Gregorc8406492011-05-10 18:27:06 +00001717 unsigned ParamIdx = 0;
1718 for (unsigned TypeIdx = 0, NumTypes = NestedTypes.size(); TypeIdx != NumTypes;
1719 ++TypeIdx) {
1720 T = NestedTypes[TypeIdx];
1721
1722 // Whether we expect a 'template<>' header.
1723 bool NeedEmptyTemplateHeader = false;
1724
1725 // Whether we expect a template header with parameters.
1726 bool NeedNonemptyTemplateHeader = false;
1727
1728 // For a dependent type, the set of template parameters that we
1729 // expect to see.
1730 TemplateParameterList *ExpectedTemplateParams = 0;
1731
Douglas Gregor175c5bb2011-05-11 23:26:17 +00001732 // C++0x [temp.expl.spec]p15:
1733 // A member or a member template may be nested within many enclosing
1734 // class templates. In an explicit specialization for such a member, the
1735 // member declaration shall be preceded by a template<> for each
1736 // enclosing class template that is explicitly specialized.
Douglas Gregorc8406492011-05-10 18:27:06 +00001737 if (CXXRecordDecl *Record = T->getAsCXXRecordDecl()) {
1738 if (ClassTemplatePartialSpecializationDecl *Partial
1739 = dyn_cast<ClassTemplatePartialSpecializationDecl>(Record)) {
1740 ExpectedTemplateParams = Partial->getTemplateParameters();
1741 NeedNonemptyTemplateHeader = true;
1742 } else if (Record->isDependentType()) {
1743 if (Record->getDescribedClassTemplate()) {
John McCall31f17ec2010-04-27 00:57:59 +00001744 ExpectedTemplateParams = Record->getDescribedClassTemplate()
Douglas Gregorc8406492011-05-10 18:27:06 +00001745 ->getTemplateParameters();
1746 NeedNonemptyTemplateHeader = true;
1747 }
1748 } else if (ClassTemplateSpecializationDecl *Spec
1749 = dyn_cast<ClassTemplateSpecializationDecl>(Record)) {
1750 // C++0x [temp.expl.spec]p4:
1751 // Members of an explicitly specialized class template are defined
1752 // in the same manner as members of normal classes, and not using
1753 // the template<> syntax.
1754 if (Spec->getSpecializationKind() != TSK_ExplicitSpecialization)
1755 NeedEmptyTemplateHeader = true;
1756 else
Douglas Gregor95ea4502011-06-01 22:37:07 +00001757 continue;
Douglas Gregorc8406492011-05-10 18:27:06 +00001758 } else if (Record->getTemplateSpecializationKind()) {
1759 if (Record->getTemplateSpecializationKind()
Douglas Gregor175c5bb2011-05-11 23:26:17 +00001760 != TSK_ExplicitSpecialization &&
1761 TypeIdx == NumTypes - 1)
1762 IsExplicitSpecialization = true;
1763
1764 continue;
Douglas Gregorc8406492011-05-10 18:27:06 +00001765 }
1766 } else if (const TemplateSpecializationType *TST
1767 = T->getAs<TemplateSpecializationType>()) {
1768 if (TemplateDecl *Template = TST->getTemplateName().getAsTemplateDecl()) {
1769 ExpectedTemplateParams = Template->getTemplateParameters();
1770 NeedNonemptyTemplateHeader = true;
1771 }
1772 } else if (T->getAs<DependentTemplateSpecializationType>()) {
1773 // FIXME: We actually could/should check the template arguments here
1774 // against the corresponding template parameter list.
1775 NeedNonemptyTemplateHeader = false;
1776 }
1777
Douglas Gregor89b9f102011-06-06 15:22:55 +00001778 // C++ [temp.expl.spec]p16:
1779 // In an explicit specialization declaration for a member of a class
1780 // template or a member template that ap- pears in namespace scope, the
1781 // member template and some of its enclosing class templates may remain
1782 // unspecialized, except that the declaration shall not explicitly
1783 // specialize a class member template if its en- closing class templates
1784 // are not explicitly specialized as well.
1785 if (ParamIdx < NumParamLists) {
1786 if (ParamLists[ParamIdx]->size() == 0) {
1787 if (SawNonEmptyTemplateParameterList) {
1788 Diag(DeclLoc, diag::err_specialize_member_of_template)
1789 << ParamLists[ParamIdx]->getSourceRange();
1790 Invalid = true;
1791 IsExplicitSpecialization = false;
1792 return 0;
1793 }
1794 } else
1795 SawNonEmptyTemplateParameterList = true;
1796 }
1797
Douglas Gregorc8406492011-05-10 18:27:06 +00001798 if (NeedEmptyTemplateHeader) {
1799 // If we're on the last of the types, and we need a 'template<>' header
1800 // here, then it's an explicit specialization.
1801 if (TypeIdx == NumTypes - 1)
1802 IsExplicitSpecialization = true;
1803
1804 if (ParamIdx < NumParamLists) {
1805 if (ParamLists[ParamIdx]->size() > 0) {
1806 // The header has template parameters when it shouldn't. Complain.
1807 Diag(ParamLists[ParamIdx]->getTemplateLoc(),
1808 diag::err_template_param_list_matches_nontemplate)
1809 << T
1810 << SourceRange(ParamLists[ParamIdx]->getLAngleLoc(),
1811 ParamLists[ParamIdx]->getRAngleLoc())
1812 << getRangeOfTypeInNestedNameSpecifier(Context, T, SS);
1813 Invalid = true;
1814 return 0;
1815 }
1816
1817 // Consume this template header.
1818 ++ParamIdx;
1819 continue;
1820 }
1821
1822 if (!IsFriend) {
1823 // We don't have a template header, but we should.
1824 SourceLocation ExpectedTemplateLoc;
1825 if (NumParamLists > 0)
1826 ExpectedTemplateLoc = ParamLists[0]->getTemplateLoc();
1827 else
1828 ExpectedTemplateLoc = DeclStartLoc;
1829
1830 Diag(DeclLoc, diag::err_template_spec_needs_header)
1831 << getRangeOfTypeInNestedNameSpecifier(Context, T, SS)
1832 << FixItHint::CreateInsertion(ExpectedTemplateLoc, "template<> ");
1833 }
1834
1835 continue;
1836 }
1837
1838 if (NeedNonemptyTemplateHeader) {
1839 // In friend declarations we can have template-ids which don't
1840 // depend on the corresponding template parameter lists. But
1841 // assume that empty parameter lists are supposed to match this
1842 // template-id.
1843 if (IsFriend && T->isDependentType()) {
1844 if (ParamIdx < NumParamLists &&
1845 DependsOnTemplateParameters(T, ParamLists[ParamIdx]))
1846 ExpectedTemplateParams = 0;
1847 else
1848 continue;
Mike Stump1eb44332009-09-09 15:08:12 +00001849 }
Douglas Gregor5b6d70e2009-11-25 17:50:39 +00001850
Douglas Gregorc8406492011-05-10 18:27:06 +00001851 if (ParamIdx < NumParamLists) {
1852 // Check the template parameter list, if we can.
1853 if (ExpectedTemplateParams &&
1854 !TemplateParameterListsAreEqual(ParamLists[ParamIdx],
1855 ExpectedTemplateParams,
1856 true, TPL_TemplateMatch))
1857 Invalid = true;
1858
1859 if (!Invalid &&
1860 CheckTemplateParameterList(ParamLists[ParamIdx], 0,
1861 TPC_ClassTemplateMember))
1862 Invalid = true;
1863
1864 ++ParamIdx;
1865 continue;
1866 }
1867
1868 Diag(DeclLoc, diag::err_template_spec_needs_template_parameters)
1869 << T
1870 << getRangeOfTypeInNestedNameSpecifier(Context, T, SS);
1871 Invalid = true;
1872 continue;
1873 }
Douglas Gregorf59a56e2009-07-21 23:53:31 +00001874 }
Douglas Gregorc8406492011-05-10 18:27:06 +00001875
Douglas Gregorf59a56e2009-07-21 23:53:31 +00001876 // If there were at least as many template-ids as there were template
1877 // parameter lists, then there are no template parameter lists remaining for
1878 // the declaration itself.
John McCall4e2cbb22010-10-20 05:44:58 +00001879 if (ParamIdx >= NumParamLists)
Douglas Gregorf59a56e2009-07-21 23:53:31 +00001880 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001881
Douglas Gregorf59a56e2009-07-21 23:53:31 +00001882 // If there were too many template parameter lists, complain about that now.
Douglas Gregorc8406492011-05-10 18:27:06 +00001883 if (ParamIdx < NumParamLists - 1) {
1884 bool HasAnyExplicitSpecHeader = false;
1885 bool AllExplicitSpecHeaders = true;
1886 for (unsigned I = ParamIdx; I != NumParamLists - 1; ++I) {
1887 if (ParamLists[I]->size() == 0)
1888 HasAnyExplicitSpecHeader = true;
1889 else
1890 AllExplicitSpecHeaders = false;
Douglas Gregorf59a56e2009-07-21 23:53:31 +00001891 }
Douglas Gregorc8406492011-05-10 18:27:06 +00001892
1893 Diag(ParamLists[ParamIdx]->getTemplateLoc(),
1894 AllExplicitSpecHeaders? diag::warn_template_spec_extra_headers
1895 : diag::err_template_spec_extra_headers)
1896 << SourceRange(ParamLists[ParamIdx]->getTemplateLoc(),
1897 ParamLists[NumParamLists - 2]->getRAngleLoc());
1898
1899 // If there was a specialization somewhere, such that 'template<>' is
1900 // not required, and there were any 'template<>' headers, note where the
1901 // specialization occurred.
1902 if (ExplicitSpecLoc.isValid() && HasAnyExplicitSpecHeader)
1903 Diag(ExplicitSpecLoc,
1904 diag::note_explicit_template_spec_does_not_need_header)
1905 << NestedTypes.back();
1906
1907 // We have a template parameter list with no corresponding scope, which
1908 // means that the resulting template declaration can't be instantiated
1909 // properly (we'll end up with dependent nodes when we shouldn't).
1910 if (!AllExplicitSpecHeaders)
1911 Invalid = true;
Douglas Gregorf59a56e2009-07-21 23:53:31 +00001912 }
Mike Stump1eb44332009-09-09 15:08:12 +00001913
Douglas Gregor89b9f102011-06-06 15:22:55 +00001914 // C++ [temp.expl.spec]p16:
1915 // In an explicit specialization declaration for a member of a class
1916 // template or a member template that ap- pears in namespace scope, the
1917 // member template and some of its enclosing class templates may remain
1918 // unspecialized, except that the declaration shall not explicitly
1919 // specialize a class member template if its en- closing class templates
1920 // are not explicitly specialized as well.
1921 if (ParamLists[NumParamLists - 1]->size() == 0 &&
1922 SawNonEmptyTemplateParameterList) {
1923 Diag(DeclLoc, diag::err_specialize_member_of_template)
1924 << ParamLists[ParamIdx]->getSourceRange();
1925 Invalid = true;
1926 IsExplicitSpecialization = false;
1927 return 0;
1928 }
1929
Douglas Gregorf59a56e2009-07-21 23:53:31 +00001930 // Return the last template parameter list, which corresponds to the
1931 // entity being declared.
1932 return ParamLists[NumParamLists - 1];
1933}
1934
Douglas Gregor6cd9d4a2011-03-04 21:37:14 +00001935void Sema::NoteAllFoundTemplates(TemplateName Name) {
1936 if (TemplateDecl *Template = Name.getAsTemplateDecl()) {
1937 Diag(Template->getLocation(), diag::note_template_declared_here)
1938 << (isa<FunctionTemplateDecl>(Template)? 0
1939 : isa<ClassTemplateDecl>(Template)? 1
Richard Smith3e4c6c42011-05-05 21:57:07 +00001940 : isa<TypeAliasTemplateDecl>(Template)? 2
1941 : 3)
Douglas Gregor6cd9d4a2011-03-04 21:37:14 +00001942 << Template->getDeclName();
1943 return;
1944 }
1945
1946 if (OverloadedTemplateStorage *OST = Name.getAsOverloadedTemplate()) {
1947 for (OverloadedTemplateStorage::iterator I = OST->begin(),
1948 IEnd = OST->end();
1949 I != IEnd; ++I)
1950 Diag((*I)->getLocation(), diag::note_template_declared_here)
1951 << 0 << (*I)->getDeclName();
1952
1953 return;
1954 }
1955}
1956
Douglas Gregor7532dc62009-03-30 22:58:21 +00001957QualType Sema::CheckTemplateIdType(TemplateName Name,
1958 SourceLocation TemplateLoc,
Douglas Gregor67714232011-03-03 02:41:12 +00001959 TemplateArgumentListInfo &TemplateArgs) {
John McCall14606042011-06-30 08:33:18 +00001960 DependentTemplateName *DTN
1961 = Name.getUnderlying().getAsDependentTemplateName();
Richard Smith3e4c6c42011-05-05 21:57:07 +00001962 if (DTN && DTN->isIdentifier())
1963 // When building a template-id where the template-name is dependent,
1964 // assume the template is a type template. Either our assumption is
1965 // correct, or the code is ill-formed and will be diagnosed when the
1966 // dependent name is substituted.
1967 return Context.getDependentTemplateSpecializationType(ETK_None,
1968 DTN->getQualifier(),
1969 DTN->getIdentifier(),
1970 TemplateArgs);
1971
Douglas Gregor7532dc62009-03-30 22:58:21 +00001972 TemplateDecl *Template = Name.getAsTemplateDecl();
Douglas Gregor6cd9d4a2011-03-04 21:37:14 +00001973 if (!Template || isa<FunctionTemplateDecl>(Template)) {
1974 // We might have a substituted template template parameter pack. If so,
1975 // build a template specialization type for it.
1976 if (Name.getAsSubstTemplateTemplateParmPack())
1977 return Context.getTemplateSpecializationType(Name, TemplateArgs);
Richard Smith3e4c6c42011-05-05 21:57:07 +00001978
Douglas Gregor6cd9d4a2011-03-04 21:37:14 +00001979 Diag(TemplateLoc, diag::err_template_id_not_a_type)
1980 << Name;
1981 NoteAllFoundTemplates(Name);
1982 return QualType();
Douglas Gregorc45c2322009-03-31 00:43:58 +00001983 }
Douglas Gregor7532dc62009-03-30 22:58:21 +00001984
Douglas Gregor40808ce2009-03-09 23:48:35 +00001985 // Check that the template argument list is well-formed for this
1986 // template.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001987 SmallVector<TemplateArgument, 4> Converted;
Douglas Gregorb70126a2012-02-03 17:16:23 +00001988 bool ExpansionIntoFixedList = false;
John McCalld5532b62009-11-23 01:53:49 +00001989 if (CheckTemplateArgumentList(Template, TemplateLoc, TemplateArgs,
Douglas Gregorb70126a2012-02-03 17:16:23 +00001990 false, Converted, &ExpansionIntoFixedList))
Douglas Gregor40808ce2009-03-09 23:48:35 +00001991 return QualType();
1992
Douglas Gregor40808ce2009-03-09 23:48:35 +00001993 QualType CanonType;
1994
Douglas Gregor561f8122011-07-01 01:22:09 +00001995 bool InstantiationDependent = false;
Douglas Gregorb70126a2012-02-03 17:16:23 +00001996 TypeAliasTemplateDecl *AliasTemplate = 0;
1997 if (!ExpansionIntoFixedList &&
1998 (AliasTemplate = dyn_cast<TypeAliasTemplateDecl>(Template))) {
Richard Smith3e4c6c42011-05-05 21:57:07 +00001999 // Find the canonical type for this type alias template specialization.
2000 TypeAliasDecl *Pattern = AliasTemplate->getTemplatedDecl();
2001 if (Pattern->isInvalidDecl())
2002 return QualType();
2003
2004 TemplateArgumentList TemplateArgs(TemplateArgumentList::OnStack,
2005 Converted.data(), Converted.size());
2006
2007 // Only substitute for the innermost template argument list.
2008 MultiLevelTemplateArgumentList TemplateArgLists;
Richard Smith18041742011-05-14 15:04:18 +00002009 TemplateArgLists.addOuterTemplateArguments(&TemplateArgs);
Richard Smithaff37b42011-05-12 00:06:17 +00002010 unsigned Depth = AliasTemplate->getTemplateParameters()->getDepth();
2011 for (unsigned I = 0; I < Depth; ++I)
Richard Smith7a9f7c72013-05-17 03:04:50 +00002012 TemplateArgLists.addOuterTemplateArguments(None);
Richard Smith3e4c6c42011-05-05 21:57:07 +00002013
Richard Smitha8eaf002012-08-23 06:16:52 +00002014 LocalInstantiationScope Scope(*this);
Richard Smith3e4c6c42011-05-05 21:57:07 +00002015 InstantiatingTemplate Inst(*this, TemplateLoc, Template);
Richard Smithab91ef12012-07-08 02:38:24 +00002016 if (Inst)
2017 return QualType();
Richard Smitha8eaf002012-08-23 06:16:52 +00002018
Richard Smith3e4c6c42011-05-05 21:57:07 +00002019 CanonType = SubstType(Pattern->getUnderlyingType(),
2020 TemplateArgLists, AliasTemplate->getLocation(),
2021 AliasTemplate->getDeclName());
2022 if (CanonType.isNull())
2023 return QualType();
2024 } else if (Name.isDependent() ||
2025 TemplateSpecializationType::anyDependentTemplateArguments(
Douglas Gregor561f8122011-07-01 01:22:09 +00002026 TemplateArgs, InstantiationDependent)) {
Douglas Gregor40808ce2009-03-09 23:48:35 +00002027 // This class template specialization is a dependent
2028 // type. Therefore, its canonical type is another class template
2029 // specialization type that contains all of the converted
2030 // arguments in canonical form. This ensures that, e.g., A<T> and
2031 // A<T, T> have identical types when A is declared as:
2032 //
2033 // template<typename T, typename U = T> struct A;
Douglas Gregor25a3ef72009-05-07 06:41:52 +00002034 TemplateName CanonName = Context.getCanonicalTemplateName(Name);
Mike Stump1eb44332009-09-09 15:08:12 +00002035 CanonType = Context.getTemplateSpecializationType(CanonName,
Douglas Gregor910f8002010-11-07 23:05:16 +00002036 Converted.data(),
2037 Converted.size());
Mike Stump1eb44332009-09-09 15:08:12 +00002038
Douglas Gregor1275ae02009-07-28 23:00:59 +00002039 // FIXME: CanonType is not actually the canonical type, and unfortunately
John McCall833ca992009-10-29 08:12:44 +00002040 // it is a TemplateSpecializationType that we will never use again.
Douglas Gregor1275ae02009-07-28 23:00:59 +00002041 // In the future, we need to teach getTemplateSpecializationType to only
2042 // build the canonical type and return that to us.
2043 CanonType = Context.getCanonicalType(CanonType);
John McCall31f17ec2010-04-27 00:57:59 +00002044
2045 // This might work out to be a current instantiation, in which
2046 // case the canonical type needs to be the InjectedClassNameType.
2047 //
2048 // TODO: in theory this could be a simple hashtable lookup; most
2049 // changes to CurContext don't change the set of current
2050 // instantiations.
2051 if (isa<ClassTemplateDecl>(Template)) {
2052 for (DeclContext *Ctx = CurContext; Ctx; Ctx = Ctx->getLookupParent()) {
2053 // If we get out to a namespace, we're done.
2054 if (Ctx->isFileContext()) break;
2055
2056 // If this isn't a record, keep looking.
2057 CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(Ctx);
2058 if (!Record) continue;
2059
2060 // Look for one of the two cases with InjectedClassNameTypes
2061 // and check whether it's the same template.
2062 if (!isa<ClassTemplatePartialSpecializationDecl>(Record) &&
2063 !Record->getDescribedClassTemplate())
2064 continue;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002065
John McCall31f17ec2010-04-27 00:57:59 +00002066 // Fetch the injected class name type and check whether its
2067 // injected type is equal to the type we just built.
2068 QualType ICNT = Context.getTypeDeclType(Record);
2069 QualType Injected = cast<InjectedClassNameType>(ICNT)
2070 ->getInjectedSpecializationType();
2071
2072 if (CanonType != Injected->getCanonicalTypeInternal())
2073 continue;
2074
2075 // If so, the canonical type of this TST is the injected
2076 // class name type of the record we just found.
2077 assert(ICNT.isCanonical());
2078 CanonType = ICNT;
John McCall31f17ec2010-04-27 00:57:59 +00002079 break;
2080 }
2081 }
Mike Stump1eb44332009-09-09 15:08:12 +00002082 } else if (ClassTemplateDecl *ClassTemplate
Douglas Gregor7532dc62009-03-30 22:58:21 +00002083 = dyn_cast<ClassTemplateDecl>(Template)) {
Douglas Gregor40808ce2009-03-09 23:48:35 +00002084 // Find the class template specialization declaration that
2085 // corresponds to these arguments.
Douglas Gregor40808ce2009-03-09 23:48:35 +00002086 void *InsertPos = 0;
2087 ClassTemplateSpecializationDecl *Decl
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002088 = ClassTemplate->findSpecialization(Converted.data(), Converted.size(),
Douglas Gregor910f8002010-11-07 23:05:16 +00002089 InsertPos);
Douglas Gregor40808ce2009-03-09 23:48:35 +00002090 if (!Decl) {
2091 // This is the first time we have referenced this class template
2092 // specialization. Create the canonical declaration and add it to
2093 // the set of specializations.
Mike Stump1eb44332009-09-09 15:08:12 +00002094 Decl = ClassTemplateSpecializationDecl::Create(Context,
Douglas Gregor13c85772010-05-06 00:28:52 +00002095 ClassTemplate->getTemplatedDecl()->getTagKind(),
2096 ClassTemplate->getDeclContext(),
Abramo Bagnara09d82122011-10-03 20:34:03 +00002097 ClassTemplate->getTemplatedDecl()->getLocStart(),
Abramo Bagnaraba877ad2011-03-09 14:09:51 +00002098 ClassTemplate->getLocation(),
Douglas Gregor910f8002010-11-07 23:05:16 +00002099 ClassTemplate,
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002100 Converted.data(),
Douglas Gregor910f8002010-11-07 23:05:16 +00002101 Converted.size(), 0);
Argyrios Kyrtzidiscc0b1bc2010-07-20 13:59:28 +00002102 ClassTemplate->AddSpecialization(Decl, InsertPos);
Abramo Bagnara4f216d382012-09-05 09:05:18 +00002103 if (ClassTemplate->isOutOfLine())
2104 Decl->setLexicalDeclContext(ClassTemplate->getLexicalDeclContext());
Douglas Gregor40808ce2009-03-09 23:48:35 +00002105 }
2106
2107 CanonType = Context.getTypeDeclType(Decl);
John McCall3cb0ebd2010-03-10 03:28:59 +00002108 assert(isa<RecordType>(CanonType) &&
2109 "type of non-dependent specialization is not a RecordType");
Douglas Gregor40808ce2009-03-09 23:48:35 +00002110 }
Mike Stump1eb44332009-09-09 15:08:12 +00002111
Douglas Gregor40808ce2009-03-09 23:48:35 +00002112 // Build the fully-sugared type for this class template
2113 // specialization, which refers back to the class template
2114 // specialization we created or found.
John McCall71d74bc2010-06-13 09:25:03 +00002115 return Context.getTemplateSpecializationType(Name, TemplateArgs, CanonType);
Douglas Gregor40808ce2009-03-09 23:48:35 +00002116}
2117
John McCallf312b1e2010-08-26 23:41:50 +00002118TypeResult
Abramo Bagnara55d23c92012-02-06 14:41:24 +00002119Sema::ActOnTemplateIdType(CXXScopeSpec &SS, SourceLocation TemplateKWLoc,
Douglas Gregor059101f2011-03-02 00:47:37 +00002120 TemplateTy TemplateD, SourceLocation TemplateLoc,
Mike Stump1eb44332009-09-09 15:08:12 +00002121 SourceLocation LAngleLoc,
Douglas Gregor7532dc62009-03-30 22:58:21 +00002122 ASTTemplateArgsPtr TemplateArgsIn,
Abramo Bagnarafad03b72012-01-27 08:46:19 +00002123 SourceLocation RAngleLoc,
2124 bool IsCtorOrDtorName) {
Douglas Gregor059101f2011-03-02 00:47:37 +00002125 if (SS.isInvalid())
2126 return true;
2127
Douglas Gregor7532dc62009-03-30 22:58:21 +00002128 TemplateName Template = TemplateD.getAsVal<TemplateName>();
Douglas Gregor55f6b142009-02-09 18:46:07 +00002129
Douglas Gregor40808ce2009-03-09 23:48:35 +00002130 // Translate the parser's template argument list in our AST format.
John McCalld5532b62009-11-23 01:53:49 +00002131 TemplateArgumentListInfo TemplateArgs(LAngleLoc, RAngleLoc);
Douglas Gregor314b97f2009-11-10 19:49:08 +00002132 translateTemplateArguments(TemplateArgsIn, TemplateArgs);
Douglas Gregorc15cb382009-02-09 23:23:08 +00002133
Douglas Gregora88f09f2011-02-28 17:23:35 +00002134 if (DependentTemplateName *DTN = Template.getAsDependentTemplateName()) {
Abramo Bagnarafad03b72012-01-27 08:46:19 +00002135 QualType T
2136 = Context.getDependentTemplateSpecializationType(ETK_None,
2137 DTN->getQualifier(),
2138 DTN->getIdentifier(),
2139 TemplateArgs);
2140 // Build type-source information.
Douglas Gregora88f09f2011-02-28 17:23:35 +00002141 TypeLocBuilder TLB;
2142 DependentTemplateSpecializationTypeLoc SpecTL
2143 = TLB.push<DependentTemplateSpecializationTypeLoc>(T);
Abramo Bagnara55d23c92012-02-06 14:41:24 +00002144 SpecTL.setElaboratedKeywordLoc(SourceLocation());
2145 SpecTL.setQualifierLoc(SS.getWithLocInContext(Context));
Abramo Bagnara66581d42012-02-06 22:45:07 +00002146 SpecTL.setTemplateKeywordLoc(TemplateKWLoc);
Abramo Bagnara55d23c92012-02-06 14:41:24 +00002147 SpecTL.setTemplateNameLoc(TemplateLoc);
Douglas Gregora88f09f2011-02-28 17:23:35 +00002148 SpecTL.setLAngleLoc(LAngleLoc);
2149 SpecTL.setRAngleLoc(RAngleLoc);
Douglas Gregora88f09f2011-02-28 17:23:35 +00002150 for (unsigned I = 0, N = SpecTL.getNumArgs(); I != N; ++I)
2151 SpecTL.setArgLocInfo(I, TemplateArgs[I].getLocInfo());
2152 return CreateParsedType(T, TLB.getTypeSourceInfo(Context, T));
2153 }
2154
John McCalld5532b62009-11-23 01:53:49 +00002155 QualType Result = CheckTemplateIdType(Template, TemplateLoc, TemplateArgs);
Douglas Gregor31a19b62009-04-01 21:51:26 +00002156
2157 if (Result.isNull())
2158 return true;
2159
Douglas Gregor059101f2011-03-02 00:47:37 +00002160 // Build type-source information.
Abramo Bagnara55d23c92012-02-06 14:41:24 +00002161 TypeLocBuilder TLB;
Douglas Gregor059101f2011-03-02 00:47:37 +00002162 TemplateSpecializationTypeLoc SpecTL
2163 = TLB.push<TemplateSpecializationTypeLoc>(Result);
Abramo Bagnara55d23c92012-02-06 14:41:24 +00002164 SpecTL.setTemplateKeywordLoc(TemplateKWLoc);
Douglas Gregor059101f2011-03-02 00:47:37 +00002165 SpecTL.setTemplateNameLoc(TemplateLoc);
2166 SpecTL.setLAngleLoc(LAngleLoc);
2167 SpecTL.setRAngleLoc(RAngleLoc);
2168 for (unsigned i = 0, e = SpecTL.getNumArgs(); i != e; ++i)
2169 SpecTL.setArgLocInfo(i, TemplateArgs[i].getLocInfo());
John McCall833ca992009-10-29 08:12:44 +00002170
Abramo Bagnarafad03b72012-01-27 08:46:19 +00002171 // NOTE: avoid constructing an ElaboratedTypeLoc if this is a
2172 // constructor or destructor name (in such a case, the scope specifier
2173 // will be attached to the enclosing Decl or Expr node).
2174 if (SS.isNotEmpty() && !IsCtorOrDtorName) {
Douglas Gregor059101f2011-03-02 00:47:37 +00002175 // Create an elaborated-type-specifier containing the nested-name-specifier.
2176 Result = Context.getElaboratedType(ETK_None, SS.getScopeRep(), Result);
2177 ElaboratedTypeLoc ElabTL = TLB.push<ElaboratedTypeLoc>(Result);
Abramo Bagnara38a42912012-02-06 19:09:27 +00002178 ElabTL.setElaboratedKeywordLoc(SourceLocation());
Douglas Gregor059101f2011-03-02 00:47:37 +00002179 ElabTL.setQualifierLoc(SS.getWithLocInContext(Context));
2180 }
2181
2182 return CreateParsedType(Result, TLB.getTypeSourceInfo(Context, Result));
John McCall6b2becf2009-09-08 17:47:29 +00002183}
John McCallf1bbbb42009-09-04 01:14:41 +00002184
Douglas Gregor059101f2011-03-02 00:47:37 +00002185TypeResult Sema::ActOnTagTemplateIdType(TagUseKind TUK,
John McCallf312b1e2010-08-26 23:41:50 +00002186 TypeSpecifierType TagSpec,
Douglas Gregor059101f2011-03-02 00:47:37 +00002187 SourceLocation TagLoc,
2188 CXXScopeSpec &SS,
Abramo Bagnara55d23c92012-02-06 14:41:24 +00002189 SourceLocation TemplateKWLoc,
2190 TemplateTy TemplateD,
Douglas Gregor059101f2011-03-02 00:47:37 +00002191 SourceLocation TemplateLoc,
2192 SourceLocation LAngleLoc,
2193 ASTTemplateArgsPtr TemplateArgsIn,
2194 SourceLocation RAngleLoc) {
2195 TemplateName Template = TemplateD.getAsVal<TemplateName>();
2196
2197 // Translate the parser's template argument list in our AST format.
2198 TemplateArgumentListInfo TemplateArgs(LAngleLoc, RAngleLoc);
2199 translateTemplateArguments(TemplateArgsIn, TemplateArgs);
2200
2201 // Determine the tag kind
Abramo Bagnara465d41b2010-05-11 21:36:43 +00002202 TagTypeKind TagKind = TypeWithKeyword::getTagTypeKindForTypeSpec(TagSpec);
Douglas Gregor059101f2011-03-02 00:47:37 +00002203 ElaboratedTypeKeyword Keyword
2204 = TypeWithKeyword::getKeywordForTagTypeKind(TagKind);
Mike Stump1eb44332009-09-09 15:08:12 +00002205
Douglas Gregor059101f2011-03-02 00:47:37 +00002206 if (DependentTemplateName *DTN = Template.getAsDependentTemplateName()) {
2207 QualType T = Context.getDependentTemplateSpecializationType(Keyword,
2208 DTN->getQualifier(),
2209 DTN->getIdentifier(),
2210 TemplateArgs);
2211
2212 // Build type-source information.
2213 TypeLocBuilder TLB;
2214 DependentTemplateSpecializationTypeLoc SpecTL
Abramo Bagnara55d23c92012-02-06 14:41:24 +00002215 = TLB.push<DependentTemplateSpecializationTypeLoc>(T);
2216 SpecTL.setElaboratedKeywordLoc(TagLoc);
2217 SpecTL.setQualifierLoc(SS.getWithLocInContext(Context));
Abramo Bagnara66581d42012-02-06 22:45:07 +00002218 SpecTL.setTemplateKeywordLoc(TemplateKWLoc);
Abramo Bagnara55d23c92012-02-06 14:41:24 +00002219 SpecTL.setTemplateNameLoc(TemplateLoc);
Douglas Gregor059101f2011-03-02 00:47:37 +00002220 SpecTL.setLAngleLoc(LAngleLoc);
2221 SpecTL.setRAngleLoc(RAngleLoc);
Douglas Gregor059101f2011-03-02 00:47:37 +00002222 for (unsigned I = 0, N = SpecTL.getNumArgs(); I != N; ++I)
2223 SpecTL.setArgLocInfo(I, TemplateArgs[I].getLocInfo());
2224 return CreateParsedType(T, TLB.getTypeSourceInfo(Context, T));
2225 }
Richard Smith3e4c6c42011-05-05 21:57:07 +00002226
2227 if (TypeAliasTemplateDecl *TAT =
2228 dyn_cast_or_null<TypeAliasTemplateDecl>(Template.getAsTemplateDecl())) {
2229 // C++0x [dcl.type.elab]p2:
2230 // If the identifier resolves to a typedef-name or the simple-template-id
2231 // resolves to an alias template specialization, the
2232 // elaborated-type-specifier is ill-formed.
2233 Diag(TemplateLoc, diag::err_tag_reference_non_tag) << 4;
2234 Diag(TAT->getLocation(), diag::note_declared_at);
2235 }
Douglas Gregor059101f2011-03-02 00:47:37 +00002236
2237 QualType Result = CheckTemplateIdType(Template, TemplateLoc, TemplateArgs);
2238 if (Result.isNull())
Matt Beaumont-Gay3a51d412011-08-25 23:22:24 +00002239 return TypeResult(true);
Douglas Gregor059101f2011-03-02 00:47:37 +00002240
2241 // Check the tag kind
2242 if (const RecordType *RT = Result->getAs<RecordType>()) {
John McCall6b2becf2009-09-08 17:47:29 +00002243 RecordDecl *D = RT->getDecl();
Douglas Gregor059101f2011-03-02 00:47:37 +00002244
John McCall6b2becf2009-09-08 17:47:29 +00002245 IdentifierInfo *Id = D->getIdentifier();
2246 assert(Id && "templated class must have an identifier");
Douglas Gregor059101f2011-03-02 00:47:37 +00002247
Richard Trieubbf34c02011-06-10 03:11:26 +00002248 if (!isAcceptableTagRedeclaration(D, TagKind, TUK == TUK_Definition,
2249 TagLoc, *Id)) {
John McCall6b2becf2009-09-08 17:47:29 +00002250 Diag(TagLoc, diag::err_use_with_wrong_tag)
Douglas Gregor059101f2011-03-02 00:47:37 +00002251 << Result
Douglas Gregor849b2432010-03-31 17:46:05 +00002252 << FixItHint::CreateReplacement(SourceRange(TagLoc), D->getKindName());
John McCallc4e70192009-09-11 04:59:25 +00002253 Diag(D->getLocation(), diag::note_previous_use);
John McCallf1bbbb42009-09-04 01:14:41 +00002254 }
2255 }
Abramo Bagnara55d23c92012-02-06 14:41:24 +00002256
Douglas Gregor059101f2011-03-02 00:47:37 +00002257 // Provide source-location information for the template specialization.
2258 TypeLocBuilder TLB;
2259 TemplateSpecializationTypeLoc SpecTL
2260 = TLB.push<TemplateSpecializationTypeLoc>(Result);
Abramo Bagnara55d23c92012-02-06 14:41:24 +00002261 SpecTL.setTemplateKeywordLoc(TemplateKWLoc);
Douglas Gregor059101f2011-03-02 00:47:37 +00002262 SpecTL.setTemplateNameLoc(TemplateLoc);
2263 SpecTL.setLAngleLoc(LAngleLoc);
2264 SpecTL.setRAngleLoc(RAngleLoc);
2265 for (unsigned i = 0, e = SpecTL.getNumArgs(); i != e; ++i)
2266 SpecTL.setArgLocInfo(i, TemplateArgs[i].getLocInfo());
John McCallf1bbbb42009-09-04 01:14:41 +00002267
Douglas Gregor059101f2011-03-02 00:47:37 +00002268 // Construct an elaborated type containing the nested-name-specifier (if any)
Abramo Bagnara55d23c92012-02-06 14:41:24 +00002269 // and tag keyword.
Douglas Gregor059101f2011-03-02 00:47:37 +00002270 Result = Context.getElaboratedType(Keyword, SS.getScopeRep(), Result);
2271 ElaboratedTypeLoc ElabTL = TLB.push<ElaboratedTypeLoc>(Result);
Abramo Bagnara38a42912012-02-06 19:09:27 +00002272 ElabTL.setElaboratedKeywordLoc(TagLoc);
Douglas Gregor059101f2011-03-02 00:47:37 +00002273 ElabTL.setQualifierLoc(SS.getWithLocInContext(Context));
2274 return CreateParsedType(Result, TLB.getTypeSourceInfo(Context, Result));
Douglas Gregor55f6b142009-02-09 18:46:07 +00002275}
2276
John McCall60d7b3a2010-08-24 06:29:42 +00002277ExprResult Sema::BuildTemplateIdExpr(const CXXScopeSpec &SS,
Abramo Bagnarae4b92762012-01-27 09:46:47 +00002278 SourceLocation TemplateKWLoc,
Douglas Gregor4c9be892011-02-28 20:01:57 +00002279 LookupResult &R,
2280 bool RequiresADL,
Abramo Bagnara9d9922a2012-02-06 14:31:00 +00002281 const TemplateArgumentListInfo *TemplateArgs) {
Douglas Gregoredce4dd2009-06-30 22:34:41 +00002282 // FIXME: Can we do any checking at this point? I guess we could check the
2283 // template arguments that we have against the template name, if the template
Mike Stump1eb44332009-09-09 15:08:12 +00002284 // name refers to a single template. That's not a terribly common case,
Douglas Gregoredce4dd2009-06-30 22:34:41 +00002285 // though.
Douglas Gregor1be8eec2011-02-19 21:32:49 +00002286 // foo<int> could identify a single function unambiguously
2287 // This approach does NOT work, since f<int>(1);
2288 // gets resolved prior to resorting to overload resolution
2289 // i.e., template<class T> void f(double);
2290 // vs template<class T, class U> void f(U);
John McCallf7a1a742009-11-24 19:00:30 +00002291
2292 // These should be filtered out by our callers.
2293 assert(!R.empty() && "empty lookup results when building templateid");
2294 assert(!R.isAmbiguous() && "ambiguous lookup when building templateid");
2295
John McCallc373d482010-01-27 01:50:18 +00002296 // We don't want lookup warnings at this point.
2297 R.suppressDiagnostics();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002298
John McCallf7a1a742009-11-24 19:00:30 +00002299 UnresolvedLookupExpr *ULE
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00002300 = UnresolvedLookupExpr::Create(Context, R.getNamingClass(),
Douglas Gregor4c9be892011-02-28 20:01:57 +00002301 SS.getWithLocInContext(Context),
Abramo Bagnarae4b92762012-01-27 09:46:47 +00002302 TemplateKWLoc,
Abramo Bagnara25777432010-08-11 22:01:17 +00002303 R.getLookupNameInfo(),
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002304 RequiresADL, TemplateArgs,
Douglas Gregor5a84dec2010-05-23 18:57:34 +00002305 R.begin(), R.end());
John McCallf7a1a742009-11-24 19:00:30 +00002306
2307 return Owned(ULE);
Douglas Gregoredce4dd2009-06-30 22:34:41 +00002308}
2309
John McCallf7a1a742009-11-24 19:00:30 +00002310// We actually only call this from template instantiation.
John McCall60d7b3a2010-08-24 06:29:42 +00002311ExprResult
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00002312Sema::BuildQualifiedTemplateIdExpr(CXXScopeSpec &SS,
Abramo Bagnarae4b92762012-01-27 09:46:47 +00002313 SourceLocation TemplateKWLoc,
Abramo Bagnara25777432010-08-11 22:01:17 +00002314 const DeclarationNameInfo &NameInfo,
Abramo Bagnara9d9922a2012-02-06 14:31:00 +00002315 const TemplateArgumentListInfo *TemplateArgs) {
2316 assert(TemplateArgs || TemplateKWLoc.isValid());
John McCallf7a1a742009-11-24 19:00:30 +00002317 DeclContext *DC;
2318 if (!(DC = computeDeclContext(SS, false)) ||
2319 DC->isDependentContext() ||
John McCall77bb1aa2010-05-01 00:40:08 +00002320 RequireCompleteDeclContext(SS, DC))
Abramo Bagnara9d9922a2012-02-06 14:31:00 +00002321 return BuildDependentDeclRefExpr(SS, TemplateKWLoc, NameInfo, TemplateArgs);
Mike Stump1eb44332009-09-09 15:08:12 +00002322
Douglas Gregor1fd6d442010-05-21 23:18:07 +00002323 bool MemberOfUnknownSpecialization;
Abramo Bagnara25777432010-08-11 22:01:17 +00002324 LookupResult R(*this, NameInfo, LookupOrdinaryName);
Douglas Gregor1fd6d442010-05-21 23:18:07 +00002325 LookupTemplateName(R, (Scope*) 0, SS, QualType(), /*Entering*/ false,
2326 MemberOfUnknownSpecialization);
Mike Stump1eb44332009-09-09 15:08:12 +00002327
John McCallf7a1a742009-11-24 19:00:30 +00002328 if (R.isAmbiguous())
2329 return ExprError();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002330
John McCallf7a1a742009-11-24 19:00:30 +00002331 if (R.empty()) {
Abramo Bagnara25777432010-08-11 22:01:17 +00002332 Diag(NameInfo.getLoc(), diag::err_template_kw_refers_to_non_template)
2333 << NameInfo.getName() << SS.getRange();
John McCallf7a1a742009-11-24 19:00:30 +00002334 return ExprError();
2335 }
2336
2337 if (ClassTemplateDecl *Temp = R.getAsSingle<ClassTemplateDecl>()) {
Abramo Bagnara25777432010-08-11 22:01:17 +00002338 Diag(NameInfo.getLoc(), diag::err_template_kw_refers_to_class_template)
2339 << (NestedNameSpecifier*) SS.getScopeRep()
2340 << NameInfo.getName() << SS.getRange();
John McCallf7a1a742009-11-24 19:00:30 +00002341 Diag(Temp->getLocation(), diag::note_referenced_class_template);
2342 return ExprError();
2343 }
2344
Abramo Bagnarae4b92762012-01-27 09:46:47 +00002345 return BuildTemplateIdExpr(SS, TemplateKWLoc, R, /*ADL*/ false, TemplateArgs);
Douglas Gregoredce4dd2009-06-30 22:34:41 +00002346}
2347
Douglas Gregorc45c2322009-03-31 00:43:58 +00002348/// \brief Form a dependent template name.
2349///
2350/// This action forms a dependent template name given the template
2351/// name and its (presumably dependent) scope specifier. For
2352/// example, given "MetaFun::template apply", the scope specifier \p
2353/// SS will be "MetaFun::", \p TemplateKWLoc contains the location
2354/// of the "template" keyword, and "apply" is the \p Name.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002355TemplateNameKind Sema::ActOnDependentTemplateName(Scope *S,
Douglas Gregord6ab2322010-06-16 23:00:59 +00002356 CXXScopeSpec &SS,
Abramo Bagnarae4b92762012-01-27 09:46:47 +00002357 SourceLocation TemplateKWLoc,
Douglas Gregord6ab2322010-06-16 23:00:59 +00002358 UnqualifiedId &Name,
John McCallb3d87482010-08-24 05:47:05 +00002359 ParsedType ObjectType,
Douglas Gregord6ab2322010-06-16 23:00:59 +00002360 bool EnteringContext,
2361 TemplateTy &Result) {
Richard Smithebaf0e62011-10-18 20:49:44 +00002362 if (TemplateKWLoc.isValid() && S && !S->getTemplateParamParent())
2363 Diag(TemplateKWLoc,
Richard Smith80ad52f2013-01-02 11:42:31 +00002364 getLangOpts().CPlusPlus11 ?
Richard Smithebaf0e62011-10-18 20:49:44 +00002365 diag::warn_cxx98_compat_template_outside_of_template :
2366 diag::ext_template_outside_of_template)
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002367 << FixItHint::CreateRemoval(TemplateKWLoc);
2368
Douglas Gregor0707bc52010-01-19 16:01:07 +00002369 DeclContext *LookupCtx = 0;
2370 if (SS.isSet())
2371 LookupCtx = computeDeclContext(SS, EnteringContext);
2372 if (!LookupCtx && ObjectType)
John McCallb3d87482010-08-24 05:47:05 +00002373 LookupCtx = computeDeclContext(ObjectType.get());
Douglas Gregor0707bc52010-01-19 16:01:07 +00002374 if (LookupCtx) {
Douglas Gregorc45c2322009-03-31 00:43:58 +00002375 // C++0x [temp.names]p5:
2376 // If a name prefixed by the keyword template is not the name of
2377 // a template, the program is ill-formed. [Note: the keyword
2378 // template may not be applied to non-template members of class
2379 // templates. -end note ] [ Note: as is the case with the
2380 // typename prefix, the template prefix is allowed in cases
2381 // where it is not strictly necessary; i.e., when the
2382 // nested-name-specifier or the expression on the left of the ->
2383 // or . is not dependent on a template-parameter, or the use
2384 // does not appear in the scope of a template. -end note]
2385 //
2386 // Note: C++03 was more strict here, because it banned the use of
2387 // the "template" keyword prior to a template-name that was not a
2388 // dependent name. C++ DR468 relaxed this requirement (the
2389 // "template" keyword is now permitted). We follow the C++0x
Douglas Gregor732281d2010-06-14 22:07:54 +00002390 // rules, even in C++03 mode with a warning, retroactively applying the DR.
Douglas Gregor1fd6d442010-05-21 23:18:07 +00002391 bool MemberOfUnknownSpecialization;
Richard Smithd6537012012-11-15 00:31:27 +00002392 TemplateNameKind TNK = isTemplateName(S, SS, TemplateKWLoc.isValid(), Name,
Abramo Bagnara7c153532010-08-06 12:11:11 +00002393 ObjectType, EnteringContext, Result,
Douglas Gregor1fd6d442010-05-21 23:18:07 +00002394 MemberOfUnknownSpecialization);
Douglas Gregor0707bc52010-01-19 16:01:07 +00002395 if (TNK == TNK_Non_template && LookupCtx->isDependentContext() &&
2396 isa<CXXRecordDecl>(LookupCtx) &&
Douglas Gregord078bd22011-03-11 23:27:41 +00002397 (!cast<CXXRecordDecl>(LookupCtx)->hasDefinition() ||
2398 cast<CXXRecordDecl>(LookupCtx)->hasAnyDependentBases())) {
Douglas Gregord6ab2322010-06-16 23:00:59 +00002399 // This is a dependent template. Handle it below.
Douglas Gregor9edad9b2010-01-14 17:47:39 +00002400 } else if (TNK == TNK_Non_template) {
Daniel Dunbar96a00142012-03-09 18:35:03 +00002401 Diag(Name.getLocStart(),
Douglas Gregor014e88d2009-11-03 23:16:33 +00002402 diag::err_template_kw_refers_to_non_template)
Abramo Bagnara25777432010-08-11 22:01:17 +00002403 << GetNameFromUnqualifiedId(Name).getName()
Douglas Gregor0278e122010-05-05 05:58:24 +00002404 << Name.getSourceRange()
2405 << TemplateKWLoc;
Douglas Gregord6ab2322010-06-16 23:00:59 +00002406 return TNK_Non_template;
Douglas Gregor9edad9b2010-01-14 17:47:39 +00002407 } else {
2408 // We found something; return it.
Douglas Gregord6ab2322010-06-16 23:00:59 +00002409 return TNK;
Douglas Gregorc45c2322009-03-31 00:43:58 +00002410 }
Douglas Gregorc45c2322009-03-31 00:43:58 +00002411 }
2412
Mike Stump1eb44332009-09-09 15:08:12 +00002413 NestedNameSpecifier *Qualifier
Douglas Gregor2dd078a2009-09-02 22:59:36 +00002414 = static_cast<NestedNameSpecifier *>(SS.getScopeRep());
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002415
Douglas Gregor014e88d2009-11-03 23:16:33 +00002416 switch (Name.getKind()) {
2417 case UnqualifiedId::IK_Identifier:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002418 Result = TemplateTy::make(Context.getDependentTemplateName(Qualifier,
Douglas Gregord6ab2322010-06-16 23:00:59 +00002419 Name.Identifier));
2420 return TNK_Dependent_template_name;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002421
Douglas Gregorca1bdd72009-11-04 00:56:37 +00002422 case UnqualifiedId::IK_OperatorFunctionId:
Douglas Gregord6ab2322010-06-16 23:00:59 +00002423 Result = TemplateTy::make(Context.getDependentTemplateName(Qualifier,
Douglas Gregorca1bdd72009-11-04 00:56:37 +00002424 Name.OperatorFunctionId.Operator));
Douglas Gregord6ab2322010-06-16 23:00:59 +00002425 return TNK_Dependent_template_name;
Sean Hunte6252d12009-11-28 08:58:14 +00002426
2427 case UnqualifiedId::IK_LiteralOperatorId:
David Blaikieb219cfc2011-09-23 05:06:16 +00002428 llvm_unreachable(
2429 "We don't support these; Parse shouldn't have allowed propagation");
Sean Hunte6252d12009-11-28 08:58:14 +00002430
Douglas Gregor014e88d2009-11-03 23:16:33 +00002431 default:
2432 break;
2433 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002434
Daniel Dunbar96a00142012-03-09 18:35:03 +00002435 Diag(Name.getLocStart(),
Douglas Gregor014e88d2009-11-03 23:16:33 +00002436 diag::err_template_kw_refers_to_non_template)
Abramo Bagnara25777432010-08-11 22:01:17 +00002437 << GetNameFromUnqualifiedId(Name).getName()
Douglas Gregor0278e122010-05-05 05:58:24 +00002438 << Name.getSourceRange()
2439 << TemplateKWLoc;
Douglas Gregord6ab2322010-06-16 23:00:59 +00002440 return TNK_Non_template;
Douglas Gregorc45c2322009-03-31 00:43:58 +00002441}
2442
Mike Stump1eb44332009-09-09 15:08:12 +00002443bool Sema::CheckTemplateTypeArgument(TemplateTypeParmDecl *Param,
John McCall833ca992009-10-29 08:12:44 +00002444 const TemplateArgumentLoc &AL,
Chris Lattner5f9e2722011-07-23 10:55:15 +00002445 SmallVectorImpl<TemplateArgument> &Converted) {
John McCall833ca992009-10-29 08:12:44 +00002446 const TemplateArgument &Arg = AL.getArgument();
2447
Anders Carlsson436b1562009-06-13 00:33:33 +00002448 // Check template type parameter.
Jeffrey Yasskindb88d8a2010-04-08 00:03:06 +00002449 switch(Arg.getKind()) {
2450 case TemplateArgument::Type:
Anders Carlsson436b1562009-06-13 00:33:33 +00002451 // C++ [temp.arg.type]p1:
2452 // A template-argument for a template-parameter which is a
2453 // type shall be a type-id.
Jeffrey Yasskindb88d8a2010-04-08 00:03:06 +00002454 break;
2455 case TemplateArgument::Template: {
2456 // We have a template type parameter but the template argument
2457 // is a template without any arguments.
2458 SourceRange SR = AL.getSourceRange();
2459 TemplateName Name = Arg.getAsTemplate();
2460 Diag(SR.getBegin(), diag::err_template_missing_args)
2461 << Name << SR;
2462 if (TemplateDecl *Decl = Name.getAsTemplateDecl())
2463 Diag(Decl->getLocation(), diag::note_template_decl_here);
Anders Carlsson436b1562009-06-13 00:33:33 +00002464
Jeffrey Yasskindb88d8a2010-04-08 00:03:06 +00002465 return true;
2466 }
Kaelyn Uhrainab7ad722012-05-18 23:42:49 +00002467 case TemplateArgument::Expression: {
2468 // We have a template type parameter but the template argument is an
2469 // expression; see if maybe it is missing the "typename" keyword.
2470 CXXScopeSpec SS;
2471 DeclarationNameInfo NameInfo;
2472
2473 if (DeclRefExpr *ArgExpr = dyn_cast<DeclRefExpr>(Arg.getAsExpr())) {
2474 SS.Adopt(ArgExpr->getQualifierLoc());
2475 NameInfo = ArgExpr->getNameInfo();
2476 } else if (DependentScopeDeclRefExpr *ArgExpr =
2477 dyn_cast<DependentScopeDeclRefExpr>(Arg.getAsExpr())) {
2478 SS.Adopt(ArgExpr->getQualifierLoc());
2479 NameInfo = ArgExpr->getNameInfo();
2480 } else if (CXXDependentScopeMemberExpr *ArgExpr =
2481 dyn_cast<CXXDependentScopeMemberExpr>(Arg.getAsExpr())) {
Kaelyn Uhrain8c14de82012-06-08 01:07:26 +00002482 if (ArgExpr->isImplicitAccess()) {
2483 SS.Adopt(ArgExpr->getQualifierLoc());
2484 NameInfo = ArgExpr->getMemberNameInfo();
2485 }
Kaelyn Uhrainab7ad722012-05-18 23:42:49 +00002486 }
2487
Kaelyn Uhrain8c14de82012-06-08 01:07:26 +00002488 if (NameInfo.getName().isIdentifier()) {
Kaelyn Uhrainab7ad722012-05-18 23:42:49 +00002489 LookupResult Result(*this, NameInfo, LookupOrdinaryName);
2490 LookupParsedName(Result, CurScope, &SS);
2491
Kaelyn Uhrain8c14de82012-06-08 01:07:26 +00002492 if (Result.getAsSingle<TypeDecl>() ||
2493 Result.getResultKind() ==
2494 LookupResult::NotFoundInCurrentInstantiation) {
2495 // FIXME: Add a FixIt and fix up the template argument for recovery.
Kaelyn Uhrainab7ad722012-05-18 23:42:49 +00002496 SourceLocation Loc = AL.getSourceRange().getBegin();
2497 Diag(Loc, diag::err_template_arg_must_be_type_suggest);
2498 Diag(Param->getLocation(), diag::note_template_param_here);
2499 return true;
2500 }
2501 }
2502 // fallthrough
2503 }
Jeffrey Yasskindb88d8a2010-04-08 00:03:06 +00002504 default: {
Anders Carlsson436b1562009-06-13 00:33:33 +00002505 // We have a template type parameter but the template argument
2506 // is not a type.
John McCall828bff22009-10-29 18:45:58 +00002507 SourceRange SR = AL.getSourceRange();
2508 Diag(SR.getBegin(), diag::err_template_arg_must_be_type) << SR;
Anders Carlsson436b1562009-06-13 00:33:33 +00002509 Diag(Param->getLocation(), diag::note_template_param_here);
Mike Stump1eb44332009-09-09 15:08:12 +00002510
Anders Carlsson436b1562009-06-13 00:33:33 +00002511 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00002512 }
Jeffrey Yasskindb88d8a2010-04-08 00:03:06 +00002513 }
Anders Carlsson436b1562009-06-13 00:33:33 +00002514
John McCalla93c9342009-12-07 02:54:59 +00002515 if (CheckTemplateArgument(Param, AL.getTypeSourceInfo()))
Anders Carlsson436b1562009-06-13 00:33:33 +00002516 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00002517
Anders Carlsson436b1562009-06-13 00:33:33 +00002518 // Add the converted template type argument.
Douglas Gregore559ca12011-06-17 22:11:49 +00002519 QualType ArgType = Context.getCanonicalType(Arg.getAsType());
2520
2521 // Objective-C ARC:
2522 // If an explicitly-specified template argument type is a lifetime type
2523 // with no lifetime qualifier, the __strong lifetime qualifier is inferred.
David Blaikie4e4d0842012-03-11 07:00:24 +00002524 if (getLangOpts().ObjCAutoRefCount &&
Douglas Gregore559ca12011-06-17 22:11:49 +00002525 ArgType->isObjCLifetimeType() &&
2526 !ArgType.getObjCLifetime()) {
2527 Qualifiers Qs;
2528 Qs.setObjCLifetime(Qualifiers::OCL_Strong);
2529 ArgType = Context.getQualifiedType(ArgType, Qs);
2530 }
2531
2532 Converted.push_back(TemplateArgument(ArgType));
Anders Carlsson436b1562009-06-13 00:33:33 +00002533 return false;
2534}
2535
Douglas Gregor0f8716b2009-11-09 19:17:50 +00002536/// \brief Substitute template arguments into the default template argument for
2537/// the given template type parameter.
2538///
2539/// \param SemaRef the semantic analysis object for which we are performing
2540/// the substitution.
2541///
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002542/// \param Template the template that we are synthesizing template arguments
Douglas Gregor0f8716b2009-11-09 19:17:50 +00002543/// for.
2544///
2545/// \param TemplateLoc the location of the template name that started the
2546/// template-id we are checking.
2547///
2548/// \param RAngleLoc the location of the right angle bracket ('>') that
2549/// terminates the template-id.
2550///
2551/// \param Param the template template parameter whose default we are
2552/// substituting into.
2553///
2554/// \param Converted the list of template arguments provided for template
2555/// parameters that precede \p Param in the template parameter list.
Douglas Gregor0f8716b2009-11-09 19:17:50 +00002556/// \returns the substituted template argument, or NULL if an error occurred.
John McCalla93c9342009-12-07 02:54:59 +00002557static TypeSourceInfo *
Douglas Gregor0f8716b2009-11-09 19:17:50 +00002558SubstDefaultTemplateArgument(Sema &SemaRef,
2559 TemplateDecl *Template,
2560 SourceLocation TemplateLoc,
2561 SourceLocation RAngleLoc,
2562 TemplateTypeParmDecl *Param,
Chris Lattner5f9e2722011-07-23 10:55:15 +00002563 SmallVectorImpl<TemplateArgument> &Converted) {
John McCalla93c9342009-12-07 02:54:59 +00002564 TypeSourceInfo *ArgType = Param->getDefaultArgumentInfo();
Douglas Gregor0f8716b2009-11-09 19:17:50 +00002565
2566 // If the argument type is dependent, instantiate it now based
2567 // on the previously-computed template arguments.
2568 if (ArgType->getType()->isDependentType()) {
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002569 TemplateArgumentList TemplateArgs(TemplateArgumentList::OnStack,
Douglas Gregor910f8002010-11-07 23:05:16 +00002570 Converted.data(), Converted.size());
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002571
Douglas Gregor0f8716b2009-11-09 19:17:50 +00002572 MultiLevelTemplateArgumentList AllTemplateArgs
2573 = SemaRef.getTemplateInstantiationArgs(Template, &TemplateArgs);
2574
2575 Sema::InstantiatingTemplate Inst(SemaRef, TemplateLoc,
Richard Smith7e54fb52012-07-16 01:09:10 +00002576 Template, Converted,
Douglas Gregor0f8716b2009-11-09 19:17:50 +00002577 SourceRange(TemplateLoc, RAngleLoc));
Richard Smithab91ef12012-07-08 02:38:24 +00002578 if (Inst)
2579 return 0;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002580
Argyrios Kyrtzidisad579912012-04-25 18:39:17 +00002581 Sema::ContextRAII SavedContext(SemaRef, Template->getDeclContext());
Douglas Gregor0f8716b2009-11-09 19:17:50 +00002582 ArgType = SemaRef.SubstType(ArgType, AllTemplateArgs,
2583 Param->getDefaultArgumentLoc(),
2584 Param->getDeclName());
2585 }
2586
2587 return ArgType;
2588}
2589
2590/// \brief Substitute template arguments into the default template argument for
2591/// the given non-type template parameter.
2592///
2593/// \param SemaRef the semantic analysis object for which we are performing
2594/// the substitution.
2595///
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002596/// \param Template the template that we are synthesizing template arguments
Douglas Gregor0f8716b2009-11-09 19:17:50 +00002597/// for.
2598///
2599/// \param TemplateLoc the location of the template name that started the
2600/// template-id we are checking.
2601///
2602/// \param RAngleLoc the location of the right angle bracket ('>') that
2603/// terminates the template-id.
2604///
Douglas Gregor788cd062009-11-11 01:00:40 +00002605/// \param Param the non-type template parameter whose default we are
Douglas Gregor0f8716b2009-11-09 19:17:50 +00002606/// substituting into.
2607///
2608/// \param Converted the list of template arguments provided for template
2609/// parameters that precede \p Param in the template parameter list.
2610///
2611/// \returns the substituted template argument, or NULL if an error occurred.
John McCall60d7b3a2010-08-24 06:29:42 +00002612static ExprResult
Douglas Gregor0f8716b2009-11-09 19:17:50 +00002613SubstDefaultTemplateArgument(Sema &SemaRef,
2614 TemplateDecl *Template,
2615 SourceLocation TemplateLoc,
2616 SourceLocation RAngleLoc,
2617 NonTypeTemplateParmDecl *Param,
Chris Lattner5f9e2722011-07-23 10:55:15 +00002618 SmallVectorImpl<TemplateArgument> &Converted) {
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002619 TemplateArgumentList TemplateArgs(TemplateArgumentList::OnStack,
Douglas Gregor910f8002010-11-07 23:05:16 +00002620 Converted.data(), Converted.size());
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002621
Douglas Gregor0f8716b2009-11-09 19:17:50 +00002622 MultiLevelTemplateArgumentList AllTemplateArgs
2623 = SemaRef.getTemplateInstantiationArgs(Template, &TemplateArgs);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002624
Douglas Gregor0f8716b2009-11-09 19:17:50 +00002625 Sema::InstantiatingTemplate Inst(SemaRef, TemplateLoc,
Richard Smith7e54fb52012-07-16 01:09:10 +00002626 Template, Converted,
Douglas Gregor0f8716b2009-11-09 19:17:50 +00002627 SourceRange(TemplateLoc, RAngleLoc));
Richard Smithab91ef12012-07-08 02:38:24 +00002628 if (Inst)
2629 return ExprError();
Douglas Gregor0f8716b2009-11-09 19:17:50 +00002630
Argyrios Kyrtzidisad579912012-04-25 18:39:17 +00002631 Sema::ContextRAII SavedContext(SemaRef, Template->getDeclContext());
Eli Friedman9b94cd12012-04-26 22:43:24 +00002632 EnterExpressionEvaluationContext Unevaluated(SemaRef, Sema::Unevaluated);
Douglas Gregor0f8716b2009-11-09 19:17:50 +00002633 return SemaRef.SubstExpr(Param->getDefaultArgument(), AllTemplateArgs);
2634}
2635
Douglas Gregor788cd062009-11-11 01:00:40 +00002636/// \brief Substitute template arguments into the default template argument for
2637/// the given template template parameter.
2638///
2639/// \param SemaRef the semantic analysis object for which we are performing
2640/// the substitution.
2641///
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002642/// \param Template the template that we are synthesizing template arguments
Douglas Gregor788cd062009-11-11 01:00:40 +00002643/// for.
2644///
2645/// \param TemplateLoc the location of the template name that started the
2646/// template-id we are checking.
2647///
2648/// \param RAngleLoc the location of the right angle bracket ('>') that
2649/// terminates the template-id.
2650///
2651/// \param Param the template template parameter whose default we are
2652/// substituting into.
2653///
2654/// \param Converted the list of template arguments provided for template
2655/// parameters that precede \p Param in the template parameter list.
2656///
Douglas Gregor1d752d72011-03-02 18:46:51 +00002657/// \param QualifierLoc Will be set to the nested-name-specifier (with
2658/// source-location information) that precedes the template name.
Douglas Gregorb6744ef2011-03-02 17:09:35 +00002659///
Douglas Gregor788cd062009-11-11 01:00:40 +00002660/// \returns the substituted template argument, or NULL if an error occurred.
2661static TemplateName
2662SubstDefaultTemplateArgument(Sema &SemaRef,
2663 TemplateDecl *Template,
2664 SourceLocation TemplateLoc,
2665 SourceLocation RAngleLoc,
2666 TemplateTemplateParmDecl *Param,
Chris Lattner5f9e2722011-07-23 10:55:15 +00002667 SmallVectorImpl<TemplateArgument> &Converted,
Douglas Gregorb6744ef2011-03-02 17:09:35 +00002668 NestedNameSpecifierLoc &QualifierLoc) {
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002669 TemplateArgumentList TemplateArgs(TemplateArgumentList::OnStack,
Douglas Gregor910f8002010-11-07 23:05:16 +00002670 Converted.data(), Converted.size());
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002671
Douglas Gregor788cd062009-11-11 01:00:40 +00002672 MultiLevelTemplateArgumentList AllTemplateArgs
2673 = SemaRef.getTemplateInstantiationArgs(Template, &TemplateArgs);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002674
Douglas Gregor788cd062009-11-11 01:00:40 +00002675 Sema::InstantiatingTemplate Inst(SemaRef, TemplateLoc,
Richard Smith7e54fb52012-07-16 01:09:10 +00002676 Template, Converted,
Douglas Gregor788cd062009-11-11 01:00:40 +00002677 SourceRange(TemplateLoc, RAngleLoc));
Richard Smithab91ef12012-07-08 02:38:24 +00002678 if (Inst)
2679 return TemplateName();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002680
Argyrios Kyrtzidisad579912012-04-25 18:39:17 +00002681 Sema::ContextRAII SavedContext(SemaRef, Template->getDeclContext());
Douglas Gregorb6744ef2011-03-02 17:09:35 +00002682 // Substitute into the nested-name-specifier first,
Douglas Gregor1d752d72011-03-02 18:46:51 +00002683 QualifierLoc = Param->getDefaultArgument().getTemplateQualifierLoc();
Douglas Gregorb6744ef2011-03-02 17:09:35 +00002684 if (QualifierLoc) {
2685 QualifierLoc = SemaRef.SubstNestedNameSpecifierLoc(QualifierLoc,
2686 AllTemplateArgs);
2687 if (!QualifierLoc)
2688 return TemplateName();
2689 }
2690
Douglas Gregor1d752d72011-03-02 18:46:51 +00002691 return SemaRef.SubstTemplateName(QualifierLoc,
Douglas Gregor788cd062009-11-11 01:00:40 +00002692 Param->getDefaultArgument().getArgument().getAsTemplate(),
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002693 Param->getDefaultArgument().getTemplateNameLoc(),
Douglas Gregor788cd062009-11-11 01:00:40 +00002694 AllTemplateArgs);
2695}
2696
Douglas Gregor51ffb0c2009-11-25 18:55:14 +00002697/// \brief If the given template parameter has a default template
2698/// argument, substitute into that default template argument and
2699/// return the corresponding template argument.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002700TemplateArgumentLoc
Douglas Gregor51ffb0c2009-11-25 18:55:14 +00002701Sema::SubstDefaultTemplateArgumentIfAvailable(TemplateDecl *Template,
2702 SourceLocation TemplateLoc,
2703 SourceLocation RAngleLoc,
2704 Decl *Param,
Richard Smith305e5b42013-07-04 01:01:24 +00002705 SmallVectorImpl<TemplateArgument>
2706 &Converted,
2707 bool &HasDefaultArg) {
2708 HasDefaultArg = false;
2709
2710 if (TemplateTypeParmDecl *TypeParm = dyn_cast<TemplateTypeParmDecl>(Param)) {
Douglas Gregor51ffb0c2009-11-25 18:55:14 +00002711 if (!TypeParm->hasDefaultArgument())
2712 return TemplateArgumentLoc();
2713
Richard Smith305e5b42013-07-04 01:01:24 +00002714 HasDefaultArg = true;
John McCalla93c9342009-12-07 02:54:59 +00002715 TypeSourceInfo *DI = SubstDefaultTemplateArgument(*this, Template,
Douglas Gregor51ffb0c2009-11-25 18:55:14 +00002716 TemplateLoc,
2717 RAngleLoc,
2718 TypeParm,
2719 Converted);
2720 if (DI)
2721 return TemplateArgumentLoc(TemplateArgument(DI->getType()), DI);
2722
2723 return TemplateArgumentLoc();
2724 }
2725
2726 if (NonTypeTemplateParmDecl *NonTypeParm
2727 = dyn_cast<NonTypeTemplateParmDecl>(Param)) {
2728 if (!NonTypeParm->hasDefaultArgument())
2729 return TemplateArgumentLoc();
2730
Richard Smith305e5b42013-07-04 01:01:24 +00002731 HasDefaultArg = true;
John McCall60d7b3a2010-08-24 06:29:42 +00002732 ExprResult Arg = SubstDefaultTemplateArgument(*this, Template,
Douglas Gregorb6744ef2011-03-02 17:09:35 +00002733 TemplateLoc,
2734 RAngleLoc,
2735 NonTypeParm,
2736 Converted);
Douglas Gregor51ffb0c2009-11-25 18:55:14 +00002737 if (Arg.isInvalid())
2738 return TemplateArgumentLoc();
2739
2740 Expr *ArgE = Arg.takeAs<Expr>();
2741 return TemplateArgumentLoc(TemplateArgument(ArgE), ArgE);
2742 }
2743
2744 TemplateTemplateParmDecl *TempTempParm
2745 = cast<TemplateTemplateParmDecl>(Param);
2746 if (!TempTempParm->hasDefaultArgument())
2747 return TemplateArgumentLoc();
2748
Richard Smith305e5b42013-07-04 01:01:24 +00002749 HasDefaultArg = true;
Douglas Gregor1d752d72011-03-02 18:46:51 +00002750 NestedNameSpecifierLoc QualifierLoc;
Douglas Gregor51ffb0c2009-11-25 18:55:14 +00002751 TemplateName TName = SubstDefaultTemplateArgument(*this, Template,
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002752 TemplateLoc,
Douglas Gregor51ffb0c2009-11-25 18:55:14 +00002753 RAngleLoc,
2754 TempTempParm,
Douglas Gregorb6744ef2011-03-02 17:09:35 +00002755 Converted,
2756 QualifierLoc);
Douglas Gregor51ffb0c2009-11-25 18:55:14 +00002757 if (TName.isNull())
2758 return TemplateArgumentLoc();
2759
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002760 return TemplateArgumentLoc(TemplateArgument(TName),
Douglas Gregorb6744ef2011-03-02 17:09:35 +00002761 TempTempParm->getDefaultArgument().getTemplateQualifierLoc(),
Douglas Gregor51ffb0c2009-11-25 18:55:14 +00002762 TempTempParm->getDefaultArgument().getTemplateNameLoc());
2763}
2764
Douglas Gregore7526412009-11-11 19:31:23 +00002765/// \brief Check that the given template argument corresponds to the given
2766/// template parameter.
Douglas Gregor6952f1e2011-01-19 20:10:05 +00002767///
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002768/// \param Param The template parameter against which the argument will be
Douglas Gregor6952f1e2011-01-19 20:10:05 +00002769/// checked.
2770///
2771/// \param Arg The template argument.
2772///
2773/// \param Template The template in which the template argument resides.
2774///
2775/// \param TemplateLoc The location of the template name for the template
2776/// whose argument list we're matching.
2777///
2778/// \param RAngleLoc The location of the right angle bracket ('>') that closes
2779/// the template argument list.
2780///
2781/// \param ArgumentPackIndex The index into the argument pack where this
2782/// argument will be placed. Only valid if the parameter is a parameter pack.
2783///
2784/// \param Converted The checked, converted argument will be added to the
2785/// end of this small vector.
2786///
2787/// \param CTAK Describes how we arrived at this particular template argument:
2788/// explicitly written, deduced, etc.
2789///
2790/// \returns true on error, false otherwise.
Douglas Gregore7526412009-11-11 19:31:23 +00002791bool Sema::CheckTemplateArgument(NamedDecl *Param,
2792 const TemplateArgumentLoc &Arg,
Douglas Gregor54c53cc2011-01-04 23:35:54 +00002793 NamedDecl *Template,
Douglas Gregore7526412009-11-11 19:31:23 +00002794 SourceLocation TemplateLoc,
Douglas Gregore7526412009-11-11 19:31:23 +00002795 SourceLocation RAngleLoc,
Douglas Gregor6952f1e2011-01-19 20:10:05 +00002796 unsigned ArgumentPackIndex,
Chris Lattner5f9e2722011-07-23 10:55:15 +00002797 SmallVectorImpl<TemplateArgument> &Converted,
Douglas Gregor02024a92010-03-28 02:42:43 +00002798 CheckTemplateArgumentKind CTAK) {
Douglas Gregord9e15302009-11-11 19:41:09 +00002799 // Check template type parameters.
2800 if (TemplateTypeParmDecl *TTP = dyn_cast<TemplateTypeParmDecl>(Param))
Douglas Gregore7526412009-11-11 19:31:23 +00002801 return CheckTemplateTypeArgument(TTP, Arg, Converted);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002802
Douglas Gregord9e15302009-11-11 19:41:09 +00002803 // Check non-type template parameters.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002804 if (NonTypeTemplateParmDecl *NTTP =dyn_cast<NonTypeTemplateParmDecl>(Param)) {
Douglas Gregore7526412009-11-11 19:31:23 +00002805 // Do substitution on the type of the non-type template parameter
Peter Collingbourne9f6f6a12010-12-10 17:08:53 +00002806 // with the template arguments we've seen thus far. But if the
2807 // template has a dependent context then we cannot substitute yet.
Douglas Gregore7526412009-11-11 19:31:23 +00002808 QualType NTTPType = NTTP->getType();
Douglas Gregor6952f1e2011-01-19 20:10:05 +00002809 if (NTTP->isParameterPack() && NTTP->isExpandedParameterPack())
2810 NTTPType = NTTP->getExpansionType(ArgumentPackIndex);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002811
Peter Collingbourne9f6f6a12010-12-10 17:08:53 +00002812 if (NTTPType->isDependentType() &&
2813 !isa<TemplateTemplateParmDecl>(Template) &&
2814 !Template->getDeclContext()->isDependentContext()) {
Douglas Gregore7526412009-11-11 19:31:23 +00002815 // Do substitution on the type of the non-type template parameter.
2816 InstantiatingTemplate Inst(*this, TemplateLoc, Template,
Richard Smith7e54fb52012-07-16 01:09:10 +00002817 NTTP, Converted,
Douglas Gregore7526412009-11-11 19:31:23 +00002818 SourceRange(TemplateLoc, RAngleLoc));
Richard Smithab91ef12012-07-08 02:38:24 +00002819 if (Inst)
2820 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002821
2822 TemplateArgumentList TemplateArgs(TemplateArgumentList::OnStack,
Douglas Gregor910f8002010-11-07 23:05:16 +00002823 Converted.data(), Converted.size());
Douglas Gregore7526412009-11-11 19:31:23 +00002824 NTTPType = SubstType(NTTPType,
2825 MultiLevelTemplateArgumentList(TemplateArgs),
2826 NTTP->getLocation(),
2827 NTTP->getDeclName());
2828 // If that worked, check the non-type template parameter type
2829 // for validity.
2830 if (!NTTPType.isNull())
2831 NTTPType = CheckNonTypeTemplateParameterType(NTTPType,
2832 NTTP->getLocation());
2833 if (NTTPType.isNull())
2834 return true;
2835 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002836
Douglas Gregore7526412009-11-11 19:31:23 +00002837 switch (Arg.getArgument().getKind()) {
2838 case TemplateArgument::Null:
David Blaikieb219cfc2011-09-23 05:06:16 +00002839 llvm_unreachable("Should never see a NULL template argument here");
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002840
Douglas Gregore7526412009-11-11 19:31:23 +00002841 case TemplateArgument::Expression: {
Douglas Gregore7526412009-11-11 19:31:23 +00002842 TemplateArgument Result;
John Wiegley429bb272011-04-08 18:41:53 +00002843 ExprResult Res =
2844 CheckTemplateArgument(NTTP, NTTPType, Arg.getArgument().getAsExpr(),
2845 Result, CTAK);
2846 if (Res.isInvalid())
Douglas Gregore7526412009-11-11 19:31:23 +00002847 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002848
Douglas Gregor910f8002010-11-07 23:05:16 +00002849 Converted.push_back(Result);
Douglas Gregore7526412009-11-11 19:31:23 +00002850 break;
2851 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002852
Douglas Gregore7526412009-11-11 19:31:23 +00002853 case TemplateArgument::Declaration:
2854 case TemplateArgument::Integral:
Eli Friedmand7a6b162012-09-26 02:36:12 +00002855 case TemplateArgument::NullPtr:
Douglas Gregore7526412009-11-11 19:31:23 +00002856 // We've already checked this template argument, so just copy
2857 // it to the list of converted arguments.
Douglas Gregor910f8002010-11-07 23:05:16 +00002858 Converted.push_back(Arg.getArgument());
Douglas Gregore7526412009-11-11 19:31:23 +00002859 break;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002860
Douglas Gregore7526412009-11-11 19:31:23 +00002861 case TemplateArgument::Template:
Douglas Gregora7fc9012011-01-05 18:58:31 +00002862 case TemplateArgument::TemplateExpansion:
Douglas Gregore7526412009-11-11 19:31:23 +00002863 // We were given a template template argument. It may not be ill-formed;
2864 // see below.
2865 if (DependentTemplateName *DTN
Douglas Gregora7fc9012011-01-05 18:58:31 +00002866 = Arg.getArgument().getAsTemplateOrTemplatePattern()
2867 .getAsDependentTemplateName()) {
Douglas Gregore7526412009-11-11 19:31:23 +00002868 // We have a template argument such as \c T::template X, which we
2869 // parsed as a template template argument. However, since we now
2870 // know that we need a non-type template argument, convert this
Abramo Bagnara25777432010-08-11 22:01:17 +00002871 // template name into an expression.
2872
2873 DeclarationNameInfo NameInfo(DTN->getIdentifier(),
2874 Arg.getTemplateNameLoc());
2875
Douglas Gregor00cf3cc2011-02-25 20:49:16 +00002876 CXXScopeSpec SS;
Douglas Gregorb6744ef2011-03-02 17:09:35 +00002877 SS.Adopt(Arg.getTemplateQualifierLoc());
Abramo Bagnarae4b92762012-01-27 09:46:47 +00002878 // FIXME: the template-template arg was a DependentTemplateName,
2879 // so it was provided with a template keyword. However, its source
2880 // location is not stored in the template argument structure.
2881 SourceLocation TemplateKWLoc;
John Wiegley429bb272011-04-08 18:41:53 +00002882 ExprResult E = Owned(DependentScopeDeclRefExpr::Create(Context,
Douglas Gregor00cf3cc2011-02-25 20:49:16 +00002883 SS.getWithLocInContext(Context),
Abramo Bagnarae4b92762012-01-27 09:46:47 +00002884 TemplateKWLoc,
2885 NameInfo, 0));
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002886
Douglas Gregora7fc9012011-01-05 18:58:31 +00002887 // If we parsed the template argument as a pack expansion, create a
2888 // pack expansion expression.
2889 if (Arg.getArgument().getKind() == TemplateArgument::TemplateExpansion){
John Wiegley429bb272011-04-08 18:41:53 +00002890 E = ActOnPackExpansion(E.take(), Arg.getTemplateEllipsisLoc());
2891 if (E.isInvalid())
Douglas Gregora7fc9012011-01-05 18:58:31 +00002892 return true;
Douglas Gregora7fc9012011-01-05 18:58:31 +00002893 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002894
Douglas Gregore7526412009-11-11 19:31:23 +00002895 TemplateArgument Result;
John Wiegley429bb272011-04-08 18:41:53 +00002896 E = CheckTemplateArgument(NTTP, NTTPType, E.take(), Result);
2897 if (E.isInvalid())
Douglas Gregore7526412009-11-11 19:31:23 +00002898 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002899
Douglas Gregor910f8002010-11-07 23:05:16 +00002900 Converted.push_back(Result);
Douglas Gregore7526412009-11-11 19:31:23 +00002901 break;
2902 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002903
Douglas Gregore7526412009-11-11 19:31:23 +00002904 // We have a template argument that actually does refer to a class
Richard Smith3e4c6c42011-05-05 21:57:07 +00002905 // template, alias template, or template template parameter, and
Douglas Gregore7526412009-11-11 19:31:23 +00002906 // therefore cannot be a non-type template argument.
2907 Diag(Arg.getLocation(), diag::err_template_arg_must_be_expr)
2908 << Arg.getSourceRange();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002909
Douglas Gregore7526412009-11-11 19:31:23 +00002910 Diag(Param->getLocation(), diag::note_template_param_here);
2911 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002912
Douglas Gregore7526412009-11-11 19:31:23 +00002913 case TemplateArgument::Type: {
2914 // We have a non-type template parameter but the template
2915 // argument is a type.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002916
Douglas Gregore7526412009-11-11 19:31:23 +00002917 // C++ [temp.arg]p2:
2918 // In a template-argument, an ambiguity between a type-id and
2919 // an expression is resolved to a type-id, regardless of the
2920 // form of the corresponding template-parameter.
2921 //
2922 // We warn specifically about this case, since it can be rather
2923 // confusing for users.
2924 QualType T = Arg.getArgument().getAsType();
2925 SourceRange SR = Arg.getSourceRange();
2926 if (T->isFunctionType())
2927 Diag(SR.getBegin(), diag::err_template_arg_nontype_ambig) << SR << T;
2928 else
2929 Diag(SR.getBegin(), diag::err_template_arg_must_be_expr) << SR;
2930 Diag(Param->getLocation(), diag::note_template_param_here);
2931 return true;
2932 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002933
Douglas Gregore7526412009-11-11 19:31:23 +00002934 case TemplateArgument::Pack:
Jeffrey Yasskin9f61aa92009-12-12 05:05:38 +00002935 llvm_unreachable("Caller must expand template argument packs");
Douglas Gregore7526412009-11-11 19:31:23 +00002936 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002937
Douglas Gregore7526412009-11-11 19:31:23 +00002938 return false;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002939 }
2940
2941
Douglas Gregore7526412009-11-11 19:31:23 +00002942 // Check template template parameters.
2943 TemplateTemplateParmDecl *TempParm = cast<TemplateTemplateParmDecl>(Param);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002944
Douglas Gregore7526412009-11-11 19:31:23 +00002945 // Substitute into the template parameter list of the template
2946 // template parameter, since previously-supplied template arguments
2947 // may appear within the template template parameter.
2948 {
2949 // Set up a template instantiation context.
2950 LocalInstantiationScope Scope(*this);
2951 InstantiatingTemplate Inst(*this, TemplateLoc, Template,
Richard Smith7e54fb52012-07-16 01:09:10 +00002952 TempParm, Converted,
Douglas Gregore7526412009-11-11 19:31:23 +00002953 SourceRange(TemplateLoc, RAngleLoc));
Richard Smithab91ef12012-07-08 02:38:24 +00002954 if (Inst)
2955 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002956
2957 TemplateArgumentList TemplateArgs(TemplateArgumentList::OnStack,
Douglas Gregor910f8002010-11-07 23:05:16 +00002958 Converted.data(), Converted.size());
Douglas Gregore7526412009-11-11 19:31:23 +00002959 TempParm = cast_or_null<TemplateTemplateParmDecl>(
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002960 SubstDecl(TempParm, CurContext,
Douglas Gregore7526412009-11-11 19:31:23 +00002961 MultiLevelTemplateArgumentList(TemplateArgs)));
2962 if (!TempParm)
2963 return true;
Douglas Gregore7526412009-11-11 19:31:23 +00002964 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002965
Douglas Gregore7526412009-11-11 19:31:23 +00002966 switch (Arg.getArgument().getKind()) {
2967 case TemplateArgument::Null:
David Blaikieb219cfc2011-09-23 05:06:16 +00002968 llvm_unreachable("Should never see a NULL template argument here");
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002969
Douglas Gregore7526412009-11-11 19:31:23 +00002970 case TemplateArgument::Template:
Douglas Gregora7fc9012011-01-05 18:58:31 +00002971 case TemplateArgument::TemplateExpansion:
Richard Smith6964b3f2012-09-07 02:06:42 +00002972 if (CheckTemplateArgument(TempParm, Arg, ArgumentPackIndex))
Douglas Gregore7526412009-11-11 19:31:23 +00002973 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002974
Douglas Gregor910f8002010-11-07 23:05:16 +00002975 Converted.push_back(Arg.getArgument());
Douglas Gregore7526412009-11-11 19:31:23 +00002976 break;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002977
Douglas Gregore7526412009-11-11 19:31:23 +00002978 case TemplateArgument::Expression:
2979 case TemplateArgument::Type:
2980 // We have a template template parameter but the template
2981 // argument does not refer to a template.
Richard Smith3e4c6c42011-05-05 21:57:07 +00002982 Diag(Arg.getLocation(), diag::err_template_arg_must_be_template)
Richard Smith80ad52f2013-01-02 11:42:31 +00002983 << getLangOpts().CPlusPlus11;
Douglas Gregore7526412009-11-11 19:31:23 +00002984 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002985
Douglas Gregore7526412009-11-11 19:31:23 +00002986 case TemplateArgument::Declaration:
David Blaikie7530c032012-01-17 06:56:22 +00002987 llvm_unreachable("Declaration argument with template template parameter");
Douglas Gregore7526412009-11-11 19:31:23 +00002988 case TemplateArgument::Integral:
David Blaikie7530c032012-01-17 06:56:22 +00002989 llvm_unreachable("Integral argument with template template parameter");
Eli Friedmand7a6b162012-09-26 02:36:12 +00002990 case TemplateArgument::NullPtr:
2991 llvm_unreachable("Null pointer argument with template template parameter");
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002992
Douglas Gregore7526412009-11-11 19:31:23 +00002993 case TemplateArgument::Pack:
Jeffrey Yasskin9f61aa92009-12-12 05:05:38 +00002994 llvm_unreachable("Caller must expand template argument packs");
Douglas Gregore7526412009-11-11 19:31:23 +00002995 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002996
Douglas Gregore7526412009-11-11 19:31:23 +00002997 return false;
2998}
2999
Douglas Gregor8fbbae52012-02-03 07:34:46 +00003000/// \brief Diagnose an arity mismatch in the
3001static bool diagnoseArityMismatch(Sema &S, TemplateDecl *Template,
3002 SourceLocation TemplateLoc,
3003 TemplateArgumentListInfo &TemplateArgs) {
3004 TemplateParameterList *Params = Template->getTemplateParameters();
3005 unsigned NumParams = Params->size();
3006 unsigned NumArgs = TemplateArgs.size();
3007
3008 SourceRange Range;
3009 if (NumArgs > NumParams)
3010 Range = SourceRange(TemplateArgs[NumParams].getLocation(),
3011 TemplateArgs.getRAngleLoc());
3012 S.Diag(TemplateLoc, diag::err_template_arg_list_different_arity)
3013 << (NumArgs > NumParams)
3014 << (isa<ClassTemplateDecl>(Template)? 0 :
3015 isa<FunctionTemplateDecl>(Template)? 1 :
3016 isa<TemplateTemplateParmDecl>(Template)? 2 : 3)
3017 << Template << Range;
3018 S.Diag(Template->getLocation(), diag::note_template_decl_here)
3019 << Params->getSourceRange();
3020 return true;
3021}
3022
Richard Smith6964b3f2012-09-07 02:06:42 +00003023/// \brief Check whether the template parameter is a pack expansion, and if so,
3024/// determine the number of parameters produced by that expansion. For instance:
3025///
3026/// \code
3027/// template<typename ...Ts> struct A {
3028/// template<Ts ...NTs, template<Ts> class ...TTs, typename ...Us> struct B;
3029/// };
3030/// \endcode
3031///
3032/// In \c A<int,int>::B, \c NTs and \c TTs have expanded pack size 2, and \c Us
3033/// is not a pack expansion, so returns an empty Optional.
David Blaikiedc84cd52013-02-20 22:23:23 +00003034static Optional<unsigned> getExpandedPackSize(NamedDecl *Param) {
Richard Smith6964b3f2012-09-07 02:06:42 +00003035 if (NonTypeTemplateParmDecl *NTTP
3036 = dyn_cast<NonTypeTemplateParmDecl>(Param)) {
3037 if (NTTP->isExpandedParameterPack())
3038 return NTTP->getNumExpansionTypes();
3039 }
3040
3041 if (TemplateTemplateParmDecl *TTP
3042 = dyn_cast<TemplateTemplateParmDecl>(Param)) {
3043 if (TTP->isExpandedParameterPack())
3044 return TTP->getNumExpansionTemplateParameters();
3045 }
3046
David Blaikie66874fb2013-02-21 01:47:18 +00003047 return None;
Richard Smith6964b3f2012-09-07 02:06:42 +00003048}
3049
Douglas Gregorc15cb382009-02-09 23:23:08 +00003050/// \brief Check that the given template argument list is well-formed
3051/// for specializing the given template.
3052bool Sema::CheckTemplateArgumentList(TemplateDecl *Template,
3053 SourceLocation TemplateLoc,
Douglas Gregor67714232011-03-03 02:41:12 +00003054 TemplateArgumentListInfo &TemplateArgs,
Douglas Gregor16134c62009-07-01 00:28:38 +00003055 bool PartialTemplateArgs,
Douglas Gregorb70126a2012-02-03 17:16:23 +00003056 SmallVectorImpl<TemplateArgument> &Converted,
3057 bool *ExpansionIntoFixedList) {
3058 if (ExpansionIntoFixedList)
3059 *ExpansionIntoFixedList = false;
3060
Douglas Gregorc15cb382009-02-09 23:23:08 +00003061 TemplateParameterList *Params = Template->getTemplateParameters();
Douglas Gregorc15cb382009-02-09 23:23:08 +00003062
John McCalld5532b62009-11-23 01:53:49 +00003063 SourceLocation RAngleLoc = TemplateArgs.getRAngleLoc();
3064
Mike Stump1eb44332009-09-09 15:08:12 +00003065 // C++ [temp.arg]p1:
Douglas Gregorc15cb382009-02-09 23:23:08 +00003066 // [...] The type and form of each template-argument specified in
3067 // a template-id shall match the type and form specified for the
3068 // corresponding parameter declared by the template in its
3069 // template-parameter-list.
Douglas Gregor67714232011-03-03 02:41:12 +00003070 bool isTemplateTemplateParameter = isa<TemplateTemplateParmDecl>(Template);
Chris Lattner5f9e2722011-07-23 10:55:15 +00003071 SmallVector<TemplateArgument, 2> ArgumentPack;
Richard Smith6964b3f2012-09-07 02:06:42 +00003072 unsigned ArgIdx = 0, NumArgs = TemplateArgs.size();
Douglas Gregor8dde14e2011-01-24 16:14:37 +00003073 LocalInstantiationScope InstScope(*this, true);
Richard Smith6964b3f2012-09-07 02:06:42 +00003074 for (TemplateParameterList::iterator Param = Params->begin(),
3075 ParamEnd = Params->end();
3076 Param != ParamEnd; /* increment in loop */) {
3077 // If we have an expanded parameter pack, make sure we don't have too
3078 // many arguments.
David Blaikiedc84cd52013-02-20 22:23:23 +00003079 if (Optional<unsigned> Expansions = getExpandedPackSize(*Param)) {
Richard Smith6964b3f2012-09-07 02:06:42 +00003080 if (*Expansions == ArgumentPack.size()) {
3081 // We're done with this parameter pack. Pack up its arguments and add
3082 // them to the list.
Eli Friedmand7a6b162012-09-26 02:36:12 +00003083 Converted.push_back(
3084 TemplateArgument::CreatePackCopy(Context,
3085 ArgumentPack.data(),
3086 ArgumentPack.size()));
3087 ArgumentPack.clear();
3088
Richard Smith6964b3f2012-09-07 02:06:42 +00003089 // This argument is assigned to the next parameter.
3090 ++Param;
3091 continue;
3092 } else if (ArgIdx == NumArgs && !PartialTemplateArgs) {
3093 // Not enough arguments for this parameter pack.
3094 Diag(TemplateLoc, diag::err_template_arg_list_different_arity)
3095 << false
3096 << (isa<ClassTemplateDecl>(Template)? 0 :
3097 isa<FunctionTemplateDecl>(Template)? 1 :
3098 isa<TemplateTemplateParmDecl>(Template)? 2 : 3)
3099 << Template;
3100 Diag(Template->getLocation(), diag::note_template_decl_here)
3101 << Params->getSourceRange();
3102 return true;
Douglas Gregor6952f1e2011-01-19 20:10:05 +00003103 }
Richard Smith6964b3f2012-09-07 02:06:42 +00003104 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003105
Richard Smith6964b3f2012-09-07 02:06:42 +00003106 if (ArgIdx < NumArgs) {
Douglas Gregorf35f8282009-11-11 21:54:23 +00003107 // Check the template argument we were given.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003108 if (CheckTemplateArgument(*Param, TemplateArgs[ArgIdx], Template,
3109 TemplateLoc, RAngleLoc,
Douglas Gregor6952f1e2011-01-19 20:10:05 +00003110 ArgumentPack.size(), Converted))
Douglas Gregorf35f8282009-11-11 21:54:23 +00003111 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003112
Richard Smith6964b3f2012-09-07 02:06:42 +00003113 // We're now done with this argument.
3114 ++ArgIdx;
3115
Douglas Gregor14be16b2010-12-20 16:57:52 +00003116 if ((*Param)->isTemplateParameterPack()) {
3117 // The template parameter was a template parameter pack, so take the
3118 // deduced argument and place it on the argument pack. Note that we
3119 // stay on the same template parameter so that we can deduce more
3120 // arguments.
3121 ArgumentPack.push_back(Converted.back());
3122 Converted.pop_back();
3123 } else {
3124 // Move to the next template parameter.
3125 ++Param;
3126 }
Richard Smith6964b3f2012-09-07 02:06:42 +00003127
3128 // If we just saw a pack expansion, then directly convert the remaining
3129 // arguments, because we don't know what parameters they'll match up
3130 // with.
3131 if (TemplateArgs[ArgIdx-1].getArgument().isPackExpansion()) {
3132 bool InFinalParameterPack = Param != ParamEnd &&
3133 Param + 1 == ParamEnd &&
3134 (*Param)->isTemplateParameterPack() &&
3135 !getExpandedPackSize(*Param);
3136
3137 if (!InFinalParameterPack && !ArgumentPack.empty()) {
3138 // If we were part way through filling in an expanded parameter pack,
3139 // fall back to just producing individual arguments.
3140 Converted.insert(Converted.end(),
3141 ArgumentPack.begin(), ArgumentPack.end());
3142 ArgumentPack.clear();
3143 }
3144
3145 while (ArgIdx < NumArgs) {
3146 if (InFinalParameterPack)
3147 ArgumentPack.push_back(TemplateArgs[ArgIdx].getArgument());
3148 else
3149 Converted.push_back(TemplateArgs[ArgIdx].getArgument());
3150 ++ArgIdx;
3151 }
3152
3153 // Push the argument pack onto the list of converted arguments.
3154 if (InFinalParameterPack) {
Eli Friedmand7a6b162012-09-26 02:36:12 +00003155 Converted.push_back(
3156 TemplateArgument::CreatePackCopy(Context,
3157 ArgumentPack.data(),
3158 ArgumentPack.size()));
3159 ArgumentPack.clear();
Richard Smith6964b3f2012-09-07 02:06:42 +00003160 } else if (ExpansionIntoFixedList) {
3161 // We have expanded a pack into a fixed list.
3162 *ExpansionIntoFixedList = true;
3163 }
3164
3165 return false;
Douglas Gregor8fbbae52012-02-03 07:34:46 +00003166 }
Richard Smith6964b3f2012-09-07 02:06:42 +00003167
Douglas Gregorf35f8282009-11-11 21:54:23 +00003168 continue;
Douglas Gregor3e00bad2009-02-17 01:05:43 +00003169 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003170
Douglas Gregor8735b292011-06-03 02:59:40 +00003171 // If we're checking a partial template argument list, we're done.
3172 if (PartialTemplateArgs) {
3173 if ((*Param)->isTemplateParameterPack() && !ArgumentPack.empty())
3174 Converted.push_back(TemplateArgument::CreatePackCopy(Context,
3175 ArgumentPack.data(),
3176 ArgumentPack.size()));
3177
Richard Smith6964b3f2012-09-07 02:06:42 +00003178 return false;
Douglas Gregor8735b292011-06-03 02:59:40 +00003179 }
3180
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003181 // If we have a template parameter pack with no more corresponding
Douglas Gregor14be16b2010-12-20 16:57:52 +00003182 // arguments, just break out now and we'll fill in the argument pack below.
Richard Smith6964b3f2012-09-07 02:06:42 +00003183 if ((*Param)->isTemplateParameterPack()) {
3184 assert(!getExpandedPackSize(*Param) &&
3185 "Should have dealt with this already");
3186
3187 // A non-expanded parameter pack before the end of the parameter list
3188 // only occurs for an ill-formed template parameter list, unless we've
3189 // got a partial argument list for a function template, so just bail out.
3190 if (Param + 1 != ParamEnd)
3191 return true;
3192
Eli Friedmand7a6b162012-09-26 02:36:12 +00003193 Converted.push_back(TemplateArgument::CreatePackCopy(Context,
3194 ArgumentPack.data(),
3195 ArgumentPack.size()));
3196 ArgumentPack.clear();
Richard Smith6964b3f2012-09-07 02:06:42 +00003197
3198 ++Param;
3199 continue;
3200 }
3201
Douglas Gregor8fbbae52012-02-03 07:34:46 +00003202 // Check whether we have a default argument.
Douglas Gregorf35f8282009-11-11 21:54:23 +00003203 TemplateArgumentLoc Arg;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003204
Douglas Gregorf35f8282009-11-11 21:54:23 +00003205 // Retrieve the default template argument from the template
3206 // parameter. For each kind of template parameter, we substitute the
3207 // template arguments provided thus far and any "outer" template arguments
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003208 // (when the template parameter was part of a nested template) into
Douglas Gregorf35f8282009-11-11 21:54:23 +00003209 // the default argument.
3210 if (TemplateTypeParmDecl *TTP = dyn_cast<TemplateTypeParmDecl>(*Param)) {
Douglas Gregor8fbbae52012-02-03 07:34:46 +00003211 if (!TTP->hasDefaultArgument())
3212 return diagnoseArityMismatch(*this, Template, TemplateLoc,
3213 TemplateArgs);
Douglas Gregorf35f8282009-11-11 21:54:23 +00003214
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003215 TypeSourceInfo *ArgType = SubstDefaultTemplateArgument(*this,
Douglas Gregorf35f8282009-11-11 21:54:23 +00003216 Template,
3217 TemplateLoc,
3218 RAngleLoc,
3219 TTP,
3220 Converted);
3221 if (!ArgType)
3222 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003223
Douglas Gregorf35f8282009-11-11 21:54:23 +00003224 Arg = TemplateArgumentLoc(TemplateArgument(ArgType->getType()),
3225 ArgType);
3226 } else if (NonTypeTemplateParmDecl *NTTP
3227 = dyn_cast<NonTypeTemplateParmDecl>(*Param)) {
Douglas Gregor8fbbae52012-02-03 07:34:46 +00003228 if (!NTTP->hasDefaultArgument())
3229 return diagnoseArityMismatch(*this, Template, TemplateLoc,
3230 TemplateArgs);
Douglas Gregorf35f8282009-11-11 21:54:23 +00003231
John McCall60d7b3a2010-08-24 06:29:42 +00003232 ExprResult E = SubstDefaultTemplateArgument(*this, Template,
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003233 TemplateLoc,
3234 RAngleLoc,
3235 NTTP,
Douglas Gregorf35f8282009-11-11 21:54:23 +00003236 Converted);
3237 if (E.isInvalid())
3238 return true;
3239
3240 Expr *Ex = E.takeAs<Expr>();
3241 Arg = TemplateArgumentLoc(TemplateArgument(Ex), Ex);
3242 } else {
3243 TemplateTemplateParmDecl *TempParm
3244 = cast<TemplateTemplateParmDecl>(*Param);
3245
Douglas Gregor8fbbae52012-02-03 07:34:46 +00003246 if (!TempParm->hasDefaultArgument())
3247 return diagnoseArityMismatch(*this, Template, TemplateLoc,
3248 TemplateArgs);
Douglas Gregorf35f8282009-11-11 21:54:23 +00003249
Douglas Gregor1d752d72011-03-02 18:46:51 +00003250 NestedNameSpecifierLoc QualifierLoc;
Douglas Gregorf35f8282009-11-11 21:54:23 +00003251 TemplateName Name = SubstDefaultTemplateArgument(*this, Template,
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003252 TemplateLoc,
3253 RAngleLoc,
Douglas Gregorf35f8282009-11-11 21:54:23 +00003254 TempParm,
Douglas Gregorb6744ef2011-03-02 17:09:35 +00003255 Converted,
3256 QualifierLoc);
Douglas Gregorf35f8282009-11-11 21:54:23 +00003257 if (Name.isNull())
3258 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003259
Douglas Gregorb6744ef2011-03-02 17:09:35 +00003260 Arg = TemplateArgumentLoc(TemplateArgument(Name), QualifierLoc,
3261 TempParm->getDefaultArgument().getTemplateNameLoc());
Douglas Gregorf35f8282009-11-11 21:54:23 +00003262 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003263
Douglas Gregorf35f8282009-11-11 21:54:23 +00003264 // Introduce an instantiation record that describes where we are using
3265 // the default template argument.
Richard Smith7e54fb52012-07-16 01:09:10 +00003266 InstantiatingTemplate Instantiating(*this, RAngleLoc, Template,
3267 *Param, Converted,
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003268 SourceRange(TemplateLoc, RAngleLoc));
Richard Smithab91ef12012-07-08 02:38:24 +00003269 if (Instantiating)
3270 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003271
Douglas Gregorf35f8282009-11-11 21:54:23 +00003272 // Check the default template argument.
Douglas Gregord9e15302009-11-11 19:41:09 +00003273 if (CheckTemplateArgument(*Param, Arg, Template, TemplateLoc,
Douglas Gregor6952f1e2011-01-19 20:10:05 +00003274 RAngleLoc, 0, Converted))
Douglas Gregore7526412009-11-11 19:31:23 +00003275 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003276
Douglas Gregor67714232011-03-03 02:41:12 +00003277 // Core issue 150 (assumed resolution): if this is a template template
3278 // parameter, keep track of the default template arguments from the
3279 // template definition.
3280 if (isTemplateTemplateParameter)
3281 TemplateArgs.addArgument(Arg);
3282
Douglas Gregor14be16b2010-12-20 16:57:52 +00003283 // Move to the next template parameter and argument.
3284 ++Param;
3285 ++ArgIdx;
Douglas Gregorc15cb382009-02-09 23:23:08 +00003286 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003287
Douglas Gregor8fbbae52012-02-03 07:34:46 +00003288 // If we have any leftover arguments, then there were too many arguments.
3289 // Complain and fail.
3290 if (ArgIdx < NumArgs)
3291 return diagnoseArityMismatch(*this, Template, TemplateLoc, TemplateArgs);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003292
Richard Smith6964b3f2012-09-07 02:06:42 +00003293 return false;
Douglas Gregorc15cb382009-02-09 23:23:08 +00003294}
3295
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003296namespace {
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003297 class UnnamedLocalNoLinkageFinder
3298 : public TypeVisitor<UnnamedLocalNoLinkageFinder, bool>
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003299 {
3300 Sema &S;
3301 SourceRange SR;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003302
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003303 typedef TypeVisitor<UnnamedLocalNoLinkageFinder, bool> inherited;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003304
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003305 public:
3306 UnnamedLocalNoLinkageFinder(Sema &S, SourceRange SR) : S(S), SR(SR) { }
3307
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003308 bool Visit(QualType T) {
3309 return inherited::Visit(T.getTypePtr());
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003310 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003311
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003312#define TYPE(Class, Parent) \
3313 bool Visit##Class##Type(const Class##Type *);
3314#define ABSTRACT_TYPE(Class, Parent) \
3315 bool Visit##Class##Type(const Class##Type *) { return false; }
3316#define NON_CANONICAL_TYPE(Class, Parent) \
3317 bool Visit##Class##Type(const Class##Type *) { return false; }
3318#include "clang/AST/TypeNodes.def"
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003319
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003320 bool VisitTagDecl(const TagDecl *Tag);
3321 bool VisitNestedNameSpecifier(NestedNameSpecifier *NNS);
3322 };
3323}
3324
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003325bool UnnamedLocalNoLinkageFinder::VisitBuiltinType(const BuiltinType*) {
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003326 return false;
3327}
3328
3329bool UnnamedLocalNoLinkageFinder::VisitComplexType(const ComplexType* T) {
3330 return Visit(T->getElementType());
3331}
3332
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003333bool UnnamedLocalNoLinkageFinder::VisitPointerType(const PointerType* T) {
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003334 return Visit(T->getPointeeType());
3335}
3336
3337bool UnnamedLocalNoLinkageFinder::VisitBlockPointerType(
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003338 const BlockPointerType* T) {
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003339 return Visit(T->getPointeeType());
3340}
3341
3342bool UnnamedLocalNoLinkageFinder::VisitLValueReferenceType(
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003343 const LValueReferenceType* T) {
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003344 return Visit(T->getPointeeType());
3345}
3346
3347bool UnnamedLocalNoLinkageFinder::VisitRValueReferenceType(
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003348 const RValueReferenceType* T) {
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003349 return Visit(T->getPointeeType());
3350}
3351
3352bool UnnamedLocalNoLinkageFinder::VisitMemberPointerType(
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003353 const MemberPointerType* T) {
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003354 return Visit(T->getPointeeType()) || Visit(QualType(T->getClass(), 0));
3355}
3356
3357bool UnnamedLocalNoLinkageFinder::VisitConstantArrayType(
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003358 const ConstantArrayType* T) {
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003359 return Visit(T->getElementType());
3360}
3361
3362bool UnnamedLocalNoLinkageFinder::VisitIncompleteArrayType(
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003363 const IncompleteArrayType* T) {
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003364 return Visit(T->getElementType());
3365}
3366
3367bool UnnamedLocalNoLinkageFinder::VisitVariableArrayType(
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003368 const VariableArrayType* T) {
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003369 return Visit(T->getElementType());
3370}
3371
3372bool UnnamedLocalNoLinkageFinder::VisitDependentSizedArrayType(
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003373 const DependentSizedArrayType* T) {
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003374 return Visit(T->getElementType());
3375}
3376
3377bool UnnamedLocalNoLinkageFinder::VisitDependentSizedExtVectorType(
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003378 const DependentSizedExtVectorType* T) {
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003379 return Visit(T->getElementType());
3380}
3381
3382bool UnnamedLocalNoLinkageFinder::VisitVectorType(const VectorType* T) {
3383 return Visit(T->getElementType());
3384}
3385
3386bool UnnamedLocalNoLinkageFinder::VisitExtVectorType(const ExtVectorType* T) {
3387 return Visit(T->getElementType());
3388}
3389
3390bool UnnamedLocalNoLinkageFinder::VisitFunctionProtoType(
3391 const FunctionProtoType* T) {
3392 for (FunctionProtoType::arg_type_iterator A = T->arg_type_begin(),
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003393 AEnd = T->arg_type_end();
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003394 A != AEnd; ++A) {
3395 if (Visit(*A))
3396 return true;
3397 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003398
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003399 return Visit(T->getResultType());
3400}
3401
3402bool UnnamedLocalNoLinkageFinder::VisitFunctionNoProtoType(
3403 const FunctionNoProtoType* T) {
3404 return Visit(T->getResultType());
3405}
3406
3407bool UnnamedLocalNoLinkageFinder::VisitUnresolvedUsingType(
3408 const UnresolvedUsingType*) {
3409 return false;
3410}
3411
3412bool UnnamedLocalNoLinkageFinder::VisitTypeOfExprType(const TypeOfExprType*) {
3413 return false;
3414}
3415
3416bool UnnamedLocalNoLinkageFinder::VisitTypeOfType(const TypeOfType* T) {
3417 return Visit(T->getUnderlyingType());
3418}
3419
3420bool UnnamedLocalNoLinkageFinder::VisitDecltypeType(const DecltypeType*) {
3421 return false;
3422}
3423
Sean Huntca63c202011-05-24 22:41:36 +00003424bool UnnamedLocalNoLinkageFinder::VisitUnaryTransformType(
3425 const UnaryTransformType*) {
3426 return false;
3427}
3428
Richard Smith34b41d92011-02-20 03:19:35 +00003429bool UnnamedLocalNoLinkageFinder::VisitAutoType(const AutoType *T) {
3430 return Visit(T->getDeducedType());
3431}
3432
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003433bool UnnamedLocalNoLinkageFinder::VisitRecordType(const RecordType* T) {
3434 return VisitTagDecl(T->getDecl());
3435}
3436
3437bool UnnamedLocalNoLinkageFinder::VisitEnumType(const EnumType* T) {
3438 return VisitTagDecl(T->getDecl());
3439}
3440
3441bool UnnamedLocalNoLinkageFinder::VisitTemplateTypeParmType(
3442 const TemplateTypeParmType*) {
3443 return false;
3444}
3445
Douglas Gregorc3069d62011-01-14 02:55:32 +00003446bool UnnamedLocalNoLinkageFinder::VisitSubstTemplateTypeParmPackType(
3447 const SubstTemplateTypeParmPackType *) {
3448 return false;
3449}
3450
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003451bool UnnamedLocalNoLinkageFinder::VisitTemplateSpecializationType(
3452 const TemplateSpecializationType*) {
3453 return false;
3454}
3455
3456bool UnnamedLocalNoLinkageFinder::VisitInjectedClassNameType(
3457 const InjectedClassNameType* T) {
3458 return VisitTagDecl(T->getDecl());
3459}
3460
3461bool UnnamedLocalNoLinkageFinder::VisitDependentNameType(
3462 const DependentNameType* T) {
3463 return VisitNestedNameSpecifier(T->getQualifier());
3464}
3465
3466bool UnnamedLocalNoLinkageFinder::VisitDependentTemplateSpecializationType(
3467 const DependentTemplateSpecializationType* T) {
3468 return VisitNestedNameSpecifier(T->getQualifier());
3469}
3470
Douglas Gregor7536dd52010-12-20 02:24:11 +00003471bool UnnamedLocalNoLinkageFinder::VisitPackExpansionType(
3472 const PackExpansionType* T) {
3473 return Visit(T->getPattern());
3474}
3475
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003476bool UnnamedLocalNoLinkageFinder::VisitObjCObjectType(const ObjCObjectType *) {
3477 return false;
3478}
3479
3480bool UnnamedLocalNoLinkageFinder::VisitObjCInterfaceType(
3481 const ObjCInterfaceType *) {
3482 return false;
3483}
3484
3485bool UnnamedLocalNoLinkageFinder::VisitObjCObjectPointerType(
3486 const ObjCObjectPointerType *) {
3487 return false;
3488}
3489
Eli Friedmanb001de72011-10-06 23:00:33 +00003490bool UnnamedLocalNoLinkageFinder::VisitAtomicType(const AtomicType* T) {
3491 return Visit(T->getValueType());
3492}
3493
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003494bool UnnamedLocalNoLinkageFinder::VisitTagDecl(const TagDecl *Tag) {
3495 if (Tag->getDeclContext()->isFunctionOrMethod()) {
Richard Smithebaf0e62011-10-18 20:49:44 +00003496 S.Diag(SR.getBegin(),
Richard Smith80ad52f2013-01-02 11:42:31 +00003497 S.getLangOpts().CPlusPlus11 ?
Richard Smithebaf0e62011-10-18 20:49:44 +00003498 diag::warn_cxx98_compat_template_arg_local_type :
3499 diag::ext_template_arg_local_type)
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003500 << S.Context.getTypeDeclType(Tag) << SR;
3501 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003502 }
3503
John McCall83972f12013-03-09 00:54:27 +00003504 if (!Tag->hasNameForLinkage()) {
Richard Smithebaf0e62011-10-18 20:49:44 +00003505 S.Diag(SR.getBegin(),
Richard Smith80ad52f2013-01-02 11:42:31 +00003506 S.getLangOpts().CPlusPlus11 ?
Richard Smithebaf0e62011-10-18 20:49:44 +00003507 diag::warn_cxx98_compat_template_arg_unnamed_type :
3508 diag::ext_template_arg_unnamed_type) << SR;
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003509 S.Diag(Tag->getLocation(), diag::note_template_unnamed_type_here);
3510 return true;
3511 }
3512
3513 return false;
3514}
3515
3516bool UnnamedLocalNoLinkageFinder::VisitNestedNameSpecifier(
3517 NestedNameSpecifier *NNS) {
3518 if (NNS->getPrefix() && VisitNestedNameSpecifier(NNS->getPrefix()))
3519 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003520
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003521 switch (NNS->getKind()) {
3522 case NestedNameSpecifier::Identifier:
3523 case NestedNameSpecifier::Namespace:
Douglas Gregor14aba762011-02-24 02:36:08 +00003524 case NestedNameSpecifier::NamespaceAlias:
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003525 case NestedNameSpecifier::Global:
3526 return false;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003527
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003528 case NestedNameSpecifier::TypeSpec:
3529 case NestedNameSpecifier::TypeSpecWithTemplate:
3530 return Visit(QualType(NNS->getAsType(), 0));
3531 }
David Blaikie7530c032012-01-17 06:56:22 +00003532 llvm_unreachable("Invalid NestedNameSpecifier::Kind!");
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003533}
3534
3535
Douglas Gregorc15cb382009-02-09 23:23:08 +00003536/// \brief Check a template argument against its corresponding
3537/// template type parameter.
3538///
3539/// This routine implements the semantics of C++ [temp.arg.type]. It
3540/// returns true if an error occurred, and false otherwise.
Mike Stump1eb44332009-09-09 15:08:12 +00003541bool Sema::CheckTemplateArgument(TemplateTypeParmDecl *Param,
John McCalla93c9342009-12-07 02:54:59 +00003542 TypeSourceInfo *ArgInfo) {
3543 assert(ArgInfo && "invalid TypeSourceInfo");
John McCall833ca992009-10-29 08:12:44 +00003544 QualType Arg = ArgInfo->getType();
Douglas Gregor0fddb972010-05-22 16:17:30 +00003545 SourceRange SR = ArgInfo->getTypeLoc().getSourceRange();
Chandler Carruth17fb8552010-09-03 21:12:34 +00003546
3547 if (Arg->isVariablyModifiedType()) {
3548 return Diag(SR.getBegin(), diag::err_variably_modified_template_arg) << Arg;
Douglas Gregor4b52e252009-12-21 23:17:24 +00003549 } else if (Context.hasSameUnqualifiedType(Arg, Context.OverloadTy)) {
Douglas Gregor4b52e252009-12-21 23:17:24 +00003550 return Diag(SR.getBegin(), diag::err_template_arg_overload_type) << SR;
Douglas Gregorc15cb382009-02-09 23:23:08 +00003551 }
3552
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003553 // C++03 [temp.arg.type]p2:
3554 // A local type, a type with no linkage, an unnamed type or a type
3555 // compounded from any of these types shall not be used as a
3556 // template-argument for a template type-parameter.
3557 //
Richard Smithebaf0e62011-10-18 20:49:44 +00003558 // C++11 allows these, and even in C++03 we allow them as an extension with
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003559 // a warning.
Richard Smith80ad52f2013-01-02 11:42:31 +00003560 if (LangOpts.CPlusPlus11 ?
Richard Smithebaf0e62011-10-18 20:49:44 +00003561 Diags.getDiagnosticLevel(diag::warn_cxx98_compat_template_arg_unnamed_type,
3562 SR.getBegin()) != DiagnosticsEngine::Ignored ||
3563 Diags.getDiagnosticLevel(diag::warn_cxx98_compat_template_arg_local_type,
3564 SR.getBegin()) != DiagnosticsEngine::Ignored :
3565 Arg->hasUnnamedOrLocalType()) {
Douglas Gregor5f3aeb62010-10-13 00:27:52 +00003566 UnnamedLocalNoLinkageFinder Finder(*this, SR);
3567 (void)Finder.Visit(Context.getCanonicalType(Arg));
3568 }
3569
Douglas Gregorc15cb382009-02-09 23:23:08 +00003570 return false;
3571}
3572
Douglas Gregor42963612012-04-10 17:08:25 +00003573enum NullPointerValueKind {
3574 NPV_NotNullPointer,
3575 NPV_NullPointer,
3576 NPV_Error
3577};
3578
3579/// \brief Determine whether the given template argument is a null pointer
3580/// value of the appropriate type.
3581static NullPointerValueKind
3582isNullPointerValueTemplateArgument(Sema &S, NonTypeTemplateParmDecl *Param,
3583 QualType ParamType, Expr *Arg) {
3584 if (Arg->isValueDependent() || Arg->isTypeDependent())
3585 return NPV_NotNullPointer;
3586
Richard Smith80ad52f2013-01-02 11:42:31 +00003587 if (!S.getLangOpts().CPlusPlus11)
Douglas Gregor42963612012-04-10 17:08:25 +00003588 return NPV_NotNullPointer;
3589
3590 // Determine whether we have a constant expression.
Douglas Gregor50fadd12012-04-10 19:03:30 +00003591 ExprResult ArgRV = S.DefaultFunctionArrayConversion(Arg);
3592 if (ArgRV.isInvalid())
3593 return NPV_Error;
3594 Arg = ArgRV.take();
3595
Douglas Gregor42963612012-04-10 17:08:25 +00003596 Expr::EvalResult EvalResult;
Dmitri Gribenkocfa88f82013-01-12 19:30:44 +00003597 SmallVector<PartialDiagnosticAt, 8> Notes;
Douglas Gregor50fadd12012-04-10 19:03:30 +00003598 EvalResult.Diag = &Notes;
Douglas Gregor42963612012-04-10 17:08:25 +00003599 if (!Arg->EvaluateAsRValue(EvalResult, S.Context) ||
Douglas Gregor50fadd12012-04-10 19:03:30 +00003600 EvalResult.HasSideEffects) {
3601 SourceLocation DiagLoc = Arg->getExprLoc();
3602
3603 // If our only note is the usual "invalid subexpression" note, just point
3604 // the caret at its location rather than producing an essentially
3605 // redundant note.
3606 if (Notes.size() == 1 && Notes[0].second.getDiagID() ==
3607 diag::note_invalid_subexpr_in_const_expr) {
3608 DiagLoc = Notes[0].first;
3609 Notes.clear();
3610 }
3611
3612 S.Diag(DiagLoc, diag::err_template_arg_not_address_constant)
3613 << Arg->getType() << Arg->getSourceRange();
3614 for (unsigned I = 0, N = Notes.size(); I != N; ++I)
3615 S.Diag(Notes[I].first, Notes[I].second);
3616
3617 S.Diag(Param->getLocation(), diag::note_template_param_here);
3618 return NPV_Error;
3619 }
Douglas Gregor42963612012-04-10 17:08:25 +00003620
3621 // C++11 [temp.arg.nontype]p1:
3622 // - an address constant expression of type std::nullptr_t
3623 if (Arg->getType()->isNullPtrType())
3624 return NPV_NullPointer;
3625
3626 // - a constant expression that evaluates to a null pointer value (4.10); or
3627 // - a constant expression that evaluates to a null member pointer value
3628 // (4.11); or
3629 if ((EvalResult.Val.isLValue() && !EvalResult.Val.getLValueBase()) ||
3630 (EvalResult.Val.isMemberPointer() &&
3631 !EvalResult.Val.getMemberPointerDecl())) {
3632 // If our expression has an appropriate type, we've succeeded.
3633 bool ObjCLifetimeConversion;
3634 if (S.Context.hasSameUnqualifiedType(Arg->getType(), ParamType) ||
3635 S.IsQualificationConversion(Arg->getType(), ParamType, false,
3636 ObjCLifetimeConversion))
3637 return NPV_NullPointer;
3638
3639 // The types didn't match, but we know we got a null pointer; complain,
3640 // then recover as if the types were correct.
3641 S.Diag(Arg->getExprLoc(), diag::err_template_arg_wrongtype_null_constant)
3642 << Arg->getType() << ParamType << Arg->getSourceRange();
3643 S.Diag(Param->getLocation(), diag::note_template_param_here);
3644 return NPV_NullPointer;
3645 }
3646
3647 // If we don't have a null pointer value, but we do have a NULL pointer
3648 // constant, suggest a cast to the appropriate type.
3649 if (Arg->isNullPointerConstant(S.Context, Expr::NPC_NeverValueDependent)) {
3650 std::string Code = "static_cast<" + ParamType.getAsString() + ">(";
3651 S.Diag(Arg->getExprLoc(), diag::err_template_arg_untyped_null_constant)
3652 << ParamType
3653 << FixItHint::CreateInsertion(Arg->getLocStart(), Code)
3654 << FixItHint::CreateInsertion(S.PP.getLocForEndOfToken(Arg->getLocEnd()),
3655 ")");
3656 S.Diag(Param->getLocation(), diag::note_template_param_here);
3657 return NPV_NullPointer;
3658 }
3659
3660 // FIXME: If we ever want to support general, address-constant expressions
3661 // as non-type template arguments, we should return the ExprResult here to
3662 // be interpreted by the caller.
3663 return NPV_NotNullPointer;
3664}
3665
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003666/// \brief Checks whether the given template argument is the address
3667/// of an object or function according to C++ [temp.arg.nontype]p1.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003668static bool
Douglas Gregorb7a09262010-04-01 18:32:35 +00003669CheckTemplateArgumentAddressOfObjectOrFunction(Sema &S,
3670 NonTypeTemplateParmDecl *Param,
3671 QualType ParamType,
3672 Expr *ArgIn,
3673 TemplateArgument &Converted) {
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003674 bool Invalid = false;
Douglas Gregorb7a09262010-04-01 18:32:35 +00003675 Expr *Arg = ArgIn;
3676 QualType ArgType = Arg->getType();
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003677
Douglas Gregor42963612012-04-10 17:08:25 +00003678 // If our parameter has pointer type, check for a null template value.
3679 if (ParamType->isPointerType() || ParamType->isNullPtrType()) {
3680 switch (isNullPointerValueTemplateArgument(S, Param, ParamType, Arg)) {
3681 case NPV_NullPointer:
Richard Smith86e6fdc2012-04-26 01:51:03 +00003682 S.Diag(Arg->getExprLoc(), diag::warn_cxx98_compat_template_arg_null);
Eli Friedmand7a6b162012-09-26 02:36:12 +00003683 Converted = TemplateArgument(ParamType, /*isNullPtr*/true);
Douglas Gregor42963612012-04-10 17:08:25 +00003684 return false;
3685
3686 case NPV_Error:
3687 return true;
3688
3689 case NPV_NotNullPointer:
3690 break;
3691 }
3692 }
3693
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003694 // See through any implicit casts we added to fix the type.
John McCall91a57552011-07-15 05:09:51 +00003695 Arg = Arg->IgnoreImpCasts();
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003696
3697 // C++ [temp.arg.nontype]p1:
Mike Stump1eb44332009-09-09 15:08:12 +00003698 //
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003699 // A template-argument for a non-type, non-template
3700 // template-parameter shall be one of: [...]
3701 //
3702 // -- the address of an object or function with external
3703 // linkage, including function templates and function
3704 // template-ids but excluding non-static class members,
3705 // expressed as & id-expression where the & is optional if
3706 // the name refers to a function or array, or if the
3707 // corresponding template-parameter is a reference; or
Mike Stump1eb44332009-09-09 15:08:12 +00003708
Abramo Bagnara2c5399f2010-09-13 06:06:58 +00003709 // In C++98/03 mode, give an extension warning on any extra parentheses.
3710 // See http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_defects.html#773
3711 bool ExtraParens = false;
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003712 while (ParenExpr *Parens = dyn_cast<ParenExpr>(Arg)) {
Richard Smithebaf0e62011-10-18 20:49:44 +00003713 if (!Invalid && !ExtraParens) {
Daniel Dunbar96a00142012-03-09 18:35:03 +00003714 S.Diag(Arg->getLocStart(),
Richard Smith80ad52f2013-01-02 11:42:31 +00003715 S.getLangOpts().CPlusPlus11 ?
Richard Smithebaf0e62011-10-18 20:49:44 +00003716 diag::warn_cxx98_compat_template_arg_extra_parens :
3717 diag::ext_template_arg_extra_parens)
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003718 << Arg->getSourceRange();
Abramo Bagnara2c5399f2010-09-13 06:06:58 +00003719 ExtraParens = true;
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003720 }
3721
3722 Arg = Parens->getSubExpr();
3723 }
3724
John McCall91a57552011-07-15 05:09:51 +00003725 while (SubstNonTypeTemplateParmExpr *subst =
3726 dyn_cast<SubstNonTypeTemplateParmExpr>(Arg))
3727 Arg = subst->getReplacement()->IgnoreImpCasts();
3728
Douglas Gregorb7a09262010-04-01 18:32:35 +00003729 bool AddressTaken = false;
3730 SourceLocation AddrOpLoc;
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003731 if (UnaryOperator *UnOp = dyn_cast<UnaryOperator>(Arg)) {
John McCall2de56d12010-08-25 11:45:40 +00003732 if (UnOp->getOpcode() == UO_AddrOf) {
John McCall91a57552011-07-15 05:09:51 +00003733 Arg = UnOp->getSubExpr();
Douglas Gregorb7a09262010-04-01 18:32:35 +00003734 AddressTaken = true;
3735 AddrOpLoc = UnOp->getOperatorLoc();
3736 }
Francois Picheta343a412011-04-29 09:08:14 +00003737 }
John McCall91a57552011-07-15 05:09:51 +00003738
Eli Friedman2e236fb2013-06-27 21:20:28 +00003739 if (isa<CXXUuidofExpr>(Arg)) {
John McCall91a57552011-07-15 05:09:51 +00003740 Converted = TemplateArgument(ArgIn);
3741 return false;
3742 }
3743
3744 while (SubstNonTypeTemplateParmExpr *subst =
3745 dyn_cast<SubstNonTypeTemplateParmExpr>(Arg))
3746 Arg = subst->getReplacement()->IgnoreImpCasts();
3747
Chandler Carruth038cc392010-01-31 10:01:20 +00003748 // Stop checking the precise nature of the argument if it is value dependent,
3749 // it should be checked when instantiated.
Douglas Gregorb7a09262010-04-01 18:32:35 +00003750 if (Arg->isValueDependent()) {
John McCall3fa5cae2010-10-26 07:05:15 +00003751 Converted = TemplateArgument(ArgIn);
Chandler Carruth038cc392010-01-31 10:01:20 +00003752 return false;
Douglas Gregorb7a09262010-04-01 18:32:35 +00003753 }
Douglas Gregord2008e22012-04-06 22:40:38 +00003754
3755 DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(Arg);
3756 if (!DRE) {
3757 S.Diag(Arg->getLocStart(), diag::err_template_arg_not_decl_ref)
3758 << Arg->getSourceRange();
3759 S.Diag(Param->getLocation(), diag::note_template_param_here);
3760 return true;
3761 }
Chandler Carruth038cc392010-01-31 10:01:20 +00003762
Douglas Gregorb7a09262010-04-01 18:32:35 +00003763 if (!isa<ValueDecl>(DRE->getDecl())) {
Daniel Dunbar96a00142012-03-09 18:35:03 +00003764 S.Diag(Arg->getLocStart(),
Douglas Gregorb7a09262010-04-01 18:32:35 +00003765 diag::err_template_arg_not_object_or_func_form)
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003766 << Arg->getSourceRange();
Douglas Gregorb7a09262010-04-01 18:32:35 +00003767 S.Diag(Param->getLocation(), diag::note_template_param_here);
3768 return true;
3769 }
3770
Eli Friedmand7a6b162012-09-26 02:36:12 +00003771 ValueDecl *Entity = DRE->getDecl();
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003772
3773 // Cannot refer to non-static data members
Richard Smithb4051e72012-04-04 21:11:30 +00003774 if (FieldDecl *Field = dyn_cast<FieldDecl>(Entity)) {
Daniel Dunbar96a00142012-03-09 18:35:03 +00003775 S.Diag(Arg->getLocStart(), diag::err_template_arg_field)
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003776 << Field << Arg->getSourceRange();
Douglas Gregorb7a09262010-04-01 18:32:35 +00003777 S.Diag(Param->getLocation(), diag::note_template_param_here);
3778 return true;
3779 }
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003780
3781 // Cannot refer to non-static member functions
Richard Smithb4051e72012-04-04 21:11:30 +00003782 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(Entity)) {
Douglas Gregorb7a09262010-04-01 18:32:35 +00003783 if (!Method->isStatic()) {
Daniel Dunbar96a00142012-03-09 18:35:03 +00003784 S.Diag(Arg->getLocStart(), diag::err_template_arg_method)
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003785 << Method << Arg->getSourceRange();
Douglas Gregorb7a09262010-04-01 18:32:35 +00003786 S.Diag(Param->getLocation(), diag::note_template_param_here);
3787 return true;
3788 }
Richard Smithb4051e72012-04-04 21:11:30 +00003789 }
Mike Stump1eb44332009-09-09 15:08:12 +00003790
Richard Smithb4051e72012-04-04 21:11:30 +00003791 FunctionDecl *Func = dyn_cast<FunctionDecl>(Entity);
3792 VarDecl *Var = dyn_cast<VarDecl>(Entity);
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003793
Richard Smithb4051e72012-04-04 21:11:30 +00003794 // A non-type template argument must refer to an object or function.
3795 if (!Func && !Var) {
3796 // We found something, but we don't know specifically what it is.
3797 S.Diag(Arg->getLocStart(), diag::err_template_arg_not_object_or_func)
3798 << Arg->getSourceRange();
3799 S.Diag(DRE->getDecl()->getLocation(), diag::note_template_arg_refers_here);
3800 return true;
3801 }
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003802
Richard Smithb4051e72012-04-04 21:11:30 +00003803 // Address / reference template args must have external linkage in C++98.
Rafael Espindola181e3ec2013-05-13 00:12:11 +00003804 if (Entity->getFormalLinkage() == InternalLinkage) {
Richard Smith80ad52f2013-01-02 11:42:31 +00003805 S.Diag(Arg->getLocStart(), S.getLangOpts().CPlusPlus11 ?
Richard Smithb4051e72012-04-04 21:11:30 +00003806 diag::warn_cxx98_compat_template_arg_object_internal :
3807 diag::ext_template_arg_object_internal)
3808 << !Func << Entity << Arg->getSourceRange();
3809 S.Diag(Entity->getLocation(), diag::note_template_arg_internal_object)
3810 << !Func;
Rafael Espindola181e3ec2013-05-13 00:12:11 +00003811 } else if (!Entity->hasLinkage()) {
Richard Smithb4051e72012-04-04 21:11:30 +00003812 S.Diag(Arg->getLocStart(), diag::err_template_arg_object_no_linkage)
3813 << !Func << Entity << Arg->getSourceRange();
3814 S.Diag(Entity->getLocation(), diag::note_template_arg_internal_object)
3815 << !Func;
3816 return true;
3817 }
3818
3819 if (Func) {
Douglas Gregorb7a09262010-04-01 18:32:35 +00003820 // If the template parameter has pointer type, the function decays.
3821 if (ParamType->isPointerType() && !AddressTaken)
3822 ArgType = S.Context.getPointerType(Func->getType());
3823 else if (AddressTaken && ParamType->isReferenceType()) {
3824 // If we originally had an address-of operator, but the
3825 // parameter has reference type, complain and (if things look
3826 // like they will work) drop the address-of operator.
3827 if (!S.Context.hasSameUnqualifiedType(Func->getType(),
3828 ParamType.getNonReferenceType())) {
3829 S.Diag(AddrOpLoc, diag::err_template_arg_address_of_non_pointer)
3830 << ParamType;
3831 S.Diag(Param->getLocation(), diag::note_template_param_here);
3832 return true;
3833 }
3834
3835 S.Diag(AddrOpLoc, diag::err_template_arg_address_of_non_pointer)
3836 << ParamType
3837 << FixItHint::CreateRemoval(AddrOpLoc);
3838 S.Diag(Param->getLocation(), diag::note_template_param_here);
3839
3840 ArgType = Func->getType();
3841 }
Richard Smithb4051e72012-04-04 21:11:30 +00003842 } else {
Douglas Gregorb7a09262010-04-01 18:32:35 +00003843 // A value of reference type is not an object.
3844 if (Var->getType()->isReferenceType()) {
Daniel Dunbar96a00142012-03-09 18:35:03 +00003845 S.Diag(Arg->getLocStart(),
Douglas Gregorb7a09262010-04-01 18:32:35 +00003846 diag::err_template_arg_reference_var)
3847 << Var->getType() << Arg->getSourceRange();
3848 S.Diag(Param->getLocation(), diag::note_template_param_here);
3849 return true;
3850 }
3851
Richard Smithb4051e72012-04-04 21:11:30 +00003852 // A template argument must have static storage duration.
Richard Smith38afbc72013-04-13 02:43:54 +00003853 if (Var->getTLSKind()) {
Richard Smithb4051e72012-04-04 21:11:30 +00003854 S.Diag(Arg->getLocStart(), diag::err_template_arg_thread_local)
3855 << Arg->getSourceRange();
3856 S.Diag(Var->getLocation(), diag::note_template_arg_refers_here);
3857 return true;
3858 }
Douglas Gregorb7a09262010-04-01 18:32:35 +00003859
3860 // If the template parameter has pointer type, we must have taken
3861 // the address of this object.
3862 if (ParamType->isReferenceType()) {
3863 if (AddressTaken) {
3864 // If we originally had an address-of operator, but the
3865 // parameter has reference type, complain and (if things look
3866 // like they will work) drop the address-of operator.
3867 if (!S.Context.hasSameUnqualifiedType(Var->getType(),
3868 ParamType.getNonReferenceType())) {
3869 S.Diag(AddrOpLoc, diag::err_template_arg_address_of_non_pointer)
3870 << ParamType;
3871 S.Diag(Param->getLocation(), diag::note_template_param_here);
3872 return true;
3873 }
3874
3875 S.Diag(AddrOpLoc, diag::err_template_arg_address_of_non_pointer)
3876 << ParamType
3877 << FixItHint::CreateRemoval(AddrOpLoc);
3878 S.Diag(Param->getLocation(), diag::note_template_param_here);
3879
3880 ArgType = Var->getType();
3881 }
3882 } else if (!AddressTaken && ParamType->isPointerType()) {
3883 if (Var->getType()->isArrayType()) {
3884 // Array-to-pointer decay.
3885 ArgType = S.Context.getArrayDecayedType(Var->getType());
3886 } else {
3887 // If the template parameter has pointer type but the address of
3888 // this object was not taken, complain and (possibly) recover by
3889 // taking the address of the entity.
3890 ArgType = S.Context.getPointerType(Var->getType());
3891 if (!S.Context.hasSameUnqualifiedType(ArgType, ParamType)) {
3892 S.Diag(Arg->getLocStart(), diag::err_template_arg_not_address_of)
3893 << ParamType;
3894 S.Diag(Param->getLocation(), diag::note_template_param_here);
3895 return true;
3896 }
3897
3898 S.Diag(Arg->getLocStart(), diag::err_template_arg_not_address_of)
3899 << ParamType
3900 << FixItHint::CreateInsertion(Arg->getLocStart(), "&");
3901
3902 S.Diag(Param->getLocation(), diag::note_template_param_here);
3903 }
3904 }
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003905 }
Mike Stump1eb44332009-09-09 15:08:12 +00003906
John McCallf85e1932011-06-15 23:02:42 +00003907 bool ObjCLifetimeConversion;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003908 if (ParamType->isPointerType() &&
Douglas Gregorb7a09262010-04-01 18:32:35 +00003909 !ParamType->getAs<PointerType>()->getPointeeType()->isFunctionType() &&
John McCallf85e1932011-06-15 23:02:42 +00003910 S.IsQualificationConversion(ArgType, ParamType, false,
3911 ObjCLifetimeConversion)) {
Douglas Gregorb7a09262010-04-01 18:32:35 +00003912 // For pointer-to-object types, qualification conversions are
3913 // permitted.
3914 } else {
3915 if (const ReferenceType *ParamRef = ParamType->getAs<ReferenceType>()) {
3916 if (!ParamRef->getPointeeType()->isFunctionType()) {
3917 // C++ [temp.arg.nontype]p5b3:
3918 // For a non-type template-parameter of type reference to
3919 // object, no conversions apply. The type referred to by the
3920 // reference may be more cv-qualified than the (otherwise
3921 // identical) type of the template- argument. The
3922 // template-parameter is bound directly to the
3923 // template-argument, which shall be an lvalue.
3924
3925 // FIXME: Other qualifiers?
3926 unsigned ParamQuals = ParamRef->getPointeeType().getCVRQualifiers();
3927 unsigned ArgQuals = ArgType.getCVRQualifiers();
3928
3929 if ((ParamQuals | ArgQuals) != ParamQuals) {
Daniel Dunbar96a00142012-03-09 18:35:03 +00003930 S.Diag(Arg->getLocStart(),
Douglas Gregorb7a09262010-04-01 18:32:35 +00003931 diag::err_template_arg_ref_bind_ignores_quals)
3932 << ParamType << Arg->getType()
3933 << Arg->getSourceRange();
3934 S.Diag(Param->getLocation(), diag::note_template_param_here);
3935 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003936 }
Douglas Gregorb7a09262010-04-01 18:32:35 +00003937 }
3938 }
3939
3940 // At this point, the template argument refers to an object or
3941 // function with external linkage. We now need to check whether the
3942 // argument and parameter types are compatible.
3943 if (!S.Context.hasSameUnqualifiedType(ArgType,
3944 ParamType.getNonReferenceType())) {
3945 // We can't perform this conversion or binding.
3946 if (ParamType->isReferenceType())
3947 S.Diag(Arg->getLocStart(), diag::err_template_arg_no_ref_bind)
John McCall91a57552011-07-15 05:09:51 +00003948 << ParamType << ArgIn->getType() << Arg->getSourceRange();
Douglas Gregorb7a09262010-04-01 18:32:35 +00003949 else
3950 S.Diag(Arg->getLocStart(), diag::err_template_arg_not_convertible)
John McCall91a57552011-07-15 05:09:51 +00003951 << ArgIn->getType() << ParamType << Arg->getSourceRange();
Douglas Gregorb7a09262010-04-01 18:32:35 +00003952 S.Diag(Param->getLocation(), diag::note_template_param_here);
3953 return true;
3954 }
3955 }
3956
3957 // Create the template argument.
Eli Friedmand7a6b162012-09-26 02:36:12 +00003958 Converted = TemplateArgument(cast<ValueDecl>(Entity->getCanonicalDecl()),
3959 ParamType->isReferenceType());
Nick Lewyckyb7e5eec2013-02-02 00:25:55 +00003960 S.MarkAnyDeclReferenced(Arg->getLocStart(), Entity, false);
Douglas Gregorb7a09262010-04-01 18:32:35 +00003961 return false;
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003962}
3963
3964/// \brief Checks whether the given template argument is a pointer to
3965/// member constant according to C++ [temp.arg.nontype]p1.
Douglas Gregor42963612012-04-10 17:08:25 +00003966static bool CheckTemplateArgumentPointerToMember(Sema &S,
3967 NonTypeTemplateParmDecl *Param,
3968 QualType ParamType,
3969 Expr *&ResultArg,
3970 TemplateArgument &Converted) {
Douglas Gregorcc45cb32009-02-11 19:52:55 +00003971 bool Invalid = false;
3972
Douglas Gregor42963612012-04-10 17:08:25 +00003973 // Check for a null pointer value.
3974 Expr *Arg = ResultArg;
3975 switch (isNullPointerValueTemplateArgument(S, Param, ParamType, Arg)) {
3976 case NPV_Error:
3977 return true;
3978 case NPV_NullPointer:
Richard Smith86e6fdc2012-04-26 01:51:03 +00003979 S.Diag(Arg->getExprLoc(), diag::warn_cxx98_compat_template_arg_null);
Eli Friedmand7a6b162012-09-26 02:36:12 +00003980 Converted = TemplateArgument(ParamType, /*isNullPtr*/true);
Douglas Gregor42963612012-04-10 17:08:25 +00003981 return false;
3982 case NPV_NotNullPointer:
3983 break;
3984 }
3985
3986 bool ObjCLifetimeConversion;
3987 if (S.IsQualificationConversion(Arg->getType(),
3988 ParamType.getNonReferenceType(),
3989 false, ObjCLifetimeConversion)) {
3990 Arg = S.ImpCastExprToType(Arg, ParamType, CK_NoOp,
3991 Arg->getValueKind()).take();
3992 ResultArg = Arg;
3993 } else if (!S.Context.hasSameUnqualifiedType(Arg->getType(),
3994 ParamType.getNonReferenceType())) {
3995 // We can't perform this conversion.
3996 S.Diag(Arg->getLocStart(), diag::err_template_arg_not_convertible)
3997 << Arg->getType() << ParamType << Arg->getSourceRange();
3998 S.Diag(Param->getLocation(), diag::note_template_param_here);
3999 return true;
4000 }
4001
Douglas Gregorcc45cb32009-02-11 19:52:55 +00004002 // See through any implicit casts we added to fix the type.
Eli Friedman73c39ab2009-10-20 08:27:19 +00004003 while (ImplicitCastExpr *Cast = dyn_cast<ImplicitCastExpr>(Arg))
Douglas Gregorcc45cb32009-02-11 19:52:55 +00004004 Arg = Cast->getSubExpr();
4005
4006 // C++ [temp.arg.nontype]p1:
Mike Stump1eb44332009-09-09 15:08:12 +00004007 //
Douglas Gregorcc45cb32009-02-11 19:52:55 +00004008 // A template-argument for a non-type, non-template
4009 // template-parameter shall be one of: [...]
4010 //
4011 // -- a pointer to member expressed as described in 5.3.1.
Douglas Gregora2813ce2009-10-23 18:54:35 +00004012 DeclRefExpr *DRE = 0;
Douglas Gregorcc45cb32009-02-11 19:52:55 +00004013
Abramo Bagnara2c5399f2010-09-13 06:06:58 +00004014 // In C++98/03 mode, give an extension warning on any extra parentheses.
4015 // See http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_defects.html#773
4016 bool ExtraParens = false;
Douglas Gregorcc45cb32009-02-11 19:52:55 +00004017 while (ParenExpr *Parens = dyn_cast<ParenExpr>(Arg)) {
Richard Smithebaf0e62011-10-18 20:49:44 +00004018 if (!Invalid && !ExtraParens) {
Douglas Gregor42963612012-04-10 17:08:25 +00004019 S.Diag(Arg->getLocStart(),
Richard Smith80ad52f2013-01-02 11:42:31 +00004020 S.getLangOpts().CPlusPlus11 ?
Douglas Gregor42963612012-04-10 17:08:25 +00004021 diag::warn_cxx98_compat_template_arg_extra_parens :
4022 diag::ext_template_arg_extra_parens)
Douglas Gregorcc45cb32009-02-11 19:52:55 +00004023 << Arg->getSourceRange();
Abramo Bagnara2c5399f2010-09-13 06:06:58 +00004024 ExtraParens = true;
Douglas Gregorcc45cb32009-02-11 19:52:55 +00004025 }
4026
4027 Arg = Parens->getSubExpr();
4028 }
4029
John McCall91a57552011-07-15 05:09:51 +00004030 while (SubstNonTypeTemplateParmExpr *subst =
4031 dyn_cast<SubstNonTypeTemplateParmExpr>(Arg))
4032 Arg = subst->getReplacement()->IgnoreImpCasts();
4033
Douglas Gregorcaddba02009-11-12 18:38:13 +00004034 // A pointer-to-member constant written &Class::member.
4035 if (UnaryOperator *UnOp = dyn_cast<UnaryOperator>(Arg)) {
John McCall2de56d12010-08-25 11:45:40 +00004036 if (UnOp->getOpcode() == UO_AddrOf) {
Douglas Gregora2813ce2009-10-23 18:54:35 +00004037 DRE = dyn_cast<DeclRefExpr>(UnOp->getSubExpr());
4038 if (DRE && !DRE->getQualifier())
4039 DRE = 0;
4040 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004041 }
Douglas Gregorcaddba02009-11-12 18:38:13 +00004042 // A constant of pointer-to-member type.
4043 else if ((DRE = dyn_cast<DeclRefExpr>(Arg))) {
4044 if (ValueDecl *VD = dyn_cast<ValueDecl>(DRE->getDecl())) {
4045 if (VD->getType()->isMemberPointerType()) {
4046 if (isa<NonTypeTemplateParmDecl>(VD) ||
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004047 (isa<VarDecl>(VD) &&
Douglas Gregor42963612012-04-10 17:08:25 +00004048 S.Context.getCanonicalType(VD->getType()).isConstQualified())) {
Eli Friedmand7a6b162012-09-26 02:36:12 +00004049 if (Arg->isTypeDependent() || Arg->isValueDependent()) {
John McCall3fa5cae2010-10-26 07:05:15 +00004050 Converted = TemplateArgument(Arg);
Eli Friedmand7a6b162012-09-26 02:36:12 +00004051 } else {
4052 VD = cast<ValueDecl>(VD->getCanonicalDecl());
4053 Converted = TemplateArgument(VD, /*isReferenceParam*/false);
4054 }
Douglas Gregorcaddba02009-11-12 18:38:13 +00004055 return Invalid;
4056 }
4057 }
4058 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004059
Douglas Gregorcaddba02009-11-12 18:38:13 +00004060 DRE = 0;
4061 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004062
Douglas Gregorcc45cb32009-02-11 19:52:55 +00004063 if (!DRE)
Douglas Gregor42963612012-04-10 17:08:25 +00004064 return S.Diag(Arg->getLocStart(),
4065 diag::err_template_arg_not_pointer_to_member_form)
Douglas Gregorcc45cb32009-02-11 19:52:55 +00004066 << Arg->getSourceRange();
4067
4068 if (isa<FieldDecl>(DRE->getDecl()) || isa<CXXMethodDecl>(DRE->getDecl())) {
4069 assert((isa<FieldDecl>(DRE->getDecl()) ||
4070 !cast<CXXMethodDecl>(DRE->getDecl())->isStatic()) &&
4071 "Only non-static member pointers can make it here");
4072
4073 // Okay: this is the address of a non-static member, and therefore
4074 // a member pointer constant.
Eli Friedmand7a6b162012-09-26 02:36:12 +00004075 if (Arg->isTypeDependent() || Arg->isValueDependent()) {
John McCall3fa5cae2010-10-26 07:05:15 +00004076 Converted = TemplateArgument(Arg);
Eli Friedmand7a6b162012-09-26 02:36:12 +00004077 } else {
4078 ValueDecl *D = cast<ValueDecl>(DRE->getDecl()->getCanonicalDecl());
4079 Converted = TemplateArgument(D, /*isReferenceParam*/false);
4080 }
Douglas Gregorcc45cb32009-02-11 19:52:55 +00004081 return Invalid;
4082 }
4083
4084 // We found something else, but we don't know specifically what it is.
Douglas Gregor42963612012-04-10 17:08:25 +00004085 S.Diag(Arg->getLocStart(),
4086 diag::err_template_arg_not_pointer_to_member_form)
4087 << Arg->getSourceRange();
4088 S.Diag(DRE->getDecl()->getLocation(), diag::note_template_arg_refers_here);
Douglas Gregorcc45cb32009-02-11 19:52:55 +00004089 return true;
4090}
4091
Douglas Gregorc15cb382009-02-09 23:23:08 +00004092/// \brief Check a template argument against its corresponding
4093/// non-type template parameter.
4094///
Douglas Gregor2943aed2009-03-03 04:44:36 +00004095/// This routine implements the semantics of C++ [temp.arg.nontype].
John Wiegley429bb272011-04-08 18:41:53 +00004096/// If an error occurred, it returns ExprError(); otherwise, it
4097/// returns the converted template argument. \p
Douglas Gregor2943aed2009-03-03 04:44:36 +00004098/// InstantiatedParamType is the type of the non-type template
4099/// parameter after it has been instantiated.
John Wiegley429bb272011-04-08 18:41:53 +00004100ExprResult Sema::CheckTemplateArgument(NonTypeTemplateParmDecl *Param,
4101 QualType InstantiatedParamType, Expr *Arg,
4102 TemplateArgument &Converted,
4103 CheckTemplateArgumentKind CTAK) {
Daniel Dunbar96a00142012-03-09 18:35:03 +00004104 SourceLocation StartLoc = Arg->getLocStart();
Douglas Gregor40808ce2009-03-09 23:48:35 +00004105
Douglas Gregor6ae5e662009-02-10 23:36:10 +00004106 // If either the parameter has a dependent type or the argument is
4107 // type-dependent, there's nothing we can check now.
Douglas Gregor40808ce2009-03-09 23:48:35 +00004108 if (InstantiatedParamType->isDependentType() || Arg->isTypeDependent()) {
4109 // FIXME: Produce a cloned, canonical expression?
Douglas Gregor02cbbd22009-06-11 18:10:32 +00004110 Converted = TemplateArgument(Arg);
John Wiegley429bb272011-04-08 18:41:53 +00004111 return Owned(Arg);
Douglas Gregor40808ce2009-03-09 23:48:35 +00004112 }
Douglas Gregor6ae5e662009-02-10 23:36:10 +00004113
4114 // C++ [temp.arg.nontype]p5:
4115 // The following conversions are performed on each expression used
4116 // as a non-type template-argument. If a non-type
4117 // template-argument cannot be converted to the type of the
4118 // corresponding template-parameter then the program is
4119 // ill-formed.
Douglas Gregor2943aed2009-03-03 04:44:36 +00004120 QualType ParamType = InstantiatedParamType;
Douglas Gregor2ade35e2010-06-16 00:17:44 +00004121 if (ParamType->isIntegralOrEnumerationType()) {
Richard Smith8ef7b202012-01-18 23:55:52 +00004122 // C++11:
4123 // -- for a non-type template-parameter of integral or
4124 // enumeration type, conversions permitted in a converted
4125 // constant expression are applied.
4126 //
4127 // C++98:
4128 // -- for a non-type template-parameter of integral or
4129 // enumeration type, integral promotions (4.5) and integral
4130 // conversions (4.7) are applied.
4131
4132 if (CTAK == CTAK_Deduced &&
4133 !Context.hasSameUnqualifiedType(ParamType, Arg->getType())) {
4134 // C++ [temp.deduct.type]p17:
4135 // If, in the declaration of a function template with a non-type
4136 // template-parameter, the non-type template-parameter is used
4137 // in an expression in the function parameter-list and, if the
4138 // corresponding template-argument is deduced, the
4139 // template-argument type shall match the type of the
4140 // template-parameter exactly, except that a template-argument
4141 // deduced from an array bound may be of any integral type.
4142 Diag(StartLoc, diag::err_deduced_non_type_template_arg_type_mismatch)
4143 << Arg->getType().getUnqualifiedType()
4144 << ParamType.getUnqualifiedType();
4145 Diag(Param->getLocation(), diag::note_template_param_here);
4146 return ExprError();
4147 }
4148
Richard Smith80ad52f2013-01-02 11:42:31 +00004149 if (getLangOpts().CPlusPlus11) {
Richard Smith8ef7b202012-01-18 23:55:52 +00004150 // We can't check arbitrary value-dependent arguments.
4151 // FIXME: If there's no viable conversion to the template parameter type,
4152 // we should be able to diagnose that prior to instantiation.
4153 if (Arg->isValueDependent()) {
4154 Converted = TemplateArgument(Arg);
4155 return Owned(Arg);
4156 }
4157
4158 // C++ [temp.arg.nontype]p1:
4159 // A template-argument for a non-type, non-template template-parameter
4160 // shall be one of:
4161 //
4162 // -- for a non-type template-parameter of integral or enumeration
4163 // type, a converted constant expression of the type of the
4164 // template-parameter; or
4165 llvm::APSInt Value;
4166 ExprResult ArgResult =
4167 CheckConvertedConstantExpression(Arg, ParamType, Value,
4168 CCEK_TemplateArg);
4169 if (ArgResult.isInvalid())
4170 return ExprError();
4171
4172 // Widen the argument value to sizeof(parameter type). This is almost
4173 // always a no-op, except when the parameter type is bool. In
4174 // that case, this may extend the argument from 1 bit to 8 bits.
4175 QualType IntegerType = ParamType;
4176 if (const EnumType *Enum = IntegerType->getAs<EnumType>())
4177 IntegerType = Enum->getDecl()->getIntegerType();
4178 Value = Value.extOrTrunc(Context.getTypeSize(IntegerType));
4179
Benjamin Kramer85524372012-06-07 15:09:51 +00004180 Converted = TemplateArgument(Context, Value,
4181 Context.getCanonicalType(ParamType));
Richard Smith8ef7b202012-01-18 23:55:52 +00004182 return ArgResult;
4183 }
4184
Richard Smith4f870622011-10-27 22:11:44 +00004185 ExprResult ArgResult = DefaultLvalueConversion(Arg);
4186 if (ArgResult.isInvalid())
4187 return ExprError();
4188 Arg = ArgResult.take();
4189
4190 QualType ArgType = Arg->getType();
4191
Douglas Gregor6ae5e662009-02-10 23:36:10 +00004192 // C++ [temp.arg.nontype]p1:
4193 // A template-argument for a non-type, non-template
4194 // template-parameter shall be one of:
4195 //
4196 // -- an integral constant-expression of integral or enumeration
4197 // type; or
4198 // -- the name of a non-type template-parameter; or
4199 SourceLocation NonConstantLoc;
Douglas Gregor3e00bad2009-02-17 01:05:43 +00004200 llvm::APSInt Value;
Douglas Gregor2ade35e2010-06-16 00:17:44 +00004201 if (!ArgType->isIntegralOrEnumerationType()) {
Daniel Dunbar96a00142012-03-09 18:35:03 +00004202 Diag(Arg->getLocStart(),
Douglas Gregor6ae5e662009-02-10 23:36:10 +00004203 diag::err_template_arg_not_integral_or_enumeral)
4204 << ArgType << Arg->getSourceRange();
4205 Diag(Param->getLocation(), diag::note_template_param_here);
John Wiegley429bb272011-04-08 18:41:53 +00004206 return ExprError();
Richard Smith282e7e62012-02-04 09:53:13 +00004207 } else if (!Arg->isValueDependent()) {
Douglas Gregorab41fe92012-05-04 22:38:52 +00004208 class TmplArgICEDiagnoser : public VerifyICEDiagnoser {
4209 QualType T;
4210
4211 public:
4212 TmplArgICEDiagnoser(QualType T) : T(T) { }
4213
4214 virtual void diagnoseNotICE(Sema &S, SourceLocation Loc,
4215 SourceRange SR) {
4216 S.Diag(Loc, diag::err_template_arg_not_ice) << T << SR;
4217 }
4218 } Diagnoser(ArgType);
4219
4220 Arg = VerifyIntegerConstantExpression(Arg, &Value, Diagnoser,
4221 false).take();
Richard Smith282e7e62012-02-04 09:53:13 +00004222 if (!Arg)
4223 return ExprError();
Douglas Gregor6ae5e662009-02-10 23:36:10 +00004224 }
4225
Douglas Gregor02024a92010-03-28 02:42:43 +00004226 // From here on out, all we care about are the unqualified forms
4227 // of the parameter and argument types.
4228 ParamType = ParamType.getUnqualifiedType();
4229 ArgType = ArgType.getUnqualifiedType();
Douglas Gregor6ae5e662009-02-10 23:36:10 +00004230
4231 // Try to convert the argument to the parameter's type.
Douglas Gregorff524392009-11-04 21:50:46 +00004232 if (Context.hasSameType(ParamType, ArgType)) {
Douglas Gregor6ae5e662009-02-10 23:36:10 +00004233 // Okay: no conversion necessary
John McCalldaa8e4e2010-11-15 09:13:47 +00004234 } else if (ParamType->isBooleanType()) {
4235 // This is an integral-to-boolean conversion.
John Wiegley429bb272011-04-08 18:41:53 +00004236 Arg = ImpCastExprToType(Arg, ParamType, CK_IntegralToBoolean).take();
Douglas Gregor6ae5e662009-02-10 23:36:10 +00004237 } else if (IsIntegralPromotion(Arg, ArgType, ParamType) ||
4238 !ParamType->isEnumeralType()) {
4239 // This is an integral promotion or conversion.
John Wiegley429bb272011-04-08 18:41:53 +00004240 Arg = ImpCastExprToType(Arg, ParamType, CK_IntegralCast).take();
Douglas Gregor6ae5e662009-02-10 23:36:10 +00004241 } else {
4242 // We can't perform this conversion.
Daniel Dunbar96a00142012-03-09 18:35:03 +00004243 Diag(Arg->getLocStart(),
Douglas Gregor6ae5e662009-02-10 23:36:10 +00004244 diag::err_template_arg_not_convertible)
Douglas Gregor2943aed2009-03-03 04:44:36 +00004245 << Arg->getType() << InstantiatedParamType << Arg->getSourceRange();
Douglas Gregor6ae5e662009-02-10 23:36:10 +00004246 Diag(Param->getLocation(), diag::note_template_param_here);
John Wiegley429bb272011-04-08 18:41:53 +00004247 return ExprError();
Douglas Gregor6ae5e662009-02-10 23:36:10 +00004248 }
4249
Douglas Gregorc7469372011-05-04 21:55:00 +00004250 // Add the value of this argument to the list of converted
4251 // arguments. We use the bitwidth and signedness of the template
4252 // parameter.
4253 if (Arg->isValueDependent()) {
4254 // The argument is value-dependent. Create a new
4255 // TemplateArgument with the converted expression.
4256 Converted = TemplateArgument(Arg);
4257 return Owned(Arg);
4258 }
4259
Douglas Gregorf80a9d52009-03-14 00:20:21 +00004260 QualType IntegerType = Context.getCanonicalType(ParamType);
John McCall183700f2009-09-21 23:43:11 +00004261 if (const EnumType *Enum = IntegerType->getAs<EnumType>())
Douglas Gregor02cbbd22009-06-11 18:10:32 +00004262 IntegerType = Context.getCanonicalType(Enum->getDecl()->getIntegerType());
Douglas Gregorf80a9d52009-03-14 00:20:21 +00004263
Douglas Gregorc7469372011-05-04 21:55:00 +00004264 if (ParamType->isBooleanType()) {
4265 // Value must be zero or one.
4266 Value = Value != 0;
4267 unsigned AllowedBits = Context.getTypeSize(IntegerType);
4268 if (Value.getBitWidth() != AllowedBits)
4269 Value = Value.extOrTrunc(AllowedBits);
Douglas Gregor575a1c92011-05-20 16:38:50 +00004270 Value.setIsSigned(IntegerType->isSignedIntegerOrEnumerationType());
Douglas Gregorc7469372011-05-04 21:55:00 +00004271 } else {
Douglas Gregor1a6e0342010-03-26 02:38:37 +00004272 llvm::APSInt OldValue = Value;
Douglas Gregorc7469372011-05-04 21:55:00 +00004273
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004274 // Coerce the template argument's value to the value it will have
Douglas Gregor1a6e0342010-03-26 02:38:37 +00004275 // based on the template parameter's type.
Douglas Gregor0d4fd8e2010-03-26 00:39:40 +00004276 unsigned AllowedBits = Context.getTypeSize(IntegerType);
Douglas Gregor0d4fd8e2010-03-26 00:39:40 +00004277 if (Value.getBitWidth() != AllowedBits)
Jay Foad9f71a8f2010-12-07 08:25:34 +00004278 Value = Value.extOrTrunc(AllowedBits);
Douglas Gregor575a1c92011-05-20 16:38:50 +00004279 Value.setIsSigned(IntegerType->isSignedIntegerOrEnumerationType());
Douglas Gregorc7469372011-05-04 21:55:00 +00004280
Douglas Gregor1a6e0342010-03-26 02:38:37 +00004281 // Complain if an unsigned parameter received a negative value.
Douglas Gregor575a1c92011-05-20 16:38:50 +00004282 if (IntegerType->isUnsignedIntegerOrEnumerationType()
Douglas Gregorc7469372011-05-04 21:55:00 +00004283 && (OldValue.isSigned() && OldValue.isNegative())) {
Daniel Dunbar96a00142012-03-09 18:35:03 +00004284 Diag(Arg->getLocStart(), diag::warn_template_arg_negative)
Douglas Gregor1a6e0342010-03-26 02:38:37 +00004285 << OldValue.toString(10) << Value.toString(10) << Param->getType()
4286 << Arg->getSourceRange();
4287 Diag(Param->getLocation(), diag::note_template_param_here);
4288 }
Douglas Gregorc7469372011-05-04 21:55:00 +00004289
Douglas Gregor1a6e0342010-03-26 02:38:37 +00004290 // Complain if we overflowed the template parameter's type.
4291 unsigned RequiredBits;
Douglas Gregor575a1c92011-05-20 16:38:50 +00004292 if (IntegerType->isUnsignedIntegerOrEnumerationType())
Douglas Gregor1a6e0342010-03-26 02:38:37 +00004293 RequiredBits = OldValue.getActiveBits();
4294 else if (OldValue.isUnsigned())
4295 RequiredBits = OldValue.getActiveBits() + 1;
4296 else
4297 RequiredBits = OldValue.getMinSignedBits();
4298 if (RequiredBits > AllowedBits) {
Daniel Dunbar96a00142012-03-09 18:35:03 +00004299 Diag(Arg->getLocStart(),
Douglas Gregor1a6e0342010-03-26 02:38:37 +00004300 diag::warn_template_arg_too_large)
4301 << OldValue.toString(10) << Value.toString(10) << Param->getType()
4302 << Arg->getSourceRange();
4303 Diag(Param->getLocation(), diag::note_template_param_here);
4304 }
Douglas Gregorf80a9d52009-03-14 00:20:21 +00004305 }
Douglas Gregor3e00bad2009-02-17 01:05:43 +00004306
Benjamin Kramer85524372012-06-07 15:09:51 +00004307 Converted = TemplateArgument(Context, Value,
Douglas Gregor6b63f552011-08-09 01:55:14 +00004308 ParamType->isEnumeralType()
4309 ? Context.getCanonicalType(ParamType)
4310 : IntegerType);
John Wiegley429bb272011-04-08 18:41:53 +00004311 return Owned(Arg);
Douglas Gregor6ae5e662009-02-10 23:36:10 +00004312 }
Douglas Gregora35284b2009-02-11 00:19:33 +00004313
Richard Smith4f870622011-10-27 22:11:44 +00004314 QualType ArgType = Arg->getType();
John McCall6bb80172010-03-30 21:47:33 +00004315 DeclAccessPair FoundResult; // temporary for ResolveOverloadedFunction
4316
Douglas Gregorb86b0572009-02-11 01:18:59 +00004317 // Handle pointer-to-function, reference-to-function, and
4318 // pointer-to-member-function all in (roughly) the same way.
4319 if (// -- For a non-type template-parameter of type pointer to
4320 // function, only the function-to-pointer conversion (4.3) is
4321 // applied. If the template-argument represents a set of
4322 // overloaded functions (or a pointer to such), the matching
4323 // function is selected from the set (13.4).
4324 (ParamType->isPointerType() &&
Ted Kremenek6217b802009-07-29 21:53:49 +00004325 ParamType->getAs<PointerType>()->getPointeeType()->isFunctionType()) ||
Douglas Gregorb86b0572009-02-11 01:18:59 +00004326 // -- For a non-type template-parameter of type reference to
4327 // function, no conversions apply. If the template-argument
4328 // represents a set of overloaded functions, the matching
4329 // function is selected from the set (13.4).
4330 (ParamType->isReferenceType() &&
Ted Kremenek6217b802009-07-29 21:53:49 +00004331 ParamType->getAs<ReferenceType>()->getPointeeType()->isFunctionType()) ||
Douglas Gregorb86b0572009-02-11 01:18:59 +00004332 // -- For a non-type template-parameter of type pointer to
4333 // member function, no conversions apply. If the
4334 // template-argument represents a set of overloaded member
4335 // functions, the matching member function is selected from
4336 // the set (13.4).
4337 (ParamType->isMemberPointerType() &&
Ted Kremenek6217b802009-07-29 21:53:49 +00004338 ParamType->getAs<MemberPointerType>()->getPointeeType()
Douglas Gregorb86b0572009-02-11 01:18:59 +00004339 ->isFunctionType())) {
Douglas Gregorb7a09262010-04-01 18:32:35 +00004340
Douglas Gregor1a8cf732010-04-14 23:11:21 +00004341 if (Arg->getType() == Context.OverloadTy) {
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004342 if (FunctionDecl *Fn = ResolveAddressOfOverloadedFunction(Arg, ParamType,
Douglas Gregor1a8cf732010-04-14 23:11:21 +00004343 true,
4344 FoundResult)) {
Daniel Dunbar96a00142012-03-09 18:35:03 +00004345 if (DiagnoseUseOfDecl(Fn, Arg->getLocStart()))
John Wiegley429bb272011-04-08 18:41:53 +00004346 return ExprError();
Douglas Gregor1a8cf732010-04-14 23:11:21 +00004347
4348 Arg = FixOverloadedFunctionReference(Arg, FoundResult, Fn);
4349 ArgType = Arg->getType();
4350 } else
John Wiegley429bb272011-04-08 18:41:53 +00004351 return ExprError();
Douglas Gregora35284b2009-02-11 00:19:33 +00004352 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004353
John Wiegley429bb272011-04-08 18:41:53 +00004354 if (!ParamType->isMemberPointerType()) {
4355 if (CheckTemplateArgumentAddressOfObjectOrFunction(*this, Param,
4356 ParamType,
4357 Arg, Converted))
4358 return ExprError();
4359 return Owned(Arg);
4360 }
Douglas Gregorb7a09262010-04-01 18:32:35 +00004361
Douglas Gregor42963612012-04-10 17:08:25 +00004362 if (CheckTemplateArgumentPointerToMember(*this, Param, ParamType, Arg,
4363 Converted))
John Wiegley429bb272011-04-08 18:41:53 +00004364 return ExprError();
4365 return Owned(Arg);
Douglas Gregora35284b2009-02-11 00:19:33 +00004366 }
4367
Chris Lattnerfe90de72009-02-20 21:37:53 +00004368 if (ParamType->isPointerType()) {
Douglas Gregorb86b0572009-02-11 01:18:59 +00004369 // -- for a non-type template-parameter of type pointer to
4370 // object, qualification conversions (4.4) and the
4371 // array-to-pointer conversion (4.2) are applied.
Sebastian Redl6e8ed162009-05-10 18:38:11 +00004372 // C++0x also allows a value of std::nullptr_t.
Eli Friedman13578692010-08-05 02:49:48 +00004373 assert(ParamType->getPointeeType()->isIncompleteOrObjectType() &&
Douglas Gregorb86b0572009-02-11 01:18:59 +00004374 "Only object pointers allowed here");
Douglas Gregorf684e6e2009-02-11 00:44:29 +00004375
John Wiegley429bb272011-04-08 18:41:53 +00004376 if (CheckTemplateArgumentAddressOfObjectOrFunction(*this, Param,
4377 ParamType,
4378 Arg, Converted))
4379 return ExprError();
4380 return Owned(Arg);
Douglas Gregorf684e6e2009-02-11 00:44:29 +00004381 }
Mike Stump1eb44332009-09-09 15:08:12 +00004382
Ted Kremenek6217b802009-07-29 21:53:49 +00004383 if (const ReferenceType *ParamRefType = ParamType->getAs<ReferenceType>()) {
Douglas Gregorb86b0572009-02-11 01:18:59 +00004384 // -- For a non-type template-parameter of type reference to
4385 // object, no conversions apply. The type referred to by the
4386 // reference may be more cv-qualified than the (otherwise
4387 // identical) type of the template-argument. The
4388 // template-parameter is bound directly to the
4389 // template-argument, which must be an lvalue.
Eli Friedman13578692010-08-05 02:49:48 +00004390 assert(ParamRefType->getPointeeType()->isIncompleteOrObjectType() &&
Douglas Gregorb86b0572009-02-11 01:18:59 +00004391 "Only object references allowed here");
Douglas Gregorf684e6e2009-02-11 00:44:29 +00004392
Douglas Gregor1a8cf732010-04-14 23:11:21 +00004393 if (Arg->getType() == Context.OverloadTy) {
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004394 if (FunctionDecl *Fn = ResolveAddressOfOverloadedFunction(Arg,
4395 ParamRefType->getPointeeType(),
Douglas Gregor1a8cf732010-04-14 23:11:21 +00004396 true,
4397 FoundResult)) {
Daniel Dunbar96a00142012-03-09 18:35:03 +00004398 if (DiagnoseUseOfDecl(Fn, Arg->getLocStart()))
John Wiegley429bb272011-04-08 18:41:53 +00004399 return ExprError();
Douglas Gregor1a8cf732010-04-14 23:11:21 +00004400
4401 Arg = FixOverloadedFunctionReference(Arg, FoundResult, Fn);
4402 ArgType = Arg->getType();
4403 } else
John Wiegley429bb272011-04-08 18:41:53 +00004404 return ExprError();
Douglas Gregorb86b0572009-02-11 01:18:59 +00004405 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004406
John Wiegley429bb272011-04-08 18:41:53 +00004407 if (CheckTemplateArgumentAddressOfObjectOrFunction(*this, Param,
4408 ParamType,
4409 Arg, Converted))
4410 return ExprError();
4411 return Owned(Arg);
Douglas Gregorb86b0572009-02-11 01:18:59 +00004412 }
Douglas Gregor658bbb52009-02-11 16:16:59 +00004413
Douglas Gregor42963612012-04-10 17:08:25 +00004414 // Deal with parameters of type std::nullptr_t.
4415 if (ParamType->isNullPtrType()) {
4416 if (Arg->isTypeDependent() || Arg->isValueDependent()) {
4417 Converted = TemplateArgument(Arg);
4418 return Owned(Arg);
4419 }
4420
4421 switch (isNullPointerValueTemplateArgument(*this, Param, ParamType, Arg)) {
4422 case NPV_NotNullPointer:
4423 Diag(Arg->getExprLoc(), diag::err_template_arg_not_convertible)
4424 << Arg->getType() << ParamType;
4425 Diag(Param->getLocation(), diag::note_template_param_here);
4426 return ExprError();
4427
4428 case NPV_Error:
4429 return ExprError();
4430
4431 case NPV_NullPointer:
Richard Smith86e6fdc2012-04-26 01:51:03 +00004432 Diag(Arg->getExprLoc(), diag::warn_cxx98_compat_template_arg_null);
Eli Friedmand7a6b162012-09-26 02:36:12 +00004433 Converted = TemplateArgument(ParamType, /*isNullPtr*/true);
Dmitri Gribenko1ad23d62012-09-10 21:20:09 +00004434 return Owned(Arg);
Douglas Gregor42963612012-04-10 17:08:25 +00004435 }
4436 }
4437
Douglas Gregor658bbb52009-02-11 16:16:59 +00004438 // -- For a non-type template-parameter of type pointer to data
4439 // member, qualification conversions (4.4) are applied.
4440 assert(ParamType->isMemberPointerType() && "Only pointers to members remain");
4441
Douglas Gregor42963612012-04-10 17:08:25 +00004442 if (CheckTemplateArgumentPointerToMember(*this, Param, ParamType, Arg,
4443 Converted))
John Wiegley429bb272011-04-08 18:41:53 +00004444 return ExprError();
4445 return Owned(Arg);
Douglas Gregorc15cb382009-02-09 23:23:08 +00004446}
4447
4448/// \brief Check a template argument against its corresponding
4449/// template template parameter.
4450///
4451/// This routine implements the semantics of C++ [temp.arg.template].
4452/// It returns true if an error occurred, and false otherwise.
4453bool Sema::CheckTemplateArgument(TemplateTemplateParmDecl *Param,
Richard Smith6964b3f2012-09-07 02:06:42 +00004454 const TemplateArgumentLoc &Arg,
4455 unsigned ArgumentPackIndex) {
Eli Friedmand7a6b162012-09-26 02:36:12 +00004456 TemplateName Name = Arg.getArgument().getAsTemplateOrTemplatePattern();
Douglas Gregor788cd062009-11-11 01:00:40 +00004457 TemplateDecl *Template = Name.getAsTemplateDecl();
4458 if (!Template) {
4459 // Any dependent template name is fine.
4460 assert(Name.isDependent() && "Non-dependent template isn't a declaration?");
4461 return false;
4462 }
Douglas Gregordd0574e2009-02-10 00:24:35 +00004463
Richard Smith3e4c6c42011-05-05 21:57:07 +00004464 // C++0x [temp.arg.template]p1:
Douglas Gregordd0574e2009-02-10 00:24:35 +00004465 // A template-argument for a template template-parameter shall be
Richard Smith3e4c6c42011-05-05 21:57:07 +00004466 // the name of a class template or an alias template, expressed as an
4467 // id-expression. When the template-argument names a class template, only
Douglas Gregordd0574e2009-02-10 00:24:35 +00004468 // primary class templates are considered when matching the
4469 // template template argument with the corresponding parameter;
4470 // partial specializations are not considered even if their
4471 // parameter lists match that of the template template parameter.
Douglas Gregorba1ecb52009-06-12 19:43:02 +00004472 //
4473 // Note that we also allow template template parameters here, which
4474 // will happen when we are dealing with, e.g., class template
4475 // partial specializations.
Mike Stump1eb44332009-09-09 15:08:12 +00004476 if (!isa<ClassTemplateDecl>(Template) &&
Richard Smith3e4c6c42011-05-05 21:57:07 +00004477 !isa<TemplateTemplateParmDecl>(Template) &&
4478 !isa<TypeAliasTemplateDecl>(Template)) {
Mike Stump1eb44332009-09-09 15:08:12 +00004479 assert(isa<FunctionTemplateDecl>(Template) &&
Douglas Gregordd0574e2009-02-10 00:24:35 +00004480 "Only function templates are possible here");
Douglas Gregor788cd062009-11-11 01:00:40 +00004481 Diag(Arg.getLocation(), diag::err_template_arg_not_class_template);
Douglas Gregore53060f2009-06-25 22:08:12 +00004482 Diag(Template->getLocation(), diag::note_template_arg_refers_here_func)
Douglas Gregordd0574e2009-02-10 00:24:35 +00004483 << Template;
4484 }
4485
Richard Smith6964b3f2012-09-07 02:06:42 +00004486 TemplateParameterList *Params = Param->getTemplateParameters();
4487 if (Param->isExpandedParameterPack())
4488 Params = Param->getExpansionTemplateParameters(ArgumentPackIndex);
4489
Douglas Gregordd0574e2009-02-10 00:24:35 +00004490 return !TemplateParameterListsAreEqual(Template->getTemplateParameters(),
Richard Smith6964b3f2012-09-07 02:06:42 +00004491 Params,
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004492 true,
Douglas Gregorfb898e12009-11-12 16:20:59 +00004493 TPL_TemplateTemplateArgumentMatch,
Douglas Gregor788cd062009-11-11 01:00:40 +00004494 Arg.getLocation());
Douglas Gregorc15cb382009-02-09 23:23:08 +00004495}
4496
Douglas Gregor02024a92010-03-28 02:42:43 +00004497/// \brief Given a non-type template argument that refers to a
4498/// declaration and the type of its corresponding non-type template
4499/// parameter, produce an expression that properly refers to that
4500/// declaration.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004501ExprResult
Douglas Gregor02024a92010-03-28 02:42:43 +00004502Sema::BuildExpressionFromDeclTemplateArgument(const TemplateArgument &Arg,
4503 QualType ParamType,
4504 SourceLocation Loc) {
David Blaikiec0cedbe2013-02-27 22:10:40 +00004505 // C++ [temp.param]p8:
4506 //
4507 // A non-type template-parameter of type "array of T" or
4508 // "function returning T" is adjusted to be of type "pointer to
4509 // T" or "pointer to function returning T", respectively.
4510 if (ParamType->isArrayType())
4511 ParamType = Context.getArrayDecayedType(ParamType);
4512 else if (ParamType->isFunctionType())
4513 ParamType = Context.getPointerType(ParamType);
4514
Douglas Gregord2008e22012-04-06 22:40:38 +00004515 // For a NULL non-type template argument, return nullptr casted to the
4516 // parameter's type.
Eli Friedmand7a6b162012-09-26 02:36:12 +00004517 if (Arg.getKind() == TemplateArgument::NullPtr) {
Douglas Gregord2008e22012-04-06 22:40:38 +00004518 return ImpCastExprToType(
4519 new (Context) CXXNullPtrLiteralExpr(Context.NullPtrTy, Loc),
4520 ParamType,
4521 ParamType->getAs<MemberPointerType>()
4522 ? CK_NullToMemberPointer
4523 : CK_NullToPointer);
4524 }
Eli Friedmand7a6b162012-09-26 02:36:12 +00004525 assert(Arg.getKind() == TemplateArgument::Declaration &&
4526 "Only declaration template arguments permitted here");
4527
Douglas Gregor02024a92010-03-28 02:42:43 +00004528 ValueDecl *VD = cast<ValueDecl>(Arg.getAsDecl());
4529
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004530 if (VD->getDeclContext()->isRecord() &&
Douglas Gregor02024a92010-03-28 02:42:43 +00004531 (isa<CXXMethodDecl>(VD) || isa<FieldDecl>(VD))) {
4532 // If the value is a class member, we might have a pointer-to-member.
4533 // Determine whether the non-type template template parameter is of
4534 // pointer-to-member type. If so, we need to build an appropriate
4535 // expression for a pointer-to-member, since a "normal" DeclRefExpr
4536 // would refer to the member itself.
4537 if (ParamType->isMemberPointerType()) {
4538 QualType ClassType
4539 = Context.getTypeDeclType(cast<RecordDecl>(VD->getDeclContext()));
4540 NestedNameSpecifier *Qualifier
John McCall9ae2f072010-08-23 23:25:46 +00004541 = NestedNameSpecifier::Create(Context, 0, false,
4542 ClassType.getTypePtr());
Douglas Gregor02024a92010-03-28 02:42:43 +00004543 CXXScopeSpec SS;
Douglas Gregorc34348a2011-02-24 17:54:50 +00004544 SS.MakeTrivial(Context, Qualifier, Loc);
John McCalldfa1edb2010-11-23 20:48:44 +00004545
4546 // The actual value-ness of this is unimportant, but for
4547 // internal consistency's sake, references to instance methods
4548 // are r-values.
4549 ExprValueKind VK = VK_LValue;
4550 if (isa<CXXMethodDecl>(VD) && cast<CXXMethodDecl>(VD)->isInstance())
4551 VK = VK_RValue;
4552
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004553 ExprResult RefExpr = BuildDeclRefExpr(VD,
John McCallf89e55a2010-11-18 06:31:45 +00004554 VD->getType().getNonReferenceType(),
John McCalldfa1edb2010-11-23 20:48:44 +00004555 VK,
John McCallf89e55a2010-11-18 06:31:45 +00004556 Loc,
4557 &SS);
Douglas Gregor02024a92010-03-28 02:42:43 +00004558 if (RefExpr.isInvalid())
4559 return ExprError();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004560
John McCall2de56d12010-08-25 11:45:40 +00004561 RefExpr = CreateBuiltinUnaryOp(Loc, UO_AddrOf, RefExpr.get());
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004562
Douglas Gregorc0c83002010-04-30 21:46:38 +00004563 // We might need to perform a trailing qualification conversion, since
4564 // the element type on the parameter could be more qualified than the
4565 // element type in the expression we constructed.
John McCallf85e1932011-06-15 23:02:42 +00004566 bool ObjCLifetimeConversion;
Douglas Gregorc0c83002010-04-30 21:46:38 +00004567 if (IsQualificationConversion(((Expr*) RefExpr.get())->getType(),
John McCallf85e1932011-06-15 23:02:42 +00004568 ParamType.getUnqualifiedType(), false,
4569 ObjCLifetimeConversion))
John Wiegley429bb272011-04-08 18:41:53 +00004570 RefExpr = ImpCastExprToType(RefExpr.take(), ParamType.getUnqualifiedType(), CK_NoOp);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004571
Douglas Gregor02024a92010-03-28 02:42:43 +00004572 assert(!RefExpr.isInvalid() &&
4573 Context.hasSameType(((Expr*) RefExpr.get())->getType(),
Douglas Gregorc0c83002010-04-30 21:46:38 +00004574 ParamType.getUnqualifiedType()));
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00004575 return RefExpr;
Douglas Gregor02024a92010-03-28 02:42:43 +00004576 }
4577 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004578
Douglas Gregor02024a92010-03-28 02:42:43 +00004579 QualType T = VD->getType().getNonReferenceType();
Douglas Gregorb9df75f2013-01-16 00:52:15 +00004580
Douglas Gregor02024a92010-03-28 02:42:43 +00004581 if (ParamType->isPointerType()) {
Douglas Gregorb7a09262010-04-01 18:32:35 +00004582 // When the non-type template parameter is a pointer, take the
4583 // address of the declaration.
John McCallf89e55a2010-11-18 06:31:45 +00004584 ExprResult RefExpr = BuildDeclRefExpr(VD, T, VK_LValue, Loc);
Douglas Gregor02024a92010-03-28 02:42:43 +00004585 if (RefExpr.isInvalid())
4586 return ExprError();
Douglas Gregorb7a09262010-04-01 18:32:35 +00004587
4588 if (T->isFunctionType() || T->isArrayType()) {
4589 // Decay functions and arrays.
John Wiegley429bb272011-04-08 18:41:53 +00004590 RefExpr = DefaultFunctionArrayConversion(RefExpr.take());
4591 if (RefExpr.isInvalid())
4592 return ExprError();
Douglas Gregorb7a09262010-04-01 18:32:35 +00004593
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00004594 return RefExpr;
Douglas Gregor02024a92010-03-28 02:42:43 +00004595 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004596
Douglas Gregorb7a09262010-04-01 18:32:35 +00004597 // Take the address of everything else
John McCall2de56d12010-08-25 11:45:40 +00004598 return CreateBuiltinUnaryOp(Loc, UO_AddrOf, RefExpr.get());
Douglas Gregor02024a92010-03-28 02:42:43 +00004599 }
4600
John McCallf89e55a2010-11-18 06:31:45 +00004601 ExprValueKind VK = VK_RValue;
4602
Douglas Gregor02024a92010-03-28 02:42:43 +00004603 // If the non-type template parameter has reference type, qualify the
4604 // resulting declaration reference with the extra qualifiers on the
4605 // type that the reference refers to.
John McCallf89e55a2010-11-18 06:31:45 +00004606 if (const ReferenceType *TargetRef = ParamType->getAs<ReferenceType>()) {
4607 VK = VK_LValue;
4608 T = Context.getQualifiedType(T,
4609 TargetRef->getPointeeType().getQualifiers());
Douglas Gregorb9df75f2013-01-16 00:52:15 +00004610 } else if (isa<FunctionDecl>(VD)) {
4611 // References to functions are always lvalues.
4612 VK = VK_LValue;
John McCallf89e55a2010-11-18 06:31:45 +00004613 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004614
John McCallf89e55a2010-11-18 06:31:45 +00004615 return BuildDeclRefExpr(VD, T, VK, Loc);
Douglas Gregor02024a92010-03-28 02:42:43 +00004616}
4617
4618/// \brief Construct a new expression that refers to the given
4619/// integral template argument with the given source-location
4620/// information.
4621///
4622/// This routine takes care of the mapping from an integral template
4623/// argument (which may have any integral type) to the appropriate
4624/// literal value.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004625ExprResult
Douglas Gregor02024a92010-03-28 02:42:43 +00004626Sema::BuildExpressionFromIntegralTemplateArgument(const TemplateArgument &Arg,
4627 SourceLocation Loc) {
4628 assert(Arg.getKind() == TemplateArgument::Integral &&
Douglas Gregord3731192011-01-10 07:32:04 +00004629 "Operation is only valid for integral template arguments");
Benjamin Kramer39ad0f02012-11-21 17:42:47 +00004630 QualType OrigT = Arg.getIntegralType();
4631
4632 // If this is an enum type that we're instantiating, we need to use an integer
4633 // type the same size as the enumerator. We don't want to build an
4634 // IntegerLiteral with enum type. The integer type of an enum type can be of
4635 // any integral type with C++11 enum classes, make sure we create the right
4636 // type of literal for it.
4637 QualType T = OrigT;
4638 if (const EnumType *ET = OrigT->getAs<EnumType>())
4639 T = ET->getDecl()->getIntegerType();
4640
4641 Expr *E;
Douglas Gregor5cee1192011-07-27 05:40:30 +00004642 if (T->isAnyCharacterType()) {
4643 CharacterLiteral::CharacterKind Kind;
4644 if (T->isWideCharType())
4645 Kind = CharacterLiteral::Wide;
4646 else if (T->isChar16Type())
4647 Kind = CharacterLiteral::UTF16;
4648 else if (T->isChar32Type())
4649 Kind = CharacterLiteral::UTF32;
4650 else
4651 Kind = CharacterLiteral::Ascii;
4652
Benjamin Kramer39ad0f02012-11-21 17:42:47 +00004653 E = new (Context) CharacterLiteral(Arg.getAsIntegral().getZExtValue(),
4654 Kind, T, Loc);
4655 } else if (T->isBooleanType()) {
4656 E = new (Context) CXXBoolLiteralExpr(Arg.getAsIntegral().getBoolValue(),
4657 T, Loc);
4658 } else if (T->isNullPtrType()) {
4659 E = new (Context) CXXNullPtrLiteralExpr(Context.NullPtrTy, Loc);
4660 } else {
4661 E = IntegerLiteral::Create(Context, Arg.getAsIntegral(), T, Loc);
Douglas Gregor5cee1192011-07-27 05:40:30 +00004662 }
4663
Benjamin Kramer39ad0f02012-11-21 17:42:47 +00004664 if (OrigT->isEnumeralType()) {
John McCall4e9272d2011-07-15 07:47:58 +00004665 // FIXME: This is a hack. We need a better way to handle substituted
4666 // non-type template parameters.
Benjamin Kramer39ad0f02012-11-21 17:42:47 +00004667 E = CStyleCastExpr::Create(Context, OrigT, VK_RValue, CK_IntegralCast, E, 0,
4668 Context.getTrivialTypeSourceInfo(OrigT, Loc),
John McCall4e9272d2011-07-15 07:47:58 +00004669 Loc, Loc);
4670 }
4671
4672 return Owned(E);
Douglas Gregor02024a92010-03-28 02:42:43 +00004673}
4674
Douglas Gregorab7ddf02011-01-12 23:45:44 +00004675/// \brief Match two template parameters within template parameter lists.
4676static bool MatchTemplateParameterKind(Sema &S, NamedDecl *New, NamedDecl *Old,
4677 bool Complain,
4678 Sema::TemplateParameterListEqualKind Kind,
4679 SourceLocation TemplateArgLoc) {
4680 // Check the actual kind (type, non-type, template).
4681 if (Old->getKind() != New->getKind()) {
4682 if (Complain) {
4683 unsigned NextDiag = diag::err_template_param_different_kind;
4684 if (TemplateArgLoc.isValid()) {
4685 S.Diag(TemplateArgLoc, diag::err_template_arg_template_params_mismatch);
4686 NextDiag = diag::note_template_param_different_kind;
4687 }
4688 S.Diag(New->getLocation(), NextDiag)
4689 << (Kind != Sema::TPL_TemplateMatch);
4690 S.Diag(Old->getLocation(), diag::note_template_prev_declaration)
4691 << (Kind != Sema::TPL_TemplateMatch);
4692 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004693
Douglas Gregorab7ddf02011-01-12 23:45:44 +00004694 return false;
4695 }
4696
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004697 // Check that both are parameter packs are neither are parameter packs.
4698 // However, if we are matching a template template argument to a
Douglas Gregora0347822011-01-13 00:08:50 +00004699 // template template parameter, the template template parameter can have
4700 // a parameter pack where the template template argument does not.
4701 if (Old->isTemplateParameterPack() != New->isTemplateParameterPack() &&
4702 !(Kind == Sema::TPL_TemplateTemplateArgumentMatch &&
4703 Old->isTemplateParameterPack())) {
Douglas Gregorab7ddf02011-01-12 23:45:44 +00004704 if (Complain) {
4705 unsigned NextDiag = diag::err_template_parameter_pack_non_pack;
4706 if (TemplateArgLoc.isValid()) {
4707 S.Diag(TemplateArgLoc,
4708 diag::err_template_arg_template_params_mismatch);
4709 NextDiag = diag::note_template_parameter_pack_non_pack;
4710 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004711
Douglas Gregorab7ddf02011-01-12 23:45:44 +00004712 unsigned ParamKind = isa<TemplateTypeParmDecl>(New)? 0
4713 : isa<NonTypeTemplateParmDecl>(New)? 1
4714 : 2;
4715 S.Diag(New->getLocation(), NextDiag)
4716 << ParamKind << New->isParameterPack();
4717 S.Diag(Old->getLocation(), diag::note_template_parameter_pack_here)
4718 << ParamKind << Old->isParameterPack();
4719 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004720
Douglas Gregorab7ddf02011-01-12 23:45:44 +00004721 return false;
4722 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004723
Douglas Gregorab7ddf02011-01-12 23:45:44 +00004724 // For non-type template parameters, check the type of the parameter.
4725 if (NonTypeTemplateParmDecl *OldNTTP
4726 = dyn_cast<NonTypeTemplateParmDecl>(Old)) {
4727 NonTypeTemplateParmDecl *NewNTTP = cast<NonTypeTemplateParmDecl>(New);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004728
Douglas Gregorab7ddf02011-01-12 23:45:44 +00004729 // If we are matching a template template argument to a template
4730 // template parameter and one of the non-type template parameter types
4731 // is dependent, then we must wait until template instantiation time
4732 // to actually compare the arguments.
4733 if (Kind == Sema::TPL_TemplateTemplateArgumentMatch &&
4734 (OldNTTP->getType()->isDependentType() ||
4735 NewNTTP->getType()->isDependentType()))
4736 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004737
Douglas Gregorab7ddf02011-01-12 23:45:44 +00004738 if (!S.Context.hasSameType(OldNTTP->getType(), NewNTTP->getType())) {
4739 if (Complain) {
4740 unsigned NextDiag = diag::err_template_nontype_parm_different_type;
4741 if (TemplateArgLoc.isValid()) {
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004742 S.Diag(TemplateArgLoc,
Douglas Gregorab7ddf02011-01-12 23:45:44 +00004743 diag::err_template_arg_template_params_mismatch);
4744 NextDiag = diag::note_template_nontype_parm_different_type;
4745 }
4746 S.Diag(NewNTTP->getLocation(), NextDiag)
4747 << NewNTTP->getType()
4748 << (Kind != Sema::TPL_TemplateMatch);
4749 S.Diag(OldNTTP->getLocation(),
4750 diag::note_template_nontype_parm_prev_declaration)
4751 << OldNTTP->getType();
4752 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004753
Douglas Gregorab7ddf02011-01-12 23:45:44 +00004754 return false;
4755 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004756
Douglas Gregorab7ddf02011-01-12 23:45:44 +00004757 return true;
4758 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004759
Douglas Gregorab7ddf02011-01-12 23:45:44 +00004760 // For template template parameters, check the template parameter types.
4761 // The template parameter lists of template template
4762 // parameters must agree.
4763 if (TemplateTemplateParmDecl *OldTTP
4764 = dyn_cast<TemplateTemplateParmDecl>(Old)) {
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004765 TemplateTemplateParmDecl *NewTTP = cast<TemplateTemplateParmDecl>(New);
Douglas Gregorab7ddf02011-01-12 23:45:44 +00004766 return S.TemplateParameterListsAreEqual(NewTTP->getTemplateParameters(),
4767 OldTTP->getTemplateParameters(),
4768 Complain,
4769 (Kind == Sema::TPL_TemplateMatch
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004770 ? Sema::TPL_TemplateTemplateParmMatch
Douglas Gregorab7ddf02011-01-12 23:45:44 +00004771 : Kind),
4772 TemplateArgLoc);
4773 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004774
Douglas Gregorab7ddf02011-01-12 23:45:44 +00004775 return true;
4776}
Douglas Gregor02024a92010-03-28 02:42:43 +00004777
Douglas Gregora0347822011-01-13 00:08:50 +00004778/// \brief Diagnose a known arity mismatch when comparing template argument
4779/// lists.
4780static
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004781void DiagnoseTemplateParameterListArityMismatch(Sema &S,
Douglas Gregora0347822011-01-13 00:08:50 +00004782 TemplateParameterList *New,
4783 TemplateParameterList *Old,
4784 Sema::TemplateParameterListEqualKind Kind,
4785 SourceLocation TemplateArgLoc) {
4786 unsigned NextDiag = diag::err_template_param_list_different_arity;
4787 if (TemplateArgLoc.isValid()) {
4788 S.Diag(TemplateArgLoc, diag::err_template_arg_template_params_mismatch);
4789 NextDiag = diag::note_template_param_list_different_arity;
4790 }
4791 S.Diag(New->getTemplateLoc(), NextDiag)
4792 << (New->size() > Old->size())
4793 << (Kind != Sema::TPL_TemplateMatch)
4794 << SourceRange(New->getTemplateLoc(), New->getRAngleLoc());
4795 S.Diag(Old->getTemplateLoc(), diag::note_template_prev_declaration)
4796 << (Kind != Sema::TPL_TemplateMatch)
4797 << SourceRange(Old->getTemplateLoc(), Old->getRAngleLoc());
4798}
4799
Douglas Gregorddc29e12009-02-06 22:42:48 +00004800/// \brief Determine whether the given template parameter lists are
4801/// equivalent.
4802///
Mike Stump1eb44332009-09-09 15:08:12 +00004803/// \param New The new template parameter list, typically written in the
Douglas Gregorddc29e12009-02-06 22:42:48 +00004804/// source code as part of a new template declaration.
4805///
4806/// \param Old The old template parameter list, typically found via
4807/// name lookup of the template declared with this template parameter
4808/// list.
4809///
4810/// \param Complain If true, this routine will produce a diagnostic if
4811/// the template parameter lists are not equivalent.
4812///
Douglas Gregorfb898e12009-11-12 16:20:59 +00004813/// \param Kind describes how we are to match the template parameter lists.
Douglas Gregordd0574e2009-02-10 00:24:35 +00004814///
4815/// \param TemplateArgLoc If this source location is valid, then we
4816/// are actually checking the template parameter list of a template
4817/// argument (New) against the template parameter list of its
4818/// corresponding template template parameter (Old). We produce
4819/// slightly different diagnostics in this scenario.
4820///
Douglas Gregorddc29e12009-02-06 22:42:48 +00004821/// \returns True if the template parameter lists are equal, false
4822/// otherwise.
Mike Stump1eb44332009-09-09 15:08:12 +00004823bool
Douglas Gregorddc29e12009-02-06 22:42:48 +00004824Sema::TemplateParameterListsAreEqual(TemplateParameterList *New,
4825 TemplateParameterList *Old,
4826 bool Complain,
Douglas Gregorfb898e12009-11-12 16:20:59 +00004827 TemplateParameterListEqualKind Kind,
Douglas Gregordd0574e2009-02-10 00:24:35 +00004828 SourceLocation TemplateArgLoc) {
Douglas Gregora0347822011-01-13 00:08:50 +00004829 if (Old->size() != New->size() && Kind != TPL_TemplateTemplateArgumentMatch) {
4830 if (Complain)
4831 DiagnoseTemplateParameterListArityMismatch(*this, New, Old, Kind,
4832 TemplateArgLoc);
Douglas Gregorddc29e12009-02-06 22:42:48 +00004833
4834 return false;
4835 }
4836
Douglas Gregorab7ddf02011-01-12 23:45:44 +00004837 // C++0x [temp.arg.template]p3:
4838 // A template-argument matches a template template-parameter (call it P)
NAKAMURA Takumi00995302011-01-27 07:09:49 +00004839 // when each of the template parameters in the template-parameter-list of
Richard Smith3e4c6c42011-05-05 21:57:07 +00004840 // the template-argument's corresponding class template or alias template
NAKAMURA Takumi00995302011-01-27 07:09:49 +00004841 // (call it A) matches the corresponding template parameter in the
Douglas Gregora0347822011-01-13 00:08:50 +00004842 // template-parameter-list of P. [...]
4843 TemplateParameterList::iterator NewParm = New->begin();
4844 TemplateParameterList::iterator NewParmEnd = New->end();
Douglas Gregorddc29e12009-02-06 22:42:48 +00004845 for (TemplateParameterList::iterator OldParm = Old->begin(),
Douglas Gregora0347822011-01-13 00:08:50 +00004846 OldParmEnd = Old->end();
4847 OldParm != OldParmEnd; ++OldParm) {
Douglas Gregorc421f542011-01-13 18:47:47 +00004848 if (Kind != TPL_TemplateTemplateArgumentMatch ||
4849 !(*OldParm)->isTemplateParameterPack()) {
Douglas Gregora0347822011-01-13 00:08:50 +00004850 if (NewParm == NewParmEnd) {
4851 if (Complain)
4852 DiagnoseTemplateParameterListArityMismatch(*this, New, Old, Kind,
4853 TemplateArgLoc);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004854
Douglas Gregora0347822011-01-13 00:08:50 +00004855 return false;
4856 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004857
Douglas Gregora0347822011-01-13 00:08:50 +00004858 if (!MatchTemplateParameterKind(*this, *NewParm, *OldParm, Complain,
4859 Kind, TemplateArgLoc))
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004860 return false;
4861
Douglas Gregora0347822011-01-13 00:08:50 +00004862 ++NewParm;
4863 continue;
4864 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004865
Douglas Gregora0347822011-01-13 00:08:50 +00004866 // C++0x [temp.arg.template]p3:
NAKAMURA Takumi00995302011-01-27 07:09:49 +00004867 // [...] When P's template- parameter-list contains a template parameter
4868 // pack (14.5.3), the template parameter pack will match zero or more
4869 // template parameters or template parameter packs in the
Douglas Gregora0347822011-01-13 00:08:50 +00004870 // template-parameter-list of A with the same type and form as the
4871 // template parameter pack in P (ignoring whether those template
4872 // parameters are template parameter packs).
4873 for (; NewParm != NewParmEnd; ++NewParm) {
4874 if (!MatchTemplateParameterKind(*this, *NewParm, *OldParm, Complain,
4875 Kind, TemplateArgLoc))
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004876 return false;
Douglas Gregora0347822011-01-13 00:08:50 +00004877 }
Douglas Gregorddc29e12009-02-06 22:42:48 +00004878 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004879
Douglas Gregora0347822011-01-13 00:08:50 +00004880 // Make sure we exhausted all of the arguments.
4881 if (NewParm != NewParmEnd) {
4882 if (Complain)
4883 DiagnoseTemplateParameterListArityMismatch(*this, New, Old, Kind,
4884 TemplateArgLoc);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004885
Douglas Gregora0347822011-01-13 00:08:50 +00004886 return false;
4887 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004888
Douglas Gregorddc29e12009-02-06 22:42:48 +00004889 return true;
4890}
4891
4892/// \brief Check whether a template can be declared within this scope.
4893///
4894/// If the template declaration is valid in this scope, returns
4895/// false. Otherwise, issues a diagnostic and returns true.
Mike Stump1eb44332009-09-09 15:08:12 +00004896bool
Douglas Gregor05396e22009-08-25 17:23:04 +00004897Sema::CheckTemplateDeclScope(Scope *S, TemplateParameterList *TemplateParams) {
Douglas Gregorfb35e8f2011-11-03 16:37:14 +00004898 if (!S)
4899 return false;
4900
Douglas Gregorddc29e12009-02-06 22:42:48 +00004901 // Find the nearest enclosing declaration scope.
4902 while ((S->getFlags() & Scope::DeclScope) == 0 ||
4903 (S->getFlags() & Scope::TemplateParamScope) != 0)
4904 S = S->getParent();
Mike Stump1eb44332009-09-09 15:08:12 +00004905
Douglas Gregorddc29e12009-02-06 22:42:48 +00004906 // C++ [temp]p2:
4907 // A template-declaration can appear only as a namespace scope or
4908 // class scope declaration.
4909 DeclContext *Ctx = static_cast<DeclContext *>(S->getEntity());
Eli Friedman1503f772009-07-31 01:43:05 +00004910 if (Ctx && isa<LinkageSpecDecl>(Ctx) &&
4911 cast<LinkageSpecDecl>(Ctx)->getLanguage() != LinkageSpecDecl::lang_cxx)
Mike Stump1eb44332009-09-09 15:08:12 +00004912 return Diag(TemplateParams->getTemplateLoc(), diag::err_template_linkage)
Douglas Gregor05396e22009-08-25 17:23:04 +00004913 << TemplateParams->getSourceRange();
Mike Stump1eb44332009-09-09 15:08:12 +00004914
Eli Friedman1503f772009-07-31 01:43:05 +00004915 while (Ctx && isa<LinkageSpecDecl>(Ctx))
Douglas Gregorddc29e12009-02-06 22:42:48 +00004916 Ctx = Ctx->getParent();
Douglas Gregorddc29e12009-02-06 22:42:48 +00004917
4918 if (Ctx && (Ctx->isFileContext() || Ctx->isRecord()))
4919 return false;
4920
Mike Stump1eb44332009-09-09 15:08:12 +00004921 return Diag(TemplateParams->getTemplateLoc(),
Douglas Gregor05396e22009-08-25 17:23:04 +00004922 diag::err_template_outside_namespace_or_class_scope)
4923 << TemplateParams->getSourceRange();
Douglas Gregorddc29e12009-02-06 22:42:48 +00004924}
Douglas Gregorcc636682009-02-17 23:15:12 +00004925
Douglas Gregord5cb8762009-10-07 00:13:32 +00004926/// \brief Determine what kind of template specialization the given declaration
4927/// is.
Douglas Gregorf785a7d2012-01-14 15:55:47 +00004928static TemplateSpecializationKind getTemplateSpecializationKind(Decl *D) {
Douglas Gregord5cb8762009-10-07 00:13:32 +00004929 if (!D)
4930 return TSK_Undeclared;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004931
Douglas Gregorf6b11852009-10-08 15:14:33 +00004932 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(D))
4933 return Record->getTemplateSpecializationKind();
Douglas Gregord5cb8762009-10-07 00:13:32 +00004934 if (FunctionDecl *Function = dyn_cast<FunctionDecl>(D))
4935 return Function->getTemplateSpecializationKind();
Douglas Gregor251b4ff2009-10-08 07:24:58 +00004936 if (VarDecl *Var = dyn_cast<VarDecl>(D))
4937 return Var->getTemplateSpecializationKind();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004938
Douglas Gregord5cb8762009-10-07 00:13:32 +00004939 return TSK_Undeclared;
4940}
4941
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004942/// \brief Check whether a specialization is well-formed in the current
Douglas Gregor9302da62009-10-14 23:50:59 +00004943/// context.
Douglas Gregor88b70942009-02-25 22:02:03 +00004944///
Douglas Gregor9302da62009-10-14 23:50:59 +00004945/// This routine determines whether a template specialization can be declared
4946/// in the current context (C++ [temp.expl.spec]p2).
Douglas Gregord5cb8762009-10-07 00:13:32 +00004947///
4948/// \param S the semantic analysis object for which this check is being
4949/// performed.
4950///
4951/// \param Specialized the entity being specialized or instantiated, which
4952/// may be a kind of template (class template, function template, etc.) or
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004953/// a member of a class template (member function, static data member,
Douglas Gregord5cb8762009-10-07 00:13:32 +00004954/// member class).
4955///
4956/// \param PrevDecl the previous declaration of this entity, if any.
4957///
4958/// \param Loc the location of the explicit specialization or instantiation of
4959/// this entity.
4960///
4961/// \param IsPartialSpecialization whether this is a partial specialization of
4962/// a class template.
4963///
Douglas Gregord5cb8762009-10-07 00:13:32 +00004964/// \returns true if there was an error that we cannot recover from, false
4965/// otherwise.
4966static bool CheckTemplateSpecializationScope(Sema &S,
4967 NamedDecl *Specialized,
4968 NamedDecl *PrevDecl,
4969 SourceLocation Loc,
Douglas Gregor9302da62009-10-14 23:50:59 +00004970 bool IsPartialSpecialization) {
Douglas Gregord5cb8762009-10-07 00:13:32 +00004971 // Keep these "kind" numbers in sync with the %select statements in the
4972 // various diagnostics emitted by this routine.
4973 int EntityKind = 0;
Ted Kremenekfe62b062011-01-14 22:31:36 +00004974 if (isa<ClassTemplateDecl>(Specialized))
Douglas Gregord5cb8762009-10-07 00:13:32 +00004975 EntityKind = IsPartialSpecialization? 1 : 0;
Ted Kremenekfe62b062011-01-14 22:31:36 +00004976 else if (isa<FunctionTemplateDecl>(Specialized))
Douglas Gregord5cb8762009-10-07 00:13:32 +00004977 EntityKind = 2;
Ted Kremenekfe62b062011-01-14 22:31:36 +00004978 else if (isa<CXXMethodDecl>(Specialized))
Douglas Gregord5cb8762009-10-07 00:13:32 +00004979 EntityKind = 3;
4980 else if (isa<VarDecl>(Specialized))
4981 EntityKind = 4;
4982 else if (isa<RecordDecl>(Specialized))
4983 EntityKind = 5;
Richard Smith80ad52f2013-01-02 11:42:31 +00004984 else if (isa<EnumDecl>(Specialized) && S.getLangOpts().CPlusPlus11)
Richard Smith1af83c42012-03-23 03:33:32 +00004985 EntityKind = 6;
Douglas Gregord5cb8762009-10-07 00:13:32 +00004986 else {
Richard Smith1af83c42012-03-23 03:33:32 +00004987 S.Diag(Loc, diag::err_template_spec_unknown_kind)
Richard Smith80ad52f2013-01-02 11:42:31 +00004988 << S.getLangOpts().CPlusPlus11;
Douglas Gregor9302da62009-10-14 23:50:59 +00004989 S.Diag(Specialized->getLocation(), diag::note_specialized_entity);
Douglas Gregord5cb8762009-10-07 00:13:32 +00004990 return true;
4991 }
4992
Douglas Gregor88b70942009-02-25 22:02:03 +00004993 // C++ [temp.expl.spec]p2:
4994 // An explicit specialization shall be declared in the namespace
4995 // of which the template is a member, or, for member templates, in
4996 // the namespace of which the enclosing class or enclosing class
4997 // template is a member. An explicit specialization of a member
4998 // function, member class or static data member of a class
4999 // template shall be declared in the namespace of which the class
5000 // template is a member. Such a declaration may also be a
5001 // definition. If the declaration is not a definition, the
5002 // specialization may be defined later in the name- space in which
5003 // the explicit specialization was declared, or in a namespace
5004 // that encloses the one in which the explicit specialization was
5005 // declared.
Sebastian Redl7a126a42010-08-31 00:36:30 +00005006 if (S.CurContext->getRedeclContext()->isFunctionOrMethod()) {
Douglas Gregord5cb8762009-10-07 00:13:32 +00005007 S.Diag(Loc, diag::err_template_spec_decl_function_scope)
Douglas Gregor9302da62009-10-14 23:50:59 +00005008 << Specialized;
Douglas Gregor88b70942009-02-25 22:02:03 +00005009 return true;
5010 }
Douglas Gregor7974c3b2009-10-07 17:21:34 +00005011
Douglas Gregor0a407472009-10-07 17:30:37 +00005012 if (S.CurContext->isRecord() && !IsPartialSpecialization) {
David Blaikie4e4d0842012-03-11 07:00:24 +00005013 if (S.getLangOpts().MicrosoftExt) {
Francois Pichetaf0f4d02011-08-14 03:52:19 +00005014 // Do not warn for class scope explicit specialization during
5015 // instantiation, warning was already emitted during pattern
5016 // semantic analysis.
5017 if (!S.ActiveTemplateInstantiations.size())
5018 S.Diag(Loc, diag::ext_function_specialization_in_class)
5019 << Specialized;
5020 } else {
5021 S.Diag(Loc, diag::err_template_spec_decl_class_scope)
5022 << Specialized;
5023 return true;
5024 }
Douglas Gregor0a407472009-10-07 17:30:37 +00005025 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005026
Douglas Gregor8e0c1182011-10-20 16:41:18 +00005027 if (S.CurContext->isRecord() &&
5028 !S.CurContext->Equals(Specialized->getDeclContext())) {
5029 // Make sure that we're specializing in the right record context.
5030 // Otherwise, things can go horribly wrong.
5031 S.Diag(Loc, diag::err_template_spec_decl_class_scope)
5032 << Specialized;
5033 return true;
5034 }
5035
Douglas Gregor7974c3b2009-10-07 17:21:34 +00005036 // C++ [temp.class.spec]p6:
5037 // A class template partial specialization may be declared or redeclared
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005038 // in any namespace scope in which its definition may be defined (14.5.1
5039 // and 14.5.2).
Douglas Gregord5cb8762009-10-07 00:13:32 +00005040 bool ComplainedAboutScope = false;
Douglas Gregor8e0c1182011-10-20 16:41:18 +00005041 DeclContext *SpecializedContext
Douglas Gregord5cb8762009-10-07 00:13:32 +00005042 = Specialized->getDeclContext()->getEnclosingNamespaceContext();
Douglas Gregor7974c3b2009-10-07 17:21:34 +00005043 DeclContext *DC = S.CurContext->getEnclosingNamespaceContext();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005044 if ((!PrevDecl ||
Douglas Gregor9302da62009-10-14 23:50:59 +00005045 getTemplateSpecializationKind(PrevDecl) == TSK_Undeclared ||
5046 getTemplateSpecializationKind(PrevDecl) == TSK_ImplicitInstantiation)){
Douglas Gregor121dc9a2010-09-12 05:08:28 +00005047 // C++ [temp.exp.spec]p2:
5048 // An explicit specialization shall be declared in the namespace of which
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005049 // the template is a member, or, for member templates, in the namespace
Douglas Gregor121dc9a2010-09-12 05:08:28 +00005050 // of which the enclosing class or enclosing class template is a member.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005051 // An explicit specialization of a member function, member class or
5052 // static data member of a class template shall be declared in the
Douglas Gregor121dc9a2010-09-12 05:08:28 +00005053 // namespace of which the class template is a member.
5054 //
5055 // C++0x [temp.expl.spec]p2:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005056 // An explicit specialization shall be declared in a namespace enclosing
Douglas Gregor121dc9a2010-09-12 05:08:28 +00005057 // the specialized template.
Richard Smithebaf0e62011-10-18 20:49:44 +00005058 if (!DC->InEnclosingNamespaceSetOf(SpecializedContext)) {
Richard Smith80ad52f2013-01-02 11:42:31 +00005059 bool IsCPlusPlus11Extension = DC->Encloses(SpecializedContext);
Richard Smithebaf0e62011-10-18 20:49:44 +00005060 if (isa<TranslationUnitDecl>(SpecializedContext)) {
Richard Smith80ad52f2013-01-02 11:42:31 +00005061 assert(!IsCPlusPlus11Extension &&
Richard Smithebaf0e62011-10-18 20:49:44 +00005062 "DC encloses TU but isn't in enclosing namespace set");
5063 S.Diag(Loc, diag::err_template_spec_decl_out_of_scope_global)
Douglas Gregora4d5de52010-09-12 05:24:55 +00005064 << EntityKind << Specialized;
Richard Smithebaf0e62011-10-18 20:49:44 +00005065 } else if (isa<NamespaceDecl>(SpecializedContext)) {
5066 int Diag;
Richard Smith80ad52f2013-01-02 11:42:31 +00005067 if (!IsCPlusPlus11Extension)
Richard Smithebaf0e62011-10-18 20:49:44 +00005068 Diag = diag::err_template_spec_decl_out_of_scope;
Richard Smith80ad52f2013-01-02 11:42:31 +00005069 else if (!S.getLangOpts().CPlusPlus11)
Richard Smithebaf0e62011-10-18 20:49:44 +00005070 Diag = diag::ext_template_spec_decl_out_of_scope;
5071 else
5072 Diag = diag::warn_cxx98_compat_template_spec_decl_out_of_scope;
5073 S.Diag(Loc, Diag)
5074 << EntityKind << Specialized << cast<NamedDecl>(SpecializedContext);
5075 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005076
Douglas Gregor9302da62009-10-14 23:50:59 +00005077 S.Diag(Specialized->getLocation(), diag::note_specialized_entity);
Richard Smithebaf0e62011-10-18 20:49:44 +00005078 ComplainedAboutScope =
Richard Smith80ad52f2013-01-02 11:42:31 +00005079 !(IsCPlusPlus11Extension && S.getLangOpts().CPlusPlus11);
Douglas Gregor88b70942009-02-25 22:02:03 +00005080 }
Douglas Gregor88b70942009-02-25 22:02:03 +00005081 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005082
5083 // Make sure that this redeclaration (or definition) occurs in an enclosing
Douglas Gregor9302da62009-10-14 23:50:59 +00005084 // namespace.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005085 // Note that HandleDeclarator() performs this check for explicit
Douglas Gregord5cb8762009-10-07 00:13:32 +00005086 // specializations of function templates, static data members, and member
5087 // functions, so we skip the check here for those kinds of entities.
5088 // FIXME: HandleDeclarator's diagnostics aren't quite as good, though.
Douglas Gregor7974c3b2009-10-07 17:21:34 +00005089 // Should we refactor that check, so that it occurs later?
5090 if (!ComplainedAboutScope && !DC->Encloses(SpecializedContext) &&
Douglas Gregor9302da62009-10-14 23:50:59 +00005091 !(isa<FunctionTemplateDecl>(Specialized) || isa<VarDecl>(Specialized) ||
5092 isa<FunctionDecl>(Specialized))) {
Douglas Gregord5cb8762009-10-07 00:13:32 +00005093 if (isa<TranslationUnitDecl>(SpecializedContext))
5094 S.Diag(Loc, diag::err_template_spec_redecl_global_scope)
5095 << EntityKind << Specialized;
5096 else if (isa<NamespaceDecl>(SpecializedContext))
5097 S.Diag(Loc, diag::err_template_spec_redecl_out_of_scope)
5098 << EntityKind << Specialized
5099 << cast<NamedDecl>(SpecializedContext);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005100
Douglas Gregor9302da62009-10-14 23:50:59 +00005101 S.Diag(Specialized->getLocation(), diag::note_specialized_entity);
Douglas Gregor88b70942009-02-25 22:02:03 +00005102 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005103
Douglas Gregord5cb8762009-10-07 00:13:32 +00005104 // FIXME: check for specialization-after-instantiation errors and such.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005105
Douglas Gregor88b70942009-02-25 22:02:03 +00005106 return false;
5107}
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005108
Douglas Gregorbacb9492011-01-03 21:13:47 +00005109/// \brief Subroutine of Sema::CheckClassTemplatePartialSpecializationArgs
5110/// that checks non-type template partial specialization arguments.
5111static bool CheckNonTypeClassTemplatePartialSpecializationArgs(Sema &S,
5112 NonTypeTemplateParmDecl *Param,
5113 const TemplateArgument *Args,
5114 unsigned NumArgs) {
5115 for (unsigned I = 0; I != NumArgs; ++I) {
5116 if (Args[I].getKind() == TemplateArgument::Pack) {
5117 if (CheckNonTypeClassTemplatePartialSpecializationArgs(S, Param,
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005118 Args[I].pack_begin(),
Douglas Gregorbacb9492011-01-03 21:13:47 +00005119 Args[I].pack_size()))
5120 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005121
Douglas Gregore94866f2009-06-12 21:21:02 +00005122 continue;
Douglas Gregorbacb9492011-01-03 21:13:47 +00005123 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005124
Eli Friedmand7a6b162012-09-26 02:36:12 +00005125 if (Args[I].getKind() != TemplateArgument::Expression)
Douglas Gregore94866f2009-06-12 21:21:02 +00005126 continue;
Eli Friedmand7a6b162012-09-26 02:36:12 +00005127
5128 Expr *ArgExpr = Args[I].getAsExpr();
Douglas Gregore94866f2009-06-12 21:21:02 +00005129
Douglas Gregor7a21fd42011-01-03 21:37:45 +00005130 // We can have a pack expansion of any of the bullets below.
Douglas Gregorbacb9492011-01-03 21:13:47 +00005131 if (PackExpansionExpr *Expansion = dyn_cast<PackExpansionExpr>(ArgExpr))
5132 ArgExpr = Expansion->getPattern();
Douglas Gregor54c53cc2011-01-04 23:35:54 +00005133
5134 // Strip off any implicit casts we added as part of type checking.
5135 while (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(ArgExpr))
5136 ArgExpr = ICE->getSubExpr();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005137
Douglas Gregore94866f2009-06-12 21:21:02 +00005138 // C++ [temp.class.spec]p8:
5139 // A non-type argument is non-specialized if it is the name of a
5140 // non-type parameter. All other non-type arguments are
5141 // specialized.
5142 //
5143 // Below, we check the two conditions that only apply to
5144 // specialized non-type arguments, so skip any non-specialized
5145 // arguments.
5146 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(ArgExpr))
Douglas Gregor54c53cc2011-01-04 23:35:54 +00005147 if (isa<NonTypeTemplateParmDecl>(DRE->getDecl()))
Douglas Gregore94866f2009-06-12 21:21:02 +00005148 continue;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005149
Douglas Gregore94866f2009-06-12 21:21:02 +00005150 // C++ [temp.class.spec]p9:
5151 // Within the argument list of a class template partial
5152 // specialization, the following restrictions apply:
5153 // -- A partially specialized non-type argument expression
5154 // shall not involve a template parameter of the partial
5155 // specialization except when the argument expression is a
5156 // simple identifier.
5157 if (ArgExpr->isTypeDependent() || ArgExpr->isValueDependent()) {
Douglas Gregorbacb9492011-01-03 21:13:47 +00005158 S.Diag(ArgExpr->getLocStart(),
Douglas Gregore94866f2009-06-12 21:21:02 +00005159 diag::err_dependent_non_type_arg_in_partial_spec)
5160 << ArgExpr->getSourceRange();
5161 return true;
5162 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005163
Douglas Gregore94866f2009-06-12 21:21:02 +00005164 // -- The type of a template parameter corresponding to a
5165 // specialized non-type argument shall not be dependent on a
5166 // parameter of the specialization.
5167 if (Param->getType()->isDependentType()) {
Douglas Gregorbacb9492011-01-03 21:13:47 +00005168 S.Diag(ArgExpr->getLocStart(),
Douglas Gregore94866f2009-06-12 21:21:02 +00005169 diag::err_dependent_typed_non_type_arg_in_partial_spec)
5170 << Param->getType()
5171 << ArgExpr->getSourceRange();
Douglas Gregorbacb9492011-01-03 21:13:47 +00005172 S.Diag(Param->getLocation(), diag::note_template_param_here);
Douglas Gregore94866f2009-06-12 21:21:02 +00005173 return true;
5174 }
5175 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005176
Douglas Gregorbacb9492011-01-03 21:13:47 +00005177 return false;
5178}
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005179
Douglas Gregorbacb9492011-01-03 21:13:47 +00005180/// \brief Check the non-type template arguments of a class template
5181/// partial specialization according to C++ [temp.class.spec]p9.
5182///
5183/// \param TemplateParams the template parameters of the primary class
5184/// template.
5185///
James Dennett1dfbd922012-06-14 21:40:34 +00005186/// \param TemplateArgs the template arguments of the class template
Douglas Gregorbacb9492011-01-03 21:13:47 +00005187/// partial specialization.
5188///
5189/// \returns true if there was an error, false otherwise.
5190static bool CheckClassTemplatePartialSpecializationArgs(Sema &S,
5191 TemplateParameterList *TemplateParams,
Chris Lattner5f9e2722011-07-23 10:55:15 +00005192 SmallVectorImpl<TemplateArgument> &TemplateArgs) {
Douglas Gregorbacb9492011-01-03 21:13:47 +00005193 const TemplateArgument *ArgList = TemplateArgs.data();
5194
5195 for (unsigned I = 0, N = TemplateParams->size(); I != N; ++I) {
5196 NonTypeTemplateParmDecl *Param
5197 = dyn_cast<NonTypeTemplateParmDecl>(TemplateParams->getParam(I));
5198 if (!Param)
5199 continue;
5200
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005201 if (CheckNonTypeClassTemplatePartialSpecializationArgs(S, Param,
Douglas Gregorbacb9492011-01-03 21:13:47 +00005202 &ArgList[I], 1))
5203 return true;
5204 }
Douglas Gregore94866f2009-06-12 21:21:02 +00005205
5206 return false;
5207}
5208
John McCalld226f652010-08-21 09:40:31 +00005209DeclResult
John McCall0f434ec2009-07-31 02:45:11 +00005210Sema::ActOnClassTemplateSpecialization(Scope *S, unsigned TagSpec,
5211 TagUseKind TUK,
Mike Stump1eb44332009-09-09 15:08:12 +00005212 SourceLocation KWLoc,
Douglas Gregord023aec2011-09-09 20:53:38 +00005213 SourceLocation ModulePrivateLoc,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00005214 CXXScopeSpec &SS,
Douglas Gregor7532dc62009-03-30 22:58:21 +00005215 TemplateTy TemplateD,
Douglas Gregorcc636682009-02-17 23:15:12 +00005216 SourceLocation TemplateNameLoc,
5217 SourceLocation LAngleLoc,
Douglas Gregor40808ce2009-03-09 23:48:35 +00005218 ASTTemplateArgsPtr TemplateArgsIn,
Douglas Gregorcc636682009-02-17 23:15:12 +00005219 SourceLocation RAngleLoc,
5220 AttributeList *Attr,
5221 MultiTemplateParamsArg TemplateParameterLists) {
Douglas Gregorfc9cd612009-09-26 20:57:03 +00005222 assert(TUK != TUK_Reference && "References are not specializations");
John McCallf1bbbb42009-09-04 01:14:41 +00005223
Abramo Bagnara7f0a9152011-03-18 15:16:37 +00005224 // NOTE: KWLoc is the location of the tag keyword. This will instead
5225 // store the location of the outermost template keyword in the declaration.
5226 SourceLocation TemplateKWLoc = TemplateParameterLists.size() > 0
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00005227 ? TemplateParameterLists[0]->getTemplateLoc() : SourceLocation();
Abramo Bagnara7f0a9152011-03-18 15:16:37 +00005228
Douglas Gregorcc636682009-02-17 23:15:12 +00005229 // Find the class template we're specializing
Douglas Gregor7532dc62009-03-30 22:58:21 +00005230 TemplateName Name = TemplateD.getAsVal<TemplateName>();
Mike Stump1eb44332009-09-09 15:08:12 +00005231 ClassTemplateDecl *ClassTemplate
Douglas Gregor8b13c082009-11-12 00:46:20 +00005232 = dyn_cast_or_null<ClassTemplateDecl>(Name.getAsTemplateDecl());
5233
5234 if (!ClassTemplate) {
5235 Diag(TemplateNameLoc, diag::err_not_class_template_specialization)
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005236 << (Name.getAsTemplateDecl() &&
Douglas Gregor8b13c082009-11-12 00:46:20 +00005237 isa<TemplateTemplateParmDecl>(Name.getAsTemplateDecl()));
5238 return true;
5239 }
Douglas Gregorcc636682009-02-17 23:15:12 +00005240
Douglas Gregor1fef4e62009-10-07 22:35:40 +00005241 bool isExplicitSpecialization = false;
Douglas Gregorc8ab2562009-05-31 09:31:02 +00005242 bool isPartialSpecialization = false;
5243
Douglas Gregor88b70942009-02-25 22:02:03 +00005244 // Check the validity of the template headers that introduce this
5245 // template.
Douglas Gregorfc9cd612009-09-26 20:57:03 +00005246 // FIXME: We probably shouldn't complain about these headers for
5247 // friend declarations.
Douglas Gregor0167f3c2010-07-14 23:14:12 +00005248 bool Invalid = false;
Douglas Gregor05396e22009-08-25 17:23:04 +00005249 TemplateParameterList *TemplateParams
Douglas Gregorc8406492011-05-10 18:27:06 +00005250 = MatchTemplateParametersToScopeSpecifier(TemplateNameLoc,
5251 TemplateNameLoc,
5252 SS,
Benjamin Kramer5354e772012-08-23 23:38:35 +00005253 TemplateParameterLists.data(),
Douglas Gregor1fef4e62009-10-07 22:35:40 +00005254 TemplateParameterLists.size(),
John McCall77e8b112010-04-13 20:37:33 +00005255 TUK == TUK_Friend,
Douglas Gregor0167f3c2010-07-14 23:14:12 +00005256 isExplicitSpecialization,
5257 Invalid);
5258 if (Invalid)
5259 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005260
Douglas Gregor05396e22009-08-25 17:23:04 +00005261 if (TemplateParams && TemplateParams->size() > 0) {
5262 isPartialSpecialization = true;
Douglas Gregor88b70942009-02-25 22:02:03 +00005263
Douglas Gregorb0ee93c2010-12-21 08:14:57 +00005264 if (TUK == TUK_Friend) {
5265 Diag(KWLoc, diag::err_partial_specialization_friend)
5266 << SourceRange(LAngleLoc, RAngleLoc);
5267 return true;
5268 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005269
Douglas Gregor05396e22009-08-25 17:23:04 +00005270 // C++ [temp.class.spec]p10:
5271 // The template parameter list of a specialization shall not
5272 // contain default template argument values.
5273 for (unsigned I = 0, N = TemplateParams->size(); I != N; ++I) {
5274 Decl *Param = TemplateParams->getParam(I);
5275 if (TemplateTypeParmDecl *TTP = dyn_cast<TemplateTypeParmDecl>(Param)) {
5276 if (TTP->hasDefaultArgument()) {
Mike Stump1eb44332009-09-09 15:08:12 +00005277 Diag(TTP->getDefaultArgumentLoc(),
Douglas Gregor05396e22009-08-25 17:23:04 +00005278 diag::err_default_arg_in_partial_spec);
John McCall833ca992009-10-29 08:12:44 +00005279 TTP->removeDefaultArgument();
Douglas Gregor05396e22009-08-25 17:23:04 +00005280 }
5281 } else if (NonTypeTemplateParmDecl *NTTP
5282 = dyn_cast<NonTypeTemplateParmDecl>(Param)) {
5283 if (Expr *DefArg = NTTP->getDefaultArgument()) {
Mike Stump1eb44332009-09-09 15:08:12 +00005284 Diag(NTTP->getDefaultArgumentLoc(),
Douglas Gregor05396e22009-08-25 17:23:04 +00005285 diag::err_default_arg_in_partial_spec)
5286 << DefArg->getSourceRange();
Abramo Bagnarad92f7a22010-06-09 09:26:05 +00005287 NTTP->removeDefaultArgument();
Douglas Gregor05396e22009-08-25 17:23:04 +00005288 }
5289 } else {
5290 TemplateTemplateParmDecl *TTP = cast<TemplateTemplateParmDecl>(Param);
Douglas Gregor788cd062009-11-11 01:00:40 +00005291 if (TTP->hasDefaultArgument()) {
5292 Diag(TTP->getDefaultArgument().getLocation(),
Douglas Gregor05396e22009-08-25 17:23:04 +00005293 diag::err_default_arg_in_partial_spec)
Douglas Gregor788cd062009-11-11 01:00:40 +00005294 << TTP->getDefaultArgument().getSourceRange();
Abramo Bagnarad92f7a22010-06-09 09:26:05 +00005295 TTP->removeDefaultArgument();
Douglas Gregorba1ecb52009-06-12 19:43:02 +00005296 }
5297 }
5298 }
Douglas Gregora735b202009-10-13 14:39:41 +00005299 } else if (TemplateParams) {
5300 if (TUK == TUK_Friend)
5301 Diag(KWLoc, diag::err_template_spec_friend)
Douglas Gregor849b2432010-03-31 17:46:05 +00005302 << FixItHint::CreateRemoval(
Douglas Gregora735b202009-10-13 14:39:41 +00005303 SourceRange(TemplateParams->getTemplateLoc(),
5304 TemplateParams->getRAngleLoc()))
5305 << SourceRange(LAngleLoc, RAngleLoc);
5306 else
5307 isExplicitSpecialization = true;
5308 } else if (TUK != TUK_Friend) {
Douglas Gregor05396e22009-08-25 17:23:04 +00005309 Diag(KWLoc, diag::err_template_spec_needs_header)
Douglas Gregor849b2432010-03-31 17:46:05 +00005310 << FixItHint::CreateInsertion(KWLoc, "template<> ");
Argyrios Kyrtzidisd62d9012013-06-05 17:52:24 +00005311 TemplateKWLoc = KWLoc;
Douglas Gregor1fef4e62009-10-07 22:35:40 +00005312 isExplicitSpecialization = true;
5313 }
Douglas Gregor88b70942009-02-25 22:02:03 +00005314
Douglas Gregorcc636682009-02-17 23:15:12 +00005315 // Check that the specialization uses the same tag kind as the
5316 // original template.
Abramo Bagnara465d41b2010-05-11 21:36:43 +00005317 TagTypeKind Kind = TypeWithKeyword::getTagTypeKindForTypeSpec(TagSpec);
5318 assert(Kind != TTK_Enum && "Invalid enum tag in class template spec!");
Douglas Gregor501c5ce2009-05-14 16:41:31 +00005319 if (!isAcceptableTagRedeclaration(ClassTemplate->getTemplatedDecl(),
Richard Trieubbf34c02011-06-10 03:11:26 +00005320 Kind, TUK == TUK_Definition, KWLoc,
Douglas Gregor501c5ce2009-05-14 16:41:31 +00005321 *ClassTemplate->getIdentifier())) {
Mike Stump1eb44332009-09-09 15:08:12 +00005322 Diag(KWLoc, diag::err_use_with_wrong_tag)
Douglas Gregora3a83512009-04-01 23:51:29 +00005323 << ClassTemplate
Douglas Gregor849b2432010-03-31 17:46:05 +00005324 << FixItHint::CreateReplacement(KWLoc,
Douglas Gregora3a83512009-04-01 23:51:29 +00005325 ClassTemplate->getTemplatedDecl()->getKindName());
Mike Stump1eb44332009-09-09 15:08:12 +00005326 Diag(ClassTemplate->getTemplatedDecl()->getLocation(),
Douglas Gregorcc636682009-02-17 23:15:12 +00005327 diag::note_previous_use);
5328 Kind = ClassTemplate->getTemplatedDecl()->getTagKind();
5329 }
5330
Douglas Gregor40808ce2009-03-09 23:48:35 +00005331 // Translate the parser's template argument list in our AST format.
John McCalld5532b62009-11-23 01:53:49 +00005332 TemplateArgumentListInfo TemplateArgs;
5333 TemplateArgs.setLAngleLoc(LAngleLoc);
5334 TemplateArgs.setRAngleLoc(RAngleLoc);
Douglas Gregor314b97f2009-11-10 19:49:08 +00005335 translateTemplateArguments(TemplateArgsIn, TemplateArgs);
Douglas Gregor40808ce2009-03-09 23:48:35 +00005336
Douglas Gregor925910d2011-01-03 20:35:03 +00005337 // Check for unexpanded parameter packs in any of the template arguments.
5338 for (unsigned I = 0, N = TemplateArgs.size(); I != N; ++I)
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005339 if (DiagnoseUnexpandedParameterPack(TemplateArgs[I],
Douglas Gregor925910d2011-01-03 20:35:03 +00005340 UPPC_PartialSpecialization))
5341 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005342
Douglas Gregorcc636682009-02-17 23:15:12 +00005343 // Check that the template argument list is well-formed for this
5344 // template.
Chris Lattner5f9e2722011-07-23 10:55:15 +00005345 SmallVector<TemplateArgument, 4> Converted;
John McCalld5532b62009-11-23 01:53:49 +00005346 if (CheckTemplateArgumentList(ClassTemplate, TemplateNameLoc,
5347 TemplateArgs, false, Converted))
Douglas Gregor212e81c2009-03-25 00:13:59 +00005348 return true;
Douglas Gregorcc636682009-02-17 23:15:12 +00005349
Douglas Gregorc8ab2562009-05-31 09:31:02 +00005350 // Find the class template (partial) specialization declaration that
Douglas Gregorcc636682009-02-17 23:15:12 +00005351 // corresponds to these arguments.
Douglas Gregorba1ecb52009-06-12 19:43:02 +00005352 if (isPartialSpecialization) {
Douglas Gregorbacb9492011-01-03 21:13:47 +00005353 if (CheckClassTemplatePartialSpecializationArgs(*this,
Douglas Gregore94866f2009-06-12 21:21:02 +00005354 ClassTemplate->getTemplateParameters(),
Douglas Gregorb9c66312010-12-23 17:13:55 +00005355 Converted))
Douglas Gregore94866f2009-06-12 21:21:02 +00005356 return true;
5357
Douglas Gregor561f8122011-07-01 01:22:09 +00005358 bool InstantiationDependent;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005359 if (!Name.isDependent() &&
Douglas Gregorde090962010-02-09 00:37:32 +00005360 !TemplateSpecializationType::anyDependentTemplateArguments(
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005361 TemplateArgs.getArgumentArray(),
Douglas Gregor561f8122011-07-01 01:22:09 +00005362 TemplateArgs.size(),
5363 InstantiationDependent)) {
Douglas Gregorde090962010-02-09 00:37:32 +00005364 Diag(TemplateNameLoc, diag::err_partial_spec_fully_specialized)
5365 << ClassTemplate->getDeclName();
5366 isPartialSpecialization = false;
Douglas Gregorde090962010-02-09 00:37:32 +00005367 }
5368 }
Argyrios Kyrtzidiscc0b1bc2010-07-20 13:59:28 +00005369
Douglas Gregorcc636682009-02-17 23:15:12 +00005370 void *InsertPos = 0;
Douglas Gregorc8ab2562009-05-31 09:31:02 +00005371 ClassTemplateSpecializationDecl *PrevDecl = 0;
5372
5373 if (isPartialSpecialization)
Argyrios Kyrtzidiscc0b1bc2010-07-20 13:59:28 +00005374 // FIXME: Template parameter list matters, too
Douglas Gregorc8ab2562009-05-31 09:31:02 +00005375 PrevDecl
Douglas Gregor910f8002010-11-07 23:05:16 +00005376 = ClassTemplate->findPartialSpecialization(Converted.data(),
5377 Converted.size(),
Argyrios Kyrtzidiscc0b1bc2010-07-20 13:59:28 +00005378 InsertPos);
Douglas Gregorc8ab2562009-05-31 09:31:02 +00005379 else
5380 PrevDecl
Douglas Gregor910f8002010-11-07 23:05:16 +00005381 = ClassTemplate->findSpecialization(Converted.data(),
5382 Converted.size(), InsertPos);
Douglas Gregorcc636682009-02-17 23:15:12 +00005383
5384 ClassTemplateSpecializationDecl *Specialization = 0;
5385
Douglas Gregor88b70942009-02-25 22:02:03 +00005386 // Check whether we can declare a class template specialization in
5387 // the current scope.
Douglas Gregorfc9cd612009-09-26 20:57:03 +00005388 if (TUK != TUK_Friend &&
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005389 CheckTemplateSpecializationScope(*this, ClassTemplate, PrevDecl,
5390 TemplateNameLoc,
Douglas Gregor9302da62009-10-14 23:50:59 +00005391 isPartialSpecialization))
Douglas Gregor212e81c2009-03-25 00:13:59 +00005392 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005393
Douglas Gregorb88e8882009-07-30 17:40:51 +00005394 // The canonical type
5395 QualType CanonType;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005396 if (PrevDecl &&
Douglas Gregorfc9cd612009-09-26 20:57:03 +00005397 (PrevDecl->getSpecializationKind() == TSK_Undeclared ||
Douglas Gregorde090962010-02-09 00:37:32 +00005398 TUK == TUK_Friend)) {
Douglas Gregorcc636682009-02-17 23:15:12 +00005399 // Since the only prior class template specialization with these
Douglas Gregorfc9cd612009-09-26 20:57:03 +00005400 // arguments was referenced but not declared, or we're only
5401 // referencing this specialization as a friend, reuse that
Abramo Bagnara7f0a9152011-03-18 15:16:37 +00005402 // declaration node as our own, updating its source location and
5403 // the list of outer template parameters to reflect our new declaration.
Douglas Gregorcc636682009-02-17 23:15:12 +00005404 Specialization = PrevDecl;
Douglas Gregor6bc9f7e2009-02-25 22:18:32 +00005405 Specialization->setLocation(TemplateNameLoc);
Abramo Bagnara7f0a9152011-03-18 15:16:37 +00005406 if (TemplateParameterLists.size() > 0) {
5407 Specialization->setTemplateParameterListsInfo(Context,
5408 TemplateParameterLists.size(),
Benjamin Kramer5354e772012-08-23 23:38:35 +00005409 TemplateParameterLists.data());
Abramo Bagnara7f0a9152011-03-18 15:16:37 +00005410 }
Douglas Gregorcc636682009-02-17 23:15:12 +00005411 PrevDecl = 0;
Douglas Gregorb88e8882009-07-30 17:40:51 +00005412 CanonType = Context.getTypeDeclType(Specialization);
Douglas Gregorc8ab2562009-05-31 09:31:02 +00005413 } else if (isPartialSpecialization) {
Douglas Gregorb88e8882009-07-30 17:40:51 +00005414 // Build the canonical type that describes the converted template
5415 // arguments of the class template partial specialization.
Douglas Gregorde090962010-02-09 00:37:32 +00005416 TemplateName CanonTemplate = Context.getCanonicalTemplateName(Name);
5417 CanonType = Context.getTemplateSpecializationType(CanonTemplate,
Douglas Gregorb9c66312010-12-23 17:13:55 +00005418 Converted.data(),
5419 Converted.size());
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005420
5421 if (Context.hasSameType(CanonType,
Douglas Gregorb9c66312010-12-23 17:13:55 +00005422 ClassTemplate->getInjectedClassNameSpecialization())) {
5423 // C++ [temp.class.spec]p9b3:
5424 //
5425 // -- The argument list of the specialization shall not be identical
5426 // to the implicit argument list of the primary template.
5427 Diag(TemplateNameLoc, diag::err_partial_spec_args_match_primary_template)
Douglas Gregor8d267c52011-09-09 02:06:17 +00005428 << (TUK == TUK_Definition)
5429 << FixItHint::CreateRemoval(SourceRange(LAngleLoc, RAngleLoc));
Douglas Gregorb9c66312010-12-23 17:13:55 +00005430 return CheckClassTemplate(S, TagSpec, TUK, KWLoc, SS,
5431 ClassTemplate->getIdentifier(),
5432 TemplateNameLoc,
5433 Attr,
5434 TemplateParams,
Douglas Gregore7612302011-09-09 19:05:14 +00005435 AS_none, /*ModulePrivateLoc=*/SourceLocation(),
Abramo Bagnara7f0a9152011-03-18 15:16:37 +00005436 TemplateParameterLists.size() - 1,
Benjamin Kramer5354e772012-08-23 23:38:35 +00005437 TemplateParameterLists.data());
Douglas Gregorb9c66312010-12-23 17:13:55 +00005438 }
Douglas Gregorb88e8882009-07-30 17:40:51 +00005439
Douglas Gregorc8ab2562009-05-31 09:31:02 +00005440 // Create a new class template partial specialization declaration node.
Douglas Gregorc8ab2562009-05-31 09:31:02 +00005441 ClassTemplatePartialSpecializationDecl *PrevPartial
5442 = cast_or_null<ClassTemplatePartialSpecializationDecl>(PrevDecl);
Douglas Gregordc60c1e2010-04-30 05:56:50 +00005443 unsigned SequenceNumber = PrevPartial? PrevPartial->getSequenceNumber()
Argyrios Kyrtzidiscc0b1bc2010-07-20 13:59:28 +00005444 : ClassTemplate->getNextPartialSpecSequenceNumber();
Mike Stump1eb44332009-09-09 15:08:12 +00005445 ClassTemplatePartialSpecializationDecl *Partial
Douglas Gregor13c85772010-05-06 00:28:52 +00005446 = ClassTemplatePartialSpecializationDecl::Create(Context, Kind,
Douglas Gregorc8ab2562009-05-31 09:31:02 +00005447 ClassTemplate->getDeclContext(),
Abramo Bagnaraba877ad2011-03-09 14:09:51 +00005448 KWLoc, TemplateNameLoc,
Anders Carlsson91fdf6f2009-06-05 04:06:48 +00005449 TemplateParams,
5450 ClassTemplate,
Douglas Gregor910f8002010-11-07 23:05:16 +00005451 Converted.data(),
5452 Converted.size(),
John McCalld5532b62009-11-23 01:53:49 +00005453 TemplateArgs,
John McCall3cb0ebd2010-03-10 03:28:59 +00005454 CanonType,
Douglas Gregordc60c1e2010-04-30 05:56:50 +00005455 PrevPartial,
5456 SequenceNumber);
John McCallb6217662010-03-15 10:12:16 +00005457 SetNestedNameSpecifier(Partial, SS);
Abramo Bagnara7f0a9152011-03-18 15:16:37 +00005458 if (TemplateParameterLists.size() > 1 && SS.isSet()) {
Douglas Gregorc722ea42010-06-15 17:44:38 +00005459 Partial->setTemplateParameterListsInfo(Context,
Abramo Bagnara7f0a9152011-03-18 15:16:37 +00005460 TemplateParameterLists.size() - 1,
Benjamin Kramer5354e772012-08-23 23:38:35 +00005461 TemplateParameterLists.data());
Abramo Bagnara9b934882010-06-12 08:15:14 +00005462 }
Douglas Gregorc8ab2562009-05-31 09:31:02 +00005463
Argyrios Kyrtzidiscc0b1bc2010-07-20 13:59:28 +00005464 if (!PrevPartial)
5465 ClassTemplate->AddPartialSpecialization(Partial, InsertPos);
Douglas Gregorc8ab2562009-05-31 09:31:02 +00005466 Specialization = Partial;
Douglas Gregor031a5882009-06-13 00:26:55 +00005467
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005468 // If we are providing an explicit specialization of a member class
Douglas Gregored9c0f92009-10-29 00:04:11 +00005469 // template specialization, make a note of that.
5470 if (PrevPartial && PrevPartial->getInstantiatedFromMember())
5471 PrevPartial->setMemberSpecialization();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005472
Douglas Gregor031a5882009-06-13 00:26:55 +00005473 // Check that all of the template parameters of the class template
5474 // partial specialization are deducible from the template
5475 // arguments. If not, this class template partial specialization
5476 // will never be used.
Benjamin Kramer013b3662012-01-30 16:17:39 +00005477 llvm::SmallBitVector DeducibleParams(TemplateParams->size());
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005478 MarkUsedTemplateParameters(Partial->getTemplateArgs(), true,
Douglas Gregored9c0f92009-10-29 00:04:11 +00005479 TemplateParams->getDepth(),
Douglas Gregore73bb602009-09-14 21:25:05 +00005480 DeducibleParams);
Douglas Gregor031a5882009-06-13 00:26:55 +00005481
Benjamin Kramer013b3662012-01-30 16:17:39 +00005482 if (!DeducibleParams.all()) {
5483 unsigned NumNonDeducible = DeducibleParams.size()-DeducibleParams.count();
Douglas Gregor031a5882009-06-13 00:26:55 +00005484 Diag(TemplateNameLoc, diag::warn_partial_specs_not_deducible)
5485 << (NumNonDeducible > 1)
5486 << SourceRange(TemplateNameLoc, RAngleLoc);
5487 for (unsigned I = 0, N = DeducibleParams.size(); I != N; ++I) {
5488 if (!DeducibleParams[I]) {
5489 NamedDecl *Param = cast<NamedDecl>(TemplateParams->getParam(I));
5490 if (Param->getDeclName())
Mike Stump1eb44332009-09-09 15:08:12 +00005491 Diag(Param->getLocation(),
Douglas Gregor031a5882009-06-13 00:26:55 +00005492 diag::note_partial_spec_unused_parameter)
5493 << Param->getDeclName();
5494 else
Mike Stump1eb44332009-09-09 15:08:12 +00005495 Diag(Param->getLocation(),
Douglas Gregor031a5882009-06-13 00:26:55 +00005496 diag::note_partial_spec_unused_parameter)
Benjamin Kramer476d8b82010-08-11 14:47:12 +00005497 << "<anonymous>";
Douglas Gregor031a5882009-06-13 00:26:55 +00005498 }
5499 }
5500 }
Douglas Gregorcc636682009-02-17 23:15:12 +00005501 } else {
5502 // Create a new class template specialization declaration node for
Douglas Gregorfc9cd612009-09-26 20:57:03 +00005503 // this explicit specialization or friend declaration.
Douglas Gregorcc636682009-02-17 23:15:12 +00005504 Specialization
Douglas Gregor13c85772010-05-06 00:28:52 +00005505 = ClassTemplateSpecializationDecl::Create(Context, Kind,
Douglas Gregorcc636682009-02-17 23:15:12 +00005506 ClassTemplate->getDeclContext(),
Abramo Bagnaraba877ad2011-03-09 14:09:51 +00005507 KWLoc, TemplateNameLoc,
Mike Stump1eb44332009-09-09 15:08:12 +00005508 ClassTemplate,
Douglas Gregor910f8002010-11-07 23:05:16 +00005509 Converted.data(),
5510 Converted.size(),
Douglas Gregorcc636682009-02-17 23:15:12 +00005511 PrevDecl);
John McCallb6217662010-03-15 10:12:16 +00005512 SetNestedNameSpecifier(Specialization, SS);
Abramo Bagnara7f0a9152011-03-18 15:16:37 +00005513 if (TemplateParameterLists.size() > 0) {
Douglas Gregorc722ea42010-06-15 17:44:38 +00005514 Specialization->setTemplateParameterListsInfo(Context,
Abramo Bagnara7f0a9152011-03-18 15:16:37 +00005515 TemplateParameterLists.size(),
Benjamin Kramer5354e772012-08-23 23:38:35 +00005516 TemplateParameterLists.data());
Abramo Bagnara9b934882010-06-12 08:15:14 +00005517 }
Douglas Gregorcc636682009-02-17 23:15:12 +00005518
Argyrios Kyrtzidiscc0b1bc2010-07-20 13:59:28 +00005519 if (!PrevDecl)
5520 ClassTemplate->AddSpecialization(Specialization, InsertPos);
Douglas Gregorb88e8882009-07-30 17:40:51 +00005521
5522 CanonType = Context.getTypeDeclType(Specialization);
Douglas Gregorcc636682009-02-17 23:15:12 +00005523 }
5524
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00005525 // C++ [temp.expl.spec]p6:
5526 // If a template, a member template or the member of a class template is
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005527 // explicitly specialized then that specialization shall be declared
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00005528 // before the first use of that specialization that would cause an implicit
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005529 // instantiation to take place, in every translation unit in which such a
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00005530 // use occurs; no diagnostic is required.
5531 if (PrevDecl && PrevDecl->getPointOfInstantiation().isValid()) {
Douglas Gregordc0a11c2010-02-26 06:03:23 +00005532 bool Okay = false;
Douglas Gregorf785a7d2012-01-14 15:55:47 +00005533 for (Decl *Prev = PrevDecl; Prev; Prev = Prev->getPreviousDecl()) {
Douglas Gregordc0a11c2010-02-26 06:03:23 +00005534 // Is there any previous explicit specialization declaration?
5535 if (getTemplateSpecializationKind(Prev) == TSK_ExplicitSpecialization) {
5536 Okay = true;
5537 break;
5538 }
5539 }
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00005540
Douglas Gregordc0a11c2010-02-26 06:03:23 +00005541 if (!Okay) {
5542 SourceRange Range(TemplateNameLoc, RAngleLoc);
5543 Diag(TemplateNameLoc, diag::err_specialization_after_instantiation)
5544 << Context.getTypeDeclType(Specialization) << Range;
5545
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005546 Diag(PrevDecl->getPointOfInstantiation(),
Douglas Gregordc0a11c2010-02-26 06:03:23 +00005547 diag::note_instantiation_required_here)
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005548 << (PrevDecl->getTemplateSpecializationKind()
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00005549 != TSK_ImplicitInstantiation);
Douglas Gregordc0a11c2010-02-26 06:03:23 +00005550 return true;
5551 }
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00005552 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005553
Douglas Gregorfc9cd612009-09-26 20:57:03 +00005554 // If this is not a friend, note that this is an explicit specialization.
5555 if (TUK != TUK_Friend)
5556 Specialization->setSpecializationKind(TSK_ExplicitSpecialization);
Douglas Gregorcc636682009-02-17 23:15:12 +00005557
5558 // Check that this isn't a redefinition of this specialization.
John McCall0f434ec2009-07-31 02:45:11 +00005559 if (TUK == TUK_Definition) {
Douglas Gregor952b0172010-02-11 01:04:33 +00005560 if (RecordDecl *Def = Specialization->getDefinition()) {
Douglas Gregorcc636682009-02-17 23:15:12 +00005561 SourceRange Range(TemplateNameLoc, RAngleLoc);
Mike Stump1eb44332009-09-09 15:08:12 +00005562 Diag(TemplateNameLoc, diag::err_redefinition)
Douglas Gregorc8ab2562009-05-31 09:31:02 +00005563 << Context.getTypeDeclType(Specialization) << Range;
Douglas Gregorcc636682009-02-17 23:15:12 +00005564 Diag(Def->getLocation(), diag::note_previous_definition);
5565 Specialization->setInvalidDecl();
Douglas Gregor212e81c2009-03-25 00:13:59 +00005566 return true;
Douglas Gregorcc636682009-02-17 23:15:12 +00005567 }
5568 }
5569
John McCall7f1b9872010-12-18 03:30:47 +00005570 if (Attr)
5571 ProcessDeclAttributeList(S, Specialization, Attr);
5572
Richard Smith0652c352012-08-17 03:20:55 +00005573 // Add alignment attributes if necessary; these attributes are checked when
5574 // the ASTContext lays out the structure.
5575 if (TUK == TUK_Definition) {
5576 AddAlignmentAttributesForRecord(Specialization);
5577 AddMsStructLayoutForRecord(Specialization);
5578 }
5579
Douglas Gregord023aec2011-09-09 20:53:38 +00005580 if (ModulePrivateLoc.isValid())
5581 Diag(Specialization->getLocation(), diag::err_module_private_specialization)
5582 << (isPartialSpecialization? 1 : 0)
5583 << FixItHint::CreateRemoval(ModulePrivateLoc);
5584
Douglas Gregorfc705b82009-02-26 22:19:44 +00005585 // Build the fully-sugared type for this class template
5586 // specialization as the user wrote in the specialization
5587 // itself. This means that we'll pretty-print the type retrieved
5588 // from the specialization's declaration the way that the user
5589 // actually wrote the specialization, rather than formatting the
5590 // name based on the "canonical" representation used to store the
5591 // template arguments in the specialization.
John McCall3cb0ebd2010-03-10 03:28:59 +00005592 TypeSourceInfo *WrittenTy
5593 = Context.getTemplateSpecializationTypeInfo(Name, TemplateNameLoc,
5594 TemplateArgs, CanonType);
Abramo Bagnarac98971d2010-06-12 07:44:57 +00005595 if (TUK != TUK_Friend) {
Douglas Gregorfc9cd612009-09-26 20:57:03 +00005596 Specialization->setTypeAsWritten(WrittenTy);
Abramo Bagnara7f0a9152011-03-18 15:16:37 +00005597 Specialization->setTemplateKeywordLoc(TemplateKWLoc);
Abramo Bagnarac98971d2010-06-12 07:44:57 +00005598 }
Douglas Gregorcc636682009-02-17 23:15:12 +00005599
Douglas Gregor6bc9f7e2009-02-25 22:18:32 +00005600 // C++ [temp.expl.spec]p9:
5601 // A template explicit specialization is in the scope of the
5602 // namespace in which the template was defined.
5603 //
5604 // We actually implement this paragraph where we set the semantic
5605 // context (in the creation of the ClassTemplateSpecializationDecl),
5606 // but we also maintain the lexical context where the actual
5607 // definition occurs.
Douglas Gregorcc636682009-02-17 23:15:12 +00005608 Specialization->setLexicalDeclContext(CurContext);
Mike Stump1eb44332009-09-09 15:08:12 +00005609
Douglas Gregorcc636682009-02-17 23:15:12 +00005610 // We may be starting the definition of this specialization.
John McCall0f434ec2009-07-31 02:45:11 +00005611 if (TUK == TUK_Definition)
Douglas Gregorcc636682009-02-17 23:15:12 +00005612 Specialization->startDefinition();
5613
Douglas Gregorfc9cd612009-09-26 20:57:03 +00005614 if (TUK == TUK_Friend) {
5615 FriendDecl *Friend = FriendDecl::Create(Context, CurContext,
5616 TemplateNameLoc,
John McCall32f2fb52010-03-25 18:04:51 +00005617 WrittenTy,
Douglas Gregorfc9cd612009-09-26 20:57:03 +00005618 /*FIXME:*/KWLoc);
5619 Friend->setAccess(AS_public);
5620 CurContext->addDecl(Friend);
5621 } else {
5622 // Add the specialization into its lexical context, so that it can
5623 // be seen when iterating through the list of declarations in that
5624 // context. However, specializations are not found by name lookup.
5625 CurContext->addDecl(Specialization);
5626 }
John McCalld226f652010-08-21 09:40:31 +00005627 return Specialization;
Douglas Gregorcc636682009-02-17 23:15:12 +00005628}
Douglas Gregord57959a2009-03-27 23:10:48 +00005629
John McCalld226f652010-08-21 09:40:31 +00005630Decl *Sema::ActOnTemplateDeclarator(Scope *S,
Douglas Gregore542c862009-06-23 23:11:28 +00005631 MultiTemplateParamsArg TemplateParameterLists,
John McCalld226f652010-08-21 09:40:31 +00005632 Declarator &D) {
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00005633 Decl *NewDecl = HandleDeclarator(S, D, TemplateParameterLists);
Dmitri Gribenko96b09862012-07-31 22:37:06 +00005634 ActOnDocumentableDecl(NewDecl);
5635 return NewDecl;
Douglas Gregore542c862009-06-23 23:11:28 +00005636}
5637
John McCalld226f652010-08-21 09:40:31 +00005638Decl *Sema::ActOnStartOfFunctionTemplateDef(Scope *FnBodyScope,
Douglas Gregor52591bf2009-06-24 00:54:41 +00005639 MultiTemplateParamsArg TemplateParameterLists,
John McCalld226f652010-08-21 09:40:31 +00005640 Declarator &D) {
Douglas Gregor52591bf2009-06-24 00:54:41 +00005641 assert(getCurFunctionDecl() == 0 && "Function parsing confused");
Abramo Bagnara075f8f12010-12-10 16:29:40 +00005642 DeclaratorChunk::FunctionTypeInfo &FTI = D.getFunctionTypeInfo();
Mike Stump1eb44332009-09-09 15:08:12 +00005643
Douglas Gregor52591bf2009-06-24 00:54:41 +00005644 if (FTI.hasPrototype) {
Mike Stump1eb44332009-09-09 15:08:12 +00005645 // FIXME: Diagnose arguments without names in C.
Douglas Gregor52591bf2009-06-24 00:54:41 +00005646 }
Mike Stump1eb44332009-09-09 15:08:12 +00005647
Douglas Gregor52591bf2009-06-24 00:54:41 +00005648 Scope *ParentScope = FnBodyScope->getParent();
Mike Stump1eb44332009-09-09 15:08:12 +00005649
Douglas Gregor45fa5602011-11-07 20:56:01 +00005650 D.setFunctionDefinitionKind(FDK_Definition);
John McCalld226f652010-08-21 09:40:31 +00005651 Decl *DP = HandleDeclarator(ParentScope, D,
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00005652 TemplateParameterLists);
Argyrios Kyrtzidis3abc7682012-12-14 06:53:58 +00005653 return ActOnStartOfFunctionDef(FnBodyScope, DP);
Douglas Gregor52591bf2009-06-24 00:54:41 +00005654}
5655
John McCall75042392010-02-11 01:33:53 +00005656/// \brief Strips various properties off an implicit instantiation
5657/// that has just been explicitly specialized.
5658static void StripImplicitInstantiation(NamedDecl *D) {
Sean Huntcf807c42010-08-18 23:23:40 +00005659 D->dropAttrs();
John McCall75042392010-02-11 01:33:53 +00005660
5661 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
5662 FD->setInlineSpecified(false);
Jordan Rose09189892013-03-08 22:25:36 +00005663
5664 for (FunctionDecl::param_iterator I = FD->param_begin(),
5665 E = FD->param_end();
5666 I != E; ++I)
5667 (*I)->dropAttrs();
John McCall75042392010-02-11 01:33:53 +00005668 }
5669}
5670
Nico Weberd1d512a2012-01-09 19:52:25 +00005671/// \brief Compute the diagnostic location for an explicit instantiation
5672// declaration or definition.
5673static SourceLocation DiagLocForExplicitInstantiation(
Douglas Gregorf785a7d2012-01-14 15:55:47 +00005674 NamedDecl* D, SourceLocation PointOfInstantiation) {
Nico Weberd1d512a2012-01-09 19:52:25 +00005675 // Explicit instantiations following a specialization have no effect and
5676 // hence no PointOfInstantiation. In that case, walk decl backwards
5677 // until a valid name loc is found.
5678 SourceLocation PrevDiagLoc = PointOfInstantiation;
Douglas Gregorf785a7d2012-01-14 15:55:47 +00005679 for (Decl *Prev = D; Prev && !PrevDiagLoc.isValid();
5680 Prev = Prev->getPreviousDecl()) {
Nico Weberd1d512a2012-01-09 19:52:25 +00005681 PrevDiagLoc = Prev->getLocation();
5682 }
5683 assert(PrevDiagLoc.isValid() &&
5684 "Explicit instantiation without point of instantiation?");
5685 return PrevDiagLoc;
5686}
5687
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005688/// \brief Diagnose cases where we have an explicit template specialization
Douglas Gregor454885e2009-10-15 15:54:05 +00005689/// before/after an explicit template instantiation, producing diagnostics
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005690/// for those cases where they are required and determining whether the
Douglas Gregor454885e2009-10-15 15:54:05 +00005691/// new specialization/instantiation will have any effect.
5692///
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005693/// \param NewLoc the location of the new explicit specialization or
Douglas Gregor454885e2009-10-15 15:54:05 +00005694/// instantiation.
5695///
5696/// \param NewTSK the kind of the new explicit specialization or instantiation.
5697///
5698/// \param PrevDecl the previous declaration of the entity.
5699///
5700/// \param PrevTSK the kind of the old explicit specialization or instantiatin.
5701///
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005702/// \param PrevPointOfInstantiation if valid, indicates where the previus
Douglas Gregor454885e2009-10-15 15:54:05 +00005703/// declaration was instantiated (either implicitly or explicitly).
5704///
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005705/// \param HasNoEffect will be set to true to indicate that the new
Douglas Gregor454885e2009-10-15 15:54:05 +00005706/// specialization or instantiation has no effect and should be ignored.
5707///
5708/// \returns true if there was an error that should prevent the introduction of
5709/// the new declaration into the AST, false otherwise.
Douglas Gregor0d035142009-10-27 18:42:08 +00005710bool
5711Sema::CheckSpecializationInstantiationRedecl(SourceLocation NewLoc,
5712 TemplateSpecializationKind NewTSK,
5713 NamedDecl *PrevDecl,
5714 TemplateSpecializationKind PrevTSK,
5715 SourceLocation PrevPointOfInstantiation,
Abramo Bagnarac98971d2010-06-12 07:44:57 +00005716 bool &HasNoEffect) {
5717 HasNoEffect = false;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005718
Douglas Gregor454885e2009-10-15 15:54:05 +00005719 switch (NewTSK) {
5720 case TSK_Undeclared:
5721 case TSK_ImplicitInstantiation:
David Blaikieb219cfc2011-09-23 05:06:16 +00005722 llvm_unreachable("Don't check implicit instantiations here");
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005723
Douglas Gregor454885e2009-10-15 15:54:05 +00005724 case TSK_ExplicitSpecialization:
5725 switch (PrevTSK) {
5726 case TSK_Undeclared:
5727 case TSK_ExplicitSpecialization:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005728 // Okay, we're just specializing something that is either already
Douglas Gregor454885e2009-10-15 15:54:05 +00005729 // explicitly specialized or has merely been mentioned without any
5730 // instantiation.
5731 return false;
5732
5733 case TSK_ImplicitInstantiation:
5734 if (PrevPointOfInstantiation.isInvalid()) {
5735 // The declaration itself has not actually been instantiated, so it is
5736 // still okay to specialize it.
John McCall75042392010-02-11 01:33:53 +00005737 StripImplicitInstantiation(PrevDecl);
Douglas Gregor454885e2009-10-15 15:54:05 +00005738 return false;
5739 }
5740 // Fall through
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005741
Douglas Gregor454885e2009-10-15 15:54:05 +00005742 case TSK_ExplicitInstantiationDeclaration:
5743 case TSK_ExplicitInstantiationDefinition:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005744 assert((PrevTSK == TSK_ImplicitInstantiation ||
5745 PrevPointOfInstantiation.isValid()) &&
Douglas Gregor454885e2009-10-15 15:54:05 +00005746 "Explicit instantiation without point of instantiation?");
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005747
Douglas Gregor454885e2009-10-15 15:54:05 +00005748 // C++ [temp.expl.spec]p6:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005749 // If a template, a member template or the member of a class template
Douglas Gregor454885e2009-10-15 15:54:05 +00005750 // is explicitly specialized then that specialization shall be declared
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005751 // before the first use of that specialization that would cause an
Douglas Gregor454885e2009-10-15 15:54:05 +00005752 // implicit instantiation to take place, in every translation unit in
5753 // which such a use occurs; no diagnostic is required.
Douglas Gregorf785a7d2012-01-14 15:55:47 +00005754 for (Decl *Prev = PrevDecl; Prev; Prev = Prev->getPreviousDecl()) {
Douglas Gregordc0a11c2010-02-26 06:03:23 +00005755 // Is there any previous explicit specialization declaration?
5756 if (getTemplateSpecializationKind(Prev) == TSK_ExplicitSpecialization)
5757 return false;
5758 }
5759
Douglas Gregor0d035142009-10-27 18:42:08 +00005760 Diag(NewLoc, diag::err_specialization_after_instantiation)
Douglas Gregor454885e2009-10-15 15:54:05 +00005761 << PrevDecl;
Douglas Gregor0d035142009-10-27 18:42:08 +00005762 Diag(PrevPointOfInstantiation, diag::note_instantiation_required_here)
Douglas Gregor454885e2009-10-15 15:54:05 +00005763 << (PrevTSK != TSK_ImplicitInstantiation);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005764
Douglas Gregor454885e2009-10-15 15:54:05 +00005765 return true;
5766 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005767
Douglas Gregor454885e2009-10-15 15:54:05 +00005768 case TSK_ExplicitInstantiationDeclaration:
5769 switch (PrevTSK) {
5770 case TSK_ExplicitInstantiationDeclaration:
5771 // This explicit instantiation declaration is redundant (that's okay).
Abramo Bagnarac98971d2010-06-12 07:44:57 +00005772 HasNoEffect = true;
Douglas Gregor454885e2009-10-15 15:54:05 +00005773 return false;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005774
Douglas Gregor454885e2009-10-15 15:54:05 +00005775 case TSK_Undeclared:
5776 case TSK_ImplicitInstantiation:
5777 // We're explicitly instantiating something that may have already been
5778 // implicitly instantiated; that's fine.
5779 return false;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005780
Douglas Gregor454885e2009-10-15 15:54:05 +00005781 case TSK_ExplicitSpecialization:
5782 // C++0x [temp.explicit]p4:
5783 // For a given set of template parameters, if an explicit instantiation
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005784 // of a template appears after a declaration of an explicit
Douglas Gregor454885e2009-10-15 15:54:05 +00005785 // specialization for that template, the explicit instantiation has no
5786 // effect.
Abramo Bagnarac98971d2010-06-12 07:44:57 +00005787 HasNoEffect = true;
Douglas Gregor454885e2009-10-15 15:54:05 +00005788 return false;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005789
Douglas Gregor454885e2009-10-15 15:54:05 +00005790 case TSK_ExplicitInstantiationDefinition:
5791 // C++0x [temp.explicit]p10:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005792 // If an entity is the subject of both an explicit instantiation
5793 // declaration and an explicit instantiation definition in the same
Douglas Gregor454885e2009-10-15 15:54:05 +00005794 // translation unit, the definition shall follow the declaration.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005795 Diag(NewLoc,
Douglas Gregor0d035142009-10-27 18:42:08 +00005796 diag::err_explicit_instantiation_declaration_after_definition);
Nico Weberff91d242011-12-23 20:58:04 +00005797
5798 // Explicit instantiations following a specialization have no effect and
5799 // hence no PrevPointOfInstantiation. In that case, walk decl backwards
5800 // until a valid name loc is found.
Nico Weberd1d512a2012-01-09 19:52:25 +00005801 Diag(DiagLocForExplicitInstantiation(PrevDecl, PrevPointOfInstantiation),
5802 diag::note_explicit_instantiation_definition_here);
Abramo Bagnarac98971d2010-06-12 07:44:57 +00005803 HasNoEffect = true;
Douglas Gregor454885e2009-10-15 15:54:05 +00005804 return false;
5805 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005806
Douglas Gregor454885e2009-10-15 15:54:05 +00005807 case TSK_ExplicitInstantiationDefinition:
5808 switch (PrevTSK) {
5809 case TSK_Undeclared:
5810 case TSK_ImplicitInstantiation:
5811 // We're explicitly instantiating something that may have already been
5812 // implicitly instantiated; that's fine.
5813 return false;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005814
Douglas Gregor454885e2009-10-15 15:54:05 +00005815 case TSK_ExplicitSpecialization:
5816 // C++ DR 259, C++0x [temp.explicit]p4:
5817 // For a given set of template parameters, if an explicit
5818 // instantiation of a template appears after a declaration of
5819 // an explicit specialization for that template, the explicit
5820 // instantiation has no effect.
5821 //
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005822 // In C++98/03 mode, we only give an extension warning here, because it
Douglas Gregorc42b6522010-04-09 21:02:29 +00005823 // is not harmful to try to explicitly instantiate something that
Douglas Gregor454885e2009-10-15 15:54:05 +00005824 // has been explicitly specialized.
Richard Smith80ad52f2013-01-02 11:42:31 +00005825 Diag(NewLoc, getLangOpts().CPlusPlus11 ?
Richard Smithebaf0e62011-10-18 20:49:44 +00005826 diag::warn_cxx98_compat_explicit_instantiation_after_specialization :
5827 diag::ext_explicit_instantiation_after_specialization)
5828 << PrevDecl;
5829 Diag(PrevDecl->getLocation(),
5830 diag::note_previous_template_specialization);
Abramo Bagnarac98971d2010-06-12 07:44:57 +00005831 HasNoEffect = true;
Douglas Gregor454885e2009-10-15 15:54:05 +00005832 return false;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005833
Douglas Gregor454885e2009-10-15 15:54:05 +00005834 case TSK_ExplicitInstantiationDeclaration:
5835 // We're explicity instantiating a definition for something for which we
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005836 // were previously asked to suppress instantiations. That's fine.
Nico Weberff91d242011-12-23 20:58:04 +00005837
5838 // C++0x [temp.explicit]p4:
5839 // For a given set of template parameters, if an explicit instantiation
5840 // of a template appears after a declaration of an explicit
5841 // specialization for that template, the explicit instantiation has no
5842 // effect.
Douglas Gregorf785a7d2012-01-14 15:55:47 +00005843 for (Decl *Prev = PrevDecl; Prev; Prev = Prev->getPreviousDecl()) {
Nico Weberff91d242011-12-23 20:58:04 +00005844 // Is there any previous explicit specialization declaration?
5845 if (getTemplateSpecializationKind(Prev) == TSK_ExplicitSpecialization) {
5846 HasNoEffect = true;
5847 break;
5848 }
5849 }
5850
Douglas Gregor454885e2009-10-15 15:54:05 +00005851 return false;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005852
Douglas Gregor454885e2009-10-15 15:54:05 +00005853 case TSK_ExplicitInstantiationDefinition:
5854 // C++0x [temp.spec]p5:
5855 // For a given template and a given set of template-arguments,
5856 // - an explicit instantiation definition shall appear at most once
5857 // in a program,
Douglas Gregor0d035142009-10-27 18:42:08 +00005858 Diag(NewLoc, diag::err_explicit_instantiation_duplicate)
Douglas Gregor454885e2009-10-15 15:54:05 +00005859 << PrevDecl;
Nico Weberd1d512a2012-01-09 19:52:25 +00005860 Diag(DiagLocForExplicitInstantiation(PrevDecl, PrevPointOfInstantiation),
Douglas Gregor0d035142009-10-27 18:42:08 +00005861 diag::note_previous_explicit_instantiation);
Abramo Bagnarac98971d2010-06-12 07:44:57 +00005862 HasNoEffect = true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005863 return false;
Douglas Gregor454885e2009-10-15 15:54:05 +00005864 }
Douglas Gregor454885e2009-10-15 15:54:05 +00005865 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005866
David Blaikieb219cfc2011-09-23 05:06:16 +00005867 llvm_unreachable("Missing specialization/instantiation case?");
Douglas Gregor454885e2009-10-15 15:54:05 +00005868}
5869
John McCallaf2094e2010-04-08 09:05:18 +00005870/// \brief Perform semantic analysis for the given dependent function
James Dennettef2b5b32012-06-15 22:23:43 +00005871/// template specialization.
John McCallaf2094e2010-04-08 09:05:18 +00005872///
James Dennettef2b5b32012-06-15 22:23:43 +00005873/// The only possible way to get a dependent function template specialization
5874/// is with a friend declaration, like so:
5875///
5876/// \code
5877/// template \<class T> void foo(T);
5878/// template \<class T> class A {
John McCallaf2094e2010-04-08 09:05:18 +00005879/// friend void foo<>(T);
5880/// };
James Dennettef2b5b32012-06-15 22:23:43 +00005881/// \endcode
John McCallaf2094e2010-04-08 09:05:18 +00005882///
5883/// There really isn't any useful analysis we can do here, so we
5884/// just store the information.
5885bool
5886Sema::CheckDependentFunctionTemplateSpecialization(FunctionDecl *FD,
5887 const TemplateArgumentListInfo &ExplicitTemplateArgs,
5888 LookupResult &Previous) {
5889 // Remove anything from Previous that isn't a function template in
5890 // the correct context.
Sebastian Redl7a126a42010-08-31 00:36:30 +00005891 DeclContext *FDLookupContext = FD->getDeclContext()->getRedeclContext();
John McCallaf2094e2010-04-08 09:05:18 +00005892 LookupResult::Filter F = Previous.makeFilter();
5893 while (F.hasNext()) {
5894 NamedDecl *D = F.next()->getUnderlyingDecl();
5895 if (!isa<FunctionTemplateDecl>(D) ||
Sebastian Redl7a126a42010-08-31 00:36:30 +00005896 !FDLookupContext->InEnclosingNamespaceSetOf(
5897 D->getDeclContext()->getRedeclContext()))
John McCallaf2094e2010-04-08 09:05:18 +00005898 F.erase();
5899 }
5900 F.done();
5901
5902 // Should this be diagnosed here?
5903 if (Previous.empty()) return true;
5904
5905 FD->setDependentTemplateSpecialization(Context, Previous.asUnresolvedSet(),
5906 ExplicitTemplateArgs);
5907 return false;
5908}
5909
Abramo Bagnarae03db982010-05-20 15:32:11 +00005910/// \brief Perform semantic analysis for the given function template
Douglas Gregorb9aa6b22009-09-24 23:14:47 +00005911/// specialization.
5912///
Abramo Bagnarae03db982010-05-20 15:32:11 +00005913/// This routine performs all of the semantic analysis required for an
Douglas Gregorb9aa6b22009-09-24 23:14:47 +00005914/// explicit function template specialization. On successful completion,
5915/// the function declaration \p FD will become a function template
5916/// specialization.
5917///
5918/// \param FD the function declaration, which will be updated to become a
5919/// function template specialization.
5920///
Abramo Bagnarae03db982010-05-20 15:32:11 +00005921/// \param ExplicitTemplateArgs the explicitly-provided template arguments,
5922/// if any. Note that this may be valid info even when 0 arguments are
5923/// explicitly provided as in, e.g., \c void sort<>(char*, char*);
5924/// as it anyway contains info on the angle brackets locations.
Douglas Gregorb9aa6b22009-09-24 23:14:47 +00005925///
Francois Pichet59e7c562011-07-08 06:21:47 +00005926/// \param Previous the set of declarations that may be specialized by
Abramo Bagnarae03db982010-05-20 15:32:11 +00005927/// this function specialization.
Larisse Voufo8c5d4072013-07-19 22:53:23 +00005928bool
5929Sema::CheckFunctionTemplateSpecialization(FunctionDecl *FD,
5930 TemplateArgumentListInfo *ExplicitTemplateArgs,
5931 LookupResult &Previous) {
Douglas Gregorb9aa6b22009-09-24 23:14:47 +00005932 // The set of function template specializations that could match this
5933 // explicit function template specialization.
John McCallc373d482010-01-27 01:50:18 +00005934 UnresolvedSet<8> Candidates;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005935
Sebastian Redl7a126a42010-08-31 00:36:30 +00005936 DeclContext *FDLookupContext = FD->getDeclContext()->getRedeclContext();
John McCall68263142009-11-18 22:49:29 +00005937 for (LookupResult::iterator I = Previous.begin(), E = Previous.end();
5938 I != E; ++I) {
5939 NamedDecl *Ovl = (*I)->getUnderlyingDecl();
5940 if (FunctionTemplateDecl *FunTmpl = dyn_cast<FunctionTemplateDecl>(Ovl)) {
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005941 // Only consider templates found within the same semantic lookup scope as
Douglas Gregorb9aa6b22009-09-24 23:14:47 +00005942 // FD.
Sebastian Redl7a126a42010-08-31 00:36:30 +00005943 if (!FDLookupContext->InEnclosingNamespaceSetOf(
5944 Ovl->getDeclContext()->getRedeclContext()))
Douglas Gregorb9aa6b22009-09-24 23:14:47 +00005945 continue;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005946
Richard Smith21c8fa82013-01-14 05:37:29 +00005947 // When matching a constexpr member function template specialization
5948 // against the primary template, we don't yet know whether the
5949 // specialization has an implicit 'const' (because we don't know whether
5950 // it will be a static member function until we know which template it
5951 // specializes), so adjust it now assuming it specializes this template.
5952 QualType FT = FD->getType();
5953 if (FD->isConstexpr()) {
5954 CXXMethodDecl *OldMD =
5955 dyn_cast<CXXMethodDecl>(FunTmpl->getTemplatedDecl());
5956 if (OldMD && OldMD->isConst()) {
5957 const FunctionProtoType *FPT = FT->castAs<FunctionProtoType>();
5958 FunctionProtoType::ExtProtoInfo EPI = FPT->getExtProtoInfo();
5959 EPI.TypeQuals |= Qualifiers::Const;
Reid Kleckner0567a792013-06-10 20:51:09 +00005960 FT = Context.getFunctionType(FPT->getResultType(), FPT->getArgTypes(),
Jordan Rosebea522f2013-03-08 21:51:21 +00005961 EPI);
Richard Smith21c8fa82013-01-14 05:37:29 +00005962 }
5963 }
5964
Douglas Gregorb9aa6b22009-09-24 23:14:47 +00005965 // C++ [temp.expl.spec]p11:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005966 // A trailing template-argument can be left unspecified in the
5967 // template-id naming an explicit function template specialization
Douglas Gregorb9aa6b22009-09-24 23:14:47 +00005968 // provided it can be deduced from the function argument type.
5969 // Perform template argument deduction to determine whether we may be
5970 // specializing this template.
5971 // FIXME: It is somewhat wasteful to build
Larisse Voufo8c5d4072013-07-19 22:53:23 +00005972 TemplateDeductionInfo Info(FD->getLocation());
Douglas Gregorb9aa6b22009-09-24 23:14:47 +00005973 FunctionDecl *Specialization = 0;
5974 if (TemplateDeductionResult TDK
Richard Smith21c8fa82013-01-14 05:37:29 +00005975 = DeduceTemplateArguments(FunTmpl, ExplicitTemplateArgs, FT,
5976 Specialization, Info)) {
Larisse Voufo8c5d4072013-07-19 22:53:23 +00005977 // FIXME: Template argument deduction failed; record why it failed, so
Douglas Gregorb9aa6b22009-09-24 23:14:47 +00005978 // that we can provide nifty diagnostics.
5979 (void)TDK;
5980 continue;
5981 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005982
Douglas Gregorb9aa6b22009-09-24 23:14:47 +00005983 // Record this candidate.
John McCallc373d482010-01-27 01:50:18 +00005984 Candidates.addDecl(Specialization, I.getAccess());
Douglas Gregorb9aa6b22009-09-24 23:14:47 +00005985 }
5986 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005987
Douglas Gregorc5df30f2009-09-26 03:41:46 +00005988 // Find the most specialized function template.
Larisse Voufo8c5d4072013-07-19 22:53:23 +00005989 UnresolvedSetIterator Result
5990 = getMostSpecialized(Candidates.begin(), Candidates.end(),
5991 TPOC_Other, 0, FD->getLocation(),
5992 PDiag(diag::err_function_template_spec_no_match)
5993 << FD->getDeclName(),
5994 PDiag(diag::err_function_template_spec_ambiguous)
5995 << FD->getDeclName() << (ExplicitTemplateArgs != 0),
5996 PDiag(diag::note_function_template_spec_matched));
John McCallc373d482010-01-27 01:50:18 +00005997 if (Result == Candidates.end())
Douglas Gregorb9aa6b22009-09-24 23:14:47 +00005998 return true;
John McCallc373d482010-01-27 01:50:18 +00005999
6000 // Ignore access information; it doesn't figure into redeclaration checking.
6001 FunctionDecl *Specialization = cast<FunctionDecl>(*Result);
Abramo Bagnaraabfb4052011-03-04 17:20:30 +00006002
6003 FunctionTemplateSpecializationInfo *SpecInfo
6004 = Specialization->getTemplateSpecializationInfo();
6005 assert(SpecInfo && "Function template specialization info missing?");
Francois Pichet59e7c562011-07-08 06:21:47 +00006006
6007 // Note: do not overwrite location info if previous template
6008 // specialization kind was explicit.
6009 TemplateSpecializationKind TSK = SpecInfo->getTemplateSpecializationKind();
Richard Smithff234882012-02-20 23:28:05 +00006010 if (TSK == TSK_Undeclared || TSK == TSK_ImplicitInstantiation) {
Francois Pichet59e7c562011-07-08 06:21:47 +00006011 Specialization->setLocation(FD->getLocation());
Richard Smithff234882012-02-20 23:28:05 +00006012 // C++11 [dcl.constexpr]p1: An explicit specialization of a constexpr
6013 // function can differ from the template declaration with respect to
6014 // the constexpr specifier.
6015 Specialization->setConstexpr(FD->isConstexpr());
6016 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006017
Douglas Gregorb9aa6b22009-09-24 23:14:47 +00006018 // FIXME: Check if the prior specialization has a point of instantiation.
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00006019 // If so, we have run afoul of .
John McCall7ad650f2010-03-24 07:46:06 +00006020
6021 // If this is a friend declaration, then we're not really declaring
6022 // an explicit specialization.
6023 bool isFriend = (FD->getFriendObjectKind() != Decl::FOK_None);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006024
Douglas Gregord5cb8762009-10-07 00:13:32 +00006025 // Check the scope of this explicit specialization.
John McCall7ad650f2010-03-24 07:46:06 +00006026 if (!isFriend &&
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006027 CheckTemplateSpecializationScope(*this,
Douglas Gregord5cb8762009-10-07 00:13:32 +00006028 Specialization->getPrimaryTemplate(),
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006029 Specialization, FD->getLocation(),
Douglas Gregor9302da62009-10-14 23:50:59 +00006030 false))
Douglas Gregord5cb8762009-10-07 00:13:32 +00006031 return true;
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00006032
6033 // C++ [temp.expl.spec]p6:
6034 // If a template, a member template or the member of a class template is
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006035 // explicitly specialized then that specialization shall be declared
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00006036 // before the first use of that specialization that would cause an implicit
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006037 // instantiation to take place, in every translation unit in which such a
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00006038 // use occurs; no diagnostic is required.
Abramo Bagnarac98971d2010-06-12 07:44:57 +00006039 bool HasNoEffect = false;
John McCall7ad650f2010-03-24 07:46:06 +00006040 if (!isFriend &&
6041 CheckSpecializationInstantiationRedecl(FD->getLocation(),
John McCall75042392010-02-11 01:33:53 +00006042 TSK_ExplicitSpecialization,
6043 Specialization,
6044 SpecInfo->getTemplateSpecializationKind(),
6045 SpecInfo->getPointOfInstantiation(),
Abramo Bagnarac98971d2010-06-12 07:44:57 +00006046 HasNoEffect))
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00006047 return true;
Douglas Gregore885e182011-05-21 18:53:30 +00006048
Douglas Gregorb9aa6b22009-09-24 23:14:47 +00006049 // Mark the prior declaration as an explicit specialization, so that later
6050 // clients know that this is an explicit specialization.
Argyrios Kyrtzidisbbc64542010-08-15 01:15:20 +00006051 if (!isFriend) {
John McCall7ad650f2010-03-24 07:46:06 +00006052 SpecInfo->setTemplateSpecializationKind(TSK_ExplicitSpecialization);
Argyrios Kyrtzidisbbc64542010-08-15 01:15:20 +00006053 MarkUnusedFileScopedDecl(Specialization);
6054 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006055
Douglas Gregorb9aa6b22009-09-24 23:14:47 +00006056 // Turn the given function declaration into a function template
6057 // specialization, with the template arguments from the previous
6058 // specialization.
Abramo Bagnarae03db982010-05-20 15:32:11 +00006059 // Take copies of (semantic and syntactic) template argument lists.
6060 const TemplateArgumentList* TemplArgs = new (Context)
6061 TemplateArgumentList(Specialization->getTemplateSpecializationArgs());
Douglas Gregor838db382010-02-11 01:19:42 +00006062 FD->setFunctionTemplateSpecialization(Specialization->getPrimaryTemplate(),
Abramo Bagnarae03db982010-05-20 15:32:11 +00006063 TemplArgs, /*InsertPos=*/0,
6064 SpecInfo->getTemplateSpecializationKind(),
Argyrios Kyrtzidis71a76052011-09-22 20:07:09 +00006065 ExplicitTemplateArgs);
Rafael Espindolad2615cc2013-04-03 19:27:57 +00006066
Douglas Gregorb9aa6b22009-09-24 23:14:47 +00006067 // The "previous declaration" for this function template specialization is
6068 // the prior function template specialization.
John McCall68263142009-11-18 22:49:29 +00006069 Previous.clear();
6070 Previous.addDecl(Specialization);
Douglas Gregorb9aa6b22009-09-24 23:14:47 +00006071 return false;
6072}
6073
Douglas Gregor251b4ff2009-10-08 07:24:58 +00006074/// \brief Perform semantic analysis for the given non-template member
Douglas Gregor1fef4e62009-10-07 22:35:40 +00006075/// specialization.
6076///
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006077/// This routine performs all of the semantic analysis required for an
Douglas Gregor1fef4e62009-10-07 22:35:40 +00006078/// explicit member function specialization. On successful completion,
6079/// the function declaration \p FD will become a member function
6080/// specialization.
6081///
Douglas Gregor251b4ff2009-10-08 07:24:58 +00006082/// \param Member the member declaration, which will be updated to become a
6083/// specialization.
Douglas Gregor1fef4e62009-10-07 22:35:40 +00006084///
John McCall68263142009-11-18 22:49:29 +00006085/// \param Previous the set of declarations, one of which may be specialized
6086/// by this function specialization; the set will be modified to contain the
6087/// redeclared member.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006088bool
John McCall68263142009-11-18 22:49:29 +00006089Sema::CheckMemberSpecialization(NamedDecl *Member, LookupResult &Previous) {
Douglas Gregor251b4ff2009-10-08 07:24:58 +00006090 assert(!isa<TemplateDecl>(Member) && "Only for non-template members");
John McCall77e8b112010-04-13 20:37:33 +00006091
Douglas Gregor251b4ff2009-10-08 07:24:58 +00006092 // Try to find the member we are instantiating.
6093 NamedDecl *Instantiation = 0;
6094 NamedDecl *InstantiatedFrom = 0;
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00006095 MemberSpecializationInfo *MSInfo = 0;
6096
John McCall68263142009-11-18 22:49:29 +00006097 if (Previous.empty()) {
Douglas Gregor251b4ff2009-10-08 07:24:58 +00006098 // Nowhere to look anyway.
6099 } else if (FunctionDecl *Function = dyn_cast<FunctionDecl>(Member)) {
John McCall68263142009-11-18 22:49:29 +00006100 for (LookupResult::iterator I = Previous.begin(), E = Previous.end();
6101 I != E; ++I) {
6102 NamedDecl *D = (*I)->getUnderlyingDecl();
6103 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D)) {
Douglas Gregor251b4ff2009-10-08 07:24:58 +00006104 if (Context.hasSameType(Function->getType(), Method->getType())) {
6105 Instantiation = Method;
6106 InstantiatedFrom = Method->getInstantiatedFromMemberFunction();
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00006107 MSInfo = Method->getMemberSpecializationInfo();
Douglas Gregor251b4ff2009-10-08 07:24:58 +00006108 break;
6109 }
Douglas Gregor1fef4e62009-10-07 22:35:40 +00006110 }
6111 }
Douglas Gregor251b4ff2009-10-08 07:24:58 +00006112 } else if (isa<VarDecl>(Member)) {
John McCall68263142009-11-18 22:49:29 +00006113 VarDecl *PrevVar;
6114 if (Previous.isSingleResult() &&
6115 (PrevVar = dyn_cast<VarDecl>(Previous.getFoundDecl())))
Douglas Gregor251b4ff2009-10-08 07:24:58 +00006116 if (PrevVar->isStaticDataMember()) {
John McCall68263142009-11-18 22:49:29 +00006117 Instantiation = PrevVar;
Douglas Gregor251b4ff2009-10-08 07:24:58 +00006118 InstantiatedFrom = PrevVar->getInstantiatedFromStaticDataMember();
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00006119 MSInfo = PrevVar->getMemberSpecializationInfo();
Douglas Gregor251b4ff2009-10-08 07:24:58 +00006120 }
6121 } else if (isa<RecordDecl>(Member)) {
John McCall68263142009-11-18 22:49:29 +00006122 CXXRecordDecl *PrevRecord;
6123 if (Previous.isSingleResult() &&
6124 (PrevRecord = dyn_cast<CXXRecordDecl>(Previous.getFoundDecl()))) {
6125 Instantiation = PrevRecord;
Douglas Gregor251b4ff2009-10-08 07:24:58 +00006126 InstantiatedFrom = PrevRecord->getInstantiatedFromMemberClass();
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00006127 MSInfo = PrevRecord->getMemberSpecializationInfo();
Douglas Gregor251b4ff2009-10-08 07:24:58 +00006128 }
Richard Smith1af83c42012-03-23 03:33:32 +00006129 } else if (isa<EnumDecl>(Member)) {
6130 EnumDecl *PrevEnum;
6131 if (Previous.isSingleResult() &&
6132 (PrevEnum = dyn_cast<EnumDecl>(Previous.getFoundDecl()))) {
6133 Instantiation = PrevEnum;
6134 InstantiatedFrom = PrevEnum->getInstantiatedFromMemberEnum();
6135 MSInfo = PrevEnum->getMemberSpecializationInfo();
6136 }
Douglas Gregor1fef4e62009-10-07 22:35:40 +00006137 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006138
Douglas Gregor1fef4e62009-10-07 22:35:40 +00006139 if (!Instantiation) {
Douglas Gregor251b4ff2009-10-08 07:24:58 +00006140 // There is no previous declaration that matches. Since member
Douglas Gregor1fef4e62009-10-07 22:35:40 +00006141 // specializations are always out-of-line, the caller will complain about
6142 // this mismatch later.
6143 return false;
6144 }
John McCall77e8b112010-04-13 20:37:33 +00006145
6146 // If this is a friend, just bail out here before we start turning
6147 // things into explicit specializations.
6148 if (Member->getFriendObjectKind() != Decl::FOK_None) {
6149 // Preserve instantiation information.
6150 if (InstantiatedFrom && isa<CXXMethodDecl>(Member)) {
6151 cast<CXXMethodDecl>(Member)->setInstantiationOfMemberFunction(
6152 cast<CXXMethodDecl>(InstantiatedFrom),
6153 cast<CXXMethodDecl>(Instantiation)->getTemplateSpecializationKind());
6154 } else if (InstantiatedFrom && isa<CXXRecordDecl>(Member)) {
6155 cast<CXXRecordDecl>(Member)->setInstantiationOfMemberClass(
6156 cast<CXXRecordDecl>(InstantiatedFrom),
6157 cast<CXXRecordDecl>(Instantiation)->getTemplateSpecializationKind());
6158 }
6159
6160 Previous.clear();
6161 Previous.addDecl(Instantiation);
6162 return false;
6163 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006164
Douglas Gregor251b4ff2009-10-08 07:24:58 +00006165 // Make sure that this is a specialization of a member.
6166 if (!InstantiatedFrom) {
6167 Diag(Member->getLocation(), diag::err_spec_member_not_instantiated)
6168 << Member;
Douglas Gregor1fef4e62009-10-07 22:35:40 +00006169 Diag(Instantiation->getLocation(), diag::note_specialized_decl);
6170 return true;
6171 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006172
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00006173 // C++ [temp.expl.spec]p6:
6174 // If a template, a member template or the member of a class template is
Nico Weberff91d242011-12-23 20:58:04 +00006175 // explicitly specialized then that specialization shall be declared
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00006176 // before the first use of that specialization that would cause an implicit
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006177 // instantiation to take place, in every translation unit in which such a
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00006178 // use occurs; no diagnostic is required.
6179 assert(MSInfo && "Member specialization info missing?");
John McCall75042392010-02-11 01:33:53 +00006180
Abramo Bagnarac98971d2010-06-12 07:44:57 +00006181 bool HasNoEffect = false;
John McCall75042392010-02-11 01:33:53 +00006182 if (CheckSpecializationInstantiationRedecl(Member->getLocation(),
6183 TSK_ExplicitSpecialization,
6184 Instantiation,
6185 MSInfo->getTemplateSpecializationKind(),
6186 MSInfo->getPointOfInstantiation(),
Abramo Bagnarac98971d2010-06-12 07:44:57 +00006187 HasNoEffect))
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00006188 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006189
Douglas Gregor1fef4e62009-10-07 22:35:40 +00006190 // Check the scope of this explicit specialization.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006191 if (CheckTemplateSpecializationScope(*this,
Douglas Gregor251b4ff2009-10-08 07:24:58 +00006192 InstantiatedFrom,
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006193 Instantiation, Member->getLocation(),
Douglas Gregor9302da62009-10-14 23:50:59 +00006194 false))
Douglas Gregor1fef4e62009-10-07 22:35:40 +00006195 return true;
Douglas Gregor2db32322009-10-07 23:56:10 +00006196
Douglas Gregor251b4ff2009-10-08 07:24:58 +00006197 // Note that this is an explicit instantiation of a member.
Douglas Gregorf6b11852009-10-08 15:14:33 +00006198 // the original declaration to note that it is an explicit specialization
6199 // (if it was previously an implicit instantiation). This latter step
6200 // makes bookkeeping easier.
Douglas Gregor251b4ff2009-10-08 07:24:58 +00006201 if (isa<FunctionDecl>(Member)) {
Douglas Gregorf6b11852009-10-08 15:14:33 +00006202 FunctionDecl *InstantiationFunction = cast<FunctionDecl>(Instantiation);
6203 if (InstantiationFunction->getTemplateSpecializationKind() ==
6204 TSK_ImplicitInstantiation) {
6205 InstantiationFunction->setTemplateSpecializationKind(
6206 TSK_ExplicitSpecialization);
6207 InstantiationFunction->setLocation(Member->getLocation());
6208 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006209
Douglas Gregor251b4ff2009-10-08 07:24:58 +00006210 cast<FunctionDecl>(Member)->setInstantiationOfMemberFunction(
6211 cast<CXXMethodDecl>(InstantiatedFrom),
6212 TSK_ExplicitSpecialization);
Argyrios Kyrtzidisbbc64542010-08-15 01:15:20 +00006213 MarkUnusedFileScopedDecl(InstantiationFunction);
Douglas Gregor251b4ff2009-10-08 07:24:58 +00006214 } else if (isa<VarDecl>(Member)) {
Douglas Gregorf6b11852009-10-08 15:14:33 +00006215 VarDecl *InstantiationVar = cast<VarDecl>(Instantiation);
6216 if (InstantiationVar->getTemplateSpecializationKind() ==
6217 TSK_ImplicitInstantiation) {
6218 InstantiationVar->setTemplateSpecializationKind(
6219 TSK_ExplicitSpecialization);
6220 InstantiationVar->setLocation(Member->getLocation());
6221 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006222
Douglas Gregor251b4ff2009-10-08 07:24:58 +00006223 Context.setInstantiatedFromStaticDataMember(cast<VarDecl>(Member),
6224 cast<VarDecl>(InstantiatedFrom),
6225 TSK_ExplicitSpecialization);
Argyrios Kyrtzidisbbc64542010-08-15 01:15:20 +00006226 MarkUnusedFileScopedDecl(InstantiationVar);
Richard Smith1af83c42012-03-23 03:33:32 +00006227 } else if (isa<CXXRecordDecl>(Member)) {
Douglas Gregorf6b11852009-10-08 15:14:33 +00006228 CXXRecordDecl *InstantiationClass = cast<CXXRecordDecl>(Instantiation);
6229 if (InstantiationClass->getTemplateSpecializationKind() ==
6230 TSK_ImplicitInstantiation) {
6231 InstantiationClass->setTemplateSpecializationKind(
6232 TSK_ExplicitSpecialization);
6233 InstantiationClass->setLocation(Member->getLocation());
6234 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006235
Douglas Gregor251b4ff2009-10-08 07:24:58 +00006236 cast<CXXRecordDecl>(Member)->setInstantiationOfMemberClass(
Douglas Gregorf6b11852009-10-08 15:14:33 +00006237 cast<CXXRecordDecl>(InstantiatedFrom),
6238 TSK_ExplicitSpecialization);
Richard Smith1af83c42012-03-23 03:33:32 +00006239 } else {
6240 assert(isa<EnumDecl>(Member) && "Only member enums remain");
6241 EnumDecl *InstantiationEnum = cast<EnumDecl>(Instantiation);
6242 if (InstantiationEnum->getTemplateSpecializationKind() ==
6243 TSK_ImplicitInstantiation) {
6244 InstantiationEnum->setTemplateSpecializationKind(
6245 TSK_ExplicitSpecialization);
6246 InstantiationEnum->setLocation(Member->getLocation());
6247 }
6248
6249 cast<EnumDecl>(Member)->setInstantiationOfMemberEnum(
6250 cast<EnumDecl>(InstantiatedFrom), TSK_ExplicitSpecialization);
Douglas Gregor251b4ff2009-10-08 07:24:58 +00006251 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006252
Douglas Gregor1fef4e62009-10-07 22:35:40 +00006253 // Save the caller the trouble of having to figure out which declaration
6254 // this specialization matches.
John McCall68263142009-11-18 22:49:29 +00006255 Previous.clear();
6256 Previous.addDecl(Instantiation);
Douglas Gregor1fef4e62009-10-07 22:35:40 +00006257 return false;
6258}
6259
Douglas Gregor558c0322009-10-14 23:41:34 +00006260/// \brief Check the scope of an explicit instantiation.
Douglas Gregor669eed82010-07-13 00:10:04 +00006261///
6262/// \returns true if a serious error occurs, false otherwise.
6263static bool CheckExplicitInstantiationScope(Sema &S, NamedDecl *D,
Douglas Gregor558c0322009-10-14 23:41:34 +00006264 SourceLocation InstLoc,
6265 bool WasQualifiedName) {
Sebastian Redl7a126a42010-08-31 00:36:30 +00006266 DeclContext *OrigContext= D->getDeclContext()->getEnclosingNamespaceContext();
6267 DeclContext *CurContext = S.CurContext->getRedeclContext();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006268
Douglas Gregor669eed82010-07-13 00:10:04 +00006269 if (CurContext->isRecord()) {
6270 S.Diag(InstLoc, diag::err_explicit_instantiation_in_class)
6271 << D;
6272 return true;
6273 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006274
Richard Smith3e2e91e2011-10-18 02:28:33 +00006275 // C++11 [temp.explicit]p3:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006276 // An explicit instantiation shall appear in an enclosing namespace of its
Richard Smith3e2e91e2011-10-18 02:28:33 +00006277 // template. If the name declared in the explicit instantiation is an
6278 // unqualified name, the explicit instantiation shall appear in the
6279 // namespace where its template is declared or, if that namespace is inline
6280 // (7.3.1), any namespace from its enclosing namespace set.
Douglas Gregor558c0322009-10-14 23:41:34 +00006281 //
6282 // This is DR275, which we do not retroactively apply to C++98/03.
Richard Smith3e2e91e2011-10-18 02:28:33 +00006283 if (WasQualifiedName) {
6284 if (CurContext->Encloses(OrigContext))
6285 return false;
6286 } else {
6287 if (CurContext->InEnclosingNamespaceSetOf(OrigContext))
6288 return false;
6289 }
6290
6291 if (NamespaceDecl *NS = dyn_cast<NamespaceDecl>(OrigContext)) {
6292 if (WasQualifiedName)
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006293 S.Diag(InstLoc,
Richard Smith80ad52f2013-01-02 11:42:31 +00006294 S.getLangOpts().CPlusPlus11?
Richard Smith3e2e91e2011-10-18 02:28:33 +00006295 diag::err_explicit_instantiation_out_of_scope :
6296 diag::warn_explicit_instantiation_out_of_scope_0x)
Douglas Gregor558c0322009-10-14 23:41:34 +00006297 << D << NS;
6298 else
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006299 S.Diag(InstLoc,
Richard Smith80ad52f2013-01-02 11:42:31 +00006300 S.getLangOpts().CPlusPlus11?
Richard Smith3e2e91e2011-10-18 02:28:33 +00006301 diag::err_explicit_instantiation_unqualified_wrong_namespace :
6302 diag::warn_explicit_instantiation_unqualified_wrong_namespace_0x)
6303 << D << NS;
6304 } else
6305 S.Diag(InstLoc,
Richard Smith80ad52f2013-01-02 11:42:31 +00006306 S.getLangOpts().CPlusPlus11?
Richard Smith3e2e91e2011-10-18 02:28:33 +00006307 diag::err_explicit_instantiation_must_be_global :
6308 diag::warn_explicit_instantiation_must_be_global_0x)
6309 << D;
Douglas Gregor558c0322009-10-14 23:41:34 +00006310 S.Diag(D->getLocation(), diag::note_explicit_instantiation_here);
Douglas Gregor669eed82010-07-13 00:10:04 +00006311 return false;
Douglas Gregor558c0322009-10-14 23:41:34 +00006312}
6313
6314/// \brief Determine whether the given scope specifier has a template-id in it.
6315static bool ScopeSpecifierHasTemplateId(const CXXScopeSpec &SS) {
6316 if (!SS.isSet())
6317 return false;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006318
Richard Smith3e2e91e2011-10-18 02:28:33 +00006319 // C++11 [temp.explicit]p3:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006320 // If the explicit instantiation is for a member function, a member class
Douglas Gregor558c0322009-10-14 23:41:34 +00006321 // or a static data member of a class template specialization, the name of
6322 // the class template specialization in the qualified-id for the member
6323 // name shall be a simple-template-id.
6324 //
6325 // C++98 has the same restriction, just worded differently.
6326 for (NestedNameSpecifier *NNS = (NestedNameSpecifier *)SS.getScopeRep();
6327 NNS; NNS = NNS->getPrefix())
John McCallf4c73712011-01-19 06:33:43 +00006328 if (const Type *T = NNS->getAsType())
Douglas Gregor558c0322009-10-14 23:41:34 +00006329 if (isa<TemplateSpecializationType>(T))
6330 return true;
6331
6332 return false;
6333}
6334
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00006335// Explicit instantiation of a class template specialization
John McCallf312b1e2010-08-26 23:41:50 +00006336DeclResult
Mike Stump1eb44332009-09-09 15:08:12 +00006337Sema::ActOnExplicitInstantiation(Scope *S,
Douglas Gregor45f96552009-09-04 06:33:52 +00006338 SourceLocation ExternLoc,
6339 SourceLocation TemplateLoc,
Mike Stump1eb44332009-09-09 15:08:12 +00006340 unsigned TagSpec,
Douglas Gregor93dfdb12009-05-13 00:25:59 +00006341 SourceLocation KWLoc,
6342 const CXXScopeSpec &SS,
6343 TemplateTy TemplateD,
6344 SourceLocation TemplateNameLoc,
6345 SourceLocation LAngleLoc,
6346 ASTTemplateArgsPtr TemplateArgsIn,
Douglas Gregor93dfdb12009-05-13 00:25:59 +00006347 SourceLocation RAngleLoc,
6348 AttributeList *Attr) {
6349 // Find the class template we're specializing
6350 TemplateName Name = TemplateD.getAsVal<TemplateName>();
Richard Smithb1ce9292013-06-22 22:03:31 +00006351 TemplateDecl *TD = Name.getAsTemplateDecl();
Douglas Gregor93dfdb12009-05-13 00:25:59 +00006352 // Check that the specialization uses the same tag kind as the
6353 // original template.
Abramo Bagnara465d41b2010-05-11 21:36:43 +00006354 TagTypeKind Kind = TypeWithKeyword::getTagTypeKindForTypeSpec(TagSpec);
6355 assert(Kind != TTK_Enum &&
6356 "Invalid enum tag in class template explicit instantiation!");
Richard Smithb1ce9292013-06-22 22:03:31 +00006357
6358 if (isa<TypeAliasTemplateDecl>(TD)) {
6359 Diag(KWLoc, diag::err_tag_reference_non_tag) << Kind;
6360 Diag(TD->getTemplatedDecl()->getLocation(),
6361 diag::note_previous_use);
6362 return true;
6363 }
6364
6365 ClassTemplateDecl *ClassTemplate = cast<ClassTemplateDecl>(TD);
6366
Douglas Gregor501c5ce2009-05-14 16:41:31 +00006367 if (!isAcceptableTagRedeclaration(ClassTemplate->getTemplatedDecl(),
Richard Trieubbf34c02011-06-10 03:11:26 +00006368 Kind, /*isDefinition*/false, KWLoc,
Douglas Gregor501c5ce2009-05-14 16:41:31 +00006369 *ClassTemplate->getIdentifier())) {
Mike Stump1eb44332009-09-09 15:08:12 +00006370 Diag(KWLoc, diag::err_use_with_wrong_tag)
Douglas Gregor93dfdb12009-05-13 00:25:59 +00006371 << ClassTemplate
Douglas Gregor849b2432010-03-31 17:46:05 +00006372 << FixItHint::CreateReplacement(KWLoc,
Douglas Gregor93dfdb12009-05-13 00:25:59 +00006373 ClassTemplate->getTemplatedDecl()->getKindName());
Mike Stump1eb44332009-09-09 15:08:12 +00006374 Diag(ClassTemplate->getTemplatedDecl()->getLocation(),
Douglas Gregor93dfdb12009-05-13 00:25:59 +00006375 diag::note_previous_use);
6376 Kind = ClassTemplate->getTemplatedDecl()->getTagKind();
6377 }
6378
Douglas Gregor558c0322009-10-14 23:41:34 +00006379 // C++0x [temp.explicit]p2:
6380 // There are two forms of explicit instantiation: an explicit instantiation
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006381 // definition and an explicit instantiation declaration. An explicit
6382 // instantiation declaration begins with the extern keyword. [...]
Douglas Gregord5cb8762009-10-07 00:13:32 +00006383 TemplateSpecializationKind TSK
6384 = ExternLoc.isInvalid()? TSK_ExplicitInstantiationDefinition
6385 : TSK_ExplicitInstantiationDeclaration;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006386
Douglas Gregor93dfdb12009-05-13 00:25:59 +00006387 // Translate the parser's template argument list in our AST format.
John McCalld5532b62009-11-23 01:53:49 +00006388 TemplateArgumentListInfo TemplateArgs(LAngleLoc, RAngleLoc);
Douglas Gregor314b97f2009-11-10 19:49:08 +00006389 translateTemplateArguments(TemplateArgsIn, TemplateArgs);
Douglas Gregor93dfdb12009-05-13 00:25:59 +00006390
6391 // Check that the template argument list is well-formed for this
6392 // template.
Chris Lattner5f9e2722011-07-23 10:55:15 +00006393 SmallVector<TemplateArgument, 4> Converted;
John McCalld5532b62009-11-23 01:53:49 +00006394 if (CheckTemplateArgumentList(ClassTemplate, TemplateNameLoc,
6395 TemplateArgs, false, Converted))
Douglas Gregor93dfdb12009-05-13 00:25:59 +00006396 return true;
6397
Douglas Gregor93dfdb12009-05-13 00:25:59 +00006398 // Find the class template specialization declaration that
6399 // corresponds to these arguments.
Douglas Gregor93dfdb12009-05-13 00:25:59 +00006400 void *InsertPos = 0;
6401 ClassTemplateSpecializationDecl *PrevDecl
Douglas Gregor910f8002010-11-07 23:05:16 +00006402 = ClassTemplate->findSpecialization(Converted.data(),
6403 Converted.size(), InsertPos);
Douglas Gregor93dfdb12009-05-13 00:25:59 +00006404
Abramo Bagnarac98971d2010-06-12 07:44:57 +00006405 TemplateSpecializationKind PrevDecl_TSK
6406 = PrevDecl ? PrevDecl->getTemplateSpecializationKind() : TSK_Undeclared;
6407
Douglas Gregord5cb8762009-10-07 00:13:32 +00006408 // C++0x [temp.explicit]p2:
6409 // [...] An explicit instantiation shall appear in an enclosing
6410 // namespace of its template. [...]
6411 //
6412 // This is C++ DR 275.
Douglas Gregor669eed82010-07-13 00:10:04 +00006413 if (CheckExplicitInstantiationScope(*this, ClassTemplate, TemplateNameLoc,
6414 SS.isSet()))
6415 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006416
Douglas Gregor93dfdb12009-05-13 00:25:59 +00006417 ClassTemplateSpecializationDecl *Specialization = 0;
6418
Abramo Bagnarac98971d2010-06-12 07:44:57 +00006419 bool HasNoEffect = false;
Douglas Gregor93dfdb12009-05-13 00:25:59 +00006420 if (PrevDecl) {
Douglas Gregor0d035142009-10-27 18:42:08 +00006421 if (CheckSpecializationInstantiationRedecl(TemplateNameLoc, TSK,
Abramo Bagnarac98971d2010-06-12 07:44:57 +00006422 PrevDecl, PrevDecl_TSK,
Douglas Gregor89a5bea2009-10-15 22:53:21 +00006423 PrevDecl->getPointOfInstantiation(),
Abramo Bagnarac98971d2010-06-12 07:44:57 +00006424 HasNoEffect))
John McCalld226f652010-08-21 09:40:31 +00006425 return PrevDecl;
Douglas Gregor93dfdb12009-05-13 00:25:59 +00006426
Abramo Bagnarac98971d2010-06-12 07:44:57 +00006427 // Even though HasNoEffect == true means that this explicit instantiation
6428 // has no effect on semantics, we go on to put its syntax in the AST.
6429
6430 if (PrevDecl_TSK == TSK_ImplicitInstantiation ||
6431 PrevDecl_TSK == TSK_Undeclared) {
Douglas Gregor52604ab2009-09-11 21:19:12 +00006432 // Since the only prior class template specialization with these
6433 // arguments was referenced but not declared, reuse that
Abramo Bagnarac98971d2010-06-12 07:44:57 +00006434 // declaration node as our own, updating the source location
6435 // for the template name to reflect our new declaration.
6436 // (Other source locations will be updated later.)
Douglas Gregor52604ab2009-09-11 21:19:12 +00006437 Specialization = PrevDecl;
6438 Specialization->setLocation(TemplateNameLoc);
6439 PrevDecl = 0;
6440 }
Douglas Gregor89a5bea2009-10-15 22:53:21 +00006441 }
Abramo Bagnarac98971d2010-06-12 07:44:57 +00006442
Douglas Gregor52604ab2009-09-11 21:19:12 +00006443 if (!Specialization) {
Douglas Gregor93dfdb12009-05-13 00:25:59 +00006444 // Create a new class template specialization declaration node for
6445 // this explicit specialization.
6446 Specialization
Douglas Gregor13c85772010-05-06 00:28:52 +00006447 = ClassTemplateSpecializationDecl::Create(Context, Kind,
Douglas Gregor93dfdb12009-05-13 00:25:59 +00006448 ClassTemplate->getDeclContext(),
Abramo Bagnaraba877ad2011-03-09 14:09:51 +00006449 KWLoc, TemplateNameLoc,
Douglas Gregor93dfdb12009-05-13 00:25:59 +00006450 ClassTemplate,
Douglas Gregor910f8002010-11-07 23:05:16 +00006451 Converted.data(),
6452 Converted.size(),
6453 PrevDecl);
John McCallb6217662010-03-15 10:12:16 +00006454 SetNestedNameSpecifier(Specialization, SS);
Douglas Gregor93dfdb12009-05-13 00:25:59 +00006455
Argyrios Kyrtzidiscc0b1bc2010-07-20 13:59:28 +00006456 if (!HasNoEffect && !PrevDecl) {
Abramo Bagnarac98971d2010-06-12 07:44:57 +00006457 // Insert the new specialization.
Argyrios Kyrtzidiscc0b1bc2010-07-20 13:59:28 +00006458 ClassTemplate->AddSpecialization(Specialization, InsertPos);
Abramo Bagnarac98971d2010-06-12 07:44:57 +00006459 }
Douglas Gregor93dfdb12009-05-13 00:25:59 +00006460 }
6461
6462 // Build the fully-sugared type for this explicit instantiation as
6463 // the user wrote in the explicit instantiation itself. This means
6464 // that we'll pretty-print the type retrieved from the
6465 // specialization's declaration the way that the user actually wrote
6466 // the explicit instantiation, rather than formatting the name based
6467 // on the "canonical" representation used to store the template
6468 // arguments in the specialization.
John McCall3cb0ebd2010-03-10 03:28:59 +00006469 TypeSourceInfo *WrittenTy
6470 = Context.getTemplateSpecializationTypeInfo(Name, TemplateNameLoc,
6471 TemplateArgs,
Douglas Gregor93dfdb12009-05-13 00:25:59 +00006472 Context.getTypeDeclType(Specialization));
6473 Specialization->setTypeAsWritten(WrittenTy);
Douglas Gregor93dfdb12009-05-13 00:25:59 +00006474
Abramo Bagnarac98971d2010-06-12 07:44:57 +00006475 // Set source locations for keywords.
6476 Specialization->setExternLoc(ExternLoc);
6477 Specialization->setTemplateKeywordLoc(TemplateLoc);
Argyrios Kyrtzidis2fb5d122013-04-22 23:23:42 +00006478 Specialization->setRBraceLoc(SourceLocation());
Abramo Bagnarac98971d2010-06-12 07:44:57 +00006479
Rafael Espindola0257b7f2012-01-03 06:04:21 +00006480 if (Attr)
6481 ProcessDeclAttributeList(S, Specialization, Attr);
6482
Abramo Bagnarac98971d2010-06-12 07:44:57 +00006483 // Add the explicit instantiation into its lexical context. However,
6484 // since explicit instantiations are never found by name lookup, we
6485 // just put it into the declaration context directly.
6486 Specialization->setLexicalDeclContext(CurContext);
6487 CurContext->addDecl(Specialization);
6488
6489 // Syntax is now OK, so return if it has no other effect on semantics.
6490 if (HasNoEffect) {
6491 // Set the template specialization kind.
6492 Specialization->setTemplateSpecializationKind(TSK);
John McCalld226f652010-08-21 09:40:31 +00006493 return Specialization;
Douglas Gregord78f5982009-11-25 06:01:46 +00006494 }
Douglas Gregor93dfdb12009-05-13 00:25:59 +00006495
6496 // C++ [temp.explicit]p3:
Douglas Gregor93dfdb12009-05-13 00:25:59 +00006497 // A definition of a class template or class member template
6498 // shall be in scope at the point of the explicit instantiation of
6499 // the class template or class member template.
6500 //
6501 // This check comes when we actually try to perform the
6502 // instantiation.
Douglas Gregor89a5bea2009-10-15 22:53:21 +00006503 ClassTemplateSpecializationDecl *Def
6504 = cast_or_null<ClassTemplateSpecializationDecl>(
Douglas Gregor952b0172010-02-11 01:04:33 +00006505 Specialization->getDefinition());
Douglas Gregor89a5bea2009-10-15 22:53:21 +00006506 if (!Def)
Douglas Gregor972e6ce2009-10-27 06:26:26 +00006507 InstantiateClassTemplateSpecialization(TemplateNameLoc, Specialization, TSK);
Abramo Bagnarac98971d2010-06-12 07:44:57 +00006508 else if (TSK == TSK_ExplicitInstantiationDefinition) {
Douglas Gregor6fb745b2010-05-13 16:44:06 +00006509 MarkVTableUsed(TemplateNameLoc, Specialization, true);
Abramo Bagnarac98971d2010-06-12 07:44:57 +00006510 Specialization->setPointOfInstantiation(Def->getPointOfInstantiation());
6511 }
Douglas Gregor6fb745b2010-05-13 16:44:06 +00006512
Douglas Gregor0d035142009-10-27 18:42:08 +00006513 // Instantiate the members of this class template specialization.
6514 Def = cast_or_null<ClassTemplateSpecializationDecl>(
Douglas Gregor952b0172010-02-11 01:04:33 +00006515 Specialization->getDefinition());
Rafael Espindolab0f65ca2010-03-22 23:12:48 +00006516 if (Def) {
Rafael Espindolaf075b222010-03-23 19:55:22 +00006517 TemplateSpecializationKind Old_TSK = Def->getTemplateSpecializationKind();
6518
6519 // Fix a TSK_ExplicitInstantiationDeclaration followed by a
6520 // TSK_ExplicitInstantiationDefinition
6521 if (Old_TSK == TSK_ExplicitInstantiationDeclaration &&
6522 TSK == TSK_ExplicitInstantiationDefinition)
6523 Def->setTemplateSpecializationKind(TSK);
Rafael Espindolab0f65ca2010-03-22 23:12:48 +00006524
Douglas Gregor89a5bea2009-10-15 22:53:21 +00006525 InstantiateClassTemplateSpecializationMembers(TemplateNameLoc, Def, TSK);
Rafael Espindolab0f65ca2010-03-22 23:12:48 +00006526 }
Douglas Gregor93dfdb12009-05-13 00:25:59 +00006527
Abramo Bagnarac98971d2010-06-12 07:44:57 +00006528 // Set the template specialization kind.
6529 Specialization->setTemplateSpecializationKind(TSK);
John McCalld226f652010-08-21 09:40:31 +00006530 return Specialization;
Douglas Gregor93dfdb12009-05-13 00:25:59 +00006531}
6532
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00006533// Explicit instantiation of a member class of a class template.
John McCalld226f652010-08-21 09:40:31 +00006534DeclResult
Mike Stump1eb44332009-09-09 15:08:12 +00006535Sema::ActOnExplicitInstantiation(Scope *S,
Douglas Gregor45f96552009-09-04 06:33:52 +00006536 SourceLocation ExternLoc,
6537 SourceLocation TemplateLoc,
Mike Stump1eb44332009-09-09 15:08:12 +00006538 unsigned TagSpec,
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00006539 SourceLocation KWLoc,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00006540 CXXScopeSpec &SS,
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00006541 IdentifierInfo *Name,
6542 SourceLocation NameLoc,
6543 AttributeList *Attr) {
6544
Douglas Gregor402abb52009-05-28 23:31:59 +00006545 bool Owned = false;
John McCallc4e70192009-09-11 04:59:25 +00006546 bool IsDependent = false;
John McCallf312b1e2010-08-26 23:41:50 +00006547 Decl *TagD = ActOnTag(S, TagSpec, Sema::TUK_Reference,
John McCalld226f652010-08-21 09:40:31 +00006548 KWLoc, SS, Name, NameLoc, Attr, AS_none,
Douglas Gregore7612302011-09-09 19:05:14 +00006549 /*ModulePrivateLoc=*/SourceLocation(),
Benjamin Kramer5354e772012-08-23 23:38:35 +00006550 MultiTemplateParamsArg(), Owned, IsDependent,
6551 SourceLocation(), false, TypeResult());
John McCallc4e70192009-09-11 04:59:25 +00006552 assert(!IsDependent && "explicit instantiation of dependent name not yet handled");
6553
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00006554 if (!TagD)
6555 return true;
6556
John McCalld226f652010-08-21 09:40:31 +00006557 TagDecl *Tag = cast<TagDecl>(TagD);
Richard Smith1af83c42012-03-23 03:33:32 +00006558 assert(!Tag->isEnum() && "shouldn't see enumerations here");
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00006559
Douglas Gregord0c87372009-05-27 17:30:49 +00006560 if (Tag->isInvalidDecl())
6561 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006562
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00006563 CXXRecordDecl *Record = cast<CXXRecordDecl>(Tag);
6564 CXXRecordDecl *Pattern = Record->getInstantiatedFromMemberClass();
6565 if (!Pattern) {
6566 Diag(TemplateLoc, diag::err_explicit_instantiation_nontemplate_type)
6567 << Context.getTypeDeclType(Record);
6568 Diag(Record->getLocation(), diag::note_nontemplate_decl_here);
6569 return true;
6570 }
6571
Douglas Gregor558c0322009-10-14 23:41:34 +00006572 // C++0x [temp.explicit]p2:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006573 // If the explicit instantiation is for a class or member class, the
6574 // elaborated-type-specifier in the declaration shall include a
Douglas Gregor558c0322009-10-14 23:41:34 +00006575 // simple-template-id.
6576 //
6577 // C++98 has the same restriction, just worded differently.
6578 if (!ScopeSpecifierHasTemplateId(SS))
Douglas Gregora2dd8282010-06-16 16:26:47 +00006579 Diag(TemplateLoc, diag::ext_explicit_instantiation_without_qualified_id)
Douglas Gregor558c0322009-10-14 23:41:34 +00006580 << Record << SS.getRange();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006581
Douglas Gregor558c0322009-10-14 23:41:34 +00006582 // C++0x [temp.explicit]p2:
6583 // There are two forms of explicit instantiation: an explicit instantiation
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006584 // definition and an explicit instantiation declaration. An explicit
Douglas Gregor558c0322009-10-14 23:41:34 +00006585 // instantiation declaration begins with the extern keyword. [...]
Douglas Gregora74bbe22009-10-14 21:46:58 +00006586 TemplateSpecializationKind TSK
6587 = ExternLoc.isInvalid()? TSK_ExplicitInstantiationDefinition
6588 : TSK_ExplicitInstantiationDeclaration;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006589
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00006590 // C++0x [temp.explicit]p2:
6591 // [...] An explicit instantiation shall appear in an enclosing
6592 // namespace of its template. [...]
6593 //
6594 // This is C++ DR 275.
Douglas Gregor558c0322009-10-14 23:41:34 +00006595 CheckExplicitInstantiationScope(*this, Record, NameLoc, true);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006596
Douglas Gregor454885e2009-10-15 15:54:05 +00006597 // Verify that it is okay to explicitly instantiate here.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006598 CXXRecordDecl *PrevDecl
Douglas Gregoref96ee02012-01-14 16:38:05 +00006599 = cast_or_null<CXXRecordDecl>(Record->getPreviousDecl());
Douglas Gregor952b0172010-02-11 01:04:33 +00006600 if (!PrevDecl && Record->getDefinition())
Douglas Gregor583f33b2009-10-15 18:07:02 +00006601 PrevDecl = Record;
6602 if (PrevDecl) {
Douglas Gregor454885e2009-10-15 15:54:05 +00006603 MemberSpecializationInfo *MSInfo = PrevDecl->getMemberSpecializationInfo();
Abramo Bagnarac98971d2010-06-12 07:44:57 +00006604 bool HasNoEffect = false;
Douglas Gregor454885e2009-10-15 15:54:05 +00006605 assert(MSInfo && "No member specialization information?");
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006606 if (CheckSpecializationInstantiationRedecl(TemplateLoc, TSK,
Douglas Gregor454885e2009-10-15 15:54:05 +00006607 PrevDecl,
6608 MSInfo->getTemplateSpecializationKind(),
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006609 MSInfo->getPointOfInstantiation(),
Abramo Bagnarac98971d2010-06-12 07:44:57 +00006610 HasNoEffect))
Douglas Gregor454885e2009-10-15 15:54:05 +00006611 return true;
Abramo Bagnarac98971d2010-06-12 07:44:57 +00006612 if (HasNoEffect)
Douglas Gregor454885e2009-10-15 15:54:05 +00006613 return TagD;
6614 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006615
Douglas Gregor89a5bea2009-10-15 22:53:21 +00006616 CXXRecordDecl *RecordDef
Douglas Gregor952b0172010-02-11 01:04:33 +00006617 = cast_or_null<CXXRecordDecl>(Record->getDefinition());
Douglas Gregor89a5bea2009-10-15 22:53:21 +00006618 if (!RecordDef) {
Douglas Gregorbf7643e2009-10-15 12:53:22 +00006619 // C++ [temp.explicit]p3:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006620 // A definition of a member class of a class template shall be in scope
Douglas Gregorbf7643e2009-10-15 12:53:22 +00006621 // at the point of an explicit instantiation of the member class.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006622 CXXRecordDecl *Def
Douglas Gregor952b0172010-02-11 01:04:33 +00006623 = cast_or_null<CXXRecordDecl>(Pattern->getDefinition());
Douglas Gregorbf7643e2009-10-15 12:53:22 +00006624 if (!Def) {
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00006625 Diag(TemplateLoc, diag::err_explicit_instantiation_undefined_member)
6626 << 0 << Record->getDeclName() << Record->getDeclContext();
Douglas Gregorbf7643e2009-10-15 12:53:22 +00006627 Diag(Pattern->getLocation(), diag::note_forward_declaration)
6628 << Pattern;
6629 return true;
Douglas Gregor0d035142009-10-27 18:42:08 +00006630 } else {
6631 if (InstantiateClass(NameLoc, Record, Def,
6632 getTemplateInstantiationArgs(Record),
6633 TSK))
6634 return true;
6635
Douglas Gregor952b0172010-02-11 01:04:33 +00006636 RecordDef = cast_or_null<CXXRecordDecl>(Record->getDefinition());
Douglas Gregor0d035142009-10-27 18:42:08 +00006637 if (!RecordDef)
6638 return true;
6639 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006640 }
6641
Douglas Gregor0d035142009-10-27 18:42:08 +00006642 // Instantiate all of the members of the class.
6643 InstantiateClassMembers(NameLoc, RecordDef,
6644 getTemplateInstantiationArgs(Record), TSK);
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00006645
Douglas Gregor6fb745b2010-05-13 16:44:06 +00006646 if (TSK == TSK_ExplicitInstantiationDefinition)
6647 MarkVTableUsed(NameLoc, RecordDef, true);
6648
Mike Stump390b4cc2009-05-16 07:39:55 +00006649 // FIXME: We don't have any representation for explicit instantiations of
6650 // member classes. Such a representation is not needed for compilation, but it
6651 // should be available for clients that want to see all of the declarations in
6652 // the source code.
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00006653 return TagD;
6654}
6655
John McCallf312b1e2010-08-26 23:41:50 +00006656DeclResult Sema::ActOnExplicitInstantiation(Scope *S,
6657 SourceLocation ExternLoc,
6658 SourceLocation TemplateLoc,
6659 Declarator &D) {
Douglas Gregord5a423b2009-09-25 18:43:00 +00006660 // Explicit instantiations always require a name.
Abramo Bagnara25777432010-08-11 22:01:17 +00006661 // TODO: check if/when DNInfo should replace Name.
6662 DeclarationNameInfo NameInfo = GetNameForDeclarator(D);
6663 DeclarationName Name = NameInfo.getName();
Douglas Gregord5a423b2009-09-25 18:43:00 +00006664 if (!Name) {
6665 if (!D.isInvalidType())
Daniel Dunbar96a00142012-03-09 18:35:03 +00006666 Diag(D.getDeclSpec().getLocStart(),
Douglas Gregord5a423b2009-09-25 18:43:00 +00006667 diag::err_explicit_instantiation_requires_name)
6668 << D.getDeclSpec().getSourceRange()
6669 << D.getSourceRange();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006670
Douglas Gregord5a423b2009-09-25 18:43:00 +00006671 return true;
6672 }
6673
6674 // The scope passed in may not be a decl scope. Zip up the scope tree until
6675 // we find one that is.
6676 while ((S->getFlags() & Scope::DeclScope) == 0 ||
6677 (S->getFlags() & Scope::TemplateParamScope) != 0)
6678 S = S->getParent();
6679
6680 // Determine the type of the declaration.
John McCallbf1a0282010-06-04 23:28:52 +00006681 TypeSourceInfo *T = GetTypeForDeclarator(D, S);
6682 QualType R = T->getType();
Douglas Gregord5a423b2009-09-25 18:43:00 +00006683 if (R.isNull())
6684 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006685
Douglas Gregore885e182011-05-21 18:53:30 +00006686 // C++ [dcl.stc]p1:
6687 // A storage-class-specifier shall not be specified in [...] an explicit
6688 // instantiation (14.7.2) directive.
Douglas Gregord5a423b2009-09-25 18:43:00 +00006689 if (D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_typedef) {
Douglas Gregord5a423b2009-09-25 18:43:00 +00006690 Diag(D.getIdentifierLoc(), diag::err_explicit_instantiation_of_typedef)
6691 << Name;
6692 return true;
Douglas Gregore885e182011-05-21 18:53:30 +00006693 } else if (D.getDeclSpec().getStorageClassSpec()
6694 != DeclSpec::SCS_unspecified) {
6695 // Complain about then remove the storage class specifier.
6696 Diag(D.getIdentifierLoc(), diag::err_explicit_instantiation_storage_class)
6697 << FixItHint::CreateRemoval(D.getDeclSpec().getStorageClassSpecLoc());
6698
6699 D.getMutableDeclSpec().ClearStorageClassSpecs();
Douglas Gregord5a423b2009-09-25 18:43:00 +00006700 }
6701
Douglas Gregor663b5a02009-10-14 20:14:33 +00006702 // C++0x [temp.explicit]p1:
6703 // [...] An explicit instantiation of a function template shall not use the
6704 // inline or constexpr specifiers.
6705 // Presumably, this also applies to member functions of class templates as
6706 // well.
Richard Smith2dc7ece2011-10-18 03:44:03 +00006707 if (D.getDeclSpec().isInlineSpecified())
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006708 Diag(D.getDeclSpec().getInlineSpecLoc(),
Richard Smith80ad52f2013-01-02 11:42:31 +00006709 getLangOpts().CPlusPlus11 ?
Richard Smith2dc7ece2011-10-18 03:44:03 +00006710 diag::err_explicit_instantiation_inline :
6711 diag::warn_explicit_instantiation_inline_0x)
Richard Smithfe6f6482011-10-14 19:58:02 +00006712 << FixItHint::CreateRemoval(D.getDeclSpec().getInlineSpecLoc());
6713 if (D.getDeclSpec().isConstexprSpecified())
6714 // FIXME: Add a fix-it to remove the 'constexpr' and add a 'const' if one is
6715 // not already specified.
6716 Diag(D.getDeclSpec().getConstexprSpecLoc(),
6717 diag::err_explicit_instantiation_constexpr);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006718
Douglas Gregor558c0322009-10-14 23:41:34 +00006719 // C++0x [temp.explicit]p2:
6720 // There are two forms of explicit instantiation: an explicit instantiation
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006721 // definition and an explicit instantiation declaration. An explicit
6722 // instantiation declaration begins with the extern keyword. [...]
Douglas Gregord5a423b2009-09-25 18:43:00 +00006723 TemplateSpecializationKind TSK
6724 = ExternLoc.isInvalid()? TSK_ExplicitInstantiationDefinition
6725 : TSK_ExplicitInstantiationDeclaration;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006726
Abramo Bagnara25777432010-08-11 22:01:17 +00006727 LookupResult Previous(*this, NameInfo, LookupOrdinaryName);
John McCalla24dc2e2009-11-17 02:14:36 +00006728 LookupParsedName(Previous, S, &D.getCXXScopeSpec());
Douglas Gregord5a423b2009-09-25 18:43:00 +00006729
6730 if (!R->isFunctionType()) {
6731 // C++ [temp.explicit]p1:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006732 // A [...] static data member of a class template can be explicitly
6733 // instantiated from the member definition associated with its class
Douglas Gregord5a423b2009-09-25 18:43:00 +00006734 // template.
John McCalla24dc2e2009-11-17 02:14:36 +00006735 if (Previous.isAmbiguous())
6736 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006737
John McCall1bcee0a2009-12-02 08:25:40 +00006738 VarDecl *Prev = Previous.getAsSingle<VarDecl>();
Douglas Gregord5a423b2009-09-25 18:43:00 +00006739 if (!Prev || !Prev->isStaticDataMember()) {
6740 // We expect to see a data data member here.
6741 Diag(D.getIdentifierLoc(), diag::err_explicit_instantiation_not_known)
6742 << Name;
6743 for (LookupResult::iterator P = Previous.begin(), PEnd = Previous.end();
6744 P != PEnd; ++P)
John McCallf36e02d2009-10-09 21:13:30 +00006745 Diag((*P)->getLocation(), diag::note_explicit_instantiation_here);
Douglas Gregord5a423b2009-09-25 18:43:00 +00006746 return true;
6747 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006748
Douglas Gregord5a423b2009-09-25 18:43:00 +00006749 if (!Prev->getInstantiatedFromStaticDataMember()) {
6750 // FIXME: Check for explicit specialization?
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006751 Diag(D.getIdentifierLoc(),
Douglas Gregord5a423b2009-09-25 18:43:00 +00006752 diag::err_explicit_instantiation_data_member_not_instantiated)
6753 << Prev;
6754 Diag(Prev->getLocation(), diag::note_explicit_instantiation_here);
6755 // FIXME: Can we provide a note showing where this was declared?
6756 return true;
6757 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006758
Douglas Gregor558c0322009-10-14 23:41:34 +00006759 // C++0x [temp.explicit]p2:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006760 // If the explicit instantiation is for a member function, a member class
Douglas Gregor558c0322009-10-14 23:41:34 +00006761 // or a static data member of a class template specialization, the name of
6762 // the class template specialization in the qualified-id for the member
6763 // name shall be a simple-template-id.
6764 //
6765 // C++98 has the same restriction, just worded differently.
6766 if (!ScopeSpecifierHasTemplateId(D.getCXXScopeSpec()))
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006767 Diag(D.getIdentifierLoc(),
Douglas Gregora2dd8282010-06-16 16:26:47 +00006768 diag::ext_explicit_instantiation_without_qualified_id)
Douglas Gregor558c0322009-10-14 23:41:34 +00006769 << Prev << D.getCXXScopeSpec().getRange();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006770
Douglas Gregor558c0322009-10-14 23:41:34 +00006771 // Check the scope of this explicit instantiation.
6772 CheckExplicitInstantiationScope(*this, Prev, D.getIdentifierLoc(), true);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006773
Douglas Gregor454885e2009-10-15 15:54:05 +00006774 // Verify that it is okay to explicitly instantiate here.
6775 MemberSpecializationInfo *MSInfo = Prev->getMemberSpecializationInfo();
6776 assert(MSInfo && "Missing static data member specialization info?");
Abramo Bagnarac98971d2010-06-12 07:44:57 +00006777 bool HasNoEffect = false;
Douglas Gregor0d035142009-10-27 18:42:08 +00006778 if (CheckSpecializationInstantiationRedecl(D.getIdentifierLoc(), TSK, Prev,
Douglas Gregor454885e2009-10-15 15:54:05 +00006779 MSInfo->getTemplateSpecializationKind(),
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006780 MSInfo->getPointOfInstantiation(),
Abramo Bagnarac98971d2010-06-12 07:44:57 +00006781 HasNoEffect))
Douglas Gregor454885e2009-10-15 15:54:05 +00006782 return true;
Abramo Bagnarac98971d2010-06-12 07:44:57 +00006783 if (HasNoEffect)
John McCalld226f652010-08-21 09:40:31 +00006784 return (Decl*) 0;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006785
Douglas Gregord5a423b2009-09-25 18:43:00 +00006786 // Instantiate static data member.
Douglas Gregor0a897e32009-10-15 17:21:20 +00006787 Prev->setTemplateSpecializationKind(TSK, D.getIdentifierLoc());
Douglas Gregord5a423b2009-09-25 18:43:00 +00006788 if (TSK == TSK_ExplicitInstantiationDefinition)
Chandler Carruth58e390e2010-08-25 08:27:02 +00006789 InstantiateStaticDataMemberDefinition(D.getIdentifierLoc(), Prev);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006790
Douglas Gregord5a423b2009-09-25 18:43:00 +00006791 // FIXME: Create an ExplicitInstantiation node?
John McCalld226f652010-08-21 09:40:31 +00006792 return (Decl*) 0;
Douglas Gregord5a423b2009-09-25 18:43:00 +00006793 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006794
6795 // If the declarator is a template-id, translate the parser's template
Douglas Gregor0b60d9e2009-09-25 23:53:26 +00006796 // argument list into our AST format.
Douglas Gregordb422df2009-09-25 21:45:23 +00006797 bool HasExplicitTemplateArgs = false;
John McCalld5532b62009-11-23 01:53:49 +00006798 TemplateArgumentListInfo TemplateArgs;
Douglas Gregor3f9a0562009-11-03 01:35:08 +00006799 if (D.getName().getKind() == UnqualifiedId::IK_TemplateId) {
6800 TemplateIdAnnotation *TemplateId = D.getName().TemplateId;
John McCalld5532b62009-11-23 01:53:49 +00006801 TemplateArgs.setLAngleLoc(TemplateId->LAngleLoc);
6802 TemplateArgs.setRAngleLoc(TemplateId->RAngleLoc);
Benjamin Kramer5354e772012-08-23 23:38:35 +00006803 ASTTemplateArgsPtr TemplateArgsPtr(TemplateId->getTemplateArgs(),
Douglas Gregordb422df2009-09-25 21:45:23 +00006804 TemplateId->NumArgs);
John McCalld5532b62009-11-23 01:53:49 +00006805 translateTemplateArguments(TemplateArgsPtr, TemplateArgs);
Douglas Gregordb422df2009-09-25 21:45:23 +00006806 HasExplicitTemplateArgs = true;
6807 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006808
Douglas Gregord5a423b2009-09-25 18:43:00 +00006809 // C++ [temp.explicit]p1:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006810 // A [...] function [...] can be explicitly instantiated from its template.
6811 // A member function [...] of a class template can be explicitly
6812 // instantiated from the member definition associated with its class
Douglas Gregord5a423b2009-09-25 18:43:00 +00006813 // template.
John McCallc373d482010-01-27 01:50:18 +00006814 UnresolvedSet<8> Matches;
Douglas Gregord5a423b2009-09-25 18:43:00 +00006815 for (LookupResult::iterator P = Previous.begin(), PEnd = Previous.end();
6816 P != PEnd; ++P) {
6817 NamedDecl *Prev = *P;
Douglas Gregordb422df2009-09-25 21:45:23 +00006818 if (!HasExplicitTemplateArgs) {
6819 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(Prev)) {
6820 if (Context.hasSameUnqualifiedType(Method->getType(), R)) {
6821 Matches.clear();
Douglas Gregor48026d22010-01-11 18:40:55 +00006822
John McCallc373d482010-01-27 01:50:18 +00006823 Matches.addDecl(Method, P.getAccess());
Douglas Gregor48026d22010-01-11 18:40:55 +00006824 if (Method->getTemplateSpecializationKind() == TSK_Undeclared)
6825 break;
Douglas Gregordb422df2009-09-25 21:45:23 +00006826 }
Douglas Gregord5a423b2009-09-25 18:43:00 +00006827 }
6828 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006829
Douglas Gregord5a423b2009-09-25 18:43:00 +00006830 FunctionTemplateDecl *FunTmpl = dyn_cast<FunctionTemplateDecl>(Prev);
6831 if (!FunTmpl)
6832 continue;
6833
Larisse Voufo8c5d4072013-07-19 22:53:23 +00006834 TemplateDeductionInfo Info(D.getIdentifierLoc());
Douglas Gregord5a423b2009-09-25 18:43:00 +00006835 FunctionDecl *Specialization = 0;
6836 if (TemplateDeductionResult TDK
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006837 = DeduceTemplateArguments(FunTmpl,
John McCalld5532b62009-11-23 01:53:49 +00006838 (HasExplicitTemplateArgs ? &TemplateArgs : 0),
Douglas Gregord5a423b2009-09-25 18:43:00 +00006839 R, Specialization, Info)) {
Larisse Voufo8c5d4072013-07-19 22:53:23 +00006840 // FIXME: Keep track of almost-matches?
Douglas Gregord5a423b2009-09-25 18:43:00 +00006841 (void)TDK;
6842 continue;
6843 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006844
John McCallc373d482010-01-27 01:50:18 +00006845 Matches.addDecl(Specialization, P.getAccess());
Douglas Gregord5a423b2009-09-25 18:43:00 +00006846 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006847
Douglas Gregord5a423b2009-09-25 18:43:00 +00006848 // Find the most specialized function template specialization.
Larisse Voufo8c5d4072013-07-19 22:53:23 +00006849 UnresolvedSetIterator Result
6850 = getMostSpecialized(Matches.begin(), Matches.end(), TPOC_Other, 0,
6851 D.getIdentifierLoc(),
6852 PDiag(diag::err_explicit_instantiation_not_known) << Name,
6853 PDiag(diag::err_explicit_instantiation_ambiguous) << Name,
6854 PDiag(diag::note_explicit_instantiation_candidate));
Douglas Gregord5a423b2009-09-25 18:43:00 +00006855
John McCallc373d482010-01-27 01:50:18 +00006856 if (Result == Matches.end())
Douglas Gregord5a423b2009-09-25 18:43:00 +00006857 return true;
John McCallc373d482010-01-27 01:50:18 +00006858
6859 // Ignore access control bits, we don't need them for redeclaration checking.
6860 FunctionDecl *Specialization = cast<FunctionDecl>(*Result);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006861
Douglas Gregor0a897e32009-10-15 17:21:20 +00006862 if (Specialization->getTemplateSpecializationKind() == TSK_Undeclared) {
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006863 Diag(D.getIdentifierLoc(),
Douglas Gregord5a423b2009-09-25 18:43:00 +00006864 diag::err_explicit_instantiation_member_function_not_instantiated)
6865 << Specialization
6866 << (Specialization->getTemplateSpecializationKind() ==
6867 TSK_ExplicitSpecialization);
6868 Diag(Specialization->getLocation(), diag::note_explicit_instantiation_here);
6869 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006870 }
6871
Douglas Gregoref96ee02012-01-14 16:38:05 +00006872 FunctionDecl *PrevDecl = Specialization->getPreviousDecl();
Douglas Gregor583f33b2009-10-15 18:07:02 +00006873 if (!PrevDecl && Specialization->isThisDeclarationADefinition())
6874 PrevDecl = Specialization;
6875
Douglas Gregor0a897e32009-10-15 17:21:20 +00006876 if (PrevDecl) {
Abramo Bagnarac98971d2010-06-12 07:44:57 +00006877 bool HasNoEffect = false;
Douglas Gregor0d035142009-10-27 18:42:08 +00006878 if (CheckSpecializationInstantiationRedecl(D.getIdentifierLoc(), TSK,
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006879 PrevDecl,
6880 PrevDecl->getTemplateSpecializationKind(),
Douglas Gregor0a897e32009-10-15 17:21:20 +00006881 PrevDecl->getPointOfInstantiation(),
Abramo Bagnarac98971d2010-06-12 07:44:57 +00006882 HasNoEffect))
Douglas Gregor0a897e32009-10-15 17:21:20 +00006883 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006884
Douglas Gregor0a897e32009-10-15 17:21:20 +00006885 // FIXME: We may still want to build some representation of this
6886 // explicit specialization.
Abramo Bagnarac98971d2010-06-12 07:44:57 +00006887 if (HasNoEffect)
John McCalld226f652010-08-21 09:40:31 +00006888 return (Decl*) 0;
Douglas Gregor0a897e32009-10-15 17:21:20 +00006889 }
Anders Carlsson26d6e9d2009-11-24 05:34:41 +00006890
6891 Specialization->setTemplateSpecializationKind(TSK, D.getIdentifierLoc());
Rafael Espindola256fc4d2012-01-04 05:40:59 +00006892 AttributeList *Attr = D.getDeclSpec().getAttributes().getList();
6893 if (Attr)
6894 ProcessDeclAttributeList(S, Specialization, Attr);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006895
Douglas Gregor0a897e32009-10-15 17:21:20 +00006896 if (TSK == TSK_ExplicitInstantiationDefinition)
Chandler Carruth58e390e2010-08-25 08:27:02 +00006897 InstantiateFunctionDefinition(D.getIdentifierLoc(), Specialization);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006898
Douglas Gregor558c0322009-10-14 23:41:34 +00006899 // C++0x [temp.explicit]p2:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006900 // If the explicit instantiation is for a member function, a member class
Douglas Gregor558c0322009-10-14 23:41:34 +00006901 // or a static data member of a class template specialization, the name of
6902 // the class template specialization in the qualified-id for the member
6903 // name shall be a simple-template-id.
6904 //
6905 // C++98 has the same restriction, just worded differently.
Douglas Gregor0a897e32009-10-15 17:21:20 +00006906 FunctionTemplateDecl *FunTmpl = Specialization->getPrimaryTemplate();
Douglas Gregor3f9a0562009-11-03 01:35:08 +00006907 if (D.getName().getKind() != UnqualifiedId::IK_TemplateId && !FunTmpl &&
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006908 D.getCXXScopeSpec().isSet() &&
Douglas Gregor558c0322009-10-14 23:41:34 +00006909 !ScopeSpecifierHasTemplateId(D.getCXXScopeSpec()))
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006910 Diag(D.getIdentifierLoc(),
Douglas Gregora2dd8282010-06-16 16:26:47 +00006911 diag::ext_explicit_instantiation_without_qualified_id)
Douglas Gregor558c0322009-10-14 23:41:34 +00006912 << Specialization << D.getCXXScopeSpec().getRange();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006913
Douglas Gregor558c0322009-10-14 23:41:34 +00006914 CheckExplicitInstantiationScope(*this,
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006915 FunTmpl? (NamedDecl *)FunTmpl
Douglas Gregor558c0322009-10-14 23:41:34 +00006916 : Specialization->getInstantiatedFromMemberFunction(),
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006917 D.getIdentifierLoc(),
Douglas Gregor558c0322009-10-14 23:41:34 +00006918 D.getCXXScopeSpec().isSet());
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006919
Douglas Gregord5a423b2009-09-25 18:43:00 +00006920 // FIXME: Create some kind of ExplicitInstantiationDecl here.
John McCalld226f652010-08-21 09:40:31 +00006921 return (Decl*) 0;
Douglas Gregord5a423b2009-09-25 18:43:00 +00006922}
6923
John McCallf312b1e2010-08-26 23:41:50 +00006924TypeResult
John McCallc4e70192009-09-11 04:59:25 +00006925Sema::ActOnDependentTag(Scope *S, unsigned TagSpec, TagUseKind TUK,
6926 const CXXScopeSpec &SS, IdentifierInfo *Name,
6927 SourceLocation TagLoc, SourceLocation NameLoc) {
6928 // This has to hold, because SS is expected to be defined.
6929 assert(Name && "Expected a name in a dependent tag");
6930
6931 NestedNameSpecifier *NNS
6932 = static_cast<NestedNameSpecifier *>(SS.getScopeRep());
6933 if (!NNS)
6934 return true;
6935
Abramo Bagnara465d41b2010-05-11 21:36:43 +00006936 TagTypeKind Kind = TypeWithKeyword::getTagTypeKindForTypeSpec(TagSpec);
Daniel Dunbar12c0ade2010-04-01 16:50:48 +00006937
Douglas Gregor48c89f42010-04-24 16:38:41 +00006938 if (TUK == TUK_Declaration || TUK == TUK_Definition) {
6939 Diag(NameLoc, diag::err_dependent_tag_decl)
Abramo Bagnara465d41b2010-05-11 21:36:43 +00006940 << (TUK == TUK_Definition) << Kind << SS.getRange();
Douglas Gregor48c89f42010-04-24 16:38:41 +00006941 return true;
6942 }
Abramo Bagnara465d41b2010-05-11 21:36:43 +00006943
Douglas Gregor059101f2011-03-02 00:47:37 +00006944 // Create the resulting type.
Abramo Bagnara465d41b2010-05-11 21:36:43 +00006945 ElaboratedTypeKeyword Kwd = TypeWithKeyword::getKeywordForTagTypeKind(Kind);
Douglas Gregor059101f2011-03-02 00:47:37 +00006946 QualType Result = Context.getDependentNameType(Kwd, NNS, Name);
6947
6948 // Create type-source location information for this type.
6949 TypeLocBuilder TLB;
6950 DependentNameTypeLoc TL = TLB.push<DependentNameTypeLoc>(Result);
Abramo Bagnara38a42912012-02-06 19:09:27 +00006951 TL.setElaboratedKeywordLoc(TagLoc);
Douglas Gregor059101f2011-03-02 00:47:37 +00006952 TL.setQualifierLoc(SS.getWithLocInContext(Context));
6953 TL.setNameLoc(NameLoc);
6954 return CreateParsedType(Result, TLB.getTypeSourceInfo(Context, Result));
John McCallc4e70192009-09-11 04:59:25 +00006955}
6956
John McCallf312b1e2010-08-26 23:41:50 +00006957TypeResult
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006958Sema::ActOnTypenameType(Scope *S, SourceLocation TypenameLoc,
6959 const CXXScopeSpec &SS, const IdentifierInfo &II,
Douglas Gregor1a15dae2010-06-16 22:31:08 +00006960 SourceLocation IdLoc) {
Douglas Gregore29425b2011-02-28 22:42:13 +00006961 if (SS.isInvalid())
Douglas Gregord57959a2009-03-27 23:10:48 +00006962 return true;
Douglas Gregore29425b2011-02-28 22:42:13 +00006963
Richard Smithebaf0e62011-10-18 20:49:44 +00006964 if (TypenameLoc.isValid() && S && !S->getTemplateParamParent())
6965 Diag(TypenameLoc,
Richard Smith80ad52f2013-01-02 11:42:31 +00006966 getLangOpts().CPlusPlus11 ?
Richard Smithebaf0e62011-10-18 20:49:44 +00006967 diag::warn_cxx98_compat_typename_outside_of_template :
6968 diag::ext_typename_outside_of_template)
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006969 << FixItHint::CreateRemoval(TypenameLoc);
6970
Douglas Gregor2494dd02011-03-01 01:34:45 +00006971 NestedNameSpecifierLoc QualifierLoc = SS.getWithLocInContext(Context);
Douglas Gregor9e876872011-03-01 18:12:44 +00006972 QualType T = CheckTypenameType(TypenameLoc.isValid()? ETK_Typename : ETK_None,
6973 TypenameLoc, QualifierLoc, II, IdLoc);
Douglas Gregor31a19b62009-04-01 21:51:26 +00006974 if (T.isNull())
6975 return true;
John McCall63b43852010-04-29 23:50:39 +00006976
6977 TypeSourceInfo *TSI = Context.CreateTypeSourceInfo(T);
6978 if (isa<DependentNameType>(T)) {
David Blaikie39e6ab42013-02-18 22:06:02 +00006979 DependentNameTypeLoc TL = TSI->getTypeLoc().castAs<DependentNameTypeLoc>();
Abramo Bagnara38a42912012-02-06 19:09:27 +00006980 TL.setElaboratedKeywordLoc(TypenameLoc);
Douglas Gregor2494dd02011-03-01 01:34:45 +00006981 TL.setQualifierLoc(QualifierLoc);
John McCall4e449832010-05-28 23:32:21 +00006982 TL.setNameLoc(IdLoc);
John McCall63b43852010-04-29 23:50:39 +00006983 } else {
David Blaikie39e6ab42013-02-18 22:06:02 +00006984 ElaboratedTypeLoc TL = TSI->getTypeLoc().castAs<ElaboratedTypeLoc>();
Abramo Bagnara38a42912012-02-06 19:09:27 +00006985 TL.setElaboratedKeywordLoc(TypenameLoc);
Douglas Gregor9e876872011-03-01 18:12:44 +00006986 TL.setQualifierLoc(QualifierLoc);
David Blaikie39e6ab42013-02-18 22:06:02 +00006987 TL.getNamedTypeLoc().castAs<TypeSpecTypeLoc>().setNameLoc(IdLoc);
John McCall63b43852010-04-29 23:50:39 +00006988 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006989
John McCallb3d87482010-08-24 05:47:05 +00006990 return CreateParsedType(T, TSI);
Douglas Gregord57959a2009-03-27 23:10:48 +00006991}
6992
John McCallf312b1e2010-08-26 23:41:50 +00006993TypeResult
Abramo Bagnara55d23c92012-02-06 14:41:24 +00006994Sema::ActOnTypenameType(Scope *S,
6995 SourceLocation TypenameLoc,
6996 const CXXScopeSpec &SS,
6997 SourceLocation TemplateKWLoc,
Douglas Gregora02411e2011-02-27 22:46:49 +00006998 TemplateTy TemplateIn,
6999 SourceLocation TemplateNameLoc,
7000 SourceLocation LAngleLoc,
7001 ASTTemplateArgsPtr TemplateArgsIn,
7002 SourceLocation RAngleLoc) {
Richard Smithebaf0e62011-10-18 20:49:44 +00007003 if (TypenameLoc.isValid() && S && !S->getTemplateParamParent())
7004 Diag(TypenameLoc,
Richard Smith80ad52f2013-01-02 11:42:31 +00007005 getLangOpts().CPlusPlus11 ?
Richard Smithebaf0e62011-10-18 20:49:44 +00007006 diag::warn_cxx98_compat_typename_outside_of_template :
7007 diag::ext_typename_outside_of_template)
7008 << FixItHint::CreateRemoval(TypenameLoc);
Douglas Gregora02411e2011-02-27 22:46:49 +00007009
7010 // Translate the parser's template argument list in our AST format.
7011 TemplateArgumentListInfo TemplateArgs(LAngleLoc, RAngleLoc);
7012 translateTemplateArguments(TemplateArgsIn, TemplateArgs);
7013
7014 TemplateName Template = TemplateIn.get();
Douglas Gregoref24c4b2011-03-01 16:44:30 +00007015 if (DependentTemplateName *DTN = Template.getAsDependentTemplateName()) {
7016 // Construct a dependent template specialization type.
7017 assert(DTN && "dependent template has non-dependent name?");
7018 assert(DTN->getQualifier()
7019 == static_cast<NestedNameSpecifier*>(SS.getScopeRep()));
7020 QualType T = Context.getDependentTemplateSpecializationType(ETK_Typename,
7021 DTN->getQualifier(),
7022 DTN->getIdentifier(),
7023 TemplateArgs);
Douglas Gregora02411e2011-02-27 22:46:49 +00007024
Douglas Gregoref24c4b2011-03-01 16:44:30 +00007025 // Create source-location information for this type.
John McCall4e449832010-05-28 23:32:21 +00007026 TypeLocBuilder Builder;
Douglas Gregoref24c4b2011-03-01 16:44:30 +00007027 DependentTemplateSpecializationTypeLoc SpecTL
7028 = Builder.push<DependentTemplateSpecializationTypeLoc>(T);
Abramo Bagnara55d23c92012-02-06 14:41:24 +00007029 SpecTL.setElaboratedKeywordLoc(TypenameLoc);
7030 SpecTL.setQualifierLoc(SS.getWithLocInContext(Context));
Abramo Bagnara66581d42012-02-06 22:45:07 +00007031 SpecTL.setTemplateKeywordLoc(TemplateKWLoc);
Abramo Bagnara55d23c92012-02-06 14:41:24 +00007032 SpecTL.setTemplateNameLoc(TemplateNameLoc);
Douglas Gregora02411e2011-02-27 22:46:49 +00007033 SpecTL.setLAngleLoc(LAngleLoc);
7034 SpecTL.setRAngleLoc(RAngleLoc);
Douglas Gregora02411e2011-02-27 22:46:49 +00007035 for (unsigned I = 0, N = TemplateArgs.size(); I != N; ++I)
7036 SpecTL.setArgLocInfo(I, TemplateArgs[I].getLocInfo());
Douglas Gregoref24c4b2011-03-01 16:44:30 +00007037 return CreateParsedType(T, Builder.getTypeSourceInfo(Context, T));
Douglas Gregor6946baf2009-09-02 13:05:45 +00007038 }
Douglas Gregora02411e2011-02-27 22:46:49 +00007039
Douglas Gregoref24c4b2011-03-01 16:44:30 +00007040 QualType T = CheckTemplateIdType(Template, TemplateNameLoc, TemplateArgs);
7041 if (T.isNull())
7042 return true;
Douglas Gregora02411e2011-02-27 22:46:49 +00007043
Abramo Bagnara55d23c92012-02-06 14:41:24 +00007044 // Provide source-location information for the template specialization type.
Douglas Gregora02411e2011-02-27 22:46:49 +00007045 TypeLocBuilder Builder;
Abramo Bagnara55d23c92012-02-06 14:41:24 +00007046 TemplateSpecializationTypeLoc SpecTL
Douglas Gregoref24c4b2011-03-01 16:44:30 +00007047 = Builder.push<TemplateSpecializationTypeLoc>(T);
Abramo Bagnara55d23c92012-02-06 14:41:24 +00007048 SpecTL.setTemplateKeywordLoc(TemplateKWLoc);
7049 SpecTL.setTemplateNameLoc(TemplateNameLoc);
Douglas Gregora02411e2011-02-27 22:46:49 +00007050 SpecTL.setLAngleLoc(LAngleLoc);
7051 SpecTL.setRAngleLoc(RAngleLoc);
Douglas Gregora02411e2011-02-27 22:46:49 +00007052 for (unsigned I = 0, N = TemplateArgs.size(); I != N; ++I)
7053 SpecTL.setArgLocInfo(I, TemplateArgs[I].getLocInfo());
7054
Douglas Gregoref24c4b2011-03-01 16:44:30 +00007055 T = Context.getElaboratedType(ETK_Typename, SS.getScopeRep(), T);
7056 ElaboratedTypeLoc TL = Builder.push<ElaboratedTypeLoc>(T);
Abramo Bagnara38a42912012-02-06 19:09:27 +00007057 TL.setElaboratedKeywordLoc(TypenameLoc);
Douglas Gregor9e876872011-03-01 18:12:44 +00007058 TL.setQualifierLoc(SS.getWithLocInContext(Context));
7059
Douglas Gregoref24c4b2011-03-01 16:44:30 +00007060 TypeSourceInfo *TSI = Builder.getTypeSourceInfo(Context, T);
7061 return CreateParsedType(T, TSI);
Douglas Gregor17343172009-04-01 00:28:59 +00007062}
7063
Douglas Gregora02411e2011-02-27 22:46:49 +00007064
Richard Smith4493c0a2012-05-09 05:17:00 +00007065/// Determine whether this failed name lookup should be treated as being
7066/// disabled by a usage of std::enable_if.
7067static bool isEnableIf(NestedNameSpecifierLoc NNS, const IdentifierInfo &II,
7068 SourceRange &CondRange) {
7069 // We must be looking for a ::type...
7070 if (!II.isStr("type"))
7071 return false;
7072
7073 // ... within an explicitly-written template specialization...
7074 if (!NNS || !NNS.getNestedNameSpecifier()->getAsType())
7075 return false;
7076 TypeLoc EnableIfTy = NNS.getTypeLoc();
David Blaikie39e6ab42013-02-18 22:06:02 +00007077 TemplateSpecializationTypeLoc EnableIfTSTLoc =
7078 EnableIfTy.getAs<TemplateSpecializationTypeLoc>();
7079 if (!EnableIfTSTLoc || EnableIfTSTLoc.getNumArgs() == 0)
Richard Smith4493c0a2012-05-09 05:17:00 +00007080 return false;
7081 const TemplateSpecializationType *EnableIfTST =
David Blaikie39e6ab42013-02-18 22:06:02 +00007082 cast<TemplateSpecializationType>(EnableIfTSTLoc.getTypePtr());
Richard Smith4493c0a2012-05-09 05:17:00 +00007083
7084 // ... which names a complete class template declaration...
7085 const TemplateDecl *EnableIfDecl =
7086 EnableIfTST->getTemplateName().getAsTemplateDecl();
7087 if (!EnableIfDecl || EnableIfTST->isIncompleteType())
7088 return false;
7089
7090 // ... called "enable_if".
7091 const IdentifierInfo *EnableIfII =
7092 EnableIfDecl->getDeclName().getAsIdentifierInfo();
7093 if (!EnableIfII || !EnableIfII->isStr("enable_if"))
7094 return false;
7095
7096 // Assume the first template argument is the condition.
David Blaikie39e6ab42013-02-18 22:06:02 +00007097 CondRange = EnableIfTSTLoc.getArgLoc(0).getSourceRange();
Richard Smith4493c0a2012-05-09 05:17:00 +00007098 return true;
7099}
7100
Douglas Gregord57959a2009-03-27 23:10:48 +00007101/// \brief Build the type that describes a C++ typename specifier,
7102/// e.g., "typename T::type".
7103QualType
Douglas Gregore29425b2011-02-28 22:42:13 +00007104Sema::CheckTypenameType(ElaboratedTypeKeyword Keyword,
7105 SourceLocation KeywordLoc,
7106 NestedNameSpecifierLoc QualifierLoc,
7107 const IdentifierInfo &II,
Abramo Bagnarae4da7a02010-05-19 21:37:53 +00007108 SourceLocation IILoc) {
John McCall77bb1aa2010-05-01 00:40:08 +00007109 CXXScopeSpec SS;
Douglas Gregore29425b2011-02-28 22:42:13 +00007110 SS.Adopt(QualifierLoc);
Douglas Gregord57959a2009-03-27 23:10:48 +00007111
John McCall77bb1aa2010-05-01 00:40:08 +00007112 DeclContext *Ctx = computeDeclContext(SS);
7113 if (!Ctx) {
7114 // If the nested-name-specifier is dependent and couldn't be
7115 // resolved to a type, build a typename type.
Douglas Gregore29425b2011-02-28 22:42:13 +00007116 assert(QualifierLoc.getNestedNameSpecifier()->isDependent());
7117 return Context.getDependentNameType(Keyword,
7118 QualifierLoc.getNestedNameSpecifier(),
7119 &II);
Douglas Gregor42af25f2009-05-11 19:58:34 +00007120 }
Douglas Gregord57959a2009-03-27 23:10:48 +00007121
John McCall77bb1aa2010-05-01 00:40:08 +00007122 // If the nested-name-specifier refers to the current instantiation,
7123 // the "typename" keyword itself is superfluous. In C++03, the
7124 // program is actually ill-formed. However, DR 382 (in C++0x CD1)
7125 // allows such extraneous "typename" keywords, and we retroactively
Douglas Gregor732281d2010-06-14 22:07:54 +00007126 // apply this DR to C++03 code with only a warning. In any case we continue.
Douglas Gregor42af25f2009-05-11 19:58:34 +00007127
John McCall77bb1aa2010-05-01 00:40:08 +00007128 if (RequireCompleteDeclContext(SS, Ctx))
7129 return QualType();
Douglas Gregord57959a2009-03-27 23:10:48 +00007130
7131 DeclarationName Name(&II);
Abramo Bagnarae4da7a02010-05-19 21:37:53 +00007132 LookupResult Result(*this, Name, IILoc, LookupOrdinaryName);
John McCalla24dc2e2009-11-17 02:14:36 +00007133 LookupQualifiedName(Result, Ctx);
Douglas Gregord57959a2009-03-27 23:10:48 +00007134 unsigned DiagID = 0;
7135 Decl *Referenced = 0;
John McCalla24dc2e2009-11-17 02:14:36 +00007136 switch (Result.getResultKind()) {
Richard Smith4493c0a2012-05-09 05:17:00 +00007137 case LookupResult::NotFound: {
7138 // If we're looking up 'type' within a template named 'enable_if', produce
7139 // a more specific diagnostic.
7140 SourceRange CondRange;
7141 if (isEnableIf(QualifierLoc, II, CondRange)) {
7142 Diag(CondRange.getBegin(), diag::err_typename_nested_not_found_enable_if)
7143 << Ctx << CondRange;
7144 return QualType();
7145 }
7146
Douglas Gregor3f093272009-10-13 21:16:44 +00007147 DiagID = diag::err_typename_nested_not_found;
Douglas Gregord57959a2009-03-27 23:10:48 +00007148 break;
Richard Smith4493c0a2012-05-09 05:17:00 +00007149 }
Douglas Gregord9545042010-12-09 00:06:27 +00007150
7151 case LookupResult::FoundUnresolvedValue: {
7152 // We found a using declaration that is a value. Most likely, the using
7153 // declaration itself is meant to have the 'typename' keyword.
Douglas Gregore29425b2011-02-28 22:42:13 +00007154 SourceRange FullRange(KeywordLoc.isValid() ? KeywordLoc : SS.getBeginLoc(),
Douglas Gregord9545042010-12-09 00:06:27 +00007155 IILoc);
7156 Diag(IILoc, diag::err_typename_refers_to_using_value_decl)
7157 << Name << Ctx << FullRange;
7158 if (UnresolvedUsingValueDecl *Using
7159 = dyn_cast<UnresolvedUsingValueDecl>(Result.getRepresentativeDecl())){
Douglas Gregordc355712011-02-25 00:36:19 +00007160 SourceLocation Loc = Using->getQualifierLoc().getBeginLoc();
Douglas Gregord9545042010-12-09 00:06:27 +00007161 Diag(Loc, diag::note_using_value_decl_missing_typename)
7162 << FixItHint::CreateInsertion(Loc, "typename ");
7163 }
7164 }
7165 // Fall through to create a dependent typename type, from which we can recover
7166 // better.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00007167
Douglas Gregor7d3f5762010-01-15 01:44:47 +00007168 case LookupResult::NotFoundInCurrentInstantiation:
7169 // Okay, it's a member of an unknown instantiation.
Douglas Gregore29425b2011-02-28 22:42:13 +00007170 return Context.getDependentNameType(Keyword,
7171 QualifierLoc.getNestedNameSpecifier(),
7172 &II);
Douglas Gregord57959a2009-03-27 23:10:48 +00007173
7174 case LookupResult::Found:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00007175 if (TypeDecl *Type = dyn_cast<TypeDecl>(Result.getFoundDecl())) {
Abramo Bagnara465d41b2010-05-11 21:36:43 +00007176 // We found a type. Build an ElaboratedType, since the
7177 // typename-specifier was just sugar.
Douglas Gregore29425b2011-02-28 22:42:13 +00007178 return Context.getElaboratedType(ETK_Typename,
7179 QualifierLoc.getNestedNameSpecifier(),
Abramo Bagnara465d41b2010-05-11 21:36:43 +00007180 Context.getTypeDeclType(Type));
Douglas Gregord57959a2009-03-27 23:10:48 +00007181 }
7182
7183 DiagID = diag::err_typename_nested_not_type;
John McCallf36e02d2009-10-09 21:13:30 +00007184 Referenced = Result.getFoundDecl();
Douglas Gregord57959a2009-03-27 23:10:48 +00007185 break;
7186
7187 case LookupResult::FoundOverloaded:
7188 DiagID = diag::err_typename_nested_not_type;
7189 Referenced = *Result.begin();
7190 break;
7191
John McCall6e247262009-10-10 05:48:19 +00007192 case LookupResult::Ambiguous:
Douglas Gregord57959a2009-03-27 23:10:48 +00007193 return QualType();
7194 }
7195
7196 // If we get here, it's because name lookup did not find a
7197 // type. Emit an appropriate diagnostic and return an error.
Douglas Gregore29425b2011-02-28 22:42:13 +00007198 SourceRange FullRange(KeywordLoc.isValid() ? KeywordLoc : SS.getBeginLoc(),
Abramo Bagnarae4da7a02010-05-19 21:37:53 +00007199 IILoc);
7200 Diag(IILoc, DiagID) << FullRange << Name << Ctx;
Douglas Gregord57959a2009-03-27 23:10:48 +00007201 if (Referenced)
7202 Diag(Referenced->getLocation(), diag::note_typename_refers_here)
7203 << Name;
7204 return QualType();
7205}
Douglas Gregor4a959d82009-08-06 16:20:37 +00007206
7207namespace {
7208 // See Sema::RebuildTypeInCurrentInstantiation
Benjamin Kramer85b45212009-11-28 19:45:26 +00007209 class CurrentInstantiationRebuilder
Mike Stump1eb44332009-09-09 15:08:12 +00007210 : public TreeTransform<CurrentInstantiationRebuilder> {
Douglas Gregor4a959d82009-08-06 16:20:37 +00007211 SourceLocation Loc;
7212 DeclarationName Entity;
Mike Stump1eb44332009-09-09 15:08:12 +00007213
Douglas Gregor4a959d82009-08-06 16:20:37 +00007214 public:
Douglas Gregor895162d2010-04-30 18:55:50 +00007215 typedef TreeTransform<CurrentInstantiationRebuilder> inherited;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00007216
Mike Stump1eb44332009-09-09 15:08:12 +00007217 CurrentInstantiationRebuilder(Sema &SemaRef,
Douglas Gregor4a959d82009-08-06 16:20:37 +00007218 SourceLocation Loc,
Mike Stump1eb44332009-09-09 15:08:12 +00007219 DeclarationName Entity)
7220 : TreeTransform<CurrentInstantiationRebuilder>(SemaRef),
Douglas Gregor4a959d82009-08-06 16:20:37 +00007221 Loc(Loc), Entity(Entity) { }
Mike Stump1eb44332009-09-09 15:08:12 +00007222
7223 /// \brief Determine whether the given type \p T has already been
Douglas Gregor4a959d82009-08-06 16:20:37 +00007224 /// transformed.
7225 ///
7226 /// For the purposes of type reconstruction, a type has already been
7227 /// transformed if it is NULL or if it is not dependent.
7228 bool AlreadyTransformed(QualType T) {
7229 return T.isNull() || !T->isDependentType();
7230 }
Mike Stump1eb44332009-09-09 15:08:12 +00007231
7232 /// \brief Returns the location of the entity whose type is being
Douglas Gregor4a959d82009-08-06 16:20:37 +00007233 /// rebuilt.
7234 SourceLocation getBaseLocation() { return Loc; }
Mike Stump1eb44332009-09-09 15:08:12 +00007235
Douglas Gregor4a959d82009-08-06 16:20:37 +00007236 /// \brief Returns the name of the entity whose type is being rebuilt.
7237 DeclarationName getBaseEntity() { return Entity; }
Mike Stump1eb44332009-09-09 15:08:12 +00007238
Douglas Gregor972e6ce2009-10-27 06:26:26 +00007239 /// \brief Sets the "base" location and entity when that
7240 /// information is known based on another transformation.
7241 void setBase(SourceLocation Loc, DeclarationName Entity) {
7242 this->Loc = Loc;
7243 this->Entity = Entity;
7244 }
Douglas Gregordfca6f52012-02-13 22:00:16 +00007245
7246 ExprResult TransformLambdaExpr(LambdaExpr *E) {
7247 // Lambdas never need to be transformed.
7248 return E;
7249 }
Douglas Gregor4a959d82009-08-06 16:20:37 +00007250 };
7251}
7252
Douglas Gregor4a959d82009-08-06 16:20:37 +00007253/// \brief Rebuilds a type within the context of the current instantiation.
7254///
Mike Stump1eb44332009-09-09 15:08:12 +00007255/// The type \p T is part of the type of an out-of-line member definition of
Douglas Gregor4a959d82009-08-06 16:20:37 +00007256/// a class template (or class template partial specialization) that was parsed
Mike Stump1eb44332009-09-09 15:08:12 +00007257/// and constructed before we entered the scope of the class template (or
Douglas Gregor4a959d82009-08-06 16:20:37 +00007258/// partial specialization thereof). This routine will rebuild that type now
7259/// that we have entered the declarator's scope, which may produce different
7260/// canonical types, e.g.,
7261///
7262/// \code
7263/// template<typename T>
7264/// struct X {
7265/// typedef T* pointer;
7266/// pointer data();
7267/// };
7268///
7269/// template<typename T>
7270/// typename X<T>::pointer X<T>::data() { ... }
7271/// \endcode
7272///
Douglas Gregor4714c122010-03-31 17:34:00 +00007273/// Here, the type "typename X<T>::pointer" will be created as a DependentNameType,
Douglas Gregor4a959d82009-08-06 16:20:37 +00007274/// since we do not know that we can look into X<T> when we parsed the type.
7275/// This function will rebuild the type, performing the lookup of "pointer"
Abramo Bagnara465d41b2010-05-11 21:36:43 +00007276/// in X<T> and returning an ElaboratedType whose canonical type is the same
Douglas Gregor4a959d82009-08-06 16:20:37 +00007277/// as the canonical type of T*, allowing the return types of the out-of-line
7278/// definition and the declaration to match.
John McCall63b43852010-04-29 23:50:39 +00007279TypeSourceInfo *Sema::RebuildTypeInCurrentInstantiation(TypeSourceInfo *T,
7280 SourceLocation Loc,
7281 DeclarationName Name) {
7282 if (!T || !T->getType()->isDependentType())
Douglas Gregor4a959d82009-08-06 16:20:37 +00007283 return T;
Mike Stump1eb44332009-09-09 15:08:12 +00007284
Douglas Gregor4a959d82009-08-06 16:20:37 +00007285 CurrentInstantiationRebuilder Rebuilder(*this, Loc, Name);
7286 return Rebuilder.TransformType(T);
Benjamin Kramer27ba2f02009-08-11 22:33:06 +00007287}
Douglas Gregorbf4ea562009-09-15 16:23:51 +00007288
John McCall60d7b3a2010-08-24 06:29:42 +00007289ExprResult Sema::RebuildExprInCurrentInstantiation(Expr *E) {
John McCallb3d87482010-08-24 05:47:05 +00007290 CurrentInstantiationRebuilder Rebuilder(*this, E->getExprLoc(),
7291 DeclarationName());
7292 return Rebuilder.TransformExpr(E);
7293}
7294
John McCall63b43852010-04-29 23:50:39 +00007295bool Sema::RebuildNestedNameSpecifierInCurrentInstantiation(CXXScopeSpec &SS) {
Douglas Gregor7e384942011-02-25 16:07:42 +00007296 if (SS.isInvalid())
7297 return true;
John McCall31f17ec2010-04-27 00:57:59 +00007298
Douglas Gregor7e384942011-02-25 16:07:42 +00007299 NestedNameSpecifierLoc QualifierLoc = SS.getWithLocInContext(Context);
John McCall31f17ec2010-04-27 00:57:59 +00007300 CurrentInstantiationRebuilder Rebuilder(*this, SS.getRange().getBegin(),
7301 DeclarationName());
Douglas Gregor7e384942011-02-25 16:07:42 +00007302 NestedNameSpecifierLoc Rebuilt
7303 = Rebuilder.TransformNestedNameSpecifierLoc(QualifierLoc);
7304 if (!Rebuilt)
7305 return true;
John McCall63b43852010-04-29 23:50:39 +00007306
Douglas Gregor7e384942011-02-25 16:07:42 +00007307 SS.Adopt(Rebuilt);
John McCall63b43852010-04-29 23:50:39 +00007308 return false;
John McCall31f17ec2010-04-27 00:57:59 +00007309}
7310
Douglas Gregor20606502011-10-14 15:31:12 +00007311/// \brief Rebuild the template parameters now that we know we're in a current
7312/// instantiation.
7313bool Sema::RebuildTemplateParamsInCurrentInstantiation(
7314 TemplateParameterList *Params) {
7315 for (unsigned I = 0, N = Params->size(); I != N; ++I) {
7316 Decl *Param = Params->getParam(I);
7317
7318 // There is nothing to rebuild in a type parameter.
7319 if (isa<TemplateTypeParmDecl>(Param))
7320 continue;
7321
7322 // Rebuild the template parameter list of a template template parameter.
7323 if (TemplateTemplateParmDecl *TTP
7324 = dyn_cast<TemplateTemplateParmDecl>(Param)) {
7325 if (RebuildTemplateParamsInCurrentInstantiation(
7326 TTP->getTemplateParameters()))
7327 return true;
7328
7329 continue;
7330 }
7331
7332 // Rebuild the type of a non-type template parameter.
7333 NonTypeTemplateParmDecl *NTTP = cast<NonTypeTemplateParmDecl>(Param);
7334 TypeSourceInfo *NewTSI
7335 = RebuildTypeInCurrentInstantiation(NTTP->getTypeSourceInfo(),
7336 NTTP->getLocation(),
7337 NTTP->getDeclName());
7338 if (!NewTSI)
7339 return true;
7340
7341 if (NewTSI != NTTP->getTypeSourceInfo()) {
7342 NTTP->setTypeSourceInfo(NewTSI);
7343 NTTP->setType(NewTSI->getType());
7344 }
7345 }
7346
7347 return false;
7348}
7349
Douglas Gregorbf4ea562009-09-15 16:23:51 +00007350/// \brief Produces a formatted string that describes the binding of
7351/// template parameters to template arguments.
7352std::string
7353Sema::getTemplateArgumentBindingsText(const TemplateParameterList *Params,
7354 const TemplateArgumentList &Args) {
Douglas Gregor910f8002010-11-07 23:05:16 +00007355 return getTemplateArgumentBindingsText(Params, Args.data(), Args.size());
Douglas Gregor9148c3f2009-11-11 19:13:48 +00007356}
7357
7358std::string
7359Sema::getTemplateArgumentBindingsText(const TemplateParameterList *Params,
7360 const TemplateArgument *Args,
7361 unsigned NumArgs) {
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +00007362 SmallString<128> Str;
Douglas Gregor87dd6972010-12-20 16:52:59 +00007363 llvm::raw_svector_ostream Out(Str);
Douglas Gregorbf4ea562009-09-15 16:23:51 +00007364
Douglas Gregor9148c3f2009-11-11 19:13:48 +00007365 if (!Params || Params->size() == 0 || NumArgs == 0)
Douglas Gregor87dd6972010-12-20 16:52:59 +00007366 return std::string();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00007367
Douglas Gregorbf4ea562009-09-15 16:23:51 +00007368 for (unsigned I = 0, N = Params->size(); I != N; ++I) {
Douglas Gregor9148c3f2009-11-11 19:13:48 +00007369 if (I >= NumArgs)
7370 break;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00007371
Douglas Gregorbf4ea562009-09-15 16:23:51 +00007372 if (I == 0)
Douglas Gregor87dd6972010-12-20 16:52:59 +00007373 Out << "[with ";
Douglas Gregorbf4ea562009-09-15 16:23:51 +00007374 else
Douglas Gregor87dd6972010-12-20 16:52:59 +00007375 Out << ", ";
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00007376
Douglas Gregorbf4ea562009-09-15 16:23:51 +00007377 if (const IdentifierInfo *Id = Params->getParam(I)->getIdentifier()) {
Douglas Gregor87dd6972010-12-20 16:52:59 +00007378 Out << Id->getName();
Douglas Gregorbf4ea562009-09-15 16:23:51 +00007379 } else {
Douglas Gregor87dd6972010-12-20 16:52:59 +00007380 Out << '$' << I;
Douglas Gregorbf4ea562009-09-15 16:23:51 +00007381 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00007382
Douglas Gregor87dd6972010-12-20 16:52:59 +00007383 Out << " = ";
Douglas Gregor8987b232011-09-27 23:30:47 +00007384 Args[I].print(getPrintingPolicy(), Out);
Douglas Gregorbf4ea562009-09-15 16:23:51 +00007385 }
Douglas Gregor87dd6972010-12-20 16:52:59 +00007386
7387 Out << ']';
7388 return Out.str();
Douglas Gregorbf4ea562009-09-15 16:23:51 +00007389}
Francois Pichet8387e2a2011-04-22 22:18:13 +00007390
7391void Sema::MarkAsLateParsedTemplate(FunctionDecl *FD, bool Flag) {
7392 if (!FD)
7393 return;
7394 FD->setLateTemplateParsed(Flag);
7395}
7396
7397bool Sema::IsInsideALocalClassWithinATemplateFunction() {
7398 DeclContext *DC = CurContext;
7399
7400 while (DC) {
7401 if (CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(CurContext)) {
7402 const FunctionDecl *FD = RD->isLocalClass();
7403 return (FD && FD->getTemplatedKind() != FunctionDecl::TK_NonTemplate);
7404 } else if (DC->isTranslationUnit() || DC->isNamespace())
7405 return false;
7406
7407 DC = DC->getParent();
7408 }
7409 return false;
7410}