blob: 5be4ca82f7284f942074474076cc31fdab0972f0 [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"
Douglas Gregorc3058332009-08-24 23:03:25 +000019#include "llvm/Support/Compiler.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 {
37 class VISIBILITY_HIDDEN TemplateParameterDepthCounter {
38 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
Douglas Gregorc4b4e7b2008-12-24 02:52:09 +000083 // Parse multiple levels of template headers within this template
84 // parameter scope, e.g.,
85 //
86 // template<typename T>
87 // template<typename U>
88 // class A<T>::B { ... };
89 //
90 // We parse multiple levels non-recursively so that we can build a
91 // single data structure containing all of the template parameter
Douglas Gregorcc636682009-02-17 23:15:12 +000092 // lists to easily differentiate between the case above and:
Douglas Gregorc4b4e7b2008-12-24 02:52:09 +000093 //
94 // template<typename T>
95 // class A {
96 // template<typename U> class B;
97 // };
98 //
99 // In the first case, the action for declaring A<T>::B receives
100 // both template parameter lists. In the second case, the action for
101 // defining A<T>::B receives just the inner template parameter list
102 // (and retrieves the outer template parameter list from its
103 // context).
Douglas Gregor0f499d92009-08-20 18:46:05 +0000104 bool isSpecialization = true;
Douglas Gregorc78c06d2009-10-30 22:09:44 +0000105 bool LastParamListWasEmpty = false;
Douglas Gregorc4b4e7b2008-12-24 02:52:09 +0000106 TemplateParameterLists ParamLists;
Douglas Gregorc3058332009-08-24 23:03:25 +0000107 TemplateParameterDepthCounter Depth(TemplateParameterDepth);
Douglas Gregorc4b4e7b2008-12-24 02:52:09 +0000108 do {
109 // Consume the 'export', if any.
110 SourceLocation ExportLoc;
111 if (Tok.is(tok::kw_export)) {
112 ExportLoc = ConsumeToken();
113 }
114
115 // Consume the 'template', which should be here.
116 SourceLocation TemplateLoc;
117 if (Tok.is(tok::kw_template)) {
118 TemplateLoc = ConsumeToken();
119 } else {
120 Diag(Tok.getLocation(), diag::err_expected_template);
Chris Lattnerb28317a2009-03-28 19:18:32 +0000121 return DeclPtrTy();
Douglas Gregorc4b4e7b2008-12-24 02:52:09 +0000122 }
Mike Stump1eb44332009-09-09 15:08:12 +0000123
Douglas Gregorc4b4e7b2008-12-24 02:52:09 +0000124 // Parse the '<' template-parameter-list '>'
125 SourceLocation LAngleLoc, RAngleLoc;
126 TemplateParameterList TemplateParams;
Mike Stump1eb44332009-09-09 15:08:12 +0000127 if (ParseTemplateParameters(Depth, TemplateParams, LAngleLoc,
Douglas Gregor7cdbc582009-07-22 23:48:44 +0000128 RAngleLoc)) {
129 // Skip until the semi-colon or a }.
130 SkipUntil(tok::r_brace, true, true);
131 if (Tok.is(tok::semi))
132 ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +0000133 return DeclPtrTy();
Douglas Gregor7cdbc582009-07-22 23:48:44 +0000134 }
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000135
Douglas Gregorc4b4e7b2008-12-24 02:52:09 +0000136 ParamLists.push_back(
Mike Stump1eb44332009-09-09 15:08:12 +0000137 Actions.ActOnTemplateParameterList(Depth, ExportLoc,
138 TemplateLoc, LAngleLoc,
Jay Foadbeaaccd2009-05-21 09:52:38 +0000139 TemplateParams.data(),
Douglas Gregorc4b4e7b2008-12-24 02:52:09 +0000140 TemplateParams.size(), RAngleLoc));
Douglas Gregorc3058332009-08-24 23:03:25 +0000141
142 if (!TemplateParams.empty()) {
143 isSpecialization = false;
144 ++Depth;
Douglas Gregorc78c06d2009-10-30 22:09:44 +0000145 } else {
146 LastParamListWasEmpty = true;
Mike Stump1eb44332009-09-09 15:08:12 +0000147 }
Douglas Gregorc4b4e7b2008-12-24 02:52:09 +0000148 } while (Tok.is(tok::kw_export) || Tok.is(tok::kw_template));
149
150 // Parse the actual template declaration.
Mike Stump1eb44332009-09-09 15:08:12 +0000151 return ParseSingleDeclarationAfterTemplate(Context,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000152 ParsedTemplateInfo(&ParamLists,
Douglas Gregorc78c06d2009-10-30 22:09:44 +0000153 isSpecialization,
154 LastParamListWasEmpty),
Douglas Gregor1426e532009-05-12 21:31:51 +0000155 DeclEnd, AS);
156}
Chris Lattner682bf922009-03-29 16:50:03 +0000157
Douglas Gregor1426e532009-05-12 21:31:51 +0000158/// \brief Parse a single declaration that declares a template,
159/// template specialization, or explicit instantiation of a template.
160///
161/// \param TemplateParams if non-NULL, the template parameter lists
162/// that preceded this declaration. In this case, the declaration is a
163/// template declaration, out-of-line definition of a template, or an
164/// explicit template specialization. When NULL, the declaration is an
165/// explicit template instantiation.
166///
167/// \param TemplateLoc when TemplateParams is NULL, the location of
168/// the 'template' keyword that indicates that we have an explicit
169/// template instantiation.
170///
171/// \param DeclEnd will receive the source location of the last token
172/// within this declaration.
173///
174/// \param AS the access specifier associated with this
175/// declaration. Will be AS_none for namespace-scope declarations.
176///
177/// \returns the new declaration.
Mike Stump1eb44332009-09-09 15:08:12 +0000178Parser::DeclPtrTy
Douglas Gregor1426e532009-05-12 21:31:51 +0000179Parser::ParseSingleDeclarationAfterTemplate(
180 unsigned Context,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000181 const ParsedTemplateInfo &TemplateInfo,
Douglas Gregor1426e532009-05-12 21:31:51 +0000182 SourceLocation &DeclEnd,
183 AccessSpecifier AS) {
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000184 assert(TemplateInfo.Kind != ParsedTemplateInfo::NonTemplate &&
185 "Template information required");
186
Douglas Gregor37b372b2009-08-20 22:52:58 +0000187 if (Context == Declarator::MemberContext) {
188 // We are parsing a member template.
189 ParseCXXClassMemberDeclaration(AS, TemplateInfo);
190 return DeclPtrTy::make((void*)0);
191 }
Mike Stump1eb44332009-09-09 15:08:12 +0000192
Douglas Gregor1426e532009-05-12 21:31:51 +0000193 // Parse the declaration specifiers.
John McCall54abf7d2009-11-04 02:18:39 +0000194 ParsingDeclSpec DS(*this);
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000195 ParseDeclarationSpecifiers(DS, TemplateInfo, AS);
Douglas Gregor1426e532009-05-12 21:31:51 +0000196
197 if (Tok.is(tok::semi)) {
198 DeclEnd = ConsumeToken();
John McCall54abf7d2009-11-04 02:18:39 +0000199 DeclPtrTy Decl = Actions.ParsedFreeStandingDeclSpec(CurScope, DS);
200 DS.complete(Decl);
201 return Decl;
Douglas Gregor1426e532009-05-12 21:31:51 +0000202 }
203
204 // Parse the declarator.
John McCall54abf7d2009-11-04 02:18:39 +0000205 ParsingDeclarator DeclaratorInfo(*this, DS, (Declarator::TheContext)Context);
Douglas Gregor1426e532009-05-12 21:31:51 +0000206 ParseDeclarator(DeclaratorInfo);
207 // Error parsing the declarator?
208 if (!DeclaratorInfo.hasName()) {
209 // If so, skip until the semi-colon or a }.
210 SkipUntil(tok::r_brace, true, true);
211 if (Tok.is(tok::semi))
212 ConsumeToken();
213 return DeclPtrTy();
214 }
Mike Stump1eb44332009-09-09 15:08:12 +0000215
Douglas Gregor1426e532009-05-12 21:31:51 +0000216 // If we have a declaration or declarator list, handle it.
217 if (isDeclarationAfterDeclarator()) {
218 // Parse this declaration.
Douglas Gregore542c862009-06-23 23:11:28 +0000219 DeclPtrTy ThisDecl = ParseDeclarationAfterDeclarator(DeclaratorInfo,
220 TemplateInfo);
Douglas Gregor1426e532009-05-12 21:31:51 +0000221
222 if (Tok.is(tok::comma)) {
223 Diag(Tok, diag::err_multiple_template_declarators)
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000224 << (int)TemplateInfo.Kind;
Douglas Gregor1426e532009-05-12 21:31:51 +0000225 SkipUntil(tok::semi, true, false);
226 return ThisDecl;
227 }
228
229 // Eat the semi colon after the declaration.
John McCall5c15fe12009-07-31 02:20:35 +0000230 ExpectAndConsume(tok::semi, diag::err_expected_semi_declaration);
John McCall54abf7d2009-11-04 02:18:39 +0000231 DS.complete(ThisDecl);
Douglas Gregor1426e532009-05-12 21:31:51 +0000232 return ThisDecl;
233 }
234
235 if (DeclaratorInfo.isFunctionDeclarator() &&
236 isStartOfFunctionDefinition()) {
237 if (DS.getStorageClassSpec() == DeclSpec::SCS_typedef) {
238 Diag(Tok, diag::err_function_declared_typedef);
239
240 if (Tok.is(tok::l_brace)) {
241 // This recovery skips the entire function body. It would be nice
242 // to simply call ParseFunctionDefinition() below, however Sema
243 // assumes the declarator represents a function, not a typedef.
244 ConsumeBrace();
245 SkipUntil(tok::r_brace, true);
246 } else {
247 SkipUntil(tok::semi);
248 }
249 return DeclPtrTy();
250 }
Douglas Gregor52591bf2009-06-24 00:54:41 +0000251 return ParseFunctionDefinition(DeclaratorInfo, TemplateInfo);
Douglas Gregor1426e532009-05-12 21:31:51 +0000252 }
253
254 if (DeclaratorInfo.isFunctionDeclarator())
255 Diag(Tok, diag::err_expected_fn_body);
256 else
257 Diag(Tok, diag::err_invalid_token_after_toplevel_declarator);
258 SkipUntil(tok::semi);
259 return DeclPtrTy();
Douglas Gregoradcac882008-12-01 23:54:00 +0000260}
261
262/// ParseTemplateParameters - Parses a template-parameter-list enclosed in
Douglas Gregoraaba5e32009-02-04 19:02:06 +0000263/// angle brackets. Depth is the depth of this template-parameter-list, which
264/// is the number of template headers directly enclosing this template header.
265/// TemplateParams is the current list of template parameters we're building.
266/// The template parameter we parse will be added to this list. LAngleLoc and
Mike Stump1eb44332009-09-09 15:08:12 +0000267/// RAngleLoc will receive the positions of the '<' and '>', respectively,
Douglas Gregoraaba5e32009-02-04 19:02:06 +0000268/// that enclose this template parameter list.
Douglas Gregor7cdbc582009-07-22 23:48:44 +0000269///
270/// \returns true if an error occurred, false otherwise.
Douglas Gregorc4b4e7b2008-12-24 02:52:09 +0000271bool Parser::ParseTemplateParameters(unsigned Depth,
272 TemplateParameterList &TemplateParams,
273 SourceLocation &LAngleLoc,
274 SourceLocation &RAngleLoc) {
Douglas Gregoradcac882008-12-01 23:54:00 +0000275 // Get the template parameter list.
Mike Stump1eb44332009-09-09 15:08:12 +0000276 if (!Tok.is(tok::less)) {
Douglas Gregoradcac882008-12-01 23:54:00 +0000277 Diag(Tok.getLocation(), diag::err_expected_less_after) << "template";
Douglas Gregor7cdbc582009-07-22 23:48:44 +0000278 return true;
Douglas Gregoradcac882008-12-01 23:54:00 +0000279 }
Douglas Gregorc4b4e7b2008-12-24 02:52:09 +0000280 LAngleLoc = ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +0000281
Douglas Gregoradcac882008-12-01 23:54:00 +0000282 // Try to parse the template parameter list.
Douglas Gregorc4b4e7b2008-12-24 02:52:09 +0000283 if (Tok.is(tok::greater))
284 RAngleLoc = ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +0000285 else if (ParseTemplateParameterList(Depth, TemplateParams)) {
286 if (!Tok.is(tok::greater)) {
Douglas Gregoradcac882008-12-01 23:54:00 +0000287 Diag(Tok.getLocation(), diag::err_expected_greater);
Douglas Gregor7cdbc582009-07-22 23:48:44 +0000288 return true;
Douglas Gregoradcac882008-12-01 23:54:00 +0000289 }
Douglas Gregorc4b4e7b2008-12-24 02:52:09 +0000290 RAngleLoc = ConsumeToken();
Douglas Gregoradcac882008-12-01 23:54:00 +0000291 }
Douglas Gregor7cdbc582009-07-22 23:48:44 +0000292 return false;
Douglas Gregoradcac882008-12-01 23:54:00 +0000293}
294
295/// ParseTemplateParameterList - Parse a template parameter list. If
296/// the parsing fails badly (i.e., closing bracket was left out), this
297/// will try to put the token stream in a reasonable position (closing
Mike Stump1eb44332009-09-09 15:08:12 +0000298/// a statement, etc.) and return false.
Douglas Gregoradcac882008-12-01 23:54:00 +0000299///
300/// template-parameter-list: [C++ temp]
301/// template-parameter
302/// template-parameter-list ',' template-parameter
Mike Stump1eb44332009-09-09 15:08:12 +0000303bool
Douglas Gregorc4b4e7b2008-12-24 02:52:09 +0000304Parser::ParseTemplateParameterList(unsigned Depth,
305 TemplateParameterList &TemplateParams) {
Mike Stump1eb44332009-09-09 15:08:12 +0000306 while (1) {
Chris Lattnerb28317a2009-03-28 19:18:32 +0000307 if (DeclPtrTy TmpParam
Douglas Gregorc4b4e7b2008-12-24 02:52:09 +0000308 = ParseTemplateParameter(Depth, TemplateParams.size())) {
309 TemplateParams.push_back(TmpParam);
310 } else {
Douglas Gregoradcac882008-12-01 23:54:00 +0000311 // If we failed to parse a template parameter, skip until we find
312 // a comma or closing brace.
313 SkipUntil(tok::comma, tok::greater, true, true);
314 }
Mike Stump1eb44332009-09-09 15:08:12 +0000315
Douglas Gregoradcac882008-12-01 23:54:00 +0000316 // Did we find a comma or the end of the template parmeter list?
Mike Stump1eb44332009-09-09 15:08:12 +0000317 if (Tok.is(tok::comma)) {
Douglas Gregoradcac882008-12-01 23:54:00 +0000318 ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +0000319 } else if (Tok.is(tok::greater)) {
Douglas Gregoradcac882008-12-01 23:54:00 +0000320 // Don't consume this... that's done by template parser.
321 break;
322 } else {
323 // Somebody probably forgot to close the template. Skip ahead and
324 // try to get out of the expression. This error is currently
325 // subsumed by whatever goes on in ParseTemplateParameter.
326 // TODO: This could match >>, and it would be nice to avoid those
327 // silly errors with template <vec<T>>.
328 // Diag(Tok.getLocation(), diag::err_expected_comma_greater);
329 SkipUntil(tok::greater, true, true);
330 return false;
331 }
332 }
333 return true;
334}
335
336/// ParseTemplateParameter - Parse a template-parameter (C++ [temp.param]).
337///
338/// template-parameter: [C++ temp.param]
339/// type-parameter
340/// parameter-declaration
341///
342/// type-parameter: (see below)
Anders Carlssonce5635a2009-06-12 23:09:56 +0000343/// 'class' ...[opt][C++0x] identifier[opt]
Douglas Gregoradcac882008-12-01 23:54:00 +0000344/// 'class' identifier[opt] '=' type-id
Anders Carlssonce5635a2009-06-12 23:09:56 +0000345/// 'typename' ...[opt][C++0x] identifier[opt]
Douglas Gregoradcac882008-12-01 23:54:00 +0000346/// 'typename' identifier[opt] '=' type-id
Anders Carlssonce5635a2009-06-12 23:09:56 +0000347/// 'template' ...[opt][C++0x] '<' template-parameter-list '>' 'class' identifier[opt]
Douglas Gregoradcac882008-12-01 23:54:00 +0000348/// 'template' '<' template-parameter-list '>' 'class' identifier[opt] = id-expression
Mike Stump1eb44332009-09-09 15:08:12 +0000349Parser::DeclPtrTy
Douglas Gregorc4b4e7b2008-12-24 02:52:09 +0000350Parser::ParseTemplateParameter(unsigned Depth, unsigned Position) {
Mike Stump1eb44332009-09-09 15:08:12 +0000351 if (Tok.is(tok::kw_class) ||
352 (Tok.is(tok::kw_typename) &&
353 // FIXME: Next token has not been annotated!
354 NextToken().isNot(tok::annot_typename))) {
Douglas Gregorc4b4e7b2008-12-24 02:52:09 +0000355 return ParseTypeParameter(Depth, Position);
Douglas Gregoradcac882008-12-01 23:54:00 +0000356 }
Mike Stump1eb44332009-09-09 15:08:12 +0000357
358 if (Tok.is(tok::kw_template))
Chris Lattner532e19b2009-01-04 23:51:17 +0000359 return ParseTemplateTemplateParameter(Depth, Position);
360
361 // If it's none of the above, then it must be a parameter declaration.
362 // NOTE: This will pick up errors in the closure of the template parameter
363 // list (e.g., template < ; Check here to implement >> style closures.
364 return ParseNonTypeTemplateParameter(Depth, Position);
Douglas Gregoradcac882008-12-01 23:54:00 +0000365}
366
367/// ParseTypeParameter - Parse a template type parameter (C++ [temp.param]).
368/// Other kinds of template parameters are parsed in
369/// ParseTemplateTemplateParameter and ParseNonTypeTemplateParameter.
370///
371/// type-parameter: [C++ temp.param]
Anders Carlssonce5635a2009-06-12 23:09:56 +0000372/// 'class' ...[opt][C++0x] identifier[opt]
Douglas Gregoradcac882008-12-01 23:54:00 +0000373/// 'class' identifier[opt] '=' type-id
Anders Carlssonce5635a2009-06-12 23:09:56 +0000374/// 'typename' ...[opt][C++0x] identifier[opt]
Douglas Gregoradcac882008-12-01 23:54:00 +0000375/// 'typename' identifier[opt] '=' type-id
Chris Lattnerb28317a2009-03-28 19:18:32 +0000376Parser::DeclPtrTy Parser::ParseTypeParameter(unsigned Depth, unsigned Position){
Douglas Gregor26236e82008-12-02 00:41:28 +0000377 assert((Tok.is(tok::kw_class) || Tok.is(tok::kw_typename)) &&
Mike Stump1eb44332009-09-09 15:08:12 +0000378 "A type-parameter starts with 'class' or 'typename'");
Douglas Gregor26236e82008-12-02 00:41:28 +0000379
380 // Consume the 'class' or 'typename' keyword.
381 bool TypenameKeyword = Tok.is(tok::kw_typename);
382 SourceLocation KeyLoc = ConsumeToken();
Douglas Gregoradcac882008-12-01 23:54:00 +0000383
Anders Carlsson941df7d2009-06-12 19:58:00 +0000384 // Grab the ellipsis (if given).
385 bool Ellipsis = false;
386 SourceLocation EllipsisLoc;
Anders Carlssonce5635a2009-06-12 23:09:56 +0000387 if (Tok.is(tok::ellipsis)) {
Anders Carlsson941df7d2009-06-12 19:58:00 +0000388 Ellipsis = true;
389 EllipsisLoc = ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +0000390
391 if (!getLang().CPlusPlus0x)
Anders Carlssonce5635a2009-06-12 23:09:56 +0000392 Diag(EllipsisLoc, diag::err_variadic_templates);
Anders Carlsson941df7d2009-06-12 19:58:00 +0000393 }
Mike Stump1eb44332009-09-09 15:08:12 +0000394
Douglas Gregoradcac882008-12-01 23:54:00 +0000395 // Grab the template parameter name (if given)
Douglas Gregor26236e82008-12-02 00:41:28 +0000396 SourceLocation NameLoc;
397 IdentifierInfo* ParamName = 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000398 if (Tok.is(tok::identifier)) {
Douglas Gregor26236e82008-12-02 00:41:28 +0000399 ParamName = Tok.getIdentifierInfo();
400 NameLoc = ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +0000401 } else if (Tok.is(tok::equal) || Tok.is(tok::comma) ||
402 Tok.is(tok::greater)) {
Douglas Gregoradcac882008-12-01 23:54:00 +0000403 // Unnamed template parameter. Don't have to do anything here, just
404 // don't consume this token.
405 } else {
406 Diag(Tok.getLocation(), diag::err_expected_ident);
Chris Lattnerb28317a2009-03-28 19:18:32 +0000407 return DeclPtrTy();
Douglas Gregoradcac882008-12-01 23:54:00 +0000408 }
Mike Stump1eb44332009-09-09 15:08:12 +0000409
Chris Lattnerb28317a2009-03-28 19:18:32 +0000410 DeclPtrTy TypeParam = Actions.ActOnTypeParameter(CurScope, TypenameKeyword,
Anders Carlsson941df7d2009-06-12 19:58:00 +0000411 Ellipsis, EllipsisLoc,
Chris Lattnerb28317a2009-03-28 19:18:32 +0000412 KeyLoc, ParamName, NameLoc,
413 Depth, Position);
Douglas Gregor26236e82008-12-02 00:41:28 +0000414
Douglas Gregoradcac882008-12-01 23:54:00 +0000415 // Grab a default type id (if given).
Mike Stump1eb44332009-09-09 15:08:12 +0000416 if (Tok.is(tok::equal)) {
Douglas Gregor26236e82008-12-02 00:41:28 +0000417 SourceLocation EqualLoc = ConsumeToken();
Douglas Gregord684b002009-02-10 19:49:53 +0000418 SourceLocation DefaultLoc = Tok.getLocation();
Douglas Gregor809070a2009-02-18 17:45:20 +0000419 TypeResult DefaultType = ParseTypeName();
420 if (!DefaultType.isInvalid())
Douglas Gregord684b002009-02-10 19:49:53 +0000421 Actions.ActOnTypeParameterDefault(TypeParam, EqualLoc, DefaultLoc,
Douglas Gregor809070a2009-02-18 17:45:20 +0000422 DefaultType.get());
Douglas Gregoradcac882008-12-01 23:54:00 +0000423 }
Mike Stump1eb44332009-09-09 15:08:12 +0000424
Douglas Gregor26236e82008-12-02 00:41:28 +0000425 return TypeParam;
Douglas Gregoradcac882008-12-01 23:54:00 +0000426}
427
428/// ParseTemplateTemplateParameter - Handle the parsing of template
Mike Stump1eb44332009-09-09 15:08:12 +0000429/// template parameters.
Douglas Gregoradcac882008-12-01 23:54:00 +0000430///
431/// type-parameter: [C++ temp.param]
432/// 'template' '<' template-parameter-list '>' 'class' identifier[opt]
433/// 'template' '<' template-parameter-list '>' 'class' identifier[opt] = id-expression
Chris Lattnerb28317a2009-03-28 19:18:32 +0000434Parser::DeclPtrTy
Douglas Gregorc4b4e7b2008-12-24 02:52:09 +0000435Parser::ParseTemplateTemplateParameter(unsigned Depth, unsigned Position) {
Douglas Gregoradcac882008-12-01 23:54:00 +0000436 assert(Tok.is(tok::kw_template) && "Expected 'template' keyword");
437
438 // Handle the template <...> part.
439 SourceLocation TemplateLoc = ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +0000440 TemplateParameterList TemplateParams;
Douglas Gregorddc29e12009-02-06 22:42:48 +0000441 SourceLocation LAngleLoc, RAngleLoc;
Douglas Gregor68c69932009-02-10 19:52:54 +0000442 {
443 ParseScope TemplateParmScope(this, Scope::TemplateParamScope);
Mike Stump1eb44332009-09-09 15:08:12 +0000444 if (ParseTemplateParameters(Depth + 1, TemplateParams, LAngleLoc,
Douglas Gregor7cdbc582009-07-22 23:48:44 +0000445 RAngleLoc)) {
Chris Lattnerb28317a2009-03-28 19:18:32 +0000446 return DeclPtrTy();
Douglas Gregor68c69932009-02-10 19:52:54 +0000447 }
Douglas Gregoradcac882008-12-01 23:54:00 +0000448 }
449
450 // Generate a meaningful error if the user forgot to put class before the
451 // identifier, comma, or greater.
Mike Stump1eb44332009-09-09 15:08:12 +0000452 if (!Tok.is(tok::kw_class)) {
453 Diag(Tok.getLocation(), diag::err_expected_class_before)
Douglas Gregoradcac882008-12-01 23:54:00 +0000454 << PP.getSpelling(Tok);
Chris Lattnerb28317a2009-03-28 19:18:32 +0000455 return DeclPtrTy();
Douglas Gregoradcac882008-12-01 23:54:00 +0000456 }
457 SourceLocation ClassLoc = ConsumeToken();
458
459 // Get the identifier, if given.
Douglas Gregoraaba5e32009-02-04 19:02:06 +0000460 SourceLocation NameLoc;
461 IdentifierInfo* ParamName = 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000462 if (Tok.is(tok::identifier)) {
Douglas Gregoraaba5e32009-02-04 19:02:06 +0000463 ParamName = Tok.getIdentifierInfo();
464 NameLoc = ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +0000465 } else if (Tok.is(tok::equal) || Tok.is(tok::comma) || Tok.is(tok::greater)) {
Douglas Gregoradcac882008-12-01 23:54:00 +0000466 // Unnamed template parameter. Don't have to do anything here, just
467 // don't consume this token.
468 } else {
469 Diag(Tok.getLocation(), diag::err_expected_ident);
Chris Lattnerb28317a2009-03-28 19:18:32 +0000470 return DeclPtrTy();
Douglas Gregoradcac882008-12-01 23:54:00 +0000471 }
472
Mike Stump1eb44332009-09-09 15:08:12 +0000473 TemplateParamsTy *ParamList =
Douglas Gregorddc29e12009-02-06 22:42:48 +0000474 Actions.ActOnTemplateParameterList(Depth, SourceLocation(),
475 TemplateLoc, LAngleLoc,
Mike Stump1eb44332009-09-09 15:08:12 +0000476 &TemplateParams[0],
Douglas Gregorddc29e12009-02-06 22:42:48 +0000477 TemplateParams.size(),
478 RAngleLoc);
479
Chris Lattnerb28317a2009-03-28 19:18:32 +0000480 Parser::DeclPtrTy Param
Douglas Gregord684b002009-02-10 19:49:53 +0000481 = Actions.ActOnTemplateTemplateParameter(CurScope, TemplateLoc,
482 ParamList, ParamName,
483 NameLoc, Depth, Position);
484
485 // Get the a default value, if given.
486 if (Tok.is(tok::equal)) {
487 SourceLocation EqualLoc = ConsumeToken();
Douglas Gregor788cd062009-11-11 01:00:40 +0000488 ParsedTemplateArgument Default = ParseTemplateTemplateArgument();
489 if (Default.isInvalid()) {
490 Diag(Tok.getLocation(),
491 diag::err_default_template_template_parameter_not_template);
492 static tok::TokenKind EndToks[] = {
493 tok::comma, tok::greater, tok::greatergreater
494 };
495 SkipUntil(EndToks, 3, true, true);
Douglas Gregord684b002009-02-10 19:49:53 +0000496 return Param;
Douglas Gregor788cd062009-11-11 01:00:40 +0000497 } else if (Param)
498 Actions.ActOnTemplateTemplateParameterDefault(Param, EqualLoc, Default);
Douglas Gregord684b002009-02-10 19:49:53 +0000499 }
500
501 return Param;
Douglas Gregoradcac882008-12-01 23:54:00 +0000502}
503
504/// ParseNonTypeTemplateParameter - Handle the parsing of non-type
Mike Stump1eb44332009-09-09 15:08:12 +0000505/// template parameters (e.g., in "template<int Size> class array;").
Douglas Gregord6fb7ef2008-12-18 19:37:40 +0000506///
Douglas Gregoradcac882008-12-01 23:54:00 +0000507/// template-parameter:
508/// ...
509/// parameter-declaration
510///
511/// NOTE: It would be ideal to simply call out to ParseParameterDeclaration(),
512/// but that didn't work out to well. Instead, this tries to recrate the basic
513/// parsing of parameter declarations, but tries to constrain it for template
514/// parameters.
Douglas Gregor26236e82008-12-02 00:41:28 +0000515/// FIXME: We need to make a ParseParameterDeclaration that works for
516/// non-type template parameters and normal function parameters.
Mike Stump1eb44332009-09-09 15:08:12 +0000517Parser::DeclPtrTy
Douglas Gregorc4b4e7b2008-12-24 02:52:09 +0000518Parser::ParseNonTypeTemplateParameter(unsigned Depth, unsigned Position) {
Douglas Gregor26236e82008-12-02 00:41:28 +0000519 SourceLocation StartLoc = Tok.getLocation();
Douglas Gregoradcac882008-12-01 23:54:00 +0000520
521 // Parse the declaration-specifiers (i.e., the type).
Douglas Gregor26236e82008-12-02 00:41:28 +0000522 // FIXME: The type should probably be restricted in some way... Not all
Douglas Gregoradcac882008-12-01 23:54:00 +0000523 // declarators (parts of declarators?) are accepted for parameters.
Douglas Gregor26236e82008-12-02 00:41:28 +0000524 DeclSpec DS;
525 ParseDeclarationSpecifiers(DS);
Douglas Gregoradcac882008-12-01 23:54:00 +0000526
527 // Parse this as a typename.
Douglas Gregor26236e82008-12-02 00:41:28 +0000528 Declarator ParamDecl(DS, Declarator::TemplateParamContext);
529 ParseDeclarator(ParamDecl);
Chris Lattner7452c6f2009-01-05 01:24:05 +0000530 if (DS.getTypeSpecType() == DeclSpec::TST_unspecified && !DS.getTypeRep()) {
Douglas Gregoradcac882008-12-01 23:54:00 +0000531 // This probably shouldn't happen - and it's more of a Sema thing, but
532 // basically we didn't parse the type name because we couldn't associate
533 // it with an AST node. we should just skip to the comma or greater.
534 // TODO: This is currently a placeholder for some kind of Sema Error.
535 Diag(Tok.getLocation(), diag::err_parse_error);
536 SkipUntil(tok::comma, tok::greater, true, true);
Chris Lattnerb28317a2009-03-28 19:18:32 +0000537 return DeclPtrTy();
Douglas Gregoradcac882008-12-01 23:54:00 +0000538 }
539
Mike Stump1eb44332009-09-09 15:08:12 +0000540 // Create the parameter.
Chris Lattnerb28317a2009-03-28 19:18:32 +0000541 DeclPtrTy Param = Actions.ActOnNonTypeTemplateParameter(CurScope, ParamDecl,
542 Depth, Position);
Douglas Gregoradcac882008-12-01 23:54:00 +0000543
Douglas Gregord684b002009-02-10 19:49:53 +0000544 // If there is a default value, parse it.
Chris Lattner7452c6f2009-01-05 01:24:05 +0000545 if (Tok.is(tok::equal)) {
Douglas Gregord684b002009-02-10 19:49:53 +0000546 SourceLocation EqualLoc = ConsumeToken();
547
548 // C++ [temp.param]p15:
549 // When parsing a default template-argument for a non-type
550 // template-parameter, the first non-nested > is taken as the
551 // end of the template-parameter-list rather than a greater-than
552 // operator.
Mike Stump1eb44332009-09-09 15:08:12 +0000553 GreaterThanIsOperatorScope G(GreaterThanIsOperator, false);
Douglas Gregord684b002009-02-10 19:49:53 +0000554
555 OwningExprResult DefaultArg = ParseAssignmentExpression();
556 if (DefaultArg.isInvalid())
557 SkipUntil(tok::comma, tok::greater, true, true);
558 else if (Param)
Mike Stump1eb44332009-09-09 15:08:12 +0000559 Actions.ActOnNonTypeTemplateParameterDefault(Param, EqualLoc,
Douglas Gregord684b002009-02-10 19:49:53 +0000560 move(DefaultArg));
Douglas Gregoradcac882008-12-01 23:54:00 +0000561 }
Mike Stump1eb44332009-09-09 15:08:12 +0000562
Douglas Gregor26236e82008-12-02 00:41:28 +0000563 return Param;
Douglas Gregoradcac882008-12-01 23:54:00 +0000564}
Douglas Gregord6fb7ef2008-12-18 19:37:40 +0000565
Douglas Gregorcc636682009-02-17 23:15:12 +0000566/// \brief Parses a template-id that after the template name has
567/// already been parsed.
568///
569/// This routine takes care of parsing the enclosed template argument
570/// list ('<' template-parameter-list [opt] '>') and placing the
571/// results into a form that can be transferred to semantic analysis.
572///
573/// \param Template the template declaration produced by isTemplateName
574///
575/// \param TemplateNameLoc the source location of the template name
576///
577/// \param SS if non-NULL, the nested-name-specifier preceding the
578/// template name.
579///
580/// \param ConsumeLastToken if true, then we will consume the last
581/// token that forms the template-id. Otherwise, we will leave the
582/// last token in the stream (e.g., so that it can be replaced with an
583/// annotation token).
Mike Stump1eb44332009-09-09 15:08:12 +0000584bool
Douglas Gregor7532dc62009-03-30 22:58:21 +0000585Parser::ParseTemplateIdAfterTemplateName(TemplateTy Template,
Mike Stump1eb44332009-09-09 15:08:12 +0000586 SourceLocation TemplateNameLoc,
Douglas Gregorcc636682009-02-17 23:15:12 +0000587 const CXXScopeSpec *SS,
588 bool ConsumeLastToken,
589 SourceLocation &LAngleLoc,
590 TemplateArgList &TemplateArgs,
Douglas Gregorcc636682009-02-17 23:15:12 +0000591 SourceLocation &RAngleLoc) {
592 assert(Tok.is(tok::less) && "Must have already parsed the template-name");
593
594 // Consume the '<'.
595 LAngleLoc = ConsumeToken();
596
597 // Parse the optional template-argument-list.
598 bool Invalid = false;
599 {
600 GreaterThanIsOperatorScope G(GreaterThanIsOperator, false);
601 if (Tok.isNot(tok::greater))
Douglas Gregor314b97f2009-11-10 19:49:08 +0000602 Invalid = ParseTemplateArgumentList(TemplateArgs);
Douglas Gregorcc636682009-02-17 23:15:12 +0000603
604 if (Invalid) {
605 // Try to find the closing '>'.
606 SkipUntil(tok::greater, true, !ConsumeLastToken);
607
608 return true;
609 }
610 }
611
Douglas Gregor3965b7b2009-02-25 23:02:36 +0000612 if (Tok.isNot(tok::greater) && Tok.isNot(tok::greatergreater))
Douglas Gregorcc636682009-02-17 23:15:12 +0000613 return true;
614
Douglas Gregor3965b7b2009-02-25 23:02:36 +0000615 // Determine the location of the '>' or '>>'. Only consume this
616 // token if the caller asked us to.
Douglas Gregorcc636682009-02-17 23:15:12 +0000617 RAngleLoc = Tok.getLocation();
618
Douglas Gregor3965b7b2009-02-25 23:02:36 +0000619 if (Tok.is(tok::greatergreater)) {
Douglas Gregor4b2d3f72009-02-26 21:00:50 +0000620 if (!getLang().CPlusPlus0x) {
621 const char *ReplaceStr = "> >";
622 if (NextToken().is(tok::greater) || NextToken().is(tok::greatergreater))
623 ReplaceStr = "> > ";
624
625 Diag(Tok.getLocation(), diag::err_two_right_angle_brackets_need_space)
Douglas Gregorb2fb6de2009-02-27 17:53:17 +0000626 << CodeModificationHint::CreateReplacement(
627 SourceRange(Tok.getLocation()), ReplaceStr);
Douglas Gregor4b2d3f72009-02-26 21:00:50 +0000628 }
Douglas Gregor3965b7b2009-02-25 23:02:36 +0000629
630 Tok.setKind(tok::greater);
631 if (!ConsumeLastToken) {
632 // Since we're not supposed to consume the '>>' token, we need
633 // to insert a second '>' token after the first.
634 PP.EnterToken(Tok);
635 }
636 } else if (ConsumeLastToken)
Douglas Gregorcc636682009-02-17 23:15:12 +0000637 ConsumeToken();
638
639 return false;
640}
Mike Stump1eb44332009-09-09 15:08:12 +0000641
Douglas Gregor39a8de12009-02-25 19:37:18 +0000642/// \brief Replace the tokens that form a simple-template-id with an
643/// annotation token containing the complete template-id.
644///
645/// The first token in the stream must be the name of a template that
646/// is followed by a '<'. This routine will parse the complete
647/// simple-template-id and replace the tokens with a single annotation
648/// token with one of two different kinds: if the template-id names a
649/// type (and \p AllowTypeAnnotation is true), the annotation token is
650/// a type annotation that includes the optional nested-name-specifier
651/// (\p SS). Otherwise, the annotation token is a template-id
652/// annotation that does not include the optional
653/// nested-name-specifier.
654///
655/// \param Template the declaration of the template named by the first
656/// token (an identifier), as returned from \c Action::isTemplateName().
657///
658/// \param TemplateNameKind the kind of template that \p Template
659/// refers to, as returned from \c Action::isTemplateName().
660///
661/// \param SS if non-NULL, the nested-name-specifier that precedes
662/// this template name.
663///
664/// \param TemplateKWLoc if valid, specifies that this template-id
665/// annotation was preceded by the 'template' keyword and gives the
666/// location of that keyword. If invalid (the default), then this
667/// template-id was not preceded by a 'template' keyword.
668///
669/// \param AllowTypeAnnotation if true (the default), then a
670/// simple-template-id that refers to a class template, template
671/// template parameter, or other template that produces a type will be
672/// replaced with a type annotation token. Otherwise, the
673/// simple-template-id is always replaced with a template-id
674/// annotation token.
Chris Lattnerc8e27cc2009-06-26 04:27:47 +0000675///
676/// If an unrecoverable parse error occurs and no annotation token can be
677/// formed, this function returns true.
678///
679bool Parser::AnnotateTemplateIdToken(TemplateTy Template, TemplateNameKind TNK,
Mike Stump1eb44332009-09-09 15:08:12 +0000680 const CXXScopeSpec *SS,
Douglas Gregorca1bdd72009-11-04 00:56:37 +0000681 UnqualifiedId &TemplateName,
Douglas Gregor39a8de12009-02-25 19:37:18 +0000682 SourceLocation TemplateKWLoc,
683 bool AllowTypeAnnotation) {
Douglas Gregord6fb7ef2008-12-18 19:37:40 +0000684 assert(getLang().CPlusPlus && "Can only annotate template-ids in C++");
Douglas Gregorca1bdd72009-11-04 00:56:37 +0000685 assert(Template && Tok.is(tok::less) &&
Douglas Gregord6fb7ef2008-12-18 19:37:40 +0000686 "Parser isn't at the beginning of a template-id");
687
688 // Consume the template-name.
Douglas Gregorca1bdd72009-11-04 00:56:37 +0000689 SourceLocation TemplateNameLoc = TemplateName.getSourceRange().getBegin();
Douglas Gregord6fb7ef2008-12-18 19:37:40 +0000690
Douglas Gregorcc636682009-02-17 23:15:12 +0000691 // Parse the enclosed template argument list.
692 SourceLocation LAngleLoc, RAngleLoc;
Douglas Gregor5908e9f2009-02-09 19:34:22 +0000693 TemplateArgList TemplateArgs;
Douglas Gregorca1bdd72009-11-04 00:56:37 +0000694 bool Invalid = ParseTemplateIdAfterTemplateName(Template,
695 TemplateNameLoc,
Mike Stump1eb44332009-09-09 15:08:12 +0000696 SS, false, LAngleLoc,
697 TemplateArgs,
Douglas Gregorcc636682009-02-17 23:15:12 +0000698 RAngleLoc);
Mike Stump1eb44332009-09-09 15:08:12 +0000699
Chris Lattnerc8e27cc2009-06-26 04:27:47 +0000700 if (Invalid) {
701 // If we failed to parse the template ID but skipped ahead to a >, we're not
702 // going to be able to form a token annotation. Eat the '>' if present.
703 if (Tok.is(tok::greater))
704 ConsumeToken();
705 return true;
706 }
Douglas Gregorc15cb382009-02-09 23:23:08 +0000707
Jay Foadbeaaccd2009-05-21 09:52:38 +0000708 ASTTemplateArgsPtr TemplateArgsPtr(Actions, TemplateArgs.data(),
Douglas Gregorcc636682009-02-17 23:15:12 +0000709 TemplateArgs.size());
Douglas Gregorf02da892009-02-09 21:04:56 +0000710
Douglas Gregor55f6b142009-02-09 18:46:07 +0000711 // Build the annotation token.
Douglas Gregorc45c2322009-03-31 00:43:58 +0000712 if (TNK == TNK_Type_template && AllowTypeAnnotation) {
Mike Stump1eb44332009-09-09 15:08:12 +0000713 Action::TypeResult Type
Douglas Gregor7532dc62009-03-30 22:58:21 +0000714 = Actions.ActOnTemplateIdType(Template, TemplateNameLoc,
715 LAngleLoc, TemplateArgsPtr,
Douglas Gregor7532dc62009-03-30 22:58:21 +0000716 RAngleLoc);
Chris Lattnerc8e27cc2009-06-26 04:27:47 +0000717 if (Type.isInvalid()) {
718 // If we failed to parse the template ID but skipped ahead to a >, we're not
719 // going to be able to form a token annotation. Eat the '>' if present.
720 if (Tok.is(tok::greater))
721 ConsumeToken();
722 return true;
723 }
Douglas Gregorcc636682009-02-17 23:15:12 +0000724
725 Tok.setKind(tok::annot_typename);
726 Tok.setAnnotationValue(Type.get());
Douglas Gregor39a8de12009-02-25 19:37:18 +0000727 if (SS && SS->isNotEmpty())
728 Tok.setLocation(SS->getBeginLoc());
729 else if (TemplateKWLoc.isValid())
730 Tok.setLocation(TemplateKWLoc);
Mike Stump1eb44332009-09-09 15:08:12 +0000731 else
Douglas Gregor39a8de12009-02-25 19:37:18 +0000732 Tok.setLocation(TemplateNameLoc);
Douglas Gregorcc636682009-02-17 23:15:12 +0000733 } else {
Douglas Gregorc45c2322009-03-31 00:43:58 +0000734 // Build a template-id annotation token that can be processed
735 // later.
Douglas Gregor39a8de12009-02-25 19:37:18 +0000736 Tok.setKind(tok::annot_template_id);
Mike Stump1eb44332009-09-09 15:08:12 +0000737 TemplateIdAnnotation *TemplateId
Douglas Gregor39a8de12009-02-25 19:37:18 +0000738 = TemplateIdAnnotation::Allocate(TemplateArgs.size());
Douglas Gregor55f6b142009-02-09 18:46:07 +0000739 TemplateId->TemplateNameLoc = TemplateNameLoc;
Douglas Gregorca1bdd72009-11-04 00:56:37 +0000740 if (TemplateName.getKind() == UnqualifiedId::IK_Identifier) {
741 TemplateId->Name = TemplateName.Identifier;
742 TemplateId->Operator = OO_None;
743 } else {
744 TemplateId->Name = 0;
745 TemplateId->Operator = TemplateName.OperatorFunctionId.Operator;
746 }
Chris Lattnerb28317a2009-03-28 19:18:32 +0000747 TemplateId->Template = Template.getAs<void*>();
Douglas Gregor39a8de12009-02-25 19:37:18 +0000748 TemplateId->Kind = TNK;
Douglas Gregor55f6b142009-02-09 18:46:07 +0000749 TemplateId->LAngleLoc = LAngleLoc;
Douglas Gregor39a8de12009-02-25 19:37:18 +0000750 TemplateId->RAngleLoc = RAngleLoc;
Douglas Gregor314b97f2009-11-10 19:49:08 +0000751 ParsedTemplateArgument *Args = TemplateId->getTemplateArgs();
752 for (unsigned Arg = 0, ArgEnd = TemplateArgs.size(); Arg != ArgEnd; ++Arg)
Douglas Gregor55f6b142009-02-09 18:46:07 +0000753 Args[Arg] = TemplateArgs[Arg];
754 Tok.setAnnotationValue(TemplateId);
Douglas Gregor39a8de12009-02-25 19:37:18 +0000755 if (TemplateKWLoc.isValid())
756 Tok.setLocation(TemplateKWLoc);
757 else
758 Tok.setLocation(TemplateNameLoc);
759
760 TemplateArgsPtr.release();
Douglas Gregor55f6b142009-02-09 18:46:07 +0000761 }
762
763 // Common fields for the annotation token
Douglas Gregord6fb7ef2008-12-18 19:37:40 +0000764 Tok.setAnnotationEndLoc(RAngleLoc);
Douglas Gregord6fb7ef2008-12-18 19:37:40 +0000765
Douglas Gregord6fb7ef2008-12-18 19:37:40 +0000766 // In case the tokens were cached, have Preprocessor replace them with the
767 // annotation token.
768 PP.AnnotateCachedTokens(Tok);
Chris Lattnerc8e27cc2009-06-26 04:27:47 +0000769 return false;
Douglas Gregord6fb7ef2008-12-18 19:37:40 +0000770}
771
Douglas Gregor39a8de12009-02-25 19:37:18 +0000772/// \brief Replaces a template-id annotation token with a type
773/// annotation token.
774///
Douglas Gregor31a19b62009-04-01 21:51:26 +0000775/// If there was a failure when forming the type from the template-id,
776/// a type annotation token will still be created, but will have a
777/// NULL type pointer to signify an error.
778void Parser::AnnotateTemplateIdTokenAsType(const CXXScopeSpec *SS) {
Douglas Gregor39a8de12009-02-25 19:37:18 +0000779 assert(Tok.is(tok::annot_template_id) && "Requires template-id tokens");
780
Mike Stump1eb44332009-09-09 15:08:12 +0000781 TemplateIdAnnotation *TemplateId
Douglas Gregor39a8de12009-02-25 19:37:18 +0000782 = static_cast<TemplateIdAnnotation *>(Tok.getAnnotationValue());
Douglas Gregorc45c2322009-03-31 00:43:58 +0000783 assert((TemplateId->Kind == TNK_Type_template ||
784 TemplateId->Kind == TNK_Dependent_template_name) &&
785 "Only works for type and dependent templates");
Mike Stump1eb44332009-09-09 15:08:12 +0000786
787 ASTTemplateArgsPtr TemplateArgsPtr(Actions,
Douglas Gregor39a8de12009-02-25 19:37:18 +0000788 TemplateId->getTemplateArgs(),
Douglas Gregor39a8de12009-02-25 19:37:18 +0000789 TemplateId->NumArgs);
790
Mike Stump1eb44332009-09-09 15:08:12 +0000791 Action::TypeResult Type
Douglas Gregor7532dc62009-03-30 22:58:21 +0000792 = Actions.ActOnTemplateIdType(TemplateTy::make(TemplateId->Template),
793 TemplateId->TemplateNameLoc,
Mike Stump1eb44332009-09-09 15:08:12 +0000794 TemplateId->LAngleLoc,
Douglas Gregor7532dc62009-03-30 22:58:21 +0000795 TemplateArgsPtr,
Douglas Gregor7532dc62009-03-30 22:58:21 +0000796 TemplateId->RAngleLoc);
Douglas Gregor39a8de12009-02-25 19:37:18 +0000797 // Create the new "type" annotation token.
798 Tok.setKind(tok::annot_typename);
Douglas Gregor31a19b62009-04-01 21:51:26 +0000799 Tok.setAnnotationValue(Type.isInvalid()? 0 : Type.get());
Douglas Gregor39a8de12009-02-25 19:37:18 +0000800 if (SS && SS->isNotEmpty()) // it was a C++ qualified type name.
801 Tok.setLocation(SS->getBeginLoc());
Douglas Gregor86235412009-11-04 18:18:19 +0000802 Tok.setAnnotationEndLoc(TemplateId->TemplateNameLoc);
Douglas Gregor39a8de12009-02-25 19:37:18 +0000803
Douglas Gregor86235412009-11-04 18:18:19 +0000804 // Replace the template-id annotation token, and possible the scope-specifier
805 // that precedes it, with the typename annotation token.
806 PP.AnnotateCachedTokens(Tok);
Douglas Gregor39a8de12009-02-25 19:37:18 +0000807 TemplateId->Destroy();
Douglas Gregor39a8de12009-02-25 19:37:18 +0000808}
809
Douglas Gregor314b97f2009-11-10 19:49:08 +0000810/// \brief Determine whether the given token can end a template argument.
Benjamin Kramer3a4a2b32009-11-10 21:29:56 +0000811static bool isEndOfTemplateArgument(Token Tok) {
Douglas Gregor314b97f2009-11-10 19:49:08 +0000812 return Tok.is(tok::comma) || Tok.is(tok::greater) ||
813 Tok.is(tok::greatergreater);
814}
815
Douglas Gregor788cd062009-11-11 01:00:40 +0000816/// \brief Parse a C++ template template argument.
817ParsedTemplateArgument Parser::ParseTemplateTemplateArgument() {
818 if (!Tok.is(tok::identifier) && !Tok.is(tok::coloncolon) &&
819 !Tok.is(tok::annot_cxxscope))
820 return ParsedTemplateArgument();
821
822 // C++0x [temp.arg.template]p1:
823 // A template-argument for a template template-parameter shall be the name
824 // of a class template or a template alias, expressed as id-expression.
825 //
Douglas Gregoreaf75f42009-11-12 00:03:40 +0000826 // We parse an id-expression that refers to a class template or template
827 // alias. The grammar we parse is:
Douglas Gregor788cd062009-11-11 01:00:40 +0000828 //
829 // nested-name-specifier[opt] template[opt] identifier
830 //
831 // followed by a token that terminates a template argument, such as ',',
832 // '>', or (in some cases) '>>'.
Douglas Gregor788cd062009-11-11 01:00:40 +0000833 CXXScopeSpec SS; // nested-name-specifier, if present
834 ParseOptionalCXXScopeSpecifier(SS, /*ObjectType=*/0,
835 /*EnteringContext=*/false);
836
837 if (SS.isSet() && Tok.is(tok::kw_template)) {
838 // Parse the optional 'template' keyword following the
839 // nested-name-specifier.
840 SourceLocation TemplateLoc = ConsumeToken();
841
842 if (Tok.is(tok::identifier)) {
843 // We appear to have a dependent template name.
844 UnqualifiedId Name;
845 Name.setIdentifier(Tok.getIdentifierInfo(), Tok.getLocation());
846 ConsumeToken(); // the identifier
847
848 // If the next token signals the end of a template argument,
849 // then we have a dependent template name that could be a template
850 // template argument.
851 if (isEndOfTemplateArgument(Tok)) {
852 TemplateTy Template
853 = Actions.ActOnDependentTemplateName(TemplateLoc, SS, Name,
Douglas Gregora481edb2009-11-20 23:39:24 +0000854 /*ObjectType=*/0,
855 /*EnteringContext=*/false);
Douglas Gregoreaf75f42009-11-12 00:03:40 +0000856 if (Template.get())
Douglas Gregor788cd062009-11-11 01:00:40 +0000857 return ParsedTemplateArgument(SS, Template, Name.StartLocation);
Douglas Gregor788cd062009-11-11 01:00:40 +0000858 }
859 }
860 } else if (Tok.is(tok::identifier)) {
861 // We may have a (non-dependent) template name.
862 TemplateTy Template;
863 UnqualifiedId Name;
864 Name.setIdentifier(Tok.getIdentifierInfo(), Tok.getLocation());
865 ConsumeToken(); // the identifier
866
867 if (isEndOfTemplateArgument(Tok)) {
868 TemplateNameKind TNK = Actions.isTemplateName(CurScope, SS, Name,
869 /*ObjectType=*/0,
870 /*EnteringContext=*/false,
871 Template);
872 if (TNK == TNK_Dependent_template_name || TNK == TNK_Type_template) {
873 // We have an id-expression that refers to a class template or
874 // (C++0x) template alias.
Douglas Gregor788cd062009-11-11 01:00:40 +0000875 return ParsedTemplateArgument(SS, Template, Name.StartLocation);
876 }
877 }
878 }
879
Douglas Gregoreaf75f42009-11-12 00:03:40 +0000880 // We don't have a template template argument.
Douglas Gregor788cd062009-11-11 01:00:40 +0000881 return ParsedTemplateArgument();
882}
883
Douglas Gregord6fb7ef2008-12-18 19:37:40 +0000884/// ParseTemplateArgument - Parse a C++ template argument (C++ [temp.names]).
885///
886/// template-argument: [C++ 14.2]
Douglas Gregorac7610d2009-06-22 20:57:11 +0000887/// constant-expression
Douglas Gregord6fb7ef2008-12-18 19:37:40 +0000888/// type-id
889/// id-expression
Douglas Gregor314b97f2009-11-10 19:49:08 +0000890ParsedTemplateArgument Parser::ParseTemplateArgument() {
Douglas Gregor55f6b142009-02-09 18:46:07 +0000891 // C++ [temp.arg]p2:
892 // In a template-argument, an ambiguity between a type-id and an
893 // expression is resolved to a type-id, regardless of the form of
894 // the corresponding template-parameter.
895 //
Douglas Gregor314b97f2009-11-10 19:49:08 +0000896 // Therefore, we initially try to parse a type-id.
Douglas Gregor8b642592009-02-10 00:53:15 +0000897 if (isCXXTypeId(TypeIdAsTemplateArgument)) {
Douglas Gregor314b97f2009-11-10 19:49:08 +0000898 SourceLocation Loc = Tok.getLocation();
Douglas Gregor809070a2009-02-18 17:45:20 +0000899 TypeResult TypeArg = ParseTypeName();
900 if (TypeArg.isInvalid())
Douglas Gregor314b97f2009-11-10 19:49:08 +0000901 return ParsedTemplateArgument();
902
903 return ParsedTemplateArgument(ParsedTemplateArgument::Type, TypeArg.get(),
904 Loc);
Douglas Gregor55f6b142009-02-09 18:46:07 +0000905 }
Douglas Gregor788cd062009-11-11 01:00:40 +0000906
907 // Try to parse a template template argument.
Douglas Gregoreaf75f42009-11-12 00:03:40 +0000908 {
909 TentativeParsingAction TPA(*this);
910
911 ParsedTemplateArgument TemplateTemplateArgument
912 = ParseTemplateTemplateArgument();
913 if (!TemplateTemplateArgument.isInvalid()) {
914 TPA.Commit();
915 return TemplateTemplateArgument;
916 }
917
918 // Revert this tentative parse to parse a non-type template argument.
919 TPA.Revert();
920 }
Douglas Gregor314b97f2009-11-10 19:49:08 +0000921
922 // Parse a non-type template argument.
923 SourceLocation Loc = Tok.getLocation();
Douglas Gregorac7610d2009-06-22 20:57:11 +0000924 OwningExprResult ExprArg = ParseConstantExpression();
Douglas Gregorc15cb382009-02-09 23:23:08 +0000925 if (ExprArg.isInvalid() || !ExprArg.get())
Douglas Gregor314b97f2009-11-10 19:49:08 +0000926 return ParsedTemplateArgument();
Douglas Gregor55f6b142009-02-09 18:46:07 +0000927
Douglas Gregor314b97f2009-11-10 19:49:08 +0000928 return ParsedTemplateArgument(ParsedTemplateArgument::NonType,
929 ExprArg.release(), Loc);
Douglas Gregord6fb7ef2008-12-18 19:37:40 +0000930}
931
932/// ParseTemplateArgumentList - Parse a C++ template-argument-list
933/// (C++ [temp.names]). Returns true if there was an error.
934///
935/// template-argument-list: [C++ 14.2]
936/// template-argument
937/// template-argument-list ',' template-argument
Mike Stump1eb44332009-09-09 15:08:12 +0000938bool
Douglas Gregor314b97f2009-11-10 19:49:08 +0000939Parser::ParseTemplateArgumentList(TemplateArgList &TemplateArgs) {
Douglas Gregord6fb7ef2008-12-18 19:37:40 +0000940 while (true) {
Douglas Gregor314b97f2009-11-10 19:49:08 +0000941 ParsedTemplateArgument Arg = ParseTemplateArgument();
942 if (Arg.isInvalid()) {
Douglas Gregord6fb7ef2008-12-18 19:37:40 +0000943 SkipUntil(tok::comma, tok::greater, true, true);
944 return true;
945 }
Douglas Gregor5908e9f2009-02-09 19:34:22 +0000946
Douglas Gregor314b97f2009-11-10 19:49:08 +0000947 // Save this template argument.
948 TemplateArgs.push_back(Arg);
949
Douglas Gregord6fb7ef2008-12-18 19:37:40 +0000950 // If the next token is a comma, consume it and keep reading
951 // arguments.
952 if (Tok.isNot(tok::comma)) break;
953
954 // Consume the comma.
955 ConsumeToken();
956 }
957
Douglas Gregor3965b7b2009-02-25 23:02:36 +0000958 return Tok.isNot(tok::greater) && Tok.isNot(tok::greatergreater);
Douglas Gregord6fb7ef2008-12-18 19:37:40 +0000959}
960
Mike Stump1eb44332009-09-09 15:08:12 +0000961/// \brief Parse a C++ explicit template instantiation
Douglas Gregor1426e532009-05-12 21:31:51 +0000962/// (C++ [temp.explicit]).
963///
964/// explicit-instantiation:
Douglas Gregor45f96552009-09-04 06:33:52 +0000965/// 'extern' [opt] 'template' declaration
966///
967/// Note that the 'extern' is a GNU extension and C++0x feature.
Mike Stump1eb44332009-09-09 15:08:12 +0000968Parser::DeclPtrTy
Douglas Gregor45f96552009-09-04 06:33:52 +0000969Parser::ParseExplicitInstantiation(SourceLocation ExternLoc,
970 SourceLocation TemplateLoc,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000971 SourceLocation &DeclEnd) {
Mike Stump1eb44332009-09-09 15:08:12 +0000972 return ParseSingleDeclarationAfterTemplate(Declarator::FileContext,
Douglas Gregor45f96552009-09-04 06:33:52 +0000973 ParsedTemplateInfo(ExternLoc,
974 TemplateLoc),
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000975 DeclEnd, AS_none);
Douglas Gregor1426e532009-05-12 21:31:51 +0000976}