blob: 7d1475c3a6b6b2c987ce8e6b166b65ac0e8fc287 [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();
162 if (!SkipUntil(tok::r_paren, false))
163 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();
186 if (!SkipUntil(tok::r_square, false))
187 return TPResult::Error();
188 } else {
189 ConsumeToken();
190 if (Tok.isNot(tok::l_paren))
191 return TPResult::Error();
192 ConsumeParen();
193 if (!SkipUntil(tok::r_paren, false))
194 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();
297 if (!SkipUntil(tok::r_paren))
298 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
520 bool IsAttribute = SkipUntil(tok::r_square, false);
521 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();
592 if (!SkipUntil(tok::r_paren, false)) {
593 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:
938 case tok::kw___builtin_types_compatible_p:
939 case tok::kw___builtin_va_arg:
940 case tok::kw___imag:
941 case tok::kw___real:
942 case tok::kw___FUNCTION__:
943 case tok::kw_L__FUNCTION__:
944 case tok::kw___PRETTY_FUNCTION__:
945 case tok::kw___has_nothrow_assign:
946 case tok::kw___has_nothrow_copy:
947 case tok::kw___has_nothrow_constructor:
948 case tok::kw___has_trivial_assign:
949 case tok::kw___has_trivial_copy:
950 case tok::kw___has_trivial_constructor:
951 case tok::kw___has_trivial_destructor:
952 case tok::kw___has_virtual_destructor:
953 case tok::kw___is_abstract:
954 case tok::kw___is_base_of:
955 case tok::kw___is_class:
956 case tok::kw___is_convertible_to:
957 case tok::kw___is_empty:
958 case tok::kw___is_enum:
959 case tok::kw___is_interface_class:
960 case tok::kw___is_final:
961 case tok::kw___is_literal:
962 case tok::kw___is_literal_type:
963 case tok::kw___is_pod:
964 case tok::kw___is_polymorphic:
965 case tok::kw___is_trivial:
966 case tok::kw___is_trivially_assignable:
967 case tok::kw___is_trivially_constructible:
968 case tok::kw___is_trivially_copyable:
969 case tok::kw___is_union:
970 case tok::kw___uuidof:
971 return TPResult::True();
972
973 // Obviously starts a type-specifier-seq:
974 case tok::kw_char:
975 case tok::kw_const:
976 case tok::kw_double:
977 case tok::kw_enum:
978 case tok::kw_half:
979 case tok::kw_float:
980 case tok::kw_int:
981 case tok::kw_long:
982 case tok::kw___int64:
983 case tok::kw___int128:
984 case tok::kw_restrict:
985 case tok::kw_short:
986 case tok::kw_signed:
987 case tok::kw_struct:
988 case tok::kw_union:
989 case tok::kw_unsigned:
990 case tok::kw_void:
991 case tok::kw_volatile:
992 case tok::kw__Bool:
993 case tok::kw__Complex:
994 case tok::kw_class:
995 case tok::kw_typename:
996 case tok::kw_wchar_t:
997 case tok::kw_char16_t:
998 case tok::kw_char32_t:
Guy Benyei11169dd2012-12-18 14:30:41 +0000999 case tok::kw__Decimal32:
1000 case tok::kw__Decimal64:
1001 case tok::kw__Decimal128:
Richard Smith1fff95c2013-09-12 23:28:08 +00001002 case tok::kw___interface:
Guy Benyei11169dd2012-12-18 14:30:41 +00001003 case tok::kw___thread:
Richard Smithb4a9e862013-04-12 22:46:28 +00001004 case tok::kw_thread_local:
1005 case tok::kw__Thread_local:
Guy Benyei11169dd2012-12-18 14:30:41 +00001006 case tok::kw_typeof:
Richard Smith1fff95c2013-09-12 23:28:08 +00001007 case tok::kw___underlying_type:
Guy Benyei11169dd2012-12-18 14:30:41 +00001008 case tok::kw___cdecl:
1009 case tok::kw___stdcall:
1010 case tok::kw___fastcall:
1011 case tok::kw___thiscall:
1012 case tok::kw___unaligned:
1013 case tok::kw___vector:
1014 case tok::kw___pixel:
1015 case tok::kw__Atomic:
Guy Benyeid8a08ea2012-12-18 14:38:23 +00001016 case tok::kw_image1d_t:
1017 case tok::kw_image1d_array_t:
1018 case tok::kw_image1d_buffer_t:
1019 case tok::kw_image2d_t:
1020 case tok::kw_image2d_array_t:
1021 case tok::kw_image3d_t:
Guy Benyei61054192013-02-07 10:55:47 +00001022 case tok::kw_sampler_t:
Guy Benyei1b4fb3e2013-01-20 12:31:11 +00001023 case tok::kw_event_t:
Guy Benyei11169dd2012-12-18 14:30:41 +00001024 case tok::kw___unknown_anytype:
1025 return TPResult::False();
1026
1027 default:
1028 break;
1029 }
1030
1031 return TPResult::Ambiguous();
1032}
1033
1034bool Parser::isTentativelyDeclared(IdentifierInfo *II) {
1035 return std::find(TentativelyDeclaredIdentifiers.begin(),
1036 TentativelyDeclaredIdentifiers.end(), II)
1037 != TentativelyDeclaredIdentifiers.end();
1038}
1039
1040/// isCXXDeclarationSpecifier - Returns TPResult::True() if it is a declaration
1041/// specifier, TPResult::False() if it is not, TPResult::Ambiguous() if it could
1042/// be either a decl-specifier or a function-style cast, and TPResult::Error()
1043/// if a parsing error was found and reported.
1044///
1045/// If HasMissingTypename is provided, a name with a dependent scope specifier
1046/// will be treated as ambiguous if the 'typename' keyword is missing. If this
1047/// happens, *HasMissingTypename will be set to 'true'. This will also be used
1048/// as an indicator that undeclared identifiers (which will trigger a later
1049/// parse error) should be treated as types. Returns TPResult::Ambiguous() in
1050/// such cases.
1051///
1052/// decl-specifier:
1053/// storage-class-specifier
1054/// type-specifier
1055/// function-specifier
1056/// 'friend'
1057/// 'typedef'
Richard Smithb4a9e862013-04-12 22:46:28 +00001058/// [C++11] 'constexpr'
Guy Benyei11169dd2012-12-18 14:30:41 +00001059/// [GNU] attributes declaration-specifiers[opt]
1060///
1061/// storage-class-specifier:
1062/// 'register'
1063/// 'static'
1064/// 'extern'
1065/// 'mutable'
1066/// 'auto'
1067/// [GNU] '__thread'
Richard Smithb4a9e862013-04-12 22:46:28 +00001068/// [C++11] 'thread_local'
1069/// [C11] '_Thread_local'
Guy Benyei11169dd2012-12-18 14:30:41 +00001070///
1071/// function-specifier:
1072/// 'inline'
1073/// 'virtual'
1074/// 'explicit'
1075///
1076/// typedef-name:
1077/// identifier
1078///
1079/// type-specifier:
1080/// simple-type-specifier
1081/// class-specifier
1082/// enum-specifier
1083/// elaborated-type-specifier
1084/// typename-specifier
1085/// cv-qualifier
1086///
1087/// simple-type-specifier:
1088/// '::'[opt] nested-name-specifier[opt] type-name
1089/// '::'[opt] nested-name-specifier 'template'
1090/// simple-template-id [TODO]
1091/// 'char'
1092/// 'wchar_t'
1093/// 'bool'
1094/// 'short'
1095/// 'int'
1096/// 'long'
1097/// 'signed'
1098/// 'unsigned'
1099/// 'float'
1100/// 'double'
1101/// 'void'
1102/// [GNU] typeof-specifier
1103/// [GNU] '_Complex'
Richard Smithb4a9e862013-04-12 22:46:28 +00001104/// [C++11] 'auto'
1105/// [C++11] 'decltype' ( expression )
Richard Smith74aeef52013-04-26 16:15:35 +00001106/// [C++1y] 'decltype' ( 'auto' )
Guy Benyei11169dd2012-12-18 14:30:41 +00001107///
1108/// type-name:
1109/// class-name
1110/// enum-name
1111/// typedef-name
1112///
1113/// elaborated-type-specifier:
1114/// class-key '::'[opt] nested-name-specifier[opt] identifier
1115/// class-key '::'[opt] nested-name-specifier[opt] 'template'[opt]
1116/// simple-template-id
1117/// 'enum' '::'[opt] nested-name-specifier[opt] identifier
1118///
1119/// enum-name:
1120/// identifier
1121///
1122/// enum-specifier:
1123/// 'enum' identifier[opt] '{' enumerator-list[opt] '}'
1124/// 'enum' identifier[opt] '{' enumerator-list ',' '}'
1125///
1126/// class-specifier:
1127/// class-head '{' member-specification[opt] '}'
1128///
1129/// class-head:
1130/// class-key identifier[opt] base-clause[opt]
1131/// class-key nested-name-specifier identifier base-clause[opt]
1132/// class-key nested-name-specifier[opt] simple-template-id
1133/// base-clause[opt]
1134///
1135/// class-key:
1136/// 'class'
1137/// 'struct'
1138/// 'union'
1139///
1140/// cv-qualifier:
1141/// 'const'
1142/// 'volatile'
1143/// [GNU] restrict
1144///
1145Parser::TPResult
1146Parser::isCXXDeclarationSpecifier(Parser::TPResult BracedCastResult,
1147 bool *HasMissingTypename) {
1148 switch (Tok.getKind()) {
1149 case tok::identifier: {
1150 // Check for need to substitute AltiVec __vector keyword
1151 // for "vector" identifier.
1152 if (TryAltiVecVectorToken())
1153 return TPResult::True();
1154
1155 const Token &Next = NextToken();
1156 // In 'foo bar', 'foo' is always a type name outside of Objective-C.
1157 if (!getLangOpts().ObjC1 && Next.is(tok::identifier))
1158 return TPResult::True();
1159
1160 if (Next.isNot(tok::coloncolon) && Next.isNot(tok::less)) {
1161 // Determine whether this is a valid expression. If not, we will hit
1162 // a parse error one way or another. In that case, tell the caller that
1163 // this is ambiguous. Typo-correct to type and expression keywords and
1164 // to types and identifiers, in order to try to recover from errors.
1165 CorrectionCandidateCallback TypoCorrection;
1166 TypoCorrection.WantRemainingKeywords = false;
Kaelyn Uhrain989b7ca2013-04-03 16:59:49 +00001167 TypoCorrection.WantTypeSpecifiers = Next.isNot(tok::arrow);
Guy Benyei11169dd2012-12-18 14:30:41 +00001168 switch (TryAnnotateName(false /* no nested name specifier */,
1169 &TypoCorrection)) {
1170 case ANK_Error:
1171 return TPResult::Error();
1172 case ANK_TentativeDecl:
1173 return TPResult::False();
1174 case ANK_TemplateName:
1175 // A bare type template-name which can't be a template template
1176 // argument is an error, and was probably intended to be a type.
1177 return GreaterThanIsOperator ? TPResult::True() : TPResult::False();
1178 case ANK_Unresolved:
1179 return HasMissingTypename ? TPResult::Ambiguous() : TPResult::False();
1180 case ANK_Success:
1181 break;
1182 }
1183 assert(Tok.isNot(tok::identifier) &&
1184 "TryAnnotateName succeeded without producing an annotation");
1185 } else {
1186 // This might possibly be a type with a dependent scope specifier and
1187 // a missing 'typename' keyword. Don't use TryAnnotateName in this case,
1188 // since it will annotate as a primary expression, and we want to use the
1189 // "missing 'typename'" logic.
1190 if (TryAnnotateTypeOrScopeToken())
1191 return TPResult::Error();
1192 // If annotation failed, assume it's a non-type.
1193 // FIXME: If this happens due to an undeclared identifier, treat it as
1194 // ambiguous.
1195 if (Tok.is(tok::identifier))
1196 return TPResult::False();
1197 }
1198
1199 // We annotated this token as something. Recurse to handle whatever we got.
1200 return isCXXDeclarationSpecifier(BracedCastResult, HasMissingTypename);
1201 }
1202
1203 case tok::kw_typename: // typename T::type
1204 // Annotate typenames and C++ scope specifiers. If we get one, just
1205 // recurse to handle whatever we get.
1206 if (TryAnnotateTypeOrScopeToken())
1207 return TPResult::Error();
1208 return isCXXDeclarationSpecifier(BracedCastResult, HasMissingTypename);
1209
1210 case tok::coloncolon: { // ::foo::bar
1211 const Token &Next = NextToken();
1212 if (Next.is(tok::kw_new) || // ::new
1213 Next.is(tok::kw_delete)) // ::delete
1214 return TPResult::False();
1215 }
1216 // Fall through.
1217 case tok::kw_decltype:
1218 // Annotate typenames and C++ scope specifiers. If we get one, just
1219 // recurse to handle whatever we get.
1220 if (TryAnnotateTypeOrScopeToken())
1221 return TPResult::Error();
1222 return isCXXDeclarationSpecifier(BracedCastResult, HasMissingTypename);
1223
1224 // decl-specifier:
1225 // storage-class-specifier
1226 // type-specifier
1227 // function-specifier
1228 // 'friend'
1229 // 'typedef'
1230 // 'constexpr'
1231 case tok::kw_friend:
1232 case tok::kw_typedef:
1233 case tok::kw_constexpr:
1234 // storage-class-specifier
1235 case tok::kw_register:
1236 case tok::kw_static:
1237 case tok::kw_extern:
1238 case tok::kw_mutable:
1239 case tok::kw_auto:
1240 case tok::kw___thread:
Richard Smithb4a9e862013-04-12 22:46:28 +00001241 case tok::kw_thread_local:
1242 case tok::kw__Thread_local:
Guy Benyei11169dd2012-12-18 14:30:41 +00001243 // function-specifier
1244 case tok::kw_inline:
1245 case tok::kw_virtual:
1246 case tok::kw_explicit:
1247
1248 // Modules
1249 case tok::kw___module_private__:
1250
1251 // Debugger support
1252 case tok::kw___unknown_anytype:
1253
1254 // type-specifier:
1255 // simple-type-specifier
1256 // class-specifier
1257 // enum-specifier
1258 // elaborated-type-specifier
1259 // typename-specifier
1260 // cv-qualifier
1261
1262 // class-specifier
1263 // elaborated-type-specifier
1264 case tok::kw_class:
1265 case tok::kw_struct:
1266 case tok::kw_union:
Richard Smith1fff95c2013-09-12 23:28:08 +00001267 case tok::kw___interface:
Guy Benyei11169dd2012-12-18 14:30:41 +00001268 // enum-specifier
1269 case tok::kw_enum:
1270 // cv-qualifier
1271 case tok::kw_const:
1272 case tok::kw_volatile:
1273
1274 // GNU
1275 case tok::kw_restrict:
1276 case tok::kw__Complex:
1277 case tok::kw___attribute:
1278 return TPResult::True();
1279
1280 // Microsoft
1281 case tok::kw___declspec:
1282 case tok::kw___cdecl:
1283 case tok::kw___stdcall:
1284 case tok::kw___fastcall:
1285 case tok::kw___thiscall:
1286 case tok::kw___w64:
Aaron Ballman317a77f2013-05-22 23:25:32 +00001287 case tok::kw___sptr:
1288 case tok::kw___uptr:
Guy Benyei11169dd2012-12-18 14:30:41 +00001289 case tok::kw___ptr64:
1290 case tok::kw___ptr32:
1291 case tok::kw___forceinline:
1292 case tok::kw___unaligned:
1293 return TPResult::True();
1294
1295 // Borland
1296 case tok::kw___pascal:
1297 return TPResult::True();
1298
1299 // AltiVec
1300 case tok::kw___vector:
1301 return TPResult::True();
1302
1303 case tok::annot_template_id: {
1304 TemplateIdAnnotation *TemplateId = takeTemplateIdAnnotation(Tok);
1305 if (TemplateId->Kind != TNK_Type_template)
1306 return TPResult::False();
1307 CXXScopeSpec SS;
1308 AnnotateTemplateIdTokenAsType();
1309 assert(Tok.is(tok::annot_typename));
1310 goto case_typename;
1311 }
1312
1313 case tok::annot_cxxscope: // foo::bar or ::foo::bar, but already parsed
1314 // We've already annotated a scope; try to annotate a type.
1315 if (TryAnnotateTypeOrScopeToken())
1316 return TPResult::Error();
1317 if (!Tok.is(tok::annot_typename)) {
1318 // If the next token is an identifier or a type qualifier, then this
1319 // can't possibly be a valid expression either.
1320 if (Tok.is(tok::annot_cxxscope) && NextToken().is(tok::identifier)) {
1321 CXXScopeSpec SS;
1322 Actions.RestoreNestedNameSpecifierAnnotation(Tok.getAnnotationValue(),
1323 Tok.getAnnotationRange(),
1324 SS);
1325 if (SS.getScopeRep() && SS.getScopeRep()->isDependent()) {
1326 TentativeParsingAction PA(*this);
1327 ConsumeToken();
1328 ConsumeToken();
1329 bool isIdentifier = Tok.is(tok::identifier);
1330 TPResult TPR = TPResult::False();
1331 if (!isIdentifier)
1332 TPR = isCXXDeclarationSpecifier(BracedCastResult,
1333 HasMissingTypename);
1334 PA.Revert();
1335
1336 if (isIdentifier ||
1337 TPR == TPResult::True() || TPR == TPResult::Error())
1338 return TPResult::Error();
1339
1340 if (HasMissingTypename) {
1341 // We can't tell whether this is a missing 'typename' or a valid
1342 // expression.
1343 *HasMissingTypename = true;
1344 return TPResult::Ambiguous();
1345 }
1346 } else {
1347 // Try to resolve the name. If it doesn't exist, assume it was
1348 // intended to name a type and keep disambiguating.
1349 switch (TryAnnotateName(false /* SS is not dependent */)) {
1350 case ANK_Error:
1351 return TPResult::Error();
1352 case ANK_TentativeDecl:
1353 return TPResult::False();
1354 case ANK_TemplateName:
1355 // A bare type template-name which can't be a template template
1356 // argument is an error, and was probably intended to be a type.
1357 return GreaterThanIsOperator ? TPResult::True() : TPResult::False();
1358 case ANK_Unresolved:
1359 return HasMissingTypename ? TPResult::Ambiguous()
1360 : TPResult::False();
1361 case ANK_Success:
1362 // Annotated it, check again.
1363 assert(Tok.isNot(tok::annot_cxxscope) ||
1364 NextToken().isNot(tok::identifier));
1365 return isCXXDeclarationSpecifier(BracedCastResult,
1366 HasMissingTypename);
1367 }
1368 }
1369 }
1370 return TPResult::False();
1371 }
1372 // If that succeeded, fallthrough into the generic simple-type-id case.
1373
1374 // The ambiguity resides in a simple-type-specifier/typename-specifier
1375 // followed by a '('. The '(' could either be the start of:
1376 //
1377 // direct-declarator:
1378 // '(' declarator ')'
1379 //
1380 // direct-abstract-declarator:
1381 // '(' parameter-declaration-clause ')' cv-qualifier-seq[opt]
1382 // exception-specification[opt]
1383 // '(' abstract-declarator ')'
1384 //
1385 // or part of a function-style cast expression:
1386 //
1387 // simple-type-specifier '(' expression-list[opt] ')'
1388 //
1389
1390 // simple-type-specifier:
1391
1392 case tok::annot_typename:
1393 case_typename:
1394 // In Objective-C, we might have a protocol-qualified type.
1395 if (getLangOpts().ObjC1 && NextToken().is(tok::less)) {
1396 // Tentatively parse the
1397 TentativeParsingAction PA(*this);
1398 ConsumeToken(); // The type token
1399
1400 TPResult TPR = TryParseProtocolQualifiers();
1401 bool isFollowedByParen = Tok.is(tok::l_paren);
1402 bool isFollowedByBrace = Tok.is(tok::l_brace);
1403
1404 PA.Revert();
1405
1406 if (TPR == TPResult::Error())
1407 return TPResult::Error();
1408
1409 if (isFollowedByParen)
1410 return TPResult::Ambiguous();
1411
Richard Smith2bf7fdb2013-01-02 11:42:31 +00001412 if (getLangOpts().CPlusPlus11 && isFollowedByBrace)
Guy Benyei11169dd2012-12-18 14:30:41 +00001413 return BracedCastResult;
1414
1415 return TPResult::True();
1416 }
1417
1418 case tok::kw_char:
1419 case tok::kw_wchar_t:
1420 case tok::kw_char16_t:
1421 case tok::kw_char32_t:
1422 case tok::kw_bool:
1423 case tok::kw_short:
1424 case tok::kw_int:
1425 case tok::kw_long:
1426 case tok::kw___int64:
1427 case tok::kw___int128:
1428 case tok::kw_signed:
1429 case tok::kw_unsigned:
1430 case tok::kw_half:
1431 case tok::kw_float:
1432 case tok::kw_double:
1433 case tok::kw_void:
1434 case tok::annot_decltype:
1435 if (NextToken().is(tok::l_paren))
1436 return TPResult::Ambiguous();
1437
1438 // This is a function-style cast in all cases we disambiguate other than
1439 // one:
1440 // struct S {
1441 // enum E : int { a = 4 }; // enum
1442 // enum E : int { 4 }; // bit-field
1443 // };
Richard Smith2bf7fdb2013-01-02 11:42:31 +00001444 if (getLangOpts().CPlusPlus11 && NextToken().is(tok::l_brace))
Guy Benyei11169dd2012-12-18 14:30:41 +00001445 return BracedCastResult;
1446
1447 if (isStartOfObjCClassMessageMissingOpenBracket())
1448 return TPResult::False();
1449
1450 return TPResult::True();
1451
1452 // GNU typeof support.
1453 case tok::kw_typeof: {
1454 if (NextToken().isNot(tok::l_paren))
1455 return TPResult::True();
1456
1457 TentativeParsingAction PA(*this);
1458
1459 TPResult TPR = TryParseTypeofSpecifier();
1460 bool isFollowedByParen = Tok.is(tok::l_paren);
1461 bool isFollowedByBrace = Tok.is(tok::l_brace);
1462
1463 PA.Revert();
1464
1465 if (TPR == TPResult::Error())
1466 return TPResult::Error();
1467
1468 if (isFollowedByParen)
1469 return TPResult::Ambiguous();
1470
Richard Smith2bf7fdb2013-01-02 11:42:31 +00001471 if (getLangOpts().CPlusPlus11 && isFollowedByBrace)
Guy Benyei11169dd2012-12-18 14:30:41 +00001472 return BracedCastResult;
1473
1474 return TPResult::True();
1475 }
1476
1477 // C++0x type traits support
1478 case tok::kw___underlying_type:
1479 return TPResult::True();
1480
1481 // C11 _Atomic
1482 case tok::kw__Atomic:
1483 return TPResult::True();
1484
1485 default:
1486 return TPResult::False();
1487 }
1488}
1489
Richard Smith1fff95c2013-09-12 23:28:08 +00001490bool Parser::isCXXDeclarationSpecifierAType() {
1491 switch (Tok.getKind()) {
1492 // typename-specifier
1493 case tok::annot_decltype:
1494 case tok::annot_template_id:
1495 case tok::annot_typename:
1496 case tok::kw_typeof:
1497 case tok::kw___underlying_type:
1498 return true;
1499
1500 // elaborated-type-specifier
1501 case tok::kw_class:
1502 case tok::kw_struct:
1503 case tok::kw_union:
1504 case tok::kw___interface:
1505 case tok::kw_enum:
1506 return true;
1507
1508 // simple-type-specifier
1509 case tok::kw_char:
1510 case tok::kw_wchar_t:
1511 case tok::kw_char16_t:
1512 case tok::kw_char32_t:
1513 case tok::kw_bool:
1514 case tok::kw_short:
1515 case tok::kw_int:
1516 case tok::kw_long:
1517 case tok::kw___int64:
1518 case tok::kw___int128:
1519 case tok::kw_signed:
1520 case tok::kw_unsigned:
1521 case tok::kw_half:
1522 case tok::kw_float:
1523 case tok::kw_double:
1524 case tok::kw_void:
1525 case tok::kw___unknown_anytype:
1526 return true;
1527
1528 case tok::kw_auto:
1529 return getLangOpts().CPlusPlus11;
1530
1531 case tok::kw__Atomic:
1532 // "_Atomic foo"
1533 return NextToken().is(tok::l_paren);
1534
1535 default:
1536 return false;
1537 }
1538}
1539
Guy Benyei11169dd2012-12-18 14:30:41 +00001540/// [GNU] typeof-specifier:
1541/// 'typeof' '(' expressions ')'
1542/// 'typeof' '(' type-name ')'
1543///
1544Parser::TPResult Parser::TryParseTypeofSpecifier() {
1545 assert(Tok.is(tok::kw_typeof) && "Expected 'typeof'!");
1546 ConsumeToken();
1547
1548 assert(Tok.is(tok::l_paren) && "Expected '('");
1549 // Parse through the parens after 'typeof'.
1550 ConsumeParen();
1551 if (!SkipUntil(tok::r_paren))
1552 return TPResult::Error();
1553
1554 return TPResult::Ambiguous();
1555}
1556
1557/// [ObjC] protocol-qualifiers:
1558//// '<' identifier-list '>'
1559Parser::TPResult Parser::TryParseProtocolQualifiers() {
1560 assert(Tok.is(tok::less) && "Expected '<' for qualifier list");
1561 ConsumeToken();
1562 do {
1563 if (Tok.isNot(tok::identifier))
1564 return TPResult::Error();
1565 ConsumeToken();
1566
1567 if (Tok.is(tok::comma)) {
1568 ConsumeToken();
1569 continue;
1570 }
1571
1572 if (Tok.is(tok::greater)) {
1573 ConsumeToken();
1574 return TPResult::Ambiguous();
1575 }
1576 } while (false);
1577
1578 return TPResult::Error();
1579}
1580
Guy Benyei11169dd2012-12-18 14:30:41 +00001581/// isCXXFunctionDeclarator - Disambiguates between a function declarator or
1582/// a constructor-style initializer, when parsing declaration statements.
1583/// Returns true for function declarator and false for constructor-style
1584/// initializer.
1585/// If during the disambiguation process a parsing error is encountered,
1586/// the function returns true to let the declaration parsing code handle it.
1587///
1588/// '(' parameter-declaration-clause ')' cv-qualifier-seq[opt]
1589/// exception-specification[opt]
1590///
1591bool Parser::isCXXFunctionDeclarator(bool *IsAmbiguous) {
1592
1593 // C++ 8.2p1:
1594 // The ambiguity arising from the similarity between a function-style cast and
1595 // a declaration mentioned in 6.8 can also occur in the context of a
1596 // declaration. In that context, the choice is between a function declaration
1597 // with a redundant set of parentheses around a parameter name and an object
1598 // declaration with a function-style cast as the initializer. Just as for the
1599 // ambiguities mentioned in 6.8, the resolution is to consider any construct
1600 // that could possibly be a declaration a declaration.
1601
1602 TentativeParsingAction PA(*this);
1603
1604 ConsumeParen();
1605 bool InvalidAsDeclaration = false;
1606 TPResult TPR = TryParseParameterDeclarationClause(&InvalidAsDeclaration);
1607 if (TPR == TPResult::Ambiguous()) {
1608 if (Tok.isNot(tok::r_paren))
1609 TPR = TPResult::False();
1610 else {
1611 const Token &Next = NextToken();
1612 if (Next.is(tok::amp) || Next.is(tok::ampamp) ||
1613 Next.is(tok::kw_const) || Next.is(tok::kw_volatile) ||
1614 Next.is(tok::kw_throw) || Next.is(tok::kw_noexcept) ||
Richard Smith89645bc2013-01-02 12:01:23 +00001615 Next.is(tok::l_square) || isCXX11VirtSpecifier(Next) ||
Guy Benyei11169dd2012-12-18 14:30:41 +00001616 Next.is(tok::l_brace) || Next.is(tok::kw_try) ||
1617 Next.is(tok::equal) || Next.is(tok::arrow))
1618 // The next token cannot appear after a constructor-style initializer,
1619 // and can appear next in a function definition. This must be a function
1620 // declarator.
1621 TPR = TPResult::True();
1622 else if (InvalidAsDeclaration)
1623 // Use the absence of 'typename' as a tie-breaker.
1624 TPR = TPResult::False();
1625 }
1626 }
1627
1628 PA.Revert();
1629
1630 if (IsAmbiguous && TPR == TPResult::Ambiguous())
1631 *IsAmbiguous = true;
1632
1633 // In case of an error, let the declaration parsing code handle it.
1634 return TPR != TPResult::False();
1635}
1636
1637/// parameter-declaration-clause:
1638/// parameter-declaration-list[opt] '...'[opt]
1639/// parameter-declaration-list ',' '...'
1640///
1641/// parameter-declaration-list:
1642/// parameter-declaration
1643/// parameter-declaration-list ',' parameter-declaration
1644///
1645/// parameter-declaration:
1646/// attribute-specifier-seq[opt] decl-specifier-seq declarator attributes[opt]
1647/// attribute-specifier-seq[opt] decl-specifier-seq declarator attributes[opt]
1648/// '=' assignment-expression
1649/// attribute-specifier-seq[opt] decl-specifier-seq abstract-declarator[opt]
1650/// attributes[opt]
1651/// attribute-specifier-seq[opt] decl-specifier-seq abstract-declarator[opt]
1652/// attributes[opt] '=' assignment-expression
1653///
1654Parser::TPResult
Richard Smith1fff95c2013-09-12 23:28:08 +00001655Parser::TryParseParameterDeclarationClause(bool *InvalidAsDeclaration,
1656 bool VersusTemplateArgument) {
Guy Benyei11169dd2012-12-18 14:30:41 +00001657
1658 if (Tok.is(tok::r_paren))
1659 return TPResult::Ambiguous();
1660
1661 // parameter-declaration-list[opt] '...'[opt]
1662 // parameter-declaration-list ',' '...'
1663 //
1664 // parameter-declaration-list:
1665 // parameter-declaration
1666 // parameter-declaration-list ',' parameter-declaration
1667 //
1668 while (1) {
1669 // '...'[opt]
1670 if (Tok.is(tok::ellipsis)) {
1671 ConsumeToken();
1672 if (Tok.is(tok::r_paren))
1673 return TPResult::True(); // '...)' is a sign of a function declarator.
1674 else
1675 return TPResult::False();
1676 }
1677
1678 // An attribute-specifier-seq here is a sign of a function declarator.
1679 if (isCXX11AttributeSpecifier(/*Disambiguate*/false,
1680 /*OuterMightBeMessageSend*/true))
1681 return TPResult::True();
1682
1683 ParsedAttributes attrs(AttrFactory);
1684 MaybeParseMicrosoftAttributes(attrs);
1685
1686 // decl-specifier-seq
1687 // A parameter-declaration's initializer must be preceded by an '=', so
1688 // decl-specifier-seq '{' is not a parameter in C++11.
Richard Smith1fff95c2013-09-12 23:28:08 +00001689 TPResult TPR = isCXXDeclarationSpecifier(TPResult::False(),
1690 InvalidAsDeclaration);
1691
1692 if (VersusTemplateArgument && TPR == TPResult::True()) {
1693 // Consume the decl-specifier-seq. We have to look past it, since a
1694 // type-id might appear here in a template argument.
1695 bool SeenType = false;
1696 do {
1697 SeenType |= isCXXDeclarationSpecifierAType();
1698 if (TryConsumeDeclarationSpecifier() == TPResult::Error())
1699 return TPResult::Error();
1700
1701 // If we see a parameter name, this can't be a template argument.
1702 if (SeenType && Tok.is(tok::identifier))
1703 return TPResult::True();
1704
1705 TPR = isCXXDeclarationSpecifier(TPResult::False(),
1706 InvalidAsDeclaration);
1707 if (TPR == TPResult::Error())
1708 return TPR;
1709 } while (TPR != TPResult::False());
1710 } else if (TPR == TPResult::Ambiguous()) {
1711 // Disambiguate what follows the decl-specifier.
1712 if (TryConsumeDeclarationSpecifier() == TPResult::Error())
1713 return TPResult::Error();
1714 } else
Guy Benyei11169dd2012-12-18 14:30:41 +00001715 return TPR;
1716
1717 // declarator
1718 // abstract-declarator[opt]
1719 TPR = TryParseDeclarator(true/*mayBeAbstract*/);
1720 if (TPR != TPResult::Ambiguous())
1721 return TPR;
1722
1723 // [GNU] attributes[opt]
1724 if (Tok.is(tok::kw___attribute))
1725 return TPResult::True();
1726
Richard Smith1fff95c2013-09-12 23:28:08 +00001727 // If we're disambiguating a template argument in a default argument in
1728 // a class definition versus a parameter declaration, an '=' here
1729 // disambiguates the parse one way or the other.
1730 // If this is a parameter, it must have a default argument because
1731 // (a) the previous parameter did, and
1732 // (b) this must be the first declaration of the function, so we can't
1733 // inherit any default arguments from elsewhere.
1734 // If we see an ')', then we've reached the end of a
1735 // parameter-declaration-clause, and the last param is missing its default
1736 // argument.
1737 if (VersusTemplateArgument)
1738 return (Tok.is(tok::equal) || Tok.is(tok::r_paren)) ? TPResult::True()
1739 : TPResult::False();
1740
Guy Benyei11169dd2012-12-18 14:30:41 +00001741 if (Tok.is(tok::equal)) {
1742 // '=' assignment-expression
1743 // Parse through assignment-expression.
Richard Smith1fff95c2013-09-12 23:28:08 +00001744 // FIXME: assignment-expression may contain an unparenthesized comma.
Guy Benyei11169dd2012-12-18 14:30:41 +00001745 if (!SkipUntil(tok::comma, tok::r_paren, true/*StopAtSemi*/,
1746 true/*DontConsume*/))
1747 return TPResult::Error();
1748 }
1749
1750 if (Tok.is(tok::ellipsis)) {
1751 ConsumeToken();
1752 if (Tok.is(tok::r_paren))
1753 return TPResult::True(); // '...)' is a sign of a function declarator.
1754 else
1755 return TPResult::False();
1756 }
1757
1758 if (Tok.isNot(tok::comma))
1759 break;
1760 ConsumeToken(); // the comma.
1761 }
1762
1763 return TPResult::Ambiguous();
1764}
1765
1766/// TryParseFunctionDeclarator - We parsed a '(' and we want to try to continue
1767/// parsing as a function declarator.
1768/// If TryParseFunctionDeclarator fully parsed the function declarator, it will
1769/// return TPResult::Ambiguous(), otherwise it will return either False() or
1770/// Error().
1771///
1772/// '(' parameter-declaration-clause ')' cv-qualifier-seq[opt]
1773/// exception-specification[opt]
1774///
1775/// exception-specification:
1776/// 'throw' '(' type-id-list[opt] ')'
1777///
1778Parser::TPResult Parser::TryParseFunctionDeclarator() {
1779
1780 // The '(' is already parsed.
1781
1782 TPResult TPR = TryParseParameterDeclarationClause();
1783 if (TPR == TPResult::Ambiguous() && Tok.isNot(tok::r_paren))
1784 TPR = TPResult::False();
1785
1786 if (TPR == TPResult::False() || TPR == TPResult::Error())
1787 return TPR;
1788
1789 // Parse through the parens.
1790 if (!SkipUntil(tok::r_paren))
1791 return TPResult::Error();
1792
1793 // cv-qualifier-seq
1794 while (Tok.is(tok::kw_const) ||
1795 Tok.is(tok::kw_volatile) ||
1796 Tok.is(tok::kw_restrict) )
1797 ConsumeToken();
1798
1799 // ref-qualifier[opt]
1800 if (Tok.is(tok::amp) || Tok.is(tok::ampamp))
1801 ConsumeToken();
1802
1803 // exception-specification
1804 if (Tok.is(tok::kw_throw)) {
1805 ConsumeToken();
1806 if (Tok.isNot(tok::l_paren))
1807 return TPResult::Error();
1808
1809 // Parse through the parens after 'throw'.
1810 ConsumeParen();
1811 if (!SkipUntil(tok::r_paren))
1812 return TPResult::Error();
1813 }
1814 if (Tok.is(tok::kw_noexcept)) {
1815 ConsumeToken();
1816 // Possibly an expression as well.
1817 if (Tok.is(tok::l_paren)) {
1818 // Find the matching rparen.
1819 ConsumeParen();
1820 if (!SkipUntil(tok::r_paren))
1821 return TPResult::Error();
1822 }
1823 }
1824
1825 return TPResult::Ambiguous();
1826}
1827
1828/// '[' constant-expression[opt] ']'
1829///
1830Parser::TPResult Parser::TryParseBracketDeclarator() {
1831 ConsumeBracket();
1832 if (!SkipUntil(tok::r_square))
1833 return TPResult::Error();
1834
1835 return TPResult::Ambiguous();
1836}