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