blob: fecf7b77657d1afb08886e4147b00ec24a0def91 [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"
Douglas Gregorbc61bd82011-01-11 00:33:19 +000016#include "RAIIObjectsForParser.h"
Eli Friedmandc3b7232012-01-04 02:40:39 +000017#include "clang/Basic/PrettyStackTrace.h"
John McCall19510852010-08-20 18:27:03 +000018#include "clang/Sema/DeclSpec.h"
Douglas Gregorae7902c2011-08-04 15:30:47 +000019#include "clang/Sema/Scope.h"
John McCall19510852010-08-20 18:27:03 +000020#include "clang/Sema/ParsedTemplate.h"
Douglas Gregor3f9a0562009-11-03 01:35:08 +000021#include "llvm/Support/ErrorHandling.h"
22
Reid Spencer5f016e22007-07-11 17:01:13 +000023using namespace clang;
24
Richard Smithea698b32011-04-14 21:45:45 +000025static int SelectDigraphErrorMessage(tok::TokenKind Kind) {
26 switch (Kind) {
27 case tok::kw_template: return 0;
28 case tok::kw_const_cast: return 1;
29 case tok::kw_dynamic_cast: return 2;
30 case tok::kw_reinterpret_cast: return 3;
31 case tok::kw_static_cast: return 4;
32 default:
David Blaikieb219cfc2011-09-23 05:06:16 +000033 llvm_unreachable("Unknown type for digraph error message.");
Richard Smithea698b32011-04-14 21:45:45 +000034 }
35}
36
37// Are the two tokens adjacent in the same source file?
38static bool AreTokensAdjacent(Preprocessor &PP, Token &First, Token &Second) {
39 SourceManager &SM = PP.getSourceManager();
40 SourceLocation FirstLoc = SM.getSpellingLoc(First.getLocation());
Argyrios Kyrtzidisa64ccef2011-09-19 20:40:19 +000041 SourceLocation FirstEnd = FirstLoc.getLocWithOffset(First.getLength());
Richard Smithea698b32011-04-14 21:45:45 +000042 return FirstEnd == SM.getSpellingLoc(Second.getLocation());
43}
44
45// Suggest fixit for "<::" after a cast.
46static void FixDigraph(Parser &P, Preprocessor &PP, Token &DigraphToken,
47 Token &ColonToken, tok::TokenKind Kind, bool AtDigraph) {
48 // Pull '<:' and ':' off token stream.
49 if (!AtDigraph)
50 PP.Lex(DigraphToken);
51 PP.Lex(ColonToken);
52
53 SourceRange Range;
54 Range.setBegin(DigraphToken.getLocation());
55 Range.setEnd(ColonToken.getLocation());
56 P.Diag(DigraphToken.getLocation(), diag::err_missing_whitespace_digraph)
57 << SelectDigraphErrorMessage(Kind)
58 << FixItHint::CreateReplacement(Range, "< ::");
59
60 // Update token information to reflect their change in token type.
61 ColonToken.setKind(tok::coloncolon);
Argyrios Kyrtzidisa64ccef2011-09-19 20:40:19 +000062 ColonToken.setLocation(ColonToken.getLocation().getLocWithOffset(-1));
Richard Smithea698b32011-04-14 21:45:45 +000063 ColonToken.setLength(2);
64 DigraphToken.setKind(tok::less);
65 DigraphToken.setLength(1);
66
67 // Push new tokens back to token stream.
68 PP.EnterToken(ColonToken);
69 if (!AtDigraph)
70 PP.EnterToken(DigraphToken);
71}
72
Richard Trieu950be712011-09-19 19:01:00 +000073// Check for '<::' which should be '< ::' instead of '[:' when following
74// a template name.
75void Parser::CheckForTemplateAndDigraph(Token &Next, ParsedType ObjectType,
76 bool EnteringContext,
77 IdentifierInfo &II, CXXScopeSpec &SS) {
Richard Trieuc11030e2011-09-20 20:03:50 +000078 if (!Next.is(tok::l_square) || Next.getLength() != 2)
Richard Trieu950be712011-09-19 19:01:00 +000079 return;
80
81 Token SecondToken = GetLookAheadToken(2);
82 if (!SecondToken.is(tok::colon) || !AreTokensAdjacent(PP, Next, SecondToken))
83 return;
84
85 TemplateTy Template;
86 UnqualifiedId TemplateName;
87 TemplateName.setIdentifier(&II, Tok.getLocation());
88 bool MemberOfUnknownSpecialization;
89 if (!Actions.isTemplateName(getCurScope(), SS, /*hasTemplateKeyword=*/false,
90 TemplateName, ObjectType, EnteringContext,
91 Template, MemberOfUnknownSpecialization))
92 return;
93
94 FixDigraph(*this, PP, Next, SecondToken, tok::kw_template,
95 /*AtDigraph*/false);
96}
97
Mike Stump1eb44332009-09-09 15:08:12 +000098/// \brief Parse global scope or nested-name-specifier if present.
Douglas Gregor2dd078a2009-09-02 22:59:36 +000099///
100/// Parses a C++ global scope specifier ('::') or nested-name-specifier (which
Mike Stump1eb44332009-09-09 15:08:12 +0000101/// may be preceded by '::'). Note that this routine will not parse ::new or
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000102/// ::delete; it will just leave them in the token stream.
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000103///
104/// '::'[opt] nested-name-specifier
105/// '::'
106///
107/// nested-name-specifier:
108/// type-name '::'
109/// namespace-name '::'
110/// nested-name-specifier identifier '::'
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000111/// nested-name-specifier 'template'[opt] simple-template-id '::'
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000112///
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000113///
Mike Stump1eb44332009-09-09 15:08:12 +0000114/// \param SS the scope specifier that will be set to the parsed
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000115/// nested-name-specifier (or empty)
116///
Mike Stump1eb44332009-09-09 15:08:12 +0000117/// \param ObjectType if this nested-name-specifier is being parsed following
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000118/// the "." or "->" of a member access expression, this parameter provides the
119/// type of the object whose members are being accessed.
120///
121/// \param EnteringContext whether we will be entering into the context of
122/// the nested-name-specifier after parsing it.
123///
Douglas Gregord4dca082010-02-24 18:44:31 +0000124/// \param MayBePseudoDestructor When non-NULL, points to a flag that
125/// indicates whether this nested-name-specifier may be part of a
126/// pseudo-destructor name. In this case, the flag will be set false
127/// if we don't actually end up parsing a destructor name. Moreorover,
128/// if we do end up determining that we are parsing a destructor name,
129/// the last component of the nested-name-specifier is not parsed as
130/// part of the scope specifier.
131
Douglas Gregorb10cd042010-02-21 18:36:56 +0000132/// member access expression, e.g., the \p T:: in \p p->T::m.
133///
John McCall9ba61662010-02-26 08:45:28 +0000134/// \returns true if there was an error parsing a scope specifier
Douglas Gregor495c35d2009-08-25 22:51:20 +0000135bool Parser::ParseOptionalCXXScopeSpecifier(CXXScopeSpec &SS,
John McCallb3d87482010-08-24 05:47:05 +0000136 ParsedType ObjectType,
Douglas Gregorb10cd042010-02-21 18:36:56 +0000137 bool EnteringContext,
Francois Pichet4147d302011-03-27 19:41:34 +0000138 bool *MayBePseudoDestructor,
139 bool IsTypename) {
Argyrios Kyrtzidis4bdd91c2008-11-26 21:41:52 +0000140 assert(getLang().CPlusPlus &&
Chris Lattner7452c6f2009-01-05 01:24:05 +0000141 "Call sites of this function should be guarded by checking for C++");
Mike Stump1eb44332009-09-09 15:08:12 +0000142
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000143 if (Tok.is(tok::annot_cxxscope)) {
Douglas Gregorc34348a2011-02-24 17:54:50 +0000144 Actions.RestoreNestedNameSpecifierAnnotation(Tok.getAnnotationValue(),
145 Tok.getAnnotationRange(),
146 SS);
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000147 ConsumeToken();
John McCall9ba61662010-02-26 08:45:28 +0000148 return false;
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000149 }
Chris Lattnere607e802009-01-04 21:14:15 +0000150
Douglas Gregor39a8de12009-02-25 19:37:18 +0000151 bool HasScopeSpecifier = false;
152
Chris Lattner5b454732009-01-05 03:55:46 +0000153 if (Tok.is(tok::coloncolon)) {
154 // ::new and ::delete aren't nested-name-specifiers.
155 tok::TokenKind NextKind = NextToken().getKind();
156 if (NextKind == tok::kw_new || NextKind == tok::kw_delete)
157 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000158
Chris Lattner55a7cef2009-01-05 00:13:00 +0000159 // '::' - Global scope qualifier.
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000160 if (Actions.ActOnCXXGlobalScopeSpecifier(getCurScope(), ConsumeToken(), SS))
161 return true;
162
Douglas Gregor39a8de12009-02-25 19:37:18 +0000163 HasScopeSpecifier = true;
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000164 }
165
Douglas Gregord4dca082010-02-24 18:44:31 +0000166 bool CheckForDestructor = false;
167 if (MayBePseudoDestructor && *MayBePseudoDestructor) {
168 CheckForDestructor = true;
169 *MayBePseudoDestructor = false;
170 }
171
David Blaikie42d6d0c2011-12-04 05:04:18 +0000172 if (Tok.is(tok::kw_decltype) || Tok.is(tok::annot_decltype)) {
173 DeclSpec DS(AttrFactory);
174 SourceLocation DeclLoc = Tok.getLocation();
175 SourceLocation EndLoc = ParseDecltypeSpecifier(DS);
176 if (Tok.isNot(tok::coloncolon)) {
177 AnnotateExistingDecltypeSpecifier(DS, DeclLoc, EndLoc);
178 return false;
179 }
180
181 SourceLocation CCLoc = ConsumeToken();
182 if (Actions.ActOnCXXNestedNameSpecifierDecltype(SS, DS, CCLoc))
183 SS.SetInvalid(SourceRange(DeclLoc, CCLoc));
184
185 HasScopeSpecifier = true;
186 }
187
Douglas Gregor39a8de12009-02-25 19:37:18 +0000188 while (true) {
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000189 if (HasScopeSpecifier) {
190 // C++ [basic.lookup.classref]p5:
191 // If the qualified-id has the form
Douglas Gregor3b6afbb2009-09-09 00:23:06 +0000192 //
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000193 // ::class-name-or-namespace-name::...
Douglas Gregor3b6afbb2009-09-09 00:23:06 +0000194 //
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000195 // the class-name-or-namespace-name is looked up in global scope as a
196 // class-name or namespace-name.
197 //
198 // To implement this, we clear out the object type as soon as we've
199 // seen a leading '::' or part of a nested-name-specifier.
John McCallb3d87482010-08-24 05:47:05 +0000200 ObjectType = ParsedType();
Douglas Gregor81b747b2009-09-17 21:32:03 +0000201
202 if (Tok.is(tok::code_completion)) {
203 // Code completion for a nested-name-specifier, where the code
204 // code completion token follows the '::'.
Douglas Gregor23c94db2010-07-02 17:43:08 +0000205 Actions.CodeCompleteQualifiedId(getCurScope(), SS, EnteringContext);
Argyrios Kyrtzidisb6b2b182011-04-23 01:04:12 +0000206 // Include code completion token into the range of the scope otherwise
207 // when we try to annotate the scope tokens the dangling code completion
208 // token will cause assertion in
209 // Preprocessor::AnnotatePreviousCachedTokens.
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +0000210 SS.setEndLoc(Tok.getLocation());
211 cutOffParsing();
212 return true;
Douglas Gregor81b747b2009-09-17 21:32:03 +0000213 }
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000214 }
Mike Stump1eb44332009-09-09 15:08:12 +0000215
Douglas Gregor39a8de12009-02-25 19:37:18 +0000216 // nested-name-specifier:
Chris Lattner77cf72a2009-06-26 03:47:46 +0000217 // nested-name-specifier 'template'[opt] simple-template-id '::'
218
219 // Parse the optional 'template' keyword, then make sure we have
220 // 'identifier <' after it.
221 if (Tok.is(tok::kw_template)) {
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000222 // If we don't have a scope specifier or an object type, this isn't a
Eli Friedmaneab975d2009-08-29 04:08:08 +0000223 // nested-name-specifier, since they aren't allowed to start with
224 // 'template'.
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000225 if (!HasScopeSpecifier && !ObjectType)
Eli Friedmaneab975d2009-08-29 04:08:08 +0000226 break;
227
Douglas Gregor7bb87fc2009-11-11 16:39:34 +0000228 TentativeParsingAction TPA(*this);
Chris Lattner77cf72a2009-06-26 03:47:46 +0000229 SourceLocation TemplateKWLoc = ConsumeToken();
Douglas Gregorca1bdd72009-11-04 00:56:37 +0000230
231 UnqualifiedId TemplateName;
232 if (Tok.is(tok::identifier)) {
Douglas Gregorca1bdd72009-11-04 00:56:37 +0000233 // Consume the identifier.
Douglas Gregor7bb87fc2009-11-11 16:39:34 +0000234 TemplateName.setIdentifier(Tok.getIdentifierInfo(), Tok.getLocation());
Douglas Gregorca1bdd72009-11-04 00:56:37 +0000235 ConsumeToken();
236 } else if (Tok.is(tok::kw_operator)) {
237 if (ParseUnqualifiedIdOperator(SS, EnteringContext, ObjectType,
Douglas Gregor7bb87fc2009-11-11 16:39:34 +0000238 TemplateName)) {
239 TPA.Commit();
Douglas Gregorca1bdd72009-11-04 00:56:37 +0000240 break;
Douglas Gregor7bb87fc2009-11-11 16:39:34 +0000241 }
Douglas Gregorca1bdd72009-11-04 00:56:37 +0000242
Sean Hunte6252d12009-11-28 08:58:14 +0000243 if (TemplateName.getKind() != UnqualifiedId::IK_OperatorFunctionId &&
244 TemplateName.getKind() != UnqualifiedId::IK_LiteralOperatorId) {
Douglas Gregorca1bdd72009-11-04 00:56:37 +0000245 Diag(TemplateName.getSourceRange().getBegin(),
246 diag::err_id_after_template_in_nested_name_spec)
247 << TemplateName.getSourceRange();
Douglas Gregor7bb87fc2009-11-11 16:39:34 +0000248 TPA.Commit();
Douglas Gregorca1bdd72009-11-04 00:56:37 +0000249 break;
250 }
251 } else {
Douglas Gregor7bb87fc2009-11-11 16:39:34 +0000252 TPA.Revert();
Chris Lattner77cf72a2009-06-26 03:47:46 +0000253 break;
254 }
Mike Stump1eb44332009-09-09 15:08:12 +0000255
Douglas Gregor7bb87fc2009-11-11 16:39:34 +0000256 // If the next token is not '<', we have a qualified-id that refers
257 // to a template name, such as T::template apply, but is not a
258 // template-id.
259 if (Tok.isNot(tok::less)) {
260 TPA.Revert();
261 break;
262 }
263
264 // Commit to parsing the template-id.
265 TPA.Commit();
Douglas Gregord6ab2322010-06-16 23:00:59 +0000266 TemplateTy Template;
Abramo Bagnarae4b92762012-01-27 09:46:47 +0000267 if (TemplateNameKind TNK
268 = Actions.ActOnDependentTemplateName(getCurScope(),
269 SS, TemplateKWLoc, TemplateName,
270 ObjectType, EnteringContext,
271 Template)) {
272 if (AnnotateTemplateIdToken(Template, TNK, SS, TemplateKWLoc,
273 TemplateName, false))
Douglas Gregord6ab2322010-06-16 23:00:59 +0000274 return true;
275 } else
John McCall9ba61662010-02-26 08:45:28 +0000276 return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000277
Chris Lattner77cf72a2009-06-26 03:47:46 +0000278 continue;
279 }
Mike Stump1eb44332009-09-09 15:08:12 +0000280
Douglas Gregor39a8de12009-02-25 19:37:18 +0000281 if (Tok.is(tok::annot_template_id) && NextToken().is(tok::coloncolon)) {
Mike Stump1eb44332009-09-09 15:08:12 +0000282 // We have
Douglas Gregor39a8de12009-02-25 19:37:18 +0000283 //
284 // simple-template-id '::'
285 //
286 // So we need to check whether the simple-template-id is of the
Douglas Gregorc45c2322009-03-31 00:43:58 +0000287 // right kind (it should name a type or be dependent), and then
288 // convert it into a type within the nested-name-specifier.
Argyrios Kyrtzidis25a76762011-06-22 06:09:49 +0000289 TemplateIdAnnotation *TemplateId = takeTemplateIdAnnotation(Tok);
Douglas Gregord4dca082010-02-24 18:44:31 +0000290 if (CheckForDestructor && GetLookAheadToken(2).is(tok::tilde)) {
291 *MayBePseudoDestructor = true;
John McCall9ba61662010-02-26 08:45:28 +0000292 return false;
Douglas Gregord4dca082010-02-24 18:44:31 +0000293 }
294
Douglas Gregor6cd9d4a2011-03-04 21:37:14 +0000295 // Consume the template-id token.
296 ConsumeToken();
297
298 assert(Tok.is(tok::coloncolon) && "NextToken() not working properly!");
299 SourceLocation CCLoc = ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +0000300
David Blaikie6796fc12011-11-07 03:30:03 +0000301 HasScopeSpecifier = true;
Douglas Gregor6cd9d4a2011-03-04 21:37:14 +0000302
303 ASTTemplateArgsPtr TemplateArgsPtr(Actions,
304 TemplateId->getTemplateArgs(),
305 TemplateId->NumArgs);
306
307 if (Actions.ActOnCXXNestedNameSpecifier(getCurScope(),
Abramo Bagnarae4b92762012-01-27 09:46:47 +0000308 SS,
309 TemplateId->TemplateKWLoc,
Douglas Gregor6cd9d4a2011-03-04 21:37:14 +0000310 TemplateId->Template,
311 TemplateId->TemplateNameLoc,
312 TemplateId->LAngleLoc,
313 TemplateArgsPtr,
314 TemplateId->RAngleLoc,
315 CCLoc,
316 EnteringContext)) {
317 SourceLocation StartLoc
318 = SS.getBeginLoc().isValid()? SS.getBeginLoc()
319 : TemplateId->TemplateNameLoc;
320 SS.SetInvalid(SourceRange(StartLoc, CCLoc));
Chris Lattner67b9e832009-06-26 03:45:46 +0000321 }
Argyrios Kyrtzidiseccce7e2011-05-03 18:45:38 +0000322
Douglas Gregor6cd9d4a2011-03-04 21:37:14 +0000323 continue;
Douglas Gregor39a8de12009-02-25 19:37:18 +0000324 }
325
Chris Lattner5c7f7862009-06-26 03:52:38 +0000326
327 // The rest of the nested-name-specifier possibilities start with
328 // tok::identifier.
329 if (Tok.isNot(tok::identifier))
330 break;
331
332 IdentifierInfo &II = *Tok.getIdentifierInfo();
333
334 // nested-name-specifier:
335 // type-name '::'
336 // namespace-name '::'
337 // nested-name-specifier identifier '::'
338 Token Next = NextToken();
Chris Lattner46646492009-12-07 01:36:53 +0000339
340 // If we get foo:bar, this is almost certainly a typo for foo::bar. Recover
341 // and emit a fixit hint for it.
Douglas Gregorb10cd042010-02-21 18:36:56 +0000342 if (Next.is(tok::colon) && !ColonIsSacred) {
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000343 if (Actions.IsInvalidUnlessNestedName(getCurScope(), SS, II,
344 Tok.getLocation(),
345 Next.getLocation(), ObjectType,
Douglas Gregorb10cd042010-02-21 18:36:56 +0000346 EnteringContext) &&
347 // If the token after the colon isn't an identifier, it's still an
348 // error, but they probably meant something else strange so don't
349 // recover like this.
350 PP.LookAhead(1).is(tok::identifier)) {
351 Diag(Next, diag::err_unexected_colon_in_nested_name_spec)
Douglas Gregor849b2432010-03-31 17:46:05 +0000352 << FixItHint::CreateReplacement(Next.getLocation(), "::");
Douglas Gregorb10cd042010-02-21 18:36:56 +0000353
354 // Recover as if the user wrote '::'.
355 Next.setKind(tok::coloncolon);
356 }
Chris Lattner46646492009-12-07 01:36:53 +0000357 }
358
Chris Lattner5c7f7862009-06-26 03:52:38 +0000359 if (Next.is(tok::coloncolon)) {
Douglas Gregor77549082010-02-24 21:29:12 +0000360 if (CheckForDestructor && GetLookAheadToken(2).is(tok::tilde) &&
Douglas Gregor23c94db2010-07-02 17:43:08 +0000361 !Actions.isNonTypeNestedNameSpecifier(getCurScope(), SS, Tok.getLocation(),
Douglas Gregor77549082010-02-24 21:29:12 +0000362 II, ObjectType)) {
Douglas Gregord4dca082010-02-24 18:44:31 +0000363 *MayBePseudoDestructor = true;
John McCall9ba61662010-02-26 08:45:28 +0000364 return false;
Douglas Gregord4dca082010-02-24 18:44:31 +0000365 }
366
Chris Lattner5c7f7862009-06-26 03:52:38 +0000367 // We have an identifier followed by a '::'. Lookup this name
368 // as the name in a nested-name-specifier.
369 SourceLocation IdLoc = ConsumeToken();
Chris Lattner46646492009-12-07 01:36:53 +0000370 assert((Tok.is(tok::coloncolon) || Tok.is(tok::colon)) &&
371 "NextToken() not working properly!");
Chris Lattner5c7f7862009-06-26 03:52:38 +0000372 SourceLocation CCLoc = ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +0000373
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000374 HasScopeSpecifier = true;
375 if (Actions.ActOnCXXNestedNameSpecifier(getCurScope(), II, IdLoc, CCLoc,
376 ObjectType, EnteringContext, SS))
377 SS.SetInvalid(SourceRange(IdLoc, CCLoc));
378
Chris Lattner5c7f7862009-06-26 03:52:38 +0000379 continue;
380 }
Mike Stump1eb44332009-09-09 15:08:12 +0000381
Richard Trieu950be712011-09-19 19:01:00 +0000382 CheckForTemplateAndDigraph(Next, ObjectType, EnteringContext, II, SS);
Richard Smithea698b32011-04-14 21:45:45 +0000383
Chris Lattner5c7f7862009-06-26 03:52:38 +0000384 // nested-name-specifier:
385 // type-name '<'
386 if (Next.is(tok::less)) {
387 TemplateTy Template;
Douglas Gregor014e88d2009-11-03 23:16:33 +0000388 UnqualifiedId TemplateName;
389 TemplateName.setIdentifier(&II, Tok.getLocation());
Douglas Gregor1fd6d442010-05-21 23:18:07 +0000390 bool MemberOfUnknownSpecialization;
Douglas Gregor23c94db2010-07-02 17:43:08 +0000391 if (TemplateNameKind TNK = Actions.isTemplateName(getCurScope(), SS,
Abramo Bagnara7c153532010-08-06 12:11:11 +0000392 /*hasTemplateKeyword=*/false,
Douglas Gregor014e88d2009-11-03 23:16:33 +0000393 TemplateName,
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000394 ObjectType,
Douglas Gregor495c35d2009-08-25 22:51:20 +0000395 EnteringContext,
Douglas Gregor1fd6d442010-05-21 23:18:07 +0000396 Template,
397 MemberOfUnknownSpecialization)) {
David Blaikie6796fc12011-11-07 03:30:03 +0000398 // We have found a template name, so annotate this token
Chris Lattner5c7f7862009-06-26 03:52:38 +0000399 // with a template-id annotation. We do not permit the
400 // template-id to be translated into a type annotation,
401 // because some clients (e.g., the parsing of class template
402 // specializations) still want to see the original template-id
403 // token.
Douglas Gregorca1bdd72009-11-04 00:56:37 +0000404 ConsumeToken();
Abramo Bagnarae4b92762012-01-27 09:46:47 +0000405 if (AnnotateTemplateIdToken(Template, TNK, SS, SourceLocation(),
406 TemplateName, false))
John McCall9ba61662010-02-26 08:45:28 +0000407 return true;
Chris Lattner5c7f7862009-06-26 03:52:38 +0000408 continue;
Douglas Gregord5ab9b02010-05-21 23:43:39 +0000409 }
410
411 if (MemberOfUnknownSpecialization && (ObjectType || SS.isSet()) &&
Francois Pichet4147d302011-03-27 19:41:34 +0000412 (IsTypename || IsTemplateArgumentList(1))) {
Douglas Gregord5ab9b02010-05-21 23:43:39 +0000413 // We have something like t::getAs<T>, where getAs is a
414 // member of an unknown specialization. However, this will only
415 // parse correctly as a template, so suggest the keyword 'template'
416 // before 'getAs' and treat this as a dependent template name.
Francois Pichet4147d302011-03-27 19:41:34 +0000417 unsigned DiagID = diag::err_missing_dependent_template_keyword;
Francois Pichet62ec1f22011-09-17 17:15:52 +0000418 if (getLang().MicrosoftExt)
Francois Pichetcf320c62011-04-22 08:25:24 +0000419 DiagID = diag::warn_missing_dependent_template_keyword;
Francois Pichet4147d302011-03-27 19:41:34 +0000420
421 Diag(Tok.getLocation(), DiagID)
Douglas Gregord5ab9b02010-05-21 23:43:39 +0000422 << II.getName()
423 << FixItHint::CreateInsertion(Tok.getLocation(), "template ");
424
Douglas Gregord6ab2322010-06-16 23:00:59 +0000425 if (TemplateNameKind TNK
Douglas Gregor23c94db2010-07-02 17:43:08 +0000426 = Actions.ActOnDependentTemplateName(getCurScope(),
Abramo Bagnarae4b92762012-01-27 09:46:47 +0000427 SS, SourceLocation(),
Douglas Gregord6ab2322010-06-16 23:00:59 +0000428 TemplateName, ObjectType,
429 EnteringContext, Template)) {
430 // Consume the identifier.
431 ConsumeToken();
Abramo Bagnarae4b92762012-01-27 09:46:47 +0000432 if (AnnotateTemplateIdToken(Template, TNK, SS, SourceLocation(),
433 TemplateName, false))
434 return true;
Douglas Gregord6ab2322010-06-16 23:00:59 +0000435 }
436 else
Douglas Gregord5ab9b02010-05-21 23:43:39 +0000437 return true;
Douglas Gregord6ab2322010-06-16 23:00:59 +0000438
Douglas Gregord5ab9b02010-05-21 23:43:39 +0000439 continue;
Chris Lattner5c7f7862009-06-26 03:52:38 +0000440 }
441 }
442
Douglas Gregor39a8de12009-02-25 19:37:18 +0000443 // We don't have any tokens that form the beginning of a
444 // nested-name-specifier, so we're done.
445 break;
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000446 }
Mike Stump1eb44332009-09-09 15:08:12 +0000447
Douglas Gregord4dca082010-02-24 18:44:31 +0000448 // Even if we didn't see any pieces of a nested-name-specifier, we
449 // still check whether there is a tilde in this position, which
450 // indicates a potential pseudo-destructor.
451 if (CheckForDestructor && Tok.is(tok::tilde))
452 *MayBePseudoDestructor = true;
453
John McCall9ba61662010-02-26 08:45:28 +0000454 return false;
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000455}
456
457/// ParseCXXIdExpression - Handle id-expression.
458///
459/// id-expression:
460/// unqualified-id
461/// qualified-id
462///
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000463/// qualified-id:
464/// '::'[opt] nested-name-specifier 'template'[opt] unqualified-id
465/// '::' identifier
466/// '::' operator-function-id
Douglas Gregoredce4dd2009-06-30 22:34:41 +0000467/// '::' template-id
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000468///
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000469/// NOTE: The standard specifies that, for qualified-id, the parser does not
470/// expect:
471///
472/// '::' conversion-function-id
473/// '::' '~' class-name
474///
475/// This may cause a slight inconsistency on diagnostics:
476///
477/// class C {};
478/// namespace A {}
479/// void f() {
480/// :: A :: ~ C(); // Some Sema error about using destructor with a
481/// // namespace.
482/// :: ~ C(); // Some Parser error like 'unexpected ~'.
483/// }
484///
485/// We simplify the parser a bit and make it work like:
486///
487/// qualified-id:
488/// '::'[opt] nested-name-specifier 'template'[opt] unqualified-id
489/// '::' unqualified-id
490///
491/// That way Sema can handle and report similar errors for namespaces and the
492/// global scope.
493///
Sebastian Redlebc07d52009-02-03 20:19:35 +0000494/// The isAddressOfOperand parameter indicates that this id-expression is a
495/// direct operand of the address-of operator. This is, besides member contexts,
496/// the only place where a qualified-id naming a non-static class member may
497/// appear.
498///
John McCall60d7b3a2010-08-24 06:29:42 +0000499ExprResult Parser::ParseCXXIdExpression(bool isAddressOfOperand) {
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000500 // qualified-id:
501 // '::'[opt] nested-name-specifier 'template'[opt] unqualified-id
502 // '::' unqualified-id
503 //
504 CXXScopeSpec SS;
Douglas Gregorefaa93a2011-11-07 17:33:42 +0000505 ParseOptionalCXXScopeSpecifier(SS, ParsedType(), /*EnteringContext=*/false);
Abramo Bagnarae4b92762012-01-27 09:46:47 +0000506
507 SourceLocation TemplateKWLoc;
Douglas Gregor02a24ee2009-11-03 16:56:39 +0000508 UnqualifiedId Name;
Abramo Bagnarae4b92762012-01-27 09:46:47 +0000509 if (ParseUnqualifiedId(SS,
510 /*EnteringContext=*/false,
511 /*AllowDestructorName=*/false,
512 /*AllowConstructorName=*/false,
John McCallb3d87482010-08-24 05:47:05 +0000513 /*ObjectType=*/ ParsedType(),
Abramo Bagnarae4b92762012-01-27 09:46:47 +0000514 TemplateKWLoc,
Douglas Gregor02a24ee2009-11-03 16:56:39 +0000515 Name))
516 return ExprError();
John McCallb681b612009-11-22 02:49:43 +0000517
518 // This is only the direct operand of an & operator if it is not
519 // followed by a postfix-expression suffix.
John McCall9c72c602010-08-27 09:08:28 +0000520 if (isAddressOfOperand && isPostfixExpressionSuffixStart())
521 isAddressOfOperand = false;
Abramo Bagnarae4b92762012-01-27 09:46:47 +0000522
523 return Actions.ActOnIdExpression(getCurScope(), SS, TemplateKWLoc, Name,
524 Tok.is(tok::l_paren), isAddressOfOperand);
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000525}
526
Douglas Gregorae7902c2011-08-04 15:30:47 +0000527/// ParseLambdaExpression - Parse a C++0x lambda expression.
528///
529/// lambda-expression:
530/// lambda-introducer lambda-declarator[opt] compound-statement
531///
532/// lambda-introducer:
533/// '[' lambda-capture[opt] ']'
534///
535/// lambda-capture:
536/// capture-default
537/// capture-list
538/// capture-default ',' capture-list
539///
540/// capture-default:
541/// '&'
542/// '='
543///
544/// capture-list:
545/// capture
546/// capture-list ',' capture
547///
548/// capture:
549/// identifier
550/// '&' identifier
551/// 'this'
552///
553/// lambda-declarator:
554/// '(' parameter-declaration-clause ')' attribute-specifier[opt]
555/// 'mutable'[opt] exception-specification[opt]
556/// trailing-return-type[opt]
557///
558ExprResult Parser::ParseLambdaExpression() {
559 // Parse lambda-introducer.
560 LambdaIntroducer Intro;
561
562 llvm::Optional<unsigned> DiagID(ParseLambdaIntroducer(Intro));
563 if (DiagID) {
564 Diag(Tok, DiagID.getValue());
565 SkipUntil(tok::r_square);
Eli Friedmandc3b7232012-01-04 02:40:39 +0000566 SkipUntil(tok::l_brace);
567 SkipUntil(tok::r_brace);
568 return ExprError();
Douglas Gregorae7902c2011-08-04 15:30:47 +0000569 }
570
571 return ParseLambdaExpressionAfterIntroducer(Intro);
572}
573
574/// TryParseLambdaExpression - Use lookahead and potentially tentative
575/// parsing to determine if we are looking at a C++0x lambda expression, and parse
576/// it if we are.
577///
578/// If we are not looking at a lambda expression, returns ExprError().
579ExprResult Parser::TryParseLambdaExpression() {
580 assert(getLang().CPlusPlus0x
581 && Tok.is(tok::l_square)
582 && "Not at the start of a possible lambda expression.");
583
584 const Token Next = NextToken(), After = GetLookAheadToken(2);
585
586 // If lookahead indicates this is a lambda...
587 if (Next.is(tok::r_square) || // []
588 Next.is(tok::equal) || // [=
589 (Next.is(tok::amp) && // [&] or [&,
590 (After.is(tok::r_square) ||
591 After.is(tok::comma))) ||
592 (Next.is(tok::identifier) && // [identifier]
593 After.is(tok::r_square))) {
594 return ParseLambdaExpression();
595 }
596
Eli Friedmandc3b7232012-01-04 02:40:39 +0000597 // If lookahead indicates an ObjC message send...
598 // [identifier identifier
Douglas Gregorae7902c2011-08-04 15:30:47 +0000599 if (Next.is(tok::identifier) && After.is(tok::identifier)) {
Eli Friedmandc3b7232012-01-04 02:40:39 +0000600 return ExprEmpty();
Douglas Gregorae7902c2011-08-04 15:30:47 +0000601 }
602
Eli Friedmandc3b7232012-01-04 02:40:39 +0000603 // Here, we're stuck: lambda introducers and Objective-C message sends are
604 // unambiguous, but it requires arbitrary lookhead. [a,b,c,d,e,f,g] is a
605 // lambda, and [a,b,c,d,e,f,g h] is a Objective-C message send. Instead of
606 // writing two routines to parse a lambda introducer, just try to parse
607 // a lambda introducer first, and fall back if that fails.
608 // (TryParseLambdaIntroducer never produces any diagnostic output.)
Douglas Gregorae7902c2011-08-04 15:30:47 +0000609 LambdaIntroducer Intro;
610 if (TryParseLambdaIntroducer(Intro))
Eli Friedmandc3b7232012-01-04 02:40:39 +0000611 return ExprEmpty();
Douglas Gregorae7902c2011-08-04 15:30:47 +0000612 return ParseLambdaExpressionAfterIntroducer(Intro);
613}
614
615/// ParseLambdaExpression - Parse a lambda introducer.
616///
617/// Returns a DiagnosticID if it hit something unexpected.
Douglas Gregor81f3bff2012-02-15 15:34:24 +0000618llvm::Optional<unsigned> Parser::ParseLambdaIntroducer(LambdaIntroducer &Intro){
Douglas Gregorae7902c2011-08-04 15:30:47 +0000619 typedef llvm::Optional<unsigned> DiagResult;
620
621 assert(Tok.is(tok::l_square) && "Lambda expressions begin with '['.");
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000622 BalancedDelimiterTracker T(*this, tok::l_square);
623 T.consumeOpen();
624
625 Intro.Range.setBegin(T.getOpenLocation());
Douglas Gregorae7902c2011-08-04 15:30:47 +0000626
627 bool first = true;
628
629 // Parse capture-default.
630 if (Tok.is(tok::amp) &&
631 (NextToken().is(tok::comma) || NextToken().is(tok::r_square))) {
632 Intro.Default = LCD_ByRef;
Douglas Gregor3ac109c2012-02-10 17:46:20 +0000633 Intro.DefaultLoc = ConsumeToken();
Douglas Gregorae7902c2011-08-04 15:30:47 +0000634 first = false;
635 } else if (Tok.is(tok::equal)) {
636 Intro.Default = LCD_ByCopy;
Douglas Gregor3ac109c2012-02-10 17:46:20 +0000637 Intro.DefaultLoc = ConsumeToken();
Douglas Gregorae7902c2011-08-04 15:30:47 +0000638 first = false;
639 }
640
641 while (Tok.isNot(tok::r_square)) {
642 if (!first) {
Douglas Gregor81f3bff2012-02-15 15:34:24 +0000643 if (Tok.isNot(tok::comma)) {
644 if (Tok.is(tok::code_completion)) {
645 Actions.CodeCompleteLambdaIntroducer(getCurScope(), Intro,
646 /*AfterAmpersand=*/false);
647 ConsumeCodeCompletionToken();
648 break;
649 }
650
Douglas Gregorae7902c2011-08-04 15:30:47 +0000651 return DiagResult(diag::err_expected_comma_or_rsquare);
Douglas Gregor81f3bff2012-02-15 15:34:24 +0000652 }
Douglas Gregorae7902c2011-08-04 15:30:47 +0000653 ConsumeToken();
654 }
655
Douglas Gregor81f3bff2012-02-15 15:34:24 +0000656 if (Tok.is(tok::code_completion)) {
657 // If we're in Objective-C++ and we have a bare '[', then this is more
658 // likely to be a message receiver.
659 if (getLang().ObjC1 && first)
660 Actions.CodeCompleteObjCMessageReceiver(getCurScope());
661 else
662 Actions.CodeCompleteLambdaIntroducer(getCurScope(), Intro,
663 /*AfterAmpersand=*/false);
664 ConsumeCodeCompletionToken();
665 break;
666 }
Douglas Gregorae7902c2011-08-04 15:30:47 +0000667
Douglas Gregor81f3bff2012-02-15 15:34:24 +0000668 first = false;
669
Douglas Gregorae7902c2011-08-04 15:30:47 +0000670 // Parse capture.
671 LambdaCaptureKind Kind = LCK_ByCopy;
672 SourceLocation Loc;
673 IdentifierInfo* Id = 0;
Douglas Gregora7365242012-02-14 19:27:52 +0000674 SourceLocation EllipsisLoc;
675
Douglas Gregorae7902c2011-08-04 15:30:47 +0000676 if (Tok.is(tok::kw_this)) {
677 Kind = LCK_This;
678 Loc = ConsumeToken();
679 } else {
680 if (Tok.is(tok::amp)) {
681 Kind = LCK_ByRef;
682 ConsumeToken();
Douglas Gregor81f3bff2012-02-15 15:34:24 +0000683
684 if (Tok.is(tok::code_completion)) {
685 Actions.CodeCompleteLambdaIntroducer(getCurScope(), Intro,
686 /*AfterAmpersand=*/true);
687 ConsumeCodeCompletionToken();
688 break;
689 }
Douglas Gregorae7902c2011-08-04 15:30:47 +0000690 }
691
692 if (Tok.is(tok::identifier)) {
693 Id = Tok.getIdentifierInfo();
694 Loc = ConsumeToken();
Douglas Gregora7365242012-02-14 19:27:52 +0000695
696 if (Tok.is(tok::ellipsis))
697 EllipsisLoc = ConsumeToken();
Douglas Gregorae7902c2011-08-04 15:30:47 +0000698 } else if (Tok.is(tok::kw_this)) {
699 // FIXME: If we want to suggest a fixit here, will need to return more
700 // than just DiagnosticID. Perhaps full DiagnosticBuilder that can be
701 // Clear()ed to prevent emission in case of tentative parsing?
702 return DiagResult(diag::err_this_captured_by_reference);
703 } else {
704 return DiagResult(diag::err_expected_capture);
705 }
706 }
707
Douglas Gregora7365242012-02-14 19:27:52 +0000708 Intro.addCapture(Kind, Loc, Id, EllipsisLoc);
Douglas Gregorae7902c2011-08-04 15:30:47 +0000709 }
710
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000711 T.consumeClose();
712 Intro.Range.setEnd(T.getCloseLocation());
Douglas Gregorae7902c2011-08-04 15:30:47 +0000713
714 return DiagResult();
715}
716
Douglas Gregor81f3bff2012-02-15 15:34:24 +0000717/// TryParseLambdaIntroducer - Tentatively parse a lambda introducer.
Douglas Gregorae7902c2011-08-04 15:30:47 +0000718///
719/// Returns true if it hit something unexpected.
720bool Parser::TryParseLambdaIntroducer(LambdaIntroducer &Intro) {
721 TentativeParsingAction PA(*this);
722
723 llvm::Optional<unsigned> DiagID(ParseLambdaIntroducer(Intro));
724
725 if (DiagID) {
726 PA.Revert();
727 return true;
728 }
729
730 PA.Commit();
731 return false;
732}
733
734/// ParseLambdaExpressionAfterIntroducer - Parse the rest of a lambda
735/// expression.
736ExprResult Parser::ParseLambdaExpressionAfterIntroducer(
737 LambdaIntroducer &Intro) {
Eli Friedmandc3b7232012-01-04 02:40:39 +0000738 SourceLocation LambdaBeginLoc = Intro.Range.getBegin();
739 Diag(LambdaBeginLoc, diag::warn_cxx98_compat_lambda);
740
741 PrettyStackTraceLoc CrashInfo(PP.getSourceManager(), LambdaBeginLoc,
742 "lambda expression parsing");
743
Douglas Gregorae7902c2011-08-04 15:30:47 +0000744 // Parse lambda-declarator[opt].
745 DeclSpec DS(AttrFactory);
Eli Friedmanf88c4002012-01-04 04:41:38 +0000746 Declarator D(DS, Declarator::LambdaExprContext);
Douglas Gregorae7902c2011-08-04 15:30:47 +0000747
748 if (Tok.is(tok::l_paren)) {
749 ParseScope PrototypeScope(this,
750 Scope::FunctionPrototypeScope |
751 Scope::DeclScope);
752
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000753 SourceLocation DeclLoc, DeclEndLoc;
754 BalancedDelimiterTracker T(*this, tok::l_paren);
755 T.consumeOpen();
756 DeclLoc = T.getOpenLocation();
Douglas Gregorae7902c2011-08-04 15:30:47 +0000757
758 // Parse parameter-declaration-clause.
759 ParsedAttributes Attr(AttrFactory);
760 llvm::SmallVector<DeclaratorChunk::ParamInfo, 16> ParamInfo;
761 SourceLocation EllipsisLoc;
762
763 if (Tok.isNot(tok::r_paren))
764 ParseParameterDeclarationClause(D, Attr, ParamInfo, EllipsisLoc);
765
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000766 T.consumeClose();
767 DeclEndLoc = T.getCloseLocation();
Douglas Gregorae7902c2011-08-04 15:30:47 +0000768
769 // Parse 'mutable'[opt].
770 SourceLocation MutableLoc;
771 if (Tok.is(tok::kw_mutable)) {
772 MutableLoc = ConsumeToken();
773 DeclEndLoc = MutableLoc;
774 }
775
776 // Parse exception-specification[opt].
777 ExceptionSpecificationType ESpecType = EST_None;
778 SourceRange ESpecRange;
779 llvm::SmallVector<ParsedType, 2> DynamicExceptions;
780 llvm::SmallVector<SourceRange, 2> DynamicExceptionRanges;
781 ExprResult NoexceptExpr;
782 ESpecType = MaybeParseExceptionSpecification(ESpecRange,
783 DynamicExceptions,
784 DynamicExceptionRanges,
785 NoexceptExpr);
786
787 if (ESpecType != EST_None)
788 DeclEndLoc = ESpecRange.getEnd();
789
790 // Parse attribute-specifier[opt].
791 MaybeParseCXX0XAttributes(Attr, &DeclEndLoc);
792
793 // Parse trailing-return-type[opt].
794 ParsedType TrailingReturnType;
795 if (Tok.is(tok::arrow)) {
796 SourceRange Range;
797 TrailingReturnType = ParseTrailingReturnType(Range).get();
798 if (Range.getEnd().isValid())
799 DeclEndLoc = Range.getEnd();
800 }
801
802 PrototypeScope.Exit();
803
804 D.AddTypeInfo(DeclaratorChunk::getFunction(/*hasProto=*/true,
805 /*isVariadic=*/EllipsisLoc.isValid(),
806 EllipsisLoc,
807 ParamInfo.data(), ParamInfo.size(),
808 DS.getTypeQualifiers(),
809 /*RefQualifierIsLValueRef=*/true,
810 /*RefQualifierLoc=*/SourceLocation(),
Douglas Gregor43f51032011-10-19 06:04:55 +0000811 /*ConstQualifierLoc=*/SourceLocation(),
812 /*VolatileQualifierLoc=*/SourceLocation(),
Douglas Gregorae7902c2011-08-04 15:30:47 +0000813 MutableLoc,
814 ESpecType, ESpecRange.getBegin(),
815 DynamicExceptions.data(),
816 DynamicExceptionRanges.data(),
817 DynamicExceptions.size(),
818 NoexceptExpr.isUsable() ?
819 NoexceptExpr.get() : 0,
820 DeclLoc, DeclEndLoc, D,
821 TrailingReturnType),
822 Attr, DeclEndLoc);
Douglas Gregorc9ecec42012-02-16 21:53:36 +0000823 } else if (Tok.is(tok::kw_mutable) || Tok.is(tok::arrow)) {
824 // It's common to forget that one needs '()' before 'mutable' or the
825 // result type. Deal with this.
826 Diag(Tok, diag::err_lambda_missing_parens)
827 << Tok.is(tok::arrow)
828 << FixItHint::CreateInsertion(Tok.getLocation(), "() ");
829 SourceLocation DeclLoc = Tok.getLocation();
830 SourceLocation DeclEndLoc = DeclLoc;
831
832 // Parse 'mutable', if it's there.
833 SourceLocation MutableLoc;
834 if (Tok.is(tok::kw_mutable)) {
835 MutableLoc = ConsumeToken();
836 DeclEndLoc = MutableLoc;
837 }
838
839 // Parse the return type, if there is one.
840 ParsedType TrailingReturnType;
841 if (Tok.is(tok::arrow)) {
842 SourceRange Range;
843 TrailingReturnType = ParseTrailingReturnType(Range).get();
844 if (Range.getEnd().isValid())
845 DeclEndLoc = Range.getEnd();
846 }
847
848 ParsedAttributes Attr(AttrFactory);
849 D.AddTypeInfo(DeclaratorChunk::getFunction(/*hasProto=*/true,
850 /*isVariadic=*/false,
851 /*EllipsisLoc=*/SourceLocation(),
852 /*Params=*/0, /*NumParams=*/0,
853 /*TypeQuals=*/0,
854 /*RefQualifierIsLValueRef=*/true,
855 /*RefQualifierLoc=*/SourceLocation(),
856 /*ConstQualifierLoc=*/SourceLocation(),
857 /*VolatileQualifierLoc=*/SourceLocation(),
858 MutableLoc,
859 EST_None,
860 /*ESpecLoc=*/SourceLocation(),
861 /*Exceptions=*/0,
862 /*ExceptionRanges=*/0,
863 /*NumExceptions=*/0,
864 /*NoexceptExpr=*/0,
865 DeclLoc, DeclEndLoc, D,
866 TrailingReturnType),
867 Attr, DeclEndLoc);
Douglas Gregorae7902c2011-08-04 15:30:47 +0000868 }
Douglas Gregorc9ecec42012-02-16 21:53:36 +0000869
Douglas Gregorae7902c2011-08-04 15:30:47 +0000870
Eli Friedman906a7e12012-01-06 03:05:34 +0000871 // FIXME: Rename BlockScope -> ClosureScope if we decide to continue using
872 // it.
873 ParseScope BodyScope(this, Scope::BlockScope | Scope::FnScope |
Eli Friedman906a7e12012-01-06 03:05:34 +0000874 Scope::DeclScope);
875
Eli Friedmanec9ea722012-01-05 03:35:19 +0000876 Actions.ActOnStartOfLambdaDefinition(Intro, D, getCurScope());
877
Douglas Gregorae7902c2011-08-04 15:30:47 +0000878 // Parse compound-statement.
Eli Friedmandc3b7232012-01-04 02:40:39 +0000879 if (!Tok.is(tok::l_brace)) {
Douglas Gregorae7902c2011-08-04 15:30:47 +0000880 Diag(Tok, diag::err_expected_lambda_body);
Eli Friedmandc3b7232012-01-04 02:40:39 +0000881 Actions.ActOnLambdaError(LambdaBeginLoc, getCurScope());
882 return ExprError();
Douglas Gregorae7902c2011-08-04 15:30:47 +0000883 }
884
Eli Friedmandc3b7232012-01-04 02:40:39 +0000885 StmtResult Stmt(ParseCompoundStatementBody());
886 BodyScope.Exit();
887
Eli Friedmandeeab902012-01-04 02:46:53 +0000888 if (!Stmt.isInvalid())
Douglas Gregor9e8c92a2012-02-20 19:44:39 +0000889 return Actions.ActOnLambdaExpr(LambdaBeginLoc, Stmt.take(), getCurScope());
Eli Friedmandc3b7232012-01-04 02:40:39 +0000890
Eli Friedmandeeab902012-01-04 02:46:53 +0000891 Actions.ActOnLambdaError(LambdaBeginLoc, getCurScope());
892 return ExprError();
Douglas Gregorae7902c2011-08-04 15:30:47 +0000893}
894
Reid Spencer5f016e22007-07-11 17:01:13 +0000895/// ParseCXXCasts - This handles the various ways to cast expressions to another
896/// type.
897///
898/// postfix-expression: [C++ 5.2p1]
899/// 'dynamic_cast' '<' type-name '>' '(' expression ')'
900/// 'static_cast' '<' type-name '>' '(' expression ')'
901/// 'reinterpret_cast' '<' type-name '>' '(' expression ')'
902/// 'const_cast' '<' type-name '>' '(' expression ')'
903///
John McCall60d7b3a2010-08-24 06:29:42 +0000904ExprResult Parser::ParseCXXCasts() {
Reid Spencer5f016e22007-07-11 17:01:13 +0000905 tok::TokenKind Kind = Tok.getKind();
906 const char *CastName = 0; // For error messages
907
908 switch (Kind) {
David Blaikieeb2d1f12011-09-23 20:26:49 +0000909 default: llvm_unreachable("Unknown C++ cast!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000910 case tok::kw_const_cast: CastName = "const_cast"; break;
911 case tok::kw_dynamic_cast: CastName = "dynamic_cast"; break;
912 case tok::kw_reinterpret_cast: CastName = "reinterpret_cast"; break;
913 case tok::kw_static_cast: CastName = "static_cast"; break;
914 }
915
916 SourceLocation OpLoc = ConsumeToken();
917 SourceLocation LAngleBracketLoc = Tok.getLocation();
918
Richard Smithea698b32011-04-14 21:45:45 +0000919 // Check for "<::" which is parsed as "[:". If found, fix token stream,
920 // diagnose error, suggest fix, and recover parsing.
921 Token Next = NextToken();
922 if (Tok.is(tok::l_square) && Tok.getLength() == 2 && Next.is(tok::colon) &&
923 AreTokensAdjacent(PP, Tok, Next))
924 FixDigraph(*this, PP, Tok, Next, Kind, /*AtDigraph*/true);
925
Reid Spencer5f016e22007-07-11 17:01:13 +0000926 if (ExpectAndConsume(tok::less, diag::err_expected_less_after, CastName))
Sebastian Redl20df9b72008-12-11 22:51:44 +0000927 return ExprError();
Reid Spencer5f016e22007-07-11 17:01:13 +0000928
Argyrios Kyrtzidis31862ba2011-07-01 22:22:50 +0000929 // Parse the common declaration-specifiers piece.
930 DeclSpec DS(AttrFactory);
931 ParseSpecifierQualifierList(DS);
932
933 // Parse the abstract-declarator, if present.
934 Declarator DeclaratorInfo(DS, Declarator::TypeNameContext);
935 ParseDeclarator(DeclaratorInfo);
936
Reid Spencer5f016e22007-07-11 17:01:13 +0000937 SourceLocation RAngleBracketLoc = Tok.getLocation();
938
Chris Lattner1ab3b962008-11-18 07:48:38 +0000939 if (ExpectAndConsume(tok::greater, diag::err_expected_greater))
Sebastian Redl20df9b72008-12-11 22:51:44 +0000940 return ExprError(Diag(LAngleBracketLoc, diag::note_matching) << "<");
Reid Spencer5f016e22007-07-11 17:01:13 +0000941
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000942 SourceLocation LParenLoc, RParenLoc;
943 BalancedDelimiterTracker T(*this, tok::l_paren);
Reid Spencer5f016e22007-07-11 17:01:13 +0000944
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000945 if (T.expectAndConsume(diag::err_expected_lparen_after, CastName))
Argyrios Kyrtzidis21e7ad22009-05-22 10:23:16 +0000946 return ExprError();
Reid Spencer5f016e22007-07-11 17:01:13 +0000947
John McCall60d7b3a2010-08-24 06:29:42 +0000948 ExprResult Result = ParseExpression();
Mike Stump1eb44332009-09-09 15:08:12 +0000949
Argyrios Kyrtzidis21e7ad22009-05-22 10:23:16 +0000950 // Match the ')'.
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000951 T.consumeClose();
Reid Spencer5f016e22007-07-11 17:01:13 +0000952
Argyrios Kyrtzidis31862ba2011-07-01 22:22:50 +0000953 if (!Result.isInvalid() && !DeclaratorInfo.isInvalidType())
Douglas Gregor49badde2008-10-27 19:41:14 +0000954 Result = Actions.ActOnCXXNamedCast(OpLoc, Kind,
Argyrios Kyrtzidis31862ba2011-07-01 22:22:50 +0000955 LAngleBracketLoc, DeclaratorInfo,
Douglas Gregor809070a2009-02-18 17:45:20 +0000956 RAngleBracketLoc,
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000957 T.getOpenLocation(), Result.take(),
958 T.getCloseLocation());
Reid Spencer5f016e22007-07-11 17:01:13 +0000959
Sebastian Redl20df9b72008-12-11 22:51:44 +0000960 return move(Result);
Reid Spencer5f016e22007-07-11 17:01:13 +0000961}
962
Sebastian Redlc42e1182008-11-11 11:37:55 +0000963/// ParseCXXTypeid - This handles the C++ typeid expression.
964///
965/// postfix-expression: [C++ 5.2p1]
966/// 'typeid' '(' expression ')'
967/// 'typeid' '(' type-id ')'
968///
John McCall60d7b3a2010-08-24 06:29:42 +0000969ExprResult Parser::ParseCXXTypeid() {
Sebastian Redlc42e1182008-11-11 11:37:55 +0000970 assert(Tok.is(tok::kw_typeid) && "Not 'typeid'!");
971
972 SourceLocation OpLoc = ConsumeToken();
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000973 SourceLocation LParenLoc, RParenLoc;
974 BalancedDelimiterTracker T(*this, tok::l_paren);
Sebastian Redlc42e1182008-11-11 11:37:55 +0000975
976 // typeid expressions are always parenthesized.
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000977 if (T.expectAndConsume(diag::err_expected_lparen_after, "typeid"))
Sebastian Redl20df9b72008-12-11 22:51:44 +0000978 return ExprError();
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000979 LParenLoc = T.getOpenLocation();
Sebastian Redlc42e1182008-11-11 11:37:55 +0000980
John McCall60d7b3a2010-08-24 06:29:42 +0000981 ExprResult Result;
Sebastian Redlc42e1182008-11-11 11:37:55 +0000982
983 if (isTypeIdInParens()) {
Douglas Gregor809070a2009-02-18 17:45:20 +0000984 TypeResult Ty = ParseTypeName();
Sebastian Redlc42e1182008-11-11 11:37:55 +0000985
986 // Match the ')'.
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000987 T.consumeClose();
988 RParenLoc = T.getCloseLocation();
Douglas Gregor4eb4f0f2010-09-08 23:14:30 +0000989 if (Ty.isInvalid() || RParenLoc.isInvalid())
Sebastian Redl20df9b72008-12-11 22:51:44 +0000990 return ExprError();
Sebastian Redlc42e1182008-11-11 11:37:55 +0000991
992 Result = Actions.ActOnCXXTypeid(OpLoc, LParenLoc, /*isType=*/true,
John McCallb3d87482010-08-24 05:47:05 +0000993 Ty.get().getAsOpaquePtr(), RParenLoc);
Sebastian Redlc42e1182008-11-11 11:37:55 +0000994 } else {
Douglas Gregore0762c92009-06-19 23:52:42 +0000995 // C++0x [expr.typeid]p3:
Mike Stump1eb44332009-09-09 15:08:12 +0000996 // When typeid is applied to an expression other than an lvalue of a
997 // polymorphic class type [...] The expression is an unevaluated
Douglas Gregore0762c92009-06-19 23:52:42 +0000998 // operand (Clause 5).
999 //
Mike Stump1eb44332009-09-09 15:08:12 +00001000 // Note that we can't tell whether the expression is an lvalue of a
Eli Friedmanef331b72012-01-20 01:26:23 +00001001 // polymorphic class type until after we've parsed the expression; we
1002 // speculatively assume the subexpression is unevaluated, and fix it up
1003 // later.
1004 EnterExpressionEvaluationContext Unevaluated(Actions, Sema::Unevaluated);
Sebastian Redlc42e1182008-11-11 11:37:55 +00001005 Result = ParseExpression();
1006
1007 // Match the ')'.
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001008 if (Result.isInvalid())
Sebastian Redlc42e1182008-11-11 11:37:55 +00001009 SkipUntil(tok::r_paren);
1010 else {
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00001011 T.consumeClose();
1012 RParenLoc = T.getCloseLocation();
Douglas Gregor4eb4f0f2010-09-08 23:14:30 +00001013 if (RParenLoc.isInvalid())
1014 return ExprError();
Douglas Gregorfadb53b2011-03-12 01:48:56 +00001015
Sebastian Redlc42e1182008-11-11 11:37:55 +00001016 Result = Actions.ActOnCXXTypeid(OpLoc, LParenLoc, /*isType=*/false,
Sebastian Redleffa8d12008-12-10 00:02:53 +00001017 Result.release(), RParenLoc);
Sebastian Redlc42e1182008-11-11 11:37:55 +00001018 }
1019 }
1020
Sebastian Redl20df9b72008-12-11 22:51:44 +00001021 return move(Result);
Sebastian Redlc42e1182008-11-11 11:37:55 +00001022}
1023
Francois Pichet01b7c302010-09-08 12:20:18 +00001024/// ParseCXXUuidof - This handles the Microsoft C++ __uuidof expression.
1025///
1026/// '__uuidof' '(' expression ')'
1027/// '__uuidof' '(' type-id ')'
1028///
1029ExprResult Parser::ParseCXXUuidof() {
1030 assert(Tok.is(tok::kw___uuidof) && "Not '__uuidof'!");
1031
1032 SourceLocation OpLoc = ConsumeToken();
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00001033 BalancedDelimiterTracker T(*this, tok::l_paren);
Francois Pichet01b7c302010-09-08 12:20:18 +00001034
1035 // __uuidof expressions are always parenthesized.
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00001036 if (T.expectAndConsume(diag::err_expected_lparen_after, "__uuidof"))
Francois Pichet01b7c302010-09-08 12:20:18 +00001037 return ExprError();
1038
1039 ExprResult Result;
1040
1041 if (isTypeIdInParens()) {
1042 TypeResult Ty = ParseTypeName();
1043
1044 // Match the ')'.
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00001045 T.consumeClose();
Francois Pichet01b7c302010-09-08 12:20:18 +00001046
1047 if (Ty.isInvalid())
1048 return ExprError();
1049
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00001050 Result = Actions.ActOnCXXUuidof(OpLoc, T.getOpenLocation(), /*isType=*/true,
1051 Ty.get().getAsOpaquePtr(),
1052 T.getCloseLocation());
Francois Pichet01b7c302010-09-08 12:20:18 +00001053 } else {
1054 EnterExpressionEvaluationContext Unevaluated(Actions, Sema::Unevaluated);
1055 Result = ParseExpression();
1056
1057 // Match the ')'.
1058 if (Result.isInvalid())
1059 SkipUntil(tok::r_paren);
1060 else {
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00001061 T.consumeClose();
Francois Pichet01b7c302010-09-08 12:20:18 +00001062
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00001063 Result = Actions.ActOnCXXUuidof(OpLoc, T.getOpenLocation(),
1064 /*isType=*/false,
1065 Result.release(), T.getCloseLocation());
Francois Pichet01b7c302010-09-08 12:20:18 +00001066 }
1067 }
1068
1069 return move(Result);
1070}
1071
Douglas Gregord4dca082010-02-24 18:44:31 +00001072/// \brief Parse a C++ pseudo-destructor expression after the base,
1073/// . or -> operator, and nested-name-specifier have already been
1074/// parsed.
1075///
1076/// postfix-expression: [C++ 5.2]
1077/// postfix-expression . pseudo-destructor-name
1078/// postfix-expression -> pseudo-destructor-name
1079///
1080/// pseudo-destructor-name:
1081/// ::[opt] nested-name-specifier[opt] type-name :: ~type-name
1082/// ::[opt] nested-name-specifier template simple-template-id ::
1083/// ~type-name
1084/// ::[opt] nested-name-specifier[opt] ~type-name
1085///
John McCall60d7b3a2010-08-24 06:29:42 +00001086ExprResult
Douglas Gregord4dca082010-02-24 18:44:31 +00001087Parser::ParseCXXPseudoDestructor(ExprArg Base, SourceLocation OpLoc,
1088 tok::TokenKind OpKind,
1089 CXXScopeSpec &SS,
John McCallb3d87482010-08-24 05:47:05 +00001090 ParsedType ObjectType) {
Douglas Gregord4dca082010-02-24 18:44:31 +00001091 // We're parsing either a pseudo-destructor-name or a dependent
1092 // member access that has the same form as a
1093 // pseudo-destructor-name. We parse both in the same way and let
1094 // the action model sort them out.
1095 //
1096 // Note that the ::[opt] nested-name-specifier[opt] has already
1097 // been parsed, and if there was a simple-template-id, it has
1098 // been coalesced into a template-id annotation token.
1099 UnqualifiedId FirstTypeName;
1100 SourceLocation CCLoc;
1101 if (Tok.is(tok::identifier)) {
1102 FirstTypeName.setIdentifier(Tok.getIdentifierInfo(), Tok.getLocation());
1103 ConsumeToken();
1104 assert(Tok.is(tok::coloncolon) &&"ParseOptionalCXXScopeSpecifier fail");
1105 CCLoc = ConsumeToken();
1106 } else if (Tok.is(tok::annot_template_id)) {
Abramo Bagnarae4b92762012-01-27 09:46:47 +00001107 // FIXME: retrieve TemplateKWLoc from template-id annotation and
1108 // store it in the pseudo-dtor node (to be used when instantiating it).
Douglas Gregord4dca082010-02-24 18:44:31 +00001109 FirstTypeName.setTemplateId(
1110 (TemplateIdAnnotation *)Tok.getAnnotationValue());
1111 ConsumeToken();
1112 assert(Tok.is(tok::coloncolon) &&"ParseOptionalCXXScopeSpecifier fail");
1113 CCLoc = ConsumeToken();
1114 } else {
1115 FirstTypeName.setIdentifier(0, SourceLocation());
1116 }
1117
1118 // Parse the tilde.
1119 assert(Tok.is(tok::tilde) && "ParseOptionalCXXScopeSpecifier fail");
1120 SourceLocation TildeLoc = ConsumeToken();
David Blaikie91ec7892011-12-16 16:03:09 +00001121
1122 if (Tok.is(tok::kw_decltype) && !FirstTypeName.isValid() && SS.isEmpty()) {
1123 DeclSpec DS(AttrFactory);
Benjamin Kramer85c60db2011-12-18 12:18:02 +00001124 ParseDecltypeSpecifier(DS);
David Blaikie91ec7892011-12-16 16:03:09 +00001125 if (DS.getTypeSpecType() == TST_error)
1126 return ExprError();
1127 return Actions.ActOnPseudoDestructorExpr(getCurScope(), Base, OpLoc,
1128 OpKind, TildeLoc, DS,
1129 Tok.is(tok::l_paren));
1130 }
1131
Douglas Gregord4dca082010-02-24 18:44:31 +00001132 if (!Tok.is(tok::identifier)) {
1133 Diag(Tok, diag::err_destructor_tilde_identifier);
1134 return ExprError();
1135 }
1136
1137 // Parse the second type.
1138 UnqualifiedId SecondTypeName;
1139 IdentifierInfo *Name = Tok.getIdentifierInfo();
1140 SourceLocation NameLoc = ConsumeToken();
1141 SecondTypeName.setIdentifier(Name, NameLoc);
1142
1143 // If there is a '<', the second type name is a template-id. Parse
1144 // it as such.
1145 if (Tok.is(tok::less) &&
Abramo Bagnarae4b92762012-01-27 09:46:47 +00001146 ParseUnqualifiedIdTemplateId(SS, SourceLocation(),
1147 Name, NameLoc,
1148 false, ObjectType, SecondTypeName,
1149 /*AssumeTemplateName=*/true))
Douglas Gregord4dca082010-02-24 18:44:31 +00001150 return ExprError();
1151
John McCall9ae2f072010-08-23 23:25:46 +00001152 return Actions.ActOnPseudoDestructorExpr(getCurScope(), Base,
1153 OpLoc, OpKind,
Douglas Gregord4dca082010-02-24 18:44:31 +00001154 SS, FirstTypeName, CCLoc,
1155 TildeLoc, SecondTypeName,
1156 Tok.is(tok::l_paren));
1157}
1158
Reid Spencer5f016e22007-07-11 17:01:13 +00001159/// ParseCXXBoolLiteral - This handles the C++ Boolean literals.
1160///
1161/// boolean-literal: [C++ 2.13.5]
1162/// 'true'
1163/// 'false'
John McCall60d7b3a2010-08-24 06:29:42 +00001164ExprResult Parser::ParseCXXBoolLiteral() {
Reid Spencer5f016e22007-07-11 17:01:13 +00001165 tok::TokenKind Kind = Tok.getKind();
Sebastian Redlf53597f2009-03-15 17:47:39 +00001166 return Actions.ActOnCXXBoolLiteral(ConsumeToken(), Kind);
Reid Spencer5f016e22007-07-11 17:01:13 +00001167}
Chris Lattner50dd2892008-02-26 00:51:44 +00001168
1169/// ParseThrowExpression - This handles the C++ throw expression.
1170///
1171/// throw-expression: [C++ 15]
1172/// 'throw' assignment-expression[opt]
John McCall60d7b3a2010-08-24 06:29:42 +00001173ExprResult Parser::ParseThrowExpression() {
Chris Lattner50dd2892008-02-26 00:51:44 +00001174 assert(Tok.is(tok::kw_throw) && "Not throw!");
Chris Lattner50dd2892008-02-26 00:51:44 +00001175 SourceLocation ThrowLoc = ConsumeToken(); // Eat the throw token.
Sebastian Redl20df9b72008-12-11 22:51:44 +00001176
Chris Lattner2a2819a2008-04-06 06:02:23 +00001177 // If the current token isn't the start of an assignment-expression,
1178 // then the expression is not present. This handles things like:
1179 // "C ? throw : (void)42", which is crazy but legal.
1180 switch (Tok.getKind()) { // FIXME: move this predicate somewhere common.
1181 case tok::semi:
1182 case tok::r_paren:
1183 case tok::r_square:
1184 case tok::r_brace:
1185 case tok::colon:
1186 case tok::comma:
Douglas Gregorbca01b42011-07-06 22:04:06 +00001187 return Actions.ActOnCXXThrow(getCurScope(), ThrowLoc, 0);
Chris Lattner50dd2892008-02-26 00:51:44 +00001188
Chris Lattner2a2819a2008-04-06 06:02:23 +00001189 default:
John McCall60d7b3a2010-08-24 06:29:42 +00001190 ExprResult Expr(ParseAssignmentExpression());
Sebastian Redl20df9b72008-12-11 22:51:44 +00001191 if (Expr.isInvalid()) return move(Expr);
Douglas Gregorbca01b42011-07-06 22:04:06 +00001192 return Actions.ActOnCXXThrow(getCurScope(), ThrowLoc, Expr.take());
Chris Lattner2a2819a2008-04-06 06:02:23 +00001193 }
Chris Lattner50dd2892008-02-26 00:51:44 +00001194}
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001195
1196/// ParseCXXThis - This handles the C++ 'this' pointer.
1197///
1198/// C++ 9.3.2: In the body of a non-static member function, the keyword this is
1199/// a non-lvalue expression whose value is the address of the object for which
1200/// the function is called.
John McCall60d7b3a2010-08-24 06:29:42 +00001201ExprResult Parser::ParseCXXThis() {
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001202 assert(Tok.is(tok::kw_this) && "Not 'this'!");
1203 SourceLocation ThisLoc = ConsumeToken();
Sebastian Redlf53597f2009-03-15 17:47:39 +00001204 return Actions.ActOnCXXThis(ThisLoc);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001205}
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +00001206
1207/// ParseCXXTypeConstructExpression - Parse construction of a specified type.
1208/// Can be interpreted either as function-style casting ("int(x)")
1209/// or class type construction ("ClassType(x,y,z)")
1210/// or creation of a value-initialized type ("int()").
Sebastian Redldbef1bb2011-06-05 12:23:16 +00001211/// See [C++ 5.2.3].
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +00001212///
1213/// postfix-expression: [C++ 5.2p1]
Sebastian Redldbef1bb2011-06-05 12:23:16 +00001214/// simple-type-specifier '(' expression-list[opt] ')'
1215/// [C++0x] simple-type-specifier braced-init-list
1216/// typename-specifier '(' expression-list[opt] ')'
1217/// [C++0x] typename-specifier braced-init-list
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +00001218///
John McCall60d7b3a2010-08-24 06:29:42 +00001219ExprResult
Sebastian Redl20df9b72008-12-11 22:51:44 +00001220Parser::ParseCXXTypeConstructExpression(const DeclSpec &DS) {
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +00001221 Declarator DeclaratorInfo(DS, Declarator::TypeNameContext);
John McCallb3d87482010-08-24 05:47:05 +00001222 ParsedType TypeRep = Actions.ActOnTypeName(getCurScope(), DeclaratorInfo).get();
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +00001223
Sebastian Redldbef1bb2011-06-05 12:23:16 +00001224 assert((Tok.is(tok::l_paren) ||
1225 (getLang().CPlusPlus0x && Tok.is(tok::l_brace)))
1226 && "Expected '(' or '{'!");
Douglas Gregorbc61bd82011-01-11 00:33:19 +00001227
Sebastian Redldbef1bb2011-06-05 12:23:16 +00001228 if (Tok.is(tok::l_brace)) {
Sebastian Redl6dc00f62012-02-12 18:41:05 +00001229 ExprResult Init = ParseBraceInitializer();
1230 if (Init.isInvalid())
1231 return Init;
1232 Expr *InitList = Init.take();
1233 return Actions.ActOnCXXTypeConstructExpr(TypeRep, SourceLocation(),
1234 MultiExprArg(&InitList, 1),
1235 SourceLocation());
Sebastian Redldbef1bb2011-06-05 12:23:16 +00001236 } else {
1237 GreaterThanIsOperatorScope G(GreaterThanIsOperator, true);
1238
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00001239 BalancedDelimiterTracker T(*this, tok::l_paren);
1240 T.consumeOpen();
Sebastian Redldbef1bb2011-06-05 12:23:16 +00001241
1242 ExprVector Exprs(Actions);
1243 CommaLocsTy CommaLocs;
1244
1245 if (Tok.isNot(tok::r_paren)) {
1246 if (ParseExpressionList(Exprs, CommaLocs)) {
1247 SkipUntil(tok::r_paren);
1248 return ExprError();
1249 }
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +00001250 }
Sebastian Redldbef1bb2011-06-05 12:23:16 +00001251
1252 // Match the ')'.
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00001253 T.consumeClose();
Sebastian Redldbef1bb2011-06-05 12:23:16 +00001254
1255 // TypeRep could be null, if it references an invalid typedef.
1256 if (!TypeRep)
1257 return ExprError();
1258
1259 assert((Exprs.size() == 0 || Exprs.size()-1 == CommaLocs.size())&&
1260 "Unexpected number of commas!");
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00001261 return Actions.ActOnCXXTypeConstructExpr(TypeRep, T.getOpenLocation(),
1262 move_arg(Exprs),
1263 T.getCloseLocation());
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +00001264 }
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +00001265}
1266
Douglas Gregor99e9b4d2009-11-25 00:27:52 +00001267/// ParseCXXCondition - if/switch/while condition expression.
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +00001268///
1269/// condition:
1270/// expression
1271/// type-specifier-seq declarator '=' assignment-expression
1272/// [GNU] type-specifier-seq declarator simple-asm-expr[opt] attributes[opt]
1273/// '=' assignment-expression
1274///
Douglas Gregor99e9b4d2009-11-25 00:27:52 +00001275/// \param ExprResult if the condition was parsed as an expression, the
1276/// parsed expression.
1277///
1278/// \param DeclResult if the condition was parsed as a declaration, the
1279/// parsed declaration.
1280///
Douglas Gregor586596f2010-05-06 17:25:47 +00001281/// \param Loc The location of the start of the statement that requires this
1282/// condition, e.g., the "for" in a for loop.
1283///
1284/// \param ConvertToBoolean Whether the condition expression should be
1285/// converted to a boolean value.
1286///
Douglas Gregor99e9b4d2009-11-25 00:27:52 +00001287/// \returns true if there was a parsing, false otherwise.
John McCall60d7b3a2010-08-24 06:29:42 +00001288bool Parser::ParseCXXCondition(ExprResult &ExprOut,
1289 Decl *&DeclOut,
Douglas Gregor586596f2010-05-06 17:25:47 +00001290 SourceLocation Loc,
1291 bool ConvertToBoolean) {
Douglas Gregor01dfea02010-01-10 23:08:15 +00001292 if (Tok.is(tok::code_completion)) {
John McCallf312b1e2010-08-26 23:41:50 +00001293 Actions.CodeCompleteOrdinaryName(getCurScope(), Sema::PCC_Condition);
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00001294 cutOffParsing();
1295 return true;
Douglas Gregor01dfea02010-01-10 23:08:15 +00001296 }
1297
Douglas Gregor99e9b4d2009-11-25 00:27:52 +00001298 if (!isCXXConditionDeclaration()) {
Douglas Gregor586596f2010-05-06 17:25:47 +00001299 // Parse the expression.
John McCall60d7b3a2010-08-24 06:29:42 +00001300 ExprOut = ParseExpression(); // expression
1301 DeclOut = 0;
1302 if (ExprOut.isInvalid())
Douglas Gregor586596f2010-05-06 17:25:47 +00001303 return true;
1304
1305 // If required, convert to a boolean value.
1306 if (ConvertToBoolean)
John McCall60d7b3a2010-08-24 06:29:42 +00001307 ExprOut
1308 = Actions.ActOnBooleanCondition(getCurScope(), Loc, ExprOut.get());
1309 return ExprOut.isInvalid();
Douglas Gregor99e9b4d2009-11-25 00:27:52 +00001310 }
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +00001311
1312 // type-specifier-seq
John McCall0b7e6782011-03-24 11:26:52 +00001313 DeclSpec DS(AttrFactory);
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +00001314 ParseSpecifierQualifierList(DS);
1315
1316 // declarator
1317 Declarator DeclaratorInfo(DS, Declarator::ConditionContext);
1318 ParseDeclarator(DeclaratorInfo);
1319
1320 // simple-asm-expr[opt]
1321 if (Tok.is(tok::kw_asm)) {
Sebastian Redlab197ba2009-02-09 18:23:29 +00001322 SourceLocation Loc;
John McCall60d7b3a2010-08-24 06:29:42 +00001323 ExprResult AsmLabel(ParseSimpleAsm(&Loc));
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001324 if (AsmLabel.isInvalid()) {
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +00001325 SkipUntil(tok::semi);
Douglas Gregor99e9b4d2009-11-25 00:27:52 +00001326 return true;
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +00001327 }
Sebastian Redleffa8d12008-12-10 00:02:53 +00001328 DeclaratorInfo.setAsmLabel(AsmLabel.release());
Sebastian Redlab197ba2009-02-09 18:23:29 +00001329 DeclaratorInfo.SetRangeEnd(Loc);
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +00001330 }
1331
1332 // If attributes are present, parse them.
John McCall7f040a92010-12-24 02:08:15 +00001333 MaybeParseGNUAttributes(DeclaratorInfo);
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +00001334
Douglas Gregor99e9b4d2009-11-25 00:27:52 +00001335 // Type-check the declaration itself.
John McCall60d7b3a2010-08-24 06:29:42 +00001336 DeclResult Dcl = Actions.ActOnCXXConditionDeclaration(getCurScope(),
John McCall7f040a92010-12-24 02:08:15 +00001337 DeclaratorInfo);
John McCall60d7b3a2010-08-24 06:29:42 +00001338 DeclOut = Dcl.get();
1339 ExprOut = ExprError();
Argyrios Kyrtzidisa6eb5f82010-10-08 02:39:23 +00001340
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +00001341 // '=' assignment-expression
Richard Trieud6c7c672012-01-18 22:54:52 +00001342 // If a '==' or '+=' is found, suggest a fixit to '='.
Richard Trieufcaf27e2012-01-19 22:01:51 +00001343 if (isTokenEqualOrEqualTypo()) {
Jeffrey Yasskindec09842011-01-18 02:00:16 +00001344 ConsumeToken();
John McCall60d7b3a2010-08-24 06:29:42 +00001345 ExprResult AssignExpr(ParseAssignmentExpression());
Douglas Gregor99e9b4d2009-11-25 00:27:52 +00001346 if (!AssignExpr.isInvalid())
Richard Smith34b41d92011-02-20 03:19:35 +00001347 Actions.AddInitializerToDecl(DeclOut, AssignExpr.take(), false,
1348 DS.getTypeSpecType() == DeclSpec::TST_auto);
Douglas Gregor99e9b4d2009-11-25 00:27:52 +00001349 } else {
1350 // FIXME: C++0x allows a braced-init-list
1351 Diag(Tok, diag::err_expected_equal_after_declarator);
1352 }
1353
Douglas Gregor586596f2010-05-06 17:25:47 +00001354 // FIXME: Build a reference to this declaration? Convert it to bool?
1355 // (This is currently handled by Sema).
Richard Smith483b9f32011-02-21 20:05:19 +00001356
1357 Actions.FinalizeDeclaration(DeclOut);
Douglas Gregor586596f2010-05-06 17:25:47 +00001358
Douglas Gregor99e9b4d2009-11-25 00:27:52 +00001359 return false;
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +00001360}
1361
Douglas Gregor6aa14d82010-04-21 22:36:40 +00001362/// \brief Determine whether the current token starts a C++
1363/// simple-type-specifier.
1364bool Parser::isCXXSimpleTypeSpecifier() const {
1365 switch (Tok.getKind()) {
1366 case tok::annot_typename:
1367 case tok::kw_short:
1368 case tok::kw_long:
Francois Pichet338d7f72011-04-28 01:59:37 +00001369 case tok::kw___int64:
Douglas Gregor6aa14d82010-04-21 22:36:40 +00001370 case tok::kw_signed:
1371 case tok::kw_unsigned:
1372 case tok::kw_void:
1373 case tok::kw_char:
1374 case tok::kw_int:
Anton Korobeynikovaa4a99b2011-10-14 23:23:15 +00001375 case tok::kw_half:
Douglas Gregor6aa14d82010-04-21 22:36:40 +00001376 case tok::kw_float:
1377 case tok::kw_double:
1378 case tok::kw_wchar_t:
1379 case tok::kw_char16_t:
1380 case tok::kw_char32_t:
1381 case tok::kw_bool:
Douglas Gregord9d75e52011-04-27 05:41:15 +00001382 case tok::kw_decltype:
Douglas Gregor6aa14d82010-04-21 22:36:40 +00001383 case tok::kw_typeof:
Sean Huntdb5d44b2011-05-19 05:37:45 +00001384 case tok::kw___underlying_type:
Douglas Gregor6aa14d82010-04-21 22:36:40 +00001385 return true;
1386
1387 default:
1388 break;
1389 }
1390
1391 return false;
1392}
1393
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +00001394/// ParseCXXSimpleTypeSpecifier - [C++ 7.1.5.2] Simple type specifiers.
1395/// This should only be called when the current token is known to be part of
1396/// simple-type-specifier.
1397///
1398/// simple-type-specifier:
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001399/// '::'[opt] nested-name-specifier[opt] type-name
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +00001400/// '::'[opt] nested-name-specifier 'template' simple-template-id [TODO]
1401/// char
1402/// wchar_t
1403/// bool
1404/// short
1405/// int
1406/// long
1407/// signed
1408/// unsigned
1409/// float
1410/// double
1411/// void
1412/// [GNU] typeof-specifier
1413/// [C++0x] auto [TODO]
1414///
1415/// type-name:
1416/// class-name
1417/// enum-name
1418/// typedef-name
1419///
1420void Parser::ParseCXXSimpleTypeSpecifier(DeclSpec &DS) {
1421 DS.SetRangeStart(Tok.getLocation());
1422 const char *PrevSpec;
John McCallfec54012009-08-03 20:12:06 +00001423 unsigned DiagID;
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +00001424 SourceLocation Loc = Tok.getLocation();
Mike Stump1eb44332009-09-09 15:08:12 +00001425
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +00001426 switch (Tok.getKind()) {
Chris Lattner55a7cef2009-01-05 00:13:00 +00001427 case tok::identifier: // foo::bar
1428 case tok::coloncolon: // ::foo::bar
David Blaikieb219cfc2011-09-23 05:06:16 +00001429 llvm_unreachable("Annotation token should already be formed!");
Mike Stump1eb44332009-09-09 15:08:12 +00001430 default:
David Blaikieb219cfc2011-09-23 05:06:16 +00001431 llvm_unreachable("Not a simple-type-specifier token!");
Chris Lattner55a7cef2009-01-05 00:13:00 +00001432
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +00001433 // type-name
Chris Lattnerb31757b2009-01-06 05:06:21 +00001434 case tok::annot_typename: {
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001435 if (getTypeAnnotation(Tok))
1436 DS.SetTypeSpecType(DeclSpec::TST_typename, Loc, PrevSpec, DiagID,
1437 getTypeAnnotation(Tok));
1438 else
1439 DS.SetTypeSpecError();
Douglas Gregor9bd1d8d2010-10-21 23:17:00 +00001440
1441 DS.SetRangeEnd(Tok.getAnnotationEndLoc());
1442 ConsumeToken();
1443
1444 // Objective-C supports syntax of the form 'id<proto1,proto2>' where 'id'
1445 // is a specific typedef and 'itf<proto1,proto2>' where 'itf' is an
1446 // Objective-C interface. If we don't have Objective-C or a '<', this is
1447 // just a normal reference to a typedef name.
1448 if (Tok.is(tok::less) && getLang().ObjC1)
1449 ParseObjCProtocolQualifiers(DS);
1450
1451 DS.Finish(Diags, PP);
1452 return;
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +00001453 }
Mike Stump1eb44332009-09-09 15:08:12 +00001454
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +00001455 // builtin types
1456 case tok::kw_short:
John McCallfec54012009-08-03 20:12:06 +00001457 DS.SetTypeSpecWidth(DeclSpec::TSW_short, Loc, PrevSpec, DiagID);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +00001458 break;
1459 case tok::kw_long:
John McCallfec54012009-08-03 20:12:06 +00001460 DS.SetTypeSpecWidth(DeclSpec::TSW_long, Loc, PrevSpec, DiagID);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +00001461 break;
Francois Pichet338d7f72011-04-28 01:59:37 +00001462 case tok::kw___int64:
1463 DS.SetTypeSpecWidth(DeclSpec::TSW_longlong, Loc, PrevSpec, DiagID);
1464 break;
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +00001465 case tok::kw_signed:
John McCallfec54012009-08-03 20:12:06 +00001466 DS.SetTypeSpecSign(DeclSpec::TSS_signed, Loc, PrevSpec, DiagID);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +00001467 break;
1468 case tok::kw_unsigned:
John McCallfec54012009-08-03 20:12:06 +00001469 DS.SetTypeSpecSign(DeclSpec::TSS_unsigned, Loc, PrevSpec, DiagID);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +00001470 break;
1471 case tok::kw_void:
John McCallfec54012009-08-03 20:12:06 +00001472 DS.SetTypeSpecType(DeclSpec::TST_void, Loc, PrevSpec, DiagID);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +00001473 break;
1474 case tok::kw_char:
John McCallfec54012009-08-03 20:12:06 +00001475 DS.SetTypeSpecType(DeclSpec::TST_char, Loc, PrevSpec, DiagID);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +00001476 break;
1477 case tok::kw_int:
John McCallfec54012009-08-03 20:12:06 +00001478 DS.SetTypeSpecType(DeclSpec::TST_int, Loc, PrevSpec, DiagID);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +00001479 break;
Anton Korobeynikovaa4a99b2011-10-14 23:23:15 +00001480 case tok::kw_half:
1481 DS.SetTypeSpecType(DeclSpec::TST_half, Loc, PrevSpec, DiagID);
1482 break;
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +00001483 case tok::kw_float:
John McCallfec54012009-08-03 20:12:06 +00001484 DS.SetTypeSpecType(DeclSpec::TST_float, Loc, PrevSpec, DiagID);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +00001485 break;
1486 case tok::kw_double:
John McCallfec54012009-08-03 20:12:06 +00001487 DS.SetTypeSpecType(DeclSpec::TST_double, Loc, PrevSpec, DiagID);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +00001488 break;
1489 case tok::kw_wchar_t:
John McCallfec54012009-08-03 20:12:06 +00001490 DS.SetTypeSpecType(DeclSpec::TST_wchar, Loc, PrevSpec, DiagID);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +00001491 break;
Alisdair Meredithf5c209d2009-07-14 06:30:34 +00001492 case tok::kw_char16_t:
John McCallfec54012009-08-03 20:12:06 +00001493 DS.SetTypeSpecType(DeclSpec::TST_char16, Loc, PrevSpec, DiagID);
Alisdair Meredithf5c209d2009-07-14 06:30:34 +00001494 break;
1495 case tok::kw_char32_t:
John McCallfec54012009-08-03 20:12:06 +00001496 DS.SetTypeSpecType(DeclSpec::TST_char32, Loc, PrevSpec, DiagID);
Alisdair Meredithf5c209d2009-07-14 06:30:34 +00001497 break;
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +00001498 case tok::kw_bool:
John McCallfec54012009-08-03 20:12:06 +00001499 DS.SetTypeSpecType(DeclSpec::TST_bool, Loc, PrevSpec, DiagID);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +00001500 break;
David Blaikie5e089fe2012-01-24 05:47:35 +00001501 case tok::annot_decltype:
1502 case tok::kw_decltype:
1503 DS.SetRangeEnd(ParseDecltypeSpecifier(DS));
1504 return DS.Finish(Diags, PP);
Mike Stump1eb44332009-09-09 15:08:12 +00001505
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +00001506 // GNU typeof support.
1507 case tok::kw_typeof:
1508 ParseTypeofSpecifier(DS);
Douglas Gregor9b3064b2009-04-01 22:41:11 +00001509 DS.Finish(Diags, PP);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +00001510 return;
1511 }
Chris Lattnerb31757b2009-01-06 05:06:21 +00001512 if (Tok.is(tok::annot_typename))
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001513 DS.SetRangeEnd(Tok.getAnnotationEndLoc());
1514 else
1515 DS.SetRangeEnd(Tok.getLocation());
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +00001516 ConsumeToken();
Douglas Gregor9b3064b2009-04-01 22:41:11 +00001517 DS.Finish(Diags, PP);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +00001518}
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00001519
Douglas Gregor2f1bc522008-11-07 20:08:42 +00001520/// ParseCXXTypeSpecifierSeq - Parse a C++ type-specifier-seq (C++
1521/// [dcl.name]), which is a non-empty sequence of type-specifiers,
1522/// e.g., "const short int". Note that the DeclSpec is *not* finished
1523/// by parsing the type-specifier-seq, because these sequences are
1524/// typically followed by some form of declarator. Returns true and
1525/// emits diagnostics if this is not a type-specifier-seq, false
1526/// otherwise.
1527///
1528/// type-specifier-seq: [C++ 8.1]
1529/// type-specifier type-specifier-seq[opt]
1530///
1531bool Parser::ParseCXXTypeSpecifierSeq(DeclSpec &DS) {
1532 DS.SetRangeStart(Tok.getLocation());
1533 const char *PrevSpec = 0;
John McCallfec54012009-08-03 20:12:06 +00001534 unsigned DiagID;
1535 bool isInvalid = 0;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00001536
1537 // Parse one or more of the type specifiers.
Sebastian Redld9bafa72010-02-03 21:21:43 +00001538 if (!ParseOptionalTypeSpecifier(DS, isInvalid, PrevSpec, DiagID,
1539 ParsedTemplateInfo(), /*SuppressDeclarations*/true)) {
Nick Lewycky9fa8e562010-11-03 17:52:57 +00001540 Diag(Tok, diag::err_expected_type);
Douglas Gregor2f1bc522008-11-07 20:08:42 +00001541 return true;
1542 }
Mike Stump1eb44332009-09-09 15:08:12 +00001543
Sebastian Redld9bafa72010-02-03 21:21:43 +00001544 while (ParseOptionalTypeSpecifier(DS, isInvalid, PrevSpec, DiagID,
1545 ParsedTemplateInfo(), /*SuppressDeclarations*/true))
1546 {}
Douglas Gregor2f1bc522008-11-07 20:08:42 +00001547
Douglas Gregor396a9f22010-02-24 23:13:13 +00001548 DS.Finish(Diags, PP);
Douglas Gregor2f1bc522008-11-07 20:08:42 +00001549 return false;
1550}
1551
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001552/// \brief Finish parsing a C++ unqualified-id that is a template-id of
1553/// some form.
1554///
1555/// This routine is invoked when a '<' is encountered after an identifier or
1556/// operator-function-id is parsed by \c ParseUnqualifiedId() to determine
1557/// whether the unqualified-id is actually a template-id. This routine will
1558/// then parse the template arguments and form the appropriate template-id to
1559/// return to the caller.
1560///
1561/// \param SS the nested-name-specifier that precedes this template-id, if
1562/// we're actually parsing a qualified-id.
1563///
1564/// \param Name for constructor and destructor names, this is the actual
1565/// identifier that may be a template-name.
1566///
1567/// \param NameLoc the location of the class-name in a constructor or
1568/// destructor.
1569///
1570/// \param EnteringContext whether we're entering the scope of the
1571/// nested-name-specifier.
1572///
Douglas Gregor46df8cc2009-11-03 21:24:04 +00001573/// \param ObjectType if this unqualified-id occurs within a member access
1574/// expression, the type of the base object whose member is being accessed.
1575///
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001576/// \param Id as input, describes the template-name or operator-function-id
1577/// that precedes the '<'. If template arguments were parsed successfully,
1578/// will be updated with the template-id.
1579///
Douglas Gregord4dca082010-02-24 18:44:31 +00001580/// \param AssumeTemplateId When true, this routine will assume that the name
1581/// refers to a template without performing name lookup to verify.
1582///
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001583/// \returns true if a parse error occurred, false otherwise.
1584bool Parser::ParseUnqualifiedIdTemplateId(CXXScopeSpec &SS,
Abramo Bagnarae4b92762012-01-27 09:46:47 +00001585 SourceLocation TemplateKWLoc,
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001586 IdentifierInfo *Name,
1587 SourceLocation NameLoc,
1588 bool EnteringContext,
John McCallb3d87482010-08-24 05:47:05 +00001589 ParsedType ObjectType,
Douglas Gregord4dca082010-02-24 18:44:31 +00001590 UnqualifiedId &Id,
Abramo Bagnarae4b92762012-01-27 09:46:47 +00001591 bool AssumeTemplateId) {
Douglas Gregor0278e122010-05-05 05:58:24 +00001592 assert((AssumeTemplateId || Tok.is(tok::less)) &&
1593 "Expected '<' to finish parsing a template-id");
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001594
1595 TemplateTy Template;
1596 TemplateNameKind TNK = TNK_Non_template;
1597 switch (Id.getKind()) {
1598 case UnqualifiedId::IK_Identifier:
Douglas Gregor014e88d2009-11-03 23:16:33 +00001599 case UnqualifiedId::IK_OperatorFunctionId:
Sean Hunte6252d12009-11-28 08:58:14 +00001600 case UnqualifiedId::IK_LiteralOperatorId:
Douglas Gregord4dca082010-02-24 18:44:31 +00001601 if (AssumeTemplateId) {
Abramo Bagnarae4b92762012-01-27 09:46:47 +00001602 TNK = Actions.ActOnDependentTemplateName(getCurScope(), SS, TemplateKWLoc,
Douglas Gregord6ab2322010-06-16 23:00:59 +00001603 Id, ObjectType, EnteringContext,
1604 Template);
1605 if (TNK == TNK_Non_template)
1606 return true;
Douglas Gregor1fd6d442010-05-21 23:18:07 +00001607 } else {
1608 bool MemberOfUnknownSpecialization;
Abramo Bagnara7c153532010-08-06 12:11:11 +00001609 TNK = Actions.isTemplateName(getCurScope(), SS,
1610 TemplateKWLoc.isValid(), Id,
1611 ObjectType, EnteringContext, Template,
Douglas Gregor1fd6d442010-05-21 23:18:07 +00001612 MemberOfUnknownSpecialization);
1613
1614 if (TNK == TNK_Non_template && MemberOfUnknownSpecialization &&
1615 ObjectType && IsTemplateArgumentList()) {
1616 // We have something like t->getAs<T>(), where getAs is a
1617 // member of an unknown specialization. However, this will only
1618 // parse correctly as a template, so suggest the keyword 'template'
1619 // before 'getAs' and treat this as a dependent template name.
1620 std::string Name;
1621 if (Id.getKind() == UnqualifiedId::IK_Identifier)
1622 Name = Id.Identifier->getName();
1623 else {
1624 Name = "operator ";
1625 if (Id.getKind() == UnqualifiedId::IK_OperatorFunctionId)
1626 Name += getOperatorSpelling(Id.OperatorFunctionId.Operator);
1627 else
1628 Name += Id.Identifier->getName();
1629 }
1630 Diag(Id.StartLocation, diag::err_missing_dependent_template_keyword)
1631 << Name
1632 << FixItHint::CreateInsertion(Id.StartLocation, "template ");
Abramo Bagnarae4b92762012-01-27 09:46:47 +00001633 TNK = Actions.ActOnDependentTemplateName(getCurScope(),
1634 SS, TemplateKWLoc, Id,
1635 ObjectType, EnteringContext,
1636 Template);
Douglas Gregord6ab2322010-06-16 23:00:59 +00001637 if (TNK == TNK_Non_template)
Douglas Gregor1fd6d442010-05-21 23:18:07 +00001638 return true;
1639 }
1640 }
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001641 break;
1642
Douglas Gregor014e88d2009-11-03 23:16:33 +00001643 case UnqualifiedId::IK_ConstructorName: {
1644 UnqualifiedId TemplateName;
Douglas Gregor1fd6d442010-05-21 23:18:07 +00001645 bool MemberOfUnknownSpecialization;
Douglas Gregor014e88d2009-11-03 23:16:33 +00001646 TemplateName.setIdentifier(Name, NameLoc);
Abramo Bagnara7c153532010-08-06 12:11:11 +00001647 TNK = Actions.isTemplateName(getCurScope(), SS, TemplateKWLoc.isValid(),
1648 TemplateName, ObjectType,
Douglas Gregor1fd6d442010-05-21 23:18:07 +00001649 EnteringContext, Template,
1650 MemberOfUnknownSpecialization);
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001651 break;
1652 }
1653
Douglas Gregor014e88d2009-11-03 23:16:33 +00001654 case UnqualifiedId::IK_DestructorName: {
1655 UnqualifiedId TemplateName;
Douglas Gregor1fd6d442010-05-21 23:18:07 +00001656 bool MemberOfUnknownSpecialization;
Douglas Gregor014e88d2009-11-03 23:16:33 +00001657 TemplateName.setIdentifier(Name, NameLoc);
Douglas Gregor2d1c2142009-11-03 19:44:04 +00001658 if (ObjectType) {
Abramo Bagnarae4b92762012-01-27 09:46:47 +00001659 TNK = Actions.ActOnDependentTemplateName(getCurScope(),
1660 SS, TemplateKWLoc, TemplateName,
1661 ObjectType, EnteringContext,
1662 Template);
Douglas Gregord6ab2322010-06-16 23:00:59 +00001663 if (TNK == TNK_Non_template)
Douglas Gregor2d1c2142009-11-03 19:44:04 +00001664 return true;
1665 } else {
Abramo Bagnara7c153532010-08-06 12:11:11 +00001666 TNK = Actions.isTemplateName(getCurScope(), SS, TemplateKWLoc.isValid(),
1667 TemplateName, ObjectType,
Douglas Gregor1fd6d442010-05-21 23:18:07 +00001668 EnteringContext, Template,
1669 MemberOfUnknownSpecialization);
Douglas Gregor2d1c2142009-11-03 19:44:04 +00001670
John McCallb3d87482010-08-24 05:47:05 +00001671 if (TNK == TNK_Non_template && !Id.DestructorName.get()) {
Douglas Gregor124b8782010-02-16 19:09:40 +00001672 Diag(NameLoc, diag::err_destructor_template_id)
1673 << Name << SS.getRange();
Douglas Gregor2d1c2142009-11-03 19:44:04 +00001674 return true;
1675 }
1676 }
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001677 break;
Douglas Gregor014e88d2009-11-03 23:16:33 +00001678 }
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001679
1680 default:
1681 return false;
1682 }
1683
1684 if (TNK == TNK_Non_template)
1685 return false;
1686
1687 // Parse the enclosed template argument list.
1688 SourceLocation LAngleLoc, RAngleLoc;
1689 TemplateArgList TemplateArgs;
Douglas Gregor0278e122010-05-05 05:58:24 +00001690 if (Tok.is(tok::less) &&
1691 ParseTemplateIdAfterTemplateName(Template, Id.StartLocation,
Douglas Gregor059101f2011-03-02 00:47:37 +00001692 SS, true, LAngleLoc,
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001693 TemplateArgs,
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001694 RAngleLoc))
1695 return true;
1696
1697 if (Id.getKind() == UnqualifiedId::IK_Identifier ||
Sean Hunte6252d12009-11-28 08:58:14 +00001698 Id.getKind() == UnqualifiedId::IK_OperatorFunctionId ||
1699 Id.getKind() == UnqualifiedId::IK_LiteralOperatorId) {
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001700 // Form a parsed representation of the template-id to be stored in the
1701 // UnqualifiedId.
1702 TemplateIdAnnotation *TemplateId
1703 = TemplateIdAnnotation::Allocate(TemplateArgs.size());
1704
1705 if (Id.getKind() == UnqualifiedId::IK_Identifier) {
1706 TemplateId->Name = Id.Identifier;
Douglas Gregor014e88d2009-11-03 23:16:33 +00001707 TemplateId->Operator = OO_None;
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001708 TemplateId->TemplateNameLoc = Id.StartLocation;
1709 } else {
Douglas Gregor014e88d2009-11-03 23:16:33 +00001710 TemplateId->Name = 0;
1711 TemplateId->Operator = Id.OperatorFunctionId.Operator;
1712 TemplateId->TemplateNameLoc = Id.StartLocation;
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001713 }
1714
Douglas Gregor059101f2011-03-02 00:47:37 +00001715 TemplateId->SS = SS;
Benjamin Kramer2b28bf12012-02-19 23:37:39 +00001716 TemplateId->TemplateKWLoc = TemplateKWLoc;
John McCall2b5289b2010-08-23 07:28:44 +00001717 TemplateId->Template = Template;
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001718 TemplateId->Kind = TNK;
1719 TemplateId->LAngleLoc = LAngleLoc;
1720 TemplateId->RAngleLoc = RAngleLoc;
Douglas Gregor314b97f2009-11-10 19:49:08 +00001721 ParsedTemplateArgument *Args = TemplateId->getTemplateArgs();
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001722 for (unsigned Arg = 0, ArgEnd = TemplateArgs.size();
Douglas Gregor314b97f2009-11-10 19:49:08 +00001723 Arg != ArgEnd; ++Arg)
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001724 Args[Arg] = TemplateArgs[Arg];
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001725
1726 Id.setTemplateId(TemplateId);
1727 return false;
1728 }
1729
1730 // Bundle the template arguments together.
1731 ASTTemplateArgsPtr TemplateArgsPtr(Actions, TemplateArgs.data(),
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001732 TemplateArgs.size());
Abramo Bagnarafad03b72012-01-27 08:46:19 +00001733
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001734 // Constructor and destructor names.
John McCallf312b1e2010-08-26 23:41:50 +00001735 TypeResult Type
Abramo Bagnara55d23c92012-02-06 14:41:24 +00001736 = Actions.ActOnTemplateIdType(SS, TemplateKWLoc,
1737 Template, NameLoc,
Abramo Bagnarafad03b72012-01-27 08:46:19 +00001738 LAngleLoc, TemplateArgsPtr, RAngleLoc,
1739 /*IsCtorOrDtorName=*/true);
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001740 if (Type.isInvalid())
1741 return true;
1742
1743 if (Id.getKind() == UnqualifiedId::IK_ConstructorName)
1744 Id.setConstructorName(Type.get(), NameLoc, RAngleLoc);
1745 else
1746 Id.setDestructorName(Id.StartLocation, Type.get(), RAngleLoc);
1747
1748 return false;
1749}
1750
Douglas Gregorca1bdd72009-11-04 00:56:37 +00001751/// \brief Parse an operator-function-id or conversion-function-id as part
1752/// of a C++ unqualified-id.
1753///
1754/// This routine is responsible only for parsing the operator-function-id or
1755/// conversion-function-id; it does not handle template arguments in any way.
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001756///
1757/// \code
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001758/// operator-function-id: [C++ 13.5]
1759/// 'operator' operator
1760///
Douglas Gregorca1bdd72009-11-04 00:56:37 +00001761/// operator: one of
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001762/// new delete new[] delete[]
1763/// + - * / % ^ & | ~
1764/// ! = < > += -= *= /= %=
1765/// ^= &= |= << >> >>= <<= == !=
1766/// <= >= && || ++ -- , ->* ->
1767/// () []
1768///
1769/// conversion-function-id: [C++ 12.3.2]
1770/// operator conversion-type-id
1771///
1772/// conversion-type-id:
1773/// type-specifier-seq conversion-declarator[opt]
1774///
1775/// conversion-declarator:
1776/// ptr-operator conversion-declarator[opt]
1777/// \endcode
1778///
1779/// \param The nested-name-specifier that preceded this unqualified-id. If
1780/// non-empty, then we are parsing the unqualified-id of a qualified-id.
1781///
1782/// \param EnteringContext whether we are entering the scope of the
1783/// nested-name-specifier.
1784///
Douglas Gregorca1bdd72009-11-04 00:56:37 +00001785/// \param ObjectType if this unqualified-id occurs within a member access
1786/// expression, the type of the base object whose member is being accessed.
1787///
1788/// \param Result on a successful parse, contains the parsed unqualified-id.
1789///
1790/// \returns true if parsing fails, false otherwise.
1791bool Parser::ParseUnqualifiedIdOperator(CXXScopeSpec &SS, bool EnteringContext,
John McCallb3d87482010-08-24 05:47:05 +00001792 ParsedType ObjectType,
Douglas Gregorca1bdd72009-11-04 00:56:37 +00001793 UnqualifiedId &Result) {
1794 assert(Tok.is(tok::kw_operator) && "Expected 'operator' keyword");
1795
1796 // Consume the 'operator' keyword.
1797 SourceLocation KeywordLoc = ConsumeToken();
1798
1799 // Determine what kind of operator name we have.
1800 unsigned SymbolIdx = 0;
1801 SourceLocation SymbolLocations[3];
1802 OverloadedOperatorKind Op = OO_None;
1803 switch (Tok.getKind()) {
1804 case tok::kw_new:
1805 case tok::kw_delete: {
1806 bool isNew = Tok.getKind() == tok::kw_new;
1807 // Consume the 'new' or 'delete'.
1808 SymbolLocations[SymbolIdx++] = ConsumeToken();
1809 if (Tok.is(tok::l_square)) {
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00001810 // Consume the '[' and ']'.
1811 BalancedDelimiterTracker T(*this, tok::l_square);
1812 T.consumeOpen();
1813 T.consumeClose();
1814 if (T.getCloseLocation().isInvalid())
Douglas Gregorca1bdd72009-11-04 00:56:37 +00001815 return true;
1816
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00001817 SymbolLocations[SymbolIdx++] = T.getOpenLocation();
1818 SymbolLocations[SymbolIdx++] = T.getCloseLocation();
Douglas Gregorca1bdd72009-11-04 00:56:37 +00001819 Op = isNew? OO_Array_New : OO_Array_Delete;
1820 } else {
1821 Op = isNew? OO_New : OO_Delete;
1822 }
1823 break;
1824 }
1825
1826#define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \
1827 case tok::Token: \
1828 SymbolLocations[SymbolIdx++] = ConsumeToken(); \
1829 Op = OO_##Name; \
1830 break;
1831#define OVERLOADED_OPERATOR_MULTI(Name,Spelling,Unary,Binary,MemberOnly)
1832#include "clang/Basic/OperatorKinds.def"
1833
1834 case tok::l_paren: {
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00001835 // Consume the '(' and ')'.
1836 BalancedDelimiterTracker T(*this, tok::l_paren);
1837 T.consumeOpen();
1838 T.consumeClose();
1839 if (T.getCloseLocation().isInvalid())
Douglas Gregorca1bdd72009-11-04 00:56:37 +00001840 return true;
1841
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00001842 SymbolLocations[SymbolIdx++] = T.getOpenLocation();
1843 SymbolLocations[SymbolIdx++] = T.getCloseLocation();
Douglas Gregorca1bdd72009-11-04 00:56:37 +00001844 Op = OO_Call;
1845 break;
1846 }
1847
1848 case tok::l_square: {
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00001849 // Consume the '[' and ']'.
1850 BalancedDelimiterTracker T(*this, tok::l_square);
1851 T.consumeOpen();
1852 T.consumeClose();
1853 if (T.getCloseLocation().isInvalid())
Douglas Gregorca1bdd72009-11-04 00:56:37 +00001854 return true;
1855
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00001856 SymbolLocations[SymbolIdx++] = T.getOpenLocation();
1857 SymbolLocations[SymbolIdx++] = T.getCloseLocation();
Douglas Gregorca1bdd72009-11-04 00:56:37 +00001858 Op = OO_Subscript;
1859 break;
1860 }
1861
1862 case tok::code_completion: {
1863 // Code completion for the operator name.
Douglas Gregor23c94db2010-07-02 17:43:08 +00001864 Actions.CodeCompleteOperatorName(getCurScope());
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00001865 cutOffParsing();
Douglas Gregorca1bdd72009-11-04 00:56:37 +00001866 // Don't try to parse any further.
1867 return true;
1868 }
1869
1870 default:
1871 break;
1872 }
1873
1874 if (Op != OO_None) {
1875 // We have parsed an operator-function-id.
1876 Result.setOperatorFunctionId(KeywordLoc, Op, SymbolLocations);
1877 return false;
1878 }
Sean Hunt0486d742009-11-28 04:44:28 +00001879
1880 // Parse a literal-operator-id.
1881 //
1882 // literal-operator-id: [C++0x 13.5.8]
1883 // operator "" identifier
1884
1885 if (getLang().CPlusPlus0x && Tok.is(tok::string_literal)) {
Richard Smith7fe62082011-10-15 05:09:34 +00001886 Diag(Tok.getLocation(), diag::warn_cxx98_compat_literal_operator);
Sean Hunt0486d742009-11-28 04:44:28 +00001887 if (Tok.getLength() != 2)
1888 Diag(Tok.getLocation(), diag::err_operator_string_not_empty);
1889 ConsumeStringToken();
1890
1891 if (Tok.isNot(tok::identifier)) {
1892 Diag(Tok.getLocation(), diag::err_expected_ident);
1893 return true;
1894 }
1895
1896 IdentifierInfo *II = Tok.getIdentifierInfo();
1897 Result.setLiteralOperatorId(II, KeywordLoc, ConsumeToken());
Sean Hunt3e518bd2009-11-29 07:34:05 +00001898 return false;
Sean Hunt0486d742009-11-28 04:44:28 +00001899 }
Douglas Gregorca1bdd72009-11-04 00:56:37 +00001900
1901 // Parse a conversion-function-id.
1902 //
1903 // conversion-function-id: [C++ 12.3.2]
1904 // operator conversion-type-id
1905 //
1906 // conversion-type-id:
1907 // type-specifier-seq conversion-declarator[opt]
1908 //
1909 // conversion-declarator:
1910 // ptr-operator conversion-declarator[opt]
1911
1912 // Parse the type-specifier-seq.
John McCall0b7e6782011-03-24 11:26:52 +00001913 DeclSpec DS(AttrFactory);
Douglas Gregorf6e6fc82009-11-20 22:03:38 +00001914 if (ParseCXXTypeSpecifierSeq(DS)) // FIXME: ObjectType?
Douglas Gregorca1bdd72009-11-04 00:56:37 +00001915 return true;
1916
1917 // Parse the conversion-declarator, which is merely a sequence of
1918 // ptr-operators.
1919 Declarator D(DS, Declarator::TypeNameContext);
1920 ParseDeclaratorInternal(D, /*DirectDeclParser=*/0);
1921
1922 // Finish up the type.
John McCallf312b1e2010-08-26 23:41:50 +00001923 TypeResult Ty = Actions.ActOnTypeName(getCurScope(), D);
Douglas Gregorca1bdd72009-11-04 00:56:37 +00001924 if (Ty.isInvalid())
1925 return true;
1926
1927 // Note that this is a conversion-function-id.
1928 Result.setConversionFunctionId(KeywordLoc, Ty.get(),
1929 D.getSourceRange().getEnd());
1930 return false;
1931}
1932
1933/// \brief Parse a C++ unqualified-id (or a C identifier), which describes the
1934/// name of an entity.
1935///
1936/// \code
1937/// unqualified-id: [C++ expr.prim.general]
1938/// identifier
1939/// operator-function-id
1940/// conversion-function-id
1941/// [C++0x] literal-operator-id [TODO]
1942/// ~ class-name
1943/// template-id
1944///
1945/// \endcode
1946///
1947/// \param The nested-name-specifier that preceded this unqualified-id. If
1948/// non-empty, then we are parsing the unqualified-id of a qualified-id.
1949///
1950/// \param EnteringContext whether we are entering the scope of the
1951/// nested-name-specifier.
1952///
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001953/// \param AllowDestructorName whether we allow parsing of a destructor name.
1954///
1955/// \param AllowConstructorName whether we allow parsing a constructor name.
1956///
Douglas Gregor46df8cc2009-11-03 21:24:04 +00001957/// \param ObjectType if this unqualified-id occurs within a member access
1958/// expression, the type of the base object whose member is being accessed.
1959///
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001960/// \param Result on a successful parse, contains the parsed unqualified-id.
1961///
1962/// \returns true if parsing fails, false otherwise.
1963bool Parser::ParseUnqualifiedId(CXXScopeSpec &SS, bool EnteringContext,
1964 bool AllowDestructorName,
1965 bool AllowConstructorName,
John McCallb3d87482010-08-24 05:47:05 +00001966 ParsedType ObjectType,
Abramo Bagnarae4b92762012-01-27 09:46:47 +00001967 SourceLocation& TemplateKWLoc,
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001968 UnqualifiedId &Result) {
Douglas Gregor0278e122010-05-05 05:58:24 +00001969
1970 // Handle 'A::template B'. This is for template-ids which have not
1971 // already been annotated by ParseOptionalCXXScopeSpecifier().
1972 bool TemplateSpecified = false;
Douglas Gregor0278e122010-05-05 05:58:24 +00001973 if (getLang().CPlusPlus && Tok.is(tok::kw_template) &&
1974 (ObjectType || SS.isSet())) {
1975 TemplateSpecified = true;
1976 TemplateKWLoc = ConsumeToken();
1977 }
1978
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001979 // unqualified-id:
1980 // identifier
1981 // template-id (when it hasn't already been annotated)
1982 if (Tok.is(tok::identifier)) {
1983 // Consume the identifier.
1984 IdentifierInfo *Id = Tok.getIdentifierInfo();
1985 SourceLocation IdLoc = ConsumeToken();
1986
Douglas Gregorb862b8f2010-01-11 23:29:10 +00001987 if (!getLang().CPlusPlus) {
1988 // If we're not in C++, only identifiers matter. Record the
1989 // identifier and return.
1990 Result.setIdentifier(Id, IdLoc);
1991 return false;
1992 }
1993
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001994 if (AllowConstructorName &&
Douglas Gregor23c94db2010-07-02 17:43:08 +00001995 Actions.isCurrentClassName(*Id, getCurScope(), &SS)) {
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001996 // We have parsed a constructor name.
Abramo Bagnarafad03b72012-01-27 08:46:19 +00001997 ParsedType Ty = Actions.getTypeName(*Id, IdLoc, getCurScope(),
1998 &SS, false, false,
1999 ParsedType(),
2000 /*IsCtorOrDtorName=*/true,
2001 /*NonTrivialTypeSourceInfo=*/true);
2002 Result.setConstructorName(Ty, IdLoc, IdLoc);
Douglas Gregor3f9a0562009-11-03 01:35:08 +00002003 } else {
2004 // We have parsed an identifier.
2005 Result.setIdentifier(Id, IdLoc);
2006 }
2007
2008 // If the next token is a '<', we may have a template.
Douglas Gregor0278e122010-05-05 05:58:24 +00002009 if (TemplateSpecified || Tok.is(tok::less))
Abramo Bagnarae4b92762012-01-27 09:46:47 +00002010 return ParseUnqualifiedIdTemplateId(SS, TemplateKWLoc, Id, IdLoc,
2011 EnteringContext, ObjectType,
2012 Result, TemplateSpecified);
Douglas Gregor3f9a0562009-11-03 01:35:08 +00002013
2014 return false;
2015 }
2016
2017 // unqualified-id:
2018 // template-id (already parsed and annotated)
2019 if (Tok.is(tok::annot_template_id)) {
Argyrios Kyrtzidis25a76762011-06-22 06:09:49 +00002020 TemplateIdAnnotation *TemplateId = takeTemplateIdAnnotation(Tok);
Douglas Gregor0efc2c12010-01-13 17:31:36 +00002021
2022 // If the template-name names the current class, then this is a constructor
2023 if (AllowConstructorName && TemplateId->Name &&
Douglas Gregor23c94db2010-07-02 17:43:08 +00002024 Actions.isCurrentClassName(*TemplateId->Name, getCurScope(), &SS)) {
Douglas Gregor0efc2c12010-01-13 17:31:36 +00002025 if (SS.isSet()) {
2026 // C++ [class.qual]p2 specifies that a qualified template-name
2027 // is taken as the constructor name where a constructor can be
2028 // declared. Thus, the template arguments are extraneous, so
2029 // complain about them and remove them entirely.
2030 Diag(TemplateId->TemplateNameLoc,
2031 diag::err_out_of_line_constructor_template_id)
2032 << TemplateId->Name
Douglas Gregor849b2432010-03-31 17:46:05 +00002033 << FixItHint::CreateRemoval(
Douglas Gregor0efc2c12010-01-13 17:31:36 +00002034 SourceRange(TemplateId->LAngleLoc, TemplateId->RAngleLoc));
Abramo Bagnarafad03b72012-01-27 08:46:19 +00002035 ParsedType Ty = Actions.getTypeName(*TemplateId->Name,
2036 TemplateId->TemplateNameLoc,
2037 getCurScope(),
2038 &SS, false, false,
2039 ParsedType(),
2040 /*IsCtorOrDtorName=*/true,
2041 /*NontrivialTypeSourceInfo=*/true);
2042 Result.setConstructorName(Ty, TemplateId->TemplateNameLoc,
Douglas Gregor0efc2c12010-01-13 17:31:36 +00002043 TemplateId->RAngleLoc);
Douglas Gregor0efc2c12010-01-13 17:31:36 +00002044 ConsumeToken();
2045 return false;
2046 }
2047
2048 Result.setConstructorTemplateId(TemplateId);
2049 ConsumeToken();
2050 return false;
2051 }
2052
Douglas Gregor3f9a0562009-11-03 01:35:08 +00002053 // We have already parsed a template-id; consume the annotation token as
2054 // our unqualified-id.
Douglas Gregor0efc2c12010-01-13 17:31:36 +00002055 Result.setTemplateId(TemplateId);
Abramo Bagnarae4b92762012-01-27 09:46:47 +00002056 TemplateKWLoc = TemplateId->TemplateKWLoc;
Douglas Gregor3f9a0562009-11-03 01:35:08 +00002057 ConsumeToken();
2058 return false;
2059 }
2060
2061 // unqualified-id:
2062 // operator-function-id
2063 // conversion-function-id
2064 if (Tok.is(tok::kw_operator)) {
Douglas Gregorca1bdd72009-11-04 00:56:37 +00002065 if (ParseUnqualifiedIdOperator(SS, EnteringContext, ObjectType, Result))
Douglas Gregor3f9a0562009-11-03 01:35:08 +00002066 return true;
2067
Sean Hunte6252d12009-11-28 08:58:14 +00002068 // If we have an operator-function-id or a literal-operator-id and the next
2069 // token is a '<', we may have a
Douglas Gregorca1bdd72009-11-04 00:56:37 +00002070 //
2071 // template-id:
2072 // operator-function-id < template-argument-list[opt] >
Sean Hunte6252d12009-11-28 08:58:14 +00002073 if ((Result.getKind() == UnqualifiedId::IK_OperatorFunctionId ||
2074 Result.getKind() == UnqualifiedId::IK_LiteralOperatorId) &&
Douglas Gregor0278e122010-05-05 05:58:24 +00002075 (TemplateSpecified || Tok.is(tok::less)))
Abramo Bagnarae4b92762012-01-27 09:46:47 +00002076 return ParseUnqualifiedIdTemplateId(SS, TemplateKWLoc,
2077 0, SourceLocation(),
2078 EnteringContext, ObjectType,
2079 Result, TemplateSpecified);
Douglas Gregor3f9a0562009-11-03 01:35:08 +00002080
Douglas Gregor3f9a0562009-11-03 01:35:08 +00002081 return false;
2082 }
2083
Douglas Gregorb862b8f2010-01-11 23:29:10 +00002084 if (getLang().CPlusPlus &&
2085 (AllowDestructorName || SS.isSet()) && Tok.is(tok::tilde)) {
Douglas Gregor3f9a0562009-11-03 01:35:08 +00002086 // C++ [expr.unary.op]p10:
2087 // There is an ambiguity in the unary-expression ~X(), where X is a
2088 // class-name. The ambiguity is resolved in favor of treating ~ as a
2089 // unary complement rather than treating ~X as referring to a destructor.
2090
2091 // Parse the '~'.
2092 SourceLocation TildeLoc = ConsumeToken();
David Blaikie53a75c02011-12-08 16:13:53 +00002093
2094 if (SS.isEmpty() && Tok.is(tok::kw_decltype)) {
2095 DeclSpec DS(AttrFactory);
2096 SourceLocation EndLoc = ParseDecltypeSpecifier(DS);
2097 if (ParsedType Type = Actions.getDestructorType(DS, ObjectType)) {
2098 Result.setDestructorName(TildeLoc, Type, EndLoc);
2099 return false;
2100 }
2101 return true;
2102 }
Douglas Gregor3f9a0562009-11-03 01:35:08 +00002103
2104 // Parse the class-name.
2105 if (Tok.isNot(tok::identifier)) {
Douglas Gregor124b8782010-02-16 19:09:40 +00002106 Diag(Tok, diag::err_destructor_tilde_identifier);
Douglas Gregor3f9a0562009-11-03 01:35:08 +00002107 return true;
2108 }
2109
2110 // Parse the class-name (or template-name in a simple-template-id).
2111 IdentifierInfo *ClassName = Tok.getIdentifierInfo();
2112 SourceLocation ClassNameLoc = ConsumeToken();
2113
Douglas Gregor0278e122010-05-05 05:58:24 +00002114 if (TemplateSpecified || Tok.is(tok::less)) {
John McCallb3d87482010-08-24 05:47:05 +00002115 Result.setDestructorName(TildeLoc, ParsedType(), ClassNameLoc);
Abramo Bagnarae4b92762012-01-27 09:46:47 +00002116 return ParseUnqualifiedIdTemplateId(SS, TemplateKWLoc,
2117 ClassName, ClassNameLoc,
2118 EnteringContext, ObjectType,
2119 Result, TemplateSpecified);
Douglas Gregor2d1c2142009-11-03 19:44:04 +00002120 }
2121
Douglas Gregor3f9a0562009-11-03 01:35:08 +00002122 // Note that this is a destructor name.
John McCallb3d87482010-08-24 05:47:05 +00002123 ParsedType Ty = Actions.getDestructorName(TildeLoc, *ClassName,
2124 ClassNameLoc, getCurScope(),
2125 SS, ObjectType,
2126 EnteringContext);
Douglas Gregor124b8782010-02-16 19:09:40 +00002127 if (!Ty)
Douglas Gregor3f9a0562009-11-03 01:35:08 +00002128 return true;
Douglas Gregor124b8782010-02-16 19:09:40 +00002129
Douglas Gregor3f9a0562009-11-03 01:35:08 +00002130 Result.setDestructorName(TildeLoc, Ty, ClassNameLoc);
Douglas Gregor3f9a0562009-11-03 01:35:08 +00002131 return false;
2132 }
2133
Douglas Gregor2d1c2142009-11-03 19:44:04 +00002134 Diag(Tok, diag::err_expected_unqualified_id)
2135 << getLang().CPlusPlus;
Douglas Gregor3f9a0562009-11-03 01:35:08 +00002136 return true;
2137}
2138
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002139/// ParseCXXNewExpression - Parse a C++ new-expression. New is used to allocate
2140/// memory in a typesafe manner and call constructors.
Mike Stump1eb44332009-09-09 15:08:12 +00002141///
Chris Lattner59232d32009-01-04 21:25:24 +00002142/// This method is called to parse the new expression after the optional :: has
2143/// been already parsed. If the :: was present, "UseGlobal" is true and "Start"
2144/// is its location. Otherwise, "Start" is the location of the 'new' token.
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002145///
2146/// new-expression:
2147/// '::'[opt] 'new' new-placement[opt] new-type-id
2148/// new-initializer[opt]
2149/// '::'[opt] 'new' new-placement[opt] '(' type-id ')'
2150/// new-initializer[opt]
2151///
2152/// new-placement:
2153/// '(' expression-list ')'
2154///
Sebastian Redlcee63fb2008-12-02 14:43:59 +00002155/// new-type-id:
2156/// type-specifier-seq new-declarator[opt]
Douglas Gregor893e1cc2011-04-15 19:40:02 +00002157/// [GNU] attributes type-specifier-seq new-declarator[opt]
Sebastian Redlcee63fb2008-12-02 14:43:59 +00002158///
2159/// new-declarator:
2160/// ptr-operator new-declarator[opt]
2161/// direct-new-declarator
2162///
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002163/// new-initializer:
2164/// '(' expression-list[opt] ')'
Sebastian Redldbef1bb2011-06-05 12:23:16 +00002165/// [C++0x] braced-init-list
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002166///
John McCall60d7b3a2010-08-24 06:29:42 +00002167ExprResult
Chris Lattner59232d32009-01-04 21:25:24 +00002168Parser::ParseCXXNewExpression(bool UseGlobal, SourceLocation Start) {
2169 assert(Tok.is(tok::kw_new) && "expected 'new' token");
2170 ConsumeToken(); // Consume 'new'
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002171
2172 // A '(' now can be a new-placement or the '(' wrapping the type-id in the
2173 // second form of new-expression. It can't be a new-type-id.
2174
Sebastian Redla55e52c2008-11-25 22:21:31 +00002175 ExprVector PlacementArgs(Actions);
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002176 SourceLocation PlacementLParen, PlacementRParen;
2177
Douglas Gregor4bd40312010-07-13 15:54:32 +00002178 SourceRange TypeIdParens;
John McCall0b7e6782011-03-24 11:26:52 +00002179 DeclSpec DS(AttrFactory);
Argyrios Kyrtzidis0b8c98f2011-06-28 03:01:23 +00002180 Declarator DeclaratorInfo(DS, Declarator::CXXNewContext);
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002181 if (Tok.is(tok::l_paren)) {
2182 // If it turns out to be a placement, we change the type location.
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002183 BalancedDelimiterTracker T(*this, tok::l_paren);
2184 T.consumeOpen();
2185 PlacementLParen = T.getOpenLocation();
Sebastian Redlcee63fb2008-12-02 14:43:59 +00002186 if (ParseExpressionListOrTypeId(PlacementArgs, DeclaratorInfo)) {
2187 SkipUntil(tok::semi, /*StopAtSemi=*/true, /*DontConsume=*/true);
Sebastian Redl20df9b72008-12-11 22:51:44 +00002188 return ExprError();
Sebastian Redlcee63fb2008-12-02 14:43:59 +00002189 }
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002190
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002191 T.consumeClose();
2192 PlacementRParen = T.getCloseLocation();
Sebastian Redlcee63fb2008-12-02 14:43:59 +00002193 if (PlacementRParen.isInvalid()) {
2194 SkipUntil(tok::semi, /*StopAtSemi=*/true, /*DontConsume=*/true);
Sebastian Redl20df9b72008-12-11 22:51:44 +00002195 return ExprError();
Sebastian Redlcee63fb2008-12-02 14:43:59 +00002196 }
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002197
Sebastian Redlcee63fb2008-12-02 14:43:59 +00002198 if (PlacementArgs.empty()) {
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002199 // Reset the placement locations. There was no placement.
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002200 TypeIdParens = T.getRange();
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002201 PlacementLParen = PlacementRParen = SourceLocation();
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002202 } else {
2203 // We still need the type.
2204 if (Tok.is(tok::l_paren)) {
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002205 BalancedDelimiterTracker T(*this, tok::l_paren);
2206 T.consumeOpen();
Douglas Gregor893e1cc2011-04-15 19:40:02 +00002207 MaybeParseGNUAttributes(DeclaratorInfo);
Sebastian Redlcee63fb2008-12-02 14:43:59 +00002208 ParseSpecifierQualifierList(DS);
Sebastian Redlab197ba2009-02-09 18:23:29 +00002209 DeclaratorInfo.SetSourceRange(DS.getSourceRange());
Sebastian Redlcee63fb2008-12-02 14:43:59 +00002210 ParseDeclarator(DeclaratorInfo);
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002211 T.consumeClose();
2212 TypeIdParens = T.getRange();
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002213 } else {
Douglas Gregor893e1cc2011-04-15 19:40:02 +00002214 MaybeParseGNUAttributes(DeclaratorInfo);
Sebastian Redlcee63fb2008-12-02 14:43:59 +00002215 if (ParseCXXTypeSpecifierSeq(DS))
2216 DeclaratorInfo.setInvalidType(true);
Sebastian Redlab197ba2009-02-09 18:23:29 +00002217 else {
2218 DeclaratorInfo.SetSourceRange(DS.getSourceRange());
Sebastian Redlcee63fb2008-12-02 14:43:59 +00002219 ParseDeclaratorInternal(DeclaratorInfo,
2220 &Parser::ParseDirectNewDeclarator);
Sebastian Redlab197ba2009-02-09 18:23:29 +00002221 }
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002222 }
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002223 }
2224 } else {
Sebastian Redlcee63fb2008-12-02 14:43:59 +00002225 // A new-type-id is a simplified type-id, where essentially the
2226 // direct-declarator is replaced by a direct-new-declarator.
Douglas Gregor893e1cc2011-04-15 19:40:02 +00002227 MaybeParseGNUAttributes(DeclaratorInfo);
Sebastian Redlcee63fb2008-12-02 14:43:59 +00002228 if (ParseCXXTypeSpecifierSeq(DS))
2229 DeclaratorInfo.setInvalidType(true);
Sebastian Redlab197ba2009-02-09 18:23:29 +00002230 else {
2231 DeclaratorInfo.SetSourceRange(DS.getSourceRange());
Sebastian Redlcee63fb2008-12-02 14:43:59 +00002232 ParseDeclaratorInternal(DeclaratorInfo,
2233 &Parser::ParseDirectNewDeclarator);
Sebastian Redlab197ba2009-02-09 18:23:29 +00002234 }
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002235 }
Chris Lattnereaaebc72009-04-25 08:06:05 +00002236 if (DeclaratorInfo.isInvalidType()) {
Sebastian Redlcee63fb2008-12-02 14:43:59 +00002237 SkipUntil(tok::semi, /*StopAtSemi=*/true, /*DontConsume=*/true);
Sebastian Redl20df9b72008-12-11 22:51:44 +00002238 return ExprError();
Sebastian Redlcee63fb2008-12-02 14:43:59 +00002239 }
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002240
Sebastian Redl2aed8b82012-02-16 12:22:20 +00002241 ExprResult Initializer;
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002242
2243 if (Tok.is(tok::l_paren)) {
Sebastian Redl2aed8b82012-02-16 12:22:20 +00002244 SourceLocation ConstructorLParen, ConstructorRParen;
2245 ExprVector ConstructorArgs(Actions);
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002246 BalancedDelimiterTracker T(*this, tok::l_paren);
2247 T.consumeOpen();
2248 ConstructorLParen = T.getOpenLocation();
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002249 if (Tok.isNot(tok::r_paren)) {
2250 CommaLocsTy CommaLocs;
Sebastian Redlcee63fb2008-12-02 14:43:59 +00002251 if (ParseExpressionList(ConstructorArgs, CommaLocs)) {
2252 SkipUntil(tok::semi, /*StopAtSemi=*/true, /*DontConsume=*/true);
Sebastian Redl20df9b72008-12-11 22:51:44 +00002253 return ExprError();
Sebastian Redlcee63fb2008-12-02 14:43:59 +00002254 }
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002255 }
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002256 T.consumeClose();
2257 ConstructorRParen = T.getCloseLocation();
Sebastian Redlcee63fb2008-12-02 14:43:59 +00002258 if (ConstructorRParen.isInvalid()) {
2259 SkipUntil(tok::semi, /*StopAtSemi=*/true, /*DontConsume=*/true);
Sebastian Redl20df9b72008-12-11 22:51:44 +00002260 return ExprError();
Sebastian Redlcee63fb2008-12-02 14:43:59 +00002261 }
Sebastian Redl2aed8b82012-02-16 12:22:20 +00002262 Initializer = Actions.ActOnParenListExpr(ConstructorLParen,
2263 ConstructorRParen,
2264 move_arg(ConstructorArgs));
Richard Smith29e3a312011-10-15 03:38:41 +00002265 } else if (Tok.is(tok::l_brace) && getLang().CPlusPlus0x) {
Richard Smith7fe62082011-10-15 05:09:34 +00002266 Diag(Tok.getLocation(),
2267 diag::warn_cxx98_compat_generalized_initializer_lists);
Sebastian Redl2aed8b82012-02-16 12:22:20 +00002268 Initializer = ParseBraceInitializer();
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002269 }
Sebastian Redl2aed8b82012-02-16 12:22:20 +00002270 if (Initializer.isInvalid())
2271 return Initializer;
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002272
Sebastian Redlf53597f2009-03-15 17:47:39 +00002273 return Actions.ActOnCXXNew(Start, UseGlobal, PlacementLParen,
2274 move_arg(PlacementArgs), PlacementRParen,
Sebastian Redl2aed8b82012-02-16 12:22:20 +00002275 TypeIdParens, DeclaratorInfo, Initializer.take());
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002276}
2277
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002278/// ParseDirectNewDeclarator - Parses a direct-new-declarator. Intended to be
2279/// passed to ParseDeclaratorInternal.
2280///
2281/// direct-new-declarator:
2282/// '[' expression ']'
2283/// direct-new-declarator '[' constant-expression ']'
2284///
Chris Lattner59232d32009-01-04 21:25:24 +00002285void Parser::ParseDirectNewDeclarator(Declarator &D) {
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002286 // Parse the array dimensions.
2287 bool first = true;
2288 while (Tok.is(tok::l_square)) {
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002289 BalancedDelimiterTracker T(*this, tok::l_square);
2290 T.consumeOpen();
2291
John McCall60d7b3a2010-08-24 06:29:42 +00002292 ExprResult Size(first ? ParseExpression()
Sebastian Redl2f7ece72008-12-11 21:36:32 +00002293 : ParseConstantExpression());
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00002294 if (Size.isInvalid()) {
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002295 // Recover
2296 SkipUntil(tok::r_square);
2297 return;
2298 }
2299 first = false;
2300
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002301 T.consumeClose();
John McCall0b7e6782011-03-24 11:26:52 +00002302
2303 ParsedAttributes attrs(AttrFactory);
2304 D.AddTypeInfo(DeclaratorChunk::getArray(0,
John McCall7f040a92010-12-24 02:08:15 +00002305 /*static=*/false, /*star=*/false,
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002306 Size.release(),
2307 T.getOpenLocation(),
2308 T.getCloseLocation()),
2309 attrs, T.getCloseLocation());
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002310
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002311 if (T.getCloseLocation().isInvalid())
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002312 return;
2313 }
2314}
2315
2316/// ParseExpressionListOrTypeId - Parse either an expression-list or a type-id.
2317/// This ambiguity appears in the syntax of the C++ new operator.
2318///
2319/// new-expression:
2320/// '::'[opt] 'new' new-placement[opt] '(' type-id ')'
2321/// new-initializer[opt]
2322///
2323/// new-placement:
2324/// '(' expression-list ')'
2325///
John McCallca0408f2010-08-23 06:44:23 +00002326bool Parser::ParseExpressionListOrTypeId(
Chris Lattner5f9e2722011-07-23 10:55:15 +00002327 SmallVectorImpl<Expr*> &PlacementArgs,
Chris Lattner59232d32009-01-04 21:25:24 +00002328 Declarator &D) {
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002329 // The '(' was already consumed.
2330 if (isTypeIdInParens()) {
Sebastian Redlcee63fb2008-12-02 14:43:59 +00002331 ParseSpecifierQualifierList(D.getMutableDeclSpec());
Sebastian Redlab197ba2009-02-09 18:23:29 +00002332 D.SetSourceRange(D.getDeclSpec().getSourceRange());
Sebastian Redlcee63fb2008-12-02 14:43:59 +00002333 ParseDeclarator(D);
Chris Lattnereaaebc72009-04-25 08:06:05 +00002334 return D.isInvalidType();
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002335 }
2336
2337 // It's not a type, it has to be an expression list.
2338 // Discard the comma locations - ActOnCXXNew has enough parameters.
2339 CommaLocsTy CommaLocs;
2340 return ParseExpressionList(PlacementArgs, CommaLocs);
2341}
2342
2343/// ParseCXXDeleteExpression - Parse a C++ delete-expression. Delete is used
2344/// to free memory allocated by new.
2345///
Chris Lattner59232d32009-01-04 21:25:24 +00002346/// This method is called to parse the 'delete' expression after the optional
2347/// '::' has been already parsed. If the '::' was present, "UseGlobal" is true
2348/// and "Start" is its location. Otherwise, "Start" is the location of the
2349/// 'delete' token.
2350///
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002351/// delete-expression:
2352/// '::'[opt] 'delete' cast-expression
2353/// '::'[opt] 'delete' '[' ']' cast-expression
John McCall60d7b3a2010-08-24 06:29:42 +00002354ExprResult
Chris Lattner59232d32009-01-04 21:25:24 +00002355Parser::ParseCXXDeleteExpression(bool UseGlobal, SourceLocation Start) {
2356 assert(Tok.is(tok::kw_delete) && "Expected 'delete' keyword");
2357 ConsumeToken(); // Consume 'delete'
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002358
2359 // Array delete?
2360 bool ArrayDelete = false;
2361 if (Tok.is(tok::l_square)) {
2362 ArrayDelete = true;
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002363 BalancedDelimiterTracker T(*this, tok::l_square);
2364
2365 T.consumeOpen();
2366 T.consumeClose();
2367 if (T.getCloseLocation().isInvalid())
Sebastian Redl20df9b72008-12-11 22:51:44 +00002368 return ExprError();
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002369 }
2370
John McCall60d7b3a2010-08-24 06:29:42 +00002371 ExprResult Operand(ParseCastExpression(false));
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00002372 if (Operand.isInvalid())
Sebastian Redl20df9b72008-12-11 22:51:44 +00002373 return move(Operand);
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002374
John McCall9ae2f072010-08-23 23:25:46 +00002375 return Actions.ActOnCXXDelete(Start, UseGlobal, ArrayDelete, Operand.take());
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002376}
Sebastian Redl64b45f72009-01-05 20:52:13 +00002377
Mike Stump1eb44332009-09-09 15:08:12 +00002378static UnaryTypeTrait UnaryTypeTraitFromTokKind(tok::TokenKind kind) {
Sebastian Redl64b45f72009-01-05 20:52:13 +00002379 switch(kind) {
David Blaikieb219cfc2011-09-23 05:06:16 +00002380 default: llvm_unreachable("Not a known unary type trait.");
Sebastian Redl64b45f72009-01-05 20:52:13 +00002381 case tok::kw___has_nothrow_assign: return UTT_HasNothrowAssign;
Sebastian Redl64b45f72009-01-05 20:52:13 +00002382 case tok::kw___has_nothrow_constructor: return UTT_HasNothrowConstructor;
John Wiegley20c0da72011-04-27 23:09:49 +00002383 case tok::kw___has_nothrow_copy: return UTT_HasNothrowCopy;
Sebastian Redl64b45f72009-01-05 20:52:13 +00002384 case tok::kw___has_trivial_assign: return UTT_HasTrivialAssign;
Sean Hunt023df372011-05-09 18:22:59 +00002385 case tok::kw___has_trivial_constructor:
2386 return UTT_HasTrivialDefaultConstructor;
John Wiegley20c0da72011-04-27 23:09:49 +00002387 case tok::kw___has_trivial_copy: return UTT_HasTrivialCopy;
Sebastian Redl64b45f72009-01-05 20:52:13 +00002388 case tok::kw___has_trivial_destructor: return UTT_HasTrivialDestructor;
2389 case tok::kw___has_virtual_destructor: return UTT_HasVirtualDestructor;
2390 case tok::kw___is_abstract: return UTT_IsAbstract;
John Wiegley20c0da72011-04-27 23:09:49 +00002391 case tok::kw___is_arithmetic: return UTT_IsArithmetic;
2392 case tok::kw___is_array: return UTT_IsArray;
Sebastian Redl64b45f72009-01-05 20:52:13 +00002393 case tok::kw___is_class: return UTT_IsClass;
John Wiegley20c0da72011-04-27 23:09:49 +00002394 case tok::kw___is_complete_type: return UTT_IsCompleteType;
2395 case tok::kw___is_compound: return UTT_IsCompound;
2396 case tok::kw___is_const: return UTT_IsConst;
Sebastian Redl64b45f72009-01-05 20:52:13 +00002397 case tok::kw___is_empty: return UTT_IsEmpty;
2398 case tok::kw___is_enum: return UTT_IsEnum;
Douglas Gregor5e9392b2011-12-03 18:14:24 +00002399 case tok::kw___is_final: return UTT_IsFinal;
John Wiegley20c0da72011-04-27 23:09:49 +00002400 case tok::kw___is_floating_point: return UTT_IsFloatingPoint;
2401 case tok::kw___is_function: return UTT_IsFunction;
2402 case tok::kw___is_fundamental: return UTT_IsFundamental;
2403 case tok::kw___is_integral: return UTT_IsIntegral;
John Wiegley20c0da72011-04-27 23:09:49 +00002404 case tok::kw___is_lvalue_reference: return UTT_IsLvalueReference;
2405 case tok::kw___is_member_function_pointer: return UTT_IsMemberFunctionPointer;
2406 case tok::kw___is_member_object_pointer: return UTT_IsMemberObjectPointer;
2407 case tok::kw___is_member_pointer: return UTT_IsMemberPointer;
2408 case tok::kw___is_object: return UTT_IsObject;
Chandler Carruth4e61ddd2011-04-23 10:47:20 +00002409 case tok::kw___is_literal: return UTT_IsLiteral;
Chandler Carruth38402812011-04-24 02:49:28 +00002410 case tok::kw___is_literal_type: return UTT_IsLiteral;
Sebastian Redl64b45f72009-01-05 20:52:13 +00002411 case tok::kw___is_pod: return UTT_IsPOD;
John Wiegley20c0da72011-04-27 23:09:49 +00002412 case tok::kw___is_pointer: return UTT_IsPointer;
Sebastian Redl64b45f72009-01-05 20:52:13 +00002413 case tok::kw___is_polymorphic: return UTT_IsPolymorphic;
John Wiegley20c0da72011-04-27 23:09:49 +00002414 case tok::kw___is_reference: return UTT_IsReference;
John Wiegley20c0da72011-04-27 23:09:49 +00002415 case tok::kw___is_rvalue_reference: return UTT_IsRvalueReference;
2416 case tok::kw___is_scalar: return UTT_IsScalar;
2417 case tok::kw___is_signed: return UTT_IsSigned;
2418 case tok::kw___is_standard_layout: return UTT_IsStandardLayout;
2419 case tok::kw___is_trivial: return UTT_IsTrivial;
Sean Huntfeb375d2011-05-13 00:31:07 +00002420 case tok::kw___is_trivially_copyable: return UTT_IsTriviallyCopyable;
Sebastian Redl64b45f72009-01-05 20:52:13 +00002421 case tok::kw___is_union: return UTT_IsUnion;
John Wiegley20c0da72011-04-27 23:09:49 +00002422 case tok::kw___is_unsigned: return UTT_IsUnsigned;
2423 case tok::kw___is_void: return UTT_IsVoid;
2424 case tok::kw___is_volatile: return UTT_IsVolatile;
Sebastian Redl64b45f72009-01-05 20:52:13 +00002425 }
Francois Pichet6ad6f282010-12-07 00:08:36 +00002426}
2427
2428static BinaryTypeTrait BinaryTypeTraitFromTokKind(tok::TokenKind kind) {
2429 switch(kind) {
Francois Pichet38c2b732010-12-07 00:55:57 +00002430 default: llvm_unreachable("Not a known binary type trait");
Francois Pichetf1872372010-12-08 22:35:30 +00002431 case tok::kw___is_base_of: return BTT_IsBaseOf;
John Wiegley20c0da72011-04-27 23:09:49 +00002432 case tok::kw___is_convertible: return BTT_IsConvertible;
2433 case tok::kw___is_same: return BTT_IsSame;
Francois Pichetf1872372010-12-08 22:35:30 +00002434 case tok::kw___builtin_types_compatible_p: return BTT_TypeCompatible;
Douglas Gregor9f361132011-01-27 20:28:01 +00002435 case tok::kw___is_convertible_to: return BTT_IsConvertibleTo;
Francois Pichet6ad6f282010-12-07 00:08:36 +00002436 }
Sebastian Redl64b45f72009-01-05 20:52:13 +00002437}
2438
John Wiegley21ff2e52011-04-28 00:16:57 +00002439static ArrayTypeTrait ArrayTypeTraitFromTokKind(tok::TokenKind kind) {
2440 switch(kind) {
2441 default: llvm_unreachable("Not a known binary type trait");
2442 case tok::kw___array_rank: return ATT_ArrayRank;
2443 case tok::kw___array_extent: return ATT_ArrayExtent;
2444 }
2445}
2446
John Wiegley55262202011-04-25 06:54:41 +00002447static ExpressionTrait ExpressionTraitFromTokKind(tok::TokenKind kind) {
2448 switch(kind) {
David Blaikieb219cfc2011-09-23 05:06:16 +00002449 default: llvm_unreachable("Not a known unary expression trait.");
John Wiegley55262202011-04-25 06:54:41 +00002450 case tok::kw___is_lvalue_expr: return ET_IsLValueExpr;
2451 case tok::kw___is_rvalue_expr: return ET_IsRValueExpr;
2452 }
2453}
2454
Sebastian Redl64b45f72009-01-05 20:52:13 +00002455/// ParseUnaryTypeTrait - Parse the built-in unary type-trait
2456/// pseudo-functions that allow implementation of the TR1/C++0x type traits
2457/// templates.
2458///
2459/// primary-expression:
2460/// [GNU] unary-type-trait '(' type-id ')'
2461///
John McCall60d7b3a2010-08-24 06:29:42 +00002462ExprResult Parser::ParseUnaryTypeTrait() {
Sebastian Redl64b45f72009-01-05 20:52:13 +00002463 UnaryTypeTrait UTT = UnaryTypeTraitFromTokKind(Tok.getKind());
2464 SourceLocation Loc = ConsumeToken();
2465
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002466 BalancedDelimiterTracker T(*this, tok::l_paren);
2467 if (T.expectAndConsume(diag::err_expected_lparen))
Sebastian Redl64b45f72009-01-05 20:52:13 +00002468 return ExprError();
2469
2470 // FIXME: Error reporting absolutely sucks! If the this fails to parse a type
2471 // there will be cryptic errors about mismatched parentheses and missing
2472 // specifiers.
Douglas Gregor809070a2009-02-18 17:45:20 +00002473 TypeResult Ty = ParseTypeName();
Sebastian Redl64b45f72009-01-05 20:52:13 +00002474
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002475 T.consumeClose();
Sebastian Redl64b45f72009-01-05 20:52:13 +00002476
Douglas Gregor809070a2009-02-18 17:45:20 +00002477 if (Ty.isInvalid())
2478 return ExprError();
2479
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002480 return Actions.ActOnUnaryTypeTrait(UTT, Loc, Ty.get(), T.getCloseLocation());
Sebastian Redl64b45f72009-01-05 20:52:13 +00002481}
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00002482
Francois Pichet6ad6f282010-12-07 00:08:36 +00002483/// ParseBinaryTypeTrait - Parse the built-in binary type-trait
2484/// pseudo-functions that allow implementation of the TR1/C++0x type traits
2485/// templates.
2486///
2487/// primary-expression:
2488/// [GNU] binary-type-trait '(' type-id ',' type-id ')'
2489///
2490ExprResult Parser::ParseBinaryTypeTrait() {
2491 BinaryTypeTrait BTT = BinaryTypeTraitFromTokKind(Tok.getKind());
2492 SourceLocation Loc = ConsumeToken();
2493
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002494 BalancedDelimiterTracker T(*this, tok::l_paren);
2495 if (T.expectAndConsume(diag::err_expected_lparen))
Francois Pichet6ad6f282010-12-07 00:08:36 +00002496 return ExprError();
2497
2498 TypeResult LhsTy = ParseTypeName();
2499 if (LhsTy.isInvalid()) {
2500 SkipUntil(tok::r_paren);
2501 return ExprError();
2502 }
2503
2504 if (ExpectAndConsume(tok::comma, diag::err_expected_comma)) {
2505 SkipUntil(tok::r_paren);
2506 return ExprError();
2507 }
2508
2509 TypeResult RhsTy = ParseTypeName();
2510 if (RhsTy.isInvalid()) {
2511 SkipUntil(tok::r_paren);
2512 return ExprError();
2513 }
2514
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002515 T.consumeClose();
Francois Pichet6ad6f282010-12-07 00:08:36 +00002516
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002517 return Actions.ActOnBinaryTypeTrait(BTT, Loc, LhsTy.get(), RhsTy.get(),
2518 T.getCloseLocation());
Francois Pichet6ad6f282010-12-07 00:08:36 +00002519}
2520
John Wiegley21ff2e52011-04-28 00:16:57 +00002521/// ParseArrayTypeTrait - Parse the built-in array type-trait
2522/// pseudo-functions.
2523///
2524/// primary-expression:
2525/// [Embarcadero] '__array_rank' '(' type-id ')'
2526/// [Embarcadero] '__array_extent' '(' type-id ',' expression ')'
2527///
2528ExprResult Parser::ParseArrayTypeTrait() {
2529 ArrayTypeTrait ATT = ArrayTypeTraitFromTokKind(Tok.getKind());
2530 SourceLocation Loc = ConsumeToken();
2531
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002532 BalancedDelimiterTracker T(*this, tok::l_paren);
2533 if (T.expectAndConsume(diag::err_expected_lparen))
John Wiegley21ff2e52011-04-28 00:16:57 +00002534 return ExprError();
2535
2536 TypeResult Ty = ParseTypeName();
2537 if (Ty.isInvalid()) {
2538 SkipUntil(tok::comma);
2539 SkipUntil(tok::r_paren);
2540 return ExprError();
2541 }
2542
2543 switch (ATT) {
2544 case ATT_ArrayRank: {
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002545 T.consumeClose();
2546 return Actions.ActOnArrayTypeTrait(ATT, Loc, Ty.get(), NULL,
2547 T.getCloseLocation());
John Wiegley21ff2e52011-04-28 00:16:57 +00002548 }
2549 case ATT_ArrayExtent: {
2550 if (ExpectAndConsume(tok::comma, diag::err_expected_comma)) {
2551 SkipUntil(tok::r_paren);
2552 return ExprError();
2553 }
2554
2555 ExprResult DimExpr = ParseExpression();
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002556 T.consumeClose();
John Wiegley21ff2e52011-04-28 00:16:57 +00002557
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002558 return Actions.ActOnArrayTypeTrait(ATT, Loc, Ty.get(), DimExpr.get(),
2559 T.getCloseLocation());
John Wiegley21ff2e52011-04-28 00:16:57 +00002560 }
John Wiegley21ff2e52011-04-28 00:16:57 +00002561 }
David Blaikie30263482012-01-20 21:50:17 +00002562 llvm_unreachable("Invalid ArrayTypeTrait!");
John Wiegley21ff2e52011-04-28 00:16:57 +00002563}
2564
John Wiegley55262202011-04-25 06:54:41 +00002565/// ParseExpressionTrait - Parse built-in expression-trait
2566/// pseudo-functions like __is_lvalue_expr( xxx ).
2567///
2568/// primary-expression:
2569/// [Embarcadero] expression-trait '(' expression ')'
2570///
2571ExprResult Parser::ParseExpressionTrait() {
2572 ExpressionTrait ET = ExpressionTraitFromTokKind(Tok.getKind());
2573 SourceLocation Loc = ConsumeToken();
2574
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002575 BalancedDelimiterTracker T(*this, tok::l_paren);
2576 if (T.expectAndConsume(diag::err_expected_lparen))
John Wiegley55262202011-04-25 06:54:41 +00002577 return ExprError();
2578
2579 ExprResult Expr = ParseExpression();
2580
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002581 T.consumeClose();
John Wiegley55262202011-04-25 06:54:41 +00002582
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002583 return Actions.ActOnExpressionTrait(ET, Loc, Expr.get(),
2584 T.getCloseLocation());
John Wiegley55262202011-04-25 06:54:41 +00002585}
2586
2587
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00002588/// ParseCXXAmbiguousParenExpression - We have parsed the left paren of a
2589/// parenthesized ambiguous type-id. This uses tentative parsing to disambiguate
2590/// based on the context past the parens.
John McCall60d7b3a2010-08-24 06:29:42 +00002591ExprResult
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00002592Parser::ParseCXXAmbiguousParenExpression(ParenParseOption &ExprType,
John McCallb3d87482010-08-24 05:47:05 +00002593 ParsedType &CastTy,
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002594 BalancedDelimiterTracker &Tracker) {
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00002595 assert(getLang().CPlusPlus && "Should only be called for C++!");
2596 assert(ExprType == CastExpr && "Compound literals are not ambiguous!");
2597 assert(isTypeIdInParens() && "Not a type-id!");
2598
John McCall60d7b3a2010-08-24 06:29:42 +00002599 ExprResult Result(true);
John McCallb3d87482010-08-24 05:47:05 +00002600 CastTy = ParsedType();
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00002601
2602 // We need to disambiguate a very ugly part of the C++ syntax:
2603 //
2604 // (T())x; - type-id
2605 // (T())*x; - type-id
2606 // (T())/x; - expression
2607 // (T()); - expression
2608 //
2609 // The bad news is that we cannot use the specialized tentative parser, since
2610 // it can only verify that the thing inside the parens can be parsed as
2611 // type-id, it is not useful for determining the context past the parens.
2612 //
2613 // The good news is that the parser can disambiguate this part without
Argyrios Kyrtzidisa558a892009-05-22 15:12:46 +00002614 // making any unnecessary Action calls.
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00002615 //
2616 // It uses a scheme similar to parsing inline methods. The parenthesized
2617 // tokens are cached, the context that follows is determined (possibly by
2618 // parsing a cast-expression), and then we re-introduce the cached tokens
2619 // into the token stream and parse them appropriately.
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00002620
Mike Stump1eb44332009-09-09 15:08:12 +00002621 ParenParseOption ParseAs;
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00002622 CachedTokens Toks;
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00002623
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00002624 // Store the tokens of the parentheses. We will parse them after we determine
2625 // the context that follows them.
Argyrios Kyrtzidis14b91622010-04-23 21:20:12 +00002626 if (!ConsumeAndStoreUntil(tok::r_paren, Toks)) {
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00002627 // We didn't find the ')' we expected.
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002628 Tracker.consumeClose();
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00002629 return ExprError();
2630 }
2631
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00002632 if (Tok.is(tok::l_brace)) {
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00002633 ParseAs = CompoundLiteral;
2634 } else {
2635 bool NotCastExpr;
Eli Friedmanb53f08a2009-05-25 19:41:42 +00002636 // FIXME: Special-case ++ and --: "(S())++;" is not a cast-expression
2637 if (Tok.is(tok::l_paren) && NextToken().is(tok::r_paren)) {
2638 NotCastExpr = true;
2639 } else {
2640 // Try parsing the cast-expression that may follow.
2641 // If it is not a cast-expression, NotCastExpr will be true and no token
2642 // will be consumed.
2643 Result = ParseCastExpression(false/*isUnaryExpression*/,
2644 false/*isAddressofOperand*/,
John McCallb3d87482010-08-24 05:47:05 +00002645 NotCastExpr,
Argyrios Kyrtzidis0a851832011-07-01 22:22:59 +00002646 // type-id has priority.
Kaelyn Uhraincd78e612012-01-25 20:49:08 +00002647 IsTypeCast);
Eli Friedmanb53f08a2009-05-25 19:41:42 +00002648 }
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00002649
2650 // If we parsed a cast-expression, it's really a type-id, otherwise it's
2651 // an expression.
2652 ParseAs = NotCastExpr ? SimpleExpr : CastExpr;
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00002653 }
2654
Mike Stump1eb44332009-09-09 15:08:12 +00002655 // The current token should go after the cached tokens.
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00002656 Toks.push_back(Tok);
2657 // Re-enter the stored parenthesized tokens into the token stream, so we may
2658 // parse them now.
2659 PP.EnterTokenStream(Toks.data(), Toks.size(),
2660 true/*DisableMacroExpansion*/, false/*OwnsTokens*/);
2661 // Drop the current token and bring the first cached one. It's the same token
2662 // as when we entered this function.
2663 ConsumeAnyToken();
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00002664
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00002665 if (ParseAs >= CompoundLiteral) {
Argyrios Kyrtzidis0a851832011-07-01 22:22:59 +00002666 // Parse the type declarator.
2667 DeclSpec DS(AttrFactory);
2668 ParseSpecifierQualifierList(DS);
2669 Declarator DeclaratorInfo(DS, Declarator::TypeNameContext);
2670 ParseDeclarator(DeclaratorInfo);
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00002671
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00002672 // Match the ')'.
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002673 Tracker.consumeClose();
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00002674
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00002675 if (ParseAs == CompoundLiteral) {
2676 ExprType = CompoundLiteral;
Argyrios Kyrtzidis0a851832011-07-01 22:22:59 +00002677 TypeResult Ty = ParseTypeName();
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002678 return ParseCompoundLiteralExpression(Ty.get(),
2679 Tracker.getOpenLocation(),
2680 Tracker.getCloseLocation());
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00002681 }
Mike Stump1eb44332009-09-09 15:08:12 +00002682
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00002683 // We parsed '(' type-id ')' and the thing after it wasn't a '{'.
2684 assert(ParseAs == CastExpr);
2685
Argyrios Kyrtzidis0a851832011-07-01 22:22:59 +00002686 if (DeclaratorInfo.isInvalidType())
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00002687 return ExprError();
2688
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00002689 // Result is what ParseCastExpression returned earlier.
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00002690 if (!Result.isInvalid())
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002691 Result = Actions.ActOnCastExpr(getCurScope(), Tracker.getOpenLocation(),
2692 DeclaratorInfo, CastTy,
2693 Tracker.getCloseLocation(), Result.take());
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00002694 return move(Result);
2695 }
Mike Stump1eb44332009-09-09 15:08:12 +00002696
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00002697 // Not a compound literal, and not followed by a cast-expression.
2698 assert(ParseAs == SimpleExpr);
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00002699
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00002700 ExprType = SimpleExpr;
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00002701 Result = ParseExpression();
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00002702 if (!Result.isInvalid() && Tok.is(tok::r_paren))
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002703 Result = Actions.ActOnParenExpr(Tracker.getOpenLocation(),
2704 Tok.getLocation(), Result.take());
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00002705
2706 // Match the ')'.
2707 if (Result.isInvalid()) {
2708 SkipUntil(tok::r_paren);
2709 return ExprError();
2710 }
Mike Stump1eb44332009-09-09 15:08:12 +00002711
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002712 Tracker.consumeClose();
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00002713 return move(Result);
2714}