blob: 1220b2d27b4fc53f962a6a465544b82b9a20413f [file] [log] [blame]
Reid Spencer5f016e22007-07-11 17:01:13 +00001//===--- ParseExprCXX.cpp - C++ Expression Parsing ------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner0bc735f2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Reid Spencer5f016e22007-07-11 17:01:13 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the Expression parsing implementation for C++.
11//
12//===----------------------------------------------------------------------===//
13
Chris Lattner500d3292009-01-29 05:15:15 +000014#include "clang/Parse/ParseDiagnostic.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000015#include "clang/Parse/Parser.h"
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +000016#include "clang/Parse/DeclSpec.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000017using namespace clang;
18
Chris Lattner7a0ab5f2009-01-06 06:59:53 +000019/// ParseOptionalCXXScopeSpecifier - Parse global scope or
20/// nested-name-specifier if present. Returns true if a nested-name-specifier
21/// was parsed from the token stream. Note that this routine will not parse
22/// ::new or ::delete, it will just leave them in the token stream.
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +000023///
24/// '::'[opt] nested-name-specifier
25/// '::'
26///
27/// nested-name-specifier:
28/// type-name '::'
29/// namespace-name '::'
30/// nested-name-specifier identifier '::'
31/// nested-name-specifier 'template'[opt] simple-template-id '::' [TODO]
32///
Chris Lattner7a0ab5f2009-01-06 06:59:53 +000033bool Parser::ParseOptionalCXXScopeSpecifier(CXXScopeSpec &SS) {
Argyrios Kyrtzidis4bdd91c2008-11-26 21:41:52 +000034 assert(getLang().CPlusPlus &&
Chris Lattner7452c6f2009-01-05 01:24:05 +000035 "Call sites of this function should be guarded by checking for C++");
Argyrios Kyrtzidis4bdd91c2008-11-26 21:41:52 +000036
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +000037 if (Tok.is(tok::annot_cxxscope)) {
Douglas Gregor35073692009-03-26 23:56:24 +000038 SS.setScopeRep(Tok.getAnnotationValue());
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +000039 SS.setRange(Tok.getAnnotationRange());
40 ConsumeToken();
Argyrios Kyrtzidis4bdd91c2008-11-26 21:41:52 +000041 return true;
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +000042 }
Chris Lattnere607e802009-01-04 21:14:15 +000043
Douglas Gregor39a8de12009-02-25 19:37:18 +000044 bool HasScopeSpecifier = false;
45
Chris Lattner5b454732009-01-05 03:55:46 +000046 if (Tok.is(tok::coloncolon)) {
47 // ::new and ::delete aren't nested-name-specifiers.
48 tok::TokenKind NextKind = NextToken().getKind();
49 if (NextKind == tok::kw_new || NextKind == tok::kw_delete)
50 return false;
Chris Lattner55a7cef2009-01-05 00:13:00 +000051
Chris Lattner55a7cef2009-01-05 00:13:00 +000052 // '::' - Global scope qualifier.
Chris Lattner357089d2009-01-05 02:07:19 +000053 SourceLocation CCLoc = ConsumeToken();
Chris Lattner357089d2009-01-05 02:07:19 +000054 SS.setBeginLoc(CCLoc);
Douglas Gregor35073692009-03-26 23:56:24 +000055 SS.setScopeRep(Actions.ActOnCXXGlobalScopeSpecifier(CurScope, CCLoc));
Chris Lattner357089d2009-01-05 02:07:19 +000056 SS.setEndLoc(CCLoc);
Douglas Gregor39a8de12009-02-25 19:37:18 +000057 HasScopeSpecifier = true;
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +000058 }
59
Douglas Gregor39a8de12009-02-25 19:37:18 +000060 while (true) {
61 // nested-name-specifier:
Chris Lattner77cf72a2009-06-26 03:47:46 +000062 // nested-name-specifier 'template'[opt] simple-template-id '::'
63
64 // Parse the optional 'template' keyword, then make sure we have
65 // 'identifier <' after it.
66 if (Tok.is(tok::kw_template)) {
67 SourceLocation TemplateKWLoc = ConsumeToken();
68
69 if (Tok.isNot(tok::identifier)) {
70 Diag(Tok.getLocation(),
71 diag::err_id_after_template_in_nested_name_spec)
72 << SourceRange(TemplateKWLoc);
73 break;
74 }
75
76 if (NextToken().isNot(tok::less)) {
77 Diag(NextToken().getLocation(),
78 diag::err_less_after_template_name_in_nested_name_spec)
79 << Tok.getIdentifierInfo()->getName()
80 << SourceRange(TemplateKWLoc, Tok.getLocation());
81 break;
82 }
83
84 TemplateTy Template
85 = Actions.ActOnDependentTemplateName(TemplateKWLoc,
86 *Tok.getIdentifierInfo(),
87 Tok.getLocation(), SS);
Chris Lattnerc8e27cc2009-06-26 04:27:47 +000088 if (AnnotateTemplateIdToken(Template, TNK_Dependent_template_name,
89 &SS, TemplateKWLoc, false))
90 break;
91
Chris Lattner77cf72a2009-06-26 03:47:46 +000092 continue;
93 }
94
Douglas Gregor39a8de12009-02-25 19:37:18 +000095 if (Tok.is(tok::annot_template_id) && NextToken().is(tok::coloncolon)) {
96 // We have
97 //
98 // simple-template-id '::'
99 //
100 // So we need to check whether the simple-template-id is of the
Douglas Gregorc45c2322009-03-31 00:43:58 +0000101 // right kind (it should name a type or be dependent), and then
102 // convert it into a type within the nested-name-specifier.
Douglas Gregor39a8de12009-02-25 19:37:18 +0000103 TemplateIdAnnotation *TemplateId
104 = static_cast<TemplateIdAnnotation *>(Tok.getAnnotationValue());
105
Douglas Gregorc45c2322009-03-31 00:43:58 +0000106 if (TemplateId->Kind == TNK_Type_template ||
107 TemplateId->Kind == TNK_Dependent_template_name) {
Douglas Gregor31a19b62009-04-01 21:51:26 +0000108 AnnotateTemplateIdTokenAsType(&SS);
Douglas Gregor3f5b61c2009-05-14 00:28:11 +0000109 SS.setScopeRep(0);
Douglas Gregor39a8de12009-02-25 19:37:18 +0000110
111 assert(Tok.is(tok::annot_typename) &&
112 "AnnotateTemplateIdTokenAsType isn't working");
Douglas Gregor39a8de12009-02-25 19:37:18 +0000113 Token TypeToken = Tok;
114 ConsumeToken();
115 assert(Tok.is(tok::coloncolon) && "NextToken() not working properly!");
116 SourceLocation CCLoc = ConsumeToken();
117
118 if (!HasScopeSpecifier) {
119 SS.setBeginLoc(TypeToken.getLocation());
120 HasScopeSpecifier = true;
121 }
Douglas Gregor31a19b62009-04-01 21:51:26 +0000122
123 if (TypeToken.getAnnotationValue())
124 SS.setScopeRep(
125 Actions.ActOnCXXNestedNameSpecifier(CurScope, SS,
126 TypeToken.getAnnotationValue(),
127 TypeToken.getAnnotationRange(),
128 CCLoc));
129 else
130 SS.setScopeRep(0);
Douglas Gregor39a8de12009-02-25 19:37:18 +0000131 SS.setEndLoc(CCLoc);
132 continue;
Chris Lattner67b9e832009-06-26 03:45:46 +0000133 }
134
135 assert(false && "FIXME: Only type template names supported here");
Douglas Gregor39a8de12009-02-25 19:37:18 +0000136 }
137
Chris Lattner5c7f7862009-06-26 03:52:38 +0000138
139 // The rest of the nested-name-specifier possibilities start with
140 // tok::identifier.
141 if (Tok.isNot(tok::identifier))
142 break;
143
144 IdentifierInfo &II = *Tok.getIdentifierInfo();
145
146 // nested-name-specifier:
147 // type-name '::'
148 // namespace-name '::'
149 // nested-name-specifier identifier '::'
150 Token Next = NextToken();
151 if (Next.is(tok::coloncolon)) {
152 // We have an identifier followed by a '::'. Lookup this name
153 // as the name in a nested-name-specifier.
154 SourceLocation IdLoc = ConsumeToken();
155 assert(Tok.is(tok::coloncolon) && "NextToken() not working properly!");
156 SourceLocation CCLoc = ConsumeToken();
157
158 if (!HasScopeSpecifier) {
159 SS.setBeginLoc(IdLoc);
160 HasScopeSpecifier = true;
161 }
162
163 if (SS.isInvalid())
164 continue;
165
166 SS.setScopeRep(
167 Actions.ActOnCXXNestedNameSpecifier(CurScope, SS, IdLoc, CCLoc, II));
168 SS.setEndLoc(CCLoc);
169 continue;
170 }
171
172 // nested-name-specifier:
173 // type-name '<'
174 if (Next.is(tok::less)) {
175 TemplateTy Template;
176 if (TemplateNameKind TNK = Actions.isTemplateName(II, CurScope,
177 Template, &SS)) {
178 // We have found a template name, so annotate this this token
179 // with a template-id annotation. We do not permit the
180 // template-id to be translated into a type annotation,
181 // because some clients (e.g., the parsing of class template
182 // specializations) still want to see the original template-id
183 // token.
Chris Lattnerc8e27cc2009-06-26 04:27:47 +0000184 if (AnnotateTemplateIdToken(Template, TNK, &SS, SourceLocation(),
185 false))
186 break;
Chris Lattner5c7f7862009-06-26 03:52:38 +0000187 continue;
188 }
189 }
190
Douglas Gregor39a8de12009-02-25 19:37:18 +0000191 // We don't have any tokens that form the beginning of a
192 // nested-name-specifier, so we're done.
193 break;
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000194 }
Douglas Gregor39a8de12009-02-25 19:37:18 +0000195
196 return HasScopeSpecifier;
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000197}
198
199/// ParseCXXIdExpression - Handle id-expression.
200///
201/// id-expression:
202/// unqualified-id
203/// qualified-id
204///
205/// unqualified-id:
206/// identifier
207/// operator-function-id
208/// conversion-function-id [TODO]
209/// '~' class-name [TODO]
Douglas Gregoredce4dd2009-06-30 22:34:41 +0000210/// template-id
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000211///
212/// qualified-id:
213/// '::'[opt] nested-name-specifier 'template'[opt] unqualified-id
214/// '::' identifier
215/// '::' operator-function-id
Douglas Gregoredce4dd2009-06-30 22:34:41 +0000216/// '::' template-id
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000217///
218/// nested-name-specifier:
219/// type-name '::'
220/// namespace-name '::'
221/// nested-name-specifier identifier '::'
222/// nested-name-specifier 'template'[opt] simple-template-id '::' [TODO]
223///
224/// NOTE: The standard specifies that, for qualified-id, the parser does not
225/// expect:
226///
227/// '::' conversion-function-id
228/// '::' '~' class-name
229///
230/// This may cause a slight inconsistency on diagnostics:
231///
232/// class C {};
233/// namespace A {}
234/// void f() {
235/// :: A :: ~ C(); // Some Sema error about using destructor with a
236/// // namespace.
237/// :: ~ C(); // Some Parser error like 'unexpected ~'.
238/// }
239///
240/// We simplify the parser a bit and make it work like:
241///
242/// qualified-id:
243/// '::'[opt] nested-name-specifier 'template'[opt] unqualified-id
244/// '::' unqualified-id
245///
246/// That way Sema can handle and report similar errors for namespaces and the
247/// global scope.
248///
Sebastian Redlebc07d52009-02-03 20:19:35 +0000249/// The isAddressOfOperand parameter indicates that this id-expression is a
250/// direct operand of the address-of operator. This is, besides member contexts,
251/// the only place where a qualified-id naming a non-static class member may
252/// appear.
253///
254Parser::OwningExprResult Parser::ParseCXXIdExpression(bool isAddressOfOperand) {
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000255 // qualified-id:
256 // '::'[opt] nested-name-specifier 'template'[opt] unqualified-id
257 // '::' unqualified-id
258 //
259 CXXScopeSpec SS;
Chris Lattner7a0ab5f2009-01-06 06:59:53 +0000260 ParseOptionalCXXScopeSpecifier(SS);
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000261
262 // unqualified-id:
263 // identifier
264 // operator-function-id
Douglas Gregor2def4832008-11-17 20:34:05 +0000265 // conversion-function-id
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000266 // '~' class-name [TODO]
Douglas Gregoredce4dd2009-06-30 22:34:41 +0000267 // template-id
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000268 //
269 switch (Tok.getKind()) {
270 default:
Sebastian Redl20df9b72008-12-11 22:51:44 +0000271 return ExprError(Diag(Tok, diag::err_expected_unqualified_id));
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000272
273 case tok::identifier: {
274 // Consume the identifier so that we can see if it is followed by a '('.
275 IdentifierInfo &II = *Tok.getIdentifierInfo();
276 SourceLocation L = ConsumeToken();
Sebastian Redlebc07d52009-02-03 20:19:35 +0000277 return Actions.ActOnIdentifierExpr(CurScope, L, II, Tok.is(tok::l_paren),
278 &SS, isAddressOfOperand);
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000279 }
280
281 case tok::kw_operator: {
282 SourceLocation OperatorLoc = Tok.getLocation();
Chris Lattner7452c6f2009-01-05 01:24:05 +0000283 if (OverloadedOperatorKind Op = TryParseOperatorFunctionId())
Sebastian Redlcd965b92009-01-18 18:53:16 +0000284 return Actions.ActOnCXXOperatorFunctionIdExpr(
Sebastian Redlebc07d52009-02-03 20:19:35 +0000285 CurScope, OperatorLoc, Op, Tok.is(tok::l_paren), SS,
286 isAddressOfOperand);
Chris Lattner7452c6f2009-01-05 01:24:05 +0000287 if (TypeTy *Type = ParseConversionFunctionId())
Sebastian Redlcd965b92009-01-18 18:53:16 +0000288 return Actions.ActOnCXXConversionFunctionExpr(CurScope, OperatorLoc, Type,
Sebastian Redlebc07d52009-02-03 20:19:35 +0000289 Tok.is(tok::l_paren), SS,
290 isAddressOfOperand);
Sebastian Redl20df9b72008-12-11 22:51:44 +0000291
Douglas Gregor2def4832008-11-17 20:34:05 +0000292 // We already complained about a bad conversion-function-id,
293 // above.
Sebastian Redl20df9b72008-12-11 22:51:44 +0000294 return ExprError();
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000295 }
296
Douglas Gregoredce4dd2009-06-30 22:34:41 +0000297 case tok::annot_template_id: {
298 TemplateIdAnnotation *TemplateId
299 = static_cast<TemplateIdAnnotation *>(Tok.getAnnotationValue());
300 assert((TemplateId->Kind == TNK_Function_template ||
301 TemplateId->Kind == TNK_Dependent_template_name) &&
302 "A template type name is not an ID expression");
303
304 ASTTemplateArgsPtr TemplateArgsPtr(Actions,
305 TemplateId->getTemplateArgs(),
306 TemplateId->getTemplateArgIsType(),
307 TemplateId->NumArgs);
308
309 OwningExprResult Result
310 = Actions.ActOnTemplateIdExpr(TemplateTy::make(TemplateId->Template),
311 TemplateId->TemplateNameLoc,
312 TemplateId->LAngleLoc,
313 TemplateArgsPtr,
314 TemplateId->getTemplateArgLocations(),
315 TemplateId->RAngleLoc);
316 ConsumeToken(); // Consume the template-id token
317 return move(Result);
318 }
319
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000320 } // switch.
321
322 assert(0 && "The switch was supposed to take care everything.");
323}
324
Reid Spencer5f016e22007-07-11 17:01:13 +0000325/// ParseCXXCasts - This handles the various ways to cast expressions to another
326/// type.
327///
328/// postfix-expression: [C++ 5.2p1]
329/// 'dynamic_cast' '<' type-name '>' '(' expression ')'
330/// 'static_cast' '<' type-name '>' '(' expression ')'
331/// 'reinterpret_cast' '<' type-name '>' '(' expression ')'
332/// 'const_cast' '<' type-name '>' '(' expression ')'
333///
Sebastian Redl20df9b72008-12-11 22:51:44 +0000334Parser::OwningExprResult Parser::ParseCXXCasts() {
Reid Spencer5f016e22007-07-11 17:01:13 +0000335 tok::TokenKind Kind = Tok.getKind();
336 const char *CastName = 0; // For error messages
337
338 switch (Kind) {
339 default: assert(0 && "Unknown C++ cast!"); abort();
340 case tok::kw_const_cast: CastName = "const_cast"; break;
341 case tok::kw_dynamic_cast: CastName = "dynamic_cast"; break;
342 case tok::kw_reinterpret_cast: CastName = "reinterpret_cast"; break;
343 case tok::kw_static_cast: CastName = "static_cast"; break;
344 }
345
346 SourceLocation OpLoc = ConsumeToken();
347 SourceLocation LAngleBracketLoc = Tok.getLocation();
348
349 if (ExpectAndConsume(tok::less, diag::err_expected_less_after, CastName))
Sebastian Redl20df9b72008-12-11 22:51:44 +0000350 return ExprError();
Reid Spencer5f016e22007-07-11 17:01:13 +0000351
Douglas Gregor809070a2009-02-18 17:45:20 +0000352 TypeResult CastTy = ParseTypeName();
Reid Spencer5f016e22007-07-11 17:01:13 +0000353 SourceLocation RAngleBracketLoc = Tok.getLocation();
354
Chris Lattner1ab3b962008-11-18 07:48:38 +0000355 if (ExpectAndConsume(tok::greater, diag::err_expected_greater))
Sebastian Redl20df9b72008-12-11 22:51:44 +0000356 return ExprError(Diag(LAngleBracketLoc, diag::note_matching) << "<");
Reid Spencer5f016e22007-07-11 17:01:13 +0000357
358 SourceLocation LParenLoc = Tok.getLocation(), RParenLoc;
359
Argyrios Kyrtzidis21e7ad22009-05-22 10:23:16 +0000360 if (ExpectAndConsume(tok::l_paren, diag::err_expected_lparen_after, CastName))
361 return ExprError();
Reid Spencer5f016e22007-07-11 17:01:13 +0000362
Argyrios Kyrtzidis21e7ad22009-05-22 10:23:16 +0000363 OwningExprResult Result = ParseExpression();
364
365 // Match the ')'.
366 if (Result.isInvalid())
367 SkipUntil(tok::r_paren);
368
369 if (Tok.is(tok::r_paren))
370 RParenLoc = ConsumeParen();
371 else
372 MatchRHSPunctuation(tok::r_paren, LParenLoc);
Reid Spencer5f016e22007-07-11 17:01:13 +0000373
Douglas Gregor809070a2009-02-18 17:45:20 +0000374 if (!Result.isInvalid() && !CastTy.isInvalid())
Douglas Gregor49badde2008-10-27 19:41:14 +0000375 Result = Actions.ActOnCXXNamedCast(OpLoc, Kind,
Sebastian Redlf53597f2009-03-15 17:47:39 +0000376 LAngleBracketLoc, CastTy.get(),
Douglas Gregor809070a2009-02-18 17:45:20 +0000377 RAngleBracketLoc,
Sebastian Redlf53597f2009-03-15 17:47:39 +0000378 LParenLoc, move(Result), RParenLoc);
Reid Spencer5f016e22007-07-11 17:01:13 +0000379
Sebastian Redl20df9b72008-12-11 22:51:44 +0000380 return move(Result);
Reid Spencer5f016e22007-07-11 17:01:13 +0000381}
382
Sebastian Redlc42e1182008-11-11 11:37:55 +0000383/// ParseCXXTypeid - This handles the C++ typeid expression.
384///
385/// postfix-expression: [C++ 5.2p1]
386/// 'typeid' '(' expression ')'
387/// 'typeid' '(' type-id ')'
388///
Sebastian Redl20df9b72008-12-11 22:51:44 +0000389Parser::OwningExprResult Parser::ParseCXXTypeid() {
Sebastian Redlc42e1182008-11-11 11:37:55 +0000390 assert(Tok.is(tok::kw_typeid) && "Not 'typeid'!");
391
392 SourceLocation OpLoc = ConsumeToken();
393 SourceLocation LParenLoc = Tok.getLocation();
394 SourceLocation RParenLoc;
395
396 // typeid expressions are always parenthesized.
397 if (ExpectAndConsume(tok::l_paren, diag::err_expected_lparen_after,
398 "typeid"))
Sebastian Redl20df9b72008-12-11 22:51:44 +0000399 return ExprError();
Sebastian Redlc42e1182008-11-11 11:37:55 +0000400
Sebastian Redl15faa7f2008-12-09 20:22:58 +0000401 OwningExprResult Result(Actions);
Sebastian Redlc42e1182008-11-11 11:37:55 +0000402
403 if (isTypeIdInParens()) {
Douglas Gregor809070a2009-02-18 17:45:20 +0000404 TypeResult Ty = ParseTypeName();
Sebastian Redlc42e1182008-11-11 11:37:55 +0000405
406 // Match the ')'.
407 MatchRHSPunctuation(tok::r_paren, LParenLoc);
408
Douglas Gregor809070a2009-02-18 17:45:20 +0000409 if (Ty.isInvalid())
Sebastian Redl20df9b72008-12-11 22:51:44 +0000410 return ExprError();
Sebastian Redlc42e1182008-11-11 11:37:55 +0000411
412 Result = Actions.ActOnCXXTypeid(OpLoc, LParenLoc, /*isType=*/true,
Douglas Gregor809070a2009-02-18 17:45:20 +0000413 Ty.get(), RParenLoc);
Sebastian Redlc42e1182008-11-11 11:37:55 +0000414 } else {
Douglas Gregore0762c92009-06-19 23:52:42 +0000415 // C++0x [expr.typeid]p3:
416 // When typeid is applied to an expression other than an lvalue of a
417 // polymorphic class type [...] The expression is an unevaluated
418 // operand (Clause 5).
419 //
420 // Note that we can't tell whether the expression is an lvalue of a
421 // polymorphic class type until after we've parsed the expression, so
Douglas Gregorac7610d2009-06-22 20:57:11 +0000422 // we the expression is potentially potentially evaluated.
423 EnterExpressionEvaluationContext Unevaluated(Actions,
424 Action::PotentiallyPotentiallyEvaluated);
Sebastian Redlc42e1182008-11-11 11:37:55 +0000425 Result = ParseExpression();
426
427 // Match the ')'.
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000428 if (Result.isInvalid())
Sebastian Redlc42e1182008-11-11 11:37:55 +0000429 SkipUntil(tok::r_paren);
430 else {
431 MatchRHSPunctuation(tok::r_paren, LParenLoc);
432
433 Result = Actions.ActOnCXXTypeid(OpLoc, LParenLoc, /*isType=*/false,
Sebastian Redleffa8d12008-12-10 00:02:53 +0000434 Result.release(), RParenLoc);
Sebastian Redlc42e1182008-11-11 11:37:55 +0000435 }
436 }
437
Sebastian Redl20df9b72008-12-11 22:51:44 +0000438 return move(Result);
Sebastian Redlc42e1182008-11-11 11:37:55 +0000439}
440
Reid Spencer5f016e22007-07-11 17:01:13 +0000441/// ParseCXXBoolLiteral - This handles the C++ Boolean literals.
442///
443/// boolean-literal: [C++ 2.13.5]
444/// 'true'
445/// 'false'
Sebastian Redl20df9b72008-12-11 22:51:44 +0000446Parser::OwningExprResult Parser::ParseCXXBoolLiteral() {
Reid Spencer5f016e22007-07-11 17:01:13 +0000447 tok::TokenKind Kind = Tok.getKind();
Sebastian Redlf53597f2009-03-15 17:47:39 +0000448 return Actions.ActOnCXXBoolLiteral(ConsumeToken(), Kind);
Reid Spencer5f016e22007-07-11 17:01:13 +0000449}
Chris Lattner50dd2892008-02-26 00:51:44 +0000450
451/// ParseThrowExpression - This handles the C++ throw expression.
452///
453/// throw-expression: [C++ 15]
454/// 'throw' assignment-expression[opt]
Sebastian Redl20df9b72008-12-11 22:51:44 +0000455Parser::OwningExprResult Parser::ParseThrowExpression() {
Chris Lattner50dd2892008-02-26 00:51:44 +0000456 assert(Tok.is(tok::kw_throw) && "Not throw!");
Chris Lattner50dd2892008-02-26 00:51:44 +0000457 SourceLocation ThrowLoc = ConsumeToken(); // Eat the throw token.
Sebastian Redl20df9b72008-12-11 22:51:44 +0000458
Chris Lattner2a2819a2008-04-06 06:02:23 +0000459 // If the current token isn't the start of an assignment-expression,
460 // then the expression is not present. This handles things like:
461 // "C ? throw : (void)42", which is crazy but legal.
462 switch (Tok.getKind()) { // FIXME: move this predicate somewhere common.
463 case tok::semi:
464 case tok::r_paren:
465 case tok::r_square:
466 case tok::r_brace:
467 case tok::colon:
468 case tok::comma:
Sebastian Redlf53597f2009-03-15 17:47:39 +0000469 return Actions.ActOnCXXThrow(ThrowLoc, ExprArg(Actions));
Chris Lattner50dd2892008-02-26 00:51:44 +0000470
Chris Lattner2a2819a2008-04-06 06:02:23 +0000471 default:
Sebastian Redl2f7ece72008-12-11 21:36:32 +0000472 OwningExprResult Expr(ParseAssignmentExpression());
Sebastian Redl20df9b72008-12-11 22:51:44 +0000473 if (Expr.isInvalid()) return move(Expr);
Sebastian Redlf53597f2009-03-15 17:47:39 +0000474 return Actions.ActOnCXXThrow(ThrowLoc, move(Expr));
Chris Lattner2a2819a2008-04-06 06:02:23 +0000475 }
Chris Lattner50dd2892008-02-26 00:51:44 +0000476}
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +0000477
478/// ParseCXXThis - This handles the C++ 'this' pointer.
479///
480/// C++ 9.3.2: In the body of a non-static member function, the keyword this is
481/// a non-lvalue expression whose value is the address of the object for which
482/// the function is called.
Sebastian Redl20df9b72008-12-11 22:51:44 +0000483Parser::OwningExprResult Parser::ParseCXXThis() {
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +0000484 assert(Tok.is(tok::kw_this) && "Not 'this'!");
485 SourceLocation ThisLoc = ConsumeToken();
Sebastian Redlf53597f2009-03-15 17:47:39 +0000486 return Actions.ActOnCXXThis(ThisLoc);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +0000487}
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000488
489/// ParseCXXTypeConstructExpression - Parse construction of a specified type.
490/// Can be interpreted either as function-style casting ("int(x)")
491/// or class type construction ("ClassType(x,y,z)")
492/// or creation of a value-initialized type ("int()").
493///
494/// postfix-expression: [C++ 5.2p1]
495/// simple-type-specifier '(' expression-list[opt] ')' [C++ 5.2.3]
496/// typename-specifier '(' expression-list[opt] ')' [TODO]
497///
Sebastian Redl20df9b72008-12-11 22:51:44 +0000498Parser::OwningExprResult
499Parser::ParseCXXTypeConstructExpression(const DeclSpec &DS) {
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000500 Declarator DeclaratorInfo(DS, Declarator::TypeNameContext);
Douglas Gregor5ac8aff2009-01-26 22:44:13 +0000501 TypeTy *TypeRep = Actions.ActOnTypeName(CurScope, DeclaratorInfo).get();
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000502
503 assert(Tok.is(tok::l_paren) && "Expected '('!");
504 SourceLocation LParenLoc = ConsumeParen();
505
Sebastian Redla55e52c2008-11-25 22:21:31 +0000506 ExprVector Exprs(Actions);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000507 CommaLocsTy CommaLocs;
508
509 if (Tok.isNot(tok::r_paren)) {
510 if (ParseExpressionList(Exprs, CommaLocs)) {
511 SkipUntil(tok::r_paren);
Sebastian Redl20df9b72008-12-11 22:51:44 +0000512 return ExprError();
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000513 }
514 }
515
516 // Match the ')'.
517 SourceLocation RParenLoc = MatchRHSPunctuation(tok::r_paren, LParenLoc);
518
519 assert((Exprs.size() == 0 || Exprs.size()-1 == CommaLocs.size())&&
520 "Unexpected number of commas!");
Sebastian Redlf53597f2009-03-15 17:47:39 +0000521 return Actions.ActOnCXXTypeConstructExpr(DS.getSourceRange(), TypeRep,
522 LParenLoc, move_arg(Exprs),
Jay Foadbeaaccd2009-05-21 09:52:38 +0000523 CommaLocs.data(), RParenLoc);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000524}
525
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +0000526/// ParseCXXCondition - if/switch/while/for condition expression.
527///
528/// condition:
529/// expression
530/// type-specifier-seq declarator '=' assignment-expression
531/// [GNU] type-specifier-seq declarator simple-asm-expr[opt] attributes[opt]
532/// '=' assignment-expression
533///
Sebastian Redl2f7ece72008-12-11 21:36:32 +0000534Parser::OwningExprResult Parser::ParseCXXCondition() {
Argyrios Kyrtzidisa8a45982008-10-05 15:03:47 +0000535 if (!isCXXConditionDeclaration())
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +0000536 return ParseExpression(); // expression
537
538 SourceLocation StartLoc = Tok.getLocation();
539
540 // type-specifier-seq
541 DeclSpec DS;
542 ParseSpecifierQualifierList(DS);
543
544 // declarator
545 Declarator DeclaratorInfo(DS, Declarator::ConditionContext);
546 ParseDeclarator(DeclaratorInfo);
547
548 // simple-asm-expr[opt]
549 if (Tok.is(tok::kw_asm)) {
Sebastian Redlab197ba2009-02-09 18:23:29 +0000550 SourceLocation Loc;
551 OwningExprResult AsmLabel(ParseSimpleAsm(&Loc));
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000552 if (AsmLabel.isInvalid()) {
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +0000553 SkipUntil(tok::semi);
Sebastian Redl2f7ece72008-12-11 21:36:32 +0000554 return ExprError();
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +0000555 }
Sebastian Redleffa8d12008-12-10 00:02:53 +0000556 DeclaratorInfo.setAsmLabel(AsmLabel.release());
Sebastian Redlab197ba2009-02-09 18:23:29 +0000557 DeclaratorInfo.SetRangeEnd(Loc);
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +0000558 }
559
560 // If attributes are present, parse them.
Sebastian Redlab197ba2009-02-09 18:23:29 +0000561 if (Tok.is(tok::kw___attribute)) {
562 SourceLocation Loc;
563 AttributeList *AttrList = ParseAttributes(&Loc);
564 DeclaratorInfo.AddAttributes(AttrList, Loc);
565 }
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +0000566
567 // '=' assignment-expression
568 if (Tok.isNot(tok::equal))
Sebastian Redl2f7ece72008-12-11 21:36:32 +0000569 return ExprError(Diag(Tok, diag::err_expected_equal_after_declarator));
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +0000570 SourceLocation EqualLoc = ConsumeToken();
Sebastian Redl2f7ece72008-12-11 21:36:32 +0000571 OwningExprResult AssignExpr(ParseAssignmentExpression());
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000572 if (AssignExpr.isInvalid())
Sebastian Redl2f7ece72008-12-11 21:36:32 +0000573 return ExprError();
574
Sebastian Redlf53597f2009-03-15 17:47:39 +0000575 return Actions.ActOnCXXConditionDeclarationExpr(CurScope, StartLoc,
576 DeclaratorInfo,EqualLoc,
577 move(AssignExpr));
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +0000578}
579
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000580/// ParseCXXSimpleTypeSpecifier - [C++ 7.1.5.2] Simple type specifiers.
581/// This should only be called when the current token is known to be part of
582/// simple-type-specifier.
583///
584/// simple-type-specifier:
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000585/// '::'[opt] nested-name-specifier[opt] type-name
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000586/// '::'[opt] nested-name-specifier 'template' simple-template-id [TODO]
587/// char
588/// wchar_t
589/// bool
590/// short
591/// int
592/// long
593/// signed
594/// unsigned
595/// float
596/// double
597/// void
598/// [GNU] typeof-specifier
599/// [C++0x] auto [TODO]
600///
601/// type-name:
602/// class-name
603/// enum-name
604/// typedef-name
605///
606void Parser::ParseCXXSimpleTypeSpecifier(DeclSpec &DS) {
607 DS.SetRangeStart(Tok.getLocation());
608 const char *PrevSpec;
609 SourceLocation Loc = Tok.getLocation();
610
611 switch (Tok.getKind()) {
Chris Lattner55a7cef2009-01-05 00:13:00 +0000612 case tok::identifier: // foo::bar
613 case tok::coloncolon: // ::foo::bar
614 assert(0 && "Annotation token should already be formed!");
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000615 default:
616 assert(0 && "Not a simple-type-specifier token!");
617 abort();
Chris Lattner55a7cef2009-01-05 00:13:00 +0000618
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000619 // type-name
Chris Lattnerb31757b2009-01-06 05:06:21 +0000620 case tok::annot_typename: {
Douglas Gregor1a51b4a2009-02-09 15:09:02 +0000621 DS.SetTypeSpecType(DeclSpec::TST_typename, Loc, PrevSpec,
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000622 Tok.getAnnotationValue());
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000623 break;
624 }
625
626 // builtin types
627 case tok::kw_short:
628 DS.SetTypeSpecWidth(DeclSpec::TSW_short, Loc, PrevSpec);
629 break;
630 case tok::kw_long:
631 DS.SetTypeSpecWidth(DeclSpec::TSW_long, Loc, PrevSpec);
632 break;
633 case tok::kw_signed:
634 DS.SetTypeSpecSign(DeclSpec::TSS_signed, Loc, PrevSpec);
635 break;
636 case tok::kw_unsigned:
637 DS.SetTypeSpecSign(DeclSpec::TSS_unsigned, Loc, PrevSpec);
638 break;
639 case tok::kw_void:
640 DS.SetTypeSpecType(DeclSpec::TST_void, Loc, PrevSpec);
641 break;
642 case tok::kw_char:
643 DS.SetTypeSpecType(DeclSpec::TST_char, Loc, PrevSpec);
644 break;
645 case tok::kw_int:
646 DS.SetTypeSpecType(DeclSpec::TST_int, Loc, PrevSpec);
647 break;
648 case tok::kw_float:
649 DS.SetTypeSpecType(DeclSpec::TST_float, Loc, PrevSpec);
650 break;
651 case tok::kw_double:
652 DS.SetTypeSpecType(DeclSpec::TST_double, Loc, PrevSpec);
653 break;
654 case tok::kw_wchar_t:
655 DS.SetTypeSpecType(DeclSpec::TST_wchar, Loc, PrevSpec);
656 break;
657 case tok::kw_bool:
658 DS.SetTypeSpecType(DeclSpec::TST_bool, Loc, PrevSpec);
659 break;
660
661 // GNU typeof support.
662 case tok::kw_typeof:
663 ParseTypeofSpecifier(DS);
Douglas Gregor9b3064b2009-04-01 22:41:11 +0000664 DS.Finish(Diags, PP);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000665 return;
666 }
Chris Lattnerb31757b2009-01-06 05:06:21 +0000667 if (Tok.is(tok::annot_typename))
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000668 DS.SetRangeEnd(Tok.getAnnotationEndLoc());
669 else
670 DS.SetRangeEnd(Tok.getLocation());
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000671 ConsumeToken();
Douglas Gregor9b3064b2009-04-01 22:41:11 +0000672 DS.Finish(Diags, PP);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000673}
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +0000674
Douglas Gregor2f1bc522008-11-07 20:08:42 +0000675/// ParseCXXTypeSpecifierSeq - Parse a C++ type-specifier-seq (C++
676/// [dcl.name]), which is a non-empty sequence of type-specifiers,
677/// e.g., "const short int". Note that the DeclSpec is *not* finished
678/// by parsing the type-specifier-seq, because these sequences are
679/// typically followed by some form of declarator. Returns true and
680/// emits diagnostics if this is not a type-specifier-seq, false
681/// otherwise.
682///
683/// type-specifier-seq: [C++ 8.1]
684/// type-specifier type-specifier-seq[opt]
685///
686bool Parser::ParseCXXTypeSpecifierSeq(DeclSpec &DS) {
687 DS.SetRangeStart(Tok.getLocation());
688 const char *PrevSpec = 0;
689 int isInvalid = 0;
690
691 // Parse one or more of the type specifiers.
Chris Lattner7a0ab5f2009-01-06 06:59:53 +0000692 if (!ParseOptionalTypeSpecifier(DS, isInvalid, PrevSpec)) {
Chris Lattner1ab3b962008-11-18 07:48:38 +0000693 Diag(Tok, diag::err_operator_missing_type_specifier);
Douglas Gregor2f1bc522008-11-07 20:08:42 +0000694 return true;
695 }
Chris Lattner7a0ab5f2009-01-06 06:59:53 +0000696
Ted Kremenekb8006e52009-01-06 19:17:58 +0000697 while (ParseOptionalTypeSpecifier(DS, isInvalid, PrevSpec)) ;
Douglas Gregor2f1bc522008-11-07 20:08:42 +0000698
699 return false;
700}
701
Douglas Gregor43c7bad2008-11-17 16:14:12 +0000702/// TryParseOperatorFunctionId - Attempts to parse a C++ overloaded
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +0000703/// operator name (C++ [over.oper]). If successful, returns the
704/// predefined identifier that corresponds to that overloaded
705/// operator. Otherwise, returns NULL and does not consume any tokens.
706///
707/// operator-function-id: [C++ 13.5]
708/// 'operator' operator
709///
710/// operator: one of
711/// new delete new[] delete[]
712/// + - * / % ^ & | ~
713/// ! = < > += -= *= /= %=
714/// ^= &= |= << >> >>= <<= == !=
715/// <= >= && || ++ -- , ->* ->
716/// () []
Sebastian Redlab197ba2009-02-09 18:23:29 +0000717OverloadedOperatorKind
718Parser::TryParseOperatorFunctionId(SourceLocation *EndLoc) {
Argyrios Kyrtzidis9057a812008-11-07 15:54:02 +0000719 assert(Tok.is(tok::kw_operator) && "Expected 'operator' keyword");
Sebastian Redlab197ba2009-02-09 18:23:29 +0000720 SourceLocation Loc;
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +0000721
722 OverloadedOperatorKind Op = OO_None;
723 switch (NextToken().getKind()) {
724 case tok::kw_new:
725 ConsumeToken(); // 'operator'
Sebastian Redlab197ba2009-02-09 18:23:29 +0000726 Loc = ConsumeToken(); // 'new'
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +0000727 if (Tok.is(tok::l_square)) {
728 ConsumeBracket(); // '['
Sebastian Redlab197ba2009-02-09 18:23:29 +0000729 Loc = Tok.getLocation();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +0000730 ExpectAndConsume(tok::r_square, diag::err_expected_rsquare); // ']'
731 Op = OO_Array_New;
732 } else {
733 Op = OO_New;
734 }
Sebastian Redlab197ba2009-02-09 18:23:29 +0000735 if (EndLoc)
736 *EndLoc = Loc;
Douglas Gregore94ca9e42008-11-18 14:39:36 +0000737 return Op;
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +0000738
739 case tok::kw_delete:
740 ConsumeToken(); // 'operator'
Sebastian Redlab197ba2009-02-09 18:23:29 +0000741 Loc = ConsumeToken(); // 'delete'
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +0000742 if (Tok.is(tok::l_square)) {
743 ConsumeBracket(); // '['
Sebastian Redlab197ba2009-02-09 18:23:29 +0000744 Loc = Tok.getLocation();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +0000745 ExpectAndConsume(tok::r_square, diag::err_expected_rsquare); // ']'
746 Op = OO_Array_Delete;
747 } else {
748 Op = OO_Delete;
749 }
Sebastian Redlab197ba2009-02-09 18:23:29 +0000750 if (EndLoc)
751 *EndLoc = Loc;
Douglas Gregore94ca9e42008-11-18 14:39:36 +0000752 return Op;
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +0000753
Douglas Gregor02bcd4c2008-11-10 13:38:07 +0000754#define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +0000755 case tok::Token: Op = OO_##Name; break;
Douglas Gregor02bcd4c2008-11-10 13:38:07 +0000756#define OVERLOADED_OPERATOR_MULTI(Name,Spelling,Unary,Binary,MemberOnly)
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +0000757#include "clang/Basic/OperatorKinds.def"
758
759 case tok::l_paren:
760 ConsumeToken(); // 'operator'
761 ConsumeParen(); // '('
Sebastian Redlab197ba2009-02-09 18:23:29 +0000762 Loc = Tok.getLocation();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +0000763 ExpectAndConsume(tok::r_paren, diag::err_expected_rparen); // ')'
Sebastian Redlab197ba2009-02-09 18:23:29 +0000764 if (EndLoc)
765 *EndLoc = Loc;
Douglas Gregore94ca9e42008-11-18 14:39:36 +0000766 return OO_Call;
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +0000767
768 case tok::l_square:
769 ConsumeToken(); // 'operator'
770 ConsumeBracket(); // '['
Sebastian Redlab197ba2009-02-09 18:23:29 +0000771 Loc = Tok.getLocation();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +0000772 ExpectAndConsume(tok::r_square, diag::err_expected_rsquare); // ']'
Sebastian Redlab197ba2009-02-09 18:23:29 +0000773 if (EndLoc)
774 *EndLoc = Loc;
Douglas Gregore94ca9e42008-11-18 14:39:36 +0000775 return OO_Subscript;
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +0000776
777 default:
Douglas Gregore94ca9e42008-11-18 14:39:36 +0000778 return OO_None;
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +0000779 }
780
Douglas Gregor43c7bad2008-11-17 16:14:12 +0000781 ConsumeToken(); // 'operator'
Sebastian Redlab197ba2009-02-09 18:23:29 +0000782 Loc = ConsumeAnyToken(); // the operator itself
783 if (EndLoc)
784 *EndLoc = Loc;
Douglas Gregore94ca9e42008-11-18 14:39:36 +0000785 return Op;
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +0000786}
Douglas Gregor2f1bc522008-11-07 20:08:42 +0000787
788/// ParseConversionFunctionId - Parse a C++ conversion-function-id,
789/// which expresses the name of a user-defined conversion operator
790/// (C++ [class.conv.fct]p1). Returns the type that this operator is
791/// specifying a conversion for, or NULL if there was an error.
792///
793/// conversion-function-id: [C++ 12.3.2]
794/// operator conversion-type-id
795///
796/// conversion-type-id:
797/// type-specifier-seq conversion-declarator[opt]
798///
799/// conversion-declarator:
800/// ptr-operator conversion-declarator[opt]
Sebastian Redlab197ba2009-02-09 18:23:29 +0000801Parser::TypeTy *Parser::ParseConversionFunctionId(SourceLocation *EndLoc) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +0000802 assert(Tok.is(tok::kw_operator) && "Expected 'operator' keyword");
803 ConsumeToken(); // 'operator'
804
805 // Parse the type-specifier-seq.
806 DeclSpec DS;
807 if (ParseCXXTypeSpecifierSeq(DS))
808 return 0;
809
810 // Parse the conversion-declarator, which is merely a sequence of
811 // ptr-operators.
812 Declarator D(DS, Declarator::TypeNameContext);
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000813 ParseDeclaratorInternal(D, /*DirectDeclParser=*/0);
Sebastian Redlab197ba2009-02-09 18:23:29 +0000814 if (EndLoc)
815 *EndLoc = D.getSourceRange().getEnd();
Douglas Gregor2f1bc522008-11-07 20:08:42 +0000816
817 // Finish up the type.
818 Action::TypeResult Result = Actions.ActOnTypeName(CurScope, D);
Douglas Gregor5ac8aff2009-01-26 22:44:13 +0000819 if (Result.isInvalid())
Douglas Gregor2f1bc522008-11-07 20:08:42 +0000820 return 0;
821 else
Douglas Gregor5ac8aff2009-01-26 22:44:13 +0000822 return Result.get();
Douglas Gregor2f1bc522008-11-07 20:08:42 +0000823}
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000824
825/// ParseCXXNewExpression - Parse a C++ new-expression. New is used to allocate
826/// memory in a typesafe manner and call constructors.
Chris Lattner59232d32009-01-04 21:25:24 +0000827///
828/// This method is called to parse the new expression after the optional :: has
829/// been already parsed. If the :: was present, "UseGlobal" is true and "Start"
830/// is its location. Otherwise, "Start" is the location of the 'new' token.
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000831///
832/// new-expression:
833/// '::'[opt] 'new' new-placement[opt] new-type-id
834/// new-initializer[opt]
835/// '::'[opt] 'new' new-placement[opt] '(' type-id ')'
836/// new-initializer[opt]
837///
838/// new-placement:
839/// '(' expression-list ')'
840///
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000841/// new-type-id:
842/// type-specifier-seq new-declarator[opt]
843///
844/// new-declarator:
845/// ptr-operator new-declarator[opt]
846/// direct-new-declarator
847///
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000848/// new-initializer:
849/// '(' expression-list[opt] ')'
850/// [C++0x] braced-init-list [TODO]
851///
Chris Lattner59232d32009-01-04 21:25:24 +0000852Parser::OwningExprResult
853Parser::ParseCXXNewExpression(bool UseGlobal, SourceLocation Start) {
854 assert(Tok.is(tok::kw_new) && "expected 'new' token");
855 ConsumeToken(); // Consume 'new'
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000856
857 // A '(' now can be a new-placement or the '(' wrapping the type-id in the
858 // second form of new-expression. It can't be a new-type-id.
859
Sebastian Redla55e52c2008-11-25 22:21:31 +0000860 ExprVector PlacementArgs(Actions);
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000861 SourceLocation PlacementLParen, PlacementRParen;
862
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000863 bool ParenTypeId;
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000864 DeclSpec DS;
865 Declarator DeclaratorInfo(DS, Declarator::TypeNameContext);
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000866 if (Tok.is(tok::l_paren)) {
867 // If it turns out to be a placement, we change the type location.
868 PlacementLParen = ConsumeParen();
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000869 if (ParseExpressionListOrTypeId(PlacementArgs, DeclaratorInfo)) {
870 SkipUntil(tok::semi, /*StopAtSemi=*/true, /*DontConsume=*/true);
Sebastian Redl20df9b72008-12-11 22:51:44 +0000871 return ExprError();
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000872 }
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000873
874 PlacementRParen = MatchRHSPunctuation(tok::r_paren, PlacementLParen);
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000875 if (PlacementRParen.isInvalid()) {
876 SkipUntil(tok::semi, /*StopAtSemi=*/true, /*DontConsume=*/true);
Sebastian Redl20df9b72008-12-11 22:51:44 +0000877 return ExprError();
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000878 }
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000879
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000880 if (PlacementArgs.empty()) {
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000881 // Reset the placement locations. There was no placement.
882 PlacementLParen = PlacementRParen = SourceLocation();
883 ParenTypeId = true;
884 } else {
885 // We still need the type.
886 if (Tok.is(tok::l_paren)) {
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000887 SourceLocation LParen = ConsumeParen();
888 ParseSpecifierQualifierList(DS);
Sebastian Redlab197ba2009-02-09 18:23:29 +0000889 DeclaratorInfo.SetSourceRange(DS.getSourceRange());
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000890 ParseDeclarator(DeclaratorInfo);
891 MatchRHSPunctuation(tok::r_paren, LParen);
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000892 ParenTypeId = true;
893 } else {
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000894 if (ParseCXXTypeSpecifierSeq(DS))
895 DeclaratorInfo.setInvalidType(true);
Sebastian Redlab197ba2009-02-09 18:23:29 +0000896 else {
897 DeclaratorInfo.SetSourceRange(DS.getSourceRange());
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000898 ParseDeclaratorInternal(DeclaratorInfo,
899 &Parser::ParseDirectNewDeclarator);
Sebastian Redlab197ba2009-02-09 18:23:29 +0000900 }
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000901 ParenTypeId = false;
902 }
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000903 }
904 } else {
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000905 // A new-type-id is a simplified type-id, where essentially the
906 // direct-declarator is replaced by a direct-new-declarator.
907 if (ParseCXXTypeSpecifierSeq(DS))
908 DeclaratorInfo.setInvalidType(true);
Sebastian Redlab197ba2009-02-09 18:23:29 +0000909 else {
910 DeclaratorInfo.SetSourceRange(DS.getSourceRange());
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000911 ParseDeclaratorInternal(DeclaratorInfo,
912 &Parser::ParseDirectNewDeclarator);
Sebastian Redlab197ba2009-02-09 18:23:29 +0000913 }
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000914 ParenTypeId = false;
915 }
Chris Lattnereaaebc72009-04-25 08:06:05 +0000916 if (DeclaratorInfo.isInvalidType()) {
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000917 SkipUntil(tok::semi, /*StopAtSemi=*/true, /*DontConsume=*/true);
Sebastian Redl20df9b72008-12-11 22:51:44 +0000918 return ExprError();
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000919 }
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000920
Sebastian Redla55e52c2008-11-25 22:21:31 +0000921 ExprVector ConstructorArgs(Actions);
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000922 SourceLocation ConstructorLParen, ConstructorRParen;
923
924 if (Tok.is(tok::l_paren)) {
925 ConstructorLParen = ConsumeParen();
926 if (Tok.isNot(tok::r_paren)) {
927 CommaLocsTy CommaLocs;
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000928 if (ParseExpressionList(ConstructorArgs, CommaLocs)) {
929 SkipUntil(tok::semi, /*StopAtSemi=*/true, /*DontConsume=*/true);
Sebastian Redl20df9b72008-12-11 22:51:44 +0000930 return ExprError();
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000931 }
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000932 }
933 ConstructorRParen = MatchRHSPunctuation(tok::r_paren, ConstructorLParen);
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000934 if (ConstructorRParen.isInvalid()) {
935 SkipUntil(tok::semi, /*StopAtSemi=*/true, /*DontConsume=*/true);
Sebastian Redl20df9b72008-12-11 22:51:44 +0000936 return ExprError();
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000937 }
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000938 }
939
Sebastian Redlf53597f2009-03-15 17:47:39 +0000940 return Actions.ActOnCXXNew(Start, UseGlobal, PlacementLParen,
941 move_arg(PlacementArgs), PlacementRParen,
942 ParenTypeId, DeclaratorInfo, ConstructorLParen,
943 move_arg(ConstructorArgs), ConstructorRParen);
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000944}
945
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000946/// ParseDirectNewDeclarator - Parses a direct-new-declarator. Intended to be
947/// passed to ParseDeclaratorInternal.
948///
949/// direct-new-declarator:
950/// '[' expression ']'
951/// direct-new-declarator '[' constant-expression ']'
952///
Chris Lattner59232d32009-01-04 21:25:24 +0000953void Parser::ParseDirectNewDeclarator(Declarator &D) {
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000954 // Parse the array dimensions.
955 bool first = true;
956 while (Tok.is(tok::l_square)) {
957 SourceLocation LLoc = ConsumeBracket();
Sebastian Redl2f7ece72008-12-11 21:36:32 +0000958 OwningExprResult Size(first ? ParseExpression()
959 : ParseConstantExpression());
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000960 if (Size.isInvalid()) {
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000961 // Recover
962 SkipUntil(tok::r_square);
963 return;
964 }
965 first = false;
966
Sebastian Redlab197ba2009-02-09 18:23:29 +0000967 SourceLocation RLoc = MatchRHSPunctuation(tok::r_square, LLoc);
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000968 D.AddTypeInfo(DeclaratorChunk::getArray(0, /*static=*/false, /*star=*/false,
Sebastian Redlab197ba2009-02-09 18:23:29 +0000969 Size.release(), LLoc),
970 RLoc);
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000971
Sebastian Redlab197ba2009-02-09 18:23:29 +0000972 if (RLoc.isInvalid())
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000973 return;
974 }
975}
976
977/// ParseExpressionListOrTypeId - Parse either an expression-list or a type-id.
978/// This ambiguity appears in the syntax of the C++ new operator.
979///
980/// new-expression:
981/// '::'[opt] 'new' new-placement[opt] '(' type-id ')'
982/// new-initializer[opt]
983///
984/// new-placement:
985/// '(' expression-list ')'
986///
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000987bool Parser::ParseExpressionListOrTypeId(ExprListTy &PlacementArgs,
Chris Lattner59232d32009-01-04 21:25:24 +0000988 Declarator &D) {
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000989 // The '(' was already consumed.
990 if (isTypeIdInParens()) {
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000991 ParseSpecifierQualifierList(D.getMutableDeclSpec());
Sebastian Redlab197ba2009-02-09 18:23:29 +0000992 D.SetSourceRange(D.getDeclSpec().getSourceRange());
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000993 ParseDeclarator(D);
Chris Lattnereaaebc72009-04-25 08:06:05 +0000994 return D.isInvalidType();
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000995 }
996
997 // It's not a type, it has to be an expression list.
998 // Discard the comma locations - ActOnCXXNew has enough parameters.
999 CommaLocsTy CommaLocs;
1000 return ParseExpressionList(PlacementArgs, CommaLocs);
1001}
1002
1003/// ParseCXXDeleteExpression - Parse a C++ delete-expression. Delete is used
1004/// to free memory allocated by new.
1005///
Chris Lattner59232d32009-01-04 21:25:24 +00001006/// This method is called to parse the 'delete' expression after the optional
1007/// '::' has been already parsed. If the '::' was present, "UseGlobal" is true
1008/// and "Start" is its location. Otherwise, "Start" is the location of the
1009/// 'delete' token.
1010///
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001011/// delete-expression:
1012/// '::'[opt] 'delete' cast-expression
1013/// '::'[opt] 'delete' '[' ']' cast-expression
Chris Lattner59232d32009-01-04 21:25:24 +00001014Parser::OwningExprResult
1015Parser::ParseCXXDeleteExpression(bool UseGlobal, SourceLocation Start) {
1016 assert(Tok.is(tok::kw_delete) && "Expected 'delete' keyword");
1017 ConsumeToken(); // Consume 'delete'
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001018
1019 // Array delete?
1020 bool ArrayDelete = false;
1021 if (Tok.is(tok::l_square)) {
1022 ArrayDelete = true;
1023 SourceLocation LHS = ConsumeBracket();
1024 SourceLocation RHS = MatchRHSPunctuation(tok::r_square, LHS);
1025 if (RHS.isInvalid())
Sebastian Redl20df9b72008-12-11 22:51:44 +00001026 return ExprError();
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001027 }
1028
Sebastian Redl2f7ece72008-12-11 21:36:32 +00001029 OwningExprResult Operand(ParseCastExpression(false));
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001030 if (Operand.isInvalid())
Sebastian Redl20df9b72008-12-11 22:51:44 +00001031 return move(Operand);
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001032
Sebastian Redlf53597f2009-03-15 17:47:39 +00001033 return Actions.ActOnCXXDelete(Start, UseGlobal, ArrayDelete, move(Operand));
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001034}
Sebastian Redl64b45f72009-01-05 20:52:13 +00001035
1036static UnaryTypeTrait UnaryTypeTraitFromTokKind(tok::TokenKind kind)
1037{
1038 switch(kind) {
1039 default: assert(false && "Not a known unary type trait.");
1040 case tok::kw___has_nothrow_assign: return UTT_HasNothrowAssign;
1041 case tok::kw___has_nothrow_copy: return UTT_HasNothrowCopy;
1042 case tok::kw___has_nothrow_constructor: return UTT_HasNothrowConstructor;
1043 case tok::kw___has_trivial_assign: return UTT_HasTrivialAssign;
1044 case tok::kw___has_trivial_copy: return UTT_HasTrivialCopy;
1045 case tok::kw___has_trivial_constructor: return UTT_HasTrivialConstructor;
1046 case tok::kw___has_trivial_destructor: return UTT_HasTrivialDestructor;
1047 case tok::kw___has_virtual_destructor: return UTT_HasVirtualDestructor;
1048 case tok::kw___is_abstract: return UTT_IsAbstract;
1049 case tok::kw___is_class: return UTT_IsClass;
1050 case tok::kw___is_empty: return UTT_IsEmpty;
1051 case tok::kw___is_enum: return UTT_IsEnum;
1052 case tok::kw___is_pod: return UTT_IsPOD;
1053 case tok::kw___is_polymorphic: return UTT_IsPolymorphic;
1054 case tok::kw___is_union: return UTT_IsUnion;
1055 }
1056}
1057
1058/// ParseUnaryTypeTrait - Parse the built-in unary type-trait
1059/// pseudo-functions that allow implementation of the TR1/C++0x type traits
1060/// templates.
1061///
1062/// primary-expression:
1063/// [GNU] unary-type-trait '(' type-id ')'
1064///
1065Parser::OwningExprResult Parser::ParseUnaryTypeTrait()
1066{
1067 UnaryTypeTrait UTT = UnaryTypeTraitFromTokKind(Tok.getKind());
1068 SourceLocation Loc = ConsumeToken();
1069
1070 SourceLocation LParen = Tok.getLocation();
1071 if (ExpectAndConsume(tok::l_paren, diag::err_expected_lparen))
1072 return ExprError();
1073
1074 // FIXME: Error reporting absolutely sucks! If the this fails to parse a type
1075 // there will be cryptic errors about mismatched parentheses and missing
1076 // specifiers.
Douglas Gregor809070a2009-02-18 17:45:20 +00001077 TypeResult Ty = ParseTypeName();
Sebastian Redl64b45f72009-01-05 20:52:13 +00001078
1079 SourceLocation RParen = MatchRHSPunctuation(tok::r_paren, LParen);
1080
Douglas Gregor809070a2009-02-18 17:45:20 +00001081 if (Ty.isInvalid())
1082 return ExprError();
1083
1084 return Actions.ActOnUnaryTypeTrait(UTT, Loc, LParen, Ty.get(), RParen);
Sebastian Redl64b45f72009-01-05 20:52:13 +00001085}
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00001086
1087/// ParseCXXAmbiguousParenExpression - We have parsed the left paren of a
1088/// parenthesized ambiguous type-id. This uses tentative parsing to disambiguate
1089/// based on the context past the parens.
1090Parser::OwningExprResult
1091Parser::ParseCXXAmbiguousParenExpression(ParenParseOption &ExprType,
1092 TypeTy *&CastTy,
1093 SourceLocation LParenLoc,
1094 SourceLocation &RParenLoc) {
1095 assert(getLang().CPlusPlus && "Should only be called for C++!");
1096 assert(ExprType == CastExpr && "Compound literals are not ambiguous!");
1097 assert(isTypeIdInParens() && "Not a type-id!");
1098
1099 OwningExprResult Result(Actions, true);
1100 CastTy = 0;
1101
1102 // We need to disambiguate a very ugly part of the C++ syntax:
1103 //
1104 // (T())x; - type-id
1105 // (T())*x; - type-id
1106 // (T())/x; - expression
1107 // (T()); - expression
1108 //
1109 // The bad news is that we cannot use the specialized tentative parser, since
1110 // it can only verify that the thing inside the parens can be parsed as
1111 // type-id, it is not useful for determining the context past the parens.
1112 //
1113 // The good news is that the parser can disambiguate this part without
Argyrios Kyrtzidisa558a892009-05-22 15:12:46 +00001114 // making any unnecessary Action calls.
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00001115 //
1116 // It uses a scheme similar to parsing inline methods. The parenthesized
1117 // tokens are cached, the context that follows is determined (possibly by
1118 // parsing a cast-expression), and then we re-introduce the cached tokens
1119 // into the token stream and parse them appropriately.
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00001120
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00001121 ParenParseOption ParseAs;
1122 CachedTokens Toks;
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00001123
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00001124 // Store the tokens of the parentheses. We will parse them after we determine
1125 // the context that follows them.
1126 if (!ConsumeAndStoreUntil(tok::r_paren, tok::unknown, Toks, tok::semi)) {
1127 // We didn't find the ')' we expected.
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00001128 MatchRHSPunctuation(tok::r_paren, LParenLoc);
1129 return ExprError();
1130 }
1131
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00001132 if (Tok.is(tok::l_brace)) {
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00001133 ParseAs = CompoundLiteral;
1134 } else {
1135 bool NotCastExpr;
Eli Friedmanb53f08a2009-05-25 19:41:42 +00001136 // FIXME: Special-case ++ and --: "(S())++;" is not a cast-expression
1137 if (Tok.is(tok::l_paren) && NextToken().is(tok::r_paren)) {
1138 NotCastExpr = true;
1139 } else {
1140 // Try parsing the cast-expression that may follow.
1141 // If it is not a cast-expression, NotCastExpr will be true and no token
1142 // will be consumed.
1143 Result = ParseCastExpression(false/*isUnaryExpression*/,
1144 false/*isAddressofOperand*/,
1145 NotCastExpr);
1146 }
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00001147
1148 // If we parsed a cast-expression, it's really a type-id, otherwise it's
1149 // an expression.
1150 ParseAs = NotCastExpr ? SimpleExpr : CastExpr;
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00001151 }
1152
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00001153 // The current token should go after the cached tokens.
1154 Toks.push_back(Tok);
1155 // Re-enter the stored parenthesized tokens into the token stream, so we may
1156 // parse them now.
1157 PP.EnterTokenStream(Toks.data(), Toks.size(),
1158 true/*DisableMacroExpansion*/, false/*OwnsTokens*/);
1159 // Drop the current token and bring the first cached one. It's the same token
1160 // as when we entered this function.
1161 ConsumeAnyToken();
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00001162
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00001163 if (ParseAs >= CompoundLiteral) {
1164 TypeResult Ty = ParseTypeName();
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00001165
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00001166 // Match the ')'.
1167 if (Tok.is(tok::r_paren))
1168 RParenLoc = ConsumeParen();
1169 else
1170 MatchRHSPunctuation(tok::r_paren, LParenLoc);
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00001171
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00001172 if (ParseAs == CompoundLiteral) {
1173 ExprType = CompoundLiteral;
1174 return ParseCompoundLiteralExpression(Ty.get(), LParenLoc, RParenLoc);
1175 }
1176
1177 // We parsed '(' type-id ')' and the thing after it wasn't a '{'.
1178 assert(ParseAs == CastExpr);
1179
1180 if (Ty.isInvalid())
1181 return ExprError();
1182
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00001183 CastTy = Ty.get();
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00001184
1185 // Result is what ParseCastExpression returned earlier.
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00001186 if (!Result.isInvalid())
1187 Result = Actions.ActOnCastExpr(LParenLoc, CastTy, RParenLoc,move(Result));
1188 return move(Result);
1189 }
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00001190
1191 // Not a compound literal, and not followed by a cast-expression.
1192 assert(ParseAs == SimpleExpr);
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00001193
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00001194 ExprType = SimpleExpr;
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00001195 Result = ParseExpression();
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00001196 if (!Result.isInvalid() && Tok.is(tok::r_paren))
1197 Result = Actions.ActOnParenExpr(LParenLoc, Tok.getLocation(), move(Result));
1198
1199 // Match the ')'.
1200 if (Result.isInvalid()) {
1201 SkipUntil(tok::r_paren);
1202 return ExprError();
1203 }
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00001204
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00001205 if (Tok.is(tok::r_paren))
1206 RParenLoc = ConsumeParen();
1207 else
1208 MatchRHSPunctuation(tok::r_paren, LParenLoc);
1209
1210 return move(Result);
1211}