blob: 88a5745350d6d45da1b7ea0e4f2989309af926e7 [file] [log] [blame]
Faisal Vali6a79ca12013-06-08 19:39: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
Richard Smithb0b68012015-05-11 23:09:06 +000014#include "clang/AST/ASTContext.h"
Faisal Vali6a79ca12013-06-08 19:39:00 +000015#include "clang/AST/DeclTemplate.h"
16#include "clang/Parse/ParseDiagnostic.h"
Mehdi Amini9670f842016-07-18 19:02:11 +000017#include "clang/Parse/Parser.h"
Vassil Vassilev11ad3392017-03-23 15:11:07 +000018#include "clang/Parse/RAIIObjectsForParser.h"
Faisal Vali6a79ca12013-06-08 19:39:00 +000019#include "clang/Sema/DeclSpec.h"
20#include "clang/Sema/ParsedTemplate.h"
21#include "clang/Sema/Scope.h"
22using namespace clang;
23
24/// \brief Parse a template declaration, explicit instantiation, or
25/// explicit specialization.
26Decl *
Faisal Vali421b2d12017-12-29 05:41:00 +000027Parser::ParseDeclarationStartingWithTemplate(DeclaratorContext Context,
Faisal Vali6a79ca12013-06-08 19:39:00 +000028 SourceLocation &DeclEnd,
29 AccessSpecifier AS,
30 AttributeList *AccessAttrs) {
31 ObjCDeclContextSwitch ObjCDC(*this);
32
33 if (Tok.is(tok::kw_template) && NextToken().isNot(tok::less)) {
34 return ParseExplicitInstantiation(Context,
35 SourceLocation(), ConsumeToken(),
36 DeclEnd, AS);
37 }
38 return ParseTemplateDeclarationOrSpecialization(Context, DeclEnd, AS,
39 AccessAttrs);
40}
41
42
43
44/// \brief Parse a template declaration or an explicit specialization.
45///
46/// Template declarations include one or more template parameter lists
47/// and either the function or class template declaration. Explicit
48/// specializations contain one or more 'template < >' prefixes
49/// followed by a (possibly templated) declaration. Since the
50/// syntactic form of both features is nearly identical, we parse all
51/// of the template headers together and let semantic analysis sort
52/// the declarations from the explicit specializations.
53///
54/// template-declaration: [C++ temp]
55/// 'export'[opt] 'template' '<' template-parameter-list '>' declaration
56///
57/// explicit-specialization: [ C++ temp.expl.spec]
58/// 'template' '<' '>' declaration
59Decl *
Faisal Vali421b2d12017-12-29 05:41:00 +000060Parser::ParseTemplateDeclarationOrSpecialization(DeclaratorContext Context,
Faisal Vali6a79ca12013-06-08 19:39:00 +000061 SourceLocation &DeclEnd,
62 AccessSpecifier AS,
63 AttributeList *AccessAttrs) {
Daniel Marjamakie59f8d72015-06-18 10:59:26 +000064 assert(Tok.isOneOf(tok::kw_export, tok::kw_template) &&
Faisal Vali6a79ca12013-06-08 19:39:00 +000065 "Token does not start a template declaration.");
66
67 // Enter template-parameter scope.
68 ParseScope TemplateParmScope(this, Scope::TemplateParamScope);
69
70 // Tell the action that names should be checked in the context of
71 // the declaration to come.
72 ParsingDeclRAIIObject
73 ParsingTemplateParams(*this, ParsingDeclRAIIObject::NoParent);
74
75 // Parse multiple levels of template headers within this template
76 // parameter scope, e.g.,
77 //
78 // template<typename T>
79 // template<typename U>
80 // class A<T>::B { ... };
81 //
82 // We parse multiple levels non-recursively so that we can build a
83 // single data structure containing all of the template parameter
84 // lists to easily differentiate between the case above and:
85 //
86 // template<typename T>
87 // class A {
88 // template<typename U> class B;
89 // };
90 //
91 // In the first case, the action for declaring A<T>::B receives
92 // both template parameter lists. In the second case, the action for
93 // defining A<T>::B receives just the inner template parameter list
94 // (and retrieves the outer template parameter list from its
95 // context).
96 bool isSpecialization = true;
97 bool LastParamListWasEmpty = false;
98 TemplateParameterLists ParamLists;
99 TemplateParameterDepthRAII CurTemplateDepthTracker(TemplateParameterDepth);
100
101 do {
102 // Consume the 'export', if any.
103 SourceLocation ExportLoc;
Alp Tokera3ebe6e2013-12-17 14:12:37 +0000104 TryConsumeToken(tok::kw_export, ExportLoc);
Faisal Vali6a79ca12013-06-08 19:39:00 +0000105
106 // Consume the 'template', which should be here.
107 SourceLocation TemplateLoc;
Alp Tokera3ebe6e2013-12-17 14:12:37 +0000108 if (!TryConsumeToken(tok::kw_template, TemplateLoc)) {
Faisal Vali6a79ca12013-06-08 19:39:00 +0000109 Diag(Tok.getLocation(), diag::err_expected_template);
Craig Topper161e4db2014-05-21 06:02:52 +0000110 return nullptr;
Faisal Vali6a79ca12013-06-08 19:39:00 +0000111 }
112
113 // Parse the '<' template-parameter-list '>'
114 SourceLocation LAngleLoc, RAngleLoc;
Faisal Valif241b0d2017-08-25 18:24:20 +0000115 SmallVector<NamedDecl*, 4> TemplateParams;
Faisal Vali6a79ca12013-06-08 19:39:00 +0000116 if (ParseTemplateParameters(CurTemplateDepthTracker.getDepth(),
117 TemplateParams, LAngleLoc, RAngleLoc)) {
Hubert Tongec3cb572015-06-25 00:23:39 +0000118 // Skip until the semi-colon or a '}'.
Alexey Bataevee6507d2013-11-18 08:17:37 +0000119 SkipUntil(tok::r_brace, StopAtSemi | StopBeforeMatch);
Alp Tokera3ebe6e2013-12-17 14:12:37 +0000120 TryConsumeToken(tok::semi);
Craig Topper161e4db2014-05-21 06:02:52 +0000121 return nullptr;
Faisal Vali6a79ca12013-06-08 19:39:00 +0000122 }
123
Hubert Tongf608c052016-04-29 18:05:37 +0000124 ExprResult OptionalRequiresClauseConstraintER;
Faisal Vali6a79ca12013-06-08 19:39:00 +0000125 if (!TemplateParams.empty()) {
126 isSpecialization = false;
127 ++CurTemplateDepthTracker;
Hubert Tongec3cb572015-06-25 00:23:39 +0000128
129 if (TryConsumeToken(tok::kw_requires)) {
Hubert Tongf608c052016-04-29 18:05:37 +0000130 OptionalRequiresClauseConstraintER =
Hubert Tongec3cb572015-06-25 00:23:39 +0000131 Actions.CorrectDelayedTyposInExpr(ParseConstraintExpression());
Hubert Tongf608c052016-04-29 18:05:37 +0000132 if (!OptionalRequiresClauseConstraintER.isUsable()) {
Hubert Tongec3cb572015-06-25 00:23:39 +0000133 // Skip until the semi-colon or a '}'.
134 SkipUntil(tok::r_brace, StopAtSemi | StopBeforeMatch);
135 TryConsumeToken(tok::semi);
136 return nullptr;
137 }
138 }
Faisal Vali6a79ca12013-06-08 19:39:00 +0000139 } else {
140 LastParamListWasEmpty = true;
141 }
Hubert Tongf608c052016-04-29 18:05:37 +0000142
143 ParamLists.push_back(Actions.ActOnTemplateParameterList(
144 CurTemplateDepthTracker.getDepth(), ExportLoc, TemplateLoc, LAngleLoc,
145 TemplateParams, RAngleLoc, OptionalRequiresClauseConstraintER.get()));
Daniel Marjamakie59f8d72015-06-18 10:59:26 +0000146 } while (Tok.isOneOf(tok::kw_export, tok::kw_template));
Faisal Vali6a79ca12013-06-08 19:39:00 +0000147
Akira Hatanaka10aced82016-04-29 02:24:14 +0000148 unsigned NewFlags = getCurScope()->getFlags() & ~Scope::TemplateParamScope;
149 ParseScopeFlags TemplateScopeFlags(this, NewFlags, isSpecialization);
150
Faisal Vali6a79ca12013-06-08 19:39:00 +0000151 // Parse the actual template declaration.
152 return ParseSingleDeclarationAfterTemplate(Context,
153 ParsedTemplateInfo(&ParamLists,
154 isSpecialization,
155 LastParamListWasEmpty),
156 ParsingTemplateParams,
157 DeclEnd, AS, AccessAttrs);
158}
159
160/// \brief Parse a single declaration that declares a template,
161/// template specialization, or explicit instantiation of a template.
162///
163/// \param DeclEnd will receive the source location of the last token
164/// within this declaration.
165///
166/// \param AS the access specifier associated with this
167/// declaration. Will be AS_none for namespace-scope declarations.
168///
169/// \returns the new declaration.
170Decl *
171Parser::ParseSingleDeclarationAfterTemplate(
Faisal Vali421b2d12017-12-29 05:41:00 +0000172 DeclaratorContext Context,
Faisal Vali6a79ca12013-06-08 19:39:00 +0000173 const ParsedTemplateInfo &TemplateInfo,
174 ParsingDeclRAIIObject &DiagsFromTParams,
175 SourceLocation &DeclEnd,
176 AccessSpecifier AS,
177 AttributeList *AccessAttrs) {
178 assert(TemplateInfo.Kind != ParsedTemplateInfo::NonTemplate &&
179 "Template information required");
180
Aaron Ballmane7c544d2014-08-04 20:28:35 +0000181 if (Tok.is(tok::kw_static_assert)) {
182 // A static_assert declaration may not be templated.
183 Diag(Tok.getLocation(), diag::err_templated_invalid_declaration)
184 << TemplateInfo.getSourceRange();
185 // Parse the static_assert declaration to improve error recovery.
186 return ParseStaticAssertDeclaration(DeclEnd);
187 }
188
Faisal Vali421b2d12017-12-29 05:41:00 +0000189 if (Context == DeclaratorContext::MemberContext) {
Faisal Vali6a79ca12013-06-08 19:39:00 +0000190 // We are parsing a member template.
191 ParseCXXClassMemberDeclaration(AS, AccessAttrs, TemplateInfo,
192 &DiagsFromTParams);
Craig Topper161e4db2014-05-21 06:02:52 +0000193 return nullptr;
Faisal Vali6a79ca12013-06-08 19:39:00 +0000194 }
195
196 ParsedAttributesWithRange prefixAttrs(AttrFactory);
197 MaybeParseCXX11Attributes(prefixAttrs);
198
Richard Smith6f1daa42016-12-16 00:58:48 +0000199 if (Tok.is(tok::kw_using)) {
Erik Verbruggen51ee12a2017-09-08 09:31:13 +0000200 auto usingDeclPtr = ParseUsingDirectiveOrDeclaration(Context, TemplateInfo, DeclEnd,
201 prefixAttrs);
202 if (!usingDeclPtr || !usingDeclPtr.get().isSingleDecl())
203 return nullptr;
204 return usingDeclPtr.get().getSingleDecl();
Richard Smith6f1daa42016-12-16 00:58:48 +0000205 }
Faisal Vali6a79ca12013-06-08 19:39:00 +0000206
207 // Parse the declaration specifiers, stealing any diagnostics from
208 // the template parameters.
209 ParsingDeclSpec DS(*this, &DiagsFromTParams);
210
211 ParseDeclarationSpecifiers(DS, TemplateInfo, AS,
212 getDeclSpecContextFromDeclaratorContext(Context));
213
214 if (Tok.is(tok::semi)) {
215 ProhibitAttributes(prefixAttrs);
216 DeclEnd = ConsumeToken();
Nico Weber7b837f52016-01-28 19:25:00 +0000217 RecordDecl *AnonRecord = nullptr;
Faisal Vali6a79ca12013-06-08 19:39:00 +0000218 Decl *Decl = Actions.ParsedFreeStandingDeclSpec(
219 getCurScope(), AS, DS,
220 TemplateInfo.TemplateParams ? *TemplateInfo.TemplateParams
221 : MultiTemplateParamsArg(),
Nico Weber7b837f52016-01-28 19:25:00 +0000222 TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation,
223 AnonRecord);
224 assert(!AnonRecord &&
225 "Anonymous unions/structs should not be valid with template");
Faisal Vali6a79ca12013-06-08 19:39:00 +0000226 DS.complete(Decl);
227 return Decl;
228 }
229
230 // Move the attributes from the prefix into the DS.
231 if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation)
232 ProhibitAttributes(prefixAttrs);
233 else
234 DS.takeAttributesFrom(prefixAttrs);
235
236 // Parse the declarator.
Faisal Vali421b2d12017-12-29 05:41:00 +0000237 ParsingDeclarator DeclaratorInfo(*this, DS, (DeclaratorContext)Context);
Faisal Vali6a79ca12013-06-08 19:39:00 +0000238 ParseDeclarator(DeclaratorInfo);
239 // Error parsing the declarator?
240 if (!DeclaratorInfo.hasName()) {
241 // If so, skip until the semi-colon or a }.
Alexey Bataevee6507d2013-11-18 08:17:37 +0000242 SkipUntil(tok::r_brace, StopAtSemi | StopBeforeMatch);
Faisal Vali6a79ca12013-06-08 19:39:00 +0000243 if (Tok.is(tok::semi))
244 ConsumeToken();
Craig Topper161e4db2014-05-21 06:02:52 +0000245 return nullptr;
Faisal Vali6a79ca12013-06-08 19:39:00 +0000246 }
247
248 LateParsedAttrList LateParsedAttrs(true);
249 if (DeclaratorInfo.isFunctionDeclarator())
250 MaybeParseGNUAttributes(DeclaratorInfo, &LateParsedAttrs);
251
252 if (DeclaratorInfo.isFunctionDeclarator() &&
253 isStartOfFunctionDefinition(DeclaratorInfo)) {
Reid Klecknerd61a3112014-12-15 23:16:32 +0000254
255 // Function definitions are only allowed at file scope and in C++ classes.
256 // The C++ inline method definition case is handled elsewhere, so we only
257 // need to handle the file scope definition case.
Faisal Vali421b2d12017-12-29 05:41:00 +0000258 if (Context != DeclaratorContext::FileContext) {
Reid Klecknerd61a3112014-12-15 23:16:32 +0000259 Diag(Tok, diag::err_function_definition_not_allowed);
260 SkipMalformedDecl();
261 return nullptr;
262 }
263
Faisal Vali6a79ca12013-06-08 19:39:00 +0000264 if (DS.getStorageClassSpec() == DeclSpec::SCS_typedef) {
265 // Recover by ignoring the 'typedef'. This was probably supposed to be
266 // the 'typename' keyword, which we should have already suggested adding
267 // if it's appropriate.
268 Diag(DS.getStorageClassSpecLoc(), diag::err_function_declared_typedef)
269 << FixItHint::CreateRemoval(DS.getStorageClassSpecLoc());
270 DS.ClearStorageClassSpecs();
271 }
Larisse Voufo725de3e2013-06-21 00:08:46 +0000272
273 if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation) {
Faisal Vali2ab8c152017-12-30 04:15:27 +0000274 if (DeclaratorInfo.getName().getKind() !=
275 UnqualifiedIdKind::IK_TemplateId) {
Larisse Voufo725de3e2013-06-21 00:08:46 +0000276 // If the declarator-id is not a template-id, issue a diagnostic and
277 // recover by ignoring the 'template' keyword.
278 Diag(Tok, diag::err_template_defn_explicit_instantiation) << 0;
Larisse Voufo39a1e502013-08-06 01:03:05 +0000279 return ParseFunctionDefinition(DeclaratorInfo, ParsedTemplateInfo(),
280 &LateParsedAttrs);
Larisse Voufo725de3e2013-06-21 00:08:46 +0000281 } else {
282 SourceLocation LAngleLoc
283 = PP.getLocForEndOfToken(TemplateInfo.TemplateLoc);
Larisse Voufo39a1e502013-08-06 01:03:05 +0000284 Diag(DeclaratorInfo.getIdentifierLoc(),
Larisse Voufo725de3e2013-06-21 00:08:46 +0000285 diag::err_explicit_instantiation_with_definition)
Larisse Voufo39a1e502013-08-06 01:03:05 +0000286 << SourceRange(TemplateInfo.TemplateLoc)
287 << FixItHint::CreateInsertion(LAngleLoc, "<>");
Larisse Voufo725de3e2013-06-21 00:08:46 +0000288
Larisse Voufo39a1e502013-08-06 01:03:05 +0000289 // Recover as if it were an explicit specialization.
Larisse Voufob9bbaba2013-06-22 13:56:11 +0000290 TemplateParameterLists FakedParamLists;
Larisse Voufo39a1e502013-08-06 01:03:05 +0000291 FakedParamLists.push_back(Actions.ActOnTemplateParameterList(
Craig Topper96225a52015-12-24 23:58:25 +0000292 0, SourceLocation(), TemplateInfo.TemplateLoc, LAngleLoc, None,
Hubert Tongf608c052016-04-29 18:05:37 +0000293 LAngleLoc, nullptr));
Larisse Voufo725de3e2013-06-21 00:08:46 +0000294
Larisse Voufo39a1e502013-08-06 01:03:05 +0000295 return ParseFunctionDefinition(
296 DeclaratorInfo, ParsedTemplateInfo(&FakedParamLists,
297 /*isSpecialization=*/true,
298 /*LastParamListWasEmpty=*/true),
299 &LateParsedAttrs);
Larisse Voufo725de3e2013-06-21 00:08:46 +0000300 }
301 }
Faisal Vali6a79ca12013-06-08 19:39:00 +0000302 return ParseFunctionDefinition(DeclaratorInfo, TemplateInfo,
Larisse Voufo39a1e502013-08-06 01:03:05 +0000303 &LateParsedAttrs);
Faisal Vali6a79ca12013-06-08 19:39:00 +0000304 }
305
306 // Parse this declaration.
307 Decl *ThisDecl = ParseDeclarationAfterDeclarator(DeclaratorInfo,
308 TemplateInfo);
309
310 if (Tok.is(tok::comma)) {
311 Diag(Tok, diag::err_multiple_template_declarators)
312 << (int)TemplateInfo.Kind;
Alexey Bataevee6507d2013-11-18 08:17:37 +0000313 SkipUntil(tok::semi);
Faisal Vali6a79ca12013-06-08 19:39:00 +0000314 return ThisDecl;
315 }
316
317 // Eat the semi colon after the declaration.
318 ExpectAndConsumeSemi(diag::err_expected_semi_declaration);
319 if (LateParsedAttrs.size() > 0)
320 ParseLexedAttributeList(LateParsedAttrs, ThisDecl, true, false);
321 DeclaratorInfo.complete(ThisDecl);
322 return ThisDecl;
323}
324
325/// ParseTemplateParameters - Parses a template-parameter-list enclosed in
326/// angle brackets. Depth is the depth of this template-parameter-list, which
327/// is the number of template headers directly enclosing this template header.
328/// TemplateParams is the current list of template parameters we're building.
329/// The template parameter we parse will be added to this list. LAngleLoc and
330/// RAngleLoc will receive the positions of the '<' and '>', respectively,
331/// that enclose this template parameter list.
332///
333/// \returns true if an error occurred, false otherwise.
Faisal Valif241b0d2017-08-25 18:24:20 +0000334bool Parser::ParseTemplateParameters(
335 unsigned Depth, SmallVectorImpl<NamedDecl *> &TemplateParams,
336 SourceLocation &LAngleLoc, SourceLocation &RAngleLoc) {
Faisal Vali6a79ca12013-06-08 19:39:00 +0000337 // Get the template parameter list.
Alp Tokera3ebe6e2013-12-17 14:12:37 +0000338 if (!TryConsumeToken(tok::less, LAngleLoc)) {
Faisal Vali6a79ca12013-06-08 19:39:00 +0000339 Diag(Tok.getLocation(), diag::err_expected_less_after) << "template";
340 return true;
341 }
Faisal Vali6a79ca12013-06-08 19:39:00 +0000342
343 // Try to parse the template parameter list.
344 bool Failed = false;
345 if (!Tok.is(tok::greater) && !Tok.is(tok::greatergreater))
346 Failed = ParseTemplateParameterList(Depth, TemplateParams);
347
348 if (Tok.is(tok::greatergreater)) {
349 // No diagnostic required here: a template-parameter-list can only be
350 // followed by a declaration or, for a template template parameter, the
351 // 'class' keyword. Therefore, the second '>' will be diagnosed later.
352 // This matters for elegant diagnosis of:
353 // template<template<typename>> struct S;
354 Tok.setKind(tok::greater);
355 RAngleLoc = Tok.getLocation();
356 Tok.setLocation(Tok.getLocation().getLocWithOffset(1));
Alp Toker383d2c42014-01-01 03:08:43 +0000357 } else if (!TryConsumeToken(tok::greater, RAngleLoc) && Failed) {
358 Diag(Tok.getLocation(), diag::err_expected) << tok::greater;
Faisal Vali6a79ca12013-06-08 19:39:00 +0000359 return true;
360 }
361 return false;
362}
363
364/// ParseTemplateParameterList - Parse a template parameter list. If
365/// the parsing fails badly (i.e., closing bracket was left out), this
366/// will try to put the token stream in a reasonable position (closing
367/// a statement, etc.) and return false.
368///
369/// template-parameter-list: [C++ temp]
370/// template-parameter
371/// template-parameter-list ',' template-parameter
372bool
Faisal Vali421b2d12017-12-29 05:41:00 +0000373Parser::ParseTemplateParameterList(const unsigned Depth,
Faisal Valif241b0d2017-08-25 18:24:20 +0000374 SmallVectorImpl<NamedDecl*> &TemplateParams) {
Faisal Vali6a79ca12013-06-08 19:39:00 +0000375 while (1) {
Faisal Valibe294032017-12-23 18:56:34 +0000376
377 if (NamedDecl *TmpParam
Faisal Vali6a79ca12013-06-08 19:39:00 +0000378 = ParseTemplateParameter(Depth, TemplateParams.size())) {
Faisal Valid9548c32017-12-23 19:27:07 +0000379 TemplateParams.push_back(TmpParam);
Faisal Vali6a79ca12013-06-08 19:39:00 +0000380 } else {
381 // If we failed to parse a template parameter, skip until we find
382 // a comma or closing brace.
Alexey Bataevee6507d2013-11-18 08:17:37 +0000383 SkipUntil(tok::comma, tok::greater, tok::greatergreater,
384 StopAtSemi | StopBeforeMatch);
Faisal Vali6a79ca12013-06-08 19:39:00 +0000385 }
386
387 // Did we find a comma or the end of the template parameter list?
388 if (Tok.is(tok::comma)) {
389 ConsumeToken();
Daniel Marjamakie59f8d72015-06-18 10:59:26 +0000390 } else if (Tok.isOneOf(tok::greater, tok::greatergreater)) {
Faisal Vali6a79ca12013-06-08 19:39:00 +0000391 // Don't consume this... that's done by template parser.
392 break;
393 } else {
394 // Somebody probably forgot to close the template. Skip ahead and
395 // try to get out of the expression. This error is currently
396 // subsumed by whatever goes on in ParseTemplateParameter.
397 Diag(Tok.getLocation(), diag::err_expected_comma_greater);
Alexey Bataevee6507d2013-11-18 08:17:37 +0000398 SkipUntil(tok::comma, tok::greater, tok::greatergreater,
399 StopAtSemi | StopBeforeMatch);
Faisal Vali6a79ca12013-06-08 19:39:00 +0000400 return false;
401 }
402 }
403 return true;
404}
405
406/// \brief Determine whether the parser is at the start of a template
407/// type parameter.
408bool Parser::isStartOfTemplateTypeParameter() {
409 if (Tok.is(tok::kw_class)) {
410 // "class" may be the start of an elaborated-type-specifier or a
411 // type-parameter. Per C++ [temp.param]p3, we prefer the type-parameter.
412 switch (NextToken().getKind()) {
413 case tok::equal:
414 case tok::comma:
415 case tok::greater:
416 case tok::greatergreater:
417 case tok::ellipsis:
418 return true;
419
420 case tok::identifier:
421 // This may be either a type-parameter or an elaborated-type-specifier.
422 // We have to look further.
423 break;
424
425 default:
426 return false;
427 }
428
429 switch (GetLookAheadToken(2).getKind()) {
430 case tok::equal:
431 case tok::comma:
432 case tok::greater:
433 case tok::greatergreater:
434 return true;
435
436 default:
437 return false;
438 }
439 }
440
441 if (Tok.isNot(tok::kw_typename))
442 return false;
443
444 // C++ [temp.param]p2:
445 // There is no semantic difference between class and typename in a
446 // template-parameter. typename followed by an unqualified-id
447 // names a template type parameter. typename followed by a
448 // qualified-id denotes the type in a non-type
449 // parameter-declaration.
450 Token Next = NextToken();
451
452 // If we have an identifier, skip over it.
453 if (Next.getKind() == tok::identifier)
454 Next = GetLookAheadToken(2);
455
456 switch (Next.getKind()) {
457 case tok::equal:
458 case tok::comma:
459 case tok::greater:
460 case tok::greatergreater:
461 case tok::ellipsis:
462 return true;
463
464 default:
465 return false;
466 }
467}
468
469/// ParseTemplateParameter - Parse a template-parameter (C++ [temp.param]).
470///
471/// template-parameter: [C++ temp.param]
472/// type-parameter
473/// parameter-declaration
474///
475/// type-parameter: (see below)
476/// 'class' ...[opt] identifier[opt]
477/// 'class' identifier[opt] '=' type-id
478/// 'typename' ...[opt] identifier[opt]
479/// 'typename' identifier[opt] '=' type-id
480/// 'template' '<' template-parameter-list '>'
481/// 'class' ...[opt] identifier[opt]
482/// 'template' '<' template-parameter-list '>' 'class' identifier[opt]
483/// = id-expression
Faisal Valibe294032017-12-23 18:56:34 +0000484NamedDecl *Parser::ParseTemplateParameter(unsigned Depth, unsigned Position) {
Faisal Vali6a79ca12013-06-08 19:39:00 +0000485 if (isStartOfTemplateTypeParameter())
486 return ParseTypeParameter(Depth, Position);
487
488 if (Tok.is(tok::kw_template))
489 return ParseTemplateTemplateParameter(Depth, Position);
490
Jan Korous3a98e512018-02-08 14:37:58 +0000491 // Is there just a typo in the input code? ('typedef' instead of 'typename')
492 if (Tok.is(tok::kw_typedef)) {
493 Diag(Tok.getLocation(), diag::err_expected_template_parameter);
494
495 Diag(Tok.getLocation(), diag::note_meant_to_use_typename)
496 << FixItHint::CreateReplacement(CharSourceRange::getCharRange(
497 Tok.getLocation(), Tok.getEndLoc()),
498 "typename");
499
500 Tok.setKind(tok::kw_typename);
501
502 return ParseTypeParameter(Depth, Position);
503 }
504
Faisal Vali6a79ca12013-06-08 19:39:00 +0000505 // If it's none of the above, then it must be a parameter declaration.
506 // NOTE: This will pick up errors in the closure of the template parameter
507 // list (e.g., template < ; Check here to implement >> style closures.
508 return ParseNonTypeTemplateParameter(Depth, Position);
509}
510
511/// ParseTypeParameter - Parse a template type parameter (C++ [temp.param]).
512/// Other kinds of template parameters are parsed in
513/// ParseTemplateTemplateParameter and ParseNonTypeTemplateParameter.
514///
515/// type-parameter: [C++ temp.param]
516/// 'class' ...[opt][C++0x] identifier[opt]
517/// 'class' identifier[opt] '=' type-id
518/// 'typename' ...[opt][C++0x] identifier[opt]
519/// 'typename' identifier[opt] '=' type-id
Faisal Valibe294032017-12-23 18:56:34 +0000520NamedDecl *Parser::ParseTypeParameter(unsigned Depth, unsigned Position) {
Daniel Marjamakie59f8d72015-06-18 10:59:26 +0000521 assert(Tok.isOneOf(tok::kw_class, tok::kw_typename) &&
Faisal Vali6a79ca12013-06-08 19:39:00 +0000522 "A type-parameter starts with 'class' or 'typename'");
523
524 // Consume the 'class' or 'typename' keyword.
525 bool TypenameKeyword = Tok.is(tok::kw_typename);
526 SourceLocation KeyLoc = ConsumeToken();
527
528 // Grab the ellipsis (if given).
Faisal Vali6a79ca12013-06-08 19:39:00 +0000529 SourceLocation EllipsisLoc;
Alp Tokera3ebe6e2013-12-17 14:12:37 +0000530 if (TryConsumeToken(tok::ellipsis, EllipsisLoc)) {
Faisal Vali6a79ca12013-06-08 19:39:00 +0000531 Diag(EllipsisLoc,
532 getLangOpts().CPlusPlus11
533 ? diag::warn_cxx98_compat_variadic_templates
534 : diag::ext_variadic_templates);
535 }
536
537 // Grab the template parameter name (if given)
538 SourceLocation NameLoc;
Craig Topper161e4db2014-05-21 06:02:52 +0000539 IdentifierInfo *ParamName = nullptr;
Faisal Vali6a79ca12013-06-08 19:39:00 +0000540 if (Tok.is(tok::identifier)) {
541 ParamName = Tok.getIdentifierInfo();
542 NameLoc = ConsumeToken();
Daniel Marjamakie59f8d72015-06-18 10:59:26 +0000543 } else if (Tok.isOneOf(tok::equal, tok::comma, tok::greater,
544 tok::greatergreater)) {
Faisal Vali6a79ca12013-06-08 19:39:00 +0000545 // Unnamed template parameter. Don't have to do anything here, just
546 // don't consume this token.
547 } else {
Alp Tokerec543272013-12-24 09:48:30 +0000548 Diag(Tok.getLocation(), diag::err_expected) << tok::identifier;
Craig Topper161e4db2014-05-21 06:02:52 +0000549 return nullptr;
Faisal Vali6a79ca12013-06-08 19:39:00 +0000550 }
551
Nikola Smiljanic69fdc9f2014-06-06 02:58:59 +0000552 // Recover from misplaced ellipsis.
553 bool AlreadyHasEllipsis = EllipsisLoc.isValid();
554 if (TryConsumeToken(tok::ellipsis, EllipsisLoc))
555 DiagnoseMisplacedEllipsis(EllipsisLoc, NameLoc, AlreadyHasEllipsis, true);
556
Faisal Vali6a79ca12013-06-08 19:39:00 +0000557 // Grab a default argument (if available).
558 // Per C++0x [basic.scope.pdecl]p9, we parse the default argument before
559 // we introduce the type parameter into the local scope.
560 SourceLocation EqualLoc;
561 ParsedType DefaultArg;
Alp Tokera3ebe6e2013-12-17 14:12:37 +0000562 if (TryConsumeToken(tok::equal, EqualLoc))
Craig Topper161e4db2014-05-21 06:02:52 +0000563 DefaultArg = ParseTypeName(/*Range=*/nullptr,
Faisal Vali421b2d12017-12-29 05:41:00 +0000564 DeclaratorContext::TemplateTypeArgContext).get();
Faisal Vali6a79ca12013-06-08 19:39:00 +0000565
Nikola Smiljanic69fdc9f2014-06-06 02:58:59 +0000566 return Actions.ActOnTypeParameter(getCurScope(), TypenameKeyword, EllipsisLoc,
567 KeyLoc, ParamName, NameLoc, Depth, Position,
568 EqualLoc, DefaultArg);
Faisal Vali6a79ca12013-06-08 19:39:00 +0000569}
570
571/// ParseTemplateTemplateParameter - Handle the parsing of template
572/// template parameters.
573///
574/// type-parameter: [C++ temp.param]
Richard Smith78e1ca62014-06-16 15:51:22 +0000575/// 'template' '<' template-parameter-list '>' type-parameter-key
Faisal Vali6a79ca12013-06-08 19:39:00 +0000576/// ...[opt] identifier[opt]
Richard Smith78e1ca62014-06-16 15:51:22 +0000577/// 'template' '<' template-parameter-list '>' type-parameter-key
578/// identifier[opt] = id-expression
579/// type-parameter-key:
580/// 'class'
581/// 'typename' [C++1z]
Faisal Valibe294032017-12-23 18:56:34 +0000582NamedDecl *
Faisal Vali6a79ca12013-06-08 19:39:00 +0000583Parser::ParseTemplateTemplateParameter(unsigned Depth, unsigned Position) {
584 assert(Tok.is(tok::kw_template) && "Expected 'template' keyword");
585
586 // Handle the template <...> part.
587 SourceLocation TemplateLoc = ConsumeToken();
Faisal Valif241b0d2017-08-25 18:24:20 +0000588 SmallVector<NamedDecl*,8> TemplateParams;
Faisal Vali6a79ca12013-06-08 19:39:00 +0000589 SourceLocation LAngleLoc, RAngleLoc;
590 {
591 ParseScope TemplateParmScope(this, Scope::TemplateParamScope);
592 if (ParseTemplateParameters(Depth + 1, TemplateParams, LAngleLoc,
593 RAngleLoc)) {
Craig Topper161e4db2014-05-21 06:02:52 +0000594 return nullptr;
Faisal Vali6a79ca12013-06-08 19:39:00 +0000595 }
596 }
597
Richard Smith78e1ca62014-06-16 15:51:22 +0000598 // Provide an ExtWarn if the C++1z feature of using 'typename' here is used.
Faisal Vali6a79ca12013-06-08 19:39:00 +0000599 // Generate a meaningful error if the user forgot to put class before the
600 // identifier, comma, or greater. Provide a fixit if the identifier, comma,
Richard Smith78e1ca62014-06-16 15:51:22 +0000601 // or greater appear immediately or after 'struct'. In the latter case,
602 // replace the keyword with 'class'.
Alp Tokera3ebe6e2013-12-17 14:12:37 +0000603 if (!TryConsumeToken(tok::kw_class)) {
Daniel Marjamakie59f8d72015-06-18 10:59:26 +0000604 bool Replace = Tok.isOneOf(tok::kw_typename, tok::kw_struct);
Richard Smith78e1ca62014-06-16 15:51:22 +0000605 const Token &Next = Tok.is(tok::kw_struct) ? NextToken() : Tok;
606 if (Tok.is(tok::kw_typename)) {
607 Diag(Tok.getLocation(),
Aaron Ballmanc351fba2017-12-04 20:27:34 +0000608 getLangOpts().CPlusPlus17
Aaron Ballmandd69ef32014-08-19 15:55:55 +0000609 ? diag::warn_cxx14_compat_template_template_param_typename
Richard Smith78e1ca62014-06-16 15:51:22 +0000610 : diag::ext_template_template_param_typename)
Aaron Ballmanc351fba2017-12-04 20:27:34 +0000611 << (!getLangOpts().CPlusPlus17
Richard Smith78e1ca62014-06-16 15:51:22 +0000612 ? FixItHint::CreateReplacement(Tok.getLocation(), "class")
613 : FixItHint());
Daniel Marjamakie59f8d72015-06-18 10:59:26 +0000614 } else if (Next.isOneOf(tok::identifier, tok::comma, tok::greater,
615 tok::greatergreater, tok::ellipsis)) {
Faisal Vali6a79ca12013-06-08 19:39:00 +0000616 Diag(Tok.getLocation(), diag::err_class_on_template_template_param)
617 << (Replace ? FixItHint::CreateReplacement(Tok.getLocation(), "class")
618 : FixItHint::CreateInsertion(Tok.getLocation(), "class "));
Richard Smith78e1ca62014-06-16 15:51:22 +0000619 } else
Faisal Vali6a79ca12013-06-08 19:39:00 +0000620 Diag(Tok.getLocation(), diag::err_class_on_template_template_param);
621
622 if (Replace)
623 ConsumeToken();
Alp Tokera3ebe6e2013-12-17 14:12:37 +0000624 }
Faisal Vali6a79ca12013-06-08 19:39:00 +0000625
626 // Parse the ellipsis, if given.
627 SourceLocation EllipsisLoc;
Alp Tokera3ebe6e2013-12-17 14:12:37 +0000628 if (TryConsumeToken(tok::ellipsis, EllipsisLoc))
Faisal Vali6a79ca12013-06-08 19:39:00 +0000629 Diag(EllipsisLoc,
630 getLangOpts().CPlusPlus11
631 ? diag::warn_cxx98_compat_variadic_templates
632 : diag::ext_variadic_templates);
Faisal Vali6a79ca12013-06-08 19:39:00 +0000633
634 // Get the identifier, if given.
635 SourceLocation NameLoc;
Craig Topper161e4db2014-05-21 06:02:52 +0000636 IdentifierInfo *ParamName = nullptr;
Faisal Vali6a79ca12013-06-08 19:39:00 +0000637 if (Tok.is(tok::identifier)) {
638 ParamName = Tok.getIdentifierInfo();
639 NameLoc = ConsumeToken();
Daniel Marjamakie59f8d72015-06-18 10:59:26 +0000640 } else if (Tok.isOneOf(tok::equal, tok::comma, tok::greater,
641 tok::greatergreater)) {
Faisal Vali6a79ca12013-06-08 19:39:00 +0000642 // Unnamed template parameter. Don't have to do anything here, just
643 // don't consume this token.
644 } else {
Alp Tokerec543272013-12-24 09:48:30 +0000645 Diag(Tok.getLocation(), diag::err_expected) << tok::identifier;
Craig Topper161e4db2014-05-21 06:02:52 +0000646 return nullptr;
Faisal Vali6a79ca12013-06-08 19:39:00 +0000647 }
648
Nikola Smiljanic69fdc9f2014-06-06 02:58:59 +0000649 // Recover from misplaced ellipsis.
650 bool AlreadyHasEllipsis = EllipsisLoc.isValid();
651 if (TryConsumeToken(tok::ellipsis, EllipsisLoc))
652 DiagnoseMisplacedEllipsis(EllipsisLoc, NameLoc, AlreadyHasEllipsis, true);
653
Faisal Vali6a79ca12013-06-08 19:39:00 +0000654 TemplateParameterList *ParamList =
655 Actions.ActOnTemplateParameterList(Depth, SourceLocation(),
656 TemplateLoc, LAngleLoc,
Craig Topper96225a52015-12-24 23:58:25 +0000657 TemplateParams,
Hubert Tongf608c052016-04-29 18:05:37 +0000658 RAngleLoc, nullptr);
Faisal Vali6a79ca12013-06-08 19:39:00 +0000659
660 // Grab a default argument (if available).
661 // Per C++0x [basic.scope.pdecl]p9, we parse the default argument before
662 // we introduce the template parameter into the local scope.
663 SourceLocation EqualLoc;
664 ParsedTemplateArgument DefaultArg;
Alp Tokera3ebe6e2013-12-17 14:12:37 +0000665 if (TryConsumeToken(tok::equal, EqualLoc)) {
Faisal Vali6a79ca12013-06-08 19:39:00 +0000666 DefaultArg = ParseTemplateTemplateArgument();
667 if (DefaultArg.isInvalid()) {
668 Diag(Tok.getLocation(),
669 diag::err_default_template_template_parameter_not_template);
Alexey Bataevee6507d2013-11-18 08:17:37 +0000670 SkipUntil(tok::comma, tok::greater, tok::greatergreater,
671 StopAtSemi | StopBeforeMatch);
Faisal Vali6a79ca12013-06-08 19:39:00 +0000672 }
673 }
674
675 return Actions.ActOnTemplateTemplateParameter(getCurScope(), TemplateLoc,
676 ParamList, EllipsisLoc,
677 ParamName, NameLoc, Depth,
678 Position, EqualLoc, DefaultArg);
679}
680
681/// ParseNonTypeTemplateParameter - Handle the parsing of non-type
682/// template parameters (e.g., in "template<int Size> class array;").
683///
684/// template-parameter:
685/// ...
686/// parameter-declaration
Faisal Valibe294032017-12-23 18:56:34 +0000687NamedDecl *
Faisal Vali6a79ca12013-06-08 19:39:00 +0000688Parser::ParseNonTypeTemplateParameter(unsigned Depth, unsigned Position) {
689 // Parse the declaration-specifiers (i.e., the type).
690 // FIXME: The type should probably be restricted in some way... Not all
691 // declarators (parts of declarators?) are accepted for parameters.
692 DeclSpec DS(AttrFactory);
Akira Hatanaka12ddcee2017-06-26 18:46:12 +0000693 ParseDeclarationSpecifiers(DS, ParsedTemplateInfo(), AS_none,
Faisal Vali7db85c52017-12-31 00:06:40 +0000694 DeclSpecContext::DSC_template_param);
Faisal Vali6a79ca12013-06-08 19:39:00 +0000695
696 // Parse this as a typename.
Faisal Vali421b2d12017-12-29 05:41:00 +0000697 Declarator ParamDecl(DS, DeclaratorContext::TemplateParamContext);
Faisal Vali6a79ca12013-06-08 19:39:00 +0000698 ParseDeclarator(ParamDecl);
699 if (DS.getTypeSpecType() == DeclSpec::TST_unspecified) {
700 Diag(Tok.getLocation(), diag::err_expected_template_parameter);
Craig Topper161e4db2014-05-21 06:02:52 +0000701 return nullptr;
Faisal Vali6a79ca12013-06-08 19:39:00 +0000702 }
703
Nikola Smiljanic69fdc9f2014-06-06 02:58:59 +0000704 // Recover from misplaced ellipsis.
705 SourceLocation EllipsisLoc;
706 if (TryConsumeToken(tok::ellipsis, EllipsisLoc))
707 DiagnoseMisplacedEllipsisInDeclarator(EllipsisLoc, ParamDecl);
708
Faisal Vali6a79ca12013-06-08 19:39:00 +0000709 // If there is a default value, parse it.
710 // Per C++0x [basic.scope.pdecl]p9, we parse the default argument before
711 // we introduce the template parameter into the local scope.
712 SourceLocation EqualLoc;
713 ExprResult DefaultArg;
Alp Tokera3ebe6e2013-12-17 14:12:37 +0000714 if (TryConsumeToken(tok::equal, EqualLoc)) {
Faisal Vali6a79ca12013-06-08 19:39:00 +0000715 // C++ [temp.param]p15:
716 // When parsing a default template-argument for a non-type
717 // template-parameter, the first non-nested > is taken as the
718 // end of the template-parameter-list rather than a greater-than
719 // operator.
720 GreaterThanIsOperatorScope G(GreaterThanIsOperator, false);
Faisal Valid143a0c2017-04-01 21:30:49 +0000721 EnterExpressionEvaluationContext ConstantEvaluated(
722 Actions, Sema::ExpressionEvaluationContext::ConstantEvaluated);
Faisal Vali6a79ca12013-06-08 19:39:00 +0000723
Kaelyn Takata999dd852014-12-02 23:32:20 +0000724 DefaultArg = Actions.CorrectDelayedTyposInExpr(ParseAssignmentExpression());
Faisal Vali6a79ca12013-06-08 19:39:00 +0000725 if (DefaultArg.isInvalid())
Alexey Bataevee6507d2013-11-18 08:17:37 +0000726 SkipUntil(tok::comma, tok::greater, StopAtSemi | StopBeforeMatch);
Faisal Vali6a79ca12013-06-08 19:39:00 +0000727 }
728
729 // Create the parameter.
730 return Actions.ActOnNonTypeTemplateParameter(getCurScope(), ParamDecl,
731 Depth, Position, EqualLoc,
Nikola Smiljanic01a75982014-05-29 10:55:11 +0000732 DefaultArg.get());
Faisal Vali6a79ca12013-06-08 19:39:00 +0000733}
734
Nikola Smiljanic69fdc9f2014-06-06 02:58:59 +0000735void Parser::DiagnoseMisplacedEllipsis(SourceLocation EllipsisLoc,
736 SourceLocation CorrectLoc,
737 bool AlreadyHasEllipsis,
738 bool IdentifierHasName) {
739 FixItHint Insertion;
740 if (!AlreadyHasEllipsis)
741 Insertion = FixItHint::CreateInsertion(CorrectLoc, "...");
742 Diag(EllipsisLoc, diag::err_misplaced_ellipsis_in_declaration)
743 << FixItHint::CreateRemoval(EllipsisLoc) << Insertion
744 << !IdentifierHasName;
745}
746
747void Parser::DiagnoseMisplacedEllipsisInDeclarator(SourceLocation EllipsisLoc,
748 Declarator &D) {
749 assert(EllipsisLoc.isValid());
750 bool AlreadyHasEllipsis = D.getEllipsisLoc().isValid();
751 if (!AlreadyHasEllipsis)
752 D.setEllipsisLoc(EllipsisLoc);
753 DiagnoseMisplacedEllipsis(EllipsisLoc, D.getIdentifierLoc(),
754 AlreadyHasEllipsis, D.hasName());
755}
756
Faisal Vali6a79ca12013-06-08 19:39:00 +0000757/// \brief Parses a '>' at the end of a template list.
758///
759/// If this function encounters '>>', '>>>', '>=', or '>>=', it tries
760/// to determine if these tokens were supposed to be a '>' followed by
761/// '>', '>>', '>=', or '>='. It emits an appropriate diagnostic if necessary.
762///
763/// \param RAngleLoc the location of the consumed '>'.
764///
Douglas Gregor85f3f952015-07-07 03:57:15 +0000765/// \param ConsumeLastToken if true, the '>' is consumed.
766///
767/// \param ObjCGenericList if true, this is the '>' closing an Objective-C
768/// type parameter or type argument list, rather than a C++ template parameter
769/// or argument list.
Serge Pavlovb716b3c2013-08-10 05:54:47 +0000770///
771/// \returns true, if current token does not start with '>', false otherwise.
Faisal Vali6a79ca12013-06-08 19:39:00 +0000772bool Parser::ParseGreaterThanInTemplateList(SourceLocation &RAngleLoc,
Douglas Gregor85f3f952015-07-07 03:57:15 +0000773 bool ConsumeLastToken,
774 bool ObjCGenericList) {
Faisal Vali6a79ca12013-06-08 19:39:00 +0000775 // What will be left once we've consumed the '>'.
776 tok::TokenKind RemainingToken;
777 const char *ReplacementStr = "> >";
778
779 switch (Tok.getKind()) {
780 default:
Alp Toker383d2c42014-01-01 03:08:43 +0000781 Diag(Tok.getLocation(), diag::err_expected) << tok::greater;
Faisal Vali6a79ca12013-06-08 19:39:00 +0000782 return true;
783
784 case tok::greater:
785 // Determine the location of the '>' token. Only consume this token
786 // if the caller asked us to.
787 RAngleLoc = Tok.getLocation();
788 if (ConsumeLastToken)
789 ConsumeToken();
790 return false;
791
792 case tok::greatergreater:
793 RemainingToken = tok::greater;
794 break;
795
796 case tok::greatergreatergreater:
797 RemainingToken = tok::greatergreater;
798 break;
799
800 case tok::greaterequal:
801 RemainingToken = tok::equal;
802 ReplacementStr = "> =";
803 break;
804
805 case tok::greatergreaterequal:
806 RemainingToken = tok::greaterequal;
807 break;
808 }
809
810 // This template-id is terminated by a token which starts with a '>'. Outside
811 // C++11, this is now error recovery, and in C++11, this is error recovery if
Eli Bendersky36a61932014-06-20 13:09:59 +0000812 // the token isn't '>>' or '>>>'.
813 // '>>>' is for CUDA, where this sequence of characters is parsed into
814 // tok::greatergreatergreater, rather than two separate tokens.
Douglas Gregor85f3f952015-07-07 03:57:15 +0000815 //
816 // We always allow this for Objective-C type parameter and type argument
817 // lists.
Faisal Vali6a79ca12013-06-08 19:39:00 +0000818 RAngleLoc = Tok.getLocation();
Faisal Vali6a79ca12013-06-08 19:39:00 +0000819 Token Next = NextToken();
Douglas Gregor85f3f952015-07-07 03:57:15 +0000820 if (!ObjCGenericList) {
821 // The source range of the '>>' or '>=' at the start of the token.
822 CharSourceRange ReplacementRange =
823 CharSourceRange::getCharRange(RAngleLoc,
824 Lexer::AdvanceToTokenCharacter(RAngleLoc, 2, PP.getSourceManager(),
825 getLangOpts()));
Faisal Vali6a79ca12013-06-08 19:39:00 +0000826
Douglas Gregor85f3f952015-07-07 03:57:15 +0000827 // A hint to put a space between the '>>'s. In order to make the hint as
828 // clear as possible, we include the characters either side of the space in
829 // the replacement, rather than just inserting a space at SecondCharLoc.
830 FixItHint Hint1 = FixItHint::CreateReplacement(ReplacementRange,
831 ReplacementStr);
832
833 // A hint to put another space after the token, if it would otherwise be
834 // lexed differently.
835 FixItHint Hint2;
836 if ((RemainingToken == tok::greater ||
837 RemainingToken == tok::greatergreater) &&
838 (Next.isOneOf(tok::greater, tok::greatergreater,
839 tok::greatergreatergreater, tok::equal,
840 tok::greaterequal, tok::greatergreaterequal,
841 tok::equalequal)) &&
842 areTokensAdjacent(Tok, Next))
843 Hint2 = FixItHint::CreateInsertion(Next.getLocation(), " ");
844
845 unsigned DiagId = diag::err_two_right_angle_brackets_need_space;
846 if (getLangOpts().CPlusPlus11 &&
847 (Tok.is(tok::greatergreater) || Tok.is(tok::greatergreatergreater)))
848 DiagId = diag::warn_cxx98_compat_two_right_angle_brackets;
849 else if (Tok.is(tok::greaterequal))
850 DiagId = diag::err_right_angle_bracket_equal_needs_space;
851 Diag(Tok.getLocation(), DiagId) << Hint1 << Hint2;
852 }
Faisal Vali6a79ca12013-06-08 19:39:00 +0000853
854 // Strip the initial '>' from the token.
Bruno Cardoso Lopes428a5aa2016-01-31 00:47:51 +0000855 Token PrevTok = Tok;
Faisal Vali6a79ca12013-06-08 19:39:00 +0000856 if (RemainingToken == tok::equal && Next.is(tok::equal) &&
857 areTokensAdjacent(Tok, Next)) {
858 // Join two adjacent '=' tokens into one, for cases like:
859 // void (*p)() = f<int>;
860 // return f<int>==p;
861 ConsumeToken();
862 Tok.setKind(tok::equalequal);
863 Tok.setLength(Tok.getLength() + 1);
864 } else {
865 Tok.setKind(RemainingToken);
866 Tok.setLength(Tok.getLength() - 1);
867 }
868 Tok.setLocation(Lexer::AdvanceToTokenCharacter(RAngleLoc, 1,
869 PP.getSourceManager(),
870 getLangOpts()));
871
Bruno Cardoso Lopes428a5aa2016-01-31 00:47:51 +0000872 // The advance from '>>' to '>' in a ObjectiveC template argument list needs
873 // to be properly reflected in the token cache to allow correct interaction
874 // between annotation and backtracking.
875 if (ObjCGenericList && PrevTok.getKind() == tok::greatergreater &&
876 RemainingToken == tok::greater && PP.IsPreviousCachedToken(PrevTok)) {
877 PrevTok.setKind(RemainingToken);
878 PrevTok.setLength(1);
Bruno Cardoso Lopesfb9b6cd2016-02-05 19:36:39 +0000879 // Break tok::greatergreater into two tok::greater but only add the second
880 // one in case the client asks to consume the last token.
881 if (ConsumeLastToken)
882 PP.ReplacePreviousCachedToken({PrevTok, Tok});
883 else
884 PP.ReplacePreviousCachedToken({PrevTok});
Bruno Cardoso Lopes428a5aa2016-01-31 00:47:51 +0000885 }
886
Faisal Vali6a79ca12013-06-08 19:39:00 +0000887 if (!ConsumeLastToken) {
888 // Since we're not supposed to consume the '>' token, we need to push
889 // this token and revert the current token back to the '>'.
890 PP.EnterToken(Tok);
891 Tok.setKind(tok::greater);
892 Tok.setLength(1);
893 Tok.setLocation(RAngleLoc);
894 }
895 return false;
896}
897
898
899/// \brief Parses a template-id that after the template name has
900/// already been parsed.
901///
902/// This routine takes care of parsing the enclosed template argument
903/// list ('<' template-parameter-list [opt] '>') and placing the
904/// results into a form that can be transferred to semantic analysis.
905///
Faisal Vali6a79ca12013-06-08 19:39:00 +0000906/// \param ConsumeLastToken if true, then we will consume the last
907/// token that forms the template-id. Otherwise, we will leave the
908/// last token in the stream (e.g., so that it can be replaced with an
909/// annotation token).
910bool
Richard Smith9a420f92017-05-10 21:47:30 +0000911Parser::ParseTemplateIdAfterTemplateName(bool ConsumeLastToken,
Faisal Vali6a79ca12013-06-08 19:39:00 +0000912 SourceLocation &LAngleLoc,
913 TemplateArgList &TemplateArgs,
914 SourceLocation &RAngleLoc) {
915 assert(Tok.is(tok::less) && "Must have already parsed the template-name");
916
917 // Consume the '<'.
918 LAngleLoc = ConsumeToken();
919
920 // Parse the optional template-argument-list.
921 bool Invalid = false;
922 {
923 GreaterThanIsOperatorScope G(GreaterThanIsOperator, false);
924 if (Tok.isNot(tok::greater) && Tok.isNot(tok::greatergreater))
925 Invalid = ParseTemplateArgumentList(TemplateArgs);
926
927 if (Invalid) {
928 // Try to find the closing '>'.
Alexey Bataevee6507d2013-11-18 08:17:37 +0000929 if (ConsumeLastToken)
930 SkipUntil(tok::greater, StopAtSemi);
931 else
932 SkipUntil(tok::greater, StopAtSemi | StopBeforeMatch);
Faisal Vali6a79ca12013-06-08 19:39:00 +0000933 return true;
934 }
935 }
936
Douglas Gregor85f3f952015-07-07 03:57:15 +0000937 return ParseGreaterThanInTemplateList(RAngleLoc, ConsumeLastToken,
938 /*ObjCGenericList=*/false);
Faisal Vali6a79ca12013-06-08 19:39:00 +0000939}
940
941/// \brief Replace the tokens that form a simple-template-id with an
942/// annotation token containing the complete template-id.
943///
944/// The first token in the stream must be the name of a template that
945/// is followed by a '<'. This routine will parse the complete
946/// simple-template-id and replace the tokens with a single annotation
947/// token with one of two different kinds: if the template-id names a
948/// type (and \p AllowTypeAnnotation is true), the annotation token is
949/// a type annotation that includes the optional nested-name-specifier
950/// (\p SS). Otherwise, the annotation token is a template-id
951/// annotation that does not include the optional
952/// nested-name-specifier.
953///
954/// \param Template the declaration of the template named by the first
955/// token (an identifier), as returned from \c Action::isTemplateName().
956///
957/// \param TNK the kind of template that \p Template
958/// refers to, as returned from \c Action::isTemplateName().
959///
960/// \param SS if non-NULL, the nested-name-specifier that precedes
961/// this template name.
962///
963/// \param TemplateKWLoc if valid, specifies that this template-id
964/// annotation was preceded by the 'template' keyword and gives the
965/// location of that keyword. If invalid (the default), then this
966/// template-id was not preceded by a 'template' keyword.
967///
968/// \param AllowTypeAnnotation if true (the default), then a
969/// simple-template-id that refers to a class template, template
970/// template parameter, or other template that produces a type will be
971/// replaced with a type annotation token. Otherwise, the
972/// simple-template-id is always replaced with a template-id
973/// annotation token.
974///
975/// If an unrecoverable parse error occurs and no annotation token can be
976/// formed, this function returns true.
977///
978bool Parser::AnnotateTemplateIdToken(TemplateTy Template, TemplateNameKind TNK,
979 CXXScopeSpec &SS,
980 SourceLocation TemplateKWLoc,
981 UnqualifiedId &TemplateName,
982 bool AllowTypeAnnotation) {
983 assert(getLangOpts().CPlusPlus && "Can only annotate template-ids in C++");
984 assert(Template && Tok.is(tok::less) &&
985 "Parser isn't at the beginning of a template-id");
986
987 // Consume the template-name.
988 SourceLocation TemplateNameLoc = TemplateName.getSourceRange().getBegin();
989
990 // Parse the enclosed template argument list.
991 SourceLocation LAngleLoc, RAngleLoc;
992 TemplateArgList TemplateArgs;
Richard Smith9a420f92017-05-10 21:47:30 +0000993 bool Invalid = ParseTemplateIdAfterTemplateName(false, LAngleLoc,
Faisal Vali6a79ca12013-06-08 19:39:00 +0000994 TemplateArgs,
995 RAngleLoc);
996
997 if (Invalid) {
998 // If we failed to parse the template ID but skipped ahead to a >, we're not
999 // going to be able to form a token annotation. Eat the '>' if present.
Alp Tokera3ebe6e2013-12-17 14:12:37 +00001000 TryConsumeToken(tok::greater);
Faisal Vali6a79ca12013-06-08 19:39:00 +00001001 return true;
1002 }
1003
1004 ASTTemplateArgsPtr TemplateArgsPtr(TemplateArgs);
1005
1006 // Build the annotation token.
1007 if (TNK == TNK_Type_template && AllowTypeAnnotation) {
Richard Smith74f02342017-01-19 21:00:13 +00001008 TypeResult Type = Actions.ActOnTemplateIdType(
1009 SS, TemplateKWLoc, Template, TemplateName.Identifier,
1010 TemplateNameLoc, LAngleLoc, TemplateArgsPtr, RAngleLoc);
Faisal Vali6a79ca12013-06-08 19:39:00 +00001011 if (Type.isInvalid()) {
Richard Smith74f02342017-01-19 21:00:13 +00001012 // If we failed to parse the template ID but skipped ahead to a >, we're
1013 // not going to be able to form a token annotation. Eat the '>' if
1014 // present.
Alp Tokera3ebe6e2013-12-17 14:12:37 +00001015 TryConsumeToken(tok::greater);
Faisal Vali6a79ca12013-06-08 19:39:00 +00001016 return true;
1017 }
1018
1019 Tok.setKind(tok::annot_typename);
1020 setTypeAnnotation(Tok, Type.get());
1021 if (SS.isNotEmpty())
1022 Tok.setLocation(SS.getBeginLoc());
1023 else if (TemplateKWLoc.isValid())
1024 Tok.setLocation(TemplateKWLoc);
1025 else
1026 Tok.setLocation(TemplateNameLoc);
1027 } else {
1028 // Build a template-id annotation token that can be processed
1029 // later.
1030 Tok.setKind(tok::annot_template_id);
Faisal Vali43caf672017-05-23 01:07:12 +00001031
1032 IdentifierInfo *TemplateII =
Faisal Vali2ab8c152017-12-30 04:15:27 +00001033 TemplateName.getKind() == UnqualifiedIdKind::IK_Identifier
Faisal Vali43caf672017-05-23 01:07:12 +00001034 ? TemplateName.Identifier
1035 : nullptr;
1036
1037 OverloadedOperatorKind OpKind =
Faisal Vali2ab8c152017-12-30 04:15:27 +00001038 TemplateName.getKind() == UnqualifiedIdKind::IK_Identifier
Faisal Vali43caf672017-05-23 01:07:12 +00001039 ? OO_None
1040 : TemplateName.OperatorFunctionId.Operator;
1041
Dimitry Andrice4f5d012017-12-18 19:46:56 +00001042 TemplateIdAnnotation *TemplateId = TemplateIdAnnotation::Create(
1043 SS, TemplateKWLoc, TemplateNameLoc, TemplateII, OpKind, Template, TNK,
Faisal Vali43caf672017-05-23 01:07:12 +00001044 LAngleLoc, RAngleLoc, TemplateArgs, TemplateIds);
1045
Faisal Vali6a79ca12013-06-08 19:39:00 +00001046 Tok.setAnnotationValue(TemplateId);
1047 if (TemplateKWLoc.isValid())
1048 Tok.setLocation(TemplateKWLoc);
1049 else
1050 Tok.setLocation(TemplateNameLoc);
1051 }
1052
1053 // Common fields for the annotation token
1054 Tok.setAnnotationEndLoc(RAngleLoc);
1055
1056 // In case the tokens were cached, have Preprocessor replace them with the
1057 // annotation token.
1058 PP.AnnotateCachedTokens(Tok);
1059 return false;
1060}
1061
1062/// \brief Replaces a template-id annotation token with a type
1063/// annotation token.
1064///
1065/// If there was a failure when forming the type from the template-id,
1066/// a type annotation token will still be created, but will have a
1067/// NULL type pointer to signify an error.
Richard Smith62559bd2017-02-01 21:36:38 +00001068///
1069/// \param IsClassName Is this template-id appearing in a context where we
1070/// know it names a class, such as in an elaborated-type-specifier or
1071/// base-specifier? ('typename' and 'template' are unneeded and disallowed
1072/// in those contexts.)
1073void Parser::AnnotateTemplateIdTokenAsType(bool IsClassName) {
Faisal Vali6a79ca12013-06-08 19:39:00 +00001074 assert(Tok.is(tok::annot_template_id) && "Requires template-id tokens");
1075
1076 TemplateIdAnnotation *TemplateId = takeTemplateIdAnnotation(Tok);
1077 assert((TemplateId->Kind == TNK_Type_template ||
1078 TemplateId->Kind == TNK_Dependent_template_name) &&
1079 "Only works for type and dependent templates");
1080
1081 ASTTemplateArgsPtr TemplateArgsPtr(TemplateId->getTemplateArgs(),
1082 TemplateId->NumArgs);
1083
1084 TypeResult Type
1085 = Actions.ActOnTemplateIdType(TemplateId->SS,
1086 TemplateId->TemplateKWLoc,
1087 TemplateId->Template,
Richard Smith74f02342017-01-19 21:00:13 +00001088 TemplateId->Name,
Faisal Vali6a79ca12013-06-08 19:39:00 +00001089 TemplateId->TemplateNameLoc,
1090 TemplateId->LAngleLoc,
1091 TemplateArgsPtr,
Richard Smith62559bd2017-02-01 21:36:38 +00001092 TemplateId->RAngleLoc,
1093 /*IsCtorOrDtorName*/false,
1094 IsClassName);
Faisal Vali6a79ca12013-06-08 19:39:00 +00001095 // Create the new "type" annotation token.
1096 Tok.setKind(tok::annot_typename);
David Blaikieefdccaa2016-01-15 23:43:34 +00001097 setTypeAnnotation(Tok, Type.isInvalid() ? nullptr : Type.get());
Faisal Vali6a79ca12013-06-08 19:39:00 +00001098 if (TemplateId->SS.isNotEmpty()) // it was a C++ qualified type name.
1099 Tok.setLocation(TemplateId->SS.getBeginLoc());
1100 // End location stays the same
1101
1102 // Replace the template-id annotation token, and possible the scope-specifier
1103 // that precedes it, with the typename annotation token.
1104 PP.AnnotateCachedTokens(Tok);
1105}
1106
1107/// \brief Determine whether the given token can end a template argument.
1108static bool isEndOfTemplateArgument(Token Tok) {
Daniel Marjamakie59f8d72015-06-18 10:59:26 +00001109 return Tok.isOneOf(tok::comma, tok::greater, tok::greatergreater);
Faisal Vali6a79ca12013-06-08 19:39:00 +00001110}
1111
1112/// \brief Parse a C++ template template argument.
1113ParsedTemplateArgument Parser::ParseTemplateTemplateArgument() {
1114 if (!Tok.is(tok::identifier) && !Tok.is(tok::coloncolon) &&
1115 !Tok.is(tok::annot_cxxscope))
1116 return ParsedTemplateArgument();
1117
1118 // C++0x [temp.arg.template]p1:
1119 // A template-argument for a template template-parameter shall be the name
1120 // of a class template or an alias template, expressed as id-expression.
1121 //
1122 // We parse an id-expression that refers to a class template or alias
1123 // template. The grammar we parse is:
1124 //
1125 // nested-name-specifier[opt] template[opt] identifier ...[opt]
1126 //
1127 // followed by a token that terminates a template argument, such as ',',
1128 // '>', or (in some cases) '>>'.
1129 CXXScopeSpec SS; // nested-name-specifier, if present
David Blaikieefdccaa2016-01-15 23:43:34 +00001130 ParseOptionalCXXScopeSpecifier(SS, nullptr,
Faisal Vali6a79ca12013-06-08 19:39:00 +00001131 /*EnteringContext=*/false);
David Blaikieefdccaa2016-01-15 23:43:34 +00001132
Faisal Vali6a79ca12013-06-08 19:39:00 +00001133 ParsedTemplateArgument Result;
1134 SourceLocation EllipsisLoc;
1135 if (SS.isSet() && Tok.is(tok::kw_template)) {
1136 // Parse the optional 'template' keyword following the
1137 // nested-name-specifier.
1138 SourceLocation TemplateKWLoc = ConsumeToken();
1139
1140 if (Tok.is(tok::identifier)) {
1141 // We appear to have a dependent template name.
1142 UnqualifiedId Name;
1143 Name.setIdentifier(Tok.getIdentifierInfo(), Tok.getLocation());
1144 ConsumeToken(); // the identifier
Alp Toker094e5212014-01-05 03:27:11 +00001145
1146 TryConsumeToken(tok::ellipsis, EllipsisLoc);
1147
Faisal Vali6a79ca12013-06-08 19:39:00 +00001148 // If the next token signals the end of a template argument,
1149 // then we have a dependent template name that could be a template
1150 // template argument.
1151 TemplateTy Template;
1152 if (isEndOfTemplateArgument(Tok) &&
David Blaikieefdccaa2016-01-15 23:43:34 +00001153 Actions.ActOnDependentTemplateName(
1154 getCurScope(), SS, TemplateKWLoc, Name,
1155 /*ObjectType=*/nullptr,
1156 /*EnteringContext=*/false, Template))
Faisal Vali6a79ca12013-06-08 19:39:00 +00001157 Result = ParsedTemplateArgument(SS, Template, Name.StartLocation);
1158 }
1159 } else if (Tok.is(tok::identifier)) {
1160 // We may have a (non-dependent) template name.
1161 TemplateTy Template;
1162 UnqualifiedId Name;
1163 Name.setIdentifier(Tok.getIdentifierInfo(), Tok.getLocation());
1164 ConsumeToken(); // the identifier
Alp Tokera3ebe6e2013-12-17 14:12:37 +00001165
1166 TryConsumeToken(tok::ellipsis, EllipsisLoc);
Faisal Vali6a79ca12013-06-08 19:39:00 +00001167
1168 if (isEndOfTemplateArgument(Tok)) {
1169 bool MemberOfUnknownSpecialization;
David Blaikieefdccaa2016-01-15 23:43:34 +00001170 TemplateNameKind TNK = Actions.isTemplateName(
1171 getCurScope(), SS,
1172 /*hasTemplateKeyword=*/false, Name,
1173 /*ObjectType=*/nullptr,
1174 /*EnteringContext=*/false, Template, MemberOfUnknownSpecialization);
Faisal Vali6a79ca12013-06-08 19:39:00 +00001175 if (TNK == TNK_Dependent_template_name || TNK == TNK_Type_template) {
1176 // We have an id-expression that refers to a class template or
1177 // (C++0x) alias template.
1178 Result = ParsedTemplateArgument(SS, Template, Name.StartLocation);
1179 }
1180 }
1181 }
1182
1183 // If this is a pack expansion, build it as such.
1184 if (EllipsisLoc.isValid() && !Result.isInvalid())
1185 Result = Actions.ActOnPackExpansion(Result, EllipsisLoc);
1186
1187 return Result;
1188}
1189
1190/// ParseTemplateArgument - Parse a C++ template argument (C++ [temp.names]).
1191///
1192/// template-argument: [C++ 14.2]
1193/// constant-expression
1194/// type-id
1195/// id-expression
1196ParsedTemplateArgument Parser::ParseTemplateArgument() {
1197 // C++ [temp.arg]p2:
1198 // In a template-argument, an ambiguity between a type-id and an
1199 // expression is resolved to a type-id, regardless of the form of
1200 // the corresponding template-parameter.
1201 //
Faisal Vali56f1de42017-05-20 19:58:04 +00001202 // Therefore, we initially try to parse a type-id - and isCXXTypeId might look
1203 // up and annotate an identifier as an id-expression during disambiguation,
1204 // so enter the appropriate context for a constant expression template
1205 // argument before trying to disambiguate.
1206
1207 EnterExpressionEvaluationContext EnterConstantEvaluated(
1208 Actions, Sema::ExpressionEvaluationContext::ConstantEvaluated);
Faisal Vali6a79ca12013-06-08 19:39:00 +00001209 if (isCXXTypeId(TypeIdAsTemplateArgument)) {
Faisal Vali421b2d12017-12-29 05:41:00 +00001210 TypeResult TypeArg = ParseTypeName(
Richard Smith77a9c602018-02-28 03:02:23 +00001211 /*Range=*/nullptr, DeclaratorContext::TemplateArgContext);
1212 return Actions.ActOnTemplateTypeArgument(TypeArg);
Faisal Vali6a79ca12013-06-08 19:39:00 +00001213 }
1214
1215 // Try to parse a template template argument.
1216 {
1217 TentativeParsingAction TPA(*this);
1218
1219 ParsedTemplateArgument TemplateTemplateArgument
1220 = ParseTemplateTemplateArgument();
1221 if (!TemplateTemplateArgument.isInvalid()) {
1222 TPA.Commit();
1223 return TemplateTemplateArgument;
1224 }
1225
1226 // Revert this tentative parse to parse a non-type template argument.
1227 TPA.Revert();
1228 }
1229
1230 // Parse a non-type template argument.
1231 SourceLocation Loc = Tok.getLocation();
Faisal Vali56f1de42017-05-20 19:58:04 +00001232 ExprResult ExprArg = ParseConstantExpressionInExprEvalContext(MaybeTypeCast);
Faisal Vali6a79ca12013-06-08 19:39:00 +00001233 if (ExprArg.isInvalid() || !ExprArg.get())
1234 return ParsedTemplateArgument();
1235
1236 return ParsedTemplateArgument(ParsedTemplateArgument::NonType,
Nikola Smiljanic01a75982014-05-29 10:55:11 +00001237 ExprArg.get(), Loc);
Faisal Vali6a79ca12013-06-08 19:39:00 +00001238}
1239
1240/// \brief Determine whether the current tokens can only be parsed as a
1241/// template argument list (starting with the '<') and never as a '<'
1242/// expression.
1243bool Parser::IsTemplateArgumentList(unsigned Skip) {
1244 struct AlwaysRevertAction : TentativeParsingAction {
1245 AlwaysRevertAction(Parser &P) : TentativeParsingAction(P) { }
1246 ~AlwaysRevertAction() { Revert(); }
1247 } Tentative(*this);
1248
1249 while (Skip) {
Richard Smithaf3b3252017-05-18 19:21:48 +00001250 ConsumeAnyToken();
Faisal Vali6a79ca12013-06-08 19:39:00 +00001251 --Skip;
1252 }
1253
1254 // '<'
Alp Tokera3ebe6e2013-12-17 14:12:37 +00001255 if (!TryConsumeToken(tok::less))
Faisal Vali6a79ca12013-06-08 19:39:00 +00001256 return false;
Faisal Vali6a79ca12013-06-08 19:39:00 +00001257
1258 // An empty template argument list.
1259 if (Tok.is(tok::greater))
1260 return true;
1261
1262 // See whether we have declaration specifiers, which indicate a type.
Richard Smithee390432014-05-16 01:56:53 +00001263 while (isCXXDeclarationSpecifier() == TPResult::True)
Richard Smithaf3b3252017-05-18 19:21:48 +00001264 ConsumeAnyToken();
Faisal Vali6a79ca12013-06-08 19:39:00 +00001265
1266 // If we have a '>' or a ',' then this is a template argument list.
Daniel Marjamakie59f8d72015-06-18 10:59:26 +00001267 return Tok.isOneOf(tok::greater, tok::comma);
Faisal Vali6a79ca12013-06-08 19:39:00 +00001268}
1269
1270/// ParseTemplateArgumentList - Parse a C++ template-argument-list
1271/// (C++ [temp.names]). Returns true if there was an error.
1272///
1273/// template-argument-list: [C++ 14.2]
1274/// template-argument
1275/// template-argument-list ',' template-argument
1276bool
1277Parser::ParseTemplateArgumentList(TemplateArgList &TemplateArgs) {
Faisal Vali56f1de42017-05-20 19:58:04 +00001278
Serge Pavlov6a7ffbe2014-04-13 16:52:03 +00001279 ColonProtectionRAIIObject ColonProtection(*this, false);
Faisal Vali6a79ca12013-06-08 19:39:00 +00001280
Alp Tokera3ebe6e2013-12-17 14:12:37 +00001281 do {
Faisal Vali6a79ca12013-06-08 19:39:00 +00001282 ParsedTemplateArgument Arg = ParseTemplateArgument();
Alp Tokera3ebe6e2013-12-17 14:12:37 +00001283 SourceLocation EllipsisLoc;
1284 if (TryConsumeToken(tok::ellipsis, EllipsisLoc))
Faisal Vali6a79ca12013-06-08 19:39:00 +00001285 Arg = Actions.ActOnPackExpansion(Arg, EllipsisLoc);
Faisal Vali6a79ca12013-06-08 19:39:00 +00001286
1287 if (Arg.isInvalid()) {
Alexey Bataevee6507d2013-11-18 08:17:37 +00001288 SkipUntil(tok::comma, tok::greater, StopAtSemi | StopBeforeMatch);
Faisal Vali6a79ca12013-06-08 19:39:00 +00001289 return true;
1290 }
1291
1292 // Save this template argument.
1293 TemplateArgs.push_back(Arg);
1294
1295 // If the next token is a comma, consume it and keep reading
1296 // arguments.
Alp Tokera3ebe6e2013-12-17 14:12:37 +00001297 } while (TryConsumeToken(tok::comma));
Faisal Vali6a79ca12013-06-08 19:39:00 +00001298
1299 return false;
1300}
1301
1302/// \brief Parse a C++ explicit template instantiation
1303/// (C++ [temp.explicit]).
1304///
1305/// explicit-instantiation:
1306/// 'extern' [opt] 'template' declaration
1307///
1308/// Note that the 'extern' is a GNU extension and C++11 feature.
Faisal Vali421b2d12017-12-29 05:41:00 +00001309Decl *Parser::ParseExplicitInstantiation(DeclaratorContext Context,
Faisal Vali6a79ca12013-06-08 19:39:00 +00001310 SourceLocation ExternLoc,
1311 SourceLocation TemplateLoc,
1312 SourceLocation &DeclEnd,
1313 AccessSpecifier AS) {
1314 // This isn't really required here.
1315 ParsingDeclRAIIObject
1316 ParsingTemplateParams(*this, ParsingDeclRAIIObject::NoParent);
1317
1318 return ParseSingleDeclarationAfterTemplate(Context,
1319 ParsedTemplateInfo(ExternLoc,
1320 TemplateLoc),
1321 ParsingTemplateParams,
1322 DeclEnd, AS);
1323}
1324
1325SourceRange Parser::ParsedTemplateInfo::getSourceRange() const {
1326 if (TemplateParams)
1327 return getTemplateParamsRange(TemplateParams->data(),
1328 TemplateParams->size());
1329
1330 SourceRange R(TemplateLoc);
1331 if (ExternLoc.isValid())
1332 R.setBegin(ExternLoc);
1333 return R;
1334}
1335
Richard Smithe40f2ba2013-08-07 21:41:30 +00001336void Parser::LateTemplateParserCallback(void *P, LateParsedTemplate &LPT) {
1337 ((Parser *)P)->ParseLateTemplatedFuncDef(LPT);
Faisal Vali6a79ca12013-06-08 19:39:00 +00001338}
1339
1340/// \brief Late parse a C++ function template in Microsoft mode.
Richard Smithe40f2ba2013-08-07 21:41:30 +00001341void Parser::ParseLateTemplatedFuncDef(LateParsedTemplate &LPT) {
David Majnemerf0a84f22013-08-16 08:29:13 +00001342 if (!LPT.D)
Faisal Vali6a79ca12013-06-08 19:39:00 +00001343 return;
1344
1345 // Get the FunctionDecl.
Alp Tokera2794f92014-01-22 07:29:52 +00001346 FunctionDecl *FunD = LPT.D->getAsFunction();
Faisal Vali6a79ca12013-06-08 19:39:00 +00001347 // Track template parameter depth.
1348 TemplateParameterDepthRAII CurTemplateDepthTracker(TemplateParameterDepth);
1349
1350 // To restore the context after late parsing.
Richard Smithb0b68012015-05-11 23:09:06 +00001351 Sema::ContextRAII GlobalSavedContext(
1352 Actions, Actions.Context.getTranslationUnitDecl());
Faisal Vali6a79ca12013-06-08 19:39:00 +00001353
1354 SmallVector<ParseScope*, 4> TemplateParamScopeStack;
1355
1356 // Get the list of DeclContexts to reenter.
1357 SmallVector<DeclContext*, 4> DeclContextsToReenter;
Hans Wennborgb6d4e8c2014-05-02 02:01:07 +00001358 DeclContext *DD = FunD;
Faisal Vali6a79ca12013-06-08 19:39:00 +00001359 while (DD && !DD->isTranslationUnit()) {
1360 DeclContextsToReenter.push_back(DD);
1361 DD = DD->getLexicalParent();
1362 }
1363
1364 // Reenter template scopes from outermost to innermost.
Craig Topper61ac9062013-07-08 03:55:09 +00001365 SmallVectorImpl<DeclContext *>::reverse_iterator II =
Faisal Vali6a79ca12013-06-08 19:39:00 +00001366 DeclContextsToReenter.rbegin();
1367 for (; II != DeclContextsToReenter.rend(); ++II) {
Hans Wennborgb6d4e8c2014-05-02 02:01:07 +00001368 TemplateParamScopeStack.push_back(new ParseScope(this,
1369 Scope::TemplateParamScope));
1370 unsigned NumParamLists =
1371 Actions.ActOnReenterTemplateScope(getCurScope(), cast<Decl>(*II));
1372 CurTemplateDepthTracker.addDepth(NumParamLists);
1373 if (*II != FunD) {
1374 TemplateParamScopeStack.push_back(new ParseScope(this, Scope::DeclScope));
1375 Actions.PushDeclContext(Actions.getCurScope(), *II);
Faisal Vali6a79ca12013-06-08 19:39:00 +00001376 }
Faisal Vali6a79ca12013-06-08 19:39:00 +00001377 }
Faisal Vali6a79ca12013-06-08 19:39:00 +00001378
Richard Smithe40f2ba2013-08-07 21:41:30 +00001379 assert(!LPT.Toks.empty() && "Empty body!");
Faisal Vali6a79ca12013-06-08 19:39:00 +00001380
1381 // Append the current token at the end of the new token stream so that it
1382 // doesn't get lost.
Richard Smithe40f2ba2013-08-07 21:41:30 +00001383 LPT.Toks.push_back(Tok);
David Blaikie2eabcc92016-02-09 18:52:09 +00001384 PP.EnterTokenStream(LPT.Toks, true);
Faisal Vali6a79ca12013-06-08 19:39:00 +00001385
1386 // Consume the previously pushed token.
1387 ConsumeAnyToken(/*ConsumeCodeCompletionTok=*/true);
Daniel Marjamakie59f8d72015-06-18 10:59:26 +00001388 assert(Tok.isOneOf(tok::l_brace, tok::colon, tok::kw_try) &&
1389 "Inline method not starting with '{', ':' or 'try'");
Faisal Vali6a79ca12013-06-08 19:39:00 +00001390
1391 // Parse the method body. Function body parsing code is similar enough
1392 // to be re-used for method bodies as well.
Momchil Velikov57c681f2017-08-10 15:43:06 +00001393 ParseScope FnScope(this, Scope::FnScope | Scope::DeclScope |
1394 Scope::CompoundStmtScope);
Faisal Vali6a79ca12013-06-08 19:39:00 +00001395
1396 // Recreate the containing function DeclContext.
Nico Weber55048cf2014-08-15 22:15:00 +00001397 Sema::ContextRAII FunctionSavedContext(Actions,
1398 Actions.getContainingDC(FunD));
Faisal Vali6a79ca12013-06-08 19:39:00 +00001399
1400 Actions.ActOnStartOfFunctionDef(getCurScope(), FunD);
1401
1402 if (Tok.is(tok::kw_try)) {
Richard Smithe40f2ba2013-08-07 21:41:30 +00001403 ParseFunctionTryBlock(LPT.D, FnScope);
Faisal Vali6a79ca12013-06-08 19:39:00 +00001404 } else {
1405 if (Tok.is(tok::colon))
Richard Smithe40f2ba2013-08-07 21:41:30 +00001406 ParseConstructorInitializer(LPT.D);
Faisal Vali6a79ca12013-06-08 19:39:00 +00001407 else
Richard Smithe40f2ba2013-08-07 21:41:30 +00001408 Actions.ActOnDefaultCtorInitializers(LPT.D);
Faisal Vali6a79ca12013-06-08 19:39:00 +00001409
1410 if (Tok.is(tok::l_brace)) {
Alp Tokera2794f92014-01-22 07:29:52 +00001411 assert((!isa<FunctionTemplateDecl>(LPT.D) ||
1412 cast<FunctionTemplateDecl>(LPT.D)
1413 ->getTemplateParameters()
Hans Wennborgb6d4e8c2014-05-02 02:01:07 +00001414 ->getDepth() == TemplateParameterDepth - 1) &&
Faisal Vali6a79ca12013-06-08 19:39:00 +00001415 "TemplateParameterDepth should be greater than the depth of "
1416 "current template being instantiated!");
Richard Smithe40f2ba2013-08-07 21:41:30 +00001417 ParseFunctionStatementBody(LPT.D, FnScope);
1418 Actions.UnmarkAsLateParsedTemplate(FunD);
Faisal Vali6a79ca12013-06-08 19:39:00 +00001419 } else
Craig Topper161e4db2014-05-21 06:02:52 +00001420 Actions.ActOnFinishFunctionBody(LPT.D, nullptr);
Faisal Vali6a79ca12013-06-08 19:39:00 +00001421 }
1422
1423 // Exit scopes.
1424 FnScope.Exit();
Craig Topper61ac9062013-07-08 03:55:09 +00001425 SmallVectorImpl<ParseScope *>::reverse_iterator I =
Faisal Vali6a79ca12013-06-08 19:39:00 +00001426 TemplateParamScopeStack.rbegin();
1427 for (; I != TemplateParamScopeStack.rend(); ++I)
1428 delete *I;
Faisal Vali6a79ca12013-06-08 19:39:00 +00001429}
1430
1431/// \brief Lex a delayed template function for late parsing.
1432void Parser::LexTemplateFunctionForLateParsing(CachedTokens &Toks) {
1433 tok::TokenKind kind = Tok.getKind();
1434 if (!ConsumeAndStoreFunctionPrologue(Toks)) {
1435 // Consume everything up to (and including) the matching right brace.
1436 ConsumeAndStoreUntil(tok::r_brace, Toks, /*StopAtSemi=*/false);
1437 }
1438
1439 // If we're in a function-try-block, we need to store all the catch blocks.
1440 if (kind == tok::kw_try) {
1441 while (Tok.is(tok::kw_catch)) {
1442 ConsumeAndStoreUntil(tok::l_brace, Toks, /*StopAtSemi=*/false);
1443 ConsumeAndStoreUntil(tok::r_brace, Toks, /*StopAtSemi=*/false);
1444 }
1445 }
1446}