blob: 0bf1f09572594f9ff9d641bff4a41dcd31279a3a [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] ';'
77///
78/// (if AllowForRangeDecl specified)
79/// for ( for-range-declaration : for-range-initializer ) statement
80/// for-range-declaration:
81/// attribute-specifier-seqopt type-specifier-seq declarator
82bool Parser::isCXXSimpleDeclaration(bool AllowForRangeDecl) {
83 // C++ 6.8p1:
84 // There is an ambiguity in the grammar involving expression-statements and
85 // declarations: An expression-statement with a function-style explicit type
86 // conversion (5.2.3) as its leftmost subexpression can be indistinguishable
87 // from a declaration where the first declarator starts with a '('. In those
88 // cases the statement is a declaration. [Note: To disambiguate, the whole
89 // statement might have to be examined to determine if it is an
90 // expression-statement or a declaration].
91
92 // C++ 6.8p3:
93 // The disambiguation is purely syntactic; that is, the meaning of the names
94 // occurring in such a statement, beyond whether they are type-names or not,
95 // is not generally used in or changed by the disambiguation. Class
96 // templates are instantiated as necessary to determine if a qualified name
97 // is a type-name. Disambiguation precedes parsing, and a statement
98 // disambiguated as a declaration may be an ill-formed declaration.
99
100 // We don't have to parse all of the decl-specifier-seq part. There's only
101 // an ambiguity if the first decl-specifier is
102 // simple-type-specifier/typename-specifier followed by a '(', which may
103 // indicate a function-style cast expression.
104 // isCXXDeclarationSpecifier will return TPResult::Ambiguous() only in such
105 // a case.
106
107 bool InvalidAsDeclaration = false;
108 TPResult TPR = isCXXDeclarationSpecifier(TPResult::False(),
109 &InvalidAsDeclaration);
110 if (TPR != TPResult::Ambiguous())
111 return TPR != TPResult::False(); // Returns true for TPResult::True() or
112 // TPResult::Error().
113
114 // FIXME: TryParseSimpleDeclaration doesn't look past the first initializer,
115 // and so gets some cases wrong. We can't carry on if we've already seen
116 // something which makes this statement invalid as a declaration in this case,
117 // since it can cause us to misparse valid code. Revisit this once
118 // TryParseInitDeclaratorList is fixed.
119 if (InvalidAsDeclaration)
120 return false;
121
122 // FIXME: Add statistics about the number of ambiguous statements encountered
123 // and how they were resolved (number of declarations+number of expressions).
124
125 // Ok, we have a simple-type-specifier/typename-specifier followed by a '(',
126 // or an identifier which doesn't resolve as anything. We need tentative
127 // parsing...
128
129 TentativeParsingAction PA(*this);
130 TPR = TryParseSimpleDeclaration(AllowForRangeDecl);
131 PA.Revert();
132
133 // In case of an error, let the declaration parsing code handle it.
134 if (TPR == TPResult::Error())
135 return true;
136
137 // Declarations take precedence over expressions.
138 if (TPR == TPResult::Ambiguous())
139 TPR = TPResult::True();
140
141 assert(TPR == TPResult::True() || TPR == TPResult::False());
142 return TPR == TPResult::True();
143}
144
Richard Smith1fff95c2013-09-12 23:28:08 +0000145/// Try to consume a token sequence that we've already identified as
146/// (potentially) starting a decl-specifier.
147Parser::TPResult Parser::TryConsumeDeclarationSpecifier() {
148 switch (Tok.getKind()) {
149 case tok::kw__Atomic:
150 if (NextToken().isNot(tok::l_paren)) {
151 ConsumeToken();
152 break;
153 }
154 // Fall through.
155 case tok::kw_typeof:
156 case tok::kw___attribute:
157 case tok::kw___underlying_type: {
158 ConsumeToken();
159 if (Tok.isNot(tok::l_paren))
160 return TPResult::Error();
161 ConsumeParen();
Alexey Bataevee6507d2013-11-18 08:17:37 +0000162 if (!SkipUntil(tok::r_paren))
Richard Smith1fff95c2013-09-12 23:28:08 +0000163 return TPResult::Error();
164 break;
165 }
166
167 case tok::kw_class:
168 case tok::kw_struct:
169 case tok::kw_union:
170 case tok::kw___interface:
171 case tok::kw_enum:
172 // elaborated-type-specifier:
173 // class-key attribute-specifier-seq[opt]
174 // nested-name-specifier[opt] identifier
175 // class-key nested-name-specifier[opt] template[opt] simple-template-id
176 // enum nested-name-specifier[opt] identifier
177 //
178 // FIXME: We don't support class-specifiers nor enum-specifiers here.
179 ConsumeToken();
180
181 // Skip attributes.
182 while (Tok.is(tok::l_square) || Tok.is(tok::kw___attribute) ||
183 Tok.is(tok::kw___declspec) || Tok.is(tok::kw_alignas)) {
184 if (Tok.is(tok::l_square)) {
185 ConsumeBracket();
Alexey Bataevee6507d2013-11-18 08:17:37 +0000186 if (!SkipUntil(tok::r_square))
Richard Smith1fff95c2013-09-12 23:28:08 +0000187 return TPResult::Error();
188 } else {
189 ConsumeToken();
190 if (Tok.isNot(tok::l_paren))
191 return TPResult::Error();
192 ConsumeParen();
Alexey Bataevee6507d2013-11-18 08:17:37 +0000193 if (!SkipUntil(tok::r_paren))
Richard Smith1fff95c2013-09-12 23:28:08 +0000194 return TPResult::Error();
195 }
196 }
197
198 if (TryAnnotateCXXScopeToken())
199 return TPResult::Error();
200 if (Tok.is(tok::annot_cxxscope))
201 ConsumeToken();
202 if (Tok.isNot(tok::identifier) && Tok.isNot(tok::annot_template_id))
203 return TPResult::Error();
204 ConsumeToken();
205 break;
206
207 case tok::annot_cxxscope:
208 ConsumeToken();
209 // Fall through.
210 default:
211 ConsumeToken();
212
213 if (getLangOpts().ObjC1 && Tok.is(tok::less))
214 return TryParseProtocolQualifiers();
215 break;
216 }
217
218 return TPResult::Ambiguous();
219}
220
Guy Benyei11169dd2012-12-18 14:30:41 +0000221/// simple-declaration:
222/// decl-specifier-seq init-declarator-list[opt] ';'
223///
224/// (if AllowForRangeDecl specified)
225/// for ( for-range-declaration : for-range-initializer ) statement
226/// for-range-declaration:
227/// attribute-specifier-seqopt type-specifier-seq declarator
228///
229Parser::TPResult Parser::TryParseSimpleDeclaration(bool AllowForRangeDecl) {
Richard Smith1fff95c2013-09-12 23:28:08 +0000230 if (TryConsumeDeclarationSpecifier() == TPResult::Error())
231 return TPResult::Error();
Guy Benyei11169dd2012-12-18 14:30:41 +0000232
233 // Two decl-specifiers in a row conclusively disambiguate this as being a
234 // simple-declaration. Don't bother calling isCXXDeclarationSpecifier in the
235 // overwhelmingly common case that the next token is a '('.
236 if (Tok.isNot(tok::l_paren)) {
237 TPResult TPR = isCXXDeclarationSpecifier();
238 if (TPR == TPResult::Ambiguous())
239 return TPResult::True();
240 if (TPR == TPResult::True() || TPR == TPResult::Error())
241 return TPR;
242 assert(TPR == TPResult::False());
243 }
244
245 TPResult TPR = TryParseInitDeclaratorList();
246 if (TPR != TPResult::Ambiguous())
247 return TPR;
248
249 if (Tok.isNot(tok::semi) && (!AllowForRangeDecl || Tok.isNot(tok::colon)))
250 return TPResult::False();
251
252 return TPResult::Ambiguous();
253}
254
Richard Smith22c7c412013-03-20 03:35:02 +0000255/// Tentatively parse an init-declarator-list in order to disambiguate it from
256/// an expression.
257///
Guy Benyei11169dd2012-12-18 14:30:41 +0000258/// init-declarator-list:
259/// init-declarator
260/// init-declarator-list ',' init-declarator
261///
262/// init-declarator:
263/// declarator initializer[opt]
264/// [GNU] declarator simple-asm-expr[opt] attributes[opt] initializer[opt]
265///
Richard Smith22c7c412013-03-20 03:35:02 +0000266/// initializer:
267/// brace-or-equal-initializer
268/// '(' expression-list ')'
Guy Benyei11169dd2012-12-18 14:30:41 +0000269///
Richard Smith22c7c412013-03-20 03:35:02 +0000270/// brace-or-equal-initializer:
271/// '=' initializer-clause
272/// [C++11] braced-init-list
273///
274/// initializer-clause:
275/// assignment-expression
276/// braced-init-list
277///
278/// braced-init-list:
279/// '{' initializer-list ','[opt] '}'
280/// '{' '}'
Guy Benyei11169dd2012-12-18 14:30:41 +0000281///
282Parser::TPResult Parser::TryParseInitDeclaratorList() {
283 while (1) {
284 // declarator
285 TPResult TPR = TryParseDeclarator(false/*mayBeAbstract*/);
286 if (TPR != TPResult::Ambiguous())
287 return TPR;
288
289 // [GNU] simple-asm-expr[opt] attributes[opt]
290 if (Tok.is(tok::kw_asm) || Tok.is(tok::kw___attribute))
291 return TPResult::True();
292
293 // initializer[opt]
294 if (Tok.is(tok::l_paren)) {
295 // Parse through the parens.
296 ConsumeParen();
Alexey Bataevee6507d2013-11-18 08:17:37 +0000297 if (!SkipUntil(tok::r_paren, StopAtSemi))
Guy Benyei11169dd2012-12-18 14:30:41 +0000298 return TPResult::Error();
Richard Smith22c7c412013-03-20 03:35:02 +0000299 } else if (Tok.is(tok::l_brace)) {
300 // A left-brace here is sufficient to disambiguate the parse; an
301 // expression can never be followed directly by a braced-init-list.
302 return TPResult::True();
Guy Benyei11169dd2012-12-18 14:30:41 +0000303 } else if (Tok.is(tok::equal) || isTokIdentifier_in()) {
Richard Smith1fff95c2013-09-12 23:28:08 +0000304 // MSVC and g++ won't examine the rest of declarators if '=' is
Guy Benyei11169dd2012-12-18 14:30:41 +0000305 // encountered; they just conclude that we have a declaration.
306 // EDG parses the initializer completely, which is the proper behavior
307 // for this case.
308 //
309 // At present, Clang follows MSVC and g++, since the parser does not have
310 // the ability to parse an expression fully without recording the
311 // results of that parse.
Richard Smith1fff95c2013-09-12 23:28:08 +0000312 // FIXME: Handle this case correctly.
313 //
314 // Also allow 'in' after an Objective-C declaration as in:
315 // for (int (^b)(void) in array). Ideally this should be done in the
Guy Benyei11169dd2012-12-18 14:30:41 +0000316 // context of parsing for-init-statement of a foreach statement only. But,
317 // in any other context 'in' is invalid after a declaration and parser
318 // issues the error regardless of outcome of this decision.
Richard Smith1fff95c2013-09-12 23:28:08 +0000319 // FIXME: Change if above assumption does not hold.
Guy Benyei11169dd2012-12-18 14:30:41 +0000320 return TPResult::True();
321 }
322
323 if (Tok.isNot(tok::comma))
324 break;
325 ConsumeToken(); // the comma.
326 }
327
328 return TPResult::Ambiguous();
329}
330
331/// isCXXConditionDeclaration - Disambiguates between a declaration or an
332/// expression for a condition of a if/switch/while/for statement.
333/// If during the disambiguation process a parsing error is encountered,
334/// the function returns true to let the declaration parsing code handle it.
335///
336/// condition:
337/// expression
338/// type-specifier-seq declarator '=' assignment-expression
339/// [C++11] type-specifier-seq declarator '=' initializer-clause
340/// [C++11] type-specifier-seq declarator braced-init-list
341/// [GNU] type-specifier-seq declarator simple-asm-expr[opt] attributes[opt]
342/// '=' assignment-expression
343///
344bool Parser::isCXXConditionDeclaration() {
345 TPResult TPR = isCXXDeclarationSpecifier();
346 if (TPR != TPResult::Ambiguous())
347 return TPR != TPResult::False(); // Returns true for TPResult::True() or
348 // TPResult::Error().
349
350 // FIXME: Add statistics about the number of ambiguous statements encountered
351 // and how they were resolved (number of declarations+number of expressions).
352
353 // Ok, we have a simple-type-specifier/typename-specifier followed by a '('.
354 // We need tentative parsing...
355
356 TentativeParsingAction PA(*this);
357
358 // type-specifier-seq
Richard Smith1fff95c2013-09-12 23:28:08 +0000359 TryConsumeDeclarationSpecifier();
Guy Benyei11169dd2012-12-18 14:30:41 +0000360 assert(Tok.is(tok::l_paren) && "Expected '('");
361
362 // declarator
363 TPR = TryParseDeclarator(false/*mayBeAbstract*/);
364
365 // In case of an error, let the declaration parsing code handle it.
366 if (TPR == TPResult::Error())
367 TPR = TPResult::True();
368
369 if (TPR == TPResult::Ambiguous()) {
370 // '='
371 // [GNU] simple-asm-expr[opt] attributes[opt]
372 if (Tok.is(tok::equal) ||
373 Tok.is(tok::kw_asm) || Tok.is(tok::kw___attribute))
374 TPR = TPResult::True();
Richard Smith2bf7fdb2013-01-02 11:42:31 +0000375 else if (getLangOpts().CPlusPlus11 && Tok.is(tok::l_brace))
Guy Benyei11169dd2012-12-18 14:30:41 +0000376 TPR = TPResult::True();
377 else
378 TPR = TPResult::False();
379 }
380
381 PA.Revert();
382
383 assert(TPR == TPResult::True() || TPR == TPResult::False());
384 return TPR == TPResult::True();
385}
386
387 /// \brief Determine whether the next set of tokens contains a type-id.
388 ///
389 /// The context parameter states what context we're parsing right
390 /// now, which affects how this routine copes with the token
391 /// following the type-id. If the context is TypeIdInParens, we have
392 /// already parsed the '(' and we will cease lookahead when we hit
393 /// the corresponding ')'. If the context is
394 /// TypeIdAsTemplateArgument, we've already parsed the '<' or ','
395 /// before this template argument, and will cease lookahead when we
396 /// hit a '>', '>>' (in C++0x), or ','. Returns true for a type-id
397 /// and false for an expression. If during the disambiguation
398 /// process a parsing error is encountered, the function returns
399 /// true to let the declaration parsing code handle it.
400 ///
401 /// type-id:
402 /// type-specifier-seq abstract-declarator[opt]
403 ///
404bool Parser::isCXXTypeId(TentativeCXXTypeIdContext Context, bool &isAmbiguous) {
405
406 isAmbiguous = false;
407
408 // C++ 8.2p2:
409 // The ambiguity arising from the similarity between a function-style cast and
410 // a type-id can occur in different contexts. The ambiguity appears as a
411 // choice between a function-style cast expression and a declaration of a
412 // type. The resolution is that any construct that could possibly be a type-id
413 // in its syntactic context shall be considered a type-id.
414
415 TPResult TPR = isCXXDeclarationSpecifier();
416 if (TPR != TPResult::Ambiguous())
417 return TPR != TPResult::False(); // Returns true for TPResult::True() or
418 // TPResult::Error().
419
420 // FIXME: Add statistics about the number of ambiguous statements encountered
421 // and how they were resolved (number of declarations+number of expressions).
422
423 // Ok, we have a simple-type-specifier/typename-specifier followed by a '('.
424 // We need tentative parsing...
425
426 TentativeParsingAction PA(*this);
427
428 // type-specifier-seq
Richard Smith1fff95c2013-09-12 23:28:08 +0000429 TryConsumeDeclarationSpecifier();
Guy Benyei11169dd2012-12-18 14:30:41 +0000430 assert(Tok.is(tok::l_paren) && "Expected '('");
431
432 // declarator
433 TPR = TryParseDeclarator(true/*mayBeAbstract*/, false/*mayHaveIdentifier*/);
434
435 // In case of an error, let the declaration parsing code handle it.
436 if (TPR == TPResult::Error())
437 TPR = TPResult::True();
438
439 if (TPR == TPResult::Ambiguous()) {
440 // We are supposed to be inside parens, so if after the abstract declarator
441 // we encounter a ')' this is a type-id, otherwise it's an expression.
442 if (Context == TypeIdInParens && Tok.is(tok::r_paren)) {
443 TPR = TPResult::True();
444 isAmbiguous = true;
445
446 // We are supposed to be inside a template argument, so if after
447 // the abstract declarator we encounter a '>', '>>' (in C++0x), or
448 // ',', this is a type-id. Otherwise, it's an expression.
449 } else if (Context == TypeIdAsTemplateArgument &&
450 (Tok.is(tok::greater) || Tok.is(tok::comma) ||
Richard Smith2bf7fdb2013-01-02 11:42:31 +0000451 (getLangOpts().CPlusPlus11 && Tok.is(tok::greatergreater)))) {
Guy Benyei11169dd2012-12-18 14:30:41 +0000452 TPR = TPResult::True();
453 isAmbiguous = true;
454
455 } else
456 TPR = TPResult::False();
457 }
458
459 PA.Revert();
460
461 assert(TPR == TPResult::True() || TPR == TPResult::False());
462 return TPR == TPResult::True();
463}
464
465/// \brief Returns true if this is a C++11 attribute-specifier. Per
466/// C++11 [dcl.attr.grammar]p6, two consecutive left square bracket tokens
467/// always introduce an attribute. In Objective-C++11, this rule does not
468/// apply if either '[' begins a message-send.
469///
470/// If Disambiguate is true, we try harder to determine whether a '[[' starts
471/// an attribute-specifier, and return CAK_InvalidAttributeSpecifier if not.
472///
473/// If OuterMightBeMessageSend is true, we assume the outer '[' is either an
474/// Obj-C message send or the start of an attribute. Otherwise, we assume it
475/// is not an Obj-C message send.
476///
477/// C++11 [dcl.attr.grammar]:
478///
479/// attribute-specifier:
480/// '[' '[' attribute-list ']' ']'
481/// alignment-specifier
482///
483/// attribute-list:
484/// attribute[opt]
485/// attribute-list ',' attribute[opt]
486/// attribute '...'
487/// attribute-list ',' attribute '...'
488///
489/// attribute:
490/// attribute-token attribute-argument-clause[opt]
491///
492/// attribute-token:
493/// identifier
494/// identifier '::' identifier
495///
496/// attribute-argument-clause:
497/// '(' balanced-token-seq ')'
498Parser::CXX11AttributeKind
499Parser::isCXX11AttributeSpecifier(bool Disambiguate,
500 bool OuterMightBeMessageSend) {
501 if (Tok.is(tok::kw_alignas))
502 return CAK_AttributeSpecifier;
503
504 if (Tok.isNot(tok::l_square) || NextToken().isNot(tok::l_square))
505 return CAK_NotAttributeSpecifier;
506
507 // No tentative parsing if we don't need to look for ']]' or a lambda.
508 if (!Disambiguate && !getLangOpts().ObjC1)
509 return CAK_AttributeSpecifier;
510
511 TentativeParsingAction PA(*this);
512
513 // Opening brackets were checked for above.
514 ConsumeBracket();
515
516 // Outside Obj-C++11, treat anything with a matching ']]' as an attribute.
517 if (!getLangOpts().ObjC1) {
518 ConsumeBracket();
519
Alexey Bataevee6507d2013-11-18 08:17:37 +0000520 bool IsAttribute = SkipUntil(tok::r_square);
Guy Benyei11169dd2012-12-18 14:30:41 +0000521 IsAttribute &= Tok.is(tok::r_square);
522
523 PA.Revert();
524
525 return IsAttribute ? CAK_AttributeSpecifier : CAK_InvalidAttributeSpecifier;
526 }
527
528 // In Obj-C++11, we need to distinguish four situations:
529 // 1a) int x[[attr]]; C++11 attribute.
530 // 1b) [[attr]]; C++11 statement attribute.
531 // 2) int x[[obj](){ return 1; }()]; Lambda in array size/index.
532 // 3a) int x[[obj get]]; Message send in array size/index.
533 // 3b) [[Class alloc] init]; Message send in message send.
534 // 4) [[obj]{ return self; }() doStuff]; Lambda in message send.
535 // (1) is an attribute, (2) is ill-formed, and (3) and (4) are accepted.
536
537 // If we have a lambda-introducer, then this is definitely not a message send.
538 // FIXME: If this disambiguation is too slow, fold the tentative lambda parse
539 // into the tentative attribute parse below.
540 LambdaIntroducer Intro;
541 if (!TryParseLambdaIntroducer(Intro)) {
542 // A lambda cannot end with ']]', and an attribute must.
543 bool IsAttribute = Tok.is(tok::r_square);
544
545 PA.Revert();
546
547 if (IsAttribute)
548 // Case 1: C++11 attribute.
549 return CAK_AttributeSpecifier;
550
551 if (OuterMightBeMessageSend)
552 // Case 4: Lambda in message send.
553 return CAK_NotAttributeSpecifier;
554
555 // Case 2: Lambda in array size / index.
556 return CAK_InvalidAttributeSpecifier;
557 }
558
559 ConsumeBracket();
560
561 // If we don't have a lambda-introducer, then we have an attribute or a
562 // message-send.
563 bool IsAttribute = true;
564 while (Tok.isNot(tok::r_square)) {
565 if (Tok.is(tok::comma)) {
566 // Case 1: Stray commas can only occur in attributes.
567 PA.Revert();
568 return CAK_AttributeSpecifier;
569 }
570
571 // Parse the attribute-token, if present.
572 // C++11 [dcl.attr.grammar]:
573 // If a keyword or an alternative token that satisfies the syntactic
574 // requirements of an identifier is contained in an attribute-token,
575 // it is considered an identifier.
576 SourceLocation Loc;
577 if (!TryParseCXX11AttributeIdentifier(Loc)) {
578 IsAttribute = false;
579 break;
580 }
581 if (Tok.is(tok::coloncolon)) {
582 ConsumeToken();
583 if (!TryParseCXX11AttributeIdentifier(Loc)) {
584 IsAttribute = false;
585 break;
586 }
587 }
588
589 // Parse the attribute-argument-clause, if present.
590 if (Tok.is(tok::l_paren)) {
591 ConsumeParen();
Alexey Bataevee6507d2013-11-18 08:17:37 +0000592 if (!SkipUntil(tok::r_paren)) {
Guy Benyei11169dd2012-12-18 14:30:41 +0000593 IsAttribute = false;
594 break;
595 }
596 }
597
598 if (Tok.is(tok::ellipsis))
599 ConsumeToken();
600
601 if (Tok.isNot(tok::comma))
602 break;
603
604 ConsumeToken();
605 }
606
607 // An attribute must end ']]'.
608 if (IsAttribute) {
609 if (Tok.is(tok::r_square)) {
610 ConsumeBracket();
611 IsAttribute = Tok.is(tok::r_square);
612 } else {
613 IsAttribute = false;
614 }
615 }
616
617 PA.Revert();
618
619 if (IsAttribute)
620 // Case 1: C++11 statement attribute.
621 return CAK_AttributeSpecifier;
622
623 // Case 3: Message send.
624 return CAK_NotAttributeSpecifier;
625}
626
Richard Smith1fff95c2013-09-12 23:28:08 +0000627Parser::TPResult Parser::TryParsePtrOperatorSeq() {
628 while (true) {
629 if (Tok.is(tok::coloncolon) || Tok.is(tok::identifier))
630 if (TryAnnotateCXXScopeToken(true))
631 return TPResult::Error();
632
633 if (Tok.is(tok::star) || Tok.is(tok::amp) || Tok.is(tok::caret) ||
634 Tok.is(tok::ampamp) ||
635 (Tok.is(tok::annot_cxxscope) && NextToken().is(tok::star))) {
636 // ptr-operator
637 ConsumeToken();
638 while (Tok.is(tok::kw_const) ||
639 Tok.is(tok::kw_volatile) ||
640 Tok.is(tok::kw_restrict))
641 ConsumeToken();
642 } else {
643 return TPResult::True();
644 }
645 }
646}
647
648/// operator-function-id:
649/// 'operator' operator
650///
651/// operator: one of
652/// new delete new[] delete[] + - * / % ^ [...]
653///
654/// conversion-function-id:
655/// 'operator' conversion-type-id
656///
657/// conversion-type-id:
658/// type-specifier-seq conversion-declarator[opt]
659///
660/// conversion-declarator:
661/// ptr-operator conversion-declarator[opt]
662///
663/// literal-operator-id:
664/// 'operator' string-literal identifier
665/// 'operator' user-defined-string-literal
666Parser::TPResult Parser::TryParseOperatorId() {
667 assert(Tok.is(tok::kw_operator));
668 ConsumeToken();
669
670 // Maybe this is an operator-function-id.
671 switch (Tok.getKind()) {
672 case tok::kw_new: case tok::kw_delete:
673 ConsumeToken();
674 if (Tok.is(tok::l_square) && NextToken().is(tok::r_square)) {
675 ConsumeBracket();
676 ConsumeBracket();
677 }
678 return TPResult::True();
679
680#define OVERLOADED_OPERATOR(Name, Spelling, Token, Unary, Binary, MemOnly) \
681 case tok::Token:
682#define OVERLOADED_OPERATOR_MULTI(Name, Spelling, Unary, Binary, MemOnly)
683#include "clang/Basic/OperatorKinds.def"
684 ConsumeToken();
685 return TPResult::True();
686
687 case tok::l_square:
688 if (NextToken().is(tok::r_square)) {
689 ConsumeBracket();
690 ConsumeBracket();
691 return TPResult::True();
692 }
693 break;
694
695 case tok::l_paren:
696 if (NextToken().is(tok::r_paren)) {
697 ConsumeParen();
698 ConsumeParen();
699 return TPResult::True();
700 }
701 break;
702
703 default:
704 break;
705 }
706
707 // Maybe this is a literal-operator-id.
708 if (getLangOpts().CPlusPlus11 && isTokenStringLiteral()) {
709 bool FoundUDSuffix = false;
710 do {
711 FoundUDSuffix |= Tok.hasUDSuffix();
712 ConsumeStringToken();
713 } while (isTokenStringLiteral());
714
715 if (!FoundUDSuffix) {
716 if (Tok.is(tok::identifier))
717 ConsumeToken();
718 else
719 return TPResult::Error();
720 }
721 return TPResult::True();
722 }
723
724 // Maybe this is a conversion-function-id.
725 bool AnyDeclSpecifiers = false;
726 while (true) {
727 TPResult TPR = isCXXDeclarationSpecifier();
728 if (TPR == TPResult::Error())
729 return TPR;
730 if (TPR == TPResult::False()) {
731 if (!AnyDeclSpecifiers)
732 return TPResult::Error();
733 break;
734 }
735 if (TryConsumeDeclarationSpecifier() == TPResult::Error())
736 return TPResult::Error();
737 AnyDeclSpecifiers = true;
738 }
739 return TryParsePtrOperatorSeq();
740}
741
Guy Benyei11169dd2012-12-18 14:30:41 +0000742/// declarator:
743/// direct-declarator
744/// ptr-operator declarator
745///
746/// direct-declarator:
747/// declarator-id
748/// direct-declarator '(' parameter-declaration-clause ')'
749/// cv-qualifier-seq[opt] exception-specification[opt]
750/// direct-declarator '[' constant-expression[opt] ']'
751/// '(' declarator ')'
752/// [GNU] '(' attributes declarator ')'
753///
754/// abstract-declarator:
755/// ptr-operator abstract-declarator[opt]
756/// direct-abstract-declarator
757/// ...
758///
759/// direct-abstract-declarator:
760/// direct-abstract-declarator[opt]
761/// '(' parameter-declaration-clause ')' cv-qualifier-seq[opt]
762/// exception-specification[opt]
763/// direct-abstract-declarator[opt] '[' constant-expression[opt] ']'
764/// '(' abstract-declarator ')'
765///
766/// ptr-operator:
767/// '*' cv-qualifier-seq[opt]
768/// '&'
769/// [C++0x] '&&' [TODO]
770/// '::'[opt] nested-name-specifier '*' cv-qualifier-seq[opt]
771///
772/// cv-qualifier-seq:
773/// cv-qualifier cv-qualifier-seq[opt]
774///
775/// cv-qualifier:
776/// 'const'
777/// 'volatile'
778///
779/// declarator-id:
780/// '...'[opt] id-expression
781///
782/// id-expression:
783/// unqualified-id
784/// qualified-id [TODO]
785///
786/// unqualified-id:
787/// identifier
Richard Smith1fff95c2013-09-12 23:28:08 +0000788/// operator-function-id
789/// conversion-function-id
790/// literal-operator-id
Guy Benyei11169dd2012-12-18 14:30:41 +0000791/// '~' class-name [TODO]
Richard Smith1fff95c2013-09-12 23:28:08 +0000792/// '~' decltype-specifier [TODO]
Guy Benyei11169dd2012-12-18 14:30:41 +0000793/// template-id [TODO]
794///
795Parser::TPResult Parser::TryParseDeclarator(bool mayBeAbstract,
796 bool mayHaveIdentifier) {
797 // declarator:
798 // direct-declarator
799 // ptr-operator declarator
Richard Smith1fff95c2013-09-12 23:28:08 +0000800 if (TryParsePtrOperatorSeq() == TPResult::Error())
801 return TPResult::Error();
Guy Benyei11169dd2012-12-18 14:30:41 +0000802
803 // direct-declarator:
804 // direct-abstract-declarator:
805 if (Tok.is(tok::ellipsis))
806 ConsumeToken();
Richard Smith1fff95c2013-09-12 23:28:08 +0000807
808 if ((Tok.is(tok::identifier) || Tok.is(tok::kw_operator) ||
809 (Tok.is(tok::annot_cxxscope) && (NextToken().is(tok::identifier) ||
810 NextToken().is(tok::kw_operator)))) &&
Guy Benyei11169dd2012-12-18 14:30:41 +0000811 mayHaveIdentifier) {
812 // declarator-id
813 if (Tok.is(tok::annot_cxxscope))
814 ConsumeToken();
Richard Smith1fff95c2013-09-12 23:28:08 +0000815 else if (Tok.is(tok::identifier))
Guy Benyei11169dd2012-12-18 14:30:41 +0000816 TentativelyDeclaredIdentifiers.push_back(Tok.getIdentifierInfo());
Richard Smith1fff95c2013-09-12 23:28:08 +0000817 if (Tok.is(tok::kw_operator)) {
818 if (TryParseOperatorId() == TPResult::Error())
819 return TPResult::Error();
820 } else
821 ConsumeToken();
Guy Benyei11169dd2012-12-18 14:30:41 +0000822 } else if (Tok.is(tok::l_paren)) {
823 ConsumeParen();
824 if (mayBeAbstract &&
825 (Tok.is(tok::r_paren) || // 'int()' is a function.
826 // 'int(...)' is a function.
827 (Tok.is(tok::ellipsis) && NextToken().is(tok::r_paren)) ||
828 isDeclarationSpecifier())) { // 'int(int)' is a function.
829 // '(' parameter-declaration-clause ')' cv-qualifier-seq[opt]
830 // exception-specification[opt]
831 TPResult TPR = TryParseFunctionDeclarator();
832 if (TPR != TPResult::Ambiguous())
833 return TPR;
834 } else {
835 // '(' declarator ')'
836 // '(' attributes declarator ')'
837 // '(' abstract-declarator ')'
838 if (Tok.is(tok::kw___attribute) ||
839 Tok.is(tok::kw___declspec) ||
840 Tok.is(tok::kw___cdecl) ||
841 Tok.is(tok::kw___stdcall) ||
842 Tok.is(tok::kw___fastcall) ||
843 Tok.is(tok::kw___thiscall) ||
844 Tok.is(tok::kw___unaligned))
845 return TPResult::True(); // attributes indicate declaration
846 TPResult TPR = TryParseDeclarator(mayBeAbstract, mayHaveIdentifier);
847 if (TPR != TPResult::Ambiguous())
848 return TPR;
849 if (Tok.isNot(tok::r_paren))
850 return TPResult::False();
851 ConsumeParen();
852 }
853 } else if (!mayBeAbstract) {
854 return TPResult::False();
855 }
856
857 while (1) {
858 TPResult TPR(TPResult::Ambiguous());
859
860 // abstract-declarator: ...
861 if (Tok.is(tok::ellipsis))
862 ConsumeToken();
863
864 if (Tok.is(tok::l_paren)) {
865 // Check whether we have a function declarator or a possible ctor-style
866 // initializer that follows the declarator. Note that ctor-style
867 // initializers are not possible in contexts where abstract declarators
868 // are allowed.
869 if (!mayBeAbstract && !isCXXFunctionDeclarator())
870 break;
871
872 // direct-declarator '(' parameter-declaration-clause ')'
873 // cv-qualifier-seq[opt] exception-specification[opt]
874 ConsumeParen();
875 TPR = TryParseFunctionDeclarator();
876 } else if (Tok.is(tok::l_square)) {
877 // direct-declarator '[' constant-expression[opt] ']'
878 // direct-abstract-declarator[opt] '[' constant-expression[opt] ']'
879 TPR = TryParseBracketDeclarator();
880 } else {
881 break;
882 }
883
884 if (TPR != TPResult::Ambiguous())
885 return TPR;
886 }
887
888 return TPResult::Ambiguous();
889}
890
891Parser::TPResult
892Parser::isExpressionOrTypeSpecifierSimple(tok::TokenKind Kind) {
893 switch (Kind) {
894 // Obviously starts an expression.
895 case tok::numeric_constant:
896 case tok::char_constant:
897 case tok::wide_char_constant:
898 case tok::utf16_char_constant:
899 case tok::utf32_char_constant:
900 case tok::string_literal:
901 case tok::wide_string_literal:
902 case tok::utf8_string_literal:
903 case tok::utf16_string_literal:
904 case tok::utf32_string_literal:
905 case tok::l_square:
906 case tok::l_paren:
907 case tok::amp:
908 case tok::ampamp:
909 case tok::star:
910 case tok::plus:
911 case tok::plusplus:
912 case tok::minus:
913 case tok::minusminus:
914 case tok::tilde:
915 case tok::exclaim:
916 case tok::kw_sizeof:
917 case tok::kw___func__:
918 case tok::kw_const_cast:
919 case tok::kw_delete:
920 case tok::kw_dynamic_cast:
921 case tok::kw_false:
922 case tok::kw_new:
923 case tok::kw_operator:
924 case tok::kw_reinterpret_cast:
925 case tok::kw_static_cast:
926 case tok::kw_this:
927 case tok::kw_throw:
928 case tok::kw_true:
929 case tok::kw_typeid:
930 case tok::kw_alignof:
931 case tok::kw_noexcept:
932 case tok::kw_nullptr:
933 case tok::kw__Alignof:
934 case tok::kw___null:
935 case tok::kw___alignof:
936 case tok::kw___builtin_choose_expr:
937 case tok::kw___builtin_offsetof:
Guy Benyei11169dd2012-12-18 14:30:41 +0000938 case tok::kw___builtin_va_arg:
939 case tok::kw___imag:
940 case tok::kw___real:
941 case tok::kw___FUNCTION__:
David Majnemerbed356a2013-11-06 23:31:56 +0000942 case tok::kw___FUNCDNAME__:
Guy Benyei11169dd2012-12-18 14:30:41 +0000943 case tok::kw_L__FUNCTION__:
944 case tok::kw___PRETTY_FUNCTION__:
Guy Benyei11169dd2012-12-18 14:30:41 +0000945 case tok::kw___uuidof:
Alp Toker40f9b1c2013-12-12 21:23:03 +0000946#define TYPE_TRAIT(N,Spelling,K) \
947 case tok::kw_##Spelling:
948#include "clang/Basic/TokenKinds.def"
Guy Benyei11169dd2012-12-18 14:30:41 +0000949 return TPResult::True();
950
951 // Obviously starts a type-specifier-seq:
952 case tok::kw_char:
953 case tok::kw_const:
954 case tok::kw_double:
955 case tok::kw_enum:
956 case tok::kw_half:
957 case tok::kw_float:
958 case tok::kw_int:
959 case tok::kw_long:
960 case tok::kw___int64:
961 case tok::kw___int128:
962 case tok::kw_restrict:
963 case tok::kw_short:
964 case tok::kw_signed:
965 case tok::kw_struct:
966 case tok::kw_union:
967 case tok::kw_unsigned:
968 case tok::kw_void:
969 case tok::kw_volatile:
970 case tok::kw__Bool:
971 case tok::kw__Complex:
972 case tok::kw_class:
973 case tok::kw_typename:
974 case tok::kw_wchar_t:
975 case tok::kw_char16_t:
976 case tok::kw_char32_t:
Guy Benyei11169dd2012-12-18 14:30:41 +0000977 case tok::kw__Decimal32:
978 case tok::kw__Decimal64:
979 case tok::kw__Decimal128:
Richard Smith1fff95c2013-09-12 23:28:08 +0000980 case tok::kw___interface:
Guy Benyei11169dd2012-12-18 14:30:41 +0000981 case tok::kw___thread:
Richard Smithb4a9e862013-04-12 22:46:28 +0000982 case tok::kw_thread_local:
983 case tok::kw__Thread_local:
Guy Benyei11169dd2012-12-18 14:30:41 +0000984 case tok::kw_typeof:
Richard Smith1fff95c2013-09-12 23:28:08 +0000985 case tok::kw___underlying_type:
Guy Benyei11169dd2012-12-18 14:30:41 +0000986 case tok::kw___cdecl:
987 case tok::kw___stdcall:
988 case tok::kw___fastcall:
989 case tok::kw___thiscall:
990 case tok::kw___unaligned:
991 case tok::kw___vector:
992 case tok::kw___pixel:
993 case tok::kw__Atomic:
994 case tok::kw___unknown_anytype:
995 return TPResult::False();
996
997 default:
998 break;
999 }
1000
1001 return TPResult::Ambiguous();
1002}
1003
1004bool Parser::isTentativelyDeclared(IdentifierInfo *II) {
1005 return std::find(TentativelyDeclaredIdentifiers.begin(),
1006 TentativelyDeclaredIdentifiers.end(), II)
1007 != TentativelyDeclaredIdentifiers.end();
1008}
1009
1010/// isCXXDeclarationSpecifier - Returns TPResult::True() if it is a declaration
1011/// specifier, TPResult::False() if it is not, TPResult::Ambiguous() if it could
1012/// be either a decl-specifier or a function-style cast, and TPResult::Error()
1013/// if a parsing error was found and reported.
1014///
1015/// If HasMissingTypename is provided, a name with a dependent scope specifier
1016/// will be treated as ambiguous if the 'typename' keyword is missing. If this
1017/// happens, *HasMissingTypename will be set to 'true'. This will also be used
1018/// as an indicator that undeclared identifiers (which will trigger a later
1019/// parse error) should be treated as types. Returns TPResult::Ambiguous() in
1020/// such cases.
1021///
1022/// decl-specifier:
1023/// storage-class-specifier
1024/// type-specifier
1025/// function-specifier
1026/// 'friend'
1027/// 'typedef'
Richard Smithb4a9e862013-04-12 22:46:28 +00001028/// [C++11] 'constexpr'
Guy Benyei11169dd2012-12-18 14:30:41 +00001029/// [GNU] attributes declaration-specifiers[opt]
1030///
1031/// storage-class-specifier:
1032/// 'register'
1033/// 'static'
1034/// 'extern'
1035/// 'mutable'
1036/// 'auto'
1037/// [GNU] '__thread'
Richard Smithb4a9e862013-04-12 22:46:28 +00001038/// [C++11] 'thread_local'
1039/// [C11] '_Thread_local'
Guy Benyei11169dd2012-12-18 14:30:41 +00001040///
1041/// function-specifier:
1042/// 'inline'
1043/// 'virtual'
1044/// 'explicit'
1045///
1046/// typedef-name:
1047/// identifier
1048///
1049/// type-specifier:
1050/// simple-type-specifier
1051/// class-specifier
1052/// enum-specifier
1053/// elaborated-type-specifier
1054/// typename-specifier
1055/// cv-qualifier
1056///
1057/// simple-type-specifier:
1058/// '::'[opt] nested-name-specifier[opt] type-name
1059/// '::'[opt] nested-name-specifier 'template'
1060/// simple-template-id [TODO]
1061/// 'char'
1062/// 'wchar_t'
1063/// 'bool'
1064/// 'short'
1065/// 'int'
1066/// 'long'
1067/// 'signed'
1068/// 'unsigned'
1069/// 'float'
1070/// 'double'
1071/// 'void'
1072/// [GNU] typeof-specifier
1073/// [GNU] '_Complex'
Richard Smithb4a9e862013-04-12 22:46:28 +00001074/// [C++11] 'auto'
1075/// [C++11] 'decltype' ( expression )
Richard Smith74aeef52013-04-26 16:15:35 +00001076/// [C++1y] 'decltype' ( 'auto' )
Guy Benyei11169dd2012-12-18 14:30:41 +00001077///
1078/// type-name:
1079/// class-name
1080/// enum-name
1081/// typedef-name
1082///
1083/// elaborated-type-specifier:
1084/// class-key '::'[opt] nested-name-specifier[opt] identifier
1085/// class-key '::'[opt] nested-name-specifier[opt] 'template'[opt]
1086/// simple-template-id
1087/// 'enum' '::'[opt] nested-name-specifier[opt] identifier
1088///
1089/// enum-name:
1090/// identifier
1091///
1092/// enum-specifier:
1093/// 'enum' identifier[opt] '{' enumerator-list[opt] '}'
1094/// 'enum' identifier[opt] '{' enumerator-list ',' '}'
1095///
1096/// class-specifier:
1097/// class-head '{' member-specification[opt] '}'
1098///
1099/// class-head:
1100/// class-key identifier[opt] base-clause[opt]
1101/// class-key nested-name-specifier identifier base-clause[opt]
1102/// class-key nested-name-specifier[opt] simple-template-id
1103/// base-clause[opt]
1104///
1105/// class-key:
1106/// 'class'
1107/// 'struct'
1108/// 'union'
1109///
1110/// cv-qualifier:
1111/// 'const'
1112/// 'volatile'
1113/// [GNU] restrict
1114///
1115Parser::TPResult
1116Parser::isCXXDeclarationSpecifier(Parser::TPResult BracedCastResult,
1117 bool *HasMissingTypename) {
1118 switch (Tok.getKind()) {
1119 case tok::identifier: {
1120 // Check for need to substitute AltiVec __vector keyword
1121 // for "vector" identifier.
1122 if (TryAltiVecVectorToken())
1123 return TPResult::True();
1124
1125 const Token &Next = NextToken();
1126 // In 'foo bar', 'foo' is always a type name outside of Objective-C.
1127 if (!getLangOpts().ObjC1 && Next.is(tok::identifier))
1128 return TPResult::True();
1129
1130 if (Next.isNot(tok::coloncolon) && Next.isNot(tok::less)) {
1131 // Determine whether this is a valid expression. If not, we will hit
1132 // a parse error one way or another. In that case, tell the caller that
1133 // this is ambiguous. Typo-correct to type and expression keywords and
1134 // to types and identifiers, in order to try to recover from errors.
1135 CorrectionCandidateCallback TypoCorrection;
1136 TypoCorrection.WantRemainingKeywords = false;
Kaelyn Uhrain989b7ca2013-04-03 16:59:49 +00001137 TypoCorrection.WantTypeSpecifiers = Next.isNot(tok::arrow);
Guy Benyei11169dd2012-12-18 14:30:41 +00001138 switch (TryAnnotateName(false /* no nested name specifier */,
1139 &TypoCorrection)) {
1140 case ANK_Error:
1141 return TPResult::Error();
1142 case ANK_TentativeDecl:
1143 return TPResult::False();
1144 case ANK_TemplateName:
1145 // A bare type template-name which can't be a template template
1146 // argument is an error, and was probably intended to be a type.
1147 return GreaterThanIsOperator ? TPResult::True() : TPResult::False();
1148 case ANK_Unresolved:
1149 return HasMissingTypename ? TPResult::Ambiguous() : TPResult::False();
1150 case ANK_Success:
1151 break;
1152 }
1153 assert(Tok.isNot(tok::identifier) &&
1154 "TryAnnotateName succeeded without producing an annotation");
1155 } else {
1156 // This might possibly be a type with a dependent scope specifier and
1157 // a missing 'typename' keyword. Don't use TryAnnotateName in this case,
1158 // since it will annotate as a primary expression, and we want to use the
1159 // "missing 'typename'" logic.
1160 if (TryAnnotateTypeOrScopeToken())
1161 return TPResult::Error();
1162 // If annotation failed, assume it's a non-type.
1163 // FIXME: If this happens due to an undeclared identifier, treat it as
1164 // ambiguous.
1165 if (Tok.is(tok::identifier))
1166 return TPResult::False();
1167 }
1168
1169 // We annotated this token as something. Recurse to handle whatever we got.
1170 return isCXXDeclarationSpecifier(BracedCastResult, HasMissingTypename);
1171 }
1172
1173 case tok::kw_typename: // typename T::type
1174 // Annotate typenames and C++ scope specifiers. If we get one, just
1175 // recurse to handle whatever we get.
1176 if (TryAnnotateTypeOrScopeToken())
1177 return TPResult::Error();
1178 return isCXXDeclarationSpecifier(BracedCastResult, HasMissingTypename);
1179
1180 case tok::coloncolon: { // ::foo::bar
1181 const Token &Next = NextToken();
1182 if (Next.is(tok::kw_new) || // ::new
1183 Next.is(tok::kw_delete)) // ::delete
1184 return TPResult::False();
1185 }
1186 // Fall through.
1187 case tok::kw_decltype:
1188 // Annotate typenames and C++ scope specifiers. If we get one, just
1189 // recurse to handle whatever we get.
1190 if (TryAnnotateTypeOrScopeToken())
1191 return TPResult::Error();
1192 return isCXXDeclarationSpecifier(BracedCastResult, HasMissingTypename);
1193
1194 // decl-specifier:
1195 // storage-class-specifier
1196 // type-specifier
1197 // function-specifier
1198 // 'friend'
1199 // 'typedef'
1200 // 'constexpr'
1201 case tok::kw_friend:
1202 case tok::kw_typedef:
1203 case tok::kw_constexpr:
1204 // storage-class-specifier
1205 case tok::kw_register:
1206 case tok::kw_static:
1207 case tok::kw_extern:
1208 case tok::kw_mutable:
1209 case tok::kw_auto:
1210 case tok::kw___thread:
Richard Smithb4a9e862013-04-12 22:46:28 +00001211 case tok::kw_thread_local:
1212 case tok::kw__Thread_local:
Guy Benyei11169dd2012-12-18 14:30:41 +00001213 // function-specifier
1214 case tok::kw_inline:
1215 case tok::kw_virtual:
1216 case tok::kw_explicit:
1217
1218 // Modules
1219 case tok::kw___module_private__:
1220
1221 // Debugger support
1222 case tok::kw___unknown_anytype:
1223
1224 // type-specifier:
1225 // simple-type-specifier
1226 // class-specifier
1227 // enum-specifier
1228 // elaborated-type-specifier
1229 // typename-specifier
1230 // cv-qualifier
1231
1232 // class-specifier
1233 // elaborated-type-specifier
1234 case tok::kw_class:
1235 case tok::kw_struct:
1236 case tok::kw_union:
Richard Smith1fff95c2013-09-12 23:28:08 +00001237 case tok::kw___interface:
Guy Benyei11169dd2012-12-18 14:30:41 +00001238 // enum-specifier
1239 case tok::kw_enum:
1240 // cv-qualifier
1241 case tok::kw_const:
1242 case tok::kw_volatile:
1243
1244 // GNU
1245 case tok::kw_restrict:
1246 case tok::kw__Complex:
1247 case tok::kw___attribute:
1248 return TPResult::True();
1249
1250 // Microsoft
1251 case tok::kw___declspec:
1252 case tok::kw___cdecl:
1253 case tok::kw___stdcall:
1254 case tok::kw___fastcall:
1255 case tok::kw___thiscall:
1256 case tok::kw___w64:
Aaron Ballman317a77f2013-05-22 23:25:32 +00001257 case tok::kw___sptr:
1258 case tok::kw___uptr:
Guy Benyei11169dd2012-12-18 14:30:41 +00001259 case tok::kw___ptr64:
1260 case tok::kw___ptr32:
1261 case tok::kw___forceinline:
1262 case tok::kw___unaligned:
1263 return TPResult::True();
1264
1265 // Borland
1266 case tok::kw___pascal:
1267 return TPResult::True();
1268
1269 // AltiVec
1270 case tok::kw___vector:
1271 return TPResult::True();
1272
1273 case tok::annot_template_id: {
1274 TemplateIdAnnotation *TemplateId = takeTemplateIdAnnotation(Tok);
1275 if (TemplateId->Kind != TNK_Type_template)
1276 return TPResult::False();
1277 CXXScopeSpec SS;
1278 AnnotateTemplateIdTokenAsType();
1279 assert(Tok.is(tok::annot_typename));
1280 goto case_typename;
1281 }
1282
1283 case tok::annot_cxxscope: // foo::bar or ::foo::bar, but already parsed
1284 // We've already annotated a scope; try to annotate a type.
1285 if (TryAnnotateTypeOrScopeToken())
1286 return TPResult::Error();
1287 if (!Tok.is(tok::annot_typename)) {
1288 // If the next token is an identifier or a type qualifier, then this
1289 // can't possibly be a valid expression either.
1290 if (Tok.is(tok::annot_cxxscope) && NextToken().is(tok::identifier)) {
1291 CXXScopeSpec SS;
1292 Actions.RestoreNestedNameSpecifierAnnotation(Tok.getAnnotationValue(),
1293 Tok.getAnnotationRange(),
1294 SS);
1295 if (SS.getScopeRep() && SS.getScopeRep()->isDependent()) {
1296 TentativeParsingAction PA(*this);
1297 ConsumeToken();
1298 ConsumeToken();
1299 bool isIdentifier = Tok.is(tok::identifier);
1300 TPResult TPR = TPResult::False();
1301 if (!isIdentifier)
1302 TPR = isCXXDeclarationSpecifier(BracedCastResult,
1303 HasMissingTypename);
1304 PA.Revert();
1305
1306 if (isIdentifier ||
1307 TPR == TPResult::True() || TPR == TPResult::Error())
1308 return TPResult::Error();
1309
1310 if (HasMissingTypename) {
1311 // We can't tell whether this is a missing 'typename' or a valid
1312 // expression.
1313 *HasMissingTypename = true;
1314 return TPResult::Ambiguous();
1315 }
1316 } else {
1317 // Try to resolve the name. If it doesn't exist, assume it was
1318 // intended to name a type and keep disambiguating.
1319 switch (TryAnnotateName(false /* SS is not dependent */)) {
1320 case ANK_Error:
1321 return TPResult::Error();
1322 case ANK_TentativeDecl:
1323 return TPResult::False();
1324 case ANK_TemplateName:
1325 // A bare type template-name which can't be a template template
1326 // argument is an error, and was probably intended to be a type.
1327 return GreaterThanIsOperator ? TPResult::True() : TPResult::False();
1328 case ANK_Unresolved:
1329 return HasMissingTypename ? TPResult::Ambiguous()
1330 : TPResult::False();
1331 case ANK_Success:
1332 // Annotated it, check again.
1333 assert(Tok.isNot(tok::annot_cxxscope) ||
1334 NextToken().isNot(tok::identifier));
1335 return isCXXDeclarationSpecifier(BracedCastResult,
1336 HasMissingTypename);
1337 }
1338 }
1339 }
1340 return TPResult::False();
1341 }
1342 // If that succeeded, fallthrough into the generic simple-type-id case.
1343
1344 // The ambiguity resides in a simple-type-specifier/typename-specifier
1345 // followed by a '('. The '(' could either be the start of:
1346 //
1347 // direct-declarator:
1348 // '(' declarator ')'
1349 //
1350 // direct-abstract-declarator:
1351 // '(' parameter-declaration-clause ')' cv-qualifier-seq[opt]
1352 // exception-specification[opt]
1353 // '(' abstract-declarator ')'
1354 //
1355 // or part of a function-style cast expression:
1356 //
1357 // simple-type-specifier '(' expression-list[opt] ')'
1358 //
1359
1360 // simple-type-specifier:
1361
1362 case tok::annot_typename:
1363 case_typename:
1364 // In Objective-C, we might have a protocol-qualified type.
1365 if (getLangOpts().ObjC1 && NextToken().is(tok::less)) {
1366 // Tentatively parse the
1367 TentativeParsingAction PA(*this);
1368 ConsumeToken(); // The type token
1369
1370 TPResult TPR = TryParseProtocolQualifiers();
1371 bool isFollowedByParen = Tok.is(tok::l_paren);
1372 bool isFollowedByBrace = Tok.is(tok::l_brace);
1373
1374 PA.Revert();
1375
1376 if (TPR == TPResult::Error())
1377 return TPResult::Error();
1378
1379 if (isFollowedByParen)
1380 return TPResult::Ambiguous();
1381
Richard Smith2bf7fdb2013-01-02 11:42:31 +00001382 if (getLangOpts().CPlusPlus11 && isFollowedByBrace)
Guy Benyei11169dd2012-12-18 14:30:41 +00001383 return BracedCastResult;
1384
1385 return TPResult::True();
1386 }
1387
1388 case tok::kw_char:
1389 case tok::kw_wchar_t:
1390 case tok::kw_char16_t:
1391 case tok::kw_char32_t:
1392 case tok::kw_bool:
1393 case tok::kw_short:
1394 case tok::kw_int:
1395 case tok::kw_long:
1396 case tok::kw___int64:
1397 case tok::kw___int128:
1398 case tok::kw_signed:
1399 case tok::kw_unsigned:
1400 case tok::kw_half:
1401 case tok::kw_float:
1402 case tok::kw_double:
1403 case tok::kw_void:
1404 case tok::annot_decltype:
1405 if (NextToken().is(tok::l_paren))
1406 return TPResult::Ambiguous();
1407
1408 // This is a function-style cast in all cases we disambiguate other than
1409 // one:
1410 // struct S {
1411 // enum E : int { a = 4 }; // enum
1412 // enum E : int { 4 }; // bit-field
1413 // };
Richard Smith2bf7fdb2013-01-02 11:42:31 +00001414 if (getLangOpts().CPlusPlus11 && NextToken().is(tok::l_brace))
Guy Benyei11169dd2012-12-18 14:30:41 +00001415 return BracedCastResult;
1416
1417 if (isStartOfObjCClassMessageMissingOpenBracket())
1418 return TPResult::False();
1419
1420 return TPResult::True();
1421
1422 // GNU typeof support.
1423 case tok::kw_typeof: {
1424 if (NextToken().isNot(tok::l_paren))
1425 return TPResult::True();
1426
1427 TentativeParsingAction PA(*this);
1428
1429 TPResult TPR = TryParseTypeofSpecifier();
1430 bool isFollowedByParen = Tok.is(tok::l_paren);
1431 bool isFollowedByBrace = Tok.is(tok::l_brace);
1432
1433 PA.Revert();
1434
1435 if (TPR == TPResult::Error())
1436 return TPResult::Error();
1437
1438 if (isFollowedByParen)
1439 return TPResult::Ambiguous();
1440
Richard Smith2bf7fdb2013-01-02 11:42:31 +00001441 if (getLangOpts().CPlusPlus11 && isFollowedByBrace)
Guy Benyei11169dd2012-12-18 14:30:41 +00001442 return BracedCastResult;
1443
1444 return TPResult::True();
1445 }
1446
1447 // C++0x type traits support
1448 case tok::kw___underlying_type:
1449 return TPResult::True();
1450
1451 // C11 _Atomic
1452 case tok::kw__Atomic:
1453 return TPResult::True();
1454
1455 default:
1456 return TPResult::False();
1457 }
1458}
1459
Richard Smith1fff95c2013-09-12 23:28:08 +00001460bool Parser::isCXXDeclarationSpecifierAType() {
1461 switch (Tok.getKind()) {
1462 // typename-specifier
1463 case tok::annot_decltype:
1464 case tok::annot_template_id:
1465 case tok::annot_typename:
1466 case tok::kw_typeof:
1467 case tok::kw___underlying_type:
1468 return true;
1469
1470 // elaborated-type-specifier
1471 case tok::kw_class:
1472 case tok::kw_struct:
1473 case tok::kw_union:
1474 case tok::kw___interface:
1475 case tok::kw_enum:
1476 return true;
1477
1478 // simple-type-specifier
1479 case tok::kw_char:
1480 case tok::kw_wchar_t:
1481 case tok::kw_char16_t:
1482 case tok::kw_char32_t:
1483 case tok::kw_bool:
1484 case tok::kw_short:
1485 case tok::kw_int:
1486 case tok::kw_long:
1487 case tok::kw___int64:
1488 case tok::kw___int128:
1489 case tok::kw_signed:
1490 case tok::kw_unsigned:
1491 case tok::kw_half:
1492 case tok::kw_float:
1493 case tok::kw_double:
1494 case tok::kw_void:
1495 case tok::kw___unknown_anytype:
1496 return true;
1497
1498 case tok::kw_auto:
1499 return getLangOpts().CPlusPlus11;
1500
1501 case tok::kw__Atomic:
1502 // "_Atomic foo"
1503 return NextToken().is(tok::l_paren);
1504
1505 default:
1506 return false;
1507 }
1508}
1509
Guy Benyei11169dd2012-12-18 14:30:41 +00001510/// [GNU] typeof-specifier:
1511/// 'typeof' '(' expressions ')'
1512/// 'typeof' '(' type-name ')'
1513///
1514Parser::TPResult Parser::TryParseTypeofSpecifier() {
1515 assert(Tok.is(tok::kw_typeof) && "Expected 'typeof'!");
1516 ConsumeToken();
1517
1518 assert(Tok.is(tok::l_paren) && "Expected '('");
1519 // Parse through the parens after 'typeof'.
1520 ConsumeParen();
Alexey Bataevee6507d2013-11-18 08:17:37 +00001521 if (!SkipUntil(tok::r_paren, StopAtSemi))
Guy Benyei11169dd2012-12-18 14:30:41 +00001522 return TPResult::Error();
1523
1524 return TPResult::Ambiguous();
1525}
1526
1527/// [ObjC] protocol-qualifiers:
1528//// '<' identifier-list '>'
1529Parser::TPResult Parser::TryParseProtocolQualifiers() {
1530 assert(Tok.is(tok::less) && "Expected '<' for qualifier list");
1531 ConsumeToken();
1532 do {
1533 if (Tok.isNot(tok::identifier))
1534 return TPResult::Error();
1535 ConsumeToken();
1536
1537 if (Tok.is(tok::comma)) {
1538 ConsumeToken();
1539 continue;
1540 }
1541
1542 if (Tok.is(tok::greater)) {
1543 ConsumeToken();
1544 return TPResult::Ambiguous();
1545 }
1546 } while (false);
1547
1548 return TPResult::Error();
1549}
1550
Guy Benyei11169dd2012-12-18 14:30:41 +00001551/// isCXXFunctionDeclarator - Disambiguates between a function declarator or
1552/// a constructor-style initializer, when parsing declaration statements.
1553/// Returns true for function declarator and false for constructor-style
1554/// initializer.
1555/// If during the disambiguation process a parsing error is encountered,
1556/// the function returns true to let the declaration parsing code handle it.
1557///
1558/// '(' parameter-declaration-clause ')' cv-qualifier-seq[opt]
1559/// exception-specification[opt]
1560///
1561bool Parser::isCXXFunctionDeclarator(bool *IsAmbiguous) {
1562
1563 // C++ 8.2p1:
1564 // The ambiguity arising from the similarity between a function-style cast and
1565 // a declaration mentioned in 6.8 can also occur in the context of a
1566 // declaration. In that context, the choice is between a function declaration
1567 // with a redundant set of parentheses around a parameter name and an object
1568 // declaration with a function-style cast as the initializer. Just as for the
1569 // ambiguities mentioned in 6.8, the resolution is to consider any construct
1570 // that could possibly be a declaration a declaration.
1571
1572 TentativeParsingAction PA(*this);
1573
1574 ConsumeParen();
1575 bool InvalidAsDeclaration = false;
1576 TPResult TPR = TryParseParameterDeclarationClause(&InvalidAsDeclaration);
1577 if (TPR == TPResult::Ambiguous()) {
1578 if (Tok.isNot(tok::r_paren))
1579 TPR = TPResult::False();
1580 else {
1581 const Token &Next = NextToken();
1582 if (Next.is(tok::amp) || Next.is(tok::ampamp) ||
1583 Next.is(tok::kw_const) || Next.is(tok::kw_volatile) ||
1584 Next.is(tok::kw_throw) || Next.is(tok::kw_noexcept) ||
Richard Smith89645bc2013-01-02 12:01:23 +00001585 Next.is(tok::l_square) || isCXX11VirtSpecifier(Next) ||
Guy Benyei11169dd2012-12-18 14:30:41 +00001586 Next.is(tok::l_brace) || Next.is(tok::kw_try) ||
1587 Next.is(tok::equal) || Next.is(tok::arrow))
1588 // The next token cannot appear after a constructor-style initializer,
1589 // and can appear next in a function definition. This must be a function
1590 // declarator.
1591 TPR = TPResult::True();
1592 else if (InvalidAsDeclaration)
1593 // Use the absence of 'typename' as a tie-breaker.
1594 TPR = TPResult::False();
1595 }
1596 }
1597
1598 PA.Revert();
1599
1600 if (IsAmbiguous && TPR == TPResult::Ambiguous())
1601 *IsAmbiguous = true;
1602
1603 // In case of an error, let the declaration parsing code handle it.
1604 return TPR != TPResult::False();
1605}
1606
1607/// parameter-declaration-clause:
1608/// parameter-declaration-list[opt] '...'[opt]
1609/// parameter-declaration-list ',' '...'
1610///
1611/// parameter-declaration-list:
1612/// parameter-declaration
1613/// parameter-declaration-list ',' parameter-declaration
1614///
1615/// parameter-declaration:
1616/// attribute-specifier-seq[opt] decl-specifier-seq declarator attributes[opt]
1617/// attribute-specifier-seq[opt] decl-specifier-seq declarator attributes[opt]
1618/// '=' assignment-expression
1619/// attribute-specifier-seq[opt] decl-specifier-seq abstract-declarator[opt]
1620/// attributes[opt]
1621/// attribute-specifier-seq[opt] decl-specifier-seq abstract-declarator[opt]
1622/// attributes[opt] '=' assignment-expression
1623///
1624Parser::TPResult
Richard Smith1fff95c2013-09-12 23:28:08 +00001625Parser::TryParseParameterDeclarationClause(bool *InvalidAsDeclaration,
1626 bool VersusTemplateArgument) {
Guy Benyei11169dd2012-12-18 14:30:41 +00001627
1628 if (Tok.is(tok::r_paren))
1629 return TPResult::Ambiguous();
1630
1631 // parameter-declaration-list[opt] '...'[opt]
1632 // parameter-declaration-list ',' '...'
1633 //
1634 // parameter-declaration-list:
1635 // parameter-declaration
1636 // parameter-declaration-list ',' parameter-declaration
1637 //
1638 while (1) {
1639 // '...'[opt]
1640 if (Tok.is(tok::ellipsis)) {
1641 ConsumeToken();
1642 if (Tok.is(tok::r_paren))
1643 return TPResult::True(); // '...)' is a sign of a function declarator.
1644 else
1645 return TPResult::False();
1646 }
1647
1648 // An attribute-specifier-seq here is a sign of a function declarator.
1649 if (isCXX11AttributeSpecifier(/*Disambiguate*/false,
1650 /*OuterMightBeMessageSend*/true))
1651 return TPResult::True();
1652
1653 ParsedAttributes attrs(AttrFactory);
1654 MaybeParseMicrosoftAttributes(attrs);
1655
1656 // decl-specifier-seq
1657 // A parameter-declaration's initializer must be preceded by an '=', so
1658 // decl-specifier-seq '{' is not a parameter in C++11.
Richard Smith1fff95c2013-09-12 23:28:08 +00001659 TPResult TPR = isCXXDeclarationSpecifier(TPResult::False(),
1660 InvalidAsDeclaration);
1661
1662 if (VersusTemplateArgument && TPR == TPResult::True()) {
1663 // Consume the decl-specifier-seq. We have to look past it, since a
1664 // type-id might appear here in a template argument.
1665 bool SeenType = false;
1666 do {
1667 SeenType |= isCXXDeclarationSpecifierAType();
1668 if (TryConsumeDeclarationSpecifier() == TPResult::Error())
1669 return TPResult::Error();
1670
1671 // If we see a parameter name, this can't be a template argument.
1672 if (SeenType && Tok.is(tok::identifier))
1673 return TPResult::True();
1674
1675 TPR = isCXXDeclarationSpecifier(TPResult::False(),
1676 InvalidAsDeclaration);
1677 if (TPR == TPResult::Error())
1678 return TPR;
1679 } while (TPR != TPResult::False());
1680 } else if (TPR == TPResult::Ambiguous()) {
1681 // Disambiguate what follows the decl-specifier.
1682 if (TryConsumeDeclarationSpecifier() == TPResult::Error())
1683 return TPResult::Error();
1684 } else
Guy Benyei11169dd2012-12-18 14:30:41 +00001685 return TPR;
1686
1687 // declarator
1688 // abstract-declarator[opt]
1689 TPR = TryParseDeclarator(true/*mayBeAbstract*/);
1690 if (TPR != TPResult::Ambiguous())
1691 return TPR;
1692
1693 // [GNU] attributes[opt]
1694 if (Tok.is(tok::kw___attribute))
1695 return TPResult::True();
1696
Richard Smith1fff95c2013-09-12 23:28:08 +00001697 // If we're disambiguating a template argument in a default argument in
1698 // a class definition versus a parameter declaration, an '=' here
1699 // disambiguates the parse one way or the other.
1700 // If this is a parameter, it must have a default argument because
1701 // (a) the previous parameter did, and
1702 // (b) this must be the first declaration of the function, so we can't
1703 // inherit any default arguments from elsewhere.
1704 // If we see an ')', then we've reached the end of a
1705 // parameter-declaration-clause, and the last param is missing its default
1706 // argument.
1707 if (VersusTemplateArgument)
1708 return (Tok.is(tok::equal) || Tok.is(tok::r_paren)) ? TPResult::True()
1709 : TPResult::False();
1710
Guy Benyei11169dd2012-12-18 14:30:41 +00001711 if (Tok.is(tok::equal)) {
1712 // '=' assignment-expression
1713 // Parse through assignment-expression.
Richard Smith1fff95c2013-09-12 23:28:08 +00001714 // FIXME: assignment-expression may contain an unparenthesized comma.
Alexey Bataevee6507d2013-11-18 08:17:37 +00001715 if (!SkipUntil(tok::comma, tok::r_paren, StopAtSemi | StopBeforeMatch))
Guy Benyei11169dd2012-12-18 14:30:41 +00001716 return TPResult::Error();
1717 }
1718
1719 if (Tok.is(tok::ellipsis)) {
1720 ConsumeToken();
1721 if (Tok.is(tok::r_paren))
1722 return TPResult::True(); // '...)' is a sign of a function declarator.
1723 else
1724 return TPResult::False();
1725 }
1726
1727 if (Tok.isNot(tok::comma))
1728 break;
1729 ConsumeToken(); // the comma.
1730 }
1731
1732 return TPResult::Ambiguous();
1733}
1734
1735/// TryParseFunctionDeclarator - We parsed a '(' and we want to try to continue
1736/// parsing as a function declarator.
1737/// If TryParseFunctionDeclarator fully parsed the function declarator, it will
1738/// return TPResult::Ambiguous(), otherwise it will return either False() or
1739/// Error().
1740///
1741/// '(' parameter-declaration-clause ')' cv-qualifier-seq[opt]
1742/// exception-specification[opt]
1743///
1744/// exception-specification:
1745/// 'throw' '(' type-id-list[opt] ')'
1746///
1747Parser::TPResult Parser::TryParseFunctionDeclarator() {
1748
1749 // The '(' is already parsed.
1750
1751 TPResult TPR = TryParseParameterDeclarationClause();
1752 if (TPR == TPResult::Ambiguous() && Tok.isNot(tok::r_paren))
1753 TPR = TPResult::False();
1754
1755 if (TPR == TPResult::False() || TPR == TPResult::Error())
1756 return TPR;
1757
1758 // Parse through the parens.
Alexey Bataevee6507d2013-11-18 08:17:37 +00001759 if (!SkipUntil(tok::r_paren, StopAtSemi))
Guy Benyei11169dd2012-12-18 14:30:41 +00001760 return TPResult::Error();
1761
1762 // cv-qualifier-seq
1763 while (Tok.is(tok::kw_const) ||
1764 Tok.is(tok::kw_volatile) ||
1765 Tok.is(tok::kw_restrict) )
1766 ConsumeToken();
1767
1768 // ref-qualifier[opt]
1769 if (Tok.is(tok::amp) || Tok.is(tok::ampamp))
1770 ConsumeToken();
1771
1772 // exception-specification
1773 if (Tok.is(tok::kw_throw)) {
1774 ConsumeToken();
1775 if (Tok.isNot(tok::l_paren))
1776 return TPResult::Error();
1777
1778 // Parse through the parens after 'throw'.
1779 ConsumeParen();
Alexey Bataevee6507d2013-11-18 08:17:37 +00001780 if (!SkipUntil(tok::r_paren, StopAtSemi))
Guy Benyei11169dd2012-12-18 14:30:41 +00001781 return TPResult::Error();
1782 }
1783 if (Tok.is(tok::kw_noexcept)) {
1784 ConsumeToken();
1785 // Possibly an expression as well.
1786 if (Tok.is(tok::l_paren)) {
1787 // Find the matching rparen.
1788 ConsumeParen();
Alexey Bataevee6507d2013-11-18 08:17:37 +00001789 if (!SkipUntil(tok::r_paren, StopAtSemi))
Guy Benyei11169dd2012-12-18 14:30:41 +00001790 return TPResult::Error();
1791 }
1792 }
1793
1794 return TPResult::Ambiguous();
1795}
1796
1797/// '[' constant-expression[opt] ']'
1798///
1799Parser::TPResult Parser::TryParseBracketDeclarator() {
1800 ConsumeBracket();
Alexey Bataevee6507d2013-11-18 08:17:37 +00001801 if (!SkipUntil(tok::r_square, StopAtSemi))
Guy Benyei11169dd2012-12-18 14:30:41 +00001802 return TPResult::Error();
1803
1804 return TPResult::Ambiguous();
1805}