blob: 2cca2cdb1e10d3933b82f1769b7aaaf8e22e54ce [file] [log] [blame]
Argyrios Kyrtzidis5404a152008-10-05 00:06:24 +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"
Chris Lattner500d3292009-01-29 05:15:15 +000016#include "clang/Parse/ParseDiagnostic.h"
Argyrios Kyrtzidis5404a152008-10-05 00:06:24 +000017using namespace clang;
18
19/// isCXXDeclarationStatement - C++-specialized function that disambiguates
20/// between a declaration or an expression statement, when parsing function
21/// bodies. Returns true for declaration, false for expression.
22///
23/// declaration-statement:
24/// block-declaration
25///
26/// block-declaration:
27/// simple-declaration
28/// asm-definition
29/// namespace-alias-definition
30/// using-declaration
31/// using-directive
Anders Carlsson511d7ab2009-03-11 16:27:10 +000032/// [C++0x] static_assert-declaration
Argyrios Kyrtzidis5404a152008-10-05 00:06:24 +000033///
34/// asm-definition:
35/// 'asm' '(' string-literal ')' ';'
36///
37/// namespace-alias-definition:
38/// 'namespace' identifier = qualified-namespace-specifier ';'
39///
40/// using-declaration:
41/// 'using' typename[opt] '::'[opt] nested-name-specifier
42/// unqualified-id ';'
43/// 'using' '::' unqualified-id ;
44///
45/// using-directive:
46/// 'using' 'namespace' '::'[opt] nested-name-specifier[opt]
47/// namespace-name ';'
48///
Argyrios Kyrtzidis5404a152008-10-05 00:06:24 +000049bool Parser::isCXXDeclarationStatement() {
50 switch (Tok.getKind()) {
51 // asm-definition
52 case tok::kw_asm:
53 // namespace-alias-definition
54 case tok::kw_namespace:
55 // using-declaration
56 // using-directive
57 case tok::kw_using:
58 return true;
Anders Carlsson511d7ab2009-03-11 16:27:10 +000059 case tok::kw_static_assert:
60 // static_assert-declaration
61 return true;
Argyrios Kyrtzidis5404a152008-10-05 00:06:24 +000062 default:
63 // simple-declaration
64 return isCXXSimpleDeclaration();
65 }
66}
67
68/// isCXXSimpleDeclaration - C++-specialized function that disambiguates
69/// between a simple-declaration or an expression-statement.
70/// If during the disambiguation process a parsing error is encountered,
71/// the function returns true to let the declaration parsing code handle it.
72/// Returns false if the statement is disambiguated as expression.
73///
74/// simple-declaration:
75/// decl-specifier-seq init-declarator-list[opt] ';'
76///
77bool Parser::isCXXSimpleDeclaration() {
78 // C++ 6.8p1:
79 // There is an ambiguity in the grammar involving expression-statements and
80 // declarations: An expression-statement with a function-style explicit type
81 // conversion (5.2.3) as its leftmost subexpression can be indistinguishable
82 // from a declaration where the first declarator starts with a '('. In those
83 // cases the statement is a declaration. [Note: To disambiguate, the whole
84 // statement might have to be examined to determine if it is an
85 // expression-statement or a declaration].
86
87 // C++ 6.8p3:
88 // The disambiguation is purely syntactic; that is, the meaning of the names
89 // occurring in such a statement, beyond whether they are type-names or not,
90 // is not generally used in or changed by the disambiguation. Class
91 // templates are instantiated as necessary to determine if a qualified name
92 // is a type-name. Disambiguation precedes parsing, and a statement
93 // disambiguated as a declaration may be an ill-formed declaration.
94
95 // We don't have to parse all of the decl-specifier-seq part. There's only
96 // an ambiguity if the first decl-specifier is
97 // simple-type-specifier/typename-specifier followed by a '(', which may
98 // indicate a function-style cast expression.
Argyrios Kyrtzidisb9f34192008-10-05 18:52:21 +000099 // isCXXDeclarationSpecifier will return TPResult::Ambiguous() only in such
100 // a case.
Argyrios Kyrtzidis5404a152008-10-05 00:06:24 +0000101
Argyrios Kyrtzidisb9f34192008-10-05 18:52:21 +0000102 TPResult TPR = isCXXDeclarationSpecifier();
103 if (TPR != TPResult::Ambiguous())
104 return TPR != TPResult::False(); // Returns true for TPResult::True() or
105 // TPResult::Error().
Argyrios Kyrtzidis5404a152008-10-05 00:06:24 +0000106
107 // FIXME: Add statistics about the number of ambiguous statements encountered
108 // and how they were resolved (number of declarations+number of expressions).
109
110 // Ok, we have a simple-type-specifier/typename-specifier followed by a '('.
111 // We need tentative parsing...
112
113 TentativeParsingAction PA(*this);
114
115 TPR = TryParseSimpleDeclaration();
116 SourceLocation TentativeParseLoc = Tok.getLocation();
117
118 PA.Revert();
119
120 // In case of an error, let the declaration parsing code handle it.
Argyrios Kyrtzidisb9f34192008-10-05 18:52:21 +0000121 if (TPR == TPResult::Error())
Argyrios Kyrtzidis5404a152008-10-05 00:06:24 +0000122 return true;
123
124 // Declarations take precedence over expressions.
Argyrios Kyrtzidisb9f34192008-10-05 18:52:21 +0000125 if (TPR == TPResult::Ambiguous())
126 TPR = TPResult::True();
Argyrios Kyrtzidis5404a152008-10-05 00:06:24 +0000127
Argyrios Kyrtzidisb9f34192008-10-05 18:52:21 +0000128 assert(TPR == TPResult::True() || TPR == TPResult::False());
Argyrios Kyrtzidisb9f34192008-10-05 18:52:21 +0000129 return TPR == TPResult::True();
Argyrios Kyrtzidis5404a152008-10-05 00:06:24 +0000130}
131
132/// simple-declaration:
133/// decl-specifier-seq init-declarator-list[opt] ';'
134///
Argyrios Kyrtzidisb9f34192008-10-05 18:52:21 +0000135Parser::TPResult Parser::TryParseSimpleDeclaration() {
Argyrios Kyrtzidis5404a152008-10-05 00:06:24 +0000136 // We know that we have a simple-type-specifier/typename-specifier followed
137 // by a '('.
Argyrios Kyrtzidisb9f34192008-10-05 18:52:21 +0000138 assert(isCXXDeclarationSpecifier() == TPResult::Ambiguous());
Argyrios Kyrtzidis5404a152008-10-05 00:06:24 +0000139
140 if (Tok.is(tok::kw_typeof))
141 TryParseTypeofSpecifier();
142 else
143 ConsumeToken();
144
145 assert(Tok.is(tok::l_paren) && "Expected '('");
146
Argyrios Kyrtzidisb9f34192008-10-05 18:52:21 +0000147 TPResult TPR = TryParseInitDeclaratorList();
148 if (TPR != TPResult::Ambiguous())
Argyrios Kyrtzidis5404a152008-10-05 00:06:24 +0000149 return TPR;
150
151 if (Tok.isNot(tok::semi))
Argyrios Kyrtzidisb9f34192008-10-05 18:52:21 +0000152 return TPResult::False();
Argyrios Kyrtzidis5404a152008-10-05 00:06:24 +0000153
Argyrios Kyrtzidisb9f34192008-10-05 18:52:21 +0000154 return TPResult::Ambiguous();
Argyrios Kyrtzidis5404a152008-10-05 00:06:24 +0000155}
156
Argyrios Kyrtzidis1ee2c432008-10-05 14:27:18 +0000157/// init-declarator-list:
158/// init-declarator
159/// init-declarator-list ',' init-declarator
Argyrios Kyrtzidis5404a152008-10-05 00:06:24 +0000160///
Argyrios Kyrtzidis1ee2c432008-10-05 14:27:18 +0000161/// init-declarator:
162/// declarator initializer[opt]
163/// [GNU] declarator simple-asm-expr[opt] attributes[opt] initializer[opt]
Argyrios Kyrtzidis5404a152008-10-05 00:06:24 +0000164///
165/// initializer:
166/// '=' initializer-clause
167/// '(' expression-list ')'
168///
169/// initializer-clause:
170/// assignment-expression
171/// '{' initializer-list ','[opt] '}'
172/// '{' '}'
173///
Argyrios Kyrtzidisb9f34192008-10-05 18:52:21 +0000174Parser::TPResult Parser::TryParseInitDeclaratorList() {
Argyrios Kyrtzidis5404a152008-10-05 00:06:24 +0000175 // GCC only examines the first declarator for disambiguation:
176 // i.e:
177 // int(x), ++x; // GCC regards it as ill-formed declaration.
178 //
179 // Comeau and MSVC will regard the above statement as correct expression.
180 // Clang examines all of the declarators and also regards the above statement
181 // as correct expression.
182
183 while (1) {
184 // declarator
Argyrios Kyrtzidisb9f34192008-10-05 18:52:21 +0000185 TPResult TPR = TryParseDeclarator(false/*mayBeAbstract*/);
186 if (TPR != TPResult::Ambiguous())
Argyrios Kyrtzidis5404a152008-10-05 00:06:24 +0000187 return TPR;
188
Argyrios Kyrtzidis1ee2c432008-10-05 14:27:18 +0000189 // [GNU] simple-asm-expr[opt] attributes[opt]
190 if (Tok.is(tok::kw_asm) || Tok.is(tok::kw___attribute))
Argyrios Kyrtzidisb9f34192008-10-05 18:52:21 +0000191 return TPResult::True();
Argyrios Kyrtzidis1ee2c432008-10-05 14:27:18 +0000192
Argyrios Kyrtzidis5404a152008-10-05 00:06:24 +0000193 // initializer[opt]
194 if (Tok.is(tok::l_paren)) {
195 // Parse through the parens.
196 ConsumeParen();
197 if (!SkipUntil(tok::r_paren))
Argyrios Kyrtzidisb9f34192008-10-05 18:52:21 +0000198 return TPResult::Error();
Argyrios Kyrtzidis5404a152008-10-05 00:06:24 +0000199 } else if (Tok.is(tok::equal)) {
200 // MSVC won't examine the rest of declarators if '=' is encountered, it
201 // will conclude that it is a declaration.
202 // Comeau and Clang will examine the rest of declarators.
203 // Note that "int(x) = {0}, ++x;" will be interpreted as ill-formed
204 // expression.
205 //
206 // Parse through the initializer-clause.
207 SkipUntil(tok::comma, true/*StopAtSemi*/, true/*DontConsume*/);
208 }
209
210 if (Tok.isNot(tok::comma))
211 break;
212 ConsumeToken(); // the comma.
213 }
214
Argyrios Kyrtzidisb9f34192008-10-05 18:52:21 +0000215 return TPResult::Ambiguous();
Argyrios Kyrtzidis5404a152008-10-05 00:06:24 +0000216}
217
Argyrios Kyrtzidisa8a45982008-10-05 15:03:47 +0000218/// isCXXConditionDeclaration - Disambiguates between a declaration or an
219/// expression for a condition of a if/switch/while/for statement.
220/// If during the disambiguation process a parsing error is encountered,
221/// the function returns true to let the declaration parsing code handle it.
222///
223/// condition:
224/// expression
225/// type-specifier-seq declarator '=' assignment-expression
226/// [GNU] type-specifier-seq declarator simple-asm-expr[opt] attributes[opt]
227/// '=' assignment-expression
228///
229bool Parser::isCXXConditionDeclaration() {
Argyrios Kyrtzidisb9f34192008-10-05 18:52:21 +0000230 TPResult TPR = isCXXDeclarationSpecifier();
231 if (TPR != TPResult::Ambiguous())
232 return TPR != TPResult::False(); // Returns true for TPResult::True() or
233 // TPResult::Error().
Argyrios Kyrtzidisa8a45982008-10-05 15:03:47 +0000234
235 // FIXME: Add statistics about the number of ambiguous statements encountered
236 // and how they were resolved (number of declarations+number of expressions).
237
238 // Ok, we have a simple-type-specifier/typename-specifier followed by a '('.
239 // We need tentative parsing...
240
241 TentativeParsingAction PA(*this);
242
243 // type-specifier-seq
244 if (Tok.is(tok::kw_typeof))
245 TryParseTypeofSpecifier();
246 else
247 ConsumeToken();
248 assert(Tok.is(tok::l_paren) && "Expected '('");
249
250 // declarator
251 TPR = TryParseDeclarator(false/*mayBeAbstract*/);
252
Argyrios Kyrtzidisa8a45982008-10-05 15:03:47 +0000253 // In case of an error, let the declaration parsing code handle it.
Argyrios Kyrtzidisb9f34192008-10-05 18:52:21 +0000254 if (TPR == TPResult::Error())
255 TPR = TPResult::True();
Argyrios Kyrtzidisa8a45982008-10-05 15:03:47 +0000256
Argyrios Kyrtzidisb9f34192008-10-05 18:52:21 +0000257 if (TPR == TPResult::Ambiguous()) {
Argyrios Kyrtzidisa8a45982008-10-05 15:03:47 +0000258 // '='
259 // [GNU] simple-asm-expr[opt] attributes[opt]
260 if (Tok.is(tok::equal) ||
261 Tok.is(tok::kw_asm) || Tok.is(tok::kw___attribute))
Argyrios Kyrtzidisb9f34192008-10-05 18:52:21 +0000262 TPR = TPResult::True();
Argyrios Kyrtzidisa8a45982008-10-05 15:03:47 +0000263 else
Argyrios Kyrtzidisb9f34192008-10-05 18:52:21 +0000264 TPR = TPResult::False();
Argyrios Kyrtzidisa8a45982008-10-05 15:03:47 +0000265 }
266
Argyrios Kyrtzidisca35baa2008-10-05 15:19:49 +0000267 PA.Revert();
268
Argyrios Kyrtzidisb9f34192008-10-05 18:52:21 +0000269 assert(TPR == TPResult::True() || TPR == TPResult::False());
270 return TPR == TPResult::True();
Argyrios Kyrtzidisa8a45982008-10-05 15:03:47 +0000271}
272
Douglas Gregor8b642592009-02-10 00:53:15 +0000273 /// \brief Determine whether the next set of tokens contains a type-id.
274 ///
275 /// The context parameter states what context we're parsing right
276 /// now, which affects how this routine copes with the token
277 /// following the type-id. If the context is TypeIdInParens, we have
278 /// already parsed the '(' and we will cease lookahead when we hit
279 /// the corresponding ')'. If the context is
280 /// TypeIdAsTemplateArgument, we've already parsed the '<' or ','
281 /// before this template argument, and will cease lookahead when we
282 /// hit a '>', '>>' (in C++0x), or ','. Returns true for a type-id
283 /// and false for an expression. If during the disambiguation
284 /// process a parsing error is encountered, the function returns
285 /// true to let the declaration parsing code handle it.
286 ///
287 /// type-id:
288 /// type-specifier-seq abstract-declarator[opt]
289 ///
290bool Parser::isCXXTypeId(TentativeCXXTypeIdContext Context) {
Argyrios Kyrtzidisd3dbbb62008-10-05 21:10:08 +0000291
292 // C++ 8.2p2:
293 // The ambiguity arising from the similarity between a function-style cast and
294 // a type-id can occur in different contexts. The ambiguity appears as a
295 // choice between a function-style cast expression and a declaration of a
296 // type. The resolution is that any construct that could possibly be a type-id
297 // in its syntactic context shall be considered a type-id.
298
Argyrios Kyrtzidis78c8d802008-10-05 19:56:22 +0000299 TPResult TPR = isCXXDeclarationSpecifier();
300 if (TPR != TPResult::Ambiguous())
301 return TPR != TPResult::False(); // Returns true for TPResult::True() or
302 // TPResult::Error().
303
304 // FIXME: Add statistics about the number of ambiguous statements encountered
305 // and how they were resolved (number of declarations+number of expressions).
306
307 // Ok, we have a simple-type-specifier/typename-specifier followed by a '('.
308 // We need tentative parsing...
309
310 TentativeParsingAction PA(*this);
311
312 // type-specifier-seq
313 if (Tok.is(tok::kw_typeof))
314 TryParseTypeofSpecifier();
315 else
316 ConsumeToken();
317 assert(Tok.is(tok::l_paren) && "Expected '('");
318
319 // declarator
320 TPR = TryParseDeclarator(true/*mayBeAbstract*/, false/*mayHaveIdentifier*/);
321
322 // In case of an error, let the declaration parsing code handle it.
323 if (TPR == TPResult::Error())
324 TPR = TPResult::True();
325
326 if (TPR == TPResult::Ambiguous()) {
327 // We are supposed to be inside parens, so if after the abstract declarator
328 // we encounter a ')' this is a type-id, otherwise it's an expression.
Douglas Gregor8b642592009-02-10 00:53:15 +0000329 if (Context == TypeIdInParens && Tok.is(tok::r_paren))
330 TPR = TPResult::True();
331 // We are supposed to be inside a template argument, so if after
332 // the abstract declarator we encounter a '>', '>>' (in C++0x), or
333 // ',', this is a type-id. Otherwise, it's an expression.
334 else if (Context == TypeIdAsTemplateArgument &&
335 (Tok.is(tok::greater) || Tok.is(tok::comma) ||
336 (getLang().CPlusPlus0x && Tok.is(tok::greatergreater))))
Argyrios Kyrtzidis78c8d802008-10-05 19:56:22 +0000337 TPR = TPResult::True();
338 else
339 TPR = TPResult::False();
340 }
341
342 PA.Revert();
343
344 assert(TPR == TPResult::True() || TPR == TPResult::False());
345 return TPR == TPResult::True();
346}
347
Argyrios Kyrtzidis5404a152008-10-05 00:06:24 +0000348/// declarator:
349/// direct-declarator
350/// ptr-operator declarator
351///
352/// direct-declarator:
353/// declarator-id
354/// direct-declarator '(' parameter-declaration-clause ')'
355/// cv-qualifier-seq[opt] exception-specification[opt]
356/// direct-declarator '[' constant-expression[opt] ']'
357/// '(' declarator ')'
Argyrios Kyrtzidis1ee2c432008-10-05 14:27:18 +0000358/// [GNU] '(' attributes declarator ')'
Argyrios Kyrtzidis5404a152008-10-05 00:06:24 +0000359///
360/// abstract-declarator:
361/// ptr-operator abstract-declarator[opt]
362/// direct-abstract-declarator
363///
364/// direct-abstract-declarator:
365/// direct-abstract-declarator[opt]
366/// '(' parameter-declaration-clause ')' cv-qualifier-seq[opt]
367/// exception-specification[opt]
368/// direct-abstract-declarator[opt] '[' constant-expression[opt] ']'
369/// '(' abstract-declarator ')'
370///
371/// ptr-operator:
372/// '*' cv-qualifier-seq[opt]
373/// '&'
374/// [C++0x] '&&' [TODO]
Sebastian Redl8edef7c2009-01-24 23:29:36 +0000375/// '::'[opt] nested-name-specifier '*' cv-qualifier-seq[opt]
Argyrios Kyrtzidis5404a152008-10-05 00:06:24 +0000376///
377/// cv-qualifier-seq:
378/// cv-qualifier cv-qualifier-seq[opt]
379///
380/// cv-qualifier:
381/// 'const'
382/// 'volatile'
383///
384/// declarator-id:
385/// id-expression
386///
387/// id-expression:
388/// unqualified-id
389/// qualified-id [TODO]
390///
391/// unqualified-id:
392/// identifier
393/// operator-function-id [TODO]
394/// conversion-function-id [TODO]
395/// '~' class-name [TODO]
396/// template-id [TODO]
397///
Argyrios Kyrtzidis78c8d802008-10-05 19:56:22 +0000398Parser::TPResult Parser::TryParseDeclarator(bool mayBeAbstract,
399 bool mayHaveIdentifier) {
Argyrios Kyrtzidis5404a152008-10-05 00:06:24 +0000400 // declarator:
401 // direct-declarator
402 // ptr-operator declarator
403
404 while (1) {
Sebastian Redl8edef7c2009-01-24 23:29:36 +0000405 if (Tok.is(tok::coloncolon) || Tok.is(tok::identifier))
406 TryAnnotateCXXScopeToken();
407
Chris Lattner9af55002009-03-27 04:18:06 +0000408 if (Tok.is(tok::star) || Tok.is(tok::amp) || Tok.is(tok::caret) ||
Sebastian Redl8edef7c2009-01-24 23:29:36 +0000409 (Tok.is(tok::annot_cxxscope) && NextToken().is(tok::star))) {
Argyrios Kyrtzidis5404a152008-10-05 00:06:24 +0000410 // ptr-operator
411 ConsumeToken();
412 while (Tok.is(tok::kw_const) ||
413 Tok.is(tok::kw_volatile) ||
Chris Lattner9af55002009-03-27 04:18:06 +0000414 Tok.is(tok::kw_restrict))
Argyrios Kyrtzidis5404a152008-10-05 00:06:24 +0000415 ConsumeToken();
416 } else {
417 break;
418 }
419 }
420
421 // direct-declarator:
422 // direct-abstract-declarator:
423
Argyrios Kyrtzidis78c8d802008-10-05 19:56:22 +0000424 if (Tok.is(tok::identifier) && mayHaveIdentifier) {
Argyrios Kyrtzidis5404a152008-10-05 00:06:24 +0000425 // declarator-id
426 ConsumeToken();
427 } else if (Tok.is(tok::l_paren)) {
Argyrios Kyrtzidisd3616a82008-10-05 23:15:41 +0000428 ConsumeParen();
429 if (mayBeAbstract &&
430 (Tok.is(tok::r_paren) || // 'int()' is a function.
431 Tok.is(tok::ellipsis) || // 'int(...)' is a function.
432 isDeclarationSpecifier())) { // 'int(int)' is a function.
Argyrios Kyrtzidis5404a152008-10-05 00:06:24 +0000433 // '(' parameter-declaration-clause ')' cv-qualifier-seq[opt]
434 // exception-specification[opt]
Argyrios Kyrtzidisb9f34192008-10-05 18:52:21 +0000435 TPResult TPR = TryParseFunctionDeclarator();
436 if (TPR != TPResult::Ambiguous())
Argyrios Kyrtzidis5404a152008-10-05 00:06:24 +0000437 return TPR;
438 } else {
439 // '(' declarator ')'
Argyrios Kyrtzidis1ee2c432008-10-05 14:27:18 +0000440 // '(' attributes declarator ')'
Argyrios Kyrtzidis5404a152008-10-05 00:06:24 +0000441 // '(' abstract-declarator ')'
Argyrios Kyrtzidis1ee2c432008-10-05 14:27:18 +0000442 if (Tok.is(tok::kw___attribute))
Argyrios Kyrtzidisb9f34192008-10-05 18:52:21 +0000443 return TPResult::True(); // attributes indicate declaration
Argyrios Kyrtzidis78c8d802008-10-05 19:56:22 +0000444 TPResult TPR = TryParseDeclarator(mayBeAbstract, mayHaveIdentifier);
Argyrios Kyrtzidisb9f34192008-10-05 18:52:21 +0000445 if (TPR != TPResult::Ambiguous())
Argyrios Kyrtzidis5404a152008-10-05 00:06:24 +0000446 return TPR;
447 if (Tok.isNot(tok::r_paren))
Argyrios Kyrtzidisb9f34192008-10-05 18:52:21 +0000448 return TPResult::False();
Argyrios Kyrtzidis5404a152008-10-05 00:06:24 +0000449 ConsumeParen();
450 }
451 } else if (!mayBeAbstract) {
Argyrios Kyrtzidisb9f34192008-10-05 18:52:21 +0000452 return TPResult::False();
Argyrios Kyrtzidis5404a152008-10-05 00:06:24 +0000453 }
454
455 while (1) {
Argyrios Kyrtzidisb9f34192008-10-05 18:52:21 +0000456 TPResult TPR(TPResult::Ambiguous());
Argyrios Kyrtzidis5404a152008-10-05 00:06:24 +0000457
458 if (Tok.is(tok::l_paren)) {
Argyrios Kyrtzidisd3616a82008-10-05 23:15:41 +0000459 // Check whether we have a function declarator or a possible ctor-style
460 // initializer that follows the declarator. Note that ctor-style
461 // initializers are not possible in contexts where abstract declarators
462 // are allowed.
Argyrios Kyrtzidise75d8492008-10-17 23:23:35 +0000463 if (!mayBeAbstract && !isCXXFunctionDeclarator(false/*warnIfAmbiguous*/))
Argyrios Kyrtzidisd3616a82008-10-05 23:15:41 +0000464 break;
465
Argyrios Kyrtzidis5404a152008-10-05 00:06:24 +0000466 // direct-declarator '(' parameter-declaration-clause ')'
467 // cv-qualifier-seq[opt] exception-specification[opt]
Argyrios Kyrtzidisd3616a82008-10-05 23:15:41 +0000468 ConsumeParen();
Argyrios Kyrtzidis5404a152008-10-05 00:06:24 +0000469 TPR = TryParseFunctionDeclarator();
470 } else if (Tok.is(tok::l_square)) {
471 // direct-declarator '[' constant-expression[opt] ']'
472 // direct-abstract-declarator[opt] '[' constant-expression[opt] ']'
473 TPR = TryParseBracketDeclarator();
474 } else {
475 break;
476 }
477
Argyrios Kyrtzidisb9f34192008-10-05 18:52:21 +0000478 if (TPR != TPResult::Ambiguous())
Argyrios Kyrtzidis5404a152008-10-05 00:06:24 +0000479 return TPR;
480 }
481
Argyrios Kyrtzidisb9f34192008-10-05 18:52:21 +0000482 return TPResult::Ambiguous();
Argyrios Kyrtzidis5404a152008-10-05 00:06:24 +0000483}
484
Argyrios Kyrtzidisb9f34192008-10-05 18:52:21 +0000485/// isCXXDeclarationSpecifier - Returns TPResult::True() if it is a declaration
486/// specifier, TPResult::False() if it is not, TPResult::Ambiguous() if it could
487/// be either a decl-specifier or a function-style cast, and TPResult::Error()
488/// if a parsing error was found and reported.
Argyrios Kyrtzidis5404a152008-10-05 00:06:24 +0000489///
490/// decl-specifier:
491/// storage-class-specifier
492/// type-specifier
493/// function-specifier
494/// 'friend'
495/// 'typedef'
496/// [GNU] attributes declaration-specifiers[opt]
497///
498/// storage-class-specifier:
499/// 'register'
500/// 'static'
501/// 'extern'
502/// 'mutable'
503/// 'auto'
504/// [GNU] '__thread'
505///
506/// function-specifier:
507/// 'inline'
508/// 'virtual'
509/// 'explicit'
510///
511/// typedef-name:
512/// identifier
513///
514/// type-specifier:
515/// simple-type-specifier
516/// class-specifier
517/// enum-specifier
518/// elaborated-type-specifier
519/// typename-specifier [TODO]
520/// cv-qualifier
521///
522/// simple-type-specifier:
523/// '::'[opt] nested-name-specifier[opt] type-name [TODO]
524/// '::'[opt] nested-name-specifier 'template'
525/// simple-template-id [TODO]
526/// 'char'
527/// 'wchar_t'
528/// 'bool'
529/// 'short'
530/// 'int'
531/// 'long'
532/// 'signed'
533/// 'unsigned'
534/// 'float'
535/// 'double'
536/// 'void'
537/// [GNU] typeof-specifier
538/// [GNU] '_Complex'
539/// [C++0x] 'auto' [TODO]
540///
541/// type-name:
542/// class-name
543/// enum-name
544/// typedef-name
545///
546/// elaborated-type-specifier:
547/// class-key '::'[opt] nested-name-specifier[opt] identifier
548/// class-key '::'[opt] nested-name-specifier[opt] 'template'[opt]
549/// simple-template-id
550/// 'enum' '::'[opt] nested-name-specifier[opt] identifier
551///
552/// enum-name:
553/// identifier
554///
555/// enum-specifier:
556/// 'enum' identifier[opt] '{' enumerator-list[opt] '}'
557/// 'enum' identifier[opt] '{' enumerator-list ',' '}'
558///
559/// class-specifier:
560/// class-head '{' member-specification[opt] '}'
561///
562/// class-head:
563/// class-key identifier[opt] base-clause[opt]
564/// class-key nested-name-specifier identifier base-clause[opt]
565/// class-key nested-name-specifier[opt] simple-template-id
566/// base-clause[opt]
567///
568/// class-key:
569/// 'class'
570/// 'struct'
571/// 'union'
572///
573/// cv-qualifier:
574/// 'const'
575/// 'volatile'
576/// [GNU] restrict
577///
Argyrios Kyrtzidisb9f34192008-10-05 18:52:21 +0000578Parser::TPResult Parser::isCXXDeclarationSpecifier() {
Argyrios Kyrtzidis5404a152008-10-05 00:06:24 +0000579 switch (Tok.getKind()) {
Chris Lattnere5849262009-01-04 23:33:56 +0000580 case tok::identifier: // foo::bar
581 // Annotate typenames and C++ scope specifiers. If we get one, just
582 // recurse to handle whatever we get.
583 if (TryAnnotateTypeOrScopeToken())
584 return isCXXDeclarationSpecifier();
585 // Otherwise, not a typename.
586 return TPResult::False();
587
588 case tok::coloncolon: // ::foo::bar
589 if (NextToken().is(tok::kw_new) || // ::new
590 NextToken().is(tok::kw_delete)) // ::delete
591 return TPResult::False();
592
593 // Annotate typenames and C++ scope specifiers. If we get one, just
594 // recurse to handle whatever we get.
595 if (TryAnnotateTypeOrScopeToken())
596 return isCXXDeclarationSpecifier();
597 // Otherwise, not a typename.
598 return TPResult::False();
599
Argyrios Kyrtzidis5404a152008-10-05 00:06:24 +0000600 // decl-specifier:
601 // storage-class-specifier
602 // type-specifier
603 // function-specifier
604 // 'friend'
605 // 'typedef'
606
607 case tok::kw_friend:
608 case tok::kw_typedef:
609 // storage-class-specifier
610 case tok::kw_register:
611 case tok::kw_static:
612 case tok::kw_extern:
613 case tok::kw_mutable:
614 case tok::kw_auto:
615 case tok::kw___thread:
616 // function-specifier
617 case tok::kw_inline:
618 case tok::kw_virtual:
619 case tok::kw_explicit:
620
621 // type-specifier:
622 // simple-type-specifier
623 // class-specifier
624 // enum-specifier
625 // elaborated-type-specifier
626 // typename-specifier
627 // cv-qualifier
628
629 // class-specifier
630 // elaborated-type-specifier
631 case tok::kw_class:
632 case tok::kw_struct:
633 case tok::kw_union:
634 // enum-specifier
635 case tok::kw_enum:
636 // cv-qualifier
637 case tok::kw_const:
638 case tok::kw_volatile:
639
640 // GNU
641 case tok::kw_restrict:
642 case tok::kw__Complex:
643 case tok::kw___attribute:
Argyrios Kyrtzidisb9f34192008-10-05 18:52:21 +0000644 return TPResult::True();
Steve Naroff7ec56582009-01-06 17:40:00 +0000645
646 // Microsoft
Steve Naroff47f52092009-01-06 19:34:12 +0000647 case tok::kw___declspec:
Steve Naroff7ec56582009-01-06 17:40:00 +0000648 case tok::kw___cdecl:
649 case tok::kw___stdcall:
650 case tok::kw___fastcall:
651 return PP.getLangOptions().Microsoft ? TPResult::True() : TPResult::False();
Argyrios Kyrtzidis5404a152008-10-05 00:06:24 +0000652
653 // The ambiguity resides in a simple-type-specifier/typename-specifier
654 // followed by a '('. The '(' could either be the start of:
655 //
656 // direct-declarator:
657 // '(' declarator ')'
658 //
659 // direct-abstract-declarator:
660 // '(' parameter-declaration-clause ')' cv-qualifier-seq[opt]
661 // exception-specification[opt]
662 // '(' abstract-declarator ')'
663 //
664 // or part of a function-style cast expression:
665 //
666 // simple-type-specifier '(' expression-list[opt] ')'
667 //
668
669 // simple-type-specifier:
670
Argyrios Kyrtzidis5404a152008-10-05 00:06:24 +0000671 case tok::kw_char:
672 case tok::kw_wchar_t:
673 case tok::kw_bool:
674 case tok::kw_short:
675 case tok::kw_int:
676 case tok::kw_long:
677 case tok::kw_signed:
678 case tok::kw_unsigned:
679 case tok::kw_float:
680 case tok::kw_double:
681 case tok::kw_void:
Chris Lattnerb31757b2009-01-06 05:06:21 +0000682 case tok::annot_typename:
Argyrios Kyrtzidis5404a152008-10-05 00:06:24 +0000683 if (NextToken().is(tok::l_paren))
Argyrios Kyrtzidisb9f34192008-10-05 18:52:21 +0000684 return TPResult::Ambiguous();
Argyrios Kyrtzidis5404a152008-10-05 00:06:24 +0000685
Argyrios Kyrtzidisb9f34192008-10-05 18:52:21 +0000686 return TPResult::True();
Argyrios Kyrtzidis5404a152008-10-05 00:06:24 +0000687
688 // GNU typeof support.
689 case tok::kw_typeof: {
690 if (NextToken().isNot(tok::l_paren))
Argyrios Kyrtzidisb9f34192008-10-05 18:52:21 +0000691 return TPResult::True();
Argyrios Kyrtzidis5404a152008-10-05 00:06:24 +0000692
693 TentativeParsingAction PA(*this);
694
Argyrios Kyrtzidisb9f34192008-10-05 18:52:21 +0000695 TPResult TPR = TryParseTypeofSpecifier();
Argyrios Kyrtzidis5404a152008-10-05 00:06:24 +0000696 bool isFollowedByParen = Tok.is(tok::l_paren);
697
698 PA.Revert();
699
Argyrios Kyrtzidisb9f34192008-10-05 18:52:21 +0000700 if (TPR == TPResult::Error())
701 return TPResult::Error();
Argyrios Kyrtzidis5404a152008-10-05 00:06:24 +0000702
703 if (isFollowedByParen)
Argyrios Kyrtzidisb9f34192008-10-05 18:52:21 +0000704 return TPResult::Ambiguous();
Argyrios Kyrtzidis5404a152008-10-05 00:06:24 +0000705
Argyrios Kyrtzidisb9f34192008-10-05 18:52:21 +0000706 return TPResult::True();
Argyrios Kyrtzidis5404a152008-10-05 00:06:24 +0000707 }
708
709 default:
Argyrios Kyrtzidisb9f34192008-10-05 18:52:21 +0000710 return TPResult::False();
Argyrios Kyrtzidis5404a152008-10-05 00:06:24 +0000711 }
712}
713
714/// [GNU] typeof-specifier:
715/// 'typeof' '(' expressions ')'
716/// 'typeof' '(' type-name ')'
717///
Argyrios Kyrtzidisb9f34192008-10-05 18:52:21 +0000718Parser::TPResult Parser::TryParseTypeofSpecifier() {
Argyrios Kyrtzidis5404a152008-10-05 00:06:24 +0000719 assert(Tok.is(tok::kw_typeof) && "Expected 'typeof'!");
720 ConsumeToken();
721
722 assert(Tok.is(tok::l_paren) && "Expected '('");
723 // Parse through the parens after 'typeof'.
724 ConsumeParen();
725 if (!SkipUntil(tok::r_paren))
Argyrios Kyrtzidisb9f34192008-10-05 18:52:21 +0000726 return TPResult::Error();
Argyrios Kyrtzidis5404a152008-10-05 00:06:24 +0000727
Argyrios Kyrtzidisb9f34192008-10-05 18:52:21 +0000728 return TPResult::Ambiguous();
Argyrios Kyrtzidis5404a152008-10-05 00:06:24 +0000729}
730
Argyrios Kyrtzidisb9f34192008-10-05 18:52:21 +0000731Parser::TPResult Parser::TryParseDeclarationSpecifier() {
732 TPResult TPR = isCXXDeclarationSpecifier();
733 if (TPR != TPResult::Ambiguous())
Argyrios Kyrtzidis5404a152008-10-05 00:06:24 +0000734 return TPR;
735
736 if (Tok.is(tok::kw_typeof))
737 TryParseTypeofSpecifier();
738 else
739 ConsumeToken();
740
741 assert(Tok.is(tok::l_paren) && "Expected '('!");
Argyrios Kyrtzidisb9f34192008-10-05 18:52:21 +0000742 return TPResult::Ambiguous();
Argyrios Kyrtzidis5404a152008-10-05 00:06:24 +0000743}
744
745/// isCXXFunctionDeclarator - Disambiguates between a function declarator or
746/// a constructor-style initializer, when parsing declaration statements.
747/// Returns true for function declarator and false for constructor-style
748/// initializer.
749/// If during the disambiguation process a parsing error is encountered,
750/// the function returns true to let the declaration parsing code handle it.
751///
752/// '(' parameter-declaration-clause ')' cv-qualifier-seq[opt]
753/// exception-specification[opt]
754///
Argyrios Kyrtzidise75d8492008-10-17 23:23:35 +0000755bool Parser::isCXXFunctionDeclarator(bool warnIfAmbiguous) {
Argyrios Kyrtzidisd3dbbb62008-10-05 21:10:08 +0000756
757 // C++ 8.2p1:
758 // The ambiguity arising from the similarity between a function-style cast and
759 // a declaration mentioned in 6.8 can also occur in the context of a
760 // declaration. In that context, the choice is between a function declaration
761 // with a redundant set of parentheses around a parameter name and an object
762 // declaration with a function-style cast as the initializer. Just as for the
763 // ambiguities mentioned in 6.8, the resolution is to consider any construct
764 // that could possibly be a declaration a declaration.
765
Argyrios Kyrtzidis5404a152008-10-05 00:06:24 +0000766 TentativeParsingAction PA(*this);
767
768 ConsumeParen();
Argyrios Kyrtzidisb9f34192008-10-05 18:52:21 +0000769 TPResult TPR = TryParseParameterDeclarationClause();
770 if (TPR == TPResult::Ambiguous() && Tok.isNot(tok::r_paren))
771 TPR = TPResult::False();
Argyrios Kyrtzidis5404a152008-10-05 00:06:24 +0000772
Argyrios Kyrtzidis259b0d92008-10-15 23:21:32 +0000773 SourceLocation TPLoc = Tok.getLocation();
Argyrios Kyrtzidis5404a152008-10-05 00:06:24 +0000774 PA.Revert();
775
776 // In case of an error, let the declaration parsing code handle it.
Argyrios Kyrtzidisb9f34192008-10-05 18:52:21 +0000777 if (TPR == TPResult::Error())
Argyrios Kyrtzidis5404a152008-10-05 00:06:24 +0000778 return true;
779
Argyrios Kyrtzidis259b0d92008-10-15 23:21:32 +0000780 if (TPR == TPResult::Ambiguous()) {
781 // Function declarator has precedence over constructor-style initializer.
782 // Emit a warning just in case the author intended a variable definition.
Argyrios Kyrtzidise75d8492008-10-17 23:23:35 +0000783 if (warnIfAmbiguous)
Chris Lattneref708fd2008-11-18 07:50:21 +0000784 Diag(Tok, diag::warn_parens_disambiguated_as_function_decl)
785 << SourceRange(Tok.getLocation(), TPLoc);
Argyrios Kyrtzidisb9f34192008-10-05 18:52:21 +0000786 return true;
Argyrios Kyrtzidis259b0d92008-10-15 23:21:32 +0000787 }
Argyrios Kyrtzidisb9f34192008-10-05 18:52:21 +0000788
789 return TPR == TPResult::True();
Argyrios Kyrtzidis5404a152008-10-05 00:06:24 +0000790}
791
792/// parameter-declaration-clause:
793/// parameter-declaration-list[opt] '...'[opt]
794/// parameter-declaration-list ',' '...'
795///
796/// parameter-declaration-list:
797/// parameter-declaration
798/// parameter-declaration-list ',' parameter-declaration
799///
800/// parameter-declaration:
801/// decl-specifier-seq declarator
802/// decl-specifier-seq declarator '=' assignment-expression
803/// decl-specifier-seq abstract-declarator[opt]
804/// decl-specifier-seq abstract-declarator[opt] '=' assignment-expression
805///
Argyrios Kyrtzidisb9f34192008-10-05 18:52:21 +0000806Parser::TPResult Parser::TryParseParameterDeclarationClause() {
Argyrios Kyrtzidis5404a152008-10-05 00:06:24 +0000807
808 if (Tok.is(tok::r_paren))
Argyrios Kyrtzidisb9f34192008-10-05 18:52:21 +0000809 return TPResult::True();
Argyrios Kyrtzidis5404a152008-10-05 00:06:24 +0000810
811 // parameter-declaration-list[opt] '...'[opt]
812 // parameter-declaration-list ',' '...'
813 //
814 // parameter-declaration-list:
815 // parameter-declaration
816 // parameter-declaration-list ',' parameter-declaration
817 //
818 while (1) {
819 // '...'[opt]
820 if (Tok.is(tok::ellipsis)) {
821 ConsumeToken();
Argyrios Kyrtzidisb9f34192008-10-05 18:52:21 +0000822 return TPResult::True(); // '...' is a sign of a function declarator.
Argyrios Kyrtzidis5404a152008-10-05 00:06:24 +0000823 }
824
825 // decl-specifier-seq
Argyrios Kyrtzidisb9f34192008-10-05 18:52:21 +0000826 TPResult TPR = TryParseDeclarationSpecifier();
827 if (TPR != TPResult::Ambiguous())
Argyrios Kyrtzidis5404a152008-10-05 00:06:24 +0000828 return TPR;
829
830 // declarator
831 // abstract-declarator[opt]
832 TPR = TryParseDeclarator(true/*mayBeAbstract*/);
Argyrios Kyrtzidisb9f34192008-10-05 18:52:21 +0000833 if (TPR != TPResult::Ambiguous())
Argyrios Kyrtzidis5404a152008-10-05 00:06:24 +0000834 return TPR;
835
836 if (Tok.is(tok::equal)) {
837 // '=' assignment-expression
838 // Parse through assignment-expression.
839 tok::TokenKind StopToks[3] ={ tok::comma, tok::ellipsis, tok::r_paren };
840 if (!SkipUntil(StopToks, 3, true/*StopAtSemi*/, true/*DontConsume*/))
Argyrios Kyrtzidisb9f34192008-10-05 18:52:21 +0000841 return TPResult::Error();
Argyrios Kyrtzidis5404a152008-10-05 00:06:24 +0000842 }
843
844 if (Tok.is(tok::ellipsis)) {
845 ConsumeToken();
Argyrios Kyrtzidisb9f34192008-10-05 18:52:21 +0000846 return TPResult::True(); // '...' is a sign of a function declarator.
Argyrios Kyrtzidis5404a152008-10-05 00:06:24 +0000847 }
848
849 if (Tok.isNot(tok::comma))
850 break;
851 ConsumeToken(); // the comma.
852 }
853
Argyrios Kyrtzidisb9f34192008-10-05 18:52:21 +0000854 return TPResult::Ambiguous();
Argyrios Kyrtzidis5404a152008-10-05 00:06:24 +0000855}
856
Argyrios Kyrtzidisd3616a82008-10-05 23:15:41 +0000857/// TryParseFunctionDeclarator - We parsed a '(' and we want to try to continue
858/// parsing as a function declarator.
859/// If TryParseFunctionDeclarator fully parsed the function declarator, it will
860/// return TPResult::Ambiguous(), otherwise it will return either False() or
861/// Error().
Argyrios Kyrtzidis5404a152008-10-05 00:06:24 +0000862///
863/// '(' parameter-declaration-clause ')' cv-qualifier-seq[opt]
864/// exception-specification[opt]
865///
866/// exception-specification:
867/// 'throw' '(' type-id-list[opt] ')'
868///
Argyrios Kyrtzidisb9f34192008-10-05 18:52:21 +0000869Parser::TPResult Parser::TryParseFunctionDeclarator() {
Argyrios Kyrtzidisd3616a82008-10-05 23:15:41 +0000870
871 // The '(' is already parsed.
872
873 TPResult TPR = TryParseParameterDeclarationClause();
874 if (TPR == TPResult::Ambiguous() && Tok.isNot(tok::r_paren))
875 TPR = TPResult::False();
876
877 if (TPR == TPResult::False() || TPR == TPResult::Error())
878 return TPR;
879
Argyrios Kyrtzidis5404a152008-10-05 00:06:24 +0000880 // Parse through the parens.
Argyrios Kyrtzidis5404a152008-10-05 00:06:24 +0000881 if (!SkipUntil(tok::r_paren))
Argyrios Kyrtzidisb9f34192008-10-05 18:52:21 +0000882 return TPResult::Error();
Argyrios Kyrtzidis5404a152008-10-05 00:06:24 +0000883
884 // cv-qualifier-seq
885 while (Tok.is(tok::kw_const) ||
886 Tok.is(tok::kw_volatile) ||
887 Tok.is(tok::kw_restrict) )
888 ConsumeToken();
889
890 // exception-specification
891 if (Tok.is(tok::kw_throw)) {
892 ConsumeToken();
893 if (Tok.isNot(tok::l_paren))
Argyrios Kyrtzidisb9f34192008-10-05 18:52:21 +0000894 return TPResult::Error();
Argyrios Kyrtzidis5404a152008-10-05 00:06:24 +0000895
896 // Parse through the parens after 'throw'.
897 ConsumeParen();
898 if (!SkipUntil(tok::r_paren))
Argyrios Kyrtzidisb9f34192008-10-05 18:52:21 +0000899 return TPResult::Error();
Argyrios Kyrtzidis5404a152008-10-05 00:06:24 +0000900 }
901
Argyrios Kyrtzidisb9f34192008-10-05 18:52:21 +0000902 return TPResult::Ambiguous();
Argyrios Kyrtzidis5404a152008-10-05 00:06:24 +0000903}
904
905/// '[' constant-expression[opt] ']'
906///
Argyrios Kyrtzidisb9f34192008-10-05 18:52:21 +0000907Parser::TPResult Parser::TryParseBracketDeclarator() {
Argyrios Kyrtzidis5404a152008-10-05 00:06:24 +0000908 ConsumeBracket();
909 if (!SkipUntil(tok::r_square))
Argyrios Kyrtzidisb9f34192008-10-05 18:52:21 +0000910 return TPResult::Error();
Argyrios Kyrtzidis5404a152008-10-05 00:06:24 +0000911
Argyrios Kyrtzidisb9f34192008-10-05 18:52:21 +0000912 return TPResult::Ambiguous();
Argyrios Kyrtzidis5404a152008-10-05 00:06:24 +0000913}