blob: ca50ef4000923bef3de9b2ec12a769fa02eba710 [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"
Douglas Gregor314b97f2009-11-10 19:49:08 +000017#include "clang/Parse/Template.h"
Douglas Gregor3f9a0562009-11-03 01:35:08 +000018#include "llvm/Support/ErrorHandling.h"
19
Reid Spencer5f016e22007-07-11 17:01:13 +000020using namespace clang;
21
Mike Stump1eb44332009-09-09 15:08:12 +000022/// \brief Parse global scope or nested-name-specifier if present.
Douglas Gregor2dd078a2009-09-02 22:59:36 +000023///
24/// Parses a C++ global scope specifier ('::') or nested-name-specifier (which
Mike Stump1eb44332009-09-09 15:08:12 +000025/// may be preceded by '::'). Note that this routine will not parse ::new or
Douglas Gregor2dd078a2009-09-02 22:59:36 +000026/// ::delete; it will just leave them in the token stream.
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +000027///
28/// '::'[opt] nested-name-specifier
29/// '::'
30///
31/// nested-name-specifier:
32/// type-name '::'
33/// namespace-name '::'
34/// nested-name-specifier identifier '::'
Douglas Gregor2dd078a2009-09-02 22:59:36 +000035/// nested-name-specifier 'template'[opt] simple-template-id '::'
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +000036///
Douglas Gregor2dd078a2009-09-02 22:59:36 +000037///
Mike Stump1eb44332009-09-09 15:08:12 +000038/// \param SS the scope specifier that will be set to the parsed
Douglas Gregor2dd078a2009-09-02 22:59:36 +000039/// nested-name-specifier (or empty)
40///
Mike Stump1eb44332009-09-09 15:08:12 +000041/// \param ObjectType if this nested-name-specifier is being parsed following
Douglas Gregor2dd078a2009-09-02 22:59:36 +000042/// the "." or "->" of a member access expression, this parameter provides the
43/// type of the object whose members are being accessed.
44///
45/// \param EnteringContext whether we will be entering into the context of
46/// the nested-name-specifier after parsing it.
47///
48/// \returns true if a scope specifier was parsed.
Douglas Gregor495c35d2009-08-25 22:51:20 +000049bool Parser::ParseOptionalCXXScopeSpecifier(CXXScopeSpec &SS,
Douglas Gregor2dd078a2009-09-02 22:59:36 +000050 Action::TypeTy *ObjectType,
Chris Lattner08d92ec2009-12-10 00:32:41 +000051 bool EnteringContext) {
Argyrios Kyrtzidis4bdd91c2008-11-26 21:41:52 +000052 assert(getLang().CPlusPlus &&
Chris Lattner7452c6f2009-01-05 01:24:05 +000053 "Call sites of this function should be guarded by checking for C++");
Mike Stump1eb44332009-09-09 15:08:12 +000054
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +000055 if (Tok.is(tok::annot_cxxscope)) {
Douglas Gregor35073692009-03-26 23:56:24 +000056 SS.setScopeRep(Tok.getAnnotationValue());
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +000057 SS.setRange(Tok.getAnnotationRange());
58 ConsumeToken();
Argyrios Kyrtzidis4bdd91c2008-11-26 21:41:52 +000059 return true;
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +000060 }
Chris Lattnere607e802009-01-04 21:14:15 +000061
Douglas Gregor39a8de12009-02-25 19:37:18 +000062 bool HasScopeSpecifier = false;
63
Chris Lattner5b454732009-01-05 03:55:46 +000064 if (Tok.is(tok::coloncolon)) {
65 // ::new and ::delete aren't nested-name-specifiers.
66 tok::TokenKind NextKind = NextToken().getKind();
67 if (NextKind == tok::kw_new || NextKind == tok::kw_delete)
68 return false;
Mike Stump1eb44332009-09-09 15:08:12 +000069
Chris Lattner55a7cef2009-01-05 00:13:00 +000070 // '::' - Global scope qualifier.
Chris Lattner357089d2009-01-05 02:07:19 +000071 SourceLocation CCLoc = ConsumeToken();
Chris Lattner357089d2009-01-05 02:07:19 +000072 SS.setBeginLoc(CCLoc);
Douglas Gregor35073692009-03-26 23:56:24 +000073 SS.setScopeRep(Actions.ActOnCXXGlobalScopeSpecifier(CurScope, CCLoc));
Chris Lattner357089d2009-01-05 02:07:19 +000074 SS.setEndLoc(CCLoc);
Douglas Gregor39a8de12009-02-25 19:37:18 +000075 HasScopeSpecifier = true;
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +000076 }
77
Douglas Gregor39a8de12009-02-25 19:37:18 +000078 while (true) {
Douglas Gregor2dd078a2009-09-02 22:59:36 +000079 if (HasScopeSpecifier) {
80 // C++ [basic.lookup.classref]p5:
81 // If the qualified-id has the form
Douglas Gregor3b6afbb2009-09-09 00:23:06 +000082 //
Douglas Gregor2dd078a2009-09-02 22:59:36 +000083 // ::class-name-or-namespace-name::...
Douglas Gregor3b6afbb2009-09-09 00:23:06 +000084 //
Douglas Gregor2dd078a2009-09-02 22:59:36 +000085 // the class-name-or-namespace-name is looked up in global scope as a
86 // class-name or namespace-name.
87 //
88 // To implement this, we clear out the object type as soon as we've
89 // seen a leading '::' or part of a nested-name-specifier.
90 ObjectType = 0;
Douglas Gregor81b747b2009-09-17 21:32:03 +000091
92 if (Tok.is(tok::code_completion)) {
93 // Code completion for a nested-name-specifier, where the code
94 // code completion token follows the '::'.
95 Actions.CodeCompleteQualifiedId(CurScope, SS, EnteringContext);
96 ConsumeToken();
97 }
Douglas Gregor2dd078a2009-09-02 22:59:36 +000098 }
Mike Stump1eb44332009-09-09 15:08:12 +000099
Douglas Gregor39a8de12009-02-25 19:37:18 +0000100 // nested-name-specifier:
Chris Lattner77cf72a2009-06-26 03:47:46 +0000101 // nested-name-specifier 'template'[opt] simple-template-id '::'
102
103 // Parse the optional 'template' keyword, then make sure we have
104 // 'identifier <' after it.
105 if (Tok.is(tok::kw_template)) {
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000106 // If we don't have a scope specifier or an object type, this isn't a
Eli Friedmaneab975d2009-08-29 04:08:08 +0000107 // nested-name-specifier, since they aren't allowed to start with
108 // 'template'.
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000109 if (!HasScopeSpecifier && !ObjectType)
Eli Friedmaneab975d2009-08-29 04:08:08 +0000110 break;
111
Douglas Gregor7bb87fc2009-11-11 16:39:34 +0000112 TentativeParsingAction TPA(*this);
Chris Lattner77cf72a2009-06-26 03:47:46 +0000113 SourceLocation TemplateKWLoc = ConsumeToken();
Douglas Gregorca1bdd72009-11-04 00:56:37 +0000114
115 UnqualifiedId TemplateName;
116 if (Tok.is(tok::identifier)) {
Douglas Gregorca1bdd72009-11-04 00:56:37 +0000117 // Consume the identifier.
Douglas Gregor7bb87fc2009-11-11 16:39:34 +0000118 TemplateName.setIdentifier(Tok.getIdentifierInfo(), Tok.getLocation());
Douglas Gregorca1bdd72009-11-04 00:56:37 +0000119 ConsumeToken();
120 } else if (Tok.is(tok::kw_operator)) {
121 if (ParseUnqualifiedIdOperator(SS, EnteringContext, ObjectType,
Douglas Gregor7bb87fc2009-11-11 16:39:34 +0000122 TemplateName)) {
123 TPA.Commit();
Douglas Gregorca1bdd72009-11-04 00:56:37 +0000124 break;
Douglas Gregor7bb87fc2009-11-11 16:39:34 +0000125 }
Douglas Gregorca1bdd72009-11-04 00:56:37 +0000126
Sean Hunte6252d12009-11-28 08:58:14 +0000127 if (TemplateName.getKind() != UnqualifiedId::IK_OperatorFunctionId &&
128 TemplateName.getKind() != UnqualifiedId::IK_LiteralOperatorId) {
Douglas Gregorca1bdd72009-11-04 00:56:37 +0000129 Diag(TemplateName.getSourceRange().getBegin(),
130 diag::err_id_after_template_in_nested_name_spec)
131 << TemplateName.getSourceRange();
Douglas Gregor7bb87fc2009-11-11 16:39:34 +0000132 TPA.Commit();
Douglas Gregorca1bdd72009-11-04 00:56:37 +0000133 break;
134 }
135 } else {
Douglas Gregor7bb87fc2009-11-11 16:39:34 +0000136 TPA.Revert();
Chris Lattner77cf72a2009-06-26 03:47:46 +0000137 break;
138 }
Mike Stump1eb44332009-09-09 15:08:12 +0000139
Douglas Gregor7bb87fc2009-11-11 16:39:34 +0000140 // If the next token is not '<', we have a qualified-id that refers
141 // to a template name, such as T::template apply, but is not a
142 // template-id.
143 if (Tok.isNot(tok::less)) {
144 TPA.Revert();
145 break;
146 }
147
148 // Commit to parsing the template-id.
149 TPA.Commit();
Mike Stump1eb44332009-09-09 15:08:12 +0000150 TemplateTy Template
Douglas Gregor014e88d2009-11-03 23:16:33 +0000151 = Actions.ActOnDependentTemplateName(TemplateKWLoc, SS, TemplateName,
Douglas Gregora481edb2009-11-20 23:39:24 +0000152 ObjectType, EnteringContext);
Eli Friedmaneab975d2009-08-29 04:08:08 +0000153 if (!Template)
154 break;
Chris Lattnerc8e27cc2009-06-26 04:27:47 +0000155 if (AnnotateTemplateIdToken(Template, TNK_Dependent_template_name,
Douglas Gregorca1bdd72009-11-04 00:56:37 +0000156 &SS, TemplateName, TemplateKWLoc, false))
Chris Lattnerc8e27cc2009-06-26 04:27:47 +0000157 break;
Mike Stump1eb44332009-09-09 15:08:12 +0000158
Chris Lattner77cf72a2009-06-26 03:47:46 +0000159 continue;
160 }
Mike Stump1eb44332009-09-09 15:08:12 +0000161
Douglas Gregor39a8de12009-02-25 19:37:18 +0000162 if (Tok.is(tok::annot_template_id) && NextToken().is(tok::coloncolon)) {
Mike Stump1eb44332009-09-09 15:08:12 +0000163 // We have
Douglas Gregor39a8de12009-02-25 19:37:18 +0000164 //
165 // simple-template-id '::'
166 //
167 // So we need to check whether the simple-template-id is of the
Douglas Gregorc45c2322009-03-31 00:43:58 +0000168 // right kind (it should name a type or be dependent), and then
169 // convert it into a type within the nested-name-specifier.
Mike Stump1eb44332009-09-09 15:08:12 +0000170 TemplateIdAnnotation *TemplateId
Douglas Gregor39a8de12009-02-25 19:37:18 +0000171 = static_cast<TemplateIdAnnotation *>(Tok.getAnnotationValue());
172
Mike Stump1eb44332009-09-09 15:08:12 +0000173 if (TemplateId->Kind == TNK_Type_template ||
Douglas Gregorc45c2322009-03-31 00:43:58 +0000174 TemplateId->Kind == TNK_Dependent_template_name) {
Douglas Gregor31a19b62009-04-01 21:51:26 +0000175 AnnotateTemplateIdTokenAsType(&SS);
Douglas Gregor39a8de12009-02-25 19:37:18 +0000176
Mike Stump1eb44332009-09-09 15:08:12 +0000177 assert(Tok.is(tok::annot_typename) &&
Douglas Gregor39a8de12009-02-25 19:37:18 +0000178 "AnnotateTemplateIdTokenAsType isn't working");
Douglas Gregor39a8de12009-02-25 19:37:18 +0000179 Token TypeToken = Tok;
180 ConsumeToken();
181 assert(Tok.is(tok::coloncolon) && "NextToken() not working properly!");
182 SourceLocation CCLoc = ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +0000183
Douglas Gregor39a8de12009-02-25 19:37:18 +0000184 if (!HasScopeSpecifier) {
185 SS.setBeginLoc(TypeToken.getLocation());
186 HasScopeSpecifier = true;
187 }
Mike Stump1eb44332009-09-09 15:08:12 +0000188
Douglas Gregor31a19b62009-04-01 21:51:26 +0000189 if (TypeToken.getAnnotationValue())
190 SS.setScopeRep(
Mike Stump1eb44332009-09-09 15:08:12 +0000191 Actions.ActOnCXXNestedNameSpecifier(CurScope, SS,
Douglas Gregor31a19b62009-04-01 21:51:26 +0000192 TypeToken.getAnnotationValue(),
193 TypeToken.getAnnotationRange(),
194 CCLoc));
195 else
196 SS.setScopeRep(0);
Douglas Gregor39a8de12009-02-25 19:37:18 +0000197 SS.setEndLoc(CCLoc);
198 continue;
Chris Lattner67b9e832009-06-26 03:45:46 +0000199 }
Mike Stump1eb44332009-09-09 15:08:12 +0000200
Chris Lattner67b9e832009-06-26 03:45:46 +0000201 assert(false && "FIXME: Only type template names supported here");
Douglas Gregor39a8de12009-02-25 19:37:18 +0000202 }
203
Chris Lattner5c7f7862009-06-26 03:52:38 +0000204
205 // The rest of the nested-name-specifier possibilities start with
206 // tok::identifier.
207 if (Tok.isNot(tok::identifier))
208 break;
209
210 IdentifierInfo &II = *Tok.getIdentifierInfo();
211
212 // nested-name-specifier:
213 // type-name '::'
214 // namespace-name '::'
215 // nested-name-specifier identifier '::'
216 Token Next = NextToken();
Chris Lattner46646492009-12-07 01:36:53 +0000217
218 // If we get foo:bar, this is almost certainly a typo for foo::bar. Recover
219 // and emit a fixit hint for it.
220 if (Next.is(tok::colon) && !ColonIsSacred &&
221 Actions.IsInvalidUnlessNestedName(CurScope, SS, II, ObjectType,
222 EnteringContext) &&
223 // If the token after the colon isn't an identifier, it's still an
224 // error, but they probably meant something else strange so don't
225 // recover like this.
226 PP.LookAhead(1).is(tok::identifier)) {
227 Diag(Next, diag::err_unexected_colon_in_nested_name_spec)
228 << CodeModificationHint::CreateReplacement(Next.getLocation(), "::");
229
230 // Recover as if the user wrote '::'.
231 Next.setKind(tok::coloncolon);
232 }
233
Chris Lattner5c7f7862009-06-26 03:52:38 +0000234 if (Next.is(tok::coloncolon)) {
235 // We have an identifier followed by a '::'. Lookup this name
236 // as the name in a nested-name-specifier.
237 SourceLocation IdLoc = ConsumeToken();
Chris Lattner46646492009-12-07 01:36:53 +0000238 assert((Tok.is(tok::coloncolon) || Tok.is(tok::colon)) &&
239 "NextToken() not working properly!");
Chris Lattner5c7f7862009-06-26 03:52:38 +0000240 SourceLocation CCLoc = ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +0000241
Chris Lattner5c7f7862009-06-26 03:52:38 +0000242 if (!HasScopeSpecifier) {
243 SS.setBeginLoc(IdLoc);
244 HasScopeSpecifier = true;
245 }
Mike Stump1eb44332009-09-09 15:08:12 +0000246
Chris Lattner5c7f7862009-06-26 03:52:38 +0000247 if (SS.isInvalid())
248 continue;
Mike Stump1eb44332009-09-09 15:08:12 +0000249
Chris Lattner5c7f7862009-06-26 03:52:38 +0000250 SS.setScopeRep(
Douglas Gregor495c35d2009-08-25 22:51:20 +0000251 Actions.ActOnCXXNestedNameSpecifier(CurScope, SS, IdLoc, CCLoc, II,
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000252 ObjectType, EnteringContext));
Chris Lattner5c7f7862009-06-26 03:52:38 +0000253 SS.setEndLoc(CCLoc);
254 continue;
255 }
Mike Stump1eb44332009-09-09 15:08:12 +0000256
Chris Lattner5c7f7862009-06-26 03:52:38 +0000257 // nested-name-specifier:
258 // type-name '<'
259 if (Next.is(tok::less)) {
260 TemplateTy Template;
Douglas Gregor014e88d2009-11-03 23:16:33 +0000261 UnqualifiedId TemplateName;
262 TemplateName.setIdentifier(&II, Tok.getLocation());
263 if (TemplateNameKind TNK = Actions.isTemplateName(CurScope, SS,
264 TemplateName,
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000265 ObjectType,
Douglas Gregor495c35d2009-08-25 22:51:20 +0000266 EnteringContext,
267 Template)) {
Chris Lattner5c7f7862009-06-26 03:52:38 +0000268 // We have found a template name, so annotate this this token
269 // with a template-id annotation. We do not permit the
270 // template-id to be translated into a type annotation,
271 // because some clients (e.g., the parsing of class template
272 // specializations) still want to see the original template-id
273 // token.
Douglas Gregorca1bdd72009-11-04 00:56:37 +0000274 ConsumeToken();
275 if (AnnotateTemplateIdToken(Template, TNK, &SS, TemplateName,
276 SourceLocation(), false))
Chris Lattnerc8e27cc2009-06-26 04:27:47 +0000277 break;
Chris Lattner5c7f7862009-06-26 03:52:38 +0000278 continue;
279 }
280 }
281
Douglas Gregor39a8de12009-02-25 19:37:18 +0000282 // We don't have any tokens that form the beginning of a
283 // nested-name-specifier, so we're done.
284 break;
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000285 }
Mike Stump1eb44332009-09-09 15:08:12 +0000286
Douglas Gregor39a8de12009-02-25 19:37:18 +0000287 return HasScopeSpecifier;
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000288}
289
290/// ParseCXXIdExpression - Handle id-expression.
291///
292/// id-expression:
293/// unqualified-id
294/// qualified-id
295///
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000296/// qualified-id:
297/// '::'[opt] nested-name-specifier 'template'[opt] unqualified-id
298/// '::' identifier
299/// '::' operator-function-id
Douglas Gregoredce4dd2009-06-30 22:34:41 +0000300/// '::' template-id
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000301///
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000302/// NOTE: The standard specifies that, for qualified-id, the parser does not
303/// expect:
304///
305/// '::' conversion-function-id
306/// '::' '~' class-name
307///
308/// This may cause a slight inconsistency on diagnostics:
309///
310/// class C {};
311/// namespace A {}
312/// void f() {
313/// :: A :: ~ C(); // Some Sema error about using destructor with a
314/// // namespace.
315/// :: ~ C(); // Some Parser error like 'unexpected ~'.
316/// }
317///
318/// We simplify the parser a bit and make it work like:
319///
320/// qualified-id:
321/// '::'[opt] nested-name-specifier 'template'[opt] unqualified-id
322/// '::' unqualified-id
323///
324/// That way Sema can handle and report similar errors for namespaces and the
325/// global scope.
326///
Sebastian Redlebc07d52009-02-03 20:19:35 +0000327/// The isAddressOfOperand parameter indicates that this id-expression is a
328/// direct operand of the address-of operator. This is, besides member contexts,
329/// the only place where a qualified-id naming a non-static class member may
330/// appear.
331///
332Parser::OwningExprResult Parser::ParseCXXIdExpression(bool isAddressOfOperand) {
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000333 // qualified-id:
334 // '::'[opt] nested-name-specifier 'template'[opt] unqualified-id
335 // '::' unqualified-id
336 //
337 CXXScopeSpec SS;
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000338 ParseOptionalCXXScopeSpecifier(SS, /*ObjectType=*/0, false);
Douglas Gregor02a24ee2009-11-03 16:56:39 +0000339
340 UnqualifiedId Name;
341 if (ParseUnqualifiedId(SS,
342 /*EnteringContext=*/false,
343 /*AllowDestructorName=*/false,
344 /*AllowConstructorName=*/false,
Douglas Gregor2d1c2142009-11-03 19:44:04 +0000345 /*ObjectType=*/0,
Douglas Gregor02a24ee2009-11-03 16:56:39 +0000346 Name))
347 return ExprError();
John McCallb681b612009-11-22 02:49:43 +0000348
349 // This is only the direct operand of an & operator if it is not
350 // followed by a postfix-expression suffix.
351 if (isAddressOfOperand) {
352 switch (Tok.getKind()) {
353 case tok::l_square:
354 case tok::l_paren:
355 case tok::arrow:
356 case tok::period:
357 case tok::plusplus:
358 case tok::minusminus:
359 isAddressOfOperand = false;
360 break;
361
362 default:
363 break;
364 }
365 }
Douglas Gregor02a24ee2009-11-03 16:56:39 +0000366
367 return Actions.ActOnIdExpression(CurScope, SS, Name, Tok.is(tok::l_paren),
368 isAddressOfOperand);
369
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000370}
371
Reid Spencer5f016e22007-07-11 17:01:13 +0000372/// ParseCXXCasts - This handles the various ways to cast expressions to another
373/// type.
374///
375/// postfix-expression: [C++ 5.2p1]
376/// 'dynamic_cast' '<' type-name '>' '(' expression ')'
377/// 'static_cast' '<' type-name '>' '(' expression ')'
378/// 'reinterpret_cast' '<' type-name '>' '(' expression ')'
379/// 'const_cast' '<' type-name '>' '(' expression ')'
380///
Sebastian Redl20df9b72008-12-11 22:51:44 +0000381Parser::OwningExprResult Parser::ParseCXXCasts() {
Reid Spencer5f016e22007-07-11 17:01:13 +0000382 tok::TokenKind Kind = Tok.getKind();
383 const char *CastName = 0; // For error messages
384
385 switch (Kind) {
386 default: assert(0 && "Unknown C++ cast!"); abort();
387 case tok::kw_const_cast: CastName = "const_cast"; break;
388 case tok::kw_dynamic_cast: CastName = "dynamic_cast"; break;
389 case tok::kw_reinterpret_cast: CastName = "reinterpret_cast"; break;
390 case tok::kw_static_cast: CastName = "static_cast"; break;
391 }
392
393 SourceLocation OpLoc = ConsumeToken();
394 SourceLocation LAngleBracketLoc = Tok.getLocation();
395
396 if (ExpectAndConsume(tok::less, diag::err_expected_less_after, CastName))
Sebastian Redl20df9b72008-12-11 22:51:44 +0000397 return ExprError();
Reid Spencer5f016e22007-07-11 17:01:13 +0000398
Douglas Gregor809070a2009-02-18 17:45:20 +0000399 TypeResult CastTy = ParseTypeName();
Reid Spencer5f016e22007-07-11 17:01:13 +0000400 SourceLocation RAngleBracketLoc = Tok.getLocation();
401
Chris Lattner1ab3b962008-11-18 07:48:38 +0000402 if (ExpectAndConsume(tok::greater, diag::err_expected_greater))
Sebastian Redl20df9b72008-12-11 22:51:44 +0000403 return ExprError(Diag(LAngleBracketLoc, diag::note_matching) << "<");
Reid Spencer5f016e22007-07-11 17:01:13 +0000404
405 SourceLocation LParenLoc = Tok.getLocation(), RParenLoc;
406
Argyrios Kyrtzidis21e7ad22009-05-22 10:23:16 +0000407 if (ExpectAndConsume(tok::l_paren, diag::err_expected_lparen_after, CastName))
408 return ExprError();
Reid Spencer5f016e22007-07-11 17:01:13 +0000409
Argyrios Kyrtzidis21e7ad22009-05-22 10:23:16 +0000410 OwningExprResult Result = ParseExpression();
Mike Stump1eb44332009-09-09 15:08:12 +0000411
Argyrios Kyrtzidis21e7ad22009-05-22 10:23:16 +0000412 // Match the ')'.
Douglas Gregor27591ff2009-11-06 05:48:00 +0000413 RParenLoc = MatchRHSPunctuation(tok::r_paren, LParenLoc);
Reid Spencer5f016e22007-07-11 17:01:13 +0000414
Douglas Gregor809070a2009-02-18 17:45:20 +0000415 if (!Result.isInvalid() && !CastTy.isInvalid())
Douglas Gregor49badde2008-10-27 19:41:14 +0000416 Result = Actions.ActOnCXXNamedCast(OpLoc, Kind,
Sebastian Redlf53597f2009-03-15 17:47:39 +0000417 LAngleBracketLoc, CastTy.get(),
Douglas Gregor809070a2009-02-18 17:45:20 +0000418 RAngleBracketLoc,
Sebastian Redlf53597f2009-03-15 17:47:39 +0000419 LParenLoc, move(Result), RParenLoc);
Reid Spencer5f016e22007-07-11 17:01:13 +0000420
Sebastian Redl20df9b72008-12-11 22:51:44 +0000421 return move(Result);
Reid Spencer5f016e22007-07-11 17:01:13 +0000422}
423
Sebastian Redlc42e1182008-11-11 11:37:55 +0000424/// ParseCXXTypeid - This handles the C++ typeid expression.
425///
426/// postfix-expression: [C++ 5.2p1]
427/// 'typeid' '(' expression ')'
428/// 'typeid' '(' type-id ')'
429///
Sebastian Redl20df9b72008-12-11 22:51:44 +0000430Parser::OwningExprResult Parser::ParseCXXTypeid() {
Sebastian Redlc42e1182008-11-11 11:37:55 +0000431 assert(Tok.is(tok::kw_typeid) && "Not 'typeid'!");
432
433 SourceLocation OpLoc = ConsumeToken();
434 SourceLocation LParenLoc = Tok.getLocation();
435 SourceLocation RParenLoc;
436
437 // typeid expressions are always parenthesized.
438 if (ExpectAndConsume(tok::l_paren, diag::err_expected_lparen_after,
439 "typeid"))
Sebastian Redl20df9b72008-12-11 22:51:44 +0000440 return ExprError();
Sebastian Redlc42e1182008-11-11 11:37:55 +0000441
Sebastian Redl15faa7f2008-12-09 20:22:58 +0000442 OwningExprResult Result(Actions);
Sebastian Redlc42e1182008-11-11 11:37:55 +0000443
444 if (isTypeIdInParens()) {
Douglas Gregor809070a2009-02-18 17:45:20 +0000445 TypeResult Ty = ParseTypeName();
Sebastian Redlc42e1182008-11-11 11:37:55 +0000446
447 // Match the ')'.
448 MatchRHSPunctuation(tok::r_paren, LParenLoc);
449
Douglas Gregor809070a2009-02-18 17:45:20 +0000450 if (Ty.isInvalid())
Sebastian Redl20df9b72008-12-11 22:51:44 +0000451 return ExprError();
Sebastian Redlc42e1182008-11-11 11:37:55 +0000452
453 Result = Actions.ActOnCXXTypeid(OpLoc, LParenLoc, /*isType=*/true,
Douglas Gregor809070a2009-02-18 17:45:20 +0000454 Ty.get(), RParenLoc);
Sebastian Redlc42e1182008-11-11 11:37:55 +0000455 } else {
Douglas Gregore0762c92009-06-19 23:52:42 +0000456 // C++0x [expr.typeid]p3:
Mike Stump1eb44332009-09-09 15:08:12 +0000457 // When typeid is applied to an expression other than an lvalue of a
458 // polymorphic class type [...] The expression is an unevaluated
Douglas Gregore0762c92009-06-19 23:52:42 +0000459 // operand (Clause 5).
460 //
Mike Stump1eb44332009-09-09 15:08:12 +0000461 // Note that we can't tell whether the expression is an lvalue of a
Douglas Gregore0762c92009-06-19 23:52:42 +0000462 // polymorphic class type until after we've parsed the expression, so
Douglas Gregorac7610d2009-06-22 20:57:11 +0000463 // we the expression is potentially potentially evaluated.
464 EnterExpressionEvaluationContext Unevaluated(Actions,
465 Action::PotentiallyPotentiallyEvaluated);
Sebastian Redlc42e1182008-11-11 11:37:55 +0000466 Result = ParseExpression();
467
468 // Match the ')'.
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000469 if (Result.isInvalid())
Sebastian Redlc42e1182008-11-11 11:37:55 +0000470 SkipUntil(tok::r_paren);
471 else {
472 MatchRHSPunctuation(tok::r_paren, LParenLoc);
473
474 Result = Actions.ActOnCXXTypeid(OpLoc, LParenLoc, /*isType=*/false,
Sebastian Redleffa8d12008-12-10 00:02:53 +0000475 Result.release(), RParenLoc);
Sebastian Redlc42e1182008-11-11 11:37:55 +0000476 }
477 }
478
Sebastian Redl20df9b72008-12-11 22:51:44 +0000479 return move(Result);
Sebastian Redlc42e1182008-11-11 11:37:55 +0000480}
481
Reid Spencer5f016e22007-07-11 17:01:13 +0000482/// ParseCXXBoolLiteral - This handles the C++ Boolean literals.
483///
484/// boolean-literal: [C++ 2.13.5]
485/// 'true'
486/// 'false'
Sebastian Redl20df9b72008-12-11 22:51:44 +0000487Parser::OwningExprResult Parser::ParseCXXBoolLiteral() {
Reid Spencer5f016e22007-07-11 17:01:13 +0000488 tok::TokenKind Kind = Tok.getKind();
Sebastian Redlf53597f2009-03-15 17:47:39 +0000489 return Actions.ActOnCXXBoolLiteral(ConsumeToken(), Kind);
Reid Spencer5f016e22007-07-11 17:01:13 +0000490}
Chris Lattner50dd2892008-02-26 00:51:44 +0000491
492/// ParseThrowExpression - This handles the C++ throw expression.
493///
494/// throw-expression: [C++ 15]
495/// 'throw' assignment-expression[opt]
Sebastian Redl20df9b72008-12-11 22:51:44 +0000496Parser::OwningExprResult Parser::ParseThrowExpression() {
Chris Lattner50dd2892008-02-26 00:51:44 +0000497 assert(Tok.is(tok::kw_throw) && "Not throw!");
Chris Lattner50dd2892008-02-26 00:51:44 +0000498 SourceLocation ThrowLoc = ConsumeToken(); // Eat the throw token.
Sebastian Redl20df9b72008-12-11 22:51:44 +0000499
Chris Lattner2a2819a2008-04-06 06:02:23 +0000500 // If the current token isn't the start of an assignment-expression,
501 // then the expression is not present. This handles things like:
502 // "C ? throw : (void)42", which is crazy but legal.
503 switch (Tok.getKind()) { // FIXME: move this predicate somewhere common.
504 case tok::semi:
505 case tok::r_paren:
506 case tok::r_square:
507 case tok::r_brace:
508 case tok::colon:
509 case tok::comma:
Sebastian Redlf53597f2009-03-15 17:47:39 +0000510 return Actions.ActOnCXXThrow(ThrowLoc, ExprArg(Actions));
Chris Lattner50dd2892008-02-26 00:51:44 +0000511
Chris Lattner2a2819a2008-04-06 06:02:23 +0000512 default:
Sebastian Redl2f7ece72008-12-11 21:36:32 +0000513 OwningExprResult Expr(ParseAssignmentExpression());
Sebastian Redl20df9b72008-12-11 22:51:44 +0000514 if (Expr.isInvalid()) return move(Expr);
Sebastian Redlf53597f2009-03-15 17:47:39 +0000515 return Actions.ActOnCXXThrow(ThrowLoc, move(Expr));
Chris Lattner2a2819a2008-04-06 06:02:23 +0000516 }
Chris Lattner50dd2892008-02-26 00:51:44 +0000517}
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +0000518
519/// ParseCXXThis - This handles the C++ 'this' pointer.
520///
521/// C++ 9.3.2: In the body of a non-static member function, the keyword this is
522/// a non-lvalue expression whose value is the address of the object for which
523/// the function is called.
Sebastian Redl20df9b72008-12-11 22:51:44 +0000524Parser::OwningExprResult Parser::ParseCXXThis() {
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +0000525 assert(Tok.is(tok::kw_this) && "Not 'this'!");
526 SourceLocation ThisLoc = ConsumeToken();
Sebastian Redlf53597f2009-03-15 17:47:39 +0000527 return Actions.ActOnCXXThis(ThisLoc);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +0000528}
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000529
530/// ParseCXXTypeConstructExpression - Parse construction of a specified type.
531/// Can be interpreted either as function-style casting ("int(x)")
532/// or class type construction ("ClassType(x,y,z)")
533/// or creation of a value-initialized type ("int()").
534///
535/// postfix-expression: [C++ 5.2p1]
536/// simple-type-specifier '(' expression-list[opt] ')' [C++ 5.2.3]
537/// typename-specifier '(' expression-list[opt] ')' [TODO]
538///
Sebastian Redl20df9b72008-12-11 22:51:44 +0000539Parser::OwningExprResult
540Parser::ParseCXXTypeConstructExpression(const DeclSpec &DS) {
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000541 Declarator DeclaratorInfo(DS, Declarator::TypeNameContext);
Douglas Gregor5ac8aff2009-01-26 22:44:13 +0000542 TypeTy *TypeRep = Actions.ActOnTypeName(CurScope, DeclaratorInfo).get();
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000543
544 assert(Tok.is(tok::l_paren) && "Expected '('!");
545 SourceLocation LParenLoc = ConsumeParen();
546
Sebastian Redla55e52c2008-11-25 22:21:31 +0000547 ExprVector Exprs(Actions);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000548 CommaLocsTy CommaLocs;
549
550 if (Tok.isNot(tok::r_paren)) {
551 if (ParseExpressionList(Exprs, CommaLocs)) {
552 SkipUntil(tok::r_paren);
Sebastian Redl20df9b72008-12-11 22:51:44 +0000553 return ExprError();
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000554 }
555 }
556
557 // Match the ')'.
558 SourceLocation RParenLoc = MatchRHSPunctuation(tok::r_paren, LParenLoc);
559
Sebastian Redlef0cb8e2009-07-29 13:50:23 +0000560 // TypeRep could be null, if it references an invalid typedef.
561 if (!TypeRep)
562 return ExprError();
563
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000564 assert((Exprs.size() == 0 || Exprs.size()-1 == CommaLocs.size())&&
565 "Unexpected number of commas!");
Sebastian Redlf53597f2009-03-15 17:47:39 +0000566 return Actions.ActOnCXXTypeConstructExpr(DS.getSourceRange(), TypeRep,
567 LParenLoc, move_arg(Exprs),
Jay Foadbeaaccd2009-05-21 09:52:38 +0000568 CommaLocs.data(), RParenLoc);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000569}
570
Douglas Gregor99e9b4d2009-11-25 00:27:52 +0000571/// ParseCXXCondition - if/switch/while condition expression.
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +0000572///
573/// condition:
574/// expression
575/// type-specifier-seq declarator '=' assignment-expression
576/// [GNU] type-specifier-seq declarator simple-asm-expr[opt] attributes[opt]
577/// '=' assignment-expression
578///
Douglas Gregor99e9b4d2009-11-25 00:27:52 +0000579/// \param ExprResult if the condition was parsed as an expression, the
580/// parsed expression.
581///
582/// \param DeclResult if the condition was parsed as a declaration, the
583/// parsed declaration.
584///
585/// \returns true if there was a parsing, false otherwise.
586bool Parser::ParseCXXCondition(OwningExprResult &ExprResult,
587 DeclPtrTy &DeclResult) {
Douglas Gregor01dfea02010-01-10 23:08:15 +0000588 if (Tok.is(tok::code_completion)) {
589 Actions.CodeCompleteOrdinaryName(CurScope, Action::CCC_Condition);
590 ConsumeToken();
591 }
592
Douglas Gregor99e9b4d2009-11-25 00:27:52 +0000593 if (!isCXXConditionDeclaration()) {
594 ExprResult = ParseExpression(); // expression
595 DeclResult = DeclPtrTy();
596 return ExprResult.isInvalid();
597 }
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +0000598
599 // type-specifier-seq
600 DeclSpec DS;
601 ParseSpecifierQualifierList(DS);
602
603 // declarator
604 Declarator DeclaratorInfo(DS, Declarator::ConditionContext);
605 ParseDeclarator(DeclaratorInfo);
606
607 // simple-asm-expr[opt]
608 if (Tok.is(tok::kw_asm)) {
Sebastian Redlab197ba2009-02-09 18:23:29 +0000609 SourceLocation Loc;
610 OwningExprResult AsmLabel(ParseSimpleAsm(&Loc));
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000611 if (AsmLabel.isInvalid()) {
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +0000612 SkipUntil(tok::semi);
Douglas Gregor99e9b4d2009-11-25 00:27:52 +0000613 return true;
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +0000614 }
Sebastian Redleffa8d12008-12-10 00:02:53 +0000615 DeclaratorInfo.setAsmLabel(AsmLabel.release());
Sebastian Redlab197ba2009-02-09 18:23:29 +0000616 DeclaratorInfo.SetRangeEnd(Loc);
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +0000617 }
618
619 // If attributes are present, parse them.
Sebastian Redlab197ba2009-02-09 18:23:29 +0000620 if (Tok.is(tok::kw___attribute)) {
621 SourceLocation Loc;
Sean Huntbbd37c62009-11-21 08:43:09 +0000622 AttributeList *AttrList = ParseGNUAttributes(&Loc);
Sebastian Redlab197ba2009-02-09 18:23:29 +0000623 DeclaratorInfo.AddAttributes(AttrList, Loc);
624 }
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +0000625
Douglas Gregor99e9b4d2009-11-25 00:27:52 +0000626 // Type-check the declaration itself.
627 Action::DeclResult Dcl = Actions.ActOnCXXConditionDeclaration(CurScope,
628 DeclaratorInfo);
629 DeclResult = Dcl.get();
630 ExprResult = ExprError();
631
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +0000632 // '=' assignment-expression
Douglas Gregor99e9b4d2009-11-25 00:27:52 +0000633 if (Tok.is(tok::equal)) {
634 SourceLocation EqualLoc = ConsumeToken();
635 OwningExprResult AssignExpr(ParseAssignmentExpression());
636 if (!AssignExpr.isInvalid())
637 Actions.AddInitializerToDecl(DeclResult, move(AssignExpr));
638 } else {
639 // FIXME: C++0x allows a braced-init-list
640 Diag(Tok, diag::err_expected_equal_after_declarator);
641 }
642
643 return false;
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +0000644}
645
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000646/// ParseCXXSimpleTypeSpecifier - [C++ 7.1.5.2] Simple type specifiers.
647/// This should only be called when the current token is known to be part of
648/// simple-type-specifier.
649///
650/// simple-type-specifier:
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000651/// '::'[opt] nested-name-specifier[opt] type-name
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000652/// '::'[opt] nested-name-specifier 'template' simple-template-id [TODO]
653/// char
654/// wchar_t
655/// bool
656/// short
657/// int
658/// long
659/// signed
660/// unsigned
661/// float
662/// double
663/// void
664/// [GNU] typeof-specifier
665/// [C++0x] auto [TODO]
666///
667/// type-name:
668/// class-name
669/// enum-name
670/// typedef-name
671///
672void Parser::ParseCXXSimpleTypeSpecifier(DeclSpec &DS) {
673 DS.SetRangeStart(Tok.getLocation());
674 const char *PrevSpec;
John McCallfec54012009-08-03 20:12:06 +0000675 unsigned DiagID;
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000676 SourceLocation Loc = Tok.getLocation();
Mike Stump1eb44332009-09-09 15:08:12 +0000677
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000678 switch (Tok.getKind()) {
Chris Lattner55a7cef2009-01-05 00:13:00 +0000679 case tok::identifier: // foo::bar
680 case tok::coloncolon: // ::foo::bar
681 assert(0 && "Annotation token should already be formed!");
Mike Stump1eb44332009-09-09 15:08:12 +0000682 default:
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000683 assert(0 && "Not a simple-type-specifier token!");
684 abort();
Chris Lattner55a7cef2009-01-05 00:13:00 +0000685
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000686 // type-name
Chris Lattnerb31757b2009-01-06 05:06:21 +0000687 case tok::annot_typename: {
John McCallfec54012009-08-03 20:12:06 +0000688 DS.SetTypeSpecType(DeclSpec::TST_typename, Loc, PrevSpec, DiagID,
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000689 Tok.getAnnotationValue());
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000690 break;
691 }
Mike Stump1eb44332009-09-09 15:08:12 +0000692
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000693 // builtin types
694 case tok::kw_short:
John McCallfec54012009-08-03 20:12:06 +0000695 DS.SetTypeSpecWidth(DeclSpec::TSW_short, Loc, PrevSpec, DiagID);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000696 break;
697 case tok::kw_long:
John McCallfec54012009-08-03 20:12:06 +0000698 DS.SetTypeSpecWidth(DeclSpec::TSW_long, Loc, PrevSpec, DiagID);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000699 break;
700 case tok::kw_signed:
John McCallfec54012009-08-03 20:12:06 +0000701 DS.SetTypeSpecSign(DeclSpec::TSS_signed, Loc, PrevSpec, DiagID);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000702 break;
703 case tok::kw_unsigned:
John McCallfec54012009-08-03 20:12:06 +0000704 DS.SetTypeSpecSign(DeclSpec::TSS_unsigned, Loc, PrevSpec, DiagID);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000705 break;
706 case tok::kw_void:
John McCallfec54012009-08-03 20:12:06 +0000707 DS.SetTypeSpecType(DeclSpec::TST_void, Loc, PrevSpec, DiagID);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000708 break;
709 case tok::kw_char:
John McCallfec54012009-08-03 20:12:06 +0000710 DS.SetTypeSpecType(DeclSpec::TST_char, Loc, PrevSpec, DiagID);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000711 break;
712 case tok::kw_int:
John McCallfec54012009-08-03 20:12:06 +0000713 DS.SetTypeSpecType(DeclSpec::TST_int, Loc, PrevSpec, DiagID);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000714 break;
715 case tok::kw_float:
John McCallfec54012009-08-03 20:12:06 +0000716 DS.SetTypeSpecType(DeclSpec::TST_float, Loc, PrevSpec, DiagID);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000717 break;
718 case tok::kw_double:
John McCallfec54012009-08-03 20:12:06 +0000719 DS.SetTypeSpecType(DeclSpec::TST_double, Loc, PrevSpec, DiagID);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000720 break;
721 case tok::kw_wchar_t:
John McCallfec54012009-08-03 20:12:06 +0000722 DS.SetTypeSpecType(DeclSpec::TST_wchar, Loc, PrevSpec, DiagID);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000723 break;
Alisdair Meredithf5c209d2009-07-14 06:30:34 +0000724 case tok::kw_char16_t:
John McCallfec54012009-08-03 20:12:06 +0000725 DS.SetTypeSpecType(DeclSpec::TST_char16, Loc, PrevSpec, DiagID);
Alisdair Meredithf5c209d2009-07-14 06:30:34 +0000726 break;
727 case tok::kw_char32_t:
John McCallfec54012009-08-03 20:12:06 +0000728 DS.SetTypeSpecType(DeclSpec::TST_char32, Loc, PrevSpec, DiagID);
Alisdair Meredithf5c209d2009-07-14 06:30:34 +0000729 break;
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000730 case tok::kw_bool:
John McCallfec54012009-08-03 20:12:06 +0000731 DS.SetTypeSpecType(DeclSpec::TST_bool, Loc, PrevSpec, DiagID);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000732 break;
Mike Stump1eb44332009-09-09 15:08:12 +0000733
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000734 // GNU typeof support.
735 case tok::kw_typeof:
736 ParseTypeofSpecifier(DS);
Douglas Gregor9b3064b2009-04-01 22:41:11 +0000737 DS.Finish(Diags, PP);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000738 return;
739 }
Chris Lattnerb31757b2009-01-06 05:06:21 +0000740 if (Tok.is(tok::annot_typename))
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000741 DS.SetRangeEnd(Tok.getAnnotationEndLoc());
742 else
743 DS.SetRangeEnd(Tok.getLocation());
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000744 ConsumeToken();
Douglas Gregor9b3064b2009-04-01 22:41:11 +0000745 DS.Finish(Diags, PP);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000746}
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +0000747
Douglas Gregor2f1bc522008-11-07 20:08:42 +0000748/// ParseCXXTypeSpecifierSeq - Parse a C++ type-specifier-seq (C++
749/// [dcl.name]), which is a non-empty sequence of type-specifiers,
750/// e.g., "const short int". Note that the DeclSpec is *not* finished
751/// by parsing the type-specifier-seq, because these sequences are
752/// typically followed by some form of declarator. Returns true and
753/// emits diagnostics if this is not a type-specifier-seq, false
754/// otherwise.
755///
756/// type-specifier-seq: [C++ 8.1]
757/// type-specifier type-specifier-seq[opt]
758///
759bool Parser::ParseCXXTypeSpecifierSeq(DeclSpec &DS) {
760 DS.SetRangeStart(Tok.getLocation());
761 const char *PrevSpec = 0;
John McCallfec54012009-08-03 20:12:06 +0000762 unsigned DiagID;
763 bool isInvalid = 0;
Douglas Gregor2f1bc522008-11-07 20:08:42 +0000764
765 // Parse one or more of the type specifiers.
John McCallfec54012009-08-03 20:12:06 +0000766 if (!ParseOptionalTypeSpecifier(DS, isInvalid, PrevSpec, DiagID)) {
Chris Lattner1ab3b962008-11-18 07:48:38 +0000767 Diag(Tok, diag::err_operator_missing_type_specifier);
Douglas Gregor2f1bc522008-11-07 20:08:42 +0000768 return true;
769 }
Mike Stump1eb44332009-09-09 15:08:12 +0000770
John McCallfec54012009-08-03 20:12:06 +0000771 while (ParseOptionalTypeSpecifier(DS, isInvalid, PrevSpec, DiagID)) ;
Douglas Gregor2f1bc522008-11-07 20:08:42 +0000772
773 return false;
774}
775
Douglas Gregor3f9a0562009-11-03 01:35:08 +0000776/// \brief Finish parsing a C++ unqualified-id that is a template-id of
777/// some form.
778///
779/// This routine is invoked when a '<' is encountered after an identifier or
780/// operator-function-id is parsed by \c ParseUnqualifiedId() to determine
781/// whether the unqualified-id is actually a template-id. This routine will
782/// then parse the template arguments and form the appropriate template-id to
783/// return to the caller.
784///
785/// \param SS the nested-name-specifier that precedes this template-id, if
786/// we're actually parsing a qualified-id.
787///
788/// \param Name for constructor and destructor names, this is the actual
789/// identifier that may be a template-name.
790///
791/// \param NameLoc the location of the class-name in a constructor or
792/// destructor.
793///
794/// \param EnteringContext whether we're entering the scope of the
795/// nested-name-specifier.
796///
Douglas Gregor46df8cc2009-11-03 21:24:04 +0000797/// \param ObjectType if this unqualified-id occurs within a member access
798/// expression, the type of the base object whose member is being accessed.
799///
Douglas Gregor3f9a0562009-11-03 01:35:08 +0000800/// \param Id as input, describes the template-name or operator-function-id
801/// that precedes the '<'. If template arguments were parsed successfully,
802/// will be updated with the template-id.
803///
804/// \returns true if a parse error occurred, false otherwise.
805bool Parser::ParseUnqualifiedIdTemplateId(CXXScopeSpec &SS,
806 IdentifierInfo *Name,
807 SourceLocation NameLoc,
808 bool EnteringContext,
Douglas Gregor2d1c2142009-11-03 19:44:04 +0000809 TypeTy *ObjectType,
Douglas Gregor3f9a0562009-11-03 01:35:08 +0000810 UnqualifiedId &Id) {
811 assert(Tok.is(tok::less) && "Expected '<' to finish parsing a template-id");
812
813 TemplateTy Template;
814 TemplateNameKind TNK = TNK_Non_template;
815 switch (Id.getKind()) {
816 case UnqualifiedId::IK_Identifier:
Douglas Gregor014e88d2009-11-03 23:16:33 +0000817 case UnqualifiedId::IK_OperatorFunctionId:
Sean Hunte6252d12009-11-28 08:58:14 +0000818 case UnqualifiedId::IK_LiteralOperatorId:
Douglas Gregor014e88d2009-11-03 23:16:33 +0000819 TNK = Actions.isTemplateName(CurScope, SS, Id, ObjectType, EnteringContext,
820 Template);
Douglas Gregor3f9a0562009-11-03 01:35:08 +0000821 break;
822
Douglas Gregor014e88d2009-11-03 23:16:33 +0000823 case UnqualifiedId::IK_ConstructorName: {
824 UnqualifiedId TemplateName;
825 TemplateName.setIdentifier(Name, NameLoc);
826 TNK = Actions.isTemplateName(CurScope, SS, TemplateName, ObjectType,
827 EnteringContext, Template);
Douglas Gregor3f9a0562009-11-03 01:35:08 +0000828 break;
829 }
830
Douglas Gregor014e88d2009-11-03 23:16:33 +0000831 case UnqualifiedId::IK_DestructorName: {
832 UnqualifiedId TemplateName;
833 TemplateName.setIdentifier(Name, NameLoc);
Douglas Gregor2d1c2142009-11-03 19:44:04 +0000834 if (ObjectType) {
Douglas Gregor014e88d2009-11-03 23:16:33 +0000835 Template = Actions.ActOnDependentTemplateName(SourceLocation(), SS,
Douglas Gregora481edb2009-11-20 23:39:24 +0000836 TemplateName, ObjectType,
837 EnteringContext);
Douglas Gregor2d1c2142009-11-03 19:44:04 +0000838 TNK = TNK_Dependent_template_name;
839 if (!Template.get())
840 return true;
841 } else {
Douglas Gregor014e88d2009-11-03 23:16:33 +0000842 TNK = Actions.isTemplateName(CurScope, SS, TemplateName, ObjectType,
Douglas Gregor2d1c2142009-11-03 19:44:04 +0000843 EnteringContext, Template);
844
845 if (TNK == TNK_Non_template && Id.DestructorName == 0) {
846 // The identifier following the destructor did not refer to a template
847 // or to a type. Complain.
848 if (ObjectType)
849 Diag(NameLoc, diag::err_ident_in_pseudo_dtor_not_a_type)
850 << Name;
851 else
852 Diag(NameLoc, diag::err_destructor_class_name);
853 return true;
854 }
855 }
Douglas Gregor3f9a0562009-11-03 01:35:08 +0000856 break;
Douglas Gregor014e88d2009-11-03 23:16:33 +0000857 }
Douglas Gregor3f9a0562009-11-03 01:35:08 +0000858
859 default:
860 return false;
861 }
862
863 if (TNK == TNK_Non_template)
864 return false;
865
866 // Parse the enclosed template argument list.
867 SourceLocation LAngleLoc, RAngleLoc;
868 TemplateArgList TemplateArgs;
Douglas Gregor3f9a0562009-11-03 01:35:08 +0000869 if (ParseTemplateIdAfterTemplateName(Template, Id.StartLocation,
870 &SS, true, LAngleLoc,
871 TemplateArgs,
Douglas Gregor3f9a0562009-11-03 01:35:08 +0000872 RAngleLoc))
873 return true;
874
875 if (Id.getKind() == UnqualifiedId::IK_Identifier ||
Sean Hunte6252d12009-11-28 08:58:14 +0000876 Id.getKind() == UnqualifiedId::IK_OperatorFunctionId ||
877 Id.getKind() == UnqualifiedId::IK_LiteralOperatorId) {
Douglas Gregor3f9a0562009-11-03 01:35:08 +0000878 // Form a parsed representation of the template-id to be stored in the
879 // UnqualifiedId.
880 TemplateIdAnnotation *TemplateId
881 = TemplateIdAnnotation::Allocate(TemplateArgs.size());
882
883 if (Id.getKind() == UnqualifiedId::IK_Identifier) {
884 TemplateId->Name = Id.Identifier;
Douglas Gregor014e88d2009-11-03 23:16:33 +0000885 TemplateId->Operator = OO_None;
Douglas Gregor3f9a0562009-11-03 01:35:08 +0000886 TemplateId->TemplateNameLoc = Id.StartLocation;
887 } else {
Douglas Gregor014e88d2009-11-03 23:16:33 +0000888 TemplateId->Name = 0;
889 TemplateId->Operator = Id.OperatorFunctionId.Operator;
890 TemplateId->TemplateNameLoc = Id.StartLocation;
Douglas Gregor3f9a0562009-11-03 01:35:08 +0000891 }
892
893 TemplateId->Template = Template.getAs<void*>();
894 TemplateId->Kind = TNK;
895 TemplateId->LAngleLoc = LAngleLoc;
896 TemplateId->RAngleLoc = RAngleLoc;
Douglas Gregor314b97f2009-11-10 19:49:08 +0000897 ParsedTemplateArgument *Args = TemplateId->getTemplateArgs();
Douglas Gregor3f9a0562009-11-03 01:35:08 +0000898 for (unsigned Arg = 0, ArgEnd = TemplateArgs.size();
Douglas Gregor314b97f2009-11-10 19:49:08 +0000899 Arg != ArgEnd; ++Arg)
Douglas Gregor3f9a0562009-11-03 01:35:08 +0000900 Args[Arg] = TemplateArgs[Arg];
Douglas Gregor3f9a0562009-11-03 01:35:08 +0000901
902 Id.setTemplateId(TemplateId);
903 return false;
904 }
905
906 // Bundle the template arguments together.
907 ASTTemplateArgsPtr TemplateArgsPtr(Actions, TemplateArgs.data(),
Douglas Gregor3f9a0562009-11-03 01:35:08 +0000908 TemplateArgs.size());
909
910 // Constructor and destructor names.
911 Action::TypeResult Type
912 = Actions.ActOnTemplateIdType(Template, NameLoc,
913 LAngleLoc, TemplateArgsPtr,
Douglas Gregor3f9a0562009-11-03 01:35:08 +0000914 RAngleLoc);
915 if (Type.isInvalid())
916 return true;
917
918 if (Id.getKind() == UnqualifiedId::IK_ConstructorName)
919 Id.setConstructorName(Type.get(), NameLoc, RAngleLoc);
920 else
921 Id.setDestructorName(Id.StartLocation, Type.get(), RAngleLoc);
922
923 return false;
924}
925
Douglas Gregorca1bdd72009-11-04 00:56:37 +0000926/// \brief Parse an operator-function-id or conversion-function-id as part
927/// of a C++ unqualified-id.
928///
929/// This routine is responsible only for parsing the operator-function-id or
930/// conversion-function-id; it does not handle template arguments in any way.
Douglas Gregor3f9a0562009-11-03 01:35:08 +0000931///
932/// \code
Douglas Gregor3f9a0562009-11-03 01:35:08 +0000933/// operator-function-id: [C++ 13.5]
934/// 'operator' operator
935///
Douglas Gregorca1bdd72009-11-04 00:56:37 +0000936/// operator: one of
Douglas Gregor3f9a0562009-11-03 01:35:08 +0000937/// new delete new[] delete[]
938/// + - * / % ^ & | ~
939/// ! = < > += -= *= /= %=
940/// ^= &= |= << >> >>= <<= == !=
941/// <= >= && || ++ -- , ->* ->
942/// () []
943///
944/// conversion-function-id: [C++ 12.3.2]
945/// operator conversion-type-id
946///
947/// conversion-type-id:
948/// type-specifier-seq conversion-declarator[opt]
949///
950/// conversion-declarator:
951/// ptr-operator conversion-declarator[opt]
952/// \endcode
953///
954/// \param The nested-name-specifier that preceded this unqualified-id. If
955/// non-empty, then we are parsing the unqualified-id of a qualified-id.
956///
957/// \param EnteringContext whether we are entering the scope of the
958/// nested-name-specifier.
959///
Douglas Gregorca1bdd72009-11-04 00:56:37 +0000960/// \param ObjectType if this unqualified-id occurs within a member access
961/// expression, the type of the base object whose member is being accessed.
962///
963/// \param Result on a successful parse, contains the parsed unqualified-id.
964///
965/// \returns true if parsing fails, false otherwise.
966bool Parser::ParseUnqualifiedIdOperator(CXXScopeSpec &SS, bool EnteringContext,
967 TypeTy *ObjectType,
968 UnqualifiedId &Result) {
969 assert(Tok.is(tok::kw_operator) && "Expected 'operator' keyword");
970
971 // Consume the 'operator' keyword.
972 SourceLocation KeywordLoc = ConsumeToken();
973
974 // Determine what kind of operator name we have.
975 unsigned SymbolIdx = 0;
976 SourceLocation SymbolLocations[3];
977 OverloadedOperatorKind Op = OO_None;
978 switch (Tok.getKind()) {
979 case tok::kw_new:
980 case tok::kw_delete: {
981 bool isNew = Tok.getKind() == tok::kw_new;
982 // Consume the 'new' or 'delete'.
983 SymbolLocations[SymbolIdx++] = ConsumeToken();
984 if (Tok.is(tok::l_square)) {
985 // Consume the '['.
986 SourceLocation LBracketLoc = ConsumeBracket();
987 // Consume the ']'.
988 SourceLocation RBracketLoc = MatchRHSPunctuation(tok::r_square,
989 LBracketLoc);
990 if (RBracketLoc.isInvalid())
991 return true;
992
993 SymbolLocations[SymbolIdx++] = LBracketLoc;
994 SymbolLocations[SymbolIdx++] = RBracketLoc;
995 Op = isNew? OO_Array_New : OO_Array_Delete;
996 } else {
997 Op = isNew? OO_New : OO_Delete;
998 }
999 break;
1000 }
1001
1002#define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \
1003 case tok::Token: \
1004 SymbolLocations[SymbolIdx++] = ConsumeToken(); \
1005 Op = OO_##Name; \
1006 break;
1007#define OVERLOADED_OPERATOR_MULTI(Name,Spelling,Unary,Binary,MemberOnly)
1008#include "clang/Basic/OperatorKinds.def"
1009
1010 case tok::l_paren: {
1011 // Consume the '('.
1012 SourceLocation LParenLoc = ConsumeParen();
1013 // Consume the ')'.
1014 SourceLocation RParenLoc = MatchRHSPunctuation(tok::r_paren,
1015 LParenLoc);
1016 if (RParenLoc.isInvalid())
1017 return true;
1018
1019 SymbolLocations[SymbolIdx++] = LParenLoc;
1020 SymbolLocations[SymbolIdx++] = RParenLoc;
1021 Op = OO_Call;
1022 break;
1023 }
1024
1025 case tok::l_square: {
1026 // Consume the '['.
1027 SourceLocation LBracketLoc = ConsumeBracket();
1028 // Consume the ']'.
1029 SourceLocation RBracketLoc = MatchRHSPunctuation(tok::r_square,
1030 LBracketLoc);
1031 if (RBracketLoc.isInvalid())
1032 return true;
1033
1034 SymbolLocations[SymbolIdx++] = LBracketLoc;
1035 SymbolLocations[SymbolIdx++] = RBracketLoc;
1036 Op = OO_Subscript;
1037 break;
1038 }
1039
1040 case tok::code_completion: {
1041 // Code completion for the operator name.
1042 Actions.CodeCompleteOperatorName(CurScope);
1043
1044 // Consume the operator token.
1045 ConsumeToken();
1046
1047 // Don't try to parse any further.
1048 return true;
1049 }
1050
1051 default:
1052 break;
1053 }
1054
1055 if (Op != OO_None) {
1056 // We have parsed an operator-function-id.
1057 Result.setOperatorFunctionId(KeywordLoc, Op, SymbolLocations);
1058 return false;
1059 }
Sean Hunt0486d742009-11-28 04:44:28 +00001060
1061 // Parse a literal-operator-id.
1062 //
1063 // literal-operator-id: [C++0x 13.5.8]
1064 // operator "" identifier
1065
1066 if (getLang().CPlusPlus0x && Tok.is(tok::string_literal)) {
1067 if (Tok.getLength() != 2)
1068 Diag(Tok.getLocation(), diag::err_operator_string_not_empty);
1069 ConsumeStringToken();
1070
1071 if (Tok.isNot(tok::identifier)) {
1072 Diag(Tok.getLocation(), diag::err_expected_ident);
1073 return true;
1074 }
1075
1076 IdentifierInfo *II = Tok.getIdentifierInfo();
1077 Result.setLiteralOperatorId(II, KeywordLoc, ConsumeToken());
Sean Hunt3e518bd2009-11-29 07:34:05 +00001078 return false;
Sean Hunt0486d742009-11-28 04:44:28 +00001079 }
Douglas Gregorca1bdd72009-11-04 00:56:37 +00001080
1081 // Parse a conversion-function-id.
1082 //
1083 // conversion-function-id: [C++ 12.3.2]
1084 // operator conversion-type-id
1085 //
1086 // conversion-type-id:
1087 // type-specifier-seq conversion-declarator[opt]
1088 //
1089 // conversion-declarator:
1090 // ptr-operator conversion-declarator[opt]
1091
1092 // Parse the type-specifier-seq.
1093 DeclSpec DS;
Douglas Gregorf6e6fc82009-11-20 22:03:38 +00001094 if (ParseCXXTypeSpecifierSeq(DS)) // FIXME: ObjectType?
Douglas Gregorca1bdd72009-11-04 00:56:37 +00001095 return true;
1096
1097 // Parse the conversion-declarator, which is merely a sequence of
1098 // ptr-operators.
1099 Declarator D(DS, Declarator::TypeNameContext);
1100 ParseDeclaratorInternal(D, /*DirectDeclParser=*/0);
1101
1102 // Finish up the type.
1103 Action::TypeResult Ty = Actions.ActOnTypeName(CurScope, D);
1104 if (Ty.isInvalid())
1105 return true;
1106
1107 // Note that this is a conversion-function-id.
1108 Result.setConversionFunctionId(KeywordLoc, Ty.get(),
1109 D.getSourceRange().getEnd());
1110 return false;
1111}
1112
1113/// \brief Parse a C++ unqualified-id (or a C identifier), which describes the
1114/// name of an entity.
1115///
1116/// \code
1117/// unqualified-id: [C++ expr.prim.general]
1118/// identifier
1119/// operator-function-id
1120/// conversion-function-id
1121/// [C++0x] literal-operator-id [TODO]
1122/// ~ class-name
1123/// template-id
1124///
1125/// \endcode
1126///
1127/// \param The nested-name-specifier that preceded this unqualified-id. If
1128/// non-empty, then we are parsing the unqualified-id of a qualified-id.
1129///
1130/// \param EnteringContext whether we are entering the scope of the
1131/// nested-name-specifier.
1132///
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001133/// \param AllowDestructorName whether we allow parsing of a destructor name.
1134///
1135/// \param AllowConstructorName whether we allow parsing a constructor name.
1136///
Douglas Gregor46df8cc2009-11-03 21:24:04 +00001137/// \param ObjectType if this unqualified-id occurs within a member access
1138/// expression, the type of the base object whose member is being accessed.
1139///
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001140/// \param Result on a successful parse, contains the parsed unqualified-id.
1141///
1142/// \returns true if parsing fails, false otherwise.
1143bool Parser::ParseUnqualifiedId(CXXScopeSpec &SS, bool EnteringContext,
1144 bool AllowDestructorName,
1145 bool AllowConstructorName,
Douglas Gregor2d1c2142009-11-03 19:44:04 +00001146 TypeTy *ObjectType,
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001147 UnqualifiedId &Result) {
1148 // unqualified-id:
1149 // identifier
1150 // template-id (when it hasn't already been annotated)
1151 if (Tok.is(tok::identifier)) {
1152 // Consume the identifier.
1153 IdentifierInfo *Id = Tok.getIdentifierInfo();
1154 SourceLocation IdLoc = ConsumeToken();
1155
Douglas Gregorb862b8f2010-01-11 23:29:10 +00001156 if (!getLang().CPlusPlus) {
1157 // If we're not in C++, only identifiers matter. Record the
1158 // identifier and return.
1159 Result.setIdentifier(Id, IdLoc);
1160 return false;
1161 }
1162
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001163 if (AllowConstructorName &&
1164 Actions.isCurrentClassName(*Id, CurScope, &SS)) {
1165 // We have parsed a constructor name.
1166 Result.setConstructorName(Actions.getTypeName(*Id, IdLoc, CurScope,
1167 &SS, false),
1168 IdLoc, IdLoc);
1169 } else {
1170 // We have parsed an identifier.
1171 Result.setIdentifier(Id, IdLoc);
1172 }
1173
1174 // If the next token is a '<', we may have a template.
1175 if (Tok.is(tok::less))
1176 return ParseUnqualifiedIdTemplateId(SS, Id, IdLoc, EnteringContext,
Douglas Gregor2d1c2142009-11-03 19:44:04 +00001177 ObjectType, Result);
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001178
1179 return false;
1180 }
1181
1182 // unqualified-id:
1183 // template-id (already parsed and annotated)
1184 if (Tok.is(tok::annot_template_id)) {
Douglas Gregor0efc2c12010-01-13 17:31:36 +00001185 TemplateIdAnnotation *TemplateId
1186 = static_cast<TemplateIdAnnotation*>(Tok.getAnnotationValue());
1187
1188 // If the template-name names the current class, then this is a constructor
1189 if (AllowConstructorName && TemplateId->Name &&
1190 Actions.isCurrentClassName(*TemplateId->Name, CurScope, &SS)) {
1191 if (SS.isSet()) {
1192 // C++ [class.qual]p2 specifies that a qualified template-name
1193 // is taken as the constructor name where a constructor can be
1194 // declared. Thus, the template arguments are extraneous, so
1195 // complain about them and remove them entirely.
1196 Diag(TemplateId->TemplateNameLoc,
1197 diag::err_out_of_line_constructor_template_id)
1198 << TemplateId->Name
1199 << CodeModificationHint::CreateRemoval(
1200 SourceRange(TemplateId->LAngleLoc, TemplateId->RAngleLoc));
1201 Result.setConstructorName(Actions.getTypeName(*TemplateId->Name,
1202 TemplateId->TemplateNameLoc,
1203 CurScope,
1204 &SS, false),
1205 TemplateId->TemplateNameLoc,
1206 TemplateId->RAngleLoc);
1207 TemplateId->Destroy();
1208 ConsumeToken();
1209 return false;
1210 }
1211
1212 Result.setConstructorTemplateId(TemplateId);
1213 ConsumeToken();
1214 return false;
1215 }
1216
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001217 // We have already parsed a template-id; consume the annotation token as
1218 // our unqualified-id.
Douglas Gregor0efc2c12010-01-13 17:31:36 +00001219 Result.setTemplateId(TemplateId);
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001220 ConsumeToken();
1221 return false;
1222 }
1223
1224 // unqualified-id:
1225 // operator-function-id
1226 // conversion-function-id
1227 if (Tok.is(tok::kw_operator)) {
Douglas Gregorca1bdd72009-11-04 00:56:37 +00001228 if (ParseUnqualifiedIdOperator(SS, EnteringContext, ObjectType, Result))
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001229 return true;
1230
Sean Hunte6252d12009-11-28 08:58:14 +00001231 // If we have an operator-function-id or a literal-operator-id and the next
1232 // token is a '<', we may have a
Douglas Gregorca1bdd72009-11-04 00:56:37 +00001233 //
1234 // template-id:
1235 // operator-function-id < template-argument-list[opt] >
Sean Hunte6252d12009-11-28 08:58:14 +00001236 if ((Result.getKind() == UnqualifiedId::IK_OperatorFunctionId ||
1237 Result.getKind() == UnqualifiedId::IK_LiteralOperatorId) &&
Douglas Gregorca1bdd72009-11-04 00:56:37 +00001238 Tok.is(tok::less))
1239 return ParseUnqualifiedIdTemplateId(SS, 0, SourceLocation(),
1240 EnteringContext, ObjectType,
1241 Result);
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001242
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001243 return false;
1244 }
1245
Douglas Gregorb862b8f2010-01-11 23:29:10 +00001246 if (getLang().CPlusPlus &&
1247 (AllowDestructorName || SS.isSet()) && Tok.is(tok::tilde)) {
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001248 // C++ [expr.unary.op]p10:
1249 // There is an ambiguity in the unary-expression ~X(), where X is a
1250 // class-name. The ambiguity is resolved in favor of treating ~ as a
1251 // unary complement rather than treating ~X as referring to a destructor.
1252
1253 // Parse the '~'.
1254 SourceLocation TildeLoc = ConsumeToken();
1255
1256 // Parse the class-name.
1257 if (Tok.isNot(tok::identifier)) {
1258 Diag(Tok, diag::err_destructor_class_name);
1259 return true;
1260 }
1261
1262 // Parse the class-name (or template-name in a simple-template-id).
1263 IdentifierInfo *ClassName = Tok.getIdentifierInfo();
1264 SourceLocation ClassNameLoc = ConsumeToken();
1265
Douglas Gregor2d1c2142009-11-03 19:44:04 +00001266 if (Tok.is(tok::less)) {
1267 Result.setDestructorName(TildeLoc, 0, ClassNameLoc);
1268 return ParseUnqualifiedIdTemplateId(SS, ClassName, ClassNameLoc,
1269 EnteringContext, ObjectType, Result);
1270 }
1271
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001272 // Note that this is a destructor name.
1273 Action::TypeTy *Ty = Actions.getTypeName(*ClassName, ClassNameLoc,
Douglas Gregorf6e6fc82009-11-20 22:03:38 +00001274 CurScope, &SS, false, ObjectType);
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001275 if (!Ty) {
Douglas Gregor2d1c2142009-11-03 19:44:04 +00001276 if (ObjectType)
1277 Diag(ClassNameLoc, diag::err_ident_in_pseudo_dtor_not_a_type)
1278 << ClassName;
1279 else
1280 Diag(ClassNameLoc, diag::err_destructor_class_name);
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001281 return true;
1282 }
1283
1284 Result.setDestructorName(TildeLoc, Ty, ClassNameLoc);
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001285 return false;
1286 }
1287
Douglas Gregor2d1c2142009-11-03 19:44:04 +00001288 Diag(Tok, diag::err_expected_unqualified_id)
1289 << getLang().CPlusPlus;
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001290 return true;
1291}
1292
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001293/// ParseCXXNewExpression - Parse a C++ new-expression. New is used to allocate
1294/// memory in a typesafe manner and call constructors.
Mike Stump1eb44332009-09-09 15:08:12 +00001295///
Chris Lattner59232d32009-01-04 21:25:24 +00001296/// This method is called to parse the new expression after the optional :: has
1297/// been already parsed. If the :: was present, "UseGlobal" is true and "Start"
1298/// is its location. Otherwise, "Start" is the location of the 'new' token.
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001299///
1300/// new-expression:
1301/// '::'[opt] 'new' new-placement[opt] new-type-id
1302/// new-initializer[opt]
1303/// '::'[opt] 'new' new-placement[opt] '(' type-id ')'
1304/// new-initializer[opt]
1305///
1306/// new-placement:
1307/// '(' expression-list ')'
1308///
Sebastian Redlcee63fb2008-12-02 14:43:59 +00001309/// new-type-id:
1310/// type-specifier-seq new-declarator[opt]
1311///
1312/// new-declarator:
1313/// ptr-operator new-declarator[opt]
1314/// direct-new-declarator
1315///
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001316/// new-initializer:
1317/// '(' expression-list[opt] ')'
1318/// [C++0x] braced-init-list [TODO]
1319///
Chris Lattner59232d32009-01-04 21:25:24 +00001320Parser::OwningExprResult
1321Parser::ParseCXXNewExpression(bool UseGlobal, SourceLocation Start) {
1322 assert(Tok.is(tok::kw_new) && "expected 'new' token");
1323 ConsumeToken(); // Consume 'new'
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001324
1325 // A '(' now can be a new-placement or the '(' wrapping the type-id in the
1326 // second form of new-expression. It can't be a new-type-id.
1327
Sebastian Redla55e52c2008-11-25 22:21:31 +00001328 ExprVector PlacementArgs(Actions);
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001329 SourceLocation PlacementLParen, PlacementRParen;
1330
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001331 bool ParenTypeId;
Sebastian Redlcee63fb2008-12-02 14:43:59 +00001332 DeclSpec DS;
1333 Declarator DeclaratorInfo(DS, Declarator::TypeNameContext);
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001334 if (Tok.is(tok::l_paren)) {
1335 // If it turns out to be a placement, we change the type location.
1336 PlacementLParen = ConsumeParen();
Sebastian Redlcee63fb2008-12-02 14:43:59 +00001337 if (ParseExpressionListOrTypeId(PlacementArgs, DeclaratorInfo)) {
1338 SkipUntil(tok::semi, /*StopAtSemi=*/true, /*DontConsume=*/true);
Sebastian Redl20df9b72008-12-11 22:51:44 +00001339 return ExprError();
Sebastian Redlcee63fb2008-12-02 14:43:59 +00001340 }
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001341
1342 PlacementRParen = MatchRHSPunctuation(tok::r_paren, PlacementLParen);
Sebastian Redlcee63fb2008-12-02 14:43:59 +00001343 if (PlacementRParen.isInvalid()) {
1344 SkipUntil(tok::semi, /*StopAtSemi=*/true, /*DontConsume=*/true);
Sebastian Redl20df9b72008-12-11 22:51:44 +00001345 return ExprError();
Sebastian Redlcee63fb2008-12-02 14:43:59 +00001346 }
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001347
Sebastian Redlcee63fb2008-12-02 14:43:59 +00001348 if (PlacementArgs.empty()) {
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001349 // Reset the placement locations. There was no placement.
1350 PlacementLParen = PlacementRParen = SourceLocation();
1351 ParenTypeId = true;
1352 } else {
1353 // We still need the type.
1354 if (Tok.is(tok::l_paren)) {
Sebastian Redlcee63fb2008-12-02 14:43:59 +00001355 SourceLocation LParen = ConsumeParen();
1356 ParseSpecifierQualifierList(DS);
Sebastian Redlab197ba2009-02-09 18:23:29 +00001357 DeclaratorInfo.SetSourceRange(DS.getSourceRange());
Sebastian Redlcee63fb2008-12-02 14:43:59 +00001358 ParseDeclarator(DeclaratorInfo);
1359 MatchRHSPunctuation(tok::r_paren, LParen);
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001360 ParenTypeId = true;
1361 } else {
Sebastian Redlcee63fb2008-12-02 14:43:59 +00001362 if (ParseCXXTypeSpecifierSeq(DS))
1363 DeclaratorInfo.setInvalidType(true);
Sebastian Redlab197ba2009-02-09 18:23:29 +00001364 else {
1365 DeclaratorInfo.SetSourceRange(DS.getSourceRange());
Sebastian Redlcee63fb2008-12-02 14:43:59 +00001366 ParseDeclaratorInternal(DeclaratorInfo,
1367 &Parser::ParseDirectNewDeclarator);
Sebastian Redlab197ba2009-02-09 18:23:29 +00001368 }
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001369 ParenTypeId = false;
1370 }
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001371 }
1372 } else {
Sebastian Redlcee63fb2008-12-02 14:43:59 +00001373 // A new-type-id is a simplified type-id, where essentially the
1374 // direct-declarator is replaced by a direct-new-declarator.
1375 if (ParseCXXTypeSpecifierSeq(DS))
1376 DeclaratorInfo.setInvalidType(true);
Sebastian Redlab197ba2009-02-09 18:23:29 +00001377 else {
1378 DeclaratorInfo.SetSourceRange(DS.getSourceRange());
Sebastian Redlcee63fb2008-12-02 14:43:59 +00001379 ParseDeclaratorInternal(DeclaratorInfo,
1380 &Parser::ParseDirectNewDeclarator);
Sebastian Redlab197ba2009-02-09 18:23:29 +00001381 }
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001382 ParenTypeId = false;
1383 }
Chris Lattnereaaebc72009-04-25 08:06:05 +00001384 if (DeclaratorInfo.isInvalidType()) {
Sebastian Redlcee63fb2008-12-02 14:43:59 +00001385 SkipUntil(tok::semi, /*StopAtSemi=*/true, /*DontConsume=*/true);
Sebastian Redl20df9b72008-12-11 22:51:44 +00001386 return ExprError();
Sebastian Redlcee63fb2008-12-02 14:43:59 +00001387 }
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001388
Sebastian Redla55e52c2008-11-25 22:21:31 +00001389 ExprVector ConstructorArgs(Actions);
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001390 SourceLocation ConstructorLParen, ConstructorRParen;
1391
1392 if (Tok.is(tok::l_paren)) {
1393 ConstructorLParen = ConsumeParen();
1394 if (Tok.isNot(tok::r_paren)) {
1395 CommaLocsTy CommaLocs;
Sebastian Redlcee63fb2008-12-02 14:43:59 +00001396 if (ParseExpressionList(ConstructorArgs, CommaLocs)) {
1397 SkipUntil(tok::semi, /*StopAtSemi=*/true, /*DontConsume=*/true);
Sebastian Redl20df9b72008-12-11 22:51:44 +00001398 return ExprError();
Sebastian Redlcee63fb2008-12-02 14:43:59 +00001399 }
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001400 }
1401 ConstructorRParen = MatchRHSPunctuation(tok::r_paren, ConstructorLParen);
Sebastian Redlcee63fb2008-12-02 14:43:59 +00001402 if (ConstructorRParen.isInvalid()) {
1403 SkipUntil(tok::semi, /*StopAtSemi=*/true, /*DontConsume=*/true);
Sebastian Redl20df9b72008-12-11 22:51:44 +00001404 return ExprError();
Sebastian Redlcee63fb2008-12-02 14:43:59 +00001405 }
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001406 }
1407
Sebastian Redlf53597f2009-03-15 17:47:39 +00001408 return Actions.ActOnCXXNew(Start, UseGlobal, PlacementLParen,
1409 move_arg(PlacementArgs), PlacementRParen,
1410 ParenTypeId, DeclaratorInfo, ConstructorLParen,
1411 move_arg(ConstructorArgs), ConstructorRParen);
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001412}
1413
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001414/// ParseDirectNewDeclarator - Parses a direct-new-declarator. Intended to be
1415/// passed to ParseDeclaratorInternal.
1416///
1417/// direct-new-declarator:
1418/// '[' expression ']'
1419/// direct-new-declarator '[' constant-expression ']'
1420///
Chris Lattner59232d32009-01-04 21:25:24 +00001421void Parser::ParseDirectNewDeclarator(Declarator &D) {
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001422 // Parse the array dimensions.
1423 bool first = true;
1424 while (Tok.is(tok::l_square)) {
1425 SourceLocation LLoc = ConsumeBracket();
Sebastian Redl2f7ece72008-12-11 21:36:32 +00001426 OwningExprResult Size(first ? ParseExpression()
1427 : ParseConstantExpression());
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001428 if (Size.isInvalid()) {
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001429 // Recover
1430 SkipUntil(tok::r_square);
1431 return;
1432 }
1433 first = false;
1434
Sebastian Redlab197ba2009-02-09 18:23:29 +00001435 SourceLocation RLoc = MatchRHSPunctuation(tok::r_square, LLoc);
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001436 D.AddTypeInfo(DeclaratorChunk::getArray(0, /*static=*/false, /*star=*/false,
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +00001437 Size.release(), LLoc, RLoc),
Sebastian Redlab197ba2009-02-09 18:23:29 +00001438 RLoc);
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001439
Sebastian Redlab197ba2009-02-09 18:23:29 +00001440 if (RLoc.isInvalid())
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001441 return;
1442 }
1443}
1444
1445/// ParseExpressionListOrTypeId - Parse either an expression-list or a type-id.
1446/// This ambiguity appears in the syntax of the C++ new operator.
1447///
1448/// new-expression:
1449/// '::'[opt] 'new' new-placement[opt] '(' type-id ')'
1450/// new-initializer[opt]
1451///
1452/// new-placement:
1453/// '(' expression-list ')'
1454///
Sebastian Redlcee63fb2008-12-02 14:43:59 +00001455bool Parser::ParseExpressionListOrTypeId(ExprListTy &PlacementArgs,
Chris Lattner59232d32009-01-04 21:25:24 +00001456 Declarator &D) {
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001457 // The '(' was already consumed.
1458 if (isTypeIdInParens()) {
Sebastian Redlcee63fb2008-12-02 14:43:59 +00001459 ParseSpecifierQualifierList(D.getMutableDeclSpec());
Sebastian Redlab197ba2009-02-09 18:23:29 +00001460 D.SetSourceRange(D.getDeclSpec().getSourceRange());
Sebastian Redlcee63fb2008-12-02 14:43:59 +00001461 ParseDeclarator(D);
Chris Lattnereaaebc72009-04-25 08:06:05 +00001462 return D.isInvalidType();
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001463 }
1464
1465 // It's not a type, it has to be an expression list.
1466 // Discard the comma locations - ActOnCXXNew has enough parameters.
1467 CommaLocsTy CommaLocs;
1468 return ParseExpressionList(PlacementArgs, CommaLocs);
1469}
1470
1471/// ParseCXXDeleteExpression - Parse a C++ delete-expression. Delete is used
1472/// to free memory allocated by new.
1473///
Chris Lattner59232d32009-01-04 21:25:24 +00001474/// This method is called to parse the 'delete' expression after the optional
1475/// '::' has been already parsed. If the '::' was present, "UseGlobal" is true
1476/// and "Start" is its location. Otherwise, "Start" is the location of the
1477/// 'delete' token.
1478///
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001479/// delete-expression:
1480/// '::'[opt] 'delete' cast-expression
1481/// '::'[opt] 'delete' '[' ']' cast-expression
Chris Lattner59232d32009-01-04 21:25:24 +00001482Parser::OwningExprResult
1483Parser::ParseCXXDeleteExpression(bool UseGlobal, SourceLocation Start) {
1484 assert(Tok.is(tok::kw_delete) && "Expected 'delete' keyword");
1485 ConsumeToken(); // Consume 'delete'
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001486
1487 // Array delete?
1488 bool ArrayDelete = false;
1489 if (Tok.is(tok::l_square)) {
1490 ArrayDelete = true;
1491 SourceLocation LHS = ConsumeBracket();
1492 SourceLocation RHS = MatchRHSPunctuation(tok::r_square, LHS);
1493 if (RHS.isInvalid())
Sebastian Redl20df9b72008-12-11 22:51:44 +00001494 return ExprError();
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001495 }
1496
Sebastian Redl2f7ece72008-12-11 21:36:32 +00001497 OwningExprResult Operand(ParseCastExpression(false));
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001498 if (Operand.isInvalid())
Sebastian Redl20df9b72008-12-11 22:51:44 +00001499 return move(Operand);
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001500
Sebastian Redlf53597f2009-03-15 17:47:39 +00001501 return Actions.ActOnCXXDelete(Start, UseGlobal, ArrayDelete, move(Operand));
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001502}
Sebastian Redl64b45f72009-01-05 20:52:13 +00001503
Mike Stump1eb44332009-09-09 15:08:12 +00001504static UnaryTypeTrait UnaryTypeTraitFromTokKind(tok::TokenKind kind) {
Sebastian Redl64b45f72009-01-05 20:52:13 +00001505 switch(kind) {
1506 default: assert(false && "Not a known unary type trait.");
1507 case tok::kw___has_nothrow_assign: return UTT_HasNothrowAssign;
1508 case tok::kw___has_nothrow_copy: return UTT_HasNothrowCopy;
1509 case tok::kw___has_nothrow_constructor: return UTT_HasNothrowConstructor;
1510 case tok::kw___has_trivial_assign: return UTT_HasTrivialAssign;
1511 case tok::kw___has_trivial_copy: return UTT_HasTrivialCopy;
1512 case tok::kw___has_trivial_constructor: return UTT_HasTrivialConstructor;
1513 case tok::kw___has_trivial_destructor: return UTT_HasTrivialDestructor;
1514 case tok::kw___has_virtual_destructor: return UTT_HasVirtualDestructor;
1515 case tok::kw___is_abstract: return UTT_IsAbstract;
1516 case tok::kw___is_class: return UTT_IsClass;
1517 case tok::kw___is_empty: return UTT_IsEmpty;
1518 case tok::kw___is_enum: return UTT_IsEnum;
1519 case tok::kw___is_pod: return UTT_IsPOD;
1520 case tok::kw___is_polymorphic: return UTT_IsPolymorphic;
1521 case tok::kw___is_union: return UTT_IsUnion;
Sebastian Redlccf43502009-12-03 00:13:20 +00001522 case tok::kw___is_literal: return UTT_IsLiteral;
Sebastian Redl64b45f72009-01-05 20:52:13 +00001523 }
1524}
1525
1526/// ParseUnaryTypeTrait - Parse the built-in unary type-trait
1527/// pseudo-functions that allow implementation of the TR1/C++0x type traits
1528/// templates.
1529///
1530/// primary-expression:
1531/// [GNU] unary-type-trait '(' type-id ')'
1532///
Mike Stump1eb44332009-09-09 15:08:12 +00001533Parser::OwningExprResult Parser::ParseUnaryTypeTrait() {
Sebastian Redl64b45f72009-01-05 20:52:13 +00001534 UnaryTypeTrait UTT = UnaryTypeTraitFromTokKind(Tok.getKind());
1535 SourceLocation Loc = ConsumeToken();
1536
1537 SourceLocation LParen = Tok.getLocation();
1538 if (ExpectAndConsume(tok::l_paren, diag::err_expected_lparen))
1539 return ExprError();
1540
1541 // FIXME: Error reporting absolutely sucks! If the this fails to parse a type
1542 // there will be cryptic errors about mismatched parentheses and missing
1543 // specifiers.
Douglas Gregor809070a2009-02-18 17:45:20 +00001544 TypeResult Ty = ParseTypeName();
Sebastian Redl64b45f72009-01-05 20:52:13 +00001545
1546 SourceLocation RParen = MatchRHSPunctuation(tok::r_paren, LParen);
1547
Douglas Gregor809070a2009-02-18 17:45:20 +00001548 if (Ty.isInvalid())
1549 return ExprError();
1550
1551 return Actions.ActOnUnaryTypeTrait(UTT, Loc, LParen, Ty.get(), RParen);
Sebastian Redl64b45f72009-01-05 20:52:13 +00001552}
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00001553
1554/// ParseCXXAmbiguousParenExpression - We have parsed the left paren of a
1555/// parenthesized ambiguous type-id. This uses tentative parsing to disambiguate
1556/// based on the context past the parens.
1557Parser::OwningExprResult
1558Parser::ParseCXXAmbiguousParenExpression(ParenParseOption &ExprType,
1559 TypeTy *&CastTy,
1560 SourceLocation LParenLoc,
1561 SourceLocation &RParenLoc) {
1562 assert(getLang().CPlusPlus && "Should only be called for C++!");
1563 assert(ExprType == CastExpr && "Compound literals are not ambiguous!");
1564 assert(isTypeIdInParens() && "Not a type-id!");
1565
1566 OwningExprResult Result(Actions, true);
1567 CastTy = 0;
1568
1569 // We need to disambiguate a very ugly part of the C++ syntax:
1570 //
1571 // (T())x; - type-id
1572 // (T())*x; - type-id
1573 // (T())/x; - expression
1574 // (T()); - expression
1575 //
1576 // The bad news is that we cannot use the specialized tentative parser, since
1577 // it can only verify that the thing inside the parens can be parsed as
1578 // type-id, it is not useful for determining the context past the parens.
1579 //
1580 // The good news is that the parser can disambiguate this part without
Argyrios Kyrtzidisa558a892009-05-22 15:12:46 +00001581 // making any unnecessary Action calls.
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00001582 //
1583 // It uses a scheme similar to parsing inline methods. The parenthesized
1584 // tokens are cached, the context that follows is determined (possibly by
1585 // parsing a cast-expression), and then we re-introduce the cached tokens
1586 // into the token stream and parse them appropriately.
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00001587
Mike Stump1eb44332009-09-09 15:08:12 +00001588 ParenParseOption ParseAs;
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00001589 CachedTokens Toks;
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00001590
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00001591 // Store the tokens of the parentheses. We will parse them after we determine
1592 // the context that follows them.
1593 if (!ConsumeAndStoreUntil(tok::r_paren, tok::unknown, Toks, tok::semi)) {
1594 // We didn't find the ')' we expected.
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00001595 MatchRHSPunctuation(tok::r_paren, LParenLoc);
1596 return ExprError();
1597 }
1598
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00001599 if (Tok.is(tok::l_brace)) {
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00001600 ParseAs = CompoundLiteral;
1601 } else {
1602 bool NotCastExpr;
Eli Friedmanb53f08a2009-05-25 19:41:42 +00001603 // FIXME: Special-case ++ and --: "(S())++;" is not a cast-expression
1604 if (Tok.is(tok::l_paren) && NextToken().is(tok::r_paren)) {
1605 NotCastExpr = true;
1606 } else {
1607 // Try parsing the cast-expression that may follow.
1608 // If it is not a cast-expression, NotCastExpr will be true and no token
1609 // will be consumed.
1610 Result = ParseCastExpression(false/*isUnaryExpression*/,
1611 false/*isAddressofOperand*/,
Nate Begeman2ef13e52009-08-10 23:49:36 +00001612 NotCastExpr, false);
Eli Friedmanb53f08a2009-05-25 19:41:42 +00001613 }
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00001614
1615 // If we parsed a cast-expression, it's really a type-id, otherwise it's
1616 // an expression.
1617 ParseAs = NotCastExpr ? SimpleExpr : CastExpr;
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00001618 }
1619
Mike Stump1eb44332009-09-09 15:08:12 +00001620 // The current token should go after the cached tokens.
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00001621 Toks.push_back(Tok);
1622 // Re-enter the stored parenthesized tokens into the token stream, so we may
1623 // parse them now.
1624 PP.EnterTokenStream(Toks.data(), Toks.size(),
1625 true/*DisableMacroExpansion*/, false/*OwnsTokens*/);
1626 // Drop the current token and bring the first cached one. It's the same token
1627 // as when we entered this function.
1628 ConsumeAnyToken();
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00001629
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00001630 if (ParseAs >= CompoundLiteral) {
1631 TypeResult Ty = ParseTypeName();
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00001632
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00001633 // Match the ')'.
1634 if (Tok.is(tok::r_paren))
1635 RParenLoc = ConsumeParen();
1636 else
1637 MatchRHSPunctuation(tok::r_paren, LParenLoc);
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00001638
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00001639 if (ParseAs == CompoundLiteral) {
1640 ExprType = CompoundLiteral;
1641 return ParseCompoundLiteralExpression(Ty.get(), LParenLoc, RParenLoc);
1642 }
Mike Stump1eb44332009-09-09 15:08:12 +00001643
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00001644 // We parsed '(' type-id ')' and the thing after it wasn't a '{'.
1645 assert(ParseAs == CastExpr);
1646
1647 if (Ty.isInvalid())
1648 return ExprError();
1649
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00001650 CastTy = Ty.get();
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00001651
1652 // Result is what ParseCastExpression returned earlier.
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00001653 if (!Result.isInvalid())
Mike Stump1eb44332009-09-09 15:08:12 +00001654 Result = Actions.ActOnCastExpr(CurScope, LParenLoc, CastTy, RParenLoc,
Nate Begeman2ef13e52009-08-10 23:49:36 +00001655 move(Result));
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00001656 return move(Result);
1657 }
Mike Stump1eb44332009-09-09 15:08:12 +00001658
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00001659 // Not a compound literal, and not followed by a cast-expression.
1660 assert(ParseAs == SimpleExpr);
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00001661
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00001662 ExprType = SimpleExpr;
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00001663 Result = ParseExpression();
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00001664 if (!Result.isInvalid() && Tok.is(tok::r_paren))
1665 Result = Actions.ActOnParenExpr(LParenLoc, Tok.getLocation(), move(Result));
1666
1667 // Match the ')'.
1668 if (Result.isInvalid()) {
1669 SkipUntil(tok::r_paren);
1670 return ExprError();
1671 }
Mike Stump1eb44332009-09-09 15:08:12 +00001672
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00001673 if (Tok.is(tok::r_paren))
1674 RParenLoc = ConsumeParen();
1675 else
1676 MatchRHSPunctuation(tok::r_paren, LParenLoc);
1677
1678 return move(Result);
1679}