blob: ccf953d2824a8a4312a702d5f37ea97a2d020234 [file] [log] [blame]
Douglas Gregoradcac882008-12-01 23:54:00 +00001//===--- ParseTemplate.cpp - Template Parsing -----------------------------===//
2//
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.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements parsing of C++ templates.
11//
12//===----------------------------------------------------------------------===//
13
14#include "clang/Parse/Parser.h"
Chris Lattner500d3292009-01-29 05:15:15 +000015#include "clang/Parse/ParseDiagnostic.h"
Douglas Gregoradcac882008-12-01 23:54:00 +000016#include "clang/Parse/DeclSpec.h"
17#include "clang/Parse/Scope.h"
Douglas Gregor314b97f2009-11-10 19:49:08 +000018#include "clang/Parse/Template.h"
Chris Lattnerde138eb2009-12-10 00:45:15 +000019#include "RAIIObjectsForParser.h"
Douglas Gregoradcac882008-12-01 23:54:00 +000020using namespace clang;
21
Douglas Gregor4d9a16f2009-05-12 23:25:50 +000022/// \brief Parse a template declaration, explicit instantiation, or
23/// explicit specialization.
24Parser::DeclPtrTy
25Parser::ParseDeclarationStartingWithTemplate(unsigned Context,
26 SourceLocation &DeclEnd,
27 AccessSpecifier AS) {
28 if (Tok.is(tok::kw_template) && NextToken().isNot(tok::less))
Mike Stump1eb44332009-09-09 15:08:12 +000029 return ParseExplicitInstantiation(SourceLocation(), ConsumeToken(),
Douglas Gregor45f96552009-09-04 06:33:52 +000030 DeclEnd);
Douglas Gregor4d9a16f2009-05-12 23:25:50 +000031
32 return ParseTemplateDeclarationOrSpecialization(Context, DeclEnd, AS);
33}
34
Douglas Gregorc3058332009-08-24 23:03:25 +000035/// \brief RAII class that manages the template parameter depth.
36namespace {
Benjamin Kramer85b45212009-11-28 19:45:26 +000037 class TemplateParameterDepthCounter {
Douglas Gregorc3058332009-08-24 23:03:25 +000038 unsigned &Depth;
39 unsigned AddedLevels;
40
41 public:
Mike Stump1eb44332009-09-09 15:08:12 +000042 explicit TemplateParameterDepthCounter(unsigned &Depth)
Douglas Gregorc3058332009-08-24 23:03:25 +000043 : Depth(Depth), AddedLevels(0) { }
Mike Stump1eb44332009-09-09 15:08:12 +000044
Douglas Gregorc3058332009-08-24 23:03:25 +000045 ~TemplateParameterDepthCounter() {
46 Depth -= AddedLevels;
47 }
Mike Stump1eb44332009-09-09 15:08:12 +000048
49 void operator++() {
Douglas Gregorc3058332009-08-24 23:03:25 +000050 ++Depth;
51 ++AddedLevels;
52 }
Mike Stump1eb44332009-09-09 15:08:12 +000053
Douglas Gregorc3058332009-08-24 23:03:25 +000054 operator unsigned() const { return Depth; }
55 };
56}
57
Douglas Gregorcc636682009-02-17 23:15:12 +000058/// \brief Parse a template declaration or an explicit specialization.
59///
60/// Template declarations include one or more template parameter lists
61/// and either the function or class template declaration. Explicit
62/// specializations contain one or more 'template < >' prefixes
63/// followed by a (possibly templated) declaration. Since the
64/// syntactic form of both features is nearly identical, we parse all
65/// of the template headers together and let semantic analysis sort
66/// the declarations from the explicit specializations.
Douglas Gregoradcac882008-12-01 23:54:00 +000067///
68/// template-declaration: [C++ temp]
69/// 'export'[opt] 'template' '<' template-parameter-list '>' declaration
Douglas Gregorcc636682009-02-17 23:15:12 +000070///
71/// explicit-specialization: [ C++ temp.expl.spec]
72/// 'template' '<' '>' declaration
Chris Lattnerb28317a2009-03-28 19:18:32 +000073Parser::DeclPtrTy
Anders Carlsson5aeccdb2009-03-26 00:52:18 +000074Parser::ParseTemplateDeclarationOrSpecialization(unsigned Context,
Chris Lattner97144fc2009-04-02 04:16:50 +000075 SourceLocation &DeclEnd,
Anders Carlsson5aeccdb2009-03-26 00:52:18 +000076 AccessSpecifier AS) {
Mike Stump1eb44332009-09-09 15:08:12 +000077 assert((Tok.is(tok::kw_export) || Tok.is(tok::kw_template)) &&
78 "Token does not start a template declaration.");
79
Douglas Gregor26236e82008-12-02 00:41:28 +000080 // Enter template-parameter scope.
Douglas Gregor8935b8b2008-12-10 06:34:36 +000081 ParseScope TemplateParmScope(this, Scope::TemplateParamScope);
Douglas Gregor26236e82008-12-02 00:41:28 +000082
John McCallc9068d72010-07-16 08:13:16 +000083 // Tell the action that names should be checked in the context of
84 // the declaration to come.
85 ParsingDeclRAIIObject ParsingTemplateParams(*this);
86
Douglas Gregorc4b4e7b2008-12-24 02:52:09 +000087 // Parse multiple levels of template headers within this template
88 // parameter scope, e.g.,
89 //
90 // template<typename T>
91 // template<typename U>
92 // class A<T>::B { ... };
93 //
94 // We parse multiple levels non-recursively so that we can build a
95 // single data structure containing all of the template parameter
Douglas Gregorcc636682009-02-17 23:15:12 +000096 // lists to easily differentiate between the case above and:
Douglas Gregorc4b4e7b2008-12-24 02:52:09 +000097 //
98 // template<typename T>
99 // class A {
100 // template<typename U> class B;
101 // };
102 //
103 // In the first case, the action for declaring A<T>::B receives
104 // both template parameter lists. In the second case, the action for
105 // defining A<T>::B receives just the inner template parameter list
106 // (and retrieves the outer template parameter list from its
107 // context).
Douglas Gregor0f499d92009-08-20 18:46:05 +0000108 bool isSpecialization = true;
Douglas Gregorc78c06d2009-10-30 22:09:44 +0000109 bool LastParamListWasEmpty = false;
Douglas Gregorc4b4e7b2008-12-24 02:52:09 +0000110 TemplateParameterLists ParamLists;
Douglas Gregorc3058332009-08-24 23:03:25 +0000111 TemplateParameterDepthCounter Depth(TemplateParameterDepth);
Douglas Gregorc4b4e7b2008-12-24 02:52:09 +0000112 do {
113 // Consume the 'export', if any.
114 SourceLocation ExportLoc;
115 if (Tok.is(tok::kw_export)) {
116 ExportLoc = ConsumeToken();
117 }
118
119 // Consume the 'template', which should be here.
120 SourceLocation TemplateLoc;
121 if (Tok.is(tok::kw_template)) {
122 TemplateLoc = ConsumeToken();
123 } else {
124 Diag(Tok.getLocation(), diag::err_expected_template);
Chris Lattnerb28317a2009-03-28 19:18:32 +0000125 return DeclPtrTy();
Douglas Gregorc4b4e7b2008-12-24 02:52:09 +0000126 }
Mike Stump1eb44332009-09-09 15:08:12 +0000127
Douglas Gregorc4b4e7b2008-12-24 02:52:09 +0000128 // Parse the '<' template-parameter-list '>'
129 SourceLocation LAngleLoc, RAngleLoc;
130 TemplateParameterList TemplateParams;
Mike Stump1eb44332009-09-09 15:08:12 +0000131 if (ParseTemplateParameters(Depth, TemplateParams, LAngleLoc,
Douglas Gregor7cdbc582009-07-22 23:48:44 +0000132 RAngleLoc)) {
133 // Skip until the semi-colon or a }.
134 SkipUntil(tok::r_brace, true, true);
135 if (Tok.is(tok::semi))
136 ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +0000137 return DeclPtrTy();
Douglas Gregor7cdbc582009-07-22 23:48:44 +0000138 }
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000139
Douglas Gregorc4b4e7b2008-12-24 02:52:09 +0000140 ParamLists.push_back(
Mike Stump1eb44332009-09-09 15:08:12 +0000141 Actions.ActOnTemplateParameterList(Depth, ExportLoc,
142 TemplateLoc, LAngleLoc,
Jay Foadbeaaccd2009-05-21 09:52:38 +0000143 TemplateParams.data(),
Douglas Gregorc4b4e7b2008-12-24 02:52:09 +0000144 TemplateParams.size(), RAngleLoc));
Douglas Gregorc3058332009-08-24 23:03:25 +0000145
146 if (!TemplateParams.empty()) {
147 isSpecialization = false;
148 ++Depth;
Douglas Gregorc78c06d2009-10-30 22:09:44 +0000149 } else {
150 LastParamListWasEmpty = true;
Mike Stump1eb44332009-09-09 15:08:12 +0000151 }
Douglas Gregorc4b4e7b2008-12-24 02:52:09 +0000152 } while (Tok.is(tok::kw_export) || Tok.is(tok::kw_template));
153
154 // Parse the actual template declaration.
Mike Stump1eb44332009-09-09 15:08:12 +0000155 return ParseSingleDeclarationAfterTemplate(Context,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000156 ParsedTemplateInfo(&ParamLists,
Douglas Gregorc78c06d2009-10-30 22:09:44 +0000157 isSpecialization,
158 LastParamListWasEmpty),
John McCallc9068d72010-07-16 08:13:16 +0000159 ParsingTemplateParams,
Douglas Gregor1426e532009-05-12 21:31:51 +0000160 DeclEnd, AS);
161}
Chris Lattner682bf922009-03-29 16:50:03 +0000162
Douglas Gregor1426e532009-05-12 21:31:51 +0000163/// \brief Parse a single declaration that declares a template,
164/// template specialization, or explicit instantiation of a template.
165///
166/// \param TemplateParams if non-NULL, the template parameter lists
167/// that preceded this declaration. In this case, the declaration is a
168/// template declaration, out-of-line definition of a template, or an
169/// explicit template specialization. When NULL, the declaration is an
170/// explicit template instantiation.
171///
172/// \param TemplateLoc when TemplateParams is NULL, the location of
173/// the 'template' keyword that indicates that we have an explicit
174/// template instantiation.
175///
176/// \param DeclEnd will receive the source location of the last token
177/// within this declaration.
178///
179/// \param AS the access specifier associated with this
180/// declaration. Will be AS_none for namespace-scope declarations.
181///
182/// \returns the new declaration.
Mike Stump1eb44332009-09-09 15:08:12 +0000183Parser::DeclPtrTy
Douglas Gregor1426e532009-05-12 21:31:51 +0000184Parser::ParseSingleDeclarationAfterTemplate(
185 unsigned Context,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000186 const ParsedTemplateInfo &TemplateInfo,
John McCallc9068d72010-07-16 08:13:16 +0000187 ParsingDeclRAIIObject &DiagsFromTParams,
Douglas Gregor1426e532009-05-12 21:31:51 +0000188 SourceLocation &DeclEnd,
189 AccessSpecifier AS) {
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000190 assert(TemplateInfo.Kind != ParsedTemplateInfo::NonTemplate &&
191 "Template information required");
192
Douglas Gregor37b372b2009-08-20 22:52:58 +0000193 if (Context == Declarator::MemberContext) {
194 // We are parsing a member template.
John McCallc9068d72010-07-16 08:13:16 +0000195 ParseCXXClassMemberDeclaration(AS, TemplateInfo, &DiagsFromTParams);
Douglas Gregor37b372b2009-08-20 22:52:58 +0000196 return DeclPtrTy::make((void*)0);
197 }
Mike Stump1eb44332009-09-09 15:08:12 +0000198
John McCallc9068d72010-07-16 08:13:16 +0000199 // Parse the declaration specifiers, stealing the accumulated
200 // diagnostics from the template parameters.
201 ParsingDeclSpec DS(DiagsFromTParams);
Sean Huntbbd37c62009-11-21 08:43:09 +0000202
203 if (getLang().CPlusPlus0x && isCXX0XAttributeSpecifier())
204 DS.AddAttributes(ParseCXX0XAttributes().AttrList);
205
Douglas Gregor0efc2c12010-01-13 17:31:36 +0000206 ParseDeclarationSpecifiers(DS, TemplateInfo, AS,
207 getDeclSpecContextFromDeclaratorContext(Context));
Douglas Gregor1426e532009-05-12 21:31:51 +0000208
209 if (Tok.is(tok::semi)) {
210 DeclEnd = ConsumeToken();
Douglas Gregor23c94db2010-07-02 17:43:08 +0000211 DeclPtrTy Decl = Actions.ParsedFreeStandingDeclSpec(getCurScope(), AS, DS);
John McCall54abf7d2009-11-04 02:18:39 +0000212 DS.complete(Decl);
213 return Decl;
Douglas Gregor1426e532009-05-12 21:31:51 +0000214 }
215
216 // Parse the declarator.
John McCall54abf7d2009-11-04 02:18:39 +0000217 ParsingDeclarator DeclaratorInfo(*this, DS, (Declarator::TheContext)Context);
Douglas Gregor1426e532009-05-12 21:31:51 +0000218 ParseDeclarator(DeclaratorInfo);
219 // Error parsing the declarator?
220 if (!DeclaratorInfo.hasName()) {
221 // If so, skip until the semi-colon or a }.
222 SkipUntil(tok::r_brace, true, true);
223 if (Tok.is(tok::semi))
224 ConsumeToken();
225 return DeclPtrTy();
226 }
Mike Stump1eb44332009-09-09 15:08:12 +0000227
Douglas Gregor1426e532009-05-12 21:31:51 +0000228 // If we have a declaration or declarator list, handle it.
229 if (isDeclarationAfterDeclarator()) {
230 // Parse this declaration.
Douglas Gregore542c862009-06-23 23:11:28 +0000231 DeclPtrTy ThisDecl = ParseDeclarationAfterDeclarator(DeclaratorInfo,
232 TemplateInfo);
Douglas Gregor1426e532009-05-12 21:31:51 +0000233
234 if (Tok.is(tok::comma)) {
235 Diag(Tok, diag::err_multiple_template_declarators)
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000236 << (int)TemplateInfo.Kind;
Douglas Gregor1426e532009-05-12 21:31:51 +0000237 SkipUntil(tok::semi, true, false);
238 return ThisDecl;
239 }
240
241 // Eat the semi colon after the declaration.
John McCall5c15fe12009-07-31 02:20:35 +0000242 ExpectAndConsume(tok::semi, diag::err_expected_semi_declaration);
John McCall54abf7d2009-11-04 02:18:39 +0000243 DS.complete(ThisDecl);
Douglas Gregor1426e532009-05-12 21:31:51 +0000244 return ThisDecl;
245 }
246
247 if (DeclaratorInfo.isFunctionDeclarator() &&
Chris Lattner004659a2010-07-11 22:42:07 +0000248 isStartOfFunctionDefinition(DeclaratorInfo)) {
Douglas Gregor1426e532009-05-12 21:31:51 +0000249 if (DS.getStorageClassSpec() == DeclSpec::SCS_typedef) {
250 Diag(Tok, diag::err_function_declared_typedef);
251
252 if (Tok.is(tok::l_brace)) {
253 // This recovery skips the entire function body. It would be nice
254 // to simply call ParseFunctionDefinition() below, however Sema
255 // assumes the declarator represents a function, not a typedef.
256 ConsumeBrace();
257 SkipUntil(tok::r_brace, true);
258 } else {
259 SkipUntil(tok::semi);
260 }
261 return DeclPtrTy();
262 }
Douglas Gregor52591bf2009-06-24 00:54:41 +0000263 return ParseFunctionDefinition(DeclaratorInfo, TemplateInfo);
Douglas Gregor1426e532009-05-12 21:31:51 +0000264 }
265
266 if (DeclaratorInfo.isFunctionDeclarator())
267 Diag(Tok, diag::err_expected_fn_body);
268 else
269 Diag(Tok, diag::err_invalid_token_after_toplevel_declarator);
270 SkipUntil(tok::semi);
271 return DeclPtrTy();
Douglas Gregoradcac882008-12-01 23:54:00 +0000272}
273
274/// ParseTemplateParameters - Parses a template-parameter-list enclosed in
Douglas Gregoraaba5e32009-02-04 19:02:06 +0000275/// angle brackets. Depth is the depth of this template-parameter-list, which
276/// is the number of template headers directly enclosing this template header.
277/// TemplateParams is the current list of template parameters we're building.
278/// The template parameter we parse will be added to this list. LAngleLoc and
Mike Stump1eb44332009-09-09 15:08:12 +0000279/// RAngleLoc will receive the positions of the '<' and '>', respectively,
Douglas Gregoraaba5e32009-02-04 19:02:06 +0000280/// that enclose this template parameter list.
Douglas Gregor7cdbc582009-07-22 23:48:44 +0000281///
282/// \returns true if an error occurred, false otherwise.
Douglas Gregorc4b4e7b2008-12-24 02:52:09 +0000283bool Parser::ParseTemplateParameters(unsigned Depth,
284 TemplateParameterList &TemplateParams,
285 SourceLocation &LAngleLoc,
286 SourceLocation &RAngleLoc) {
Douglas Gregoradcac882008-12-01 23:54:00 +0000287 // Get the template parameter list.
Mike Stump1eb44332009-09-09 15:08:12 +0000288 if (!Tok.is(tok::less)) {
Douglas Gregoradcac882008-12-01 23:54:00 +0000289 Diag(Tok.getLocation(), diag::err_expected_less_after) << "template";
Douglas Gregor7cdbc582009-07-22 23:48:44 +0000290 return true;
Douglas Gregoradcac882008-12-01 23:54:00 +0000291 }
Douglas Gregorc4b4e7b2008-12-24 02:52:09 +0000292 LAngleLoc = ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +0000293
Douglas Gregoradcac882008-12-01 23:54:00 +0000294 // Try to parse the template parameter list.
Douglas Gregorc4b4e7b2008-12-24 02:52:09 +0000295 if (Tok.is(tok::greater))
296 RAngleLoc = ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +0000297 else if (ParseTemplateParameterList(Depth, TemplateParams)) {
298 if (!Tok.is(tok::greater)) {
Douglas Gregoradcac882008-12-01 23:54:00 +0000299 Diag(Tok.getLocation(), diag::err_expected_greater);
Douglas Gregor7cdbc582009-07-22 23:48:44 +0000300 return true;
Douglas Gregoradcac882008-12-01 23:54:00 +0000301 }
Douglas Gregorc4b4e7b2008-12-24 02:52:09 +0000302 RAngleLoc = ConsumeToken();
Douglas Gregoradcac882008-12-01 23:54:00 +0000303 }
Douglas Gregor7cdbc582009-07-22 23:48:44 +0000304 return false;
Douglas Gregoradcac882008-12-01 23:54:00 +0000305}
306
307/// ParseTemplateParameterList - Parse a template parameter list. If
308/// the parsing fails badly (i.e., closing bracket was left out), this
309/// will try to put the token stream in a reasonable position (closing
Mike Stump1eb44332009-09-09 15:08:12 +0000310/// a statement, etc.) and return false.
Douglas Gregoradcac882008-12-01 23:54:00 +0000311///
312/// template-parameter-list: [C++ temp]
313/// template-parameter
314/// template-parameter-list ',' template-parameter
Mike Stump1eb44332009-09-09 15:08:12 +0000315bool
Douglas Gregorc4b4e7b2008-12-24 02:52:09 +0000316Parser::ParseTemplateParameterList(unsigned Depth,
317 TemplateParameterList &TemplateParams) {
Mike Stump1eb44332009-09-09 15:08:12 +0000318 while (1) {
Chris Lattnerb28317a2009-03-28 19:18:32 +0000319 if (DeclPtrTy TmpParam
Douglas Gregorc4b4e7b2008-12-24 02:52:09 +0000320 = ParseTemplateParameter(Depth, TemplateParams.size())) {
321 TemplateParams.push_back(TmpParam);
322 } else {
Douglas Gregoradcac882008-12-01 23:54:00 +0000323 // If we failed to parse a template parameter, skip until we find
324 // a comma or closing brace.
325 SkipUntil(tok::comma, tok::greater, true, true);
326 }
Mike Stump1eb44332009-09-09 15:08:12 +0000327
Douglas Gregoradcac882008-12-01 23:54:00 +0000328 // Did we find a comma or the end of the template parmeter list?
Mike Stump1eb44332009-09-09 15:08:12 +0000329 if (Tok.is(tok::comma)) {
Douglas Gregoradcac882008-12-01 23:54:00 +0000330 ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +0000331 } else if (Tok.is(tok::greater)) {
Douglas Gregoradcac882008-12-01 23:54:00 +0000332 // Don't consume this... that's done by template parser.
333 break;
334 } else {
335 // Somebody probably forgot to close the template. Skip ahead and
336 // try to get out of the expression. This error is currently
337 // subsumed by whatever goes on in ParseTemplateParameter.
338 // TODO: This could match >>, and it would be nice to avoid those
339 // silly errors with template <vec<T>>.
340 // Diag(Tok.getLocation(), diag::err_expected_comma_greater);
341 SkipUntil(tok::greater, true, true);
342 return false;
343 }
344 }
345 return true;
346}
347
Douglas Gregor98440b42009-11-21 02:07:55 +0000348/// \brief Determine whether the parser is at the start of a template
349/// type parameter.
350bool Parser::isStartOfTemplateTypeParameter() {
Douglas Gregor7b6d25b2010-06-04 07:30:15 +0000351 if (Tok.is(tok::kw_class)) {
352 // "class" may be the start of an elaborated-type-specifier or a
353 // type-parameter. Per C++ [temp.param]p3, we prefer the type-parameter.
354 switch (NextToken().getKind()) {
355 case tok::equal:
356 case tok::comma:
357 case tok::greater:
358 case tok::greatergreater:
359 case tok::ellipsis:
360 return true;
361
362 case tok::identifier:
363 // This may be either a type-parameter or an elaborated-type-specifier.
364 // We have to look further.
365 break;
366
367 default:
368 return false;
369 }
370
371 switch (GetLookAheadToken(2).getKind()) {
372 case tok::equal:
373 case tok::comma:
374 case tok::greater:
375 case tok::greatergreater:
376 return true;
377
378 default:
379 return false;
380 }
381 }
Douglas Gregor98440b42009-11-21 02:07:55 +0000382
383 if (Tok.isNot(tok::kw_typename))
384 return false;
385
386 // C++ [temp.param]p2:
387 // There is no semantic difference between class and typename in a
388 // template-parameter. typename followed by an unqualified-id
389 // names a template type parameter. typename followed by a
390 // qualified-id denotes the type in a non-type
391 // parameter-declaration.
392 Token Next = NextToken();
393
394 // If we have an identifier, skip over it.
395 if (Next.getKind() == tok::identifier)
396 Next = GetLookAheadToken(2);
397
398 switch (Next.getKind()) {
399 case tok::equal:
400 case tok::comma:
401 case tok::greater:
402 case tok::greatergreater:
403 case tok::ellipsis:
404 return true;
405
406 default:
407 return false;
408 }
409}
410
Douglas Gregoradcac882008-12-01 23:54:00 +0000411/// ParseTemplateParameter - Parse a template-parameter (C++ [temp.param]).
412///
413/// template-parameter: [C++ temp.param]
414/// type-parameter
415/// parameter-declaration
416///
417/// type-parameter: (see below)
Anders Carlssonce5635a2009-06-12 23:09:56 +0000418/// 'class' ...[opt][C++0x] identifier[opt]
Douglas Gregoradcac882008-12-01 23:54:00 +0000419/// 'class' identifier[opt] '=' type-id
Anders Carlssonce5635a2009-06-12 23:09:56 +0000420/// 'typename' ...[opt][C++0x] identifier[opt]
Douglas Gregoradcac882008-12-01 23:54:00 +0000421/// 'typename' identifier[opt] '=' type-id
Anders Carlssonce5635a2009-06-12 23:09:56 +0000422/// 'template' ...[opt][C++0x] '<' template-parameter-list '>' 'class' identifier[opt]
Douglas Gregoradcac882008-12-01 23:54:00 +0000423/// 'template' '<' template-parameter-list '>' 'class' identifier[opt] = id-expression
Mike Stump1eb44332009-09-09 15:08:12 +0000424Parser::DeclPtrTy
Douglas Gregorc4b4e7b2008-12-24 02:52:09 +0000425Parser::ParseTemplateParameter(unsigned Depth, unsigned Position) {
Douglas Gregor98440b42009-11-21 02:07:55 +0000426 if (isStartOfTemplateTypeParameter())
Douglas Gregorc4b4e7b2008-12-24 02:52:09 +0000427 return ParseTypeParameter(Depth, Position);
Mike Stump1eb44332009-09-09 15:08:12 +0000428
429 if (Tok.is(tok::kw_template))
Chris Lattner532e19b2009-01-04 23:51:17 +0000430 return ParseTemplateTemplateParameter(Depth, Position);
431
432 // If it's none of the above, then it must be a parameter declaration.
433 // NOTE: This will pick up errors in the closure of the template parameter
434 // list (e.g., template < ; Check here to implement >> style closures.
435 return ParseNonTypeTemplateParameter(Depth, Position);
Douglas Gregoradcac882008-12-01 23:54:00 +0000436}
437
438/// ParseTypeParameter - Parse a template type parameter (C++ [temp.param]).
439/// Other kinds of template parameters are parsed in
440/// ParseTemplateTemplateParameter and ParseNonTypeTemplateParameter.
441///
442/// type-parameter: [C++ temp.param]
Anders Carlssonce5635a2009-06-12 23:09:56 +0000443/// 'class' ...[opt][C++0x] identifier[opt]
Douglas Gregoradcac882008-12-01 23:54:00 +0000444/// 'class' identifier[opt] '=' type-id
Anders Carlssonce5635a2009-06-12 23:09:56 +0000445/// 'typename' ...[opt][C++0x] identifier[opt]
Douglas Gregoradcac882008-12-01 23:54:00 +0000446/// 'typename' identifier[opt] '=' type-id
Chris Lattnerb28317a2009-03-28 19:18:32 +0000447Parser::DeclPtrTy Parser::ParseTypeParameter(unsigned Depth, unsigned Position){
Douglas Gregor26236e82008-12-02 00:41:28 +0000448 assert((Tok.is(tok::kw_class) || Tok.is(tok::kw_typename)) &&
Mike Stump1eb44332009-09-09 15:08:12 +0000449 "A type-parameter starts with 'class' or 'typename'");
Douglas Gregor26236e82008-12-02 00:41:28 +0000450
451 // Consume the 'class' or 'typename' keyword.
452 bool TypenameKeyword = Tok.is(tok::kw_typename);
453 SourceLocation KeyLoc = ConsumeToken();
Douglas Gregoradcac882008-12-01 23:54:00 +0000454
Anders Carlsson941df7d2009-06-12 19:58:00 +0000455 // Grab the ellipsis (if given).
456 bool Ellipsis = false;
457 SourceLocation EllipsisLoc;
Anders Carlssonce5635a2009-06-12 23:09:56 +0000458 if (Tok.is(tok::ellipsis)) {
Anders Carlsson941df7d2009-06-12 19:58:00 +0000459 Ellipsis = true;
460 EllipsisLoc = ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +0000461
462 if (!getLang().CPlusPlus0x)
Anders Carlssonce5635a2009-06-12 23:09:56 +0000463 Diag(EllipsisLoc, diag::err_variadic_templates);
Anders Carlsson941df7d2009-06-12 19:58:00 +0000464 }
Mike Stump1eb44332009-09-09 15:08:12 +0000465
Douglas Gregoradcac882008-12-01 23:54:00 +0000466 // Grab the template parameter name (if given)
Douglas Gregor26236e82008-12-02 00:41:28 +0000467 SourceLocation NameLoc;
468 IdentifierInfo* ParamName = 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000469 if (Tok.is(tok::identifier)) {
Douglas Gregor26236e82008-12-02 00:41:28 +0000470 ParamName = Tok.getIdentifierInfo();
471 NameLoc = ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +0000472 } else if (Tok.is(tok::equal) || Tok.is(tok::comma) ||
473 Tok.is(tok::greater)) {
Douglas Gregoradcac882008-12-01 23:54:00 +0000474 // Unnamed template parameter. Don't have to do anything here, just
475 // don't consume this token.
476 } else {
477 Diag(Tok.getLocation(), diag::err_expected_ident);
Chris Lattnerb28317a2009-03-28 19:18:32 +0000478 return DeclPtrTy();
Douglas Gregoradcac882008-12-01 23:54:00 +0000479 }
Mike Stump1eb44332009-09-09 15:08:12 +0000480
Douglas Gregorbb3310a2010-07-01 00:00:45 +0000481 // Grab a default argument (if available).
482 // Per C++0x [basic.scope.pdecl]p9, we parse the default argument before
483 // we introduce the type parameter into the local scope.
484 SourceLocation EqualLoc;
485 TypeTy *DefaultArg = 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000486 if (Tok.is(tok::equal)) {
Douglas Gregorbb3310a2010-07-01 00:00:45 +0000487 EqualLoc = ConsumeToken();
488 DefaultArg = ParseTypeName().get();
Douglas Gregoradcac882008-12-01 23:54:00 +0000489 }
Douglas Gregorbb3310a2010-07-01 00:00:45 +0000490
Douglas Gregor23c94db2010-07-02 17:43:08 +0000491 return Actions.ActOnTypeParameter(getCurScope(), TypenameKeyword, Ellipsis,
Douglas Gregorbb3310a2010-07-01 00:00:45 +0000492 EllipsisLoc, KeyLoc, ParamName, NameLoc,
493 Depth, Position, EqualLoc, DefaultArg);
Douglas Gregoradcac882008-12-01 23:54:00 +0000494}
495
496/// ParseTemplateTemplateParameter - Handle the parsing of template
Mike Stump1eb44332009-09-09 15:08:12 +0000497/// template parameters.
Douglas Gregoradcac882008-12-01 23:54:00 +0000498///
499/// type-parameter: [C++ temp.param]
500/// 'template' '<' template-parameter-list '>' 'class' identifier[opt]
501/// 'template' '<' template-parameter-list '>' 'class' identifier[opt] = id-expression
Chris Lattnerb28317a2009-03-28 19:18:32 +0000502Parser::DeclPtrTy
Douglas Gregorc4b4e7b2008-12-24 02:52:09 +0000503Parser::ParseTemplateTemplateParameter(unsigned Depth, unsigned Position) {
Douglas Gregoradcac882008-12-01 23:54:00 +0000504 assert(Tok.is(tok::kw_template) && "Expected 'template' keyword");
505
506 // Handle the template <...> part.
507 SourceLocation TemplateLoc = ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +0000508 TemplateParameterList TemplateParams;
Douglas Gregorddc29e12009-02-06 22:42:48 +0000509 SourceLocation LAngleLoc, RAngleLoc;
Douglas Gregor68c69932009-02-10 19:52:54 +0000510 {
511 ParseScope TemplateParmScope(this, Scope::TemplateParamScope);
Mike Stump1eb44332009-09-09 15:08:12 +0000512 if (ParseTemplateParameters(Depth + 1, TemplateParams, LAngleLoc,
Douglas Gregor7cdbc582009-07-22 23:48:44 +0000513 RAngleLoc)) {
Chris Lattnerb28317a2009-03-28 19:18:32 +0000514 return DeclPtrTy();
Douglas Gregor68c69932009-02-10 19:52:54 +0000515 }
Douglas Gregoradcac882008-12-01 23:54:00 +0000516 }
517
518 // Generate a meaningful error if the user forgot to put class before the
519 // identifier, comma, or greater.
Mike Stump1eb44332009-09-09 15:08:12 +0000520 if (!Tok.is(tok::kw_class)) {
521 Diag(Tok.getLocation(), diag::err_expected_class_before)
Douglas Gregoradcac882008-12-01 23:54:00 +0000522 << PP.getSpelling(Tok);
Chris Lattnerb28317a2009-03-28 19:18:32 +0000523 return DeclPtrTy();
Douglas Gregoradcac882008-12-01 23:54:00 +0000524 }
525 SourceLocation ClassLoc = ConsumeToken();
526
527 // Get the identifier, if given.
Douglas Gregoraaba5e32009-02-04 19:02:06 +0000528 SourceLocation NameLoc;
529 IdentifierInfo* ParamName = 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000530 if (Tok.is(tok::identifier)) {
Douglas Gregoraaba5e32009-02-04 19:02:06 +0000531 ParamName = Tok.getIdentifierInfo();
532 NameLoc = ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +0000533 } else if (Tok.is(tok::equal) || Tok.is(tok::comma) || Tok.is(tok::greater)) {
Douglas Gregoradcac882008-12-01 23:54:00 +0000534 // Unnamed template parameter. Don't have to do anything here, just
535 // don't consume this token.
536 } else {
537 Diag(Tok.getLocation(), diag::err_expected_ident);
Chris Lattnerb28317a2009-03-28 19:18:32 +0000538 return DeclPtrTy();
Douglas Gregoradcac882008-12-01 23:54:00 +0000539 }
540
Mike Stump1eb44332009-09-09 15:08:12 +0000541 TemplateParamsTy *ParamList =
Douglas Gregorddc29e12009-02-06 22:42:48 +0000542 Actions.ActOnTemplateParameterList(Depth, SourceLocation(),
543 TemplateLoc, LAngleLoc,
Mike Stump1eb44332009-09-09 15:08:12 +0000544 &TemplateParams[0],
Douglas Gregorddc29e12009-02-06 22:42:48 +0000545 TemplateParams.size(),
546 RAngleLoc);
547
Douglas Gregorbb3310a2010-07-01 00:00:45 +0000548 // Grab a default argument (if available).
549 // Per C++0x [basic.scope.pdecl]p9, we parse the default argument before
550 // we introduce the template parameter into the local scope.
551 SourceLocation EqualLoc;
552 ParsedTemplateArgument DefaultArg;
Douglas Gregord684b002009-02-10 19:49:53 +0000553 if (Tok.is(tok::equal)) {
Douglas Gregorbb3310a2010-07-01 00:00:45 +0000554 EqualLoc = ConsumeToken();
555 DefaultArg = ParseTemplateTemplateArgument();
556 if (DefaultArg.isInvalid()) {
Douglas Gregor788cd062009-11-11 01:00:40 +0000557 Diag(Tok.getLocation(),
558 diag::err_default_template_template_parameter_not_template);
Nuno Lopes68f7a242009-12-10 00:07:02 +0000559 static const tok::TokenKind EndToks[] = {
Douglas Gregor788cd062009-11-11 01:00:40 +0000560 tok::comma, tok::greater, tok::greatergreater
561 };
562 SkipUntil(EndToks, 3, true, true);
Douglas Gregorbb3310a2010-07-01 00:00:45 +0000563 }
Douglas Gregord684b002009-02-10 19:49:53 +0000564 }
Douglas Gregorbb3310a2010-07-01 00:00:45 +0000565
Douglas Gregor23c94db2010-07-02 17:43:08 +0000566 return Actions.ActOnTemplateTemplateParameter(getCurScope(), TemplateLoc,
Douglas Gregorbb3310a2010-07-01 00:00:45 +0000567 ParamList, ParamName,
568 NameLoc, Depth, Position,
569 EqualLoc, DefaultArg);
Douglas Gregoradcac882008-12-01 23:54:00 +0000570}
571
572/// ParseNonTypeTemplateParameter - Handle the parsing of non-type
Mike Stump1eb44332009-09-09 15:08:12 +0000573/// template parameters (e.g., in "template<int Size> class array;").
Douglas Gregord6fb7ef2008-12-18 19:37:40 +0000574///
Douglas Gregoradcac882008-12-01 23:54:00 +0000575/// template-parameter:
576/// ...
577/// parameter-declaration
Mike Stump1eb44332009-09-09 15:08:12 +0000578Parser::DeclPtrTy
Douglas Gregorc4b4e7b2008-12-24 02:52:09 +0000579Parser::ParseNonTypeTemplateParameter(unsigned Depth, unsigned Position) {
Douglas Gregor26236e82008-12-02 00:41:28 +0000580 SourceLocation StartLoc = Tok.getLocation();
Douglas Gregoradcac882008-12-01 23:54:00 +0000581
582 // Parse the declaration-specifiers (i.e., the type).
Douglas Gregor26236e82008-12-02 00:41:28 +0000583 // FIXME: The type should probably be restricted in some way... Not all
Douglas Gregoradcac882008-12-01 23:54:00 +0000584 // declarators (parts of declarators?) are accepted for parameters.
Douglas Gregor26236e82008-12-02 00:41:28 +0000585 DeclSpec DS;
586 ParseDeclarationSpecifiers(DS);
Douglas Gregoradcac882008-12-01 23:54:00 +0000587
588 // Parse this as a typename.
Douglas Gregor26236e82008-12-02 00:41:28 +0000589 Declarator ParamDecl(DS, Declarator::TemplateParamContext);
590 ParseDeclarator(ParamDecl);
Chris Lattner7452c6f2009-01-05 01:24:05 +0000591 if (DS.getTypeSpecType() == DeclSpec::TST_unspecified && !DS.getTypeRep()) {
Douglas Gregoradcac882008-12-01 23:54:00 +0000592 // This probably shouldn't happen - and it's more of a Sema thing, but
593 // basically we didn't parse the type name because we couldn't associate
594 // it with an AST node. we should just skip to the comma or greater.
595 // TODO: This is currently a placeholder for some kind of Sema Error.
596 Diag(Tok.getLocation(), diag::err_parse_error);
597 SkipUntil(tok::comma, tok::greater, true, true);
Chris Lattnerb28317a2009-03-28 19:18:32 +0000598 return DeclPtrTy();
Douglas Gregoradcac882008-12-01 23:54:00 +0000599 }
600
Douglas Gregord684b002009-02-10 19:49:53 +0000601 // If there is a default value, parse it.
Douglas Gregorbb3310a2010-07-01 00:00:45 +0000602 // Per C++0x [basic.scope.pdecl]p9, we parse the default argument before
603 // we introduce the template parameter into the local scope.
604 SourceLocation EqualLoc;
605 OwningExprResult DefaultArg(Actions);
Chris Lattner7452c6f2009-01-05 01:24:05 +0000606 if (Tok.is(tok::equal)) {
Douglas Gregorbb3310a2010-07-01 00:00:45 +0000607 EqualLoc = ConsumeToken();
Douglas Gregord684b002009-02-10 19:49:53 +0000608
609 // C++ [temp.param]p15:
610 // When parsing a default template-argument for a non-type
611 // template-parameter, the first non-nested > is taken as the
612 // end of the template-parameter-list rather than a greater-than
613 // operator.
Mike Stump1eb44332009-09-09 15:08:12 +0000614 GreaterThanIsOperatorScope G(GreaterThanIsOperator, false);
Douglas Gregord684b002009-02-10 19:49:53 +0000615
Douglas Gregorbb3310a2010-07-01 00:00:45 +0000616 DefaultArg = ParseAssignmentExpression();
Douglas Gregord684b002009-02-10 19:49:53 +0000617 if (DefaultArg.isInvalid())
618 SkipUntil(tok::comma, tok::greater, true, true);
Douglas Gregoradcac882008-12-01 23:54:00 +0000619 }
Mike Stump1eb44332009-09-09 15:08:12 +0000620
Douglas Gregorbb3310a2010-07-01 00:00:45 +0000621 // Create the parameter.
Douglas Gregor23c94db2010-07-02 17:43:08 +0000622 return Actions.ActOnNonTypeTemplateParameter(getCurScope(), ParamDecl,
Douglas Gregorbb3310a2010-07-01 00:00:45 +0000623 Depth, Position, EqualLoc,
624 move(DefaultArg));
Douglas Gregoradcac882008-12-01 23:54:00 +0000625}
Douglas Gregord6fb7ef2008-12-18 19:37:40 +0000626
Douglas Gregorcc636682009-02-17 23:15:12 +0000627/// \brief Parses a template-id that after the template name has
628/// already been parsed.
629///
630/// This routine takes care of parsing the enclosed template argument
631/// list ('<' template-parameter-list [opt] '>') and placing the
632/// results into a form that can be transferred to semantic analysis.
633///
634/// \param Template the template declaration produced by isTemplateName
635///
636/// \param TemplateNameLoc the source location of the template name
637///
638/// \param SS if non-NULL, the nested-name-specifier preceding the
639/// template name.
640///
641/// \param ConsumeLastToken if true, then we will consume the last
642/// token that forms the template-id. Otherwise, we will leave the
643/// last token in the stream (e.g., so that it can be replaced with an
644/// annotation token).
Mike Stump1eb44332009-09-09 15:08:12 +0000645bool
Douglas Gregor7532dc62009-03-30 22:58:21 +0000646Parser::ParseTemplateIdAfterTemplateName(TemplateTy Template,
Mike Stump1eb44332009-09-09 15:08:12 +0000647 SourceLocation TemplateNameLoc,
Douglas Gregorcc636682009-02-17 23:15:12 +0000648 const CXXScopeSpec *SS,
649 bool ConsumeLastToken,
650 SourceLocation &LAngleLoc,
651 TemplateArgList &TemplateArgs,
Douglas Gregorcc636682009-02-17 23:15:12 +0000652 SourceLocation &RAngleLoc) {
653 assert(Tok.is(tok::less) && "Must have already parsed the template-name");
654
655 // Consume the '<'.
656 LAngleLoc = ConsumeToken();
657
658 // Parse the optional template-argument-list.
659 bool Invalid = false;
660 {
661 GreaterThanIsOperatorScope G(GreaterThanIsOperator, false);
662 if (Tok.isNot(tok::greater))
Douglas Gregor314b97f2009-11-10 19:49:08 +0000663 Invalid = ParseTemplateArgumentList(TemplateArgs);
Douglas Gregorcc636682009-02-17 23:15:12 +0000664
665 if (Invalid) {
666 // Try to find the closing '>'.
667 SkipUntil(tok::greater, true, !ConsumeLastToken);
668
669 return true;
670 }
671 }
672
Eli Friedman64a4eb22009-12-27 22:31:18 +0000673 if (Tok.isNot(tok::greater) && Tok.isNot(tok::greatergreater)) {
674 Diag(Tok.getLocation(), diag::err_expected_greater);
Douglas Gregorcc636682009-02-17 23:15:12 +0000675 return true;
Eli Friedman64a4eb22009-12-27 22:31:18 +0000676 }
Douglas Gregorcc636682009-02-17 23:15:12 +0000677
Douglas Gregor3965b7b2009-02-25 23:02:36 +0000678 // Determine the location of the '>' or '>>'. Only consume this
679 // token if the caller asked us to.
Douglas Gregorcc636682009-02-17 23:15:12 +0000680 RAngleLoc = Tok.getLocation();
681
Douglas Gregor3965b7b2009-02-25 23:02:36 +0000682 if (Tok.is(tok::greatergreater)) {
Douglas Gregor4b2d3f72009-02-26 21:00:50 +0000683 if (!getLang().CPlusPlus0x) {
684 const char *ReplaceStr = "> >";
685 if (NextToken().is(tok::greater) || NextToken().is(tok::greatergreater))
686 ReplaceStr = "> > ";
687
688 Diag(Tok.getLocation(), diag::err_two_right_angle_brackets_need_space)
Douglas Gregor849b2432010-03-31 17:46:05 +0000689 << FixItHint::CreateReplacement(
Douglas Gregorb2fb6de2009-02-27 17:53:17 +0000690 SourceRange(Tok.getLocation()), ReplaceStr);
Douglas Gregor4b2d3f72009-02-26 21:00:50 +0000691 }
Douglas Gregor3965b7b2009-02-25 23:02:36 +0000692
693 Tok.setKind(tok::greater);
694 if (!ConsumeLastToken) {
695 // Since we're not supposed to consume the '>>' token, we need
696 // to insert a second '>' token after the first.
697 PP.EnterToken(Tok);
698 }
699 } else if (ConsumeLastToken)
Douglas Gregorcc636682009-02-17 23:15:12 +0000700 ConsumeToken();
701
702 return false;
703}
Mike Stump1eb44332009-09-09 15:08:12 +0000704
Douglas Gregor39a8de12009-02-25 19:37:18 +0000705/// \brief Replace the tokens that form a simple-template-id with an
706/// annotation token containing the complete template-id.
707///
708/// The first token in the stream must be the name of a template that
709/// is followed by a '<'. This routine will parse the complete
710/// simple-template-id and replace the tokens with a single annotation
711/// token with one of two different kinds: if the template-id names a
712/// type (and \p AllowTypeAnnotation is true), the annotation token is
713/// a type annotation that includes the optional nested-name-specifier
714/// (\p SS). Otherwise, the annotation token is a template-id
715/// annotation that does not include the optional
716/// nested-name-specifier.
717///
718/// \param Template the declaration of the template named by the first
719/// token (an identifier), as returned from \c Action::isTemplateName().
720///
721/// \param TemplateNameKind the kind of template that \p Template
722/// refers to, as returned from \c Action::isTemplateName().
723///
724/// \param SS if non-NULL, the nested-name-specifier that precedes
725/// this template name.
726///
727/// \param TemplateKWLoc if valid, specifies that this template-id
728/// annotation was preceded by the 'template' keyword and gives the
729/// location of that keyword. If invalid (the default), then this
730/// template-id was not preceded by a 'template' keyword.
731///
732/// \param AllowTypeAnnotation if true (the default), then a
733/// simple-template-id that refers to a class template, template
734/// template parameter, or other template that produces a type will be
735/// replaced with a type annotation token. Otherwise, the
736/// simple-template-id is always replaced with a template-id
737/// annotation token.
Chris Lattnerc8e27cc2009-06-26 04:27:47 +0000738///
739/// If an unrecoverable parse error occurs and no annotation token can be
740/// formed, this function returns true.
741///
742bool Parser::AnnotateTemplateIdToken(TemplateTy Template, TemplateNameKind TNK,
Mike Stump1eb44332009-09-09 15:08:12 +0000743 const CXXScopeSpec *SS,
Douglas Gregorca1bdd72009-11-04 00:56:37 +0000744 UnqualifiedId &TemplateName,
Douglas Gregor39a8de12009-02-25 19:37:18 +0000745 SourceLocation TemplateKWLoc,
746 bool AllowTypeAnnotation) {
Douglas Gregord6fb7ef2008-12-18 19:37:40 +0000747 assert(getLang().CPlusPlus && "Can only annotate template-ids in C++");
Douglas Gregorca1bdd72009-11-04 00:56:37 +0000748 assert(Template && Tok.is(tok::less) &&
Douglas Gregord6fb7ef2008-12-18 19:37:40 +0000749 "Parser isn't at the beginning of a template-id");
750
751 // Consume the template-name.
Douglas Gregorca1bdd72009-11-04 00:56:37 +0000752 SourceLocation TemplateNameLoc = TemplateName.getSourceRange().getBegin();
Douglas Gregord6fb7ef2008-12-18 19:37:40 +0000753
Douglas Gregorcc636682009-02-17 23:15:12 +0000754 // Parse the enclosed template argument list.
755 SourceLocation LAngleLoc, RAngleLoc;
Douglas Gregor5908e9f2009-02-09 19:34:22 +0000756 TemplateArgList TemplateArgs;
Douglas Gregorca1bdd72009-11-04 00:56:37 +0000757 bool Invalid = ParseTemplateIdAfterTemplateName(Template,
758 TemplateNameLoc,
Mike Stump1eb44332009-09-09 15:08:12 +0000759 SS, false, LAngleLoc,
760 TemplateArgs,
Douglas Gregorcc636682009-02-17 23:15:12 +0000761 RAngleLoc);
Mike Stump1eb44332009-09-09 15:08:12 +0000762
Chris Lattnerc8e27cc2009-06-26 04:27:47 +0000763 if (Invalid) {
764 // If we failed to parse the template ID but skipped ahead to a >, we're not
765 // going to be able to form a token annotation. Eat the '>' if present.
766 if (Tok.is(tok::greater))
767 ConsumeToken();
768 return true;
769 }
Douglas Gregorc15cb382009-02-09 23:23:08 +0000770
Jay Foadbeaaccd2009-05-21 09:52:38 +0000771 ASTTemplateArgsPtr TemplateArgsPtr(Actions, TemplateArgs.data(),
Douglas Gregorcc636682009-02-17 23:15:12 +0000772 TemplateArgs.size());
Douglas Gregorf02da892009-02-09 21:04:56 +0000773
Douglas Gregor55f6b142009-02-09 18:46:07 +0000774 // Build the annotation token.
Douglas Gregorc45c2322009-03-31 00:43:58 +0000775 if (TNK == TNK_Type_template && AllowTypeAnnotation) {
Mike Stump1eb44332009-09-09 15:08:12 +0000776 Action::TypeResult Type
Douglas Gregor7532dc62009-03-30 22:58:21 +0000777 = Actions.ActOnTemplateIdType(Template, TemplateNameLoc,
778 LAngleLoc, TemplateArgsPtr,
Douglas Gregor7532dc62009-03-30 22:58:21 +0000779 RAngleLoc);
Chris Lattnerc8e27cc2009-06-26 04:27:47 +0000780 if (Type.isInvalid()) {
781 // If we failed to parse the template ID but skipped ahead to a >, we're not
782 // going to be able to form a token annotation. Eat the '>' if present.
783 if (Tok.is(tok::greater))
784 ConsumeToken();
785 return true;
786 }
Douglas Gregorcc636682009-02-17 23:15:12 +0000787
788 Tok.setKind(tok::annot_typename);
789 Tok.setAnnotationValue(Type.get());
Douglas Gregor39a8de12009-02-25 19:37:18 +0000790 if (SS && SS->isNotEmpty())
791 Tok.setLocation(SS->getBeginLoc());
792 else if (TemplateKWLoc.isValid())
793 Tok.setLocation(TemplateKWLoc);
Mike Stump1eb44332009-09-09 15:08:12 +0000794 else
Douglas Gregor39a8de12009-02-25 19:37:18 +0000795 Tok.setLocation(TemplateNameLoc);
Douglas Gregorcc636682009-02-17 23:15:12 +0000796 } else {
Douglas Gregorc45c2322009-03-31 00:43:58 +0000797 // Build a template-id annotation token that can be processed
798 // later.
Douglas Gregor39a8de12009-02-25 19:37:18 +0000799 Tok.setKind(tok::annot_template_id);
Mike Stump1eb44332009-09-09 15:08:12 +0000800 TemplateIdAnnotation *TemplateId
Douglas Gregor39a8de12009-02-25 19:37:18 +0000801 = TemplateIdAnnotation::Allocate(TemplateArgs.size());
Douglas Gregor55f6b142009-02-09 18:46:07 +0000802 TemplateId->TemplateNameLoc = TemplateNameLoc;
Douglas Gregorca1bdd72009-11-04 00:56:37 +0000803 if (TemplateName.getKind() == UnqualifiedId::IK_Identifier) {
804 TemplateId->Name = TemplateName.Identifier;
805 TemplateId->Operator = OO_None;
806 } else {
807 TemplateId->Name = 0;
808 TemplateId->Operator = TemplateName.OperatorFunctionId.Operator;
809 }
Chris Lattnerb28317a2009-03-28 19:18:32 +0000810 TemplateId->Template = Template.getAs<void*>();
Douglas Gregor39a8de12009-02-25 19:37:18 +0000811 TemplateId->Kind = TNK;
Douglas Gregor55f6b142009-02-09 18:46:07 +0000812 TemplateId->LAngleLoc = LAngleLoc;
Douglas Gregor39a8de12009-02-25 19:37:18 +0000813 TemplateId->RAngleLoc = RAngleLoc;
Douglas Gregor314b97f2009-11-10 19:49:08 +0000814 ParsedTemplateArgument *Args = TemplateId->getTemplateArgs();
815 for (unsigned Arg = 0, ArgEnd = TemplateArgs.size(); Arg != ArgEnd; ++Arg)
Douglas Gregor55f6b142009-02-09 18:46:07 +0000816 Args[Arg] = TemplateArgs[Arg];
817 Tok.setAnnotationValue(TemplateId);
Douglas Gregor39a8de12009-02-25 19:37:18 +0000818 if (TemplateKWLoc.isValid())
819 Tok.setLocation(TemplateKWLoc);
820 else
821 Tok.setLocation(TemplateNameLoc);
822
823 TemplateArgsPtr.release();
Douglas Gregor55f6b142009-02-09 18:46:07 +0000824 }
825
826 // Common fields for the annotation token
Douglas Gregord6fb7ef2008-12-18 19:37:40 +0000827 Tok.setAnnotationEndLoc(RAngleLoc);
Douglas Gregord6fb7ef2008-12-18 19:37:40 +0000828
Douglas Gregord6fb7ef2008-12-18 19:37:40 +0000829 // In case the tokens were cached, have Preprocessor replace them with the
830 // annotation token.
831 PP.AnnotateCachedTokens(Tok);
Chris Lattnerc8e27cc2009-06-26 04:27:47 +0000832 return false;
Douglas Gregord6fb7ef2008-12-18 19:37:40 +0000833}
834
Douglas Gregor39a8de12009-02-25 19:37:18 +0000835/// \brief Replaces a template-id annotation token with a type
836/// annotation token.
837///
Douglas Gregor31a19b62009-04-01 21:51:26 +0000838/// If there was a failure when forming the type from the template-id,
839/// a type annotation token will still be created, but will have a
840/// NULL type pointer to signify an error.
841void Parser::AnnotateTemplateIdTokenAsType(const CXXScopeSpec *SS) {
Douglas Gregor39a8de12009-02-25 19:37:18 +0000842 assert(Tok.is(tok::annot_template_id) && "Requires template-id tokens");
843
Mike Stump1eb44332009-09-09 15:08:12 +0000844 TemplateIdAnnotation *TemplateId
Douglas Gregor39a8de12009-02-25 19:37:18 +0000845 = static_cast<TemplateIdAnnotation *>(Tok.getAnnotationValue());
Douglas Gregorc45c2322009-03-31 00:43:58 +0000846 assert((TemplateId->Kind == TNK_Type_template ||
847 TemplateId->Kind == TNK_Dependent_template_name) &&
848 "Only works for type and dependent templates");
Mike Stump1eb44332009-09-09 15:08:12 +0000849
850 ASTTemplateArgsPtr TemplateArgsPtr(Actions,
Douglas Gregor39a8de12009-02-25 19:37:18 +0000851 TemplateId->getTemplateArgs(),
Douglas Gregor39a8de12009-02-25 19:37:18 +0000852 TemplateId->NumArgs);
853
Mike Stump1eb44332009-09-09 15:08:12 +0000854 Action::TypeResult Type
Douglas Gregor7532dc62009-03-30 22:58:21 +0000855 = Actions.ActOnTemplateIdType(TemplateTy::make(TemplateId->Template),
856 TemplateId->TemplateNameLoc,
Mike Stump1eb44332009-09-09 15:08:12 +0000857 TemplateId->LAngleLoc,
Douglas Gregor7532dc62009-03-30 22:58:21 +0000858 TemplateArgsPtr,
Douglas Gregor7532dc62009-03-30 22:58:21 +0000859 TemplateId->RAngleLoc);
Douglas Gregor39a8de12009-02-25 19:37:18 +0000860 // Create the new "type" annotation token.
861 Tok.setKind(tok::annot_typename);
Douglas Gregor31a19b62009-04-01 21:51:26 +0000862 Tok.setAnnotationValue(Type.isInvalid()? 0 : Type.get());
Douglas Gregor39a8de12009-02-25 19:37:18 +0000863 if (SS && SS->isNotEmpty()) // it was a C++ qualified type name.
864 Tok.setLocation(SS->getBeginLoc());
Sebastian Redl39d67112010-02-08 19:35:18 +0000865 // End location stays the same
Douglas Gregor39a8de12009-02-25 19:37:18 +0000866
Douglas Gregor86235412009-11-04 18:18:19 +0000867 // Replace the template-id annotation token, and possible the scope-specifier
868 // that precedes it, with the typename annotation token.
869 PP.AnnotateCachedTokens(Tok);
Douglas Gregor39a8de12009-02-25 19:37:18 +0000870 TemplateId->Destroy();
Douglas Gregor39a8de12009-02-25 19:37:18 +0000871}
872
Douglas Gregor314b97f2009-11-10 19:49:08 +0000873/// \brief Determine whether the given token can end a template argument.
Benjamin Kramer3a4a2b32009-11-10 21:29:56 +0000874static bool isEndOfTemplateArgument(Token Tok) {
Douglas Gregor314b97f2009-11-10 19:49:08 +0000875 return Tok.is(tok::comma) || Tok.is(tok::greater) ||
876 Tok.is(tok::greatergreater);
877}
878
Douglas Gregor788cd062009-11-11 01:00:40 +0000879/// \brief Parse a C++ template template argument.
880ParsedTemplateArgument Parser::ParseTemplateTemplateArgument() {
881 if (!Tok.is(tok::identifier) && !Tok.is(tok::coloncolon) &&
882 !Tok.is(tok::annot_cxxscope))
883 return ParsedTemplateArgument();
884
885 // C++0x [temp.arg.template]p1:
886 // A template-argument for a template template-parameter shall be the name
887 // of a class template or a template alias, expressed as id-expression.
888 //
Douglas Gregoreaf75f42009-11-12 00:03:40 +0000889 // We parse an id-expression that refers to a class template or template
890 // alias. The grammar we parse is:
Douglas Gregor788cd062009-11-11 01:00:40 +0000891 //
892 // nested-name-specifier[opt] template[opt] identifier
893 //
894 // followed by a token that terminates a template argument, such as ',',
895 // '>', or (in some cases) '>>'.
Douglas Gregor788cd062009-11-11 01:00:40 +0000896 CXXScopeSpec SS; // nested-name-specifier, if present
897 ParseOptionalCXXScopeSpecifier(SS, /*ObjectType=*/0,
898 /*EnteringContext=*/false);
899
900 if (SS.isSet() && Tok.is(tok::kw_template)) {
901 // Parse the optional 'template' keyword following the
902 // nested-name-specifier.
903 SourceLocation TemplateLoc = ConsumeToken();
904
905 if (Tok.is(tok::identifier)) {
906 // We appear to have a dependent template name.
907 UnqualifiedId Name;
908 Name.setIdentifier(Tok.getIdentifierInfo(), Tok.getLocation());
909 ConsumeToken(); // the identifier
910
911 // If the next token signals the end of a template argument,
912 // then we have a dependent template name that could be a template
913 // template argument.
Douglas Gregord6ab2322010-06-16 23:00:59 +0000914 TemplateTy Template;
915 if (isEndOfTemplateArgument(Tok) &&
Douglas Gregor23c94db2010-07-02 17:43:08 +0000916 Actions.ActOnDependentTemplateName(getCurScope(), TemplateLoc, SS, Name,
Douglas Gregord6ab2322010-06-16 23:00:59 +0000917 /*ObjectType=*/0,
918 /*EnteringContext=*/false,
919 Template))
920 return ParsedTemplateArgument(SS, Template, Name.StartLocation);
921 }
Douglas Gregor788cd062009-11-11 01:00:40 +0000922 } else if (Tok.is(tok::identifier)) {
923 // We may have a (non-dependent) template name.
924 TemplateTy Template;
925 UnqualifiedId Name;
926 Name.setIdentifier(Tok.getIdentifierInfo(), Tok.getLocation());
927 ConsumeToken(); // the identifier
928
929 if (isEndOfTemplateArgument(Tok)) {
Douglas Gregor1fd6d442010-05-21 23:18:07 +0000930 bool MemberOfUnknownSpecialization;
Abramo Bagnara7c153532010-08-06 12:11:11 +0000931 TemplateNameKind TNK = Actions.isTemplateName(getCurScope(), SS,
932 /*hasTemplateKeyword=*/false,
933 Name,
Douglas Gregor788cd062009-11-11 01:00:40 +0000934 /*ObjectType=*/0,
935 /*EnteringContext=*/false,
Douglas Gregor1fd6d442010-05-21 23:18:07 +0000936 Template,
937 MemberOfUnknownSpecialization);
Douglas Gregor788cd062009-11-11 01:00:40 +0000938 if (TNK == TNK_Dependent_template_name || TNK == TNK_Type_template) {
939 // We have an id-expression that refers to a class template or
940 // (C++0x) template alias.
Douglas Gregor788cd062009-11-11 01:00:40 +0000941 return ParsedTemplateArgument(SS, Template, Name.StartLocation);
942 }
943 }
944 }
945
Douglas Gregoreaf75f42009-11-12 00:03:40 +0000946 // We don't have a template template argument.
Douglas Gregor788cd062009-11-11 01:00:40 +0000947 return ParsedTemplateArgument();
948}
949
Douglas Gregord6fb7ef2008-12-18 19:37:40 +0000950/// ParseTemplateArgument - Parse a C++ template argument (C++ [temp.names]).
951///
952/// template-argument: [C++ 14.2]
Douglas Gregorac7610d2009-06-22 20:57:11 +0000953/// constant-expression
Douglas Gregord6fb7ef2008-12-18 19:37:40 +0000954/// type-id
955/// id-expression
Douglas Gregor314b97f2009-11-10 19:49:08 +0000956ParsedTemplateArgument Parser::ParseTemplateArgument() {
Douglas Gregor55f6b142009-02-09 18:46:07 +0000957 // C++ [temp.arg]p2:
958 // In a template-argument, an ambiguity between a type-id and an
959 // expression is resolved to a type-id, regardless of the form of
960 // the corresponding template-parameter.
961 //
Douglas Gregor314b97f2009-11-10 19:49:08 +0000962 // Therefore, we initially try to parse a type-id.
Douglas Gregor8b642592009-02-10 00:53:15 +0000963 if (isCXXTypeId(TypeIdAsTemplateArgument)) {
Douglas Gregor314b97f2009-11-10 19:49:08 +0000964 SourceLocation Loc = Tok.getLocation();
Douglas Gregor809070a2009-02-18 17:45:20 +0000965 TypeResult TypeArg = ParseTypeName();
966 if (TypeArg.isInvalid())
Douglas Gregor314b97f2009-11-10 19:49:08 +0000967 return ParsedTemplateArgument();
968
969 return ParsedTemplateArgument(ParsedTemplateArgument::Type, TypeArg.get(),
970 Loc);
Douglas Gregor55f6b142009-02-09 18:46:07 +0000971 }
Douglas Gregor788cd062009-11-11 01:00:40 +0000972
973 // Try to parse a template template argument.
Douglas Gregoreaf75f42009-11-12 00:03:40 +0000974 {
975 TentativeParsingAction TPA(*this);
976
977 ParsedTemplateArgument TemplateTemplateArgument
978 = ParseTemplateTemplateArgument();
979 if (!TemplateTemplateArgument.isInvalid()) {
980 TPA.Commit();
981 return TemplateTemplateArgument;
982 }
983
984 // Revert this tentative parse to parse a non-type template argument.
985 TPA.Revert();
986 }
Douglas Gregor314b97f2009-11-10 19:49:08 +0000987
988 // Parse a non-type template argument.
989 SourceLocation Loc = Tok.getLocation();
Douglas Gregorac7610d2009-06-22 20:57:11 +0000990 OwningExprResult ExprArg = ParseConstantExpression();
Douglas Gregorc15cb382009-02-09 23:23:08 +0000991 if (ExprArg.isInvalid() || !ExprArg.get())
Douglas Gregor314b97f2009-11-10 19:49:08 +0000992 return ParsedTemplateArgument();
Douglas Gregor55f6b142009-02-09 18:46:07 +0000993
Douglas Gregor314b97f2009-11-10 19:49:08 +0000994 return ParsedTemplateArgument(ParsedTemplateArgument::NonType,
995 ExprArg.release(), Loc);
Douglas Gregord6fb7ef2008-12-18 19:37:40 +0000996}
997
Douglas Gregor1fd6d442010-05-21 23:18:07 +0000998/// \brief Determine whether the current tokens can only be parsed as a
999/// template argument list (starting with the '<') and never as a '<'
1000/// expression.
Douglas Gregord5ab9b02010-05-21 23:43:39 +00001001bool Parser::IsTemplateArgumentList(unsigned Skip) {
Douglas Gregor1fd6d442010-05-21 23:18:07 +00001002 struct AlwaysRevertAction : TentativeParsingAction {
1003 AlwaysRevertAction(Parser &P) : TentativeParsingAction(P) { }
1004 ~AlwaysRevertAction() { Revert(); }
1005 } Tentative(*this);
1006
Douglas Gregord5ab9b02010-05-21 23:43:39 +00001007 while (Skip) {
1008 ConsumeToken();
1009 --Skip;
1010 }
1011
Douglas Gregor1fd6d442010-05-21 23:18:07 +00001012 // '<'
1013 if (!Tok.is(tok::less))
1014 return false;
1015 ConsumeToken();
1016
1017 // An empty template argument list.
1018 if (Tok.is(tok::greater))
1019 return true;
1020
1021 // See whether we have declaration specifiers, which indicate a type.
1022 while (isCXXDeclarationSpecifier() == TPResult::True())
1023 ConsumeToken();
1024
1025 // If we have a '>' or a ',' then this is a template argument list.
1026 return Tok.is(tok::greater) || Tok.is(tok::comma);
1027}
1028
Douglas Gregord6fb7ef2008-12-18 19:37:40 +00001029/// ParseTemplateArgumentList - Parse a C++ template-argument-list
1030/// (C++ [temp.names]). Returns true if there was an error.
1031///
1032/// template-argument-list: [C++ 14.2]
1033/// template-argument
1034/// template-argument-list ',' template-argument
Mike Stump1eb44332009-09-09 15:08:12 +00001035bool
Douglas Gregor314b97f2009-11-10 19:49:08 +00001036Parser::ParseTemplateArgumentList(TemplateArgList &TemplateArgs) {
Douglas Gregord6fb7ef2008-12-18 19:37:40 +00001037 while (true) {
Douglas Gregor314b97f2009-11-10 19:49:08 +00001038 ParsedTemplateArgument Arg = ParseTemplateArgument();
1039 if (Arg.isInvalid()) {
Douglas Gregord6fb7ef2008-12-18 19:37:40 +00001040 SkipUntil(tok::comma, tok::greater, true, true);
1041 return true;
1042 }
Douglas Gregor5908e9f2009-02-09 19:34:22 +00001043
Douglas Gregor314b97f2009-11-10 19:49:08 +00001044 // Save this template argument.
1045 TemplateArgs.push_back(Arg);
1046
Douglas Gregord6fb7ef2008-12-18 19:37:40 +00001047 // If the next token is a comma, consume it and keep reading
1048 // arguments.
1049 if (Tok.isNot(tok::comma)) break;
1050
1051 // Consume the comma.
1052 ConsumeToken();
1053 }
1054
Eli Friedman64a4eb22009-12-27 22:31:18 +00001055 return false;
Douglas Gregord6fb7ef2008-12-18 19:37:40 +00001056}
1057
Mike Stump1eb44332009-09-09 15:08:12 +00001058/// \brief Parse a C++ explicit template instantiation
Douglas Gregor1426e532009-05-12 21:31:51 +00001059/// (C++ [temp.explicit]).
1060///
1061/// explicit-instantiation:
Douglas Gregor45f96552009-09-04 06:33:52 +00001062/// 'extern' [opt] 'template' declaration
1063///
1064/// Note that the 'extern' is a GNU extension and C++0x feature.
Mike Stump1eb44332009-09-09 15:08:12 +00001065Parser::DeclPtrTy
Douglas Gregor45f96552009-09-04 06:33:52 +00001066Parser::ParseExplicitInstantiation(SourceLocation ExternLoc,
1067 SourceLocation TemplateLoc,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001068 SourceLocation &DeclEnd) {
John McCallc9068d72010-07-16 08:13:16 +00001069 // This isn't really required here.
1070 ParsingDeclRAIIObject ParsingTemplateParams(*this);
1071
Mike Stump1eb44332009-09-09 15:08:12 +00001072 return ParseSingleDeclarationAfterTemplate(Declarator::FileContext,
Douglas Gregor45f96552009-09-04 06:33:52 +00001073 ParsedTemplateInfo(ExternLoc,
1074 TemplateLoc),
John McCallc9068d72010-07-16 08:13:16 +00001075 ParsingTemplateParams,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001076 DeclEnd, AS_none);
Douglas Gregor1426e532009-05-12 21:31:51 +00001077}