blob: ebd6f0f5b8e22ab59a9d583105877253d96939dd [file] [log] [blame]
Guy Benyei11169dd2012-12-18 14:30:41 +00001//===--- ParseTentative.cpp - Ambiguity Resolution 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 the tentative parsing portions of the Parser
11// interfaces, for ambiguity resolution.
12//
13//===----------------------------------------------------------------------===//
14
15#include "clang/Parse/Parser.h"
16#include "clang/Parse/ParseDiagnostic.h"
17#include "clang/Sema/ParsedTemplate.h"
18using namespace clang;
19
20/// isCXXDeclarationStatement - C++-specialized function that disambiguates
21/// between a declaration or an expression statement, when parsing function
22/// bodies. Returns true for declaration, false for expression.
23///
24/// declaration-statement:
25/// block-declaration
26///
27/// block-declaration:
28/// simple-declaration
29/// asm-definition
30/// namespace-alias-definition
31/// using-declaration
32/// using-directive
33/// [C++0x] static_assert-declaration
34///
35/// asm-definition:
36/// 'asm' '(' string-literal ')' ';'
37///
38/// namespace-alias-definition:
39/// 'namespace' identifier = qualified-namespace-specifier ';'
40///
41/// using-declaration:
42/// 'using' typename[opt] '::'[opt] nested-name-specifier
43/// unqualified-id ';'
44/// 'using' '::' unqualified-id ;
45///
46/// using-directive:
47/// 'using' 'namespace' '::'[opt] nested-name-specifier[opt]
48/// namespace-name ';'
49///
50bool Parser::isCXXDeclarationStatement() {
51 switch (Tok.getKind()) {
52 // asm-definition
53 case tok::kw_asm:
54 // namespace-alias-definition
55 case tok::kw_namespace:
56 // using-declaration
57 // using-directive
58 case tok::kw_using:
59 // static_assert-declaration
60 case tok::kw_static_assert:
61 case tok::kw__Static_assert:
62 return true;
63 // simple-declaration
64 default:
65 return isCXXSimpleDeclaration(/*AllowForRangeDecl=*/false);
66 }
67}
68
69/// isCXXSimpleDeclaration - C++-specialized function that disambiguates
70/// between a simple-declaration or an expression-statement.
71/// If during the disambiguation process a parsing error is encountered,
72/// the function returns true to let the declaration parsing code handle it.
73/// Returns false if the statement is disambiguated as expression.
74///
75/// simple-declaration:
76/// decl-specifier-seq init-declarator-list[opt] ';'
Richard Smithbdb84f32016-07-22 23:36:59 +000077/// decl-specifier-seq ref-qualifier[opt] '[' identifier-list ']'
78/// brace-or-equal-initializer ';' [C++17]
Guy Benyei11169dd2012-12-18 14:30:41 +000079///
80/// (if AllowForRangeDecl specified)
81/// for ( for-range-declaration : for-range-initializer ) statement
Richard Smithbdb84f32016-07-22 23:36:59 +000082///
Guy Benyei11169dd2012-12-18 14:30:41 +000083/// for-range-declaration:
Richard Smithbdb84f32016-07-22 23:36:59 +000084/// decl-specifier-seq declarator
85/// decl-specifier-seq ref-qualifier[opt] '[' identifier-list ']'
86///
87/// In any of the above cases there can be a preceding attribute-specifier-seq,
88/// but the caller is expected to handle that.
Guy Benyei11169dd2012-12-18 14:30:41 +000089bool Parser::isCXXSimpleDeclaration(bool AllowForRangeDecl) {
90 // C++ 6.8p1:
91 // There is an ambiguity in the grammar involving expression-statements and
92 // declarations: An expression-statement with a function-style explicit type
93 // conversion (5.2.3) as its leftmost subexpression can be indistinguishable
94 // from a declaration where the first declarator starts with a '('. In those
95 // cases the statement is a declaration. [Note: To disambiguate, the whole
96 // statement might have to be examined to determine if it is an
97 // expression-statement or a declaration].
98
99 // C++ 6.8p3:
100 // The disambiguation is purely syntactic; that is, the meaning of the names
101 // occurring in such a statement, beyond whether they are type-names or not,
102 // is not generally used in or changed by the disambiguation. Class
103 // templates are instantiated as necessary to determine if a qualified name
104 // is a type-name. Disambiguation precedes parsing, and a statement
105 // disambiguated as a declaration may be an ill-formed declaration.
106
107 // We don't have to parse all of the decl-specifier-seq part. There's only
108 // an ambiguity if the first decl-specifier is
109 // simple-type-specifier/typename-specifier followed by a '(', which may
110 // indicate a function-style cast expression.
Richard Smithee390432014-05-16 01:56:53 +0000111 // isCXXDeclarationSpecifier will return TPResult::Ambiguous only in such
Guy Benyei11169dd2012-12-18 14:30:41 +0000112 // a case.
113
114 bool InvalidAsDeclaration = false;
Richard Smithee390432014-05-16 01:56:53 +0000115 TPResult TPR = isCXXDeclarationSpecifier(TPResult::False,
Guy Benyei11169dd2012-12-18 14:30:41 +0000116 &InvalidAsDeclaration);
Richard Smithee390432014-05-16 01:56:53 +0000117 if (TPR != TPResult::Ambiguous)
118 return TPR != TPResult::False; // Returns true for TPResult::True or
119 // TPResult::Error.
Guy Benyei11169dd2012-12-18 14:30:41 +0000120
121 // FIXME: TryParseSimpleDeclaration doesn't look past the first initializer,
122 // and so gets some cases wrong. We can't carry on if we've already seen
123 // something which makes this statement invalid as a declaration in this case,
124 // since it can cause us to misparse valid code. Revisit this once
125 // TryParseInitDeclaratorList is fixed.
126 if (InvalidAsDeclaration)
127 return false;
128
129 // FIXME: Add statistics about the number of ambiguous statements encountered
130 // and how they were resolved (number of declarations+number of expressions).
131
132 // Ok, we have a simple-type-specifier/typename-specifier followed by a '(',
133 // or an identifier which doesn't resolve as anything. We need tentative
134 // parsing...
Richard Smith91b73f22016-06-29 21:06:51 +0000135
136 {
137 RevertingTentativeParsingAction PA(*this);
138 TPR = TryParseSimpleDeclaration(AllowForRangeDecl);
139 }
Guy Benyei11169dd2012-12-18 14:30:41 +0000140
141 // In case of an error, let the declaration parsing code handle it.
Richard Smithee390432014-05-16 01:56:53 +0000142 if (TPR == TPResult::Error)
Guy Benyei11169dd2012-12-18 14:30:41 +0000143 return true;
144
145 // Declarations take precedence over expressions.
Richard Smithee390432014-05-16 01:56:53 +0000146 if (TPR == TPResult::Ambiguous)
147 TPR = TPResult::True;
Guy Benyei11169dd2012-12-18 14:30:41 +0000148
Richard Smithee390432014-05-16 01:56:53 +0000149 assert(TPR == TPResult::True || TPR == TPResult::False);
150 return TPR == TPResult::True;
Guy Benyei11169dd2012-12-18 14:30:41 +0000151}
152
Richard Smith1fff95c2013-09-12 23:28:08 +0000153/// Try to consume a token sequence that we've already identified as
154/// (potentially) starting a decl-specifier.
155Parser::TPResult Parser::TryConsumeDeclarationSpecifier() {
156 switch (Tok.getKind()) {
157 case tok::kw__Atomic:
158 if (NextToken().isNot(tok::l_paren)) {
159 ConsumeToken();
160 break;
161 }
162 // Fall through.
163 case tok::kw_typeof:
164 case tok::kw___attribute:
165 case tok::kw___underlying_type: {
166 ConsumeToken();
167 if (Tok.isNot(tok::l_paren))
Richard Smithee390432014-05-16 01:56:53 +0000168 return TPResult::Error;
Richard Smith1fff95c2013-09-12 23:28:08 +0000169 ConsumeParen();
Alexey Bataevee6507d2013-11-18 08:17:37 +0000170 if (!SkipUntil(tok::r_paren))
Richard Smithee390432014-05-16 01:56:53 +0000171 return TPResult::Error;
Richard Smith1fff95c2013-09-12 23:28:08 +0000172 break;
173 }
174
175 case tok::kw_class:
176 case tok::kw_struct:
177 case tok::kw_union:
178 case tok::kw___interface:
179 case tok::kw_enum:
180 // elaborated-type-specifier:
181 // class-key attribute-specifier-seq[opt]
182 // nested-name-specifier[opt] identifier
183 // class-key nested-name-specifier[opt] template[opt] simple-template-id
184 // enum nested-name-specifier[opt] identifier
185 //
186 // FIXME: We don't support class-specifiers nor enum-specifiers here.
187 ConsumeToken();
188
189 // Skip attributes.
Daniel Marjamakie59f8d72015-06-18 10:59:26 +0000190 while (Tok.isOneOf(tok::l_square, tok::kw___attribute, tok::kw___declspec,
191 tok::kw_alignas)) {
Richard Smith1fff95c2013-09-12 23:28:08 +0000192 if (Tok.is(tok::l_square)) {
193 ConsumeBracket();
Alexey Bataevee6507d2013-11-18 08:17:37 +0000194 if (!SkipUntil(tok::r_square))
Richard Smithee390432014-05-16 01:56:53 +0000195 return TPResult::Error;
Richard Smith1fff95c2013-09-12 23:28:08 +0000196 } else {
197 ConsumeToken();
198 if (Tok.isNot(tok::l_paren))
Richard Smithee390432014-05-16 01:56:53 +0000199 return TPResult::Error;
Richard Smith1fff95c2013-09-12 23:28:08 +0000200 ConsumeParen();
Alexey Bataevee6507d2013-11-18 08:17:37 +0000201 if (!SkipUntil(tok::r_paren))
Richard Smithee390432014-05-16 01:56:53 +0000202 return TPResult::Error;
Richard Smith1fff95c2013-09-12 23:28:08 +0000203 }
204 }
205
Daniel Marjamakie59f8d72015-06-18 10:59:26 +0000206 if (Tok.isOneOf(tok::identifier, tok::coloncolon, tok::kw_decltype,
207 tok::annot_template_id) &&
Nico Weberc29c4832014-12-28 23:24:02 +0000208 TryAnnotateCXXScopeToken())
Richard Smithee390432014-05-16 01:56:53 +0000209 return TPResult::Error;
Richard Smith1fff95c2013-09-12 23:28:08 +0000210 if (Tok.is(tok::annot_cxxscope))
Richard Smithaf3b3252017-05-18 19:21:48 +0000211 ConsumeAnnotationToken();
212 if (Tok.is(tok::identifier))
Richard Smith1fff95c2013-09-12 23:28:08 +0000213 ConsumeToken();
Richard Smithaf3b3252017-05-18 19:21:48 +0000214 else if (Tok.is(tok::annot_template_id))
215 ConsumeAnnotationToken();
216 else
Richard Smithee390432014-05-16 01:56:53 +0000217 return TPResult::Error;
Richard Smith1fff95c2013-09-12 23:28:08 +0000218 break;
219
220 case tok::annot_cxxscope:
Richard Smithaf3b3252017-05-18 19:21:48 +0000221 ConsumeAnnotationToken();
Richard Smith1fff95c2013-09-12 23:28:08 +0000222 // Fall through.
223 default:
Richard Smithaf3b3252017-05-18 19:21:48 +0000224 ConsumeAnyToken();
Richard Smith1fff95c2013-09-12 23:28:08 +0000225
226 if (getLangOpts().ObjC1 && Tok.is(tok::less))
227 return TryParseProtocolQualifiers();
228 break;
229 }
230
Richard Smithee390432014-05-16 01:56:53 +0000231 return TPResult::Ambiguous;
Richard Smith1fff95c2013-09-12 23:28:08 +0000232}
233
Guy Benyei11169dd2012-12-18 14:30:41 +0000234/// simple-declaration:
235/// decl-specifier-seq init-declarator-list[opt] ';'
236///
237/// (if AllowForRangeDecl specified)
238/// for ( for-range-declaration : for-range-initializer ) statement
239/// for-range-declaration:
240/// attribute-specifier-seqopt type-specifier-seq declarator
241///
242Parser::TPResult Parser::TryParseSimpleDeclaration(bool AllowForRangeDecl) {
Richard Smithee390432014-05-16 01:56:53 +0000243 if (TryConsumeDeclarationSpecifier() == TPResult::Error)
244 return TPResult::Error;
Guy Benyei11169dd2012-12-18 14:30:41 +0000245
246 // Two decl-specifiers in a row conclusively disambiguate this as being a
247 // simple-declaration. Don't bother calling isCXXDeclarationSpecifier in the
248 // overwhelmingly common case that the next token is a '('.
249 if (Tok.isNot(tok::l_paren)) {
250 TPResult TPR = isCXXDeclarationSpecifier();
Richard Smithee390432014-05-16 01:56:53 +0000251 if (TPR == TPResult::Ambiguous)
252 return TPResult::True;
253 if (TPR == TPResult::True || TPR == TPResult::Error)
Guy Benyei11169dd2012-12-18 14:30:41 +0000254 return TPR;
Richard Smithee390432014-05-16 01:56:53 +0000255 assert(TPR == TPResult::False);
Guy Benyei11169dd2012-12-18 14:30:41 +0000256 }
257
258 TPResult TPR = TryParseInitDeclaratorList();
Richard Smithee390432014-05-16 01:56:53 +0000259 if (TPR != TPResult::Ambiguous)
Guy Benyei11169dd2012-12-18 14:30:41 +0000260 return TPR;
261
262 if (Tok.isNot(tok::semi) && (!AllowForRangeDecl || Tok.isNot(tok::colon)))
Richard Smithee390432014-05-16 01:56:53 +0000263 return TPResult::False;
Guy Benyei11169dd2012-12-18 14:30:41 +0000264
Richard Smithee390432014-05-16 01:56:53 +0000265 return TPResult::Ambiguous;
Guy Benyei11169dd2012-12-18 14:30:41 +0000266}
267
Richard Smith22c7c412013-03-20 03:35:02 +0000268/// Tentatively parse an init-declarator-list in order to disambiguate it from
269/// an expression.
270///
Guy Benyei11169dd2012-12-18 14:30:41 +0000271/// init-declarator-list:
272/// init-declarator
273/// init-declarator-list ',' init-declarator
274///
275/// init-declarator:
276/// declarator initializer[opt]
277/// [GNU] declarator simple-asm-expr[opt] attributes[opt] initializer[opt]
278///
Richard Smith22c7c412013-03-20 03:35:02 +0000279/// initializer:
280/// brace-or-equal-initializer
281/// '(' expression-list ')'
Guy Benyei11169dd2012-12-18 14:30:41 +0000282///
Richard Smith22c7c412013-03-20 03:35:02 +0000283/// brace-or-equal-initializer:
284/// '=' initializer-clause
285/// [C++11] braced-init-list
286///
287/// initializer-clause:
288/// assignment-expression
289/// braced-init-list
290///
291/// braced-init-list:
292/// '{' initializer-list ','[opt] '}'
293/// '{' '}'
Guy Benyei11169dd2012-12-18 14:30:41 +0000294///
295Parser::TPResult Parser::TryParseInitDeclaratorList() {
296 while (1) {
297 // declarator
Justin Bognerd26f95b2015-02-23 22:36:28 +0000298 TPResult TPR = TryParseDeclarator(false/*mayBeAbstract*/);
Richard Smithee390432014-05-16 01:56:53 +0000299 if (TPR != TPResult::Ambiguous)
Guy Benyei11169dd2012-12-18 14:30:41 +0000300 return TPR;
301
302 // [GNU] simple-asm-expr[opt] attributes[opt]
Daniel Marjamakie59f8d72015-06-18 10:59:26 +0000303 if (Tok.isOneOf(tok::kw_asm, tok::kw___attribute))
Richard Smithee390432014-05-16 01:56:53 +0000304 return TPResult::True;
Guy Benyei11169dd2012-12-18 14:30:41 +0000305
306 // initializer[opt]
307 if (Tok.is(tok::l_paren)) {
308 // Parse through the parens.
309 ConsumeParen();
Alexey Bataevee6507d2013-11-18 08:17:37 +0000310 if (!SkipUntil(tok::r_paren, StopAtSemi))
Richard Smithee390432014-05-16 01:56:53 +0000311 return TPResult::Error;
Richard Smith22c7c412013-03-20 03:35:02 +0000312 } else if (Tok.is(tok::l_brace)) {
313 // A left-brace here is sufficient to disambiguate the parse; an
314 // expression can never be followed directly by a braced-init-list.
Richard Smithee390432014-05-16 01:56:53 +0000315 return TPResult::True;
Guy Benyei11169dd2012-12-18 14:30:41 +0000316 } else if (Tok.is(tok::equal) || isTokIdentifier_in()) {
Richard Smith1fff95c2013-09-12 23:28:08 +0000317 // MSVC and g++ won't examine the rest of declarators if '=' is
Guy Benyei11169dd2012-12-18 14:30:41 +0000318 // encountered; they just conclude that we have a declaration.
319 // EDG parses the initializer completely, which is the proper behavior
320 // for this case.
321 //
322 // At present, Clang follows MSVC and g++, since the parser does not have
323 // the ability to parse an expression fully without recording the
324 // results of that parse.
Richard Smith1fff95c2013-09-12 23:28:08 +0000325 // FIXME: Handle this case correctly.
326 //
327 // Also allow 'in' after an Objective-C declaration as in:
328 // for (int (^b)(void) in array). Ideally this should be done in the
Guy Benyei11169dd2012-12-18 14:30:41 +0000329 // context of parsing for-init-statement of a foreach statement only. But,
330 // in any other context 'in' is invalid after a declaration and parser
331 // issues the error regardless of outcome of this decision.
Richard Smith1fff95c2013-09-12 23:28:08 +0000332 // FIXME: Change if above assumption does not hold.
Richard Smithee390432014-05-16 01:56:53 +0000333 return TPResult::True;
Guy Benyei11169dd2012-12-18 14:30:41 +0000334 }
335
Alp Toker97650562014-01-10 11:19:30 +0000336 if (!TryConsumeToken(tok::comma))
Guy Benyei11169dd2012-12-18 14:30:41 +0000337 break;
Guy Benyei11169dd2012-12-18 14:30:41 +0000338 }
339
Richard Smithee390432014-05-16 01:56:53 +0000340 return TPResult::Ambiguous;
Guy Benyei11169dd2012-12-18 14:30:41 +0000341}
342
Richard Smithc7a05a92016-06-29 21:17:59 +0000343struct Parser::ConditionDeclarationOrInitStatementState {
344 Parser &P;
345 bool CanBeExpression = true;
346 bool CanBeCondition = true;
347 bool CanBeInitStatement;
348
349 ConditionDeclarationOrInitStatementState(Parser &P, bool CanBeInitStatement)
350 : P(P), CanBeInitStatement(CanBeInitStatement) {}
351
352 void markNotExpression() {
353 CanBeExpression = false;
354
355 if (CanBeCondition && CanBeInitStatement) {
356 // FIXME: Unify the parsing codepaths for condition variables and
357 // simple-declarations so that we don't need to eagerly figure out which
358 // kind we have here. (Just parse init-declarators until we reach a
359 // semicolon or right paren.)
360 RevertingTentativeParsingAction PA(P);
361 P.SkipUntil(tok::r_paren, tok::semi, StopBeforeMatch);
362 if (P.Tok.isNot(tok::r_paren))
363 CanBeCondition = false;
364 if (P.Tok.isNot(tok::semi))
365 CanBeInitStatement = false;
366 }
367 }
368
369 bool markNotCondition() {
370 CanBeCondition = false;
371 return !CanBeInitStatement || !CanBeExpression;
372 }
373
374 bool update(TPResult IsDecl) {
375 switch (IsDecl) {
376 case TPResult::True:
377 markNotExpression();
378 return true;
379 case TPResult::False:
380 CanBeCondition = CanBeInitStatement = false;
381 return true;
382 case TPResult::Ambiguous:
383 return false;
384 case TPResult::Error:
385 CanBeExpression = CanBeCondition = CanBeInitStatement = false;
386 return true;
387 }
388 llvm_unreachable("unknown tentative parse result");
389 }
390
391 ConditionOrInitStatement result() const {
392 assert(CanBeExpression + CanBeCondition + CanBeInitStatement < 2 &&
393 "result called but not yet resolved");
394 if (CanBeExpression)
395 return ConditionOrInitStatement::Expression;
396 if (CanBeCondition)
397 return ConditionOrInitStatement::ConditionDecl;
398 if (CanBeInitStatement)
399 return ConditionOrInitStatement::InitStmtDecl;
400 return ConditionOrInitStatement::Error;
401 }
402};
403
404/// \brief Disambiguates between a declaration in a condition, a
405/// simple-declaration in an init-statement, and an expression for
406/// a condition of a if/switch statement.
Guy Benyei11169dd2012-12-18 14:30:41 +0000407///
408/// condition:
409/// expression
410/// type-specifier-seq declarator '=' assignment-expression
411/// [C++11] type-specifier-seq declarator '=' initializer-clause
412/// [C++11] type-specifier-seq declarator braced-init-list
413/// [GNU] type-specifier-seq declarator simple-asm-expr[opt] attributes[opt]
414/// '=' assignment-expression
Richard Smithc7a05a92016-06-29 21:17:59 +0000415/// simple-declaration:
416/// decl-specifier-seq init-declarator-list[opt] ';'
Guy Benyei11169dd2012-12-18 14:30:41 +0000417///
Richard Smithc7a05a92016-06-29 21:17:59 +0000418/// Note that, unlike isCXXSimpleDeclaration, we must disambiguate all the way
419/// to the ';' to disambiguate cases like 'int(x))' (an expression) from
420/// 'int(x);' (a simple-declaration in an init-statement).
421Parser::ConditionOrInitStatement
422Parser::isCXXConditionDeclarationOrInitStatement(bool CanBeInitStatement) {
423 ConditionDeclarationOrInitStatementState State(*this, CanBeInitStatement);
Guy Benyei11169dd2012-12-18 14:30:41 +0000424
Richard Smithc7a05a92016-06-29 21:17:59 +0000425 if (State.update(isCXXDeclarationSpecifier()))
426 return State.result();
Guy Benyei11169dd2012-12-18 14:30:41 +0000427
Richard Smithc7a05a92016-06-29 21:17:59 +0000428 // It might be a declaration; we need tentative parsing.
Richard Smith91b73f22016-06-29 21:06:51 +0000429 RevertingTentativeParsingAction PA(*this);
Guy Benyei11169dd2012-12-18 14:30:41 +0000430
Richard Smithc7a05a92016-06-29 21:17:59 +0000431 // FIXME: A tag definition unambiguously tells us this is an init-statement.
432 if (State.update(TryConsumeDeclarationSpecifier()))
433 return State.result();
Guy Benyei11169dd2012-12-18 14:30:41 +0000434 assert(Tok.is(tok::l_paren) && "Expected '('");
435
Richard Smithc7a05a92016-06-29 21:17:59 +0000436 while (true) {
437 // Consume a declarator.
438 if (State.update(TryParseDeclarator(false/*mayBeAbstract*/)))
439 return State.result();
Guy Benyei11169dd2012-12-18 14:30:41 +0000440
Richard Smithc7a05a92016-06-29 21:17:59 +0000441 // Attributes, asm label, or an initializer imply this is not an expression.
442 // FIXME: Disambiguate properly after an = instead of assuming that it's a
443 // valid declaration.
444 if (Tok.isOneOf(tok::equal, tok::kw_asm, tok::kw___attribute) ||
445 (getLangOpts().CPlusPlus11 && Tok.is(tok::l_brace))) {
446 State.markNotExpression();
447 return State.result();
448 }
Guy Benyei11169dd2012-12-18 14:30:41 +0000449
Richard Smithc7a05a92016-06-29 21:17:59 +0000450 // At this point, it can't be a condition any more, because a condition
451 // must have a brace-or-equal-initializer.
452 if (State.markNotCondition())
453 return State.result();
454
455 // A parenthesized initializer could be part of an expression or a
456 // simple-declaration.
457 if (Tok.is(tok::l_paren)) {
458 ConsumeParen();
459 SkipUntil(tok::r_paren, StopAtSemi);
460 }
461
462 if (!TryConsumeToken(tok::comma))
463 break;
Guy Benyei11169dd2012-12-18 14:30:41 +0000464 }
465
Richard Smithc7a05a92016-06-29 21:17:59 +0000466 // We reached the end. If it can now be some kind of decl, then it is.
467 if (State.CanBeCondition && Tok.is(tok::r_paren))
468 return ConditionOrInitStatement::ConditionDecl;
469 else if (State.CanBeInitStatement && Tok.is(tok::semi))
470 return ConditionOrInitStatement::InitStmtDecl;
471 else
472 return ConditionOrInitStatement::Expression;
Guy Benyei11169dd2012-12-18 14:30:41 +0000473}
474
475 /// \brief Determine whether the next set of tokens contains a type-id.
476 ///
477 /// The context parameter states what context we're parsing right
478 /// now, which affects how this routine copes with the token
479 /// following the type-id. If the context is TypeIdInParens, we have
480 /// already parsed the '(' and we will cease lookahead when we hit
481 /// the corresponding ')'. If the context is
482 /// TypeIdAsTemplateArgument, we've already parsed the '<' or ','
483 /// before this template argument, and will cease lookahead when we
Hubert Tong605eaca2017-05-20 00:21:55 +0000484 /// hit a '>', '>>' (in C++0x), or ','; or, in C++0x, an ellipsis immediately
485 /// preceding such. Returns true for a type-id and false for an expression.
486 /// If during the disambiguation process a parsing error is encountered,
487 /// the function returns true to let the declaration parsing code handle it.
Guy Benyei11169dd2012-12-18 14:30:41 +0000488 ///
489 /// type-id:
490 /// type-specifier-seq abstract-declarator[opt]
491 ///
492bool Parser::isCXXTypeId(TentativeCXXTypeIdContext Context, bool &isAmbiguous) {
493
494 isAmbiguous = false;
495
496 // C++ 8.2p2:
497 // The ambiguity arising from the similarity between a function-style cast and
498 // a type-id can occur in different contexts. The ambiguity appears as a
499 // choice between a function-style cast expression and a declaration of a
500 // type. The resolution is that any construct that could possibly be a type-id
501 // in its syntactic context shall be considered a type-id.
502
503 TPResult TPR = isCXXDeclarationSpecifier();
Richard Smithee390432014-05-16 01:56:53 +0000504 if (TPR != TPResult::Ambiguous)
505 return TPR != TPResult::False; // Returns true for TPResult::True or
506 // TPResult::Error.
Guy Benyei11169dd2012-12-18 14:30:41 +0000507
508 // FIXME: Add statistics about the number of ambiguous statements encountered
509 // and how they were resolved (number of declarations+number of expressions).
510
511 // Ok, we have a simple-type-specifier/typename-specifier followed by a '('.
512 // We need tentative parsing...
513
Richard Smith91b73f22016-06-29 21:06:51 +0000514 RevertingTentativeParsingAction PA(*this);
Guy Benyei11169dd2012-12-18 14:30:41 +0000515
516 // type-specifier-seq
Richard Smith1fff95c2013-09-12 23:28:08 +0000517 TryConsumeDeclarationSpecifier();
Guy Benyei11169dd2012-12-18 14:30:41 +0000518 assert(Tok.is(tok::l_paren) && "Expected '('");
519
520 // declarator
Justin Bognerd26f95b2015-02-23 22:36:28 +0000521 TPR = TryParseDeclarator(true/*mayBeAbstract*/, false/*mayHaveIdentifier*/);
Guy Benyei11169dd2012-12-18 14:30:41 +0000522
523 // In case of an error, let the declaration parsing code handle it.
Richard Smithee390432014-05-16 01:56:53 +0000524 if (TPR == TPResult::Error)
525 TPR = TPResult::True;
Guy Benyei11169dd2012-12-18 14:30:41 +0000526
Richard Smithee390432014-05-16 01:56:53 +0000527 if (TPR == TPResult::Ambiguous) {
Guy Benyei11169dd2012-12-18 14:30:41 +0000528 // We are supposed to be inside parens, so if after the abstract declarator
529 // we encounter a ')' this is a type-id, otherwise it's an expression.
530 if (Context == TypeIdInParens && Tok.is(tok::r_paren)) {
Richard Smithee390432014-05-16 01:56:53 +0000531 TPR = TPResult::True;
Guy Benyei11169dd2012-12-18 14:30:41 +0000532 isAmbiguous = true;
533
534 // We are supposed to be inside a template argument, so if after
535 // the abstract declarator we encounter a '>', '>>' (in C++0x), or
Hubert Tong605eaca2017-05-20 00:21:55 +0000536 // ','; or, in C++0x, an ellipsis immediately preceding such, this
537 // is a type-id. Otherwise, it's an expression.
Guy Benyei11169dd2012-12-18 14:30:41 +0000538 } else if (Context == TypeIdAsTemplateArgument &&
Daniel Marjamakie59f8d72015-06-18 10:59:26 +0000539 (Tok.isOneOf(tok::greater, tok::comma) ||
Hubert Tong605eaca2017-05-20 00:21:55 +0000540 (getLangOpts().CPlusPlus11 &&
541 (Tok.is(tok::greatergreater) ||
542 (Tok.is(tok::ellipsis) &&
543 NextToken().isOneOf(tok::greater, tok::greatergreater,
544 tok::comma)))))) {
Richard Smithee390432014-05-16 01:56:53 +0000545 TPR = TPResult::True;
Guy Benyei11169dd2012-12-18 14:30:41 +0000546 isAmbiguous = true;
547
548 } else
Richard Smithee390432014-05-16 01:56:53 +0000549 TPR = TPResult::False;
Guy Benyei11169dd2012-12-18 14:30:41 +0000550 }
551
Richard Smithee390432014-05-16 01:56:53 +0000552 assert(TPR == TPResult::True || TPR == TPResult::False);
553 return TPR == TPResult::True;
Guy Benyei11169dd2012-12-18 14:30:41 +0000554}
555
556/// \brief Returns true if this is a C++11 attribute-specifier. Per
557/// C++11 [dcl.attr.grammar]p6, two consecutive left square bracket tokens
558/// always introduce an attribute. In Objective-C++11, this rule does not
559/// apply if either '[' begins a message-send.
560///
561/// If Disambiguate is true, we try harder to determine whether a '[[' starts
562/// an attribute-specifier, and return CAK_InvalidAttributeSpecifier if not.
563///
564/// If OuterMightBeMessageSend is true, we assume the outer '[' is either an
565/// Obj-C message send or the start of an attribute. Otherwise, we assume it
566/// is not an Obj-C message send.
567///
568/// C++11 [dcl.attr.grammar]:
569///
570/// attribute-specifier:
571/// '[' '[' attribute-list ']' ']'
572/// alignment-specifier
573///
574/// attribute-list:
575/// attribute[opt]
576/// attribute-list ',' attribute[opt]
577/// attribute '...'
578/// attribute-list ',' attribute '...'
579///
580/// attribute:
581/// attribute-token attribute-argument-clause[opt]
582///
583/// attribute-token:
584/// identifier
585/// identifier '::' identifier
586///
587/// attribute-argument-clause:
588/// '(' balanced-token-seq ')'
589Parser::CXX11AttributeKind
590Parser::isCXX11AttributeSpecifier(bool Disambiguate,
591 bool OuterMightBeMessageSend) {
592 if (Tok.is(tok::kw_alignas))
593 return CAK_AttributeSpecifier;
594
595 if (Tok.isNot(tok::l_square) || NextToken().isNot(tok::l_square))
596 return CAK_NotAttributeSpecifier;
597
598 // No tentative parsing if we don't need to look for ']]' or a lambda.
599 if (!Disambiguate && !getLangOpts().ObjC1)
600 return CAK_AttributeSpecifier;
601
Richard Smith91b73f22016-06-29 21:06:51 +0000602 RevertingTentativeParsingAction PA(*this);
Guy Benyei11169dd2012-12-18 14:30:41 +0000603
604 // Opening brackets were checked for above.
605 ConsumeBracket();
606
607 // Outside Obj-C++11, treat anything with a matching ']]' as an attribute.
608 if (!getLangOpts().ObjC1) {
609 ConsumeBracket();
610
Alexey Bataevee6507d2013-11-18 08:17:37 +0000611 bool IsAttribute = SkipUntil(tok::r_square);
Guy Benyei11169dd2012-12-18 14:30:41 +0000612 IsAttribute &= Tok.is(tok::r_square);
613
Guy Benyei11169dd2012-12-18 14:30:41 +0000614 return IsAttribute ? CAK_AttributeSpecifier : CAK_InvalidAttributeSpecifier;
615 }
616
617 // In Obj-C++11, we need to distinguish four situations:
618 // 1a) int x[[attr]]; C++11 attribute.
619 // 1b) [[attr]]; C++11 statement attribute.
620 // 2) int x[[obj](){ return 1; }()]; Lambda in array size/index.
621 // 3a) int x[[obj get]]; Message send in array size/index.
622 // 3b) [[Class alloc] init]; Message send in message send.
623 // 4) [[obj]{ return self; }() doStuff]; Lambda in message send.
624 // (1) is an attribute, (2) is ill-formed, and (3) and (4) are accepted.
625
626 // If we have a lambda-introducer, then this is definitely not a message send.
627 // FIXME: If this disambiguation is too slow, fold the tentative lambda parse
628 // into the tentative attribute parse below.
629 LambdaIntroducer Intro;
630 if (!TryParseLambdaIntroducer(Intro)) {
631 // A lambda cannot end with ']]', and an attribute must.
632 bool IsAttribute = Tok.is(tok::r_square);
633
Guy Benyei11169dd2012-12-18 14:30:41 +0000634 if (IsAttribute)
635 // Case 1: C++11 attribute.
636 return CAK_AttributeSpecifier;
637
638 if (OuterMightBeMessageSend)
639 // Case 4: Lambda in message send.
640 return CAK_NotAttributeSpecifier;
641
642 // Case 2: Lambda in array size / index.
643 return CAK_InvalidAttributeSpecifier;
644 }
645
646 ConsumeBracket();
647
648 // If we don't have a lambda-introducer, then we have an attribute or a
649 // message-send.
650 bool IsAttribute = true;
651 while (Tok.isNot(tok::r_square)) {
652 if (Tok.is(tok::comma)) {
653 // Case 1: Stray commas can only occur in attributes.
Guy Benyei11169dd2012-12-18 14:30:41 +0000654 return CAK_AttributeSpecifier;
655 }
656
657 // Parse the attribute-token, if present.
658 // C++11 [dcl.attr.grammar]:
659 // If a keyword or an alternative token that satisfies the syntactic
660 // requirements of an identifier is contained in an attribute-token,
661 // it is considered an identifier.
662 SourceLocation Loc;
663 if (!TryParseCXX11AttributeIdentifier(Loc)) {
664 IsAttribute = false;
665 break;
666 }
667 if (Tok.is(tok::coloncolon)) {
668 ConsumeToken();
669 if (!TryParseCXX11AttributeIdentifier(Loc)) {
670 IsAttribute = false;
671 break;
672 }
673 }
674
675 // Parse the attribute-argument-clause, if present.
676 if (Tok.is(tok::l_paren)) {
677 ConsumeParen();
Alexey Bataevee6507d2013-11-18 08:17:37 +0000678 if (!SkipUntil(tok::r_paren)) {
Guy Benyei11169dd2012-12-18 14:30:41 +0000679 IsAttribute = false;
680 break;
681 }
682 }
683
Alp Toker97650562014-01-10 11:19:30 +0000684 TryConsumeToken(tok::ellipsis);
Guy Benyei11169dd2012-12-18 14:30:41 +0000685
Alp Toker97650562014-01-10 11:19:30 +0000686 if (!TryConsumeToken(tok::comma))
Guy Benyei11169dd2012-12-18 14:30:41 +0000687 break;
Guy Benyei11169dd2012-12-18 14:30:41 +0000688 }
689
690 // An attribute must end ']]'.
691 if (IsAttribute) {
692 if (Tok.is(tok::r_square)) {
693 ConsumeBracket();
694 IsAttribute = Tok.is(tok::r_square);
695 } else {
696 IsAttribute = false;
697 }
698 }
699
Guy Benyei11169dd2012-12-18 14:30:41 +0000700 if (IsAttribute)
701 // Case 1: C++11 statement attribute.
702 return CAK_AttributeSpecifier;
703
704 // Case 3: Message send.
705 return CAK_NotAttributeSpecifier;
706}
707
Richard Smith1fff95c2013-09-12 23:28:08 +0000708Parser::TPResult Parser::TryParsePtrOperatorSeq() {
709 while (true) {
Daniel Marjamakie59f8d72015-06-18 10:59:26 +0000710 if (Tok.isOneOf(tok::coloncolon, tok::identifier))
Richard Smith1fff95c2013-09-12 23:28:08 +0000711 if (TryAnnotateCXXScopeToken(true))
Richard Smithee390432014-05-16 01:56:53 +0000712 return TPResult::Error;
Richard Smith1fff95c2013-09-12 23:28:08 +0000713
Daniel Marjamakie59f8d72015-06-18 10:59:26 +0000714 if (Tok.isOneOf(tok::star, tok::amp, tok::caret, tok::ampamp) ||
Richard Smith1fff95c2013-09-12 23:28:08 +0000715 (Tok.is(tok::annot_cxxscope) && NextToken().is(tok::star))) {
716 // ptr-operator
Richard Smithaf3b3252017-05-18 19:21:48 +0000717 ConsumeAnyToken();
Douglas Gregor261a89b2015-06-19 17:51:05 +0000718 while (Tok.isOneOf(tok::kw_const, tok::kw_volatile, tok::kw_restrict,
Douglas Gregoraea7afd2015-06-24 22:02:08 +0000719 tok::kw__Nonnull, tok::kw__Nullable,
720 tok::kw__Null_unspecified))
Richard Smith1fff95c2013-09-12 23:28:08 +0000721 ConsumeToken();
722 } else {
Justin Bognerd26f95b2015-02-23 22:36:28 +0000723 return TPResult::True;
Richard Smith1fff95c2013-09-12 23:28:08 +0000724 }
725 }
726}
727
728/// operator-function-id:
729/// 'operator' operator
730///
731/// operator: one of
732/// new delete new[] delete[] + - * / % ^ [...]
733///
734/// conversion-function-id:
735/// 'operator' conversion-type-id
736///
737/// conversion-type-id:
738/// type-specifier-seq conversion-declarator[opt]
739///
740/// conversion-declarator:
741/// ptr-operator conversion-declarator[opt]
742///
743/// literal-operator-id:
744/// 'operator' string-literal identifier
745/// 'operator' user-defined-string-literal
746Parser::TPResult Parser::TryParseOperatorId() {
747 assert(Tok.is(tok::kw_operator));
748 ConsumeToken();
749
750 // Maybe this is an operator-function-id.
751 switch (Tok.getKind()) {
752 case tok::kw_new: case tok::kw_delete:
753 ConsumeToken();
754 if (Tok.is(tok::l_square) && NextToken().is(tok::r_square)) {
755 ConsumeBracket();
756 ConsumeBracket();
757 }
Richard Smithee390432014-05-16 01:56:53 +0000758 return TPResult::True;
Richard Smith1fff95c2013-09-12 23:28:08 +0000759
760#define OVERLOADED_OPERATOR(Name, Spelling, Token, Unary, Binary, MemOnly) \
761 case tok::Token:
762#define OVERLOADED_OPERATOR_MULTI(Name, Spelling, Unary, Binary, MemOnly)
763#include "clang/Basic/OperatorKinds.def"
764 ConsumeToken();
Richard Smithee390432014-05-16 01:56:53 +0000765 return TPResult::True;
Richard Smith1fff95c2013-09-12 23:28:08 +0000766
767 case tok::l_square:
768 if (NextToken().is(tok::r_square)) {
769 ConsumeBracket();
770 ConsumeBracket();
Richard Smithee390432014-05-16 01:56:53 +0000771 return TPResult::True;
Richard Smith1fff95c2013-09-12 23:28:08 +0000772 }
773 break;
774
775 case tok::l_paren:
776 if (NextToken().is(tok::r_paren)) {
777 ConsumeParen();
778 ConsumeParen();
Richard Smithee390432014-05-16 01:56:53 +0000779 return TPResult::True;
Richard Smith1fff95c2013-09-12 23:28:08 +0000780 }
781 break;
782
783 default:
784 break;
785 }
786
787 // Maybe this is a literal-operator-id.
788 if (getLangOpts().CPlusPlus11 && isTokenStringLiteral()) {
789 bool FoundUDSuffix = false;
790 do {
791 FoundUDSuffix |= Tok.hasUDSuffix();
792 ConsumeStringToken();
793 } while (isTokenStringLiteral());
794
795 if (!FoundUDSuffix) {
796 if (Tok.is(tok::identifier))
797 ConsumeToken();
798 else
Richard Smithee390432014-05-16 01:56:53 +0000799 return TPResult::Error;
Richard Smith1fff95c2013-09-12 23:28:08 +0000800 }
Richard Smithee390432014-05-16 01:56:53 +0000801 return TPResult::True;
Richard Smith1fff95c2013-09-12 23:28:08 +0000802 }
803
804 // Maybe this is a conversion-function-id.
805 bool AnyDeclSpecifiers = false;
806 while (true) {
807 TPResult TPR = isCXXDeclarationSpecifier();
Richard Smithee390432014-05-16 01:56:53 +0000808 if (TPR == TPResult::Error)
Richard Smith1fff95c2013-09-12 23:28:08 +0000809 return TPR;
Richard Smithee390432014-05-16 01:56:53 +0000810 if (TPR == TPResult::False) {
Richard Smith1fff95c2013-09-12 23:28:08 +0000811 if (!AnyDeclSpecifiers)
Richard Smithee390432014-05-16 01:56:53 +0000812 return TPResult::Error;
Richard Smith1fff95c2013-09-12 23:28:08 +0000813 break;
814 }
Richard Smithee390432014-05-16 01:56:53 +0000815 if (TryConsumeDeclarationSpecifier() == TPResult::Error)
816 return TPResult::Error;
Richard Smith1fff95c2013-09-12 23:28:08 +0000817 AnyDeclSpecifiers = true;
818 }
Justin Bognerd26f95b2015-02-23 22:36:28 +0000819 return TryParsePtrOperatorSeq();
Richard Smith1fff95c2013-09-12 23:28:08 +0000820}
821
Guy Benyei11169dd2012-12-18 14:30:41 +0000822/// declarator:
823/// direct-declarator
824/// ptr-operator declarator
825///
826/// direct-declarator:
827/// declarator-id
828/// direct-declarator '(' parameter-declaration-clause ')'
829/// cv-qualifier-seq[opt] exception-specification[opt]
830/// direct-declarator '[' constant-expression[opt] ']'
831/// '(' declarator ')'
832/// [GNU] '(' attributes declarator ')'
833///
834/// abstract-declarator:
835/// ptr-operator abstract-declarator[opt]
836/// direct-abstract-declarator
Guy Benyei11169dd2012-12-18 14:30:41 +0000837///
838/// direct-abstract-declarator:
839/// direct-abstract-declarator[opt]
Hubert Tong605eaca2017-05-20 00:21:55 +0000840/// '(' parameter-declaration-clause ')' cv-qualifier-seq[opt]
Guy Benyei11169dd2012-12-18 14:30:41 +0000841/// exception-specification[opt]
842/// direct-abstract-declarator[opt] '[' constant-expression[opt] ']'
843/// '(' abstract-declarator ')'
Hubert Tong605eaca2017-05-20 00:21:55 +0000844/// [C++0x] ...
Guy Benyei11169dd2012-12-18 14:30:41 +0000845///
846/// ptr-operator:
847/// '*' cv-qualifier-seq[opt]
848/// '&'
849/// [C++0x] '&&' [TODO]
850/// '::'[opt] nested-name-specifier '*' cv-qualifier-seq[opt]
851///
852/// cv-qualifier-seq:
853/// cv-qualifier cv-qualifier-seq[opt]
854///
855/// cv-qualifier:
856/// 'const'
857/// 'volatile'
858///
859/// declarator-id:
860/// '...'[opt] id-expression
861///
862/// id-expression:
863/// unqualified-id
864/// qualified-id [TODO]
865///
866/// unqualified-id:
867/// identifier
Richard Smith1fff95c2013-09-12 23:28:08 +0000868/// operator-function-id
869/// conversion-function-id
870/// literal-operator-id
Guy Benyei11169dd2012-12-18 14:30:41 +0000871/// '~' class-name [TODO]
Richard Smith1fff95c2013-09-12 23:28:08 +0000872/// '~' decltype-specifier [TODO]
Guy Benyei11169dd2012-12-18 14:30:41 +0000873/// template-id [TODO]
874///
Justin Bognerd26f95b2015-02-23 22:36:28 +0000875Parser::TPResult Parser::TryParseDeclarator(bool mayBeAbstract,
Richard Smithe303e352018-02-02 22:24:54 +0000876 bool mayHaveIdentifier,
877 bool mayHaveDirectInit) {
Guy Benyei11169dd2012-12-18 14:30:41 +0000878 // declarator:
879 // direct-declarator
880 // ptr-operator declarator
Justin Bognerd26f95b2015-02-23 22:36:28 +0000881 if (TryParsePtrOperatorSeq() == TPResult::Error)
882 return TPResult::Error;
Guy Benyei11169dd2012-12-18 14:30:41 +0000883
884 // direct-declarator:
885 // direct-abstract-declarator:
886 if (Tok.is(tok::ellipsis))
887 ConsumeToken();
Richard Smith1fff95c2013-09-12 23:28:08 +0000888
Daniel Marjamakie59f8d72015-06-18 10:59:26 +0000889 if ((Tok.isOneOf(tok::identifier, tok::kw_operator) ||
Richard Smith1fff95c2013-09-12 23:28:08 +0000890 (Tok.is(tok::annot_cxxscope) && (NextToken().is(tok::identifier) ||
891 NextToken().is(tok::kw_operator)))) &&
Justin Bognerd26f95b2015-02-23 22:36:28 +0000892 mayHaveIdentifier) {
Guy Benyei11169dd2012-12-18 14:30:41 +0000893 // declarator-id
894 if (Tok.is(tok::annot_cxxscope))
Richard Smithaf3b3252017-05-18 19:21:48 +0000895 ConsumeAnnotationToken();
Richard Smith1fff95c2013-09-12 23:28:08 +0000896 else if (Tok.is(tok::identifier))
Guy Benyei11169dd2012-12-18 14:30:41 +0000897 TentativelyDeclaredIdentifiers.push_back(Tok.getIdentifierInfo());
Richard Smith1fff95c2013-09-12 23:28:08 +0000898 if (Tok.is(tok::kw_operator)) {
Richard Smithee390432014-05-16 01:56:53 +0000899 if (TryParseOperatorId() == TPResult::Error)
900 return TPResult::Error;
Richard Smith1fff95c2013-09-12 23:28:08 +0000901 } else
902 ConsumeToken();
Guy Benyei11169dd2012-12-18 14:30:41 +0000903 } else if (Tok.is(tok::l_paren)) {
904 ConsumeParen();
Justin Bognerd26f95b2015-02-23 22:36:28 +0000905 if (mayBeAbstract &&
Guy Benyei11169dd2012-12-18 14:30:41 +0000906 (Tok.is(tok::r_paren) || // 'int()' is a function.
907 // 'int(...)' is a function.
908 (Tok.is(tok::ellipsis) && NextToken().is(tok::r_paren)) ||
909 isDeclarationSpecifier())) { // 'int(int)' is a function.
910 // '(' parameter-declaration-clause ')' cv-qualifier-seq[opt]
911 // exception-specification[opt]
Justin Bognerd26f95b2015-02-23 22:36:28 +0000912 TPResult TPR = TryParseFunctionDeclarator();
Richard Smithee390432014-05-16 01:56:53 +0000913 if (TPR != TPResult::Ambiguous)
Guy Benyei11169dd2012-12-18 14:30:41 +0000914 return TPR;
915 } else {
916 // '(' declarator ')'
917 // '(' attributes declarator ')'
918 // '(' abstract-declarator ')'
Daniel Marjamakie59f8d72015-06-18 10:59:26 +0000919 if (Tok.isOneOf(tok::kw___attribute, tok::kw___declspec, tok::kw___cdecl,
920 tok::kw___stdcall, tok::kw___fastcall, tok::kw___thiscall,
Erich Keane757d3172016-11-02 18:29:35 +0000921 tok::kw___regcall, tok::kw___vectorcall))
Richard Smithee390432014-05-16 01:56:53 +0000922 return TPResult::True; // attributes indicate declaration
Justin Bognerd26f95b2015-02-23 22:36:28 +0000923 TPResult TPR = TryParseDeclarator(mayBeAbstract, mayHaveIdentifier);
Richard Smithee390432014-05-16 01:56:53 +0000924 if (TPR != TPResult::Ambiguous)
Guy Benyei11169dd2012-12-18 14:30:41 +0000925 return TPR;
926 if (Tok.isNot(tok::r_paren))
Richard Smithee390432014-05-16 01:56:53 +0000927 return TPResult::False;
Guy Benyei11169dd2012-12-18 14:30:41 +0000928 ConsumeParen();
929 }
Justin Bognerd26f95b2015-02-23 22:36:28 +0000930 } else if (!mayBeAbstract) {
Richard Smithee390432014-05-16 01:56:53 +0000931 return TPResult::False;
Guy Benyei11169dd2012-12-18 14:30:41 +0000932 }
933
Richard Smithe303e352018-02-02 22:24:54 +0000934 if (mayHaveDirectInit)
935 return TPResult::Ambiguous;
936
Guy Benyei11169dd2012-12-18 14:30:41 +0000937 while (1) {
Richard Smithee390432014-05-16 01:56:53 +0000938 TPResult TPR(TPResult::Ambiguous);
Guy Benyei11169dd2012-12-18 14:30:41 +0000939
Guy Benyei11169dd2012-12-18 14:30:41 +0000940 if (Tok.is(tok::l_paren)) {
941 // Check whether we have a function declarator or a possible ctor-style
942 // initializer that follows the declarator. Note that ctor-style
943 // initializers are not possible in contexts where abstract declarators
944 // are allowed.
Justin Bognerd26f95b2015-02-23 22:36:28 +0000945 if (!mayBeAbstract && !isCXXFunctionDeclarator())
Guy Benyei11169dd2012-12-18 14:30:41 +0000946 break;
947
948 // direct-declarator '(' parameter-declaration-clause ')'
949 // cv-qualifier-seq[opt] exception-specification[opt]
950 ConsumeParen();
Justin Bognerd26f95b2015-02-23 22:36:28 +0000951 TPR = TryParseFunctionDeclarator();
Guy Benyei11169dd2012-12-18 14:30:41 +0000952 } else if (Tok.is(tok::l_square)) {
953 // direct-declarator '[' constant-expression[opt] ']'
954 // direct-abstract-declarator[opt] '[' constant-expression[opt] ']'
955 TPR = TryParseBracketDeclarator();
956 } else {
957 break;
958 }
959
Richard Smithee390432014-05-16 01:56:53 +0000960 if (TPR != TPResult::Ambiguous)
Guy Benyei11169dd2012-12-18 14:30:41 +0000961 return TPR;
962 }
963
Richard Smithee390432014-05-16 01:56:53 +0000964 return TPResult::Ambiguous;
Guy Benyei11169dd2012-12-18 14:30:41 +0000965}
966
967Parser::TPResult
968Parser::isExpressionOrTypeSpecifierSimple(tok::TokenKind Kind) {
969 switch (Kind) {
970 // Obviously starts an expression.
971 case tok::numeric_constant:
972 case tok::char_constant:
973 case tok::wide_char_constant:
Richard Smith3e3a7052014-11-08 06:08:42 +0000974 case tok::utf8_char_constant:
Guy Benyei11169dd2012-12-18 14:30:41 +0000975 case tok::utf16_char_constant:
976 case tok::utf32_char_constant:
977 case tok::string_literal:
978 case tok::wide_string_literal:
979 case tok::utf8_string_literal:
980 case tok::utf16_string_literal:
981 case tok::utf32_string_literal:
982 case tok::l_square:
983 case tok::l_paren:
984 case tok::amp:
985 case tok::ampamp:
986 case tok::star:
987 case tok::plus:
988 case tok::plusplus:
989 case tok::minus:
990 case tok::minusminus:
991 case tok::tilde:
992 case tok::exclaim:
993 case tok::kw_sizeof:
994 case tok::kw___func__:
995 case tok::kw_const_cast:
996 case tok::kw_delete:
997 case tok::kw_dynamic_cast:
998 case tok::kw_false:
999 case tok::kw_new:
1000 case tok::kw_operator:
1001 case tok::kw_reinterpret_cast:
1002 case tok::kw_static_cast:
1003 case tok::kw_this:
1004 case tok::kw_throw:
1005 case tok::kw_true:
1006 case tok::kw_typeid:
1007 case tok::kw_alignof:
1008 case tok::kw_noexcept:
1009 case tok::kw_nullptr:
1010 case tok::kw__Alignof:
1011 case tok::kw___null:
1012 case tok::kw___alignof:
1013 case tok::kw___builtin_choose_expr:
1014 case tok::kw___builtin_offsetof:
Guy Benyei11169dd2012-12-18 14:30:41 +00001015 case tok::kw___builtin_va_arg:
1016 case tok::kw___imag:
1017 case tok::kw___real:
1018 case tok::kw___FUNCTION__:
David Majnemerbed356a2013-11-06 23:31:56 +00001019 case tok::kw___FUNCDNAME__:
Reid Kleckner52eddda2014-04-08 18:13:24 +00001020 case tok::kw___FUNCSIG__:
Guy Benyei11169dd2012-12-18 14:30:41 +00001021 case tok::kw_L__FUNCTION__:
1022 case tok::kw___PRETTY_FUNCTION__:
Guy Benyei11169dd2012-12-18 14:30:41 +00001023 case tok::kw___uuidof:
Alp Toker40f9b1c2013-12-12 21:23:03 +00001024#define TYPE_TRAIT(N,Spelling,K) \
1025 case tok::kw_##Spelling:
1026#include "clang/Basic/TokenKinds.def"
Richard Smithee390432014-05-16 01:56:53 +00001027 return TPResult::True;
Guy Benyei11169dd2012-12-18 14:30:41 +00001028
1029 // Obviously starts a type-specifier-seq:
1030 case tok::kw_char:
1031 case tok::kw_const:
1032 case tok::kw_double:
Sjoerd Meijercc623ad2017-09-08 15:15:00 +00001033 case tok::kw__Float16:
Nemanja Ivanovicbb1ea2d2016-05-09 08:52:33 +00001034 case tok::kw___float128:
Guy Benyei11169dd2012-12-18 14:30:41 +00001035 case tok::kw_enum:
1036 case tok::kw_half:
1037 case tok::kw_float:
1038 case tok::kw_int:
1039 case tok::kw_long:
1040 case tok::kw___int64:
1041 case tok::kw___int128:
1042 case tok::kw_restrict:
1043 case tok::kw_short:
1044 case tok::kw_signed:
1045 case tok::kw_struct:
1046 case tok::kw_union:
1047 case tok::kw_unsigned:
1048 case tok::kw_void:
1049 case tok::kw_volatile:
1050 case tok::kw__Bool:
1051 case tok::kw__Complex:
1052 case tok::kw_class:
1053 case tok::kw_typename:
1054 case tok::kw_wchar_t:
1055 case tok::kw_char16_t:
1056 case tok::kw_char32_t:
Guy Benyei11169dd2012-12-18 14:30:41 +00001057 case tok::kw__Decimal32:
1058 case tok::kw__Decimal64:
1059 case tok::kw__Decimal128:
Richard Smith1fff95c2013-09-12 23:28:08 +00001060 case tok::kw___interface:
Guy Benyei11169dd2012-12-18 14:30:41 +00001061 case tok::kw___thread:
Richard Smithb4a9e862013-04-12 22:46:28 +00001062 case tok::kw_thread_local:
1063 case tok::kw__Thread_local:
Guy Benyei11169dd2012-12-18 14:30:41 +00001064 case tok::kw_typeof:
Richard Smith1fff95c2013-09-12 23:28:08 +00001065 case tok::kw___underlying_type:
Guy Benyei11169dd2012-12-18 14:30:41 +00001066 case tok::kw___cdecl:
1067 case tok::kw___stdcall:
1068 case tok::kw___fastcall:
1069 case tok::kw___thiscall:
Erich Keane757d3172016-11-02 18:29:35 +00001070 case tok::kw___regcall:
Reid Klecknerd7857f02014-10-24 17:42:17 +00001071 case tok::kw___vectorcall:
Guy Benyei11169dd2012-12-18 14:30:41 +00001072 case tok::kw___unaligned:
1073 case tok::kw___vector:
1074 case tok::kw___pixel:
Bill Seurercf2c96b2015-01-12 19:35:51 +00001075 case tok::kw___bool:
Guy Benyei11169dd2012-12-18 14:30:41 +00001076 case tok::kw__Atomic:
Alexey Bader954ba212016-04-08 13:40:33 +00001077#define GENERIC_IMAGE_TYPE(ImgType, Id) case tok::kw_##ImgType##_t:
Alexey Baderb62f1442016-04-13 08:33:41 +00001078#include "clang/Basic/OpenCLImageTypes.def"
Guy Benyei11169dd2012-12-18 14:30:41 +00001079 case tok::kw___unknown_anytype:
Richard Smithee390432014-05-16 01:56:53 +00001080 return TPResult::False;
Guy Benyei11169dd2012-12-18 14:30:41 +00001081
1082 default:
1083 break;
1084 }
1085
Richard Smithee390432014-05-16 01:56:53 +00001086 return TPResult::Ambiguous;
Guy Benyei11169dd2012-12-18 14:30:41 +00001087}
1088
1089bool Parser::isTentativelyDeclared(IdentifierInfo *II) {
1090 return std::find(TentativelyDeclaredIdentifiers.begin(),
1091 TentativelyDeclaredIdentifiers.end(), II)
1092 != TentativelyDeclaredIdentifiers.end();
1093}
1094
Kaelyn Takata445b0652014-11-05 00:09:29 +00001095namespace {
1096class TentativeParseCCC : public CorrectionCandidateCallback {
1097public:
1098 TentativeParseCCC(const Token &Next) {
1099 WantRemainingKeywords = false;
Daniel Marjamakie59f8d72015-06-18 10:59:26 +00001100 WantTypeSpecifiers = Next.isOneOf(tok::l_paren, tok::r_paren, tok::greater,
1101 tok::l_brace, tok::identifier);
Kaelyn Takata445b0652014-11-05 00:09:29 +00001102 }
1103
1104 bool ValidateCandidate(const TypoCorrection &Candidate) override {
1105 // Reject any candidate that only resolves to instance members since they
1106 // aren't viable as standalone identifiers instead of member references.
1107 if (Candidate.isResolved() && !Candidate.isKeyword() &&
1108 std::all_of(Candidate.begin(), Candidate.end(),
1109 [](NamedDecl *ND) { return ND->isCXXInstanceMember(); }))
1110 return false;
1111
1112 return CorrectionCandidateCallback::ValidateCandidate(Candidate);
1113 }
1114};
Alexander Kornienkoab9db512015-06-22 23:07:51 +00001115}
Richard Smithee390432014-05-16 01:56:53 +00001116/// isCXXDeclarationSpecifier - Returns TPResult::True if it is a declaration
1117/// specifier, TPResult::False if it is not, TPResult::Ambiguous if it could
1118/// be either a decl-specifier or a function-style cast, and TPResult::Error
Guy Benyei11169dd2012-12-18 14:30:41 +00001119/// if a parsing error was found and reported.
1120///
1121/// If HasMissingTypename is provided, a name with a dependent scope specifier
1122/// will be treated as ambiguous if the 'typename' keyword is missing. If this
1123/// happens, *HasMissingTypename will be set to 'true'. This will also be used
1124/// as an indicator that undeclared identifiers (which will trigger a later
Richard Smithee390432014-05-16 01:56:53 +00001125/// parse error) should be treated as types. Returns TPResult::Ambiguous in
Guy Benyei11169dd2012-12-18 14:30:41 +00001126/// such cases.
1127///
1128/// decl-specifier:
1129/// storage-class-specifier
1130/// type-specifier
1131/// function-specifier
1132/// 'friend'
1133/// 'typedef'
Richard Smithb4a9e862013-04-12 22:46:28 +00001134/// [C++11] 'constexpr'
Guy Benyei11169dd2012-12-18 14:30:41 +00001135/// [GNU] attributes declaration-specifiers[opt]
1136///
1137/// storage-class-specifier:
1138/// 'register'
1139/// 'static'
1140/// 'extern'
1141/// 'mutable'
1142/// 'auto'
1143/// [GNU] '__thread'
Richard Smithb4a9e862013-04-12 22:46:28 +00001144/// [C++11] 'thread_local'
1145/// [C11] '_Thread_local'
Guy Benyei11169dd2012-12-18 14:30:41 +00001146///
1147/// function-specifier:
1148/// 'inline'
1149/// 'virtual'
1150/// 'explicit'
1151///
1152/// typedef-name:
1153/// identifier
1154///
1155/// type-specifier:
1156/// simple-type-specifier
1157/// class-specifier
1158/// enum-specifier
1159/// elaborated-type-specifier
1160/// typename-specifier
1161/// cv-qualifier
1162///
1163/// simple-type-specifier:
1164/// '::'[opt] nested-name-specifier[opt] type-name
1165/// '::'[opt] nested-name-specifier 'template'
1166/// simple-template-id [TODO]
1167/// 'char'
1168/// 'wchar_t'
1169/// 'bool'
1170/// 'short'
1171/// 'int'
1172/// 'long'
1173/// 'signed'
1174/// 'unsigned'
1175/// 'float'
1176/// 'double'
1177/// 'void'
1178/// [GNU] typeof-specifier
1179/// [GNU] '_Complex'
Richard Smithb4a9e862013-04-12 22:46:28 +00001180/// [C++11] 'auto'
Richard Smithe301ba22015-11-11 02:02:15 +00001181/// [GNU] '__auto_type'
Richard Smithb4a9e862013-04-12 22:46:28 +00001182/// [C++11] 'decltype' ( expression )
Richard Smith74aeef52013-04-26 16:15:35 +00001183/// [C++1y] 'decltype' ( 'auto' )
Guy Benyei11169dd2012-12-18 14:30:41 +00001184///
1185/// type-name:
1186/// class-name
1187/// enum-name
1188/// typedef-name
1189///
1190/// elaborated-type-specifier:
1191/// class-key '::'[opt] nested-name-specifier[opt] identifier
1192/// class-key '::'[opt] nested-name-specifier[opt] 'template'[opt]
1193/// simple-template-id
1194/// 'enum' '::'[opt] nested-name-specifier[opt] identifier
1195///
1196/// enum-name:
1197/// identifier
1198///
1199/// enum-specifier:
1200/// 'enum' identifier[opt] '{' enumerator-list[opt] '}'
1201/// 'enum' identifier[opt] '{' enumerator-list ',' '}'
1202///
1203/// class-specifier:
1204/// class-head '{' member-specification[opt] '}'
1205///
1206/// class-head:
1207/// class-key identifier[opt] base-clause[opt]
1208/// class-key nested-name-specifier identifier base-clause[opt]
1209/// class-key nested-name-specifier[opt] simple-template-id
1210/// base-clause[opt]
1211///
1212/// class-key:
1213/// 'class'
1214/// 'struct'
1215/// 'union'
1216///
1217/// cv-qualifier:
1218/// 'const'
1219/// 'volatile'
1220/// [GNU] restrict
1221///
1222Parser::TPResult
1223Parser::isCXXDeclarationSpecifier(Parser::TPResult BracedCastResult,
1224 bool *HasMissingTypename) {
1225 switch (Tok.getKind()) {
1226 case tok::identifier: {
1227 // Check for need to substitute AltiVec __vector keyword
1228 // for "vector" identifier.
1229 if (TryAltiVecVectorToken())
Richard Smithee390432014-05-16 01:56:53 +00001230 return TPResult::True;
Guy Benyei11169dd2012-12-18 14:30:41 +00001231
1232 const Token &Next = NextToken();
1233 // In 'foo bar', 'foo' is always a type name outside of Objective-C.
1234 if (!getLangOpts().ObjC1 && Next.is(tok::identifier))
Richard Smithee390432014-05-16 01:56:53 +00001235 return TPResult::True;
Guy Benyei11169dd2012-12-18 14:30:41 +00001236
1237 if (Next.isNot(tok::coloncolon) && Next.isNot(tok::less)) {
1238 // Determine whether this is a valid expression. If not, we will hit
1239 // a parse error one way or another. In that case, tell the caller that
1240 // this is ambiguous. Typo-correct to type and expression keywords and
1241 // to types and identifiers, in order to try to recover from errors.
Guy Benyei11169dd2012-12-18 14:30:41 +00001242 switch (TryAnnotateName(false /* no nested name specifier */,
Kaelyn Takata445b0652014-11-05 00:09:29 +00001243 llvm::make_unique<TentativeParseCCC>(Next))) {
Guy Benyei11169dd2012-12-18 14:30:41 +00001244 case ANK_Error:
Richard Smithee390432014-05-16 01:56:53 +00001245 return TPResult::Error;
Guy Benyei11169dd2012-12-18 14:30:41 +00001246 case ANK_TentativeDecl:
Richard Smithee390432014-05-16 01:56:53 +00001247 return TPResult::False;
Guy Benyei11169dd2012-12-18 14:30:41 +00001248 case ANK_TemplateName:
Richard Smith77a9c602018-02-28 03:02:23 +00001249 // In C++17, this could be a type template for class template argument
1250 // deduction. Try to form a type annotation for it. If we're in a
1251 // template template argument, we'll undo this when checking the
1252 // validity of the argument.
1253 if (getLangOpts().CPlusPlus17) {
1254 if (TryAnnotateTypeOrScopeToken())
1255 return TPResult::Error;
1256 if (Tok.isNot(tok::identifier))
1257 break;
1258 }
1259
Guy Benyei11169dd2012-12-18 14:30:41 +00001260 // A bare type template-name which can't be a template template
1261 // argument is an error, and was probably intended to be a type.
Richard Smithee390432014-05-16 01:56:53 +00001262 return GreaterThanIsOperator ? TPResult::True : TPResult::False;
Guy Benyei11169dd2012-12-18 14:30:41 +00001263 case ANK_Unresolved:
Richard Smithee390432014-05-16 01:56:53 +00001264 return HasMissingTypename ? TPResult::Ambiguous : TPResult::False;
Guy Benyei11169dd2012-12-18 14:30:41 +00001265 case ANK_Success:
1266 break;
1267 }
1268 assert(Tok.isNot(tok::identifier) &&
1269 "TryAnnotateName succeeded without producing an annotation");
1270 } else {
1271 // This might possibly be a type with a dependent scope specifier and
1272 // a missing 'typename' keyword. Don't use TryAnnotateName in this case,
1273 // since it will annotate as a primary expression, and we want to use the
1274 // "missing 'typename'" logic.
1275 if (TryAnnotateTypeOrScopeToken())
Richard Smithee390432014-05-16 01:56:53 +00001276 return TPResult::Error;
Guy Benyei11169dd2012-12-18 14:30:41 +00001277 // If annotation failed, assume it's a non-type.
1278 // FIXME: If this happens due to an undeclared identifier, treat it as
1279 // ambiguous.
1280 if (Tok.is(tok::identifier))
Richard Smithee390432014-05-16 01:56:53 +00001281 return TPResult::False;
Guy Benyei11169dd2012-12-18 14:30:41 +00001282 }
1283
1284 // We annotated this token as something. Recurse to handle whatever we got.
1285 return isCXXDeclarationSpecifier(BracedCastResult, HasMissingTypename);
1286 }
1287
1288 case tok::kw_typename: // typename T::type
1289 // Annotate typenames and C++ scope specifiers. If we get one, just
1290 // recurse to handle whatever we get.
1291 if (TryAnnotateTypeOrScopeToken())
Richard Smithee390432014-05-16 01:56:53 +00001292 return TPResult::Error;
Guy Benyei11169dd2012-12-18 14:30:41 +00001293 return isCXXDeclarationSpecifier(BracedCastResult, HasMissingTypename);
1294
1295 case tok::coloncolon: { // ::foo::bar
1296 const Token &Next = NextToken();
Daniel Marjamakie59f8d72015-06-18 10:59:26 +00001297 if (Next.isOneOf(tok::kw_new, // ::new
1298 tok::kw_delete)) // ::delete
Richard Smithee390432014-05-16 01:56:53 +00001299 return TPResult::False;
Guy Benyei11169dd2012-12-18 14:30:41 +00001300 }
1301 // Fall through.
Nikola Smiljanic67860242014-09-26 00:28:20 +00001302 case tok::kw___super:
Guy Benyei11169dd2012-12-18 14:30:41 +00001303 case tok::kw_decltype:
1304 // Annotate typenames and C++ scope specifiers. If we get one, just
1305 // recurse to handle whatever we get.
1306 if (TryAnnotateTypeOrScopeToken())
Richard Smithee390432014-05-16 01:56:53 +00001307 return TPResult::Error;
Guy Benyei11169dd2012-12-18 14:30:41 +00001308 return isCXXDeclarationSpecifier(BracedCastResult, HasMissingTypename);
1309
1310 // decl-specifier:
1311 // storage-class-specifier
1312 // type-specifier
1313 // function-specifier
1314 // 'friend'
1315 // 'typedef'
1316 // 'constexpr'
1317 case tok::kw_friend:
1318 case tok::kw_typedef:
1319 case tok::kw_constexpr:
1320 // storage-class-specifier
1321 case tok::kw_register:
1322 case tok::kw_static:
1323 case tok::kw_extern:
1324 case tok::kw_mutable:
1325 case tok::kw_auto:
1326 case tok::kw___thread:
Richard Smithb4a9e862013-04-12 22:46:28 +00001327 case tok::kw_thread_local:
1328 case tok::kw__Thread_local:
Guy Benyei11169dd2012-12-18 14:30:41 +00001329 // function-specifier
1330 case tok::kw_inline:
1331 case tok::kw_virtual:
1332 case tok::kw_explicit:
1333
1334 // Modules
1335 case tok::kw___module_private__:
1336
1337 // Debugger support
1338 case tok::kw___unknown_anytype:
1339
1340 // type-specifier:
1341 // simple-type-specifier
1342 // class-specifier
1343 // enum-specifier
1344 // elaborated-type-specifier
1345 // typename-specifier
1346 // cv-qualifier
1347
1348 // class-specifier
1349 // elaborated-type-specifier
1350 case tok::kw_class:
1351 case tok::kw_struct:
1352 case tok::kw_union:
Richard Smith1fff95c2013-09-12 23:28:08 +00001353 case tok::kw___interface:
Guy Benyei11169dd2012-12-18 14:30:41 +00001354 // enum-specifier
1355 case tok::kw_enum:
1356 // cv-qualifier
1357 case tok::kw_const:
1358 case tok::kw_volatile:
1359
1360 // GNU
1361 case tok::kw_restrict:
1362 case tok::kw__Complex:
1363 case tok::kw___attribute:
Richard Smithe301ba22015-11-11 02:02:15 +00001364 case tok::kw___auto_type:
Richard Smithee390432014-05-16 01:56:53 +00001365 return TPResult::True;
Guy Benyei11169dd2012-12-18 14:30:41 +00001366
1367 // Microsoft
1368 case tok::kw___declspec:
1369 case tok::kw___cdecl:
1370 case tok::kw___stdcall:
1371 case tok::kw___fastcall:
1372 case tok::kw___thiscall:
Erich Keane757d3172016-11-02 18:29:35 +00001373 case tok::kw___regcall:
Reid Klecknerd7857f02014-10-24 17:42:17 +00001374 case tok::kw___vectorcall:
Guy Benyei11169dd2012-12-18 14:30:41 +00001375 case tok::kw___w64:
Aaron Ballman317a77f2013-05-22 23:25:32 +00001376 case tok::kw___sptr:
1377 case tok::kw___uptr:
Guy Benyei11169dd2012-12-18 14:30:41 +00001378 case tok::kw___ptr64:
1379 case tok::kw___ptr32:
1380 case tok::kw___forceinline:
1381 case tok::kw___unaligned:
Douglas Gregoraea7afd2015-06-24 22:02:08 +00001382 case tok::kw__Nonnull:
1383 case tok::kw__Nullable:
1384 case tok::kw__Null_unspecified:
Douglas Gregorab209d82015-07-07 03:58:42 +00001385 case tok::kw___kindof:
Richard Smithee390432014-05-16 01:56:53 +00001386 return TPResult::True;
Guy Benyei11169dd2012-12-18 14:30:41 +00001387
1388 // Borland
1389 case tok::kw___pascal:
Richard Smithee390432014-05-16 01:56:53 +00001390 return TPResult::True;
Guy Benyei11169dd2012-12-18 14:30:41 +00001391
1392 // AltiVec
1393 case tok::kw___vector:
Richard Smithee390432014-05-16 01:56:53 +00001394 return TPResult::True;
Guy Benyei11169dd2012-12-18 14:30:41 +00001395
1396 case tok::annot_template_id: {
1397 TemplateIdAnnotation *TemplateId = takeTemplateIdAnnotation(Tok);
1398 if (TemplateId->Kind != TNK_Type_template)
Richard Smithee390432014-05-16 01:56:53 +00001399 return TPResult::False;
Guy Benyei11169dd2012-12-18 14:30:41 +00001400 CXXScopeSpec SS;
1401 AnnotateTemplateIdTokenAsType();
1402 assert(Tok.is(tok::annot_typename));
1403 goto case_typename;
1404 }
1405
1406 case tok::annot_cxxscope: // foo::bar or ::foo::bar, but already parsed
1407 // We've already annotated a scope; try to annotate a type.
1408 if (TryAnnotateTypeOrScopeToken())
Richard Smithee390432014-05-16 01:56:53 +00001409 return TPResult::Error;
Guy Benyei11169dd2012-12-18 14:30:41 +00001410 if (!Tok.is(tok::annot_typename)) {
1411 // If the next token is an identifier or a type qualifier, then this
1412 // can't possibly be a valid expression either.
1413 if (Tok.is(tok::annot_cxxscope) && NextToken().is(tok::identifier)) {
1414 CXXScopeSpec SS;
1415 Actions.RestoreNestedNameSpecifierAnnotation(Tok.getAnnotationValue(),
1416 Tok.getAnnotationRange(),
1417 SS);
1418 if (SS.getScopeRep() && SS.getScopeRep()->isDependent()) {
Richard Smith4556ebe2016-06-29 21:12:37 +00001419 RevertingTentativeParsingAction PA(*this);
Richard Smithaf3b3252017-05-18 19:21:48 +00001420 ConsumeAnnotationToken();
Guy Benyei11169dd2012-12-18 14:30:41 +00001421 ConsumeToken();
1422 bool isIdentifier = Tok.is(tok::identifier);
Richard Smithee390432014-05-16 01:56:53 +00001423 TPResult TPR = TPResult::False;
Guy Benyei11169dd2012-12-18 14:30:41 +00001424 if (!isIdentifier)
1425 TPR = isCXXDeclarationSpecifier(BracedCastResult,
1426 HasMissingTypename);
Guy Benyei11169dd2012-12-18 14:30:41 +00001427
1428 if (isIdentifier ||
Richard Smithee390432014-05-16 01:56:53 +00001429 TPR == TPResult::True || TPR == TPResult::Error)
1430 return TPResult::Error;
Guy Benyei11169dd2012-12-18 14:30:41 +00001431
1432 if (HasMissingTypename) {
1433 // We can't tell whether this is a missing 'typename' or a valid
1434 // expression.
1435 *HasMissingTypename = true;
Richard Smithee390432014-05-16 01:56:53 +00001436 return TPResult::Ambiguous;
Guy Benyei11169dd2012-12-18 14:30:41 +00001437 }
1438 } else {
1439 // Try to resolve the name. If it doesn't exist, assume it was
1440 // intended to name a type and keep disambiguating.
1441 switch (TryAnnotateName(false /* SS is not dependent */)) {
1442 case ANK_Error:
Richard Smithee390432014-05-16 01:56:53 +00001443 return TPResult::Error;
Guy Benyei11169dd2012-12-18 14:30:41 +00001444 case ANK_TentativeDecl:
Richard Smithee390432014-05-16 01:56:53 +00001445 return TPResult::False;
Guy Benyei11169dd2012-12-18 14:30:41 +00001446 case ANK_TemplateName:
Richard Smith77a9c602018-02-28 03:02:23 +00001447 // In C++17, this could be a type template for class template
1448 // argument deduction.
1449 if (getLangOpts().CPlusPlus17) {
1450 if (TryAnnotateTypeOrScopeToken())
1451 return TPResult::Error;
1452 if (Tok.isNot(tok::identifier))
1453 break;
1454 }
1455
Guy Benyei11169dd2012-12-18 14:30:41 +00001456 // A bare type template-name which can't be a template template
1457 // argument is an error, and was probably intended to be a type.
Richard Smith77a9c602018-02-28 03:02:23 +00001458 // In C++17, this could be class template argument deduction.
1459 return (getLangOpts().CPlusPlus17 || GreaterThanIsOperator)
1460 ? TPResult::True
1461 : TPResult::False;
Guy Benyei11169dd2012-12-18 14:30:41 +00001462 case ANK_Unresolved:
Richard Smithee390432014-05-16 01:56:53 +00001463 return HasMissingTypename ? TPResult::Ambiguous
1464 : TPResult::False;
Guy Benyei11169dd2012-12-18 14:30:41 +00001465 case ANK_Success:
Richard Smith77a9c602018-02-28 03:02:23 +00001466 break;
Guy Benyei11169dd2012-12-18 14:30:41 +00001467 }
Richard Smith77a9c602018-02-28 03:02:23 +00001468
1469 // Annotated it, check again.
1470 assert(Tok.isNot(tok::annot_cxxscope) ||
1471 NextToken().isNot(tok::identifier));
1472 return isCXXDeclarationSpecifier(BracedCastResult,
1473 HasMissingTypename);
Guy Benyei11169dd2012-12-18 14:30:41 +00001474 }
1475 }
Richard Smithee390432014-05-16 01:56:53 +00001476 return TPResult::False;
Guy Benyei11169dd2012-12-18 14:30:41 +00001477 }
1478 // If that succeeded, fallthrough into the generic simple-type-id case.
Galina Kistanova53ab4242017-06-01 21:29:45 +00001479 LLVM_FALLTHROUGH;
Guy Benyei11169dd2012-12-18 14:30:41 +00001480
1481 // The ambiguity resides in a simple-type-specifier/typename-specifier
1482 // followed by a '('. The '(' could either be the start of:
1483 //
1484 // direct-declarator:
1485 // '(' declarator ')'
1486 //
1487 // direct-abstract-declarator:
1488 // '(' parameter-declaration-clause ')' cv-qualifier-seq[opt]
1489 // exception-specification[opt]
1490 // '(' abstract-declarator ')'
1491 //
1492 // or part of a function-style cast expression:
1493 //
1494 // simple-type-specifier '(' expression-list[opt] ')'
1495 //
1496
1497 // simple-type-specifier:
1498
1499 case tok::annot_typename:
1500 case_typename:
1501 // In Objective-C, we might have a protocol-qualified type.
1502 if (getLangOpts().ObjC1 && NextToken().is(tok::less)) {
Douglas Gregore9d95f12015-07-07 03:57:35 +00001503 // Tentatively parse the protocol qualifiers.
Richard Smith91b73f22016-06-29 21:06:51 +00001504 RevertingTentativeParsingAction PA(*this);
Richard Smithaf3b3252017-05-18 19:21:48 +00001505 ConsumeAnyToken(); // The type token
Guy Benyei11169dd2012-12-18 14:30:41 +00001506
1507 TPResult TPR = TryParseProtocolQualifiers();
1508 bool isFollowedByParen = Tok.is(tok::l_paren);
1509 bool isFollowedByBrace = Tok.is(tok::l_brace);
1510
Richard Smithee390432014-05-16 01:56:53 +00001511 if (TPR == TPResult::Error)
1512 return TPResult::Error;
Guy Benyei11169dd2012-12-18 14:30:41 +00001513
1514 if (isFollowedByParen)
Richard Smithee390432014-05-16 01:56:53 +00001515 return TPResult::Ambiguous;
Guy Benyei11169dd2012-12-18 14:30:41 +00001516
Richard Smith2bf7fdb2013-01-02 11:42:31 +00001517 if (getLangOpts().CPlusPlus11 && isFollowedByBrace)
Guy Benyei11169dd2012-12-18 14:30:41 +00001518 return BracedCastResult;
1519
Richard Smithee390432014-05-16 01:56:53 +00001520 return TPResult::True;
Guy Benyei11169dd2012-12-18 14:30:41 +00001521 }
Galina Kistanova53ab4242017-06-01 21:29:45 +00001522 LLVM_FALLTHROUGH;
Guy Benyei11169dd2012-12-18 14:30:41 +00001523
1524 case tok::kw_char:
1525 case tok::kw_wchar_t:
1526 case tok::kw_char16_t:
1527 case tok::kw_char32_t:
1528 case tok::kw_bool:
1529 case tok::kw_short:
1530 case tok::kw_int:
1531 case tok::kw_long:
1532 case tok::kw___int64:
1533 case tok::kw___int128:
1534 case tok::kw_signed:
1535 case tok::kw_unsigned:
1536 case tok::kw_half:
1537 case tok::kw_float:
1538 case tok::kw_double:
Sjoerd Meijercc623ad2017-09-08 15:15:00 +00001539 case tok::kw__Float16:
Nemanja Ivanovicbb1ea2d2016-05-09 08:52:33 +00001540 case tok::kw___float128:
Guy Benyei11169dd2012-12-18 14:30:41 +00001541 case tok::kw_void:
1542 case tok::annot_decltype:
1543 if (NextToken().is(tok::l_paren))
Richard Smithee390432014-05-16 01:56:53 +00001544 return TPResult::Ambiguous;
Guy Benyei11169dd2012-12-18 14:30:41 +00001545
1546 // This is a function-style cast in all cases we disambiguate other than
1547 // one:
1548 // struct S {
1549 // enum E : int { a = 4 }; // enum
1550 // enum E : int { 4 }; // bit-field
1551 // };
Richard Smith2bf7fdb2013-01-02 11:42:31 +00001552 if (getLangOpts().CPlusPlus11 && NextToken().is(tok::l_brace))
Guy Benyei11169dd2012-12-18 14:30:41 +00001553 return BracedCastResult;
1554
1555 if (isStartOfObjCClassMessageMissingOpenBracket())
Richard Smithee390432014-05-16 01:56:53 +00001556 return TPResult::False;
Guy Benyei11169dd2012-12-18 14:30:41 +00001557
Richard Smithee390432014-05-16 01:56:53 +00001558 return TPResult::True;
Guy Benyei11169dd2012-12-18 14:30:41 +00001559
1560 // GNU typeof support.
1561 case tok::kw_typeof: {
1562 if (NextToken().isNot(tok::l_paren))
Richard Smithee390432014-05-16 01:56:53 +00001563 return TPResult::True;
Guy Benyei11169dd2012-12-18 14:30:41 +00001564
Richard Smith91b73f22016-06-29 21:06:51 +00001565 RevertingTentativeParsingAction PA(*this);
Guy Benyei11169dd2012-12-18 14:30:41 +00001566
1567 TPResult TPR = TryParseTypeofSpecifier();
1568 bool isFollowedByParen = Tok.is(tok::l_paren);
1569 bool isFollowedByBrace = Tok.is(tok::l_brace);
1570
Richard Smithee390432014-05-16 01:56:53 +00001571 if (TPR == TPResult::Error)
1572 return TPResult::Error;
Guy Benyei11169dd2012-12-18 14:30:41 +00001573
1574 if (isFollowedByParen)
Richard Smithee390432014-05-16 01:56:53 +00001575 return TPResult::Ambiguous;
Guy Benyei11169dd2012-12-18 14:30:41 +00001576
Richard Smith2bf7fdb2013-01-02 11:42:31 +00001577 if (getLangOpts().CPlusPlus11 && isFollowedByBrace)
Guy Benyei11169dd2012-12-18 14:30:41 +00001578 return BracedCastResult;
1579
Richard Smithee390432014-05-16 01:56:53 +00001580 return TPResult::True;
Guy Benyei11169dd2012-12-18 14:30:41 +00001581 }
1582
1583 // C++0x type traits support
1584 case tok::kw___underlying_type:
Richard Smithee390432014-05-16 01:56:53 +00001585 return TPResult::True;
Guy Benyei11169dd2012-12-18 14:30:41 +00001586
1587 // C11 _Atomic
1588 case tok::kw__Atomic:
Richard Smithee390432014-05-16 01:56:53 +00001589 return TPResult::True;
Guy Benyei11169dd2012-12-18 14:30:41 +00001590
1591 default:
Richard Smithee390432014-05-16 01:56:53 +00001592 return TPResult::False;
Guy Benyei11169dd2012-12-18 14:30:41 +00001593 }
1594}
1595
Richard Smith1fff95c2013-09-12 23:28:08 +00001596bool Parser::isCXXDeclarationSpecifierAType() {
1597 switch (Tok.getKind()) {
1598 // typename-specifier
1599 case tok::annot_decltype:
1600 case tok::annot_template_id:
1601 case tok::annot_typename:
1602 case tok::kw_typeof:
1603 case tok::kw___underlying_type:
1604 return true;
1605
1606 // elaborated-type-specifier
1607 case tok::kw_class:
1608 case tok::kw_struct:
1609 case tok::kw_union:
1610 case tok::kw___interface:
1611 case tok::kw_enum:
1612 return true;
1613
1614 // simple-type-specifier
1615 case tok::kw_char:
1616 case tok::kw_wchar_t:
1617 case tok::kw_char16_t:
1618 case tok::kw_char32_t:
1619 case tok::kw_bool:
1620 case tok::kw_short:
1621 case tok::kw_int:
1622 case tok::kw_long:
1623 case tok::kw___int64:
1624 case tok::kw___int128:
1625 case tok::kw_signed:
1626 case tok::kw_unsigned:
1627 case tok::kw_half:
1628 case tok::kw_float:
1629 case tok::kw_double:
Sjoerd Meijercc623ad2017-09-08 15:15:00 +00001630 case tok::kw__Float16:
Nemanja Ivanovicbb1ea2d2016-05-09 08:52:33 +00001631 case tok::kw___float128:
Richard Smith1fff95c2013-09-12 23:28:08 +00001632 case tok::kw_void:
1633 case tok::kw___unknown_anytype:
Richard Smithe301ba22015-11-11 02:02:15 +00001634 case tok::kw___auto_type:
Richard Smith1fff95c2013-09-12 23:28:08 +00001635 return true;
1636
1637 case tok::kw_auto:
1638 return getLangOpts().CPlusPlus11;
1639
1640 case tok::kw__Atomic:
1641 // "_Atomic foo"
1642 return NextToken().is(tok::l_paren);
1643
1644 default:
1645 return false;
1646 }
1647}
1648
Guy Benyei11169dd2012-12-18 14:30:41 +00001649/// [GNU] typeof-specifier:
1650/// 'typeof' '(' expressions ')'
1651/// 'typeof' '(' type-name ')'
1652///
1653Parser::TPResult Parser::TryParseTypeofSpecifier() {
1654 assert(Tok.is(tok::kw_typeof) && "Expected 'typeof'!");
1655 ConsumeToken();
1656
1657 assert(Tok.is(tok::l_paren) && "Expected '('");
1658 // Parse through the parens after 'typeof'.
1659 ConsumeParen();
Alexey Bataevee6507d2013-11-18 08:17:37 +00001660 if (!SkipUntil(tok::r_paren, StopAtSemi))
Richard Smithee390432014-05-16 01:56:53 +00001661 return TPResult::Error;
Guy Benyei11169dd2012-12-18 14:30:41 +00001662
Richard Smithee390432014-05-16 01:56:53 +00001663 return TPResult::Ambiguous;
Guy Benyei11169dd2012-12-18 14:30:41 +00001664}
1665
1666/// [ObjC] protocol-qualifiers:
1667//// '<' identifier-list '>'
1668Parser::TPResult Parser::TryParseProtocolQualifiers() {
1669 assert(Tok.is(tok::less) && "Expected '<' for qualifier list");
1670 ConsumeToken();
1671 do {
1672 if (Tok.isNot(tok::identifier))
Richard Smithee390432014-05-16 01:56:53 +00001673 return TPResult::Error;
Guy Benyei11169dd2012-12-18 14:30:41 +00001674 ConsumeToken();
1675
1676 if (Tok.is(tok::comma)) {
1677 ConsumeToken();
1678 continue;
1679 }
1680
1681 if (Tok.is(tok::greater)) {
1682 ConsumeToken();
Richard Smithee390432014-05-16 01:56:53 +00001683 return TPResult::Ambiguous;
Guy Benyei11169dd2012-12-18 14:30:41 +00001684 }
1685 } while (false);
1686
Richard Smithee390432014-05-16 01:56:53 +00001687 return TPResult::Error;
Guy Benyei11169dd2012-12-18 14:30:41 +00001688}
1689
Guy Benyei11169dd2012-12-18 14:30:41 +00001690/// isCXXFunctionDeclarator - Disambiguates between a function declarator or
1691/// a constructor-style initializer, when parsing declaration statements.
1692/// Returns true for function declarator and false for constructor-style
1693/// initializer.
1694/// If during the disambiguation process a parsing error is encountered,
1695/// the function returns true to let the declaration parsing code handle it.
1696///
1697/// '(' parameter-declaration-clause ')' cv-qualifier-seq[opt]
1698/// exception-specification[opt]
1699///
1700bool Parser::isCXXFunctionDeclarator(bool *IsAmbiguous) {
1701
1702 // C++ 8.2p1:
1703 // The ambiguity arising from the similarity between a function-style cast and
1704 // a declaration mentioned in 6.8 can also occur in the context of a
1705 // declaration. In that context, the choice is between a function declaration
1706 // with a redundant set of parentheses around a parameter name and an object
1707 // declaration with a function-style cast as the initializer. Just as for the
1708 // ambiguities mentioned in 6.8, the resolution is to consider any construct
1709 // that could possibly be a declaration a declaration.
1710
Richard Smith91b73f22016-06-29 21:06:51 +00001711 RevertingTentativeParsingAction PA(*this);
Guy Benyei11169dd2012-12-18 14:30:41 +00001712
1713 ConsumeParen();
1714 bool InvalidAsDeclaration = false;
1715 TPResult TPR = TryParseParameterDeclarationClause(&InvalidAsDeclaration);
Richard Smithee390432014-05-16 01:56:53 +00001716 if (TPR == TPResult::Ambiguous) {
Guy Benyei11169dd2012-12-18 14:30:41 +00001717 if (Tok.isNot(tok::r_paren))
Richard Smithee390432014-05-16 01:56:53 +00001718 TPR = TPResult::False;
Guy Benyei11169dd2012-12-18 14:30:41 +00001719 else {
1720 const Token &Next = NextToken();
Daniel Marjamakie59f8d72015-06-18 10:59:26 +00001721 if (Next.isOneOf(tok::amp, tok::ampamp, tok::kw_const, tok::kw_volatile,
1722 tok::kw_throw, tok::kw_noexcept, tok::l_square,
1723 tok::l_brace, tok::kw_try, tok::equal, tok::arrow) ||
1724 isCXX11VirtSpecifier(Next))
Guy Benyei11169dd2012-12-18 14:30:41 +00001725 // The next token cannot appear after a constructor-style initializer,
1726 // and can appear next in a function definition. This must be a function
1727 // declarator.
Richard Smithee390432014-05-16 01:56:53 +00001728 TPR = TPResult::True;
Guy Benyei11169dd2012-12-18 14:30:41 +00001729 else if (InvalidAsDeclaration)
1730 // Use the absence of 'typename' as a tie-breaker.
Richard Smithee390432014-05-16 01:56:53 +00001731 TPR = TPResult::False;
Guy Benyei11169dd2012-12-18 14:30:41 +00001732 }
1733 }
1734
Richard Smithee390432014-05-16 01:56:53 +00001735 if (IsAmbiguous && TPR == TPResult::Ambiguous)
Guy Benyei11169dd2012-12-18 14:30:41 +00001736 *IsAmbiguous = true;
1737
1738 // In case of an error, let the declaration parsing code handle it.
Richard Smithee390432014-05-16 01:56:53 +00001739 return TPR != TPResult::False;
Guy Benyei11169dd2012-12-18 14:30:41 +00001740}
1741
1742/// parameter-declaration-clause:
1743/// parameter-declaration-list[opt] '...'[opt]
1744/// parameter-declaration-list ',' '...'
1745///
1746/// parameter-declaration-list:
1747/// parameter-declaration
1748/// parameter-declaration-list ',' parameter-declaration
1749///
1750/// parameter-declaration:
1751/// attribute-specifier-seq[opt] decl-specifier-seq declarator attributes[opt]
1752/// attribute-specifier-seq[opt] decl-specifier-seq declarator attributes[opt]
1753/// '=' assignment-expression
1754/// attribute-specifier-seq[opt] decl-specifier-seq abstract-declarator[opt]
1755/// attributes[opt]
1756/// attribute-specifier-seq[opt] decl-specifier-seq abstract-declarator[opt]
1757/// attributes[opt] '=' assignment-expression
1758///
1759Parser::TPResult
Richard Smith1fff95c2013-09-12 23:28:08 +00001760Parser::TryParseParameterDeclarationClause(bool *InvalidAsDeclaration,
1761 bool VersusTemplateArgument) {
Guy Benyei11169dd2012-12-18 14:30:41 +00001762
1763 if (Tok.is(tok::r_paren))
Richard Smithee390432014-05-16 01:56:53 +00001764 return TPResult::Ambiguous;
Guy Benyei11169dd2012-12-18 14:30:41 +00001765
1766 // parameter-declaration-list[opt] '...'[opt]
1767 // parameter-declaration-list ',' '...'
1768 //
1769 // parameter-declaration-list:
1770 // parameter-declaration
1771 // parameter-declaration-list ',' parameter-declaration
1772 //
1773 while (1) {
1774 // '...'[opt]
1775 if (Tok.is(tok::ellipsis)) {
1776 ConsumeToken();
1777 if (Tok.is(tok::r_paren))
Richard Smithee390432014-05-16 01:56:53 +00001778 return TPResult::True; // '...)' is a sign of a function declarator.
Guy Benyei11169dd2012-12-18 14:30:41 +00001779 else
Richard Smithee390432014-05-16 01:56:53 +00001780 return TPResult::False;
Guy Benyei11169dd2012-12-18 14:30:41 +00001781 }
1782
1783 // An attribute-specifier-seq here is a sign of a function declarator.
1784 if (isCXX11AttributeSpecifier(/*Disambiguate*/false,
1785 /*OuterMightBeMessageSend*/true))
Richard Smithee390432014-05-16 01:56:53 +00001786 return TPResult::True;
Guy Benyei11169dd2012-12-18 14:30:41 +00001787
1788 ParsedAttributes attrs(AttrFactory);
1789 MaybeParseMicrosoftAttributes(attrs);
1790
1791 // decl-specifier-seq
1792 // A parameter-declaration's initializer must be preceded by an '=', so
1793 // decl-specifier-seq '{' is not a parameter in C++11.
Richard Smithee390432014-05-16 01:56:53 +00001794 TPResult TPR = isCXXDeclarationSpecifier(TPResult::False,
Richard Smith1fff95c2013-09-12 23:28:08 +00001795 InvalidAsDeclaration);
1796
Richard Smithee390432014-05-16 01:56:53 +00001797 if (VersusTemplateArgument && TPR == TPResult::True) {
Richard Smith1fff95c2013-09-12 23:28:08 +00001798 // Consume the decl-specifier-seq. We have to look past it, since a
1799 // type-id might appear here in a template argument.
1800 bool SeenType = false;
1801 do {
1802 SeenType |= isCXXDeclarationSpecifierAType();
Richard Smithee390432014-05-16 01:56:53 +00001803 if (TryConsumeDeclarationSpecifier() == TPResult::Error)
1804 return TPResult::Error;
Richard Smith1fff95c2013-09-12 23:28:08 +00001805
1806 // If we see a parameter name, this can't be a template argument.
1807 if (SeenType && Tok.is(tok::identifier))
Richard Smithee390432014-05-16 01:56:53 +00001808 return TPResult::True;
Richard Smith1fff95c2013-09-12 23:28:08 +00001809
Richard Smithee390432014-05-16 01:56:53 +00001810 TPR = isCXXDeclarationSpecifier(TPResult::False,
Richard Smith1fff95c2013-09-12 23:28:08 +00001811 InvalidAsDeclaration);
Richard Smithee390432014-05-16 01:56:53 +00001812 if (TPR == TPResult::Error)
Richard Smith1fff95c2013-09-12 23:28:08 +00001813 return TPR;
Richard Smithee390432014-05-16 01:56:53 +00001814 } while (TPR != TPResult::False);
1815 } else if (TPR == TPResult::Ambiguous) {
Richard Smith1fff95c2013-09-12 23:28:08 +00001816 // Disambiguate what follows the decl-specifier.
Richard Smithee390432014-05-16 01:56:53 +00001817 if (TryConsumeDeclarationSpecifier() == TPResult::Error)
1818 return TPResult::Error;
Richard Smith1fff95c2013-09-12 23:28:08 +00001819 } else
Guy Benyei11169dd2012-12-18 14:30:41 +00001820 return TPR;
1821
1822 // declarator
1823 // abstract-declarator[opt]
Justin Bognerd26f95b2015-02-23 22:36:28 +00001824 TPR = TryParseDeclarator(true/*mayBeAbstract*/);
Richard Smithee390432014-05-16 01:56:53 +00001825 if (TPR != TPResult::Ambiguous)
Guy Benyei11169dd2012-12-18 14:30:41 +00001826 return TPR;
1827
1828 // [GNU] attributes[opt]
1829 if (Tok.is(tok::kw___attribute))
Richard Smithee390432014-05-16 01:56:53 +00001830 return TPResult::True;
Guy Benyei11169dd2012-12-18 14:30:41 +00001831
Richard Smith1fff95c2013-09-12 23:28:08 +00001832 // If we're disambiguating a template argument in a default argument in
1833 // a class definition versus a parameter declaration, an '=' here
1834 // disambiguates the parse one way or the other.
1835 // If this is a parameter, it must have a default argument because
1836 // (a) the previous parameter did, and
1837 // (b) this must be the first declaration of the function, so we can't
1838 // inherit any default arguments from elsewhere.
1839 // If we see an ')', then we've reached the end of a
1840 // parameter-declaration-clause, and the last param is missing its default
1841 // argument.
1842 if (VersusTemplateArgument)
Daniel Marjamakie59f8d72015-06-18 10:59:26 +00001843 return Tok.isOneOf(tok::equal, tok::r_paren) ? TPResult::True
1844 : TPResult::False;
Richard Smith1fff95c2013-09-12 23:28:08 +00001845
Guy Benyei11169dd2012-12-18 14:30:41 +00001846 if (Tok.is(tok::equal)) {
1847 // '=' assignment-expression
1848 // Parse through assignment-expression.
Richard Smith1fff95c2013-09-12 23:28:08 +00001849 // FIXME: assignment-expression may contain an unparenthesized comma.
Alexey Bataevee6507d2013-11-18 08:17:37 +00001850 if (!SkipUntil(tok::comma, tok::r_paren, StopAtSemi | StopBeforeMatch))
Richard Smithee390432014-05-16 01:56:53 +00001851 return TPResult::Error;
Guy Benyei11169dd2012-12-18 14:30:41 +00001852 }
1853
1854 if (Tok.is(tok::ellipsis)) {
1855 ConsumeToken();
1856 if (Tok.is(tok::r_paren))
Richard Smithee390432014-05-16 01:56:53 +00001857 return TPResult::True; // '...)' is a sign of a function declarator.
Guy Benyei11169dd2012-12-18 14:30:41 +00001858 else
Richard Smithee390432014-05-16 01:56:53 +00001859 return TPResult::False;
Guy Benyei11169dd2012-12-18 14:30:41 +00001860 }
1861
Alp Toker97650562014-01-10 11:19:30 +00001862 if (!TryConsumeToken(tok::comma))
Guy Benyei11169dd2012-12-18 14:30:41 +00001863 break;
Guy Benyei11169dd2012-12-18 14:30:41 +00001864 }
1865
Richard Smithee390432014-05-16 01:56:53 +00001866 return TPResult::Ambiguous;
Guy Benyei11169dd2012-12-18 14:30:41 +00001867}
1868
1869/// TryParseFunctionDeclarator - We parsed a '(' and we want to try to continue
1870/// parsing as a function declarator.
1871/// If TryParseFunctionDeclarator fully parsed the function declarator, it will
Justin Bognerd26f95b2015-02-23 22:36:28 +00001872/// return TPResult::Ambiguous, otherwise it will return either False() or
1873/// Error().
Guy Benyei11169dd2012-12-18 14:30:41 +00001874///
1875/// '(' parameter-declaration-clause ')' cv-qualifier-seq[opt]
1876/// exception-specification[opt]
1877///
1878/// exception-specification:
1879/// 'throw' '(' type-id-list[opt] ')'
1880///
Justin Bognerd26f95b2015-02-23 22:36:28 +00001881Parser::TPResult Parser::TryParseFunctionDeclarator() {
Guy Benyei11169dd2012-12-18 14:30:41 +00001882
1883 // The '(' is already parsed.
1884
1885 TPResult TPR = TryParseParameterDeclarationClause();
Richard Smithee390432014-05-16 01:56:53 +00001886 if (TPR == TPResult::Ambiguous && Tok.isNot(tok::r_paren))
1887 TPR = TPResult::False;
Guy Benyei11169dd2012-12-18 14:30:41 +00001888
Justin Bognerd26f95b2015-02-23 22:36:28 +00001889 if (TPR == TPResult::False || TPR == TPResult::Error)
1890 return TPR;
Guy Benyei11169dd2012-12-18 14:30:41 +00001891
1892 // Parse through the parens.
Alexey Bataevee6507d2013-11-18 08:17:37 +00001893 if (!SkipUntil(tok::r_paren, StopAtSemi))
Richard Smithee390432014-05-16 01:56:53 +00001894 return TPResult::Error;
Guy Benyei11169dd2012-12-18 14:30:41 +00001895
1896 // cv-qualifier-seq
Reid Klecknerc6663b72018-03-07 23:26:02 +00001897 while (Tok.isOneOf(tok::kw_const, tok::kw_volatile, tok::kw___unaligned,
1898 tok::kw_restrict))
Guy Benyei11169dd2012-12-18 14:30:41 +00001899 ConsumeToken();
1900
1901 // ref-qualifier[opt]
Daniel Marjamakie59f8d72015-06-18 10:59:26 +00001902 if (Tok.isOneOf(tok::amp, tok::ampamp))
Guy Benyei11169dd2012-12-18 14:30:41 +00001903 ConsumeToken();
1904
1905 // exception-specification
1906 if (Tok.is(tok::kw_throw)) {
1907 ConsumeToken();
1908 if (Tok.isNot(tok::l_paren))
Richard Smithee390432014-05-16 01:56:53 +00001909 return TPResult::Error;
Guy Benyei11169dd2012-12-18 14:30:41 +00001910
1911 // Parse through the parens after 'throw'.
1912 ConsumeParen();
Alexey Bataevee6507d2013-11-18 08:17:37 +00001913 if (!SkipUntil(tok::r_paren, StopAtSemi))
Richard Smithee390432014-05-16 01:56:53 +00001914 return TPResult::Error;
Guy Benyei11169dd2012-12-18 14:30:41 +00001915 }
1916 if (Tok.is(tok::kw_noexcept)) {
1917 ConsumeToken();
1918 // Possibly an expression as well.
1919 if (Tok.is(tok::l_paren)) {
1920 // Find the matching rparen.
1921 ConsumeParen();
Alexey Bataevee6507d2013-11-18 08:17:37 +00001922 if (!SkipUntil(tok::r_paren, StopAtSemi))
Richard Smithee390432014-05-16 01:56:53 +00001923 return TPResult::Error;
Guy Benyei11169dd2012-12-18 14:30:41 +00001924 }
1925 }
1926
Richard Smithee390432014-05-16 01:56:53 +00001927 return TPResult::Ambiguous;
Guy Benyei11169dd2012-12-18 14:30:41 +00001928}
1929
1930/// '[' constant-expression[opt] ']'
1931///
1932Parser::TPResult Parser::TryParseBracketDeclarator() {
1933 ConsumeBracket();
Alexey Bataevee6507d2013-11-18 08:17:37 +00001934 if (!SkipUntil(tok::r_square, StopAtSemi))
Richard Smithee390432014-05-16 01:56:53 +00001935 return TPResult::Error;
Guy Benyei11169dd2012-12-18 14:30:41 +00001936
Richard Smithee390432014-05-16 01:56:53 +00001937 return TPResult::Ambiguous;
Guy Benyei11169dd2012-12-18 14:30:41 +00001938}