blob: a6162e2d4c528ae243cff0bba9d2b4e65efedc16 [file] [log] [blame]
Chris Lattner29375652006-12-04 18:06:35 +00001//===--- ParseExprCXX.cpp - C++ Expression Parsing ------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner5b12ab82007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Chris Lattner29375652006-12-04 18:06:35 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the Expression parsing implementation for C++.
11//
12//===----------------------------------------------------------------------===//
Erik Verbruggen888d52a2014-01-15 09:15:43 +000013#include "clang/AST/ASTContext.h"
Douglas Gregor94a32472011-01-11 00:33:19 +000014#include "RAIIObjectsForParser.h"
Chandler Carruth757fcd62014-03-04 10:05:20 +000015#include "clang/AST/DeclTemplate.h"
Eli Friedmanc7c97142012-01-04 02:40:39 +000016#include "clang/Basic/PrettyStackTrace.h"
Richard Smith7d182a72012-03-08 23:06:02 +000017#include "clang/Lex/LiteralSupport.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000018#include "clang/Parse/ParseDiagnostic.h"
Chandler Carruth5553d0d2014-01-07 11:51:46 +000019#include "clang/Parse/Parser.h"
John McCall8b0666c2010-08-20 18:27:03 +000020#include "clang/Sema/DeclSpec.h"
21#include "clang/Sema/ParsedTemplate.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000022#include "clang/Sema/Scope.h"
Douglas Gregor7861a802009-11-03 01:35:08 +000023#include "llvm/Support/ErrorHandling.h"
24
Faisal Vali2b391ab2013-09-26 19:54:12 +000025
Chris Lattner29375652006-12-04 18:06:35 +000026using namespace clang;
27
Alp Tokerf990cef2014-01-07 02:35:33 +000028static int SelectDigraphErrorMessage(tok::TokenKind Kind) {
29 switch (Kind) {
30 // template name
31 case tok::unknown: return 0;
32 // casts
33 case tok::kw_const_cast: return 1;
34 case tok::kw_dynamic_cast: return 2;
35 case tok::kw_reinterpret_cast: return 3;
36 case tok::kw_static_cast: return 4;
37 default:
38 llvm_unreachable("Unknown type for digraph error message.");
39 }
40}
41
Richard Smith55858492011-04-14 21:45:45 +000042// Are the two tokens adjacent in the same source file?
Richard Smith7b3f3222012-06-18 06:11:04 +000043bool Parser::areTokensAdjacent(const Token &First, const Token &Second) {
Richard Smith55858492011-04-14 21:45:45 +000044 SourceManager &SM = PP.getSourceManager();
45 SourceLocation FirstLoc = SM.getSpellingLoc(First.getLocation());
Argyrios Kyrtzidise6e67de2011-09-19 20:40:19 +000046 SourceLocation FirstEnd = FirstLoc.getLocWithOffset(First.getLength());
Richard Smith55858492011-04-14 21:45:45 +000047 return FirstEnd == SM.getSpellingLoc(Second.getLocation());
48}
49
50// Suggest fixit for "<::" after a cast.
51static void FixDigraph(Parser &P, Preprocessor &PP, Token &DigraphToken,
52 Token &ColonToken, tok::TokenKind Kind, bool AtDigraph) {
53 // Pull '<:' and ':' off token stream.
54 if (!AtDigraph)
55 PP.Lex(DigraphToken);
56 PP.Lex(ColonToken);
57
58 SourceRange Range;
59 Range.setBegin(DigraphToken.getLocation());
60 Range.setEnd(ColonToken.getLocation());
61 P.Diag(DigraphToken.getLocation(), diag::err_missing_whitespace_digraph)
Alp Tokerf990cef2014-01-07 02:35:33 +000062 << SelectDigraphErrorMessage(Kind)
63 << FixItHint::CreateReplacement(Range, "< ::");
Richard Smith55858492011-04-14 21:45:45 +000064
65 // Update token information to reflect their change in token type.
66 ColonToken.setKind(tok::coloncolon);
Argyrios Kyrtzidise6e67de2011-09-19 20:40:19 +000067 ColonToken.setLocation(ColonToken.getLocation().getLocWithOffset(-1));
Richard Smith55858492011-04-14 21:45:45 +000068 ColonToken.setLength(2);
69 DigraphToken.setKind(tok::less);
70 DigraphToken.setLength(1);
71
72 // Push new tokens back to token stream.
73 PP.EnterToken(ColonToken);
74 if (!AtDigraph)
75 PP.EnterToken(DigraphToken);
76}
77
Richard Trieu01fc0012011-09-19 19:01:00 +000078// Check for '<::' which should be '< ::' instead of '[:' when following
79// a template name.
80void Parser::CheckForTemplateAndDigraph(Token &Next, ParsedType ObjectType,
81 bool EnteringContext,
82 IdentifierInfo &II, CXXScopeSpec &SS) {
Richard Trieu02e25db2011-09-20 20:03:50 +000083 if (!Next.is(tok::l_square) || Next.getLength() != 2)
Richard Trieu01fc0012011-09-19 19:01:00 +000084 return;
85
86 Token SecondToken = GetLookAheadToken(2);
Richard Smith7b3f3222012-06-18 06:11:04 +000087 if (!SecondToken.is(tok::colon) || !areTokensAdjacent(Next, SecondToken))
Richard Trieu01fc0012011-09-19 19:01:00 +000088 return;
89
90 TemplateTy Template;
91 UnqualifiedId TemplateName;
92 TemplateName.setIdentifier(&II, Tok.getLocation());
93 bool MemberOfUnknownSpecialization;
94 if (!Actions.isTemplateName(getCurScope(), SS, /*hasTemplateKeyword=*/false,
95 TemplateName, ObjectType, EnteringContext,
96 Template, MemberOfUnknownSpecialization))
97 return;
98
Alp Tokerf990cef2014-01-07 02:35:33 +000099 FixDigraph(*this, PP, Next, SecondToken, tok::unknown,
100 /*AtDigraph*/false);
Richard Trieu01fc0012011-09-19 19:01:00 +0000101}
102
Richard Trieu1f3ea7b2012-11-02 01:08:58 +0000103/// \brief Emits an error for a left parentheses after a double colon.
104///
105/// When a '(' is found after a '::', emit an error. Attempt to fix the token
Nico Weber6be9b252012-11-29 05:29:23 +0000106/// stream by removing the '(', and the matching ')' if found.
Richard Trieu1f3ea7b2012-11-02 01:08:58 +0000107void Parser::CheckForLParenAfterColonColon() {
108 if (!Tok.is(tok::l_paren))
109 return;
110
David Majnemer6ca445e2014-12-17 01:39:22 +0000111 Token LParen = Tok;
112 Token NextTok = GetLookAheadToken(1);
113 Token StarTok = NextTok;
114 // Check for (identifier or (*identifier
115 Token IdentifierTok = StarTok.is(tok::star) ? GetLookAheadToken(2) : StarTok;
116 if (IdentifierTok.isNot(tok::identifier))
Richard Trieu1f3ea7b2012-11-02 01:08:58 +0000117 return;
David Majnemer6ca445e2014-12-17 01:39:22 +0000118 // Eat the '('.
119 ConsumeParen();
120 Token RParen;
121 // Do we have a ')' ?
122 NextTok = StarTok.is(tok::star) ? GetLookAheadToken(2) : GetLookAheadToken(1);
123 if (NextTok.is(tok::r_paren)) {
124 RParen = NextTok;
125 // Eat the '*' if it is present.
126 if (StarTok.is(tok::star))
Richard Trieu1f3ea7b2012-11-02 01:08:58 +0000127 ConsumeToken();
David Majnemer6ca445e2014-12-17 01:39:22 +0000128 // Eat the identifier.
129 ConsumeToken();
130 // Add the identifier token back.
131 PP.EnterToken(IdentifierTok);
132 // Add the '*' back if it was present.
133 if (StarTok.is(tok::star))
134 PP.EnterToken(StarTok);
135 // Eat the ')'.
136 ConsumeParen();
Richard Trieu1f3ea7b2012-11-02 01:08:58 +0000137 }
138
David Majnemer6ca445e2014-12-17 01:39:22 +0000139 Diag(LParen.getLocation(), diag::err_paren_after_colon_colon)
140 << FixItHint::CreateRemoval(LParen.getLocation())
141 << FixItHint::CreateRemoval(RParen.getLocation());
Richard Trieu1f3ea7b2012-11-02 01:08:58 +0000142}
143
Mike Stump11289f42009-09-09 15:08:12 +0000144/// \brief Parse global scope or nested-name-specifier if present.
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000145///
146/// Parses a C++ global scope specifier ('::') or nested-name-specifier (which
Mike Stump11289f42009-09-09 15:08:12 +0000147/// may be preceded by '::'). Note that this routine will not parse ::new or
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000148/// ::delete; it will just leave them in the token stream.
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +0000149///
150/// '::'[opt] nested-name-specifier
151/// '::'
152///
153/// nested-name-specifier:
154/// type-name '::'
155/// namespace-name '::'
156/// nested-name-specifier identifier '::'
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000157/// nested-name-specifier 'template'[opt] simple-template-id '::'
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +0000158///
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000159///
Mike Stump11289f42009-09-09 15:08:12 +0000160/// \param SS the scope specifier that will be set to the parsed
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000161/// nested-name-specifier (or empty)
162///
Mike Stump11289f42009-09-09 15:08:12 +0000163/// \param ObjectType if this nested-name-specifier is being parsed following
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000164/// the "." or "->" of a member access expression, this parameter provides the
165/// type of the object whose members are being accessed.
166///
167/// \param EnteringContext whether we will be entering into the context of
168/// the nested-name-specifier after parsing it.
169///
Douglas Gregore610ada2010-02-24 18:44:31 +0000170/// \param MayBePseudoDestructor When non-NULL, points to a flag that
171/// indicates whether this nested-name-specifier may be part of a
172/// pseudo-destructor name. In this case, the flag will be set false
173/// if we don't actually end up parsing a destructor name. Moreorover,
174/// if we do end up determining that we are parsing a destructor name,
175/// the last component of the nested-name-specifier is not parsed as
176/// part of the scope specifier.
Richard Smith7447af42013-03-26 01:15:19 +0000177///
178/// \param IsTypename If \c true, this nested-name-specifier is known to be
179/// part of a type name. This is used to improve error recovery.
180///
181/// \param LastII When non-NULL, points to an IdentifierInfo* that will be
182/// filled in with the leading identifier in the last component of the
183/// nested-name-specifier, if any.
Douglas Gregor90d554e2010-02-21 18:36:56 +0000184///
John McCall1f476a12010-02-26 08:45:28 +0000185/// \returns true if there was an error parsing a scope specifier
Douglas Gregore861bac2009-08-25 22:51:20 +0000186bool Parser::ParseOptionalCXXScopeSpecifier(CXXScopeSpec &SS,
John McCallba7bf592010-08-24 05:47:05 +0000187 ParsedType ObjectType,
Douglas Gregor90d554e2010-02-21 18:36:56 +0000188 bool EnteringContext,
Francois Pichet4e7a2c02011-03-27 19:41:34 +0000189 bool *MayBePseudoDestructor,
Richard Smith7447af42013-03-26 01:15:19 +0000190 bool IsTypename,
191 IdentifierInfo **LastII) {
David Blaikiebbafb8a2012-03-11 07:00:24 +0000192 assert(getLangOpts().CPlusPlus &&
Chris Lattnerb5134c02009-01-05 01:24:05 +0000193 "Call sites of this function should be guarded by checking for C++");
Mike Stump11289f42009-09-09 15:08:12 +0000194
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +0000195 if (Tok.is(tok::annot_cxxscope)) {
Richard Smith7447af42013-03-26 01:15:19 +0000196 assert(!LastII && "want last identifier but have already annotated scope");
Douglas Gregor869ad452011-02-24 17:54:50 +0000197 Actions.RestoreNestedNameSpecifierAnnotation(Tok.getAnnotationValue(),
198 Tok.getAnnotationRange(),
199 SS);
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +0000200 ConsumeToken();
John McCall1f476a12010-02-26 08:45:28 +0000201 return false;
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +0000202 }
Chris Lattnerf9b2cd42009-01-04 21:14:15 +0000203
Larisse Voufob959c3c2013-08-06 05:49:26 +0000204 if (Tok.is(tok::annot_template_id)) {
205 // If the current token is an annotated template id, it may already have
206 // a scope specifier. Restore it.
207 TemplateIdAnnotation *TemplateId = takeTemplateIdAnnotation(Tok);
208 SS = TemplateId->SS;
209 }
210
Richard Smith7447af42013-03-26 01:15:19 +0000211 if (LastII)
Craig Topper161e4db2014-05-21 06:02:52 +0000212 *LastII = nullptr;
Richard Smith7447af42013-03-26 01:15:19 +0000213
Douglas Gregor7f741122009-02-25 19:37:18 +0000214 bool HasScopeSpecifier = false;
215
Chris Lattner8a7d10d2009-01-05 03:55:46 +0000216 if (Tok.is(tok::coloncolon)) {
217 // ::new and ::delete aren't nested-name-specifiers.
218 tok::TokenKind NextKind = NextToken().getKind();
219 if (NextKind == tok::kw_new || NextKind == tok::kw_delete)
220 return false;
Mike Stump11289f42009-09-09 15:08:12 +0000221
David Majnemere8fb28f2014-12-29 19:19:18 +0000222 if (NextKind == tok::l_brace) {
223 // It is invalid to have :: {, consume the scope qualifier and pretend
224 // like we never saw it.
225 Diag(ConsumeToken(), diag::err_expected) << tok::identifier;
226 } else {
227 // '::' - Global scope qualifier.
228 if (Actions.ActOnCXXGlobalScopeSpecifier(ConsumeToken(), SS))
229 return true;
Richard Trieu1f3ea7b2012-11-02 01:08:58 +0000230
David Majnemere8fb28f2014-12-29 19:19:18 +0000231 CheckForLParenAfterColonColon();
Richard Trieu1f3ea7b2012-11-02 01:08:58 +0000232
David Majnemere8fb28f2014-12-29 19:19:18 +0000233 HasScopeSpecifier = true;
234 }
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +0000235 }
236
Nikola Smiljanic67860242014-09-26 00:28:20 +0000237 if (Tok.is(tok::kw___super)) {
238 SourceLocation SuperLoc = ConsumeToken();
239 if (!Tok.is(tok::coloncolon)) {
240 Diag(Tok.getLocation(), diag::err_expected_coloncolon_after_super);
241 return true;
242 }
243
244 return Actions.ActOnSuperScopeSpecifier(SuperLoc, ConsumeToken(), SS);
245 }
246
Douglas Gregore610ada2010-02-24 18:44:31 +0000247 bool CheckForDestructor = false;
248 if (MayBePseudoDestructor && *MayBePseudoDestructor) {
249 CheckForDestructor = true;
250 *MayBePseudoDestructor = false;
251 }
252
Richard Smitha9d10012014-10-04 01:57:39 +0000253 if (!HasScopeSpecifier &&
254 (Tok.is(tok::kw_decltype) || Tok.is(tok::annot_decltype))) {
David Blaikie15a430a2011-12-04 05:04:18 +0000255 DeclSpec DS(AttrFactory);
256 SourceLocation DeclLoc = Tok.getLocation();
257 SourceLocation EndLoc = ParseDecltypeSpecifier(DS);
Alp Tokera3ebe6e2013-12-17 14:12:37 +0000258
259 SourceLocation CCLoc;
260 if (!TryConsumeToken(tok::coloncolon, CCLoc)) {
David Blaikie15a430a2011-12-04 05:04:18 +0000261 AnnotateExistingDecltypeSpecifier(DS, DeclLoc, EndLoc);
262 return false;
263 }
Alp Tokera3ebe6e2013-12-17 14:12:37 +0000264
David Blaikie15a430a2011-12-04 05:04:18 +0000265 if (Actions.ActOnCXXNestedNameSpecifierDecltype(SS, DS, CCLoc))
266 SS.SetInvalid(SourceRange(DeclLoc, CCLoc));
267
268 HasScopeSpecifier = true;
269 }
270
Douglas Gregor7f741122009-02-25 19:37:18 +0000271 while (true) {
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000272 if (HasScopeSpecifier) {
273 // C++ [basic.lookup.classref]p5:
274 // If the qualified-id has the form
Douglas Gregor308047d2009-09-09 00:23:06 +0000275 //
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000276 // ::class-name-or-namespace-name::...
Douglas Gregor308047d2009-09-09 00:23:06 +0000277 //
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000278 // the class-name-or-namespace-name is looked up in global scope as a
279 // class-name or namespace-name.
280 //
281 // To implement this, we clear out the object type as soon as we've
282 // seen a leading '::' or part of a nested-name-specifier.
John McCallba7bf592010-08-24 05:47:05 +0000283 ObjectType = ParsedType();
Douglas Gregor2436e712009-09-17 21:32:03 +0000284
285 if (Tok.is(tok::code_completion)) {
286 // Code completion for a nested-name-specifier, where the code
287 // code completion token follows the '::'.
Douglas Gregor0be31a22010-07-02 17:43:08 +0000288 Actions.CodeCompleteQualifiedId(getCurScope(), SS, EnteringContext);
Argyrios Kyrtzidis7d94c922011-04-23 01:04:12 +0000289 // Include code completion token into the range of the scope otherwise
290 // when we try to annotate the scope tokens the dangling code completion
291 // token will cause assertion in
292 // Preprocessor::AnnotatePreviousCachedTokens.
Argyrios Kyrtzidis5cec2ae2011-09-04 03:32:15 +0000293 SS.setEndLoc(Tok.getLocation());
294 cutOffParsing();
295 return true;
Douglas Gregor2436e712009-09-17 21:32:03 +0000296 }
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000297 }
Mike Stump11289f42009-09-09 15:08:12 +0000298
Douglas Gregor7f741122009-02-25 19:37:18 +0000299 // nested-name-specifier:
Chris Lattner0eed3a62009-06-26 03:47:46 +0000300 // nested-name-specifier 'template'[opt] simple-template-id '::'
301
302 // Parse the optional 'template' keyword, then make sure we have
303 // 'identifier <' after it.
304 if (Tok.is(tok::kw_template)) {
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000305 // If we don't have a scope specifier or an object type, this isn't a
Eli Friedman2624be42009-08-29 04:08:08 +0000306 // nested-name-specifier, since they aren't allowed to start with
307 // 'template'.
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000308 if (!HasScopeSpecifier && !ObjectType)
Eli Friedman2624be42009-08-29 04:08:08 +0000309 break;
310
Douglas Gregor120635b2009-11-11 16:39:34 +0000311 TentativeParsingAction TPA(*this);
Chris Lattner0eed3a62009-06-26 03:47:46 +0000312 SourceLocation TemplateKWLoc = ConsumeToken();
Richard Smithd091dc12013-12-05 00:58:33 +0000313
Douglas Gregor71395fa2009-11-04 00:56:37 +0000314 UnqualifiedId TemplateName;
315 if (Tok.is(tok::identifier)) {
Douglas Gregor71395fa2009-11-04 00:56:37 +0000316 // Consume the identifier.
Douglas Gregor120635b2009-11-11 16:39:34 +0000317 TemplateName.setIdentifier(Tok.getIdentifierInfo(), Tok.getLocation());
Douglas Gregor71395fa2009-11-04 00:56:37 +0000318 ConsumeToken();
319 } else if (Tok.is(tok::kw_operator)) {
Richard Smithd091dc12013-12-05 00:58:33 +0000320 // We don't need to actually parse the unqualified-id in this case,
321 // because a simple-template-id cannot start with 'operator', but
322 // go ahead and parse it anyway for consistency with the case where
323 // we already annotated the template-id.
324 if (ParseUnqualifiedIdOperator(SS, EnteringContext, ObjectType,
Douglas Gregor120635b2009-11-11 16:39:34 +0000325 TemplateName)) {
326 TPA.Commit();
Douglas Gregor71395fa2009-11-04 00:56:37 +0000327 break;
Douglas Gregor120635b2009-11-11 16:39:34 +0000328 }
Richard Smithd091dc12013-12-05 00:58:33 +0000329
Alexis Hunted0530f2009-11-28 08:58:14 +0000330 if (TemplateName.getKind() != UnqualifiedId::IK_OperatorFunctionId &&
331 TemplateName.getKind() != UnqualifiedId::IK_LiteralOperatorId) {
Douglas Gregor71395fa2009-11-04 00:56:37 +0000332 Diag(TemplateName.getSourceRange().getBegin(),
333 diag::err_id_after_template_in_nested_name_spec)
334 << TemplateName.getSourceRange();
Douglas Gregor120635b2009-11-11 16:39:34 +0000335 TPA.Commit();
Douglas Gregor71395fa2009-11-04 00:56:37 +0000336 break;
337 }
338 } else {
Douglas Gregor120635b2009-11-11 16:39:34 +0000339 TPA.Revert();
Chris Lattner0eed3a62009-06-26 03:47:46 +0000340 break;
341 }
Mike Stump11289f42009-09-09 15:08:12 +0000342
Douglas Gregor120635b2009-11-11 16:39:34 +0000343 // If the next token is not '<', we have a qualified-id that refers
344 // to a template name, such as T::template apply, but is not a
345 // template-id.
346 if (Tok.isNot(tok::less)) {
347 TPA.Revert();
348 break;
349 }
350
351 // Commit to parsing the template-id.
352 TPA.Commit();
Douglas Gregorbb119652010-06-16 23:00:59 +0000353 TemplateTy Template;
Abramo Bagnara7945c982012-01-27 09:46:47 +0000354 if (TemplateNameKind TNK
355 = Actions.ActOnDependentTemplateName(getCurScope(),
356 SS, TemplateKWLoc, TemplateName,
357 ObjectType, EnteringContext,
358 Template)) {
359 if (AnnotateTemplateIdToken(Template, TNK, SS, TemplateKWLoc,
360 TemplateName, false))
Douglas Gregorbb119652010-06-16 23:00:59 +0000361 return true;
362 } else
John McCall1f476a12010-02-26 08:45:28 +0000363 return true;
Mike Stump11289f42009-09-09 15:08:12 +0000364
Chris Lattner0eed3a62009-06-26 03:47:46 +0000365 continue;
366 }
Mike Stump11289f42009-09-09 15:08:12 +0000367
Douglas Gregor7f741122009-02-25 19:37:18 +0000368 if (Tok.is(tok::annot_template_id) && NextToken().is(tok::coloncolon)) {
Mike Stump11289f42009-09-09 15:08:12 +0000369 // We have
Douglas Gregor7f741122009-02-25 19:37:18 +0000370 //
Richard Smith72bfbd82013-12-04 00:28:23 +0000371 // template-id '::'
Douglas Gregor7f741122009-02-25 19:37:18 +0000372 //
Richard Smith72bfbd82013-12-04 00:28:23 +0000373 // So we need to check whether the template-id is a simple-template-id of
374 // the right kind (it should name a type or be dependent), and then
Douglas Gregorb67535d2009-03-31 00:43:58 +0000375 // convert it into a type within the nested-name-specifier.
Argyrios Kyrtzidisc0c5dd22011-06-22 06:09:49 +0000376 TemplateIdAnnotation *TemplateId = takeTemplateIdAnnotation(Tok);
Douglas Gregore610ada2010-02-24 18:44:31 +0000377 if (CheckForDestructor && GetLookAheadToken(2).is(tok::tilde)) {
378 *MayBePseudoDestructor = true;
John McCall1f476a12010-02-26 08:45:28 +0000379 return false;
Douglas Gregore610ada2010-02-24 18:44:31 +0000380 }
381
Richard Smith7447af42013-03-26 01:15:19 +0000382 if (LastII)
383 *LastII = TemplateId->Name;
384
Douglas Gregor8b6070b2011-03-04 21:37:14 +0000385 // Consume the template-id token.
386 ConsumeToken();
Serge Pavlov6a7ffbe2014-04-13 16:52:03 +0000387
Douglas Gregor8b6070b2011-03-04 21:37:14 +0000388 assert(Tok.is(tok::coloncolon) && "NextToken() not working properly!");
389 SourceLocation CCLoc = ConsumeToken();
Mike Stump11289f42009-09-09 15:08:12 +0000390
David Blaikie8c045bc2011-11-07 03:30:03 +0000391 HasScopeSpecifier = true;
Serge Pavlov6a7ffbe2014-04-13 16:52:03 +0000392
Benjamin Kramercc4c49d2012-08-23 23:38:35 +0000393 ASTTemplateArgsPtr TemplateArgsPtr(TemplateId->getTemplateArgs(),
Douglas Gregor8b6070b2011-03-04 21:37:14 +0000394 TemplateId->NumArgs);
Serge Pavlov6a7ffbe2014-04-13 16:52:03 +0000395
Douglas Gregor8b6070b2011-03-04 21:37:14 +0000396 if (Actions.ActOnCXXNestedNameSpecifier(getCurScope(),
Abramo Bagnara7945c982012-01-27 09:46:47 +0000397 SS,
398 TemplateId->TemplateKWLoc,
Douglas Gregor8b6070b2011-03-04 21:37:14 +0000399 TemplateId->Template,
400 TemplateId->TemplateNameLoc,
401 TemplateId->LAngleLoc,
402 TemplateArgsPtr,
403 TemplateId->RAngleLoc,
404 CCLoc,
405 EnteringContext)) {
406 SourceLocation StartLoc
407 = SS.getBeginLoc().isValid()? SS.getBeginLoc()
408 : TemplateId->TemplateNameLoc;
409 SS.SetInvalid(SourceRange(StartLoc, CCLoc));
Chris Lattner704edfb2009-06-26 03:45:46 +0000410 }
Argyrios Kyrtzidis13935672011-05-03 18:45:38 +0000411
Douglas Gregor8b6070b2011-03-04 21:37:14 +0000412 continue;
Douglas Gregor7f741122009-02-25 19:37:18 +0000413 }
414
Chris Lattnere2355f72009-06-26 03:52:38 +0000415 // The rest of the nested-name-specifier possibilities start with
416 // tok::identifier.
417 if (Tok.isNot(tok::identifier))
418 break;
419
420 IdentifierInfo &II = *Tok.getIdentifierInfo();
421
422 // nested-name-specifier:
423 // type-name '::'
424 // namespace-name '::'
425 // nested-name-specifier identifier '::'
426 Token Next = NextToken();
Chris Lattner1c428032009-12-07 01:36:53 +0000427
428 // If we get foo:bar, this is almost certainly a typo for foo::bar. Recover
429 // and emit a fixit hint for it.
Douglas Gregor90d554e2010-02-21 18:36:56 +0000430 if (Next.is(tok::colon) && !ColonIsSacred) {
Douglas Gregor90c99722011-02-24 00:17:56 +0000431 if (Actions.IsInvalidUnlessNestedName(getCurScope(), SS, II,
432 Tok.getLocation(),
433 Next.getLocation(), ObjectType,
Douglas Gregor90d554e2010-02-21 18:36:56 +0000434 EnteringContext) &&
435 // If the token after the colon isn't an identifier, it's still an
436 // error, but they probably meant something else strange so don't
437 // recover like this.
438 PP.LookAhead(1).is(tok::identifier)) {
Serge Pavlov6a7ffbe2014-04-13 16:52:03 +0000439 Diag(Next, diag::err_unexpected_colon_in_nested_name_spec)
Douglas Gregora771f462010-03-31 17:46:05 +0000440 << FixItHint::CreateReplacement(Next.getLocation(), "::");
Douglas Gregor90d554e2010-02-21 18:36:56 +0000441 // Recover as if the user wrote '::'.
442 Next.setKind(tok::coloncolon);
443 }
Chris Lattner1c428032009-12-07 01:36:53 +0000444 }
David Majnemerf58efd92014-12-29 23:12:23 +0000445
446 if (Next.is(tok::coloncolon) && GetLookAheadToken(2).is(tok::l_brace)) {
447 // It is invalid to have :: {, consume the scope qualifier and pretend
448 // like we never saw it.
449 Token Identifier = Tok; // Stash away the identifier.
450 ConsumeToken(); // Eat the identifier, current token is now '::'.
451 Diag(PP.getLocForEndOfTokenConsumeToken(), diag::err_expected) << tok::identifier;
452 UnconsumeToken(Identifier); // Stick the identifier back.
453 Next = NextToken(); // Point Next at the '{' token.
454 }
455
Chris Lattnere2355f72009-06-26 03:52:38 +0000456 if (Next.is(tok::coloncolon)) {
Douglas Gregor0d5b0a12010-02-24 21:29:12 +0000457 if (CheckForDestructor && GetLookAheadToken(2).is(tok::tilde) &&
Nico Weber61281fa2014-07-26 22:15:25 +0000458 !Actions.isNonTypeNestedNameSpecifier(
459 getCurScope(), SS, Tok.getLocation(), II, ObjectType)) {
Douglas Gregore610ada2010-02-24 18:44:31 +0000460 *MayBePseudoDestructor = true;
John McCall1f476a12010-02-26 08:45:28 +0000461 return false;
Douglas Gregore610ada2010-02-24 18:44:31 +0000462 }
463
Serge Pavlov6a7ffbe2014-04-13 16:52:03 +0000464 if (ColonIsSacred) {
465 const Token &Next2 = GetLookAheadToken(2);
466 if (Next2.is(tok::kw_private) || Next2.is(tok::kw_protected) ||
467 Next2.is(tok::kw_public) || Next2.is(tok::kw_virtual)) {
468 Diag(Next2, diag::err_unexpected_token_in_nested_name_spec)
469 << Next2.getName()
470 << FixItHint::CreateReplacement(Next.getLocation(), ":");
471 Token ColonColon;
472 PP.Lex(ColonColon);
473 ColonColon.setKind(tok::colon);
474 PP.EnterToken(ColonColon);
475 break;
476 }
477 }
478
Richard Smith7447af42013-03-26 01:15:19 +0000479 if (LastII)
480 *LastII = &II;
481
Chris Lattnere2355f72009-06-26 03:52:38 +0000482 // We have an identifier followed by a '::'. Lookup this name
483 // as the name in a nested-name-specifier.
Serge Pavlov6a7ffbe2014-04-13 16:52:03 +0000484 Token Identifier = Tok;
Chris Lattnere2355f72009-06-26 03:52:38 +0000485 SourceLocation IdLoc = ConsumeToken();
Chris Lattner1c428032009-12-07 01:36:53 +0000486 assert((Tok.is(tok::coloncolon) || Tok.is(tok::colon)) &&
487 "NextToken() not working properly!");
Serge Pavlov6a7ffbe2014-04-13 16:52:03 +0000488 Token ColonColon = Tok;
Chris Lattnere2355f72009-06-26 03:52:38 +0000489 SourceLocation CCLoc = ConsumeToken();
Mike Stump11289f42009-09-09 15:08:12 +0000490
Richard Trieu1f3ea7b2012-11-02 01:08:58 +0000491 CheckForLParenAfterColonColon();
492
Serge Pavlov6a7ffbe2014-04-13 16:52:03 +0000493 bool IsCorrectedToColon = false;
Craig Topper161e4db2014-05-21 06:02:52 +0000494 bool *CorrectionFlagPtr = ColonIsSacred ? &IsCorrectedToColon : nullptr;
Douglas Gregor90c99722011-02-24 00:17:56 +0000495 if (Actions.ActOnCXXNestedNameSpecifier(getCurScope(), II, IdLoc, CCLoc,
Serge Pavlov6a7ffbe2014-04-13 16:52:03 +0000496 ObjectType, EnteringContext, SS,
497 false, CorrectionFlagPtr)) {
498 // Identifier is not recognized as a nested name, but we can have
499 // mistyped '::' instead of ':'.
500 if (CorrectionFlagPtr && IsCorrectedToColon) {
501 ColonColon.setKind(tok::colon);
502 PP.EnterToken(Tok);
503 PP.EnterToken(ColonColon);
504 Tok = Identifier;
505 break;
506 }
Douglas Gregor90c99722011-02-24 00:17:56 +0000507 SS.SetInvalid(SourceRange(IdLoc, CCLoc));
Serge Pavlov6a7ffbe2014-04-13 16:52:03 +0000508 }
509 HasScopeSpecifier = true;
Chris Lattnere2355f72009-06-26 03:52:38 +0000510 continue;
511 }
Mike Stump11289f42009-09-09 15:08:12 +0000512
Richard Trieu01fc0012011-09-19 19:01:00 +0000513 CheckForTemplateAndDigraph(Next, ObjectType, EnteringContext, II, SS);
Richard Smith55858492011-04-14 21:45:45 +0000514
Chris Lattnere2355f72009-06-26 03:52:38 +0000515 // nested-name-specifier:
516 // type-name '<'
517 if (Next.is(tok::less)) {
518 TemplateTy Template;
Douglas Gregor3cf81312009-11-03 23:16:33 +0000519 UnqualifiedId TemplateName;
520 TemplateName.setIdentifier(&II, Tok.getLocation());
Douglas Gregor786123d2010-05-21 23:18:07 +0000521 bool MemberOfUnknownSpecialization;
Douglas Gregor0be31a22010-07-02 17:43:08 +0000522 if (TemplateNameKind TNK = Actions.isTemplateName(getCurScope(), SS,
Abramo Bagnara7c5dee42010-08-06 12:11:11 +0000523 /*hasTemplateKeyword=*/false,
Douglas Gregor3cf81312009-11-03 23:16:33 +0000524 TemplateName,
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000525 ObjectType,
Douglas Gregore861bac2009-08-25 22:51:20 +0000526 EnteringContext,
Douglas Gregor786123d2010-05-21 23:18:07 +0000527 Template,
528 MemberOfUnknownSpecialization)) {
David Blaikie8c045bc2011-11-07 03:30:03 +0000529 // We have found a template name, so annotate this token
Chris Lattnere2355f72009-06-26 03:52:38 +0000530 // with a template-id annotation. We do not permit the
531 // template-id to be translated into a type annotation,
532 // because some clients (e.g., the parsing of class template
533 // specializations) still want to see the original template-id
534 // token.
Douglas Gregor71395fa2009-11-04 00:56:37 +0000535 ConsumeToken();
Abramo Bagnara7945c982012-01-27 09:46:47 +0000536 if (AnnotateTemplateIdToken(Template, TNK, SS, SourceLocation(),
537 TemplateName, false))
John McCall1f476a12010-02-26 08:45:28 +0000538 return true;
Chris Lattnere2355f72009-06-26 03:52:38 +0000539 continue;
Larisse Voufo39a1e502013-08-06 01:03:05 +0000540 }
541
Douglas Gregor20c38a72010-05-21 23:43:39 +0000542 if (MemberOfUnknownSpecialization && (ObjectType || SS.isSet()) &&
Francois Pichet4e7a2c02011-03-27 19:41:34 +0000543 (IsTypename || IsTemplateArgumentList(1))) {
Douglas Gregor20c38a72010-05-21 23:43:39 +0000544 // We have something like t::getAs<T>, where getAs is a
545 // member of an unknown specialization. However, this will only
546 // parse correctly as a template, so suggest the keyword 'template'
547 // before 'getAs' and treat this as a dependent template name.
Francois Pichet4e7a2c02011-03-27 19:41:34 +0000548 unsigned DiagID = diag::err_missing_dependent_template_keyword;
David Blaikiebbafb8a2012-03-11 07:00:24 +0000549 if (getLangOpts().MicrosoftExt)
Francois Pichet93921652011-04-22 08:25:24 +0000550 DiagID = diag::warn_missing_dependent_template_keyword;
Francois Pichet4e7a2c02011-03-27 19:41:34 +0000551
552 Diag(Tok.getLocation(), DiagID)
Douglas Gregor20c38a72010-05-21 23:43:39 +0000553 << II.getName()
554 << FixItHint::CreateInsertion(Tok.getLocation(), "template ");
555
Douglas Gregorbb119652010-06-16 23:00:59 +0000556 if (TemplateNameKind TNK
Douglas Gregor0be31a22010-07-02 17:43:08 +0000557 = Actions.ActOnDependentTemplateName(getCurScope(),
Abramo Bagnara7945c982012-01-27 09:46:47 +0000558 SS, SourceLocation(),
Douglas Gregorbb119652010-06-16 23:00:59 +0000559 TemplateName, ObjectType,
560 EnteringContext, Template)) {
561 // Consume the identifier.
562 ConsumeToken();
Abramo Bagnara7945c982012-01-27 09:46:47 +0000563 if (AnnotateTemplateIdToken(Template, TNK, SS, SourceLocation(),
564 TemplateName, false))
565 return true;
Douglas Gregorbb119652010-06-16 23:00:59 +0000566 }
567 else
Douglas Gregor20c38a72010-05-21 23:43:39 +0000568 return true;
Douglas Gregorbb119652010-06-16 23:00:59 +0000569
Douglas Gregor20c38a72010-05-21 23:43:39 +0000570 continue;
Chris Lattnere2355f72009-06-26 03:52:38 +0000571 }
572 }
573
Douglas Gregor7f741122009-02-25 19:37:18 +0000574 // We don't have any tokens that form the beginning of a
575 // nested-name-specifier, so we're done.
576 break;
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +0000577 }
Mike Stump11289f42009-09-09 15:08:12 +0000578
Douglas Gregore610ada2010-02-24 18:44:31 +0000579 // Even if we didn't see any pieces of a nested-name-specifier, we
580 // still check whether there is a tilde in this position, which
581 // indicates a potential pseudo-destructor.
582 if (CheckForDestructor && Tok.is(tok::tilde))
583 *MayBePseudoDestructor = true;
584
John McCall1f476a12010-02-26 08:45:28 +0000585 return false;
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +0000586}
587
Kaelyn Takatab16e6322014-11-20 22:06:40 +0000588ExprResult Parser::tryParseCXXIdExpression(CXXScopeSpec &SS, bool isAddressOfOperand,
589 Token &Replacement) {
590 SourceLocation TemplateKWLoc;
591 UnqualifiedId Name;
592 if (ParseUnqualifiedId(SS,
593 /*EnteringContext=*/false,
594 /*AllowDestructorName=*/false,
595 /*AllowConstructorName=*/false,
596 /*ObjectType=*/ParsedType(), TemplateKWLoc, Name))
597 return ExprError();
598
599 // This is only the direct operand of an & operator if it is not
600 // followed by a postfix-expression suffix.
601 if (isAddressOfOperand && isPostfixExpressionSuffixStart())
602 isAddressOfOperand = false;
603
604 return Actions.ActOnIdExpression(getCurScope(), SS, TemplateKWLoc, Name,
605 Tok.is(tok::l_paren), isAddressOfOperand,
606 nullptr, /*IsInlineAsmIdentifier=*/false,
607 &Replacement);
608}
609
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +0000610/// ParseCXXIdExpression - Handle id-expression.
611///
612/// id-expression:
613/// unqualified-id
614/// qualified-id
615///
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +0000616/// qualified-id:
617/// '::'[opt] nested-name-specifier 'template'[opt] unqualified-id
618/// '::' identifier
619/// '::' operator-function-id
Douglas Gregora727cb92009-06-30 22:34:41 +0000620/// '::' template-id
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +0000621///
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +0000622/// NOTE: The standard specifies that, for qualified-id, the parser does not
623/// expect:
624///
625/// '::' conversion-function-id
626/// '::' '~' class-name
627///
628/// This may cause a slight inconsistency on diagnostics:
629///
630/// class C {};
631/// namespace A {}
632/// void f() {
633/// :: A :: ~ C(); // Some Sema error about using destructor with a
634/// // namespace.
635/// :: ~ C(); // Some Parser error like 'unexpected ~'.
636/// }
637///
638/// We simplify the parser a bit and make it work like:
639///
640/// qualified-id:
641/// '::'[opt] nested-name-specifier 'template'[opt] unqualified-id
642/// '::' unqualified-id
643///
644/// That way Sema can handle and report similar errors for namespaces and the
645/// global scope.
646///
Sebastian Redl3d3f75a2009-02-03 20:19:35 +0000647/// The isAddressOfOperand parameter indicates that this id-expression is a
648/// direct operand of the address-of operator. This is, besides member contexts,
649/// the only place where a qualified-id naming a non-static class member may
650/// appear.
651///
John McCalldadc5752010-08-24 06:29:42 +0000652ExprResult Parser::ParseCXXIdExpression(bool isAddressOfOperand) {
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +0000653 // qualified-id:
654 // '::'[opt] nested-name-specifier 'template'[opt] unqualified-id
655 // '::' unqualified-id
656 //
657 CXXScopeSpec SS;
Douglas Gregordf593fb2011-11-07 17:33:42 +0000658 ParseOptionalCXXScopeSpecifier(SS, ParsedType(), /*EnteringContext=*/false);
Abramo Bagnara7945c982012-01-27 09:46:47 +0000659
Kaelyn Takatab16e6322014-11-20 22:06:40 +0000660 Token Replacement;
661 ExprResult Result = tryParseCXXIdExpression(SS, isAddressOfOperand, Replacement);
662 if (Result.isUnset()) {
663 // If the ExprResult is valid but null, then typo correction suggested a
664 // keyword replacement that needs to be reparsed.
665 UnconsumeToken(Replacement);
666 Result = tryParseCXXIdExpression(SS, isAddressOfOperand, Replacement);
667 }
668 assert(!Result.isUnset() && "Typo correction suggested a keyword replacement "
669 "for a previous keyword suggestion");
670 return Result;
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +0000671}
672
Richard Smith21b3ab42013-05-09 21:36:41 +0000673/// ParseLambdaExpression - Parse a C++11 lambda expression.
Douglas Gregordb0b9f12011-08-04 15:30:47 +0000674///
675/// lambda-expression:
676/// lambda-introducer lambda-declarator[opt] compound-statement
677///
678/// lambda-introducer:
679/// '[' lambda-capture[opt] ']'
680///
681/// lambda-capture:
682/// capture-default
683/// capture-list
684/// capture-default ',' capture-list
685///
686/// capture-default:
687/// '&'
688/// '='
689///
690/// capture-list:
691/// capture
692/// capture-list ',' capture
693///
694/// capture:
Richard Smith21b3ab42013-05-09 21:36:41 +0000695/// simple-capture
696/// init-capture [C++1y]
697///
698/// simple-capture:
Douglas Gregordb0b9f12011-08-04 15:30:47 +0000699/// identifier
700/// '&' identifier
701/// 'this'
702///
Richard Smith21b3ab42013-05-09 21:36:41 +0000703/// init-capture: [C++1y]
704/// identifier initializer
705/// '&' identifier initializer
706///
Douglas Gregordb0b9f12011-08-04 15:30:47 +0000707/// lambda-declarator:
708/// '(' parameter-declaration-clause ')' attribute-specifier[opt]
709/// 'mutable'[opt] exception-specification[opt]
710/// trailing-return-type[opt]
711///
712ExprResult Parser::ParseLambdaExpression() {
713 // Parse lambda-introducer.
714 LambdaIntroducer Intro;
Faisal Vali5fb7c3c2013-12-05 01:40:41 +0000715 Optional<unsigned> DiagID = ParseLambdaIntroducer(Intro);
Douglas Gregordb0b9f12011-08-04 15:30:47 +0000716 if (DiagID) {
717 Diag(Tok, DiagID.getValue());
Alexey Bataevee6507d2013-11-18 08:17:37 +0000718 SkipUntil(tok::r_square, StopAtSemi);
719 SkipUntil(tok::l_brace, StopAtSemi);
720 SkipUntil(tok::r_brace, StopAtSemi);
Eli Friedmanc7c97142012-01-04 02:40:39 +0000721 return ExprError();
Douglas Gregordb0b9f12011-08-04 15:30:47 +0000722 }
723
724 return ParseLambdaExpressionAfterIntroducer(Intro);
725}
726
727/// TryParseLambdaExpression - Use lookahead and potentially tentative
728/// parsing to determine if we are looking at a C++0x lambda expression, and parse
729/// it if we are.
730///
731/// If we are not looking at a lambda expression, returns ExprError().
732ExprResult Parser::TryParseLambdaExpression() {
Richard Smith2bf7fdb2013-01-02 11:42:31 +0000733 assert(getLangOpts().CPlusPlus11
Douglas Gregordb0b9f12011-08-04 15:30:47 +0000734 && Tok.is(tok::l_square)
735 && "Not at the start of a possible lambda expression.");
736
737 const Token Next = NextToken(), After = GetLookAheadToken(2);
738
739 // If lookahead indicates this is a lambda...
740 if (Next.is(tok::r_square) || // []
741 Next.is(tok::equal) || // [=
742 (Next.is(tok::amp) && // [&] or [&,
743 (After.is(tok::r_square) ||
744 After.is(tok::comma))) ||
745 (Next.is(tok::identifier) && // [identifier]
746 After.is(tok::r_square))) {
747 return ParseLambdaExpression();
748 }
749
Eli Friedmanc7c97142012-01-04 02:40:39 +0000750 // If lookahead indicates an ObjC message send...
751 // [identifier identifier
Douglas Gregordb0b9f12011-08-04 15:30:47 +0000752 if (Next.is(tok::identifier) && After.is(tok::identifier)) {
Eli Friedmanc7c97142012-01-04 02:40:39 +0000753 return ExprEmpty();
Douglas Gregordb0b9f12011-08-04 15:30:47 +0000754 }
Faisal Vali5fb7c3c2013-12-05 01:40:41 +0000755
Eli Friedmanc7c97142012-01-04 02:40:39 +0000756 // Here, we're stuck: lambda introducers and Objective-C message sends are
757 // unambiguous, but it requires arbitrary lookhead. [a,b,c,d,e,f,g] is a
758 // lambda, and [a,b,c,d,e,f,g h] is a Objective-C message send. Instead of
759 // writing two routines to parse a lambda introducer, just try to parse
760 // a lambda introducer first, and fall back if that fails.
761 // (TryParseLambdaIntroducer never produces any diagnostic output.)
Douglas Gregordb0b9f12011-08-04 15:30:47 +0000762 LambdaIntroducer Intro;
763 if (TryParseLambdaIntroducer(Intro))
Eli Friedmanc7c97142012-01-04 02:40:39 +0000764 return ExprEmpty();
Faisal Vali5fb7c3c2013-12-05 01:40:41 +0000765
Douglas Gregordb0b9f12011-08-04 15:30:47 +0000766 return ParseLambdaExpressionAfterIntroducer(Intro);
767}
768
Richard Smithf44d2a82013-05-21 22:21:19 +0000769/// \brief Parse a lambda introducer.
770/// \param Intro A LambdaIntroducer filled in with information about the
771/// contents of the lambda-introducer.
772/// \param SkippedInits If non-null, we are disambiguating between an Obj-C
773/// message send and a lambda expression. In this mode, we will
774/// sometimes skip the initializers for init-captures and not fully
775/// populate \p Intro. This flag will be set to \c true if we do so.
776/// \return A DiagnosticID if it hit something unexpected. The location for
777/// for the diagnostic is that of the current token.
778Optional<unsigned> Parser::ParseLambdaIntroducer(LambdaIntroducer &Intro,
779 bool *SkippedInits) {
David Blaikie05785d12013-02-20 22:23:23 +0000780 typedef Optional<unsigned> DiagResult;
Douglas Gregordb0b9f12011-08-04 15:30:47 +0000781
782 assert(Tok.is(tok::l_square) && "Lambda expressions begin with '['.");
Douglas Gregore7a8e3b2011-10-12 16:37:45 +0000783 BalancedDelimiterTracker T(*this, tok::l_square);
784 T.consumeOpen();
785
786 Intro.Range.setBegin(T.getOpenLocation());
Douglas Gregordb0b9f12011-08-04 15:30:47 +0000787
788 bool first = true;
789
790 // Parse capture-default.
791 if (Tok.is(tok::amp) &&
792 (NextToken().is(tok::comma) || NextToken().is(tok::r_square))) {
793 Intro.Default = LCD_ByRef;
Douglas Gregora1bffa22012-02-10 17:46:20 +0000794 Intro.DefaultLoc = ConsumeToken();
Douglas Gregordb0b9f12011-08-04 15:30:47 +0000795 first = false;
796 } else if (Tok.is(tok::equal)) {
797 Intro.Default = LCD_ByCopy;
Douglas Gregora1bffa22012-02-10 17:46:20 +0000798 Intro.DefaultLoc = ConsumeToken();
Douglas Gregordb0b9f12011-08-04 15:30:47 +0000799 first = false;
800 }
801
802 while (Tok.isNot(tok::r_square)) {
803 if (!first) {
Douglas Gregord8c61782012-02-15 15:34:24 +0000804 if (Tok.isNot(tok::comma)) {
Douglas Gregor721b14d2012-07-31 00:50:07 +0000805 // Provide a completion for a lambda introducer here. Except
806 // in Objective-C, where this is Almost Surely meant to be a message
807 // send. In that case, fail here and let the ObjC message
808 // expression parser perform the completion.
Douglas Gregor2d8db8f2012-07-31 15:27:48 +0000809 if (Tok.is(tok::code_completion) &&
810 !(getLangOpts().ObjC1 && Intro.Default == LCD_None &&
811 !Intro.Captures.empty())) {
Douglas Gregord8c61782012-02-15 15:34:24 +0000812 Actions.CodeCompleteLambdaIntroducer(getCurScope(), Intro,
813 /*AfterAmpersand=*/false);
Alp Toker1c583cc2014-05-02 03:43:14 +0000814 cutOffParsing();
Douglas Gregord8c61782012-02-15 15:34:24 +0000815 break;
816 }
817
Douglas Gregordb0b9f12011-08-04 15:30:47 +0000818 return DiagResult(diag::err_expected_comma_or_rsquare);
Douglas Gregord8c61782012-02-15 15:34:24 +0000819 }
Douglas Gregordb0b9f12011-08-04 15:30:47 +0000820 ConsumeToken();
821 }
822
Douglas Gregord8c61782012-02-15 15:34:24 +0000823 if (Tok.is(tok::code_completion)) {
824 // If we're in Objective-C++ and we have a bare '[', then this is more
825 // likely to be a message receiver.
David Blaikiebbafb8a2012-03-11 07:00:24 +0000826 if (getLangOpts().ObjC1 && first)
Douglas Gregord8c61782012-02-15 15:34:24 +0000827 Actions.CodeCompleteObjCMessageReceiver(getCurScope());
828 else
829 Actions.CodeCompleteLambdaIntroducer(getCurScope(), Intro,
830 /*AfterAmpersand=*/false);
Alp Toker1c583cc2014-05-02 03:43:14 +0000831 cutOffParsing();
Douglas Gregord8c61782012-02-15 15:34:24 +0000832 break;
833 }
Douglas Gregordb0b9f12011-08-04 15:30:47 +0000834
Douglas Gregord8c61782012-02-15 15:34:24 +0000835 first = false;
836
Douglas Gregordb0b9f12011-08-04 15:30:47 +0000837 // Parse capture.
838 LambdaCaptureKind Kind = LCK_ByCopy;
839 SourceLocation Loc;
Craig Topper161e4db2014-05-21 06:02:52 +0000840 IdentifierInfo *Id = nullptr;
Douglas Gregor3e308b12012-02-14 19:27:52 +0000841 SourceLocation EllipsisLoc;
Richard Smith21b3ab42013-05-09 21:36:41 +0000842 ExprResult Init;
Douglas Gregor3e308b12012-02-14 19:27:52 +0000843
Douglas Gregordb0b9f12011-08-04 15:30:47 +0000844 if (Tok.is(tok::kw_this)) {
845 Kind = LCK_This;
846 Loc = ConsumeToken();
847 } else {
848 if (Tok.is(tok::amp)) {
849 Kind = LCK_ByRef;
850 ConsumeToken();
Douglas Gregord8c61782012-02-15 15:34:24 +0000851
852 if (Tok.is(tok::code_completion)) {
853 Actions.CodeCompleteLambdaIntroducer(getCurScope(), Intro,
854 /*AfterAmpersand=*/true);
Alp Toker1c583cc2014-05-02 03:43:14 +0000855 cutOffParsing();
Douglas Gregord8c61782012-02-15 15:34:24 +0000856 break;
857 }
Douglas Gregordb0b9f12011-08-04 15:30:47 +0000858 }
859
860 if (Tok.is(tok::identifier)) {
861 Id = Tok.getIdentifierInfo();
862 Loc = ConsumeToken();
863 } else if (Tok.is(tok::kw_this)) {
864 // FIXME: If we want to suggest a fixit here, will need to return more
865 // than just DiagnosticID. Perhaps full DiagnosticBuilder that can be
866 // Clear()ed to prevent emission in case of tentative parsing?
867 return DiagResult(diag::err_this_captured_by_reference);
868 } else {
869 return DiagResult(diag::err_expected_capture);
870 }
Richard Smith21b3ab42013-05-09 21:36:41 +0000871
872 if (Tok.is(tok::l_paren)) {
873 BalancedDelimiterTracker Parens(*this, tok::l_paren);
874 Parens.consumeOpen();
875
876 ExprVector Exprs;
877 CommaLocsTy Commas;
Richard Smithf44d2a82013-05-21 22:21:19 +0000878 if (SkippedInits) {
879 Parens.skipToEnd();
880 *SkippedInits = true;
881 } else if (ParseExpressionList(Exprs, Commas)) {
Richard Smith21b3ab42013-05-09 21:36:41 +0000882 Parens.skipToEnd();
883 Init = ExprError();
884 } else {
885 Parens.consumeClose();
886 Init = Actions.ActOnParenListExpr(Parens.getOpenLocation(),
887 Parens.getCloseLocation(),
888 Exprs);
889 }
890 } else if (Tok.is(tok::l_brace) || Tok.is(tok::equal)) {
Faisal Vali5fb7c3c2013-12-05 01:40:41 +0000891 // Each lambda init-capture forms its own full expression, which clears
892 // Actions.MaybeODRUseExprs. So create an expression evaluation context
893 // to save the necessary state, and restore it later.
894 EnterExpressionEvaluationContext EC(Actions,
895 Sema::PotentiallyEvaluated);
Alp Tokera3ebe6e2013-12-17 14:12:37 +0000896 TryConsumeToken(tok::equal);
Richard Smith21b3ab42013-05-09 21:36:41 +0000897
Richard Smithf44d2a82013-05-21 22:21:19 +0000898 if (!SkippedInits)
899 Init = ParseInitializer();
900 else if (Tok.is(tok::l_brace)) {
901 BalancedDelimiterTracker Braces(*this, tok::l_brace);
902 Braces.consumeOpen();
903 Braces.skipToEnd();
904 *SkippedInits = true;
905 } else {
906 // We're disambiguating this:
907 //
908 // [..., x = expr
909 //
910 // We need to find the end of the following expression in order to
Richard Smith9e2f0a42014-04-13 04:31:48 +0000911 // determine whether this is an Obj-C message send's receiver, a
912 // C99 designator, or a lambda init-capture.
Richard Smithf44d2a82013-05-21 22:21:19 +0000913 //
914 // Parse the expression to find where it ends, and annotate it back
915 // onto the tokens. We would have parsed this expression the same way
916 // in either case: both the RHS of an init-capture and the RHS of an
917 // assignment expression are parsed as an initializer-clause, and in
918 // neither case can anything be added to the scope between the '[' and
919 // here.
920 //
921 // FIXME: This is horrible. Adding a mechanism to skip an expression
922 // would be much cleaner.
923 // FIXME: If there is a ',' before the next ']' or ':', we can skip to
924 // that instead. (And if we see a ':' with no matching '?', we can
925 // classify this as an Obj-C message send.)
926 SourceLocation StartLoc = Tok.getLocation();
927 InMessageExpressionRAIIObject MaybeInMessageExpression(*this, true);
928 Init = ParseInitializer();
929
930 if (Tok.getLocation() != StartLoc) {
931 // Back out the lexing of the token after the initializer.
932 PP.RevertCachedTokens(1);
933
934 // Replace the consumed tokens with an appropriate annotation.
935 Tok.setLocation(StartLoc);
936 Tok.setKind(tok::annot_primary_expr);
937 setExprAnnotation(Tok, Init);
938 Tok.setAnnotationEndLoc(PP.getLastCachedTokenLocation());
939 PP.AnnotateCachedTokens(Tok);
940
941 // Consume the annotated initializer.
942 ConsumeToken();
943 }
944 }
Alp Tokera3ebe6e2013-12-17 14:12:37 +0000945 } else
946 TryConsumeToken(tok::ellipsis, EllipsisLoc);
Douglas Gregordb0b9f12011-08-04 15:30:47 +0000947 }
Faisal Vali5fb7c3c2013-12-05 01:40:41 +0000948 // If this is an init capture, process the initialization expression
949 // right away. For lambda init-captures such as the following:
950 // const int x = 10;
951 // auto L = [i = x+1](int a) {
952 // return [j = x+2,
953 // &k = x](char b) { };
954 // };
955 // keep in mind that each lambda init-capture has to have:
956 // - its initialization expression executed in the context
957 // of the enclosing/parent decl-context.
958 // - but the variable itself has to be 'injected' into the
959 // decl-context of its lambda's call-operator (which has
960 // not yet been created).
961 // Each init-expression is a full-expression that has to get
962 // Sema-analyzed (for capturing etc.) before its lambda's
963 // call-operator's decl-context, scope & scopeinfo are pushed on their
964 // respective stacks. Thus if any variable is odr-used in the init-capture
965 // it will correctly get captured in the enclosing lambda, if one exists.
966 // The init-variables above are created later once the lambdascope and
967 // call-operators decl-context is pushed onto its respective stack.
Douglas Gregordb0b9f12011-08-04 15:30:47 +0000968
Faisal Vali5fb7c3c2013-12-05 01:40:41 +0000969 // Since the lambda init-capture's initializer expression occurs in the
970 // context of the enclosing function or lambda, therefore we can not wait
971 // till a lambda scope has been pushed on before deciding whether the
972 // variable needs to be captured. We also need to process all
973 // lvalue-to-rvalue conversions and discarded-value conversions,
974 // so that we can avoid capturing certain constant variables.
975 // For e.g.,
976 // void test() {
977 // const int x = 10;
978 // auto L = [&z = x](char a) { <-- don't capture by the current lambda
979 // return [y = x](int i) { <-- don't capture by enclosing lambda
980 // return y;
981 // }
982 // };
983 // If x was not const, the second use would require 'L' to capture, and
984 // that would be an error.
985
986 ParsedType InitCaptureParsedType;
987 if (Init.isUsable()) {
988 // Get the pointer and store it in an lvalue, so we can use it as an
989 // out argument.
990 Expr *InitExpr = Init.get();
991 // This performs any lvalue-to-rvalue conversions if necessary, which
992 // can affect what gets captured in the containing decl-context.
993 QualType InitCaptureType = Actions.performLambdaInitCaptureInitialization(
994 Loc, Kind == LCK_ByRef, Id, InitExpr);
995 Init = InitExpr;
996 InitCaptureParsedType.set(InitCaptureType);
997 }
998 Intro.addCapture(Kind, Loc, Id, EllipsisLoc, Init, InitCaptureParsedType);
Douglas Gregordb0b9f12011-08-04 15:30:47 +0000999 }
1000
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00001001 T.consumeClose();
1002 Intro.Range.setEnd(T.getCloseLocation());
Douglas Gregordb0b9f12011-08-04 15:30:47 +00001003 return DiagResult();
1004}
1005
Douglas Gregord8c61782012-02-15 15:34:24 +00001006/// TryParseLambdaIntroducer - Tentatively parse a lambda introducer.
Douglas Gregordb0b9f12011-08-04 15:30:47 +00001007///
1008/// Returns true if it hit something unexpected.
1009bool Parser::TryParseLambdaIntroducer(LambdaIntroducer &Intro) {
1010 TentativeParsingAction PA(*this);
1011
Richard Smithf44d2a82013-05-21 22:21:19 +00001012 bool SkippedInits = false;
1013 Optional<unsigned> DiagID(ParseLambdaIntroducer(Intro, &SkippedInits));
Douglas Gregordb0b9f12011-08-04 15:30:47 +00001014
1015 if (DiagID) {
1016 PA.Revert();
1017 return true;
1018 }
1019
Richard Smithf44d2a82013-05-21 22:21:19 +00001020 if (SkippedInits) {
1021 // Parse it again, but this time parse the init-captures too.
1022 PA.Revert();
1023 Intro = LambdaIntroducer();
1024 DiagID = ParseLambdaIntroducer(Intro);
1025 assert(!DiagID && "parsing lambda-introducer failed on reparse");
1026 return false;
1027 }
1028
Douglas Gregordb0b9f12011-08-04 15:30:47 +00001029 PA.Commit();
1030 return false;
1031}
1032
1033/// ParseLambdaExpressionAfterIntroducer - Parse the rest of a lambda
1034/// expression.
1035ExprResult Parser::ParseLambdaExpressionAfterIntroducer(
1036 LambdaIntroducer &Intro) {
Eli Friedmanc7c97142012-01-04 02:40:39 +00001037 SourceLocation LambdaBeginLoc = Intro.Range.getBegin();
1038 Diag(LambdaBeginLoc, diag::warn_cxx98_compat_lambda);
1039
1040 PrettyStackTraceLoc CrashInfo(PP.getSourceManager(), LambdaBeginLoc,
1041 "lambda expression parsing");
1042
Faisal Vali2b391ab2013-09-26 19:54:12 +00001043
1044
Richard Smith21b3ab42013-05-09 21:36:41 +00001045 // FIXME: Call into Actions to add any init-capture declarations to the
1046 // scope while parsing the lambda-declarator and compound-statement.
1047
Douglas Gregordb0b9f12011-08-04 15:30:47 +00001048 // Parse lambda-declarator[opt].
1049 DeclSpec DS(AttrFactory);
Eli Friedman36d12942012-01-04 04:41:38 +00001050 Declarator D(DS, Declarator::LambdaExprContext);
Faisal Vali2b391ab2013-09-26 19:54:12 +00001051 TemplateParameterDepthRAII CurTemplateDepthTracker(TemplateParameterDepth);
1052 Actions.PushLambdaScope();
Douglas Gregordb0b9f12011-08-04 15:30:47 +00001053
1054 if (Tok.is(tok::l_paren)) {
1055 ParseScope PrototypeScope(this,
1056 Scope::FunctionPrototypeScope |
Richard Smithe233fbf2013-01-28 22:42:45 +00001057 Scope::FunctionDeclarationScope |
Douglas Gregordb0b9f12011-08-04 15:30:47 +00001058 Scope::DeclScope);
1059
Abramo Bagnaraaeeb9892012-10-04 21:42:10 +00001060 SourceLocation DeclEndLoc;
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00001061 BalancedDelimiterTracker T(*this, tok::l_paren);
1062 T.consumeOpen();
Abramo Bagnaraaeeb9892012-10-04 21:42:10 +00001063 SourceLocation LParenLoc = T.getOpenLocation();
Douglas Gregordb0b9f12011-08-04 15:30:47 +00001064
1065 // Parse parameter-declaration-clause.
1066 ParsedAttributes Attr(AttrFactory);
Dmitri Gribenkof8579502013-01-12 19:30:44 +00001067 SmallVector<DeclaratorChunk::ParamInfo, 16> ParamInfo;
Douglas Gregordb0b9f12011-08-04 15:30:47 +00001068 SourceLocation EllipsisLoc;
Faisal Vali2b391ab2013-09-26 19:54:12 +00001069
1070 if (Tok.isNot(tok::r_paren)) {
Faisal Vali2b391ab2013-09-26 19:54:12 +00001071 Actions.RecordParsingTemplateParameterDepth(TemplateParameterDepth);
Douglas Gregordb0b9f12011-08-04 15:30:47 +00001072 ParseParameterDeclarationClause(D, Attr, ParamInfo, EllipsisLoc);
Faisal Vali2b391ab2013-09-26 19:54:12 +00001073 // For a generic lambda, each 'auto' within the parameter declaration
1074 // clause creates a template type parameter, so increment the depth.
1075 if (Actions.getCurGenericLambda())
1076 ++CurTemplateDepthTracker;
1077 }
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00001078 T.consumeClose();
Abramo Bagnaraaeeb9892012-10-04 21:42:10 +00001079 SourceLocation RParenLoc = T.getCloseLocation();
1080 DeclEndLoc = RParenLoc;
Douglas Gregordb0b9f12011-08-04 15:30:47 +00001081
Aaron Ballmane8d69b72014-03-12 00:01:07 +00001082 // GNU-style attributes must be parsed before the mutable specifier to be
1083 // compatible with GCC.
1084 MaybeParseGNUAttributes(Attr, &DeclEndLoc);
1085
Douglas Gregordb0b9f12011-08-04 15:30:47 +00001086 // Parse 'mutable'[opt].
1087 SourceLocation MutableLoc;
Alp Toker094e5212014-01-05 03:27:11 +00001088 if (TryConsumeToken(tok::kw_mutable, MutableLoc))
Douglas Gregordb0b9f12011-08-04 15:30:47 +00001089 DeclEndLoc = MutableLoc;
Douglas Gregordb0b9f12011-08-04 15:30:47 +00001090
1091 // Parse exception-specification[opt].
1092 ExceptionSpecificationType ESpecType = EST_None;
1093 SourceRange ESpecRange;
Dmitri Gribenkof8579502013-01-12 19:30:44 +00001094 SmallVector<ParsedType, 2> DynamicExceptions;
1095 SmallVector<SourceRange, 2> DynamicExceptionRanges;
Douglas Gregordb0b9f12011-08-04 15:30:47 +00001096 ExprResult NoexceptExpr;
Richard Smith0b3a4622014-11-13 20:01:57 +00001097 CachedTokens *ExceptionSpecTokens;
1098 ESpecType = tryParseExceptionSpecification(/*Delayed=*/false,
1099 ESpecRange,
Douglas Gregor433e0532012-04-16 18:27:27 +00001100 DynamicExceptions,
1101 DynamicExceptionRanges,
Richard Smith0b3a4622014-11-13 20:01:57 +00001102 NoexceptExpr,
1103 ExceptionSpecTokens);
Douglas Gregordb0b9f12011-08-04 15:30:47 +00001104
1105 if (ESpecType != EST_None)
1106 DeclEndLoc = ESpecRange.getEnd();
1107
1108 // Parse attribute-specifier[opt].
Richard Smith89645bc2013-01-02 12:01:23 +00001109 MaybeParseCXX11Attributes(Attr, &DeclEndLoc);
Douglas Gregordb0b9f12011-08-04 15:30:47 +00001110
Abramo Bagnaraaeeb9892012-10-04 21:42:10 +00001111 SourceLocation FunLocalRangeEnd = DeclEndLoc;
1112
Douglas Gregordb0b9f12011-08-04 15:30:47 +00001113 // Parse trailing-return-type[opt].
Richard Smith700537c2012-06-12 01:51:59 +00001114 TypeResult TrailingReturnType;
Douglas Gregordb0b9f12011-08-04 15:30:47 +00001115 if (Tok.is(tok::arrow)) {
Abramo Bagnaraaeeb9892012-10-04 21:42:10 +00001116 FunLocalRangeEnd = Tok.getLocation();
Douglas Gregordb0b9f12011-08-04 15:30:47 +00001117 SourceRange Range;
Richard Smith700537c2012-06-12 01:51:59 +00001118 TrailingReturnType = ParseTrailingReturnType(Range);
Douglas Gregordb0b9f12011-08-04 15:30:47 +00001119 if (Range.getEnd().isValid())
1120 DeclEndLoc = Range.getEnd();
1121 }
1122
1123 PrototypeScope.Exit();
1124
Abramo Bagnaraaeeb9892012-10-04 21:42:10 +00001125 SourceLocation NoLoc;
Douglas Gregordb0b9f12011-08-04 15:30:47 +00001126 D.AddTypeInfo(DeclaratorChunk::getFunction(/*hasProto=*/true,
Abramo Bagnaraaeeb9892012-10-04 21:42:10 +00001127 /*isAmbiguous=*/false,
1128 LParenLoc,
Douglas Gregordb0b9f12011-08-04 15:30:47 +00001129 ParamInfo.data(), ParamInfo.size(),
Abramo Bagnaraaeeb9892012-10-04 21:42:10 +00001130 EllipsisLoc, RParenLoc,
Douglas Gregordb0b9f12011-08-04 15:30:47 +00001131 DS.getTypeQualifiers(),
1132 /*RefQualifierIsLValueRef=*/true,
Abramo Bagnaraaeeb9892012-10-04 21:42:10 +00001133 /*RefQualifierLoc=*/NoLoc,
1134 /*ConstQualifierLoc=*/NoLoc,
1135 /*VolatileQualifierLoc=*/NoLoc,
Hal Finkel23a07392014-10-20 17:32:04 +00001136 /*RestrictQualifierLoc=*/NoLoc,
Douglas Gregordb0b9f12011-08-04 15:30:47 +00001137 MutableLoc,
1138 ESpecType, ESpecRange.getBegin(),
1139 DynamicExceptions.data(),
1140 DynamicExceptionRanges.data(),
1141 DynamicExceptions.size(),
1142 NoexceptExpr.isUsable() ?
Craig Topper161e4db2014-05-21 06:02:52 +00001143 NoexceptExpr.get() : nullptr,
Richard Smith0b3a4622014-11-13 20:01:57 +00001144 /*ExceptionSpecTokens*/nullptr,
Abramo Bagnaraaeeb9892012-10-04 21:42:10 +00001145 LParenLoc, FunLocalRangeEnd, D,
Douglas Gregordb0b9f12011-08-04 15:30:47 +00001146 TrailingReturnType),
1147 Attr, DeclEndLoc);
Aaron Ballmanb5c59f52014-03-11 13:03:15 +00001148 } else if (Tok.is(tok::kw_mutable) || Tok.is(tok::arrow) ||
Aaron Ballmane8d69b72014-03-12 00:01:07 +00001149 Tok.is(tok::kw___attribute) ||
Aaron Ballmanb5c59f52014-03-11 13:03:15 +00001150 (Tok.is(tok::l_square) && NextToken().is(tok::l_square))) {
1151 // It's common to forget that one needs '()' before 'mutable', an attribute
1152 // specifier, or the result type. Deal with this.
1153 unsigned TokKind = 0;
1154 switch (Tok.getKind()) {
1155 case tok::kw_mutable: TokKind = 0; break;
1156 case tok::arrow: TokKind = 1; break;
Aaron Ballmane8d69b72014-03-12 00:01:07 +00001157 case tok::kw___attribute:
Aaron Ballmanb5c59f52014-03-11 13:03:15 +00001158 case tok::l_square: TokKind = 2; break;
1159 default: llvm_unreachable("Unknown token kind");
1160 }
1161
Douglas Gregor6746c5d2012-02-16 21:53:36 +00001162 Diag(Tok, diag::err_lambda_missing_parens)
Aaron Ballmanb5c59f52014-03-11 13:03:15 +00001163 << TokKind
Douglas Gregor6746c5d2012-02-16 21:53:36 +00001164 << FixItHint::CreateInsertion(Tok.getLocation(), "() ");
1165 SourceLocation DeclLoc = Tok.getLocation();
1166 SourceLocation DeclEndLoc = DeclLoc;
Aaron Ballmane8d69b72014-03-12 00:01:07 +00001167
1168 // GNU-style attributes must be parsed before the mutable specifier to be
1169 // compatible with GCC.
1170 ParsedAttributes Attr(AttrFactory);
1171 MaybeParseGNUAttributes(Attr, &DeclEndLoc);
1172
Douglas Gregor6746c5d2012-02-16 21:53:36 +00001173 // Parse 'mutable', if it's there.
1174 SourceLocation MutableLoc;
1175 if (Tok.is(tok::kw_mutable)) {
1176 MutableLoc = ConsumeToken();
1177 DeclEndLoc = MutableLoc;
1178 }
Aaron Ballmanb5c59f52014-03-11 13:03:15 +00001179
1180 // Parse attribute-specifier[opt].
Aaron Ballmanb5c59f52014-03-11 13:03:15 +00001181 MaybeParseCXX11Attributes(Attr, &DeclEndLoc);
1182
Douglas Gregor6746c5d2012-02-16 21:53:36 +00001183 // Parse the return type, if there is one.
Richard Smith700537c2012-06-12 01:51:59 +00001184 TypeResult TrailingReturnType;
Douglas Gregor6746c5d2012-02-16 21:53:36 +00001185 if (Tok.is(tok::arrow)) {
1186 SourceRange Range;
Richard Smith700537c2012-06-12 01:51:59 +00001187 TrailingReturnType = ParseTrailingReturnType(Range);
Douglas Gregor6746c5d2012-02-16 21:53:36 +00001188 if (Range.getEnd().isValid())
1189 DeclEndLoc = Range.getEnd();
1190 }
1191
Abramo Bagnaraaeeb9892012-10-04 21:42:10 +00001192 SourceLocation NoLoc;
Douglas Gregor6746c5d2012-02-16 21:53:36 +00001193 D.AddTypeInfo(DeclaratorChunk::getFunction(/*hasProto=*/true,
Abramo Bagnaraaeeb9892012-10-04 21:42:10 +00001194 /*isAmbiguous=*/false,
1195 /*LParenLoc=*/NoLoc,
Craig Topper161e4db2014-05-21 06:02:52 +00001196 /*Params=*/nullptr,
Abramo Bagnaraaeeb9892012-10-04 21:42:10 +00001197 /*NumParams=*/0,
1198 /*EllipsisLoc=*/NoLoc,
1199 /*RParenLoc=*/NoLoc,
1200 /*TypeQuals=*/0,
1201 /*RefQualifierIsLValueRef=*/true,
1202 /*RefQualifierLoc=*/NoLoc,
1203 /*ConstQualifierLoc=*/NoLoc,
1204 /*VolatileQualifierLoc=*/NoLoc,
Hal Finkel23a07392014-10-20 17:32:04 +00001205 /*RestrictQualifierLoc=*/NoLoc,
Abramo Bagnaraaeeb9892012-10-04 21:42:10 +00001206 MutableLoc,
1207 EST_None,
1208 /*ESpecLoc=*/NoLoc,
Craig Topper161e4db2014-05-21 06:02:52 +00001209 /*Exceptions=*/nullptr,
1210 /*ExceptionRanges=*/nullptr,
Abramo Bagnaraaeeb9892012-10-04 21:42:10 +00001211 /*NumExceptions=*/0,
Craig Topper161e4db2014-05-21 06:02:52 +00001212 /*NoexceptExpr=*/nullptr,
Richard Smith0b3a4622014-11-13 20:01:57 +00001213 /*ExceptionSpecTokens=*/nullptr,
Abramo Bagnaraaeeb9892012-10-04 21:42:10 +00001214 DeclLoc, DeclEndLoc, D,
1215 TrailingReturnType),
Douglas Gregor6746c5d2012-02-16 21:53:36 +00001216 Attr, DeclEndLoc);
Douglas Gregordb0b9f12011-08-04 15:30:47 +00001217 }
Douglas Gregor6746c5d2012-02-16 21:53:36 +00001218
Douglas Gregordb0b9f12011-08-04 15:30:47 +00001219
Eli Friedman4817cf72012-01-06 03:05:34 +00001220 // FIXME: Rename BlockScope -> ClosureScope if we decide to continue using
1221 // it.
Douglas Gregorb8389972012-02-21 22:51:27 +00001222 unsigned ScopeFlags = Scope::BlockScope | Scope::FnScope | Scope::DeclScope;
Douglas Gregorb8389972012-02-21 22:51:27 +00001223 ParseScope BodyScope(this, ScopeFlags);
Eli Friedman4817cf72012-01-06 03:05:34 +00001224
Eli Friedman71c80552012-01-05 03:35:19 +00001225 Actions.ActOnStartOfLambdaDefinition(Intro, D, getCurScope());
1226
Douglas Gregordb0b9f12011-08-04 15:30:47 +00001227 // Parse compound-statement.
Eli Friedmanc7c97142012-01-04 02:40:39 +00001228 if (!Tok.is(tok::l_brace)) {
Douglas Gregordb0b9f12011-08-04 15:30:47 +00001229 Diag(Tok, diag::err_expected_lambda_body);
Eli Friedmanc7c97142012-01-04 02:40:39 +00001230 Actions.ActOnLambdaError(LambdaBeginLoc, getCurScope());
1231 return ExprError();
Douglas Gregordb0b9f12011-08-04 15:30:47 +00001232 }
1233
Eli Friedmanc7c97142012-01-04 02:40:39 +00001234 StmtResult Stmt(ParseCompoundStatementBody());
1235 BodyScope.Exit();
1236
Eli Friedman898caf82012-01-04 02:46:53 +00001237 if (!Stmt.isInvalid())
Nikola Smiljanic01a75982014-05-29 10:55:11 +00001238 return Actions.ActOnLambdaExpr(LambdaBeginLoc, Stmt.get(), getCurScope());
Eli Friedmanc7c97142012-01-04 02:40:39 +00001239
Eli Friedman898caf82012-01-04 02:46:53 +00001240 Actions.ActOnLambdaError(LambdaBeginLoc, getCurScope());
1241 return ExprError();
Douglas Gregordb0b9f12011-08-04 15:30:47 +00001242}
1243
Chris Lattner29375652006-12-04 18:06:35 +00001244/// ParseCXXCasts - This handles the various ways to cast expressions to another
1245/// type.
1246///
1247/// postfix-expression: [C++ 5.2p1]
1248/// 'dynamic_cast' '<' type-name '>' '(' expression ')'
1249/// 'static_cast' '<' type-name '>' '(' expression ')'
1250/// 'reinterpret_cast' '<' type-name '>' '(' expression ')'
1251/// 'const_cast' '<' type-name '>' '(' expression ')'
1252///
John McCalldadc5752010-08-24 06:29:42 +00001253ExprResult Parser::ParseCXXCasts() {
Chris Lattner29375652006-12-04 18:06:35 +00001254 tok::TokenKind Kind = Tok.getKind();
Craig Topper161e4db2014-05-21 06:02:52 +00001255 const char *CastName = nullptr; // For error messages
Chris Lattner29375652006-12-04 18:06:35 +00001256
1257 switch (Kind) {
David Blaikieaa347f92011-09-23 20:26:49 +00001258 default: llvm_unreachable("Unknown C++ cast!");
Chris Lattner29375652006-12-04 18:06:35 +00001259 case tok::kw_const_cast: CastName = "const_cast"; break;
1260 case tok::kw_dynamic_cast: CastName = "dynamic_cast"; break;
1261 case tok::kw_reinterpret_cast: CastName = "reinterpret_cast"; break;
1262 case tok::kw_static_cast: CastName = "static_cast"; break;
1263 }
1264
1265 SourceLocation OpLoc = ConsumeToken();
1266 SourceLocation LAngleBracketLoc = Tok.getLocation();
1267
Richard Smith55858492011-04-14 21:45:45 +00001268 // Check for "<::" which is parsed as "[:". If found, fix token stream,
1269 // diagnose error, suggest fix, and recover parsing.
Richard Smith62e66302012-08-20 17:37:52 +00001270 if (Tok.is(tok::l_square) && Tok.getLength() == 2) {
1271 Token Next = NextToken();
1272 if (Next.is(tok::colon) && areTokensAdjacent(Tok, Next))
1273 FixDigraph(*this, PP, Tok, Next, Kind, /*AtDigraph*/true);
1274 }
Richard Smith55858492011-04-14 21:45:45 +00001275
Chris Lattner29375652006-12-04 18:06:35 +00001276 if (ExpectAndConsume(tok::less, diag::err_expected_less_after, CastName))
Sebastian Redld65cea82008-12-11 22:51:44 +00001277 return ExprError();
Chris Lattner29375652006-12-04 18:06:35 +00001278
Argyrios Kyrtzidis7451d1c2011-07-01 22:22:50 +00001279 // Parse the common declaration-specifiers piece.
1280 DeclSpec DS(AttrFactory);
1281 ParseSpecifierQualifierList(DS);
1282
1283 // Parse the abstract-declarator, if present.
1284 Declarator DeclaratorInfo(DS, Declarator::TypeNameContext);
1285 ParseDeclarator(DeclaratorInfo);
1286
Chris Lattner29375652006-12-04 18:06:35 +00001287 SourceLocation RAngleBracketLoc = Tok.getLocation();
1288
Alp Toker383d2c42014-01-01 03:08:43 +00001289 if (ExpectAndConsume(tok::greater))
Alp Tokerec543272013-12-24 09:48:30 +00001290 return ExprError(Diag(LAngleBracketLoc, diag::note_matching) << tok::less);
Chris Lattner29375652006-12-04 18:06:35 +00001291
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00001292 SourceLocation LParenLoc, RParenLoc;
1293 BalancedDelimiterTracker T(*this, tok::l_paren);
Chris Lattner29375652006-12-04 18:06:35 +00001294
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00001295 if (T.expectAndConsume(diag::err_expected_lparen_after, CastName))
Argyrios Kyrtzidis387a3342009-05-22 10:23:16 +00001296 return ExprError();
Chris Lattner29375652006-12-04 18:06:35 +00001297
John McCalldadc5752010-08-24 06:29:42 +00001298 ExprResult Result = ParseExpression();
Mike Stump11289f42009-09-09 15:08:12 +00001299
Argyrios Kyrtzidis387a3342009-05-22 10:23:16 +00001300 // Match the ')'.
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00001301 T.consumeClose();
Chris Lattner29375652006-12-04 18:06:35 +00001302
Argyrios Kyrtzidis7451d1c2011-07-01 22:22:50 +00001303 if (!Result.isInvalid() && !DeclaratorInfo.isInvalidType())
Douglas Gregore200adc2008-10-27 19:41:14 +00001304 Result = Actions.ActOnCXXNamedCast(OpLoc, Kind,
Argyrios Kyrtzidis7451d1c2011-07-01 22:22:50 +00001305 LAngleBracketLoc, DeclaratorInfo,
Douglas Gregor220cac52009-02-18 17:45:20 +00001306 RAngleBracketLoc,
Nikola Smiljanic01a75982014-05-29 10:55:11 +00001307 T.getOpenLocation(), Result.get(),
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00001308 T.getCloseLocation());
Chris Lattner29375652006-12-04 18:06:35 +00001309
Benjamin Kramer62b95d82012-08-23 21:35:17 +00001310 return Result;
Chris Lattner29375652006-12-04 18:06:35 +00001311}
Bill Wendling4073ed52007-02-13 01:51:42 +00001312
Sebastian Redlc4704762008-11-11 11:37:55 +00001313/// ParseCXXTypeid - This handles the C++ typeid expression.
1314///
1315/// postfix-expression: [C++ 5.2p1]
1316/// 'typeid' '(' expression ')'
1317/// 'typeid' '(' type-id ')'
1318///
John McCalldadc5752010-08-24 06:29:42 +00001319ExprResult Parser::ParseCXXTypeid() {
Sebastian Redlc4704762008-11-11 11:37:55 +00001320 assert(Tok.is(tok::kw_typeid) && "Not 'typeid'!");
1321
1322 SourceLocation OpLoc = ConsumeToken();
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00001323 SourceLocation LParenLoc, RParenLoc;
1324 BalancedDelimiterTracker T(*this, tok::l_paren);
Sebastian Redlc4704762008-11-11 11:37:55 +00001325
1326 // typeid expressions are always parenthesized.
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00001327 if (T.expectAndConsume(diag::err_expected_lparen_after, "typeid"))
Sebastian Redld65cea82008-12-11 22:51:44 +00001328 return ExprError();
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00001329 LParenLoc = T.getOpenLocation();
Sebastian Redlc4704762008-11-11 11:37:55 +00001330
John McCalldadc5752010-08-24 06:29:42 +00001331 ExprResult Result;
Sebastian Redlc4704762008-11-11 11:37:55 +00001332
Richard Smith4f605af2012-08-18 00:55:03 +00001333 // C++0x [expr.typeid]p3:
1334 // When typeid is applied to an expression other than an lvalue of a
1335 // polymorphic class type [...] The expression is an unevaluated
1336 // operand (Clause 5).
1337 //
1338 // Note that we can't tell whether the expression is an lvalue of a
1339 // polymorphic class type until after we've parsed the expression; we
1340 // speculatively assume the subexpression is unevaluated, and fix it up
1341 // later.
1342 //
1343 // We enter the unevaluated context before trying to determine whether we
1344 // have a type-id, because the tentative parse logic will try to resolve
1345 // names, and must treat them as unevaluated.
Eli Friedman15681d62012-09-26 04:34:21 +00001346 EnterExpressionEvaluationContext Unevaluated(Actions, Sema::Unevaluated,
1347 Sema::ReuseLambdaContextDecl);
Richard Smith4f605af2012-08-18 00:55:03 +00001348
Sebastian Redlc4704762008-11-11 11:37:55 +00001349 if (isTypeIdInParens()) {
Douglas Gregor220cac52009-02-18 17:45:20 +00001350 TypeResult Ty = ParseTypeName();
Sebastian Redlc4704762008-11-11 11:37:55 +00001351
1352 // Match the ')'.
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00001353 T.consumeClose();
1354 RParenLoc = T.getCloseLocation();
Douglas Gregor4c7c1092010-09-08 23:14:30 +00001355 if (Ty.isInvalid() || RParenLoc.isInvalid())
Sebastian Redld65cea82008-12-11 22:51:44 +00001356 return ExprError();
Sebastian Redlc4704762008-11-11 11:37:55 +00001357
1358 Result = Actions.ActOnCXXTypeid(OpLoc, LParenLoc, /*isType=*/true,
John McCallba7bf592010-08-24 05:47:05 +00001359 Ty.get().getAsOpaquePtr(), RParenLoc);
Sebastian Redlc4704762008-11-11 11:37:55 +00001360 } else {
1361 Result = ParseExpression();
1362
1363 // Match the ')'.
Sebastian Redl17f2c7d2008-12-09 13:15:23 +00001364 if (Result.isInvalid())
Alexey Bataevee6507d2013-11-18 08:17:37 +00001365 SkipUntil(tok::r_paren, StopAtSemi);
Sebastian Redlc4704762008-11-11 11:37:55 +00001366 else {
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00001367 T.consumeClose();
1368 RParenLoc = T.getCloseLocation();
Douglas Gregor4c7c1092010-09-08 23:14:30 +00001369 if (RParenLoc.isInvalid())
1370 return ExprError();
Douglas Gregor1beec452011-03-12 01:48:56 +00001371
Sebastian Redlc4704762008-11-11 11:37:55 +00001372 Result = Actions.ActOnCXXTypeid(OpLoc, LParenLoc, /*isType=*/false,
Nikola Smiljanic01a75982014-05-29 10:55:11 +00001373 Result.get(), RParenLoc);
Sebastian Redlc4704762008-11-11 11:37:55 +00001374 }
1375 }
1376
Benjamin Kramer62b95d82012-08-23 21:35:17 +00001377 return Result;
Sebastian Redlc4704762008-11-11 11:37:55 +00001378}
1379
Francois Pichet9f4f2072010-09-08 12:20:18 +00001380/// ParseCXXUuidof - This handles the Microsoft C++ __uuidof expression.
1381///
1382/// '__uuidof' '(' expression ')'
1383/// '__uuidof' '(' type-id ')'
1384///
1385ExprResult Parser::ParseCXXUuidof() {
1386 assert(Tok.is(tok::kw___uuidof) && "Not '__uuidof'!");
1387
1388 SourceLocation OpLoc = ConsumeToken();
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00001389 BalancedDelimiterTracker T(*this, tok::l_paren);
Francois Pichet9f4f2072010-09-08 12:20:18 +00001390
1391 // __uuidof expressions are always parenthesized.
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00001392 if (T.expectAndConsume(diag::err_expected_lparen_after, "__uuidof"))
Francois Pichet9f4f2072010-09-08 12:20:18 +00001393 return ExprError();
1394
1395 ExprResult Result;
1396
1397 if (isTypeIdInParens()) {
1398 TypeResult Ty = ParseTypeName();
1399
1400 // Match the ')'.
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00001401 T.consumeClose();
Francois Pichet9f4f2072010-09-08 12:20:18 +00001402
1403 if (Ty.isInvalid())
1404 return ExprError();
1405
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00001406 Result = Actions.ActOnCXXUuidof(OpLoc, T.getOpenLocation(), /*isType=*/true,
1407 Ty.get().getAsOpaquePtr(),
1408 T.getCloseLocation());
Francois Pichet9f4f2072010-09-08 12:20:18 +00001409 } else {
1410 EnterExpressionEvaluationContext Unevaluated(Actions, Sema::Unevaluated);
1411 Result = ParseExpression();
1412
1413 // Match the ')'.
1414 if (Result.isInvalid())
Alexey Bataevee6507d2013-11-18 08:17:37 +00001415 SkipUntil(tok::r_paren, StopAtSemi);
Francois Pichet9f4f2072010-09-08 12:20:18 +00001416 else {
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00001417 T.consumeClose();
Francois Pichet9f4f2072010-09-08 12:20:18 +00001418
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00001419 Result = Actions.ActOnCXXUuidof(OpLoc, T.getOpenLocation(),
1420 /*isType=*/false,
Nikola Smiljanic01a75982014-05-29 10:55:11 +00001421 Result.get(), T.getCloseLocation());
Francois Pichet9f4f2072010-09-08 12:20:18 +00001422 }
1423 }
1424
Benjamin Kramer62b95d82012-08-23 21:35:17 +00001425 return Result;
Francois Pichet9f4f2072010-09-08 12:20:18 +00001426}
1427
Douglas Gregore610ada2010-02-24 18:44:31 +00001428/// \brief Parse a C++ pseudo-destructor expression after the base,
1429/// . or -> operator, and nested-name-specifier have already been
1430/// parsed.
1431///
1432/// postfix-expression: [C++ 5.2]
1433/// postfix-expression . pseudo-destructor-name
1434/// postfix-expression -> pseudo-destructor-name
1435///
1436/// pseudo-destructor-name:
1437/// ::[opt] nested-name-specifier[opt] type-name :: ~type-name
1438/// ::[opt] nested-name-specifier template simple-template-id ::
1439/// ~type-name
1440/// ::[opt] nested-name-specifier[opt] ~type-name
1441///
John McCalldadc5752010-08-24 06:29:42 +00001442ExprResult
Craig Toppera2c51532014-10-30 05:30:05 +00001443Parser::ParseCXXPseudoDestructor(Expr *Base, SourceLocation OpLoc,
Douglas Gregore610ada2010-02-24 18:44:31 +00001444 tok::TokenKind OpKind,
1445 CXXScopeSpec &SS,
John McCallba7bf592010-08-24 05:47:05 +00001446 ParsedType ObjectType) {
Douglas Gregore610ada2010-02-24 18:44:31 +00001447 // We're parsing either a pseudo-destructor-name or a dependent
1448 // member access that has the same form as a
1449 // pseudo-destructor-name. We parse both in the same way and let
1450 // the action model sort them out.
1451 //
1452 // Note that the ::[opt] nested-name-specifier[opt] has already
1453 // been parsed, and if there was a simple-template-id, it has
1454 // been coalesced into a template-id annotation token.
1455 UnqualifiedId FirstTypeName;
1456 SourceLocation CCLoc;
1457 if (Tok.is(tok::identifier)) {
1458 FirstTypeName.setIdentifier(Tok.getIdentifierInfo(), Tok.getLocation());
1459 ConsumeToken();
1460 assert(Tok.is(tok::coloncolon) &&"ParseOptionalCXXScopeSpecifier fail");
1461 CCLoc = ConsumeToken();
1462 } else if (Tok.is(tok::annot_template_id)) {
Abramo Bagnara7945c982012-01-27 09:46:47 +00001463 // FIXME: retrieve TemplateKWLoc from template-id annotation and
1464 // store it in the pseudo-dtor node (to be used when instantiating it).
Douglas Gregore610ada2010-02-24 18:44:31 +00001465 FirstTypeName.setTemplateId(
1466 (TemplateIdAnnotation *)Tok.getAnnotationValue());
1467 ConsumeToken();
1468 assert(Tok.is(tok::coloncolon) &&"ParseOptionalCXXScopeSpecifier fail");
1469 CCLoc = ConsumeToken();
1470 } else {
Craig Topper161e4db2014-05-21 06:02:52 +00001471 FirstTypeName.setIdentifier(nullptr, SourceLocation());
Douglas Gregore610ada2010-02-24 18:44:31 +00001472 }
1473
1474 // Parse the tilde.
1475 assert(Tok.is(tok::tilde) && "ParseOptionalCXXScopeSpecifier fail");
1476 SourceLocation TildeLoc = ConsumeToken();
David Blaikie1d578782011-12-16 16:03:09 +00001477
1478 if (Tok.is(tok::kw_decltype) && !FirstTypeName.isValid() && SS.isEmpty()) {
1479 DeclSpec DS(AttrFactory);
Benjamin Kramer198e0832011-12-18 12:18:02 +00001480 ParseDecltypeSpecifier(DS);
David Blaikie1d578782011-12-16 16:03:09 +00001481 if (DS.getTypeSpecType() == TST_error)
1482 return ExprError();
1483 return Actions.ActOnPseudoDestructorExpr(getCurScope(), Base, OpLoc,
1484 OpKind, TildeLoc, DS,
1485 Tok.is(tok::l_paren));
1486 }
1487
Douglas Gregore610ada2010-02-24 18:44:31 +00001488 if (!Tok.is(tok::identifier)) {
1489 Diag(Tok, diag::err_destructor_tilde_identifier);
1490 return ExprError();
1491 }
1492
1493 // Parse the second type.
1494 UnqualifiedId SecondTypeName;
1495 IdentifierInfo *Name = Tok.getIdentifierInfo();
1496 SourceLocation NameLoc = ConsumeToken();
1497 SecondTypeName.setIdentifier(Name, NameLoc);
1498
1499 // If there is a '<', the second type name is a template-id. Parse
1500 // it as such.
1501 if (Tok.is(tok::less) &&
Abramo Bagnara7945c982012-01-27 09:46:47 +00001502 ParseUnqualifiedIdTemplateId(SS, SourceLocation(),
1503 Name, NameLoc,
1504 false, ObjectType, SecondTypeName,
1505 /*AssumeTemplateName=*/true))
Douglas Gregore610ada2010-02-24 18:44:31 +00001506 return ExprError();
1507
John McCallb268a282010-08-23 23:25:46 +00001508 return Actions.ActOnPseudoDestructorExpr(getCurScope(), Base,
1509 OpLoc, OpKind,
Douglas Gregore610ada2010-02-24 18:44:31 +00001510 SS, FirstTypeName, CCLoc,
1511 TildeLoc, SecondTypeName,
1512 Tok.is(tok::l_paren));
1513}
1514
Bill Wendling4073ed52007-02-13 01:51:42 +00001515/// ParseCXXBoolLiteral - This handles the C++ Boolean literals.
1516///
1517/// boolean-literal: [C++ 2.13.5]
1518/// 'true'
1519/// 'false'
John McCalldadc5752010-08-24 06:29:42 +00001520ExprResult Parser::ParseCXXBoolLiteral() {
Bill Wendling4073ed52007-02-13 01:51:42 +00001521 tok::TokenKind Kind = Tok.getKind();
Sebastian Redl6d4256c2009-03-15 17:47:39 +00001522 return Actions.ActOnCXXBoolLiteral(ConsumeToken(), Kind);
Bill Wendling4073ed52007-02-13 01:51:42 +00001523}
Chris Lattnerb7e656b2008-02-26 00:51:44 +00001524
1525/// ParseThrowExpression - This handles the C++ throw expression.
1526///
1527/// throw-expression: [C++ 15]
1528/// 'throw' assignment-expression[opt]
John McCalldadc5752010-08-24 06:29:42 +00001529ExprResult Parser::ParseThrowExpression() {
Chris Lattnerb7e656b2008-02-26 00:51:44 +00001530 assert(Tok.is(tok::kw_throw) && "Not throw!");
Chris Lattnerb7e656b2008-02-26 00:51:44 +00001531 SourceLocation ThrowLoc = ConsumeToken(); // Eat the throw token.
Sebastian Redld65cea82008-12-11 22:51:44 +00001532
Chris Lattner65dd8432008-04-06 06:02:23 +00001533 // If the current token isn't the start of an assignment-expression,
1534 // then the expression is not present. This handles things like:
1535 // "C ? throw : (void)42", which is crazy but legal.
1536 switch (Tok.getKind()) { // FIXME: move this predicate somewhere common.
1537 case tok::semi:
1538 case tok::r_paren:
1539 case tok::r_square:
1540 case tok::r_brace:
1541 case tok::colon:
1542 case tok::comma:
Craig Topper161e4db2014-05-21 06:02:52 +00001543 return Actions.ActOnCXXThrow(getCurScope(), ThrowLoc, nullptr);
Chris Lattnerb7e656b2008-02-26 00:51:44 +00001544
Chris Lattner65dd8432008-04-06 06:02:23 +00001545 default:
John McCalldadc5752010-08-24 06:29:42 +00001546 ExprResult Expr(ParseAssignmentExpression());
Benjamin Kramer62b95d82012-08-23 21:35:17 +00001547 if (Expr.isInvalid()) return Expr;
Nikola Smiljanic01a75982014-05-29 10:55:11 +00001548 return Actions.ActOnCXXThrow(getCurScope(), ThrowLoc, Expr.get());
Chris Lattner65dd8432008-04-06 06:02:23 +00001549 }
Chris Lattnerb7e656b2008-02-26 00:51:44 +00001550}
Argyrios Kyrtzidis7bbb20e2008-06-24 22:12:16 +00001551
1552/// ParseCXXThis - This handles the C++ 'this' pointer.
1553///
1554/// C++ 9.3.2: In the body of a non-static member function, the keyword this is
1555/// a non-lvalue expression whose value is the address of the object for which
1556/// the function is called.
John McCalldadc5752010-08-24 06:29:42 +00001557ExprResult Parser::ParseCXXThis() {
Argyrios Kyrtzidis7bbb20e2008-06-24 22:12:16 +00001558 assert(Tok.is(tok::kw_this) && "Not 'this'!");
1559 SourceLocation ThisLoc = ConsumeToken();
Sebastian Redl6d4256c2009-03-15 17:47:39 +00001560 return Actions.ActOnCXXThis(ThisLoc);
Argyrios Kyrtzidis7bbb20e2008-06-24 22:12:16 +00001561}
Argyrios Kyrtzidis857fcc22008-08-22 15:38:55 +00001562
1563/// ParseCXXTypeConstructExpression - Parse construction of a specified type.
1564/// Can be interpreted either as function-style casting ("int(x)")
1565/// or class type construction ("ClassType(x,y,z)")
1566/// or creation of a value-initialized type ("int()").
Sebastian Redl3da34892011-06-05 12:23:16 +00001567/// See [C++ 5.2.3].
Argyrios Kyrtzidis857fcc22008-08-22 15:38:55 +00001568///
1569/// postfix-expression: [C++ 5.2p1]
Sebastian Redl3da34892011-06-05 12:23:16 +00001570/// simple-type-specifier '(' expression-list[opt] ')'
1571/// [C++0x] simple-type-specifier braced-init-list
1572/// typename-specifier '(' expression-list[opt] ')'
1573/// [C++0x] typename-specifier braced-init-list
Argyrios Kyrtzidis857fcc22008-08-22 15:38:55 +00001574///
John McCalldadc5752010-08-24 06:29:42 +00001575ExprResult
Sebastian Redld65cea82008-12-11 22:51:44 +00001576Parser::ParseCXXTypeConstructExpression(const DeclSpec &DS) {
Argyrios Kyrtzidis857fcc22008-08-22 15:38:55 +00001577 Declarator DeclaratorInfo(DS, Declarator::TypeNameContext);
John McCallba7bf592010-08-24 05:47:05 +00001578 ParsedType TypeRep = Actions.ActOnTypeName(getCurScope(), DeclaratorInfo).get();
Argyrios Kyrtzidis857fcc22008-08-22 15:38:55 +00001579
Sebastian Redl3da34892011-06-05 12:23:16 +00001580 assert((Tok.is(tok::l_paren) ||
Richard Smith2bf7fdb2013-01-02 11:42:31 +00001581 (getLangOpts().CPlusPlus11 && Tok.is(tok::l_brace)))
Sebastian Redl3da34892011-06-05 12:23:16 +00001582 && "Expected '(' or '{'!");
Douglas Gregor94a32472011-01-11 00:33:19 +00001583
Sebastian Redl3da34892011-06-05 12:23:16 +00001584 if (Tok.is(tok::l_brace)) {
Sebastian Redld74dd492012-02-12 18:41:05 +00001585 ExprResult Init = ParseBraceInitializer();
1586 if (Init.isInvalid())
1587 return Init;
Nikola Smiljanic01a75982014-05-29 10:55:11 +00001588 Expr *InitList = Init.get();
Sebastian Redld74dd492012-02-12 18:41:05 +00001589 return Actions.ActOnCXXTypeConstructExpr(TypeRep, SourceLocation(),
1590 MultiExprArg(&InitList, 1),
1591 SourceLocation());
Sebastian Redl3da34892011-06-05 12:23:16 +00001592 } else {
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00001593 BalancedDelimiterTracker T(*this, tok::l_paren);
1594 T.consumeOpen();
Sebastian Redl3da34892011-06-05 12:23:16 +00001595
Benjamin Kramerf0623432012-08-23 22:51:59 +00001596 ExprVector Exprs;
Sebastian Redl3da34892011-06-05 12:23:16 +00001597 CommaLocsTy CommaLocs;
1598
1599 if (Tok.isNot(tok::r_paren)) {
1600 if (ParseExpressionList(Exprs, CommaLocs)) {
Alexey Bataevee6507d2013-11-18 08:17:37 +00001601 SkipUntil(tok::r_paren, StopAtSemi);
Sebastian Redl3da34892011-06-05 12:23:16 +00001602 return ExprError();
1603 }
Argyrios Kyrtzidis857fcc22008-08-22 15:38:55 +00001604 }
Sebastian Redl3da34892011-06-05 12:23:16 +00001605
1606 // Match the ')'.
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00001607 T.consumeClose();
Sebastian Redl3da34892011-06-05 12:23:16 +00001608
1609 // TypeRep could be null, if it references an invalid typedef.
1610 if (!TypeRep)
1611 return ExprError();
1612
1613 assert((Exprs.size() == 0 || Exprs.size()-1 == CommaLocs.size())&&
1614 "Unexpected number of commas!");
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00001615 return Actions.ActOnCXXTypeConstructExpr(TypeRep, T.getOpenLocation(),
Benjamin Kramer62b95d82012-08-23 21:35:17 +00001616 Exprs,
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00001617 T.getCloseLocation());
Argyrios Kyrtzidis857fcc22008-08-22 15:38:55 +00001618 }
Argyrios Kyrtzidis857fcc22008-08-22 15:38:55 +00001619}
1620
Douglas Gregor7bab5ff2009-11-25 00:27:52 +00001621/// ParseCXXCondition - if/switch/while condition expression.
Argyrios Kyrtzidis2b4072f2008-09-09 20:38:47 +00001622///
1623/// condition:
1624/// expression
1625/// type-specifier-seq declarator '=' assignment-expression
Richard Smith2a15b742012-02-22 06:49:09 +00001626/// [C++11] type-specifier-seq declarator '=' initializer-clause
1627/// [C++11] type-specifier-seq declarator braced-init-list
Argyrios Kyrtzidis2b4072f2008-09-09 20:38:47 +00001628/// [GNU] type-specifier-seq declarator simple-asm-expr[opt] attributes[opt]
1629/// '=' assignment-expression
1630///
Dmitri Gribenkodd28e792012-08-24 00:01:24 +00001631/// \param ExprOut if the condition was parsed as an expression, the parsed
1632/// expression.
Douglas Gregor7bab5ff2009-11-25 00:27:52 +00001633///
Dmitri Gribenkodd28e792012-08-24 00:01:24 +00001634/// \param DeclOut if the condition was parsed as a declaration, the parsed
1635/// declaration.
Douglas Gregor7bab5ff2009-11-25 00:27:52 +00001636///
Douglas Gregore60e41a2010-05-06 17:25:47 +00001637/// \param Loc The location of the start of the statement that requires this
1638/// condition, e.g., the "for" in a for loop.
1639///
1640/// \param ConvertToBoolean Whether the condition expression should be
1641/// converted to a boolean value.
1642///
Douglas Gregor7bab5ff2009-11-25 00:27:52 +00001643/// \returns true if there was a parsing, false otherwise.
John McCalldadc5752010-08-24 06:29:42 +00001644bool Parser::ParseCXXCondition(ExprResult &ExprOut,
1645 Decl *&DeclOut,
Douglas Gregore60e41a2010-05-06 17:25:47 +00001646 SourceLocation Loc,
1647 bool ConvertToBoolean) {
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001648 if (Tok.is(tok::code_completion)) {
John McCallfaf5fb42010-08-26 23:41:50 +00001649 Actions.CodeCompleteOrdinaryName(getCurScope(), Sema::PCC_Condition);
Argyrios Kyrtzidis5cec2ae2011-09-04 03:32:15 +00001650 cutOffParsing();
1651 return true;
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001652 }
1653
Alexis Hunt6aa9bee2012-06-23 05:07:58 +00001654 ParsedAttributesWithRange attrs(AttrFactory);
Richard Smith89645bc2013-01-02 12:01:23 +00001655 MaybeParseCXX11Attributes(attrs);
Alexis Hunt6aa9bee2012-06-23 05:07:58 +00001656
Douglas Gregor7bab5ff2009-11-25 00:27:52 +00001657 if (!isCXXConditionDeclaration()) {
Alexis Hunt6aa9bee2012-06-23 05:07:58 +00001658 ProhibitAttributes(attrs);
1659
Douglas Gregore60e41a2010-05-06 17:25:47 +00001660 // Parse the expression.
John McCalldadc5752010-08-24 06:29:42 +00001661 ExprOut = ParseExpression(); // expression
Craig Topper161e4db2014-05-21 06:02:52 +00001662 DeclOut = nullptr;
John McCalldadc5752010-08-24 06:29:42 +00001663 if (ExprOut.isInvalid())
Douglas Gregore60e41a2010-05-06 17:25:47 +00001664 return true;
1665
1666 // If required, convert to a boolean value.
1667 if (ConvertToBoolean)
John McCalldadc5752010-08-24 06:29:42 +00001668 ExprOut
1669 = Actions.ActOnBooleanCondition(getCurScope(), Loc, ExprOut.get());
1670 return ExprOut.isInvalid();
Douglas Gregor7bab5ff2009-11-25 00:27:52 +00001671 }
Argyrios Kyrtzidis2b4072f2008-09-09 20:38:47 +00001672
1673 // type-specifier-seq
John McCall084e83d2011-03-24 11:26:52 +00001674 DeclSpec DS(AttrFactory);
Richard Smith54ecd982013-02-20 19:22:51 +00001675 DS.takeAttributesFrom(attrs);
Argyrios Kyrtzidis2b4072f2008-09-09 20:38:47 +00001676 ParseSpecifierQualifierList(DS);
1677
1678 // declarator
1679 Declarator DeclaratorInfo(DS, Declarator::ConditionContext);
1680 ParseDeclarator(DeclaratorInfo);
1681
1682 // simple-asm-expr[opt]
1683 if (Tok.is(tok::kw_asm)) {
Sebastian Redlf6591ca2009-02-09 18:23:29 +00001684 SourceLocation Loc;
John McCalldadc5752010-08-24 06:29:42 +00001685 ExprResult AsmLabel(ParseSimpleAsm(&Loc));
Sebastian Redl17f2c7d2008-12-09 13:15:23 +00001686 if (AsmLabel.isInvalid()) {
Alexey Bataevee6507d2013-11-18 08:17:37 +00001687 SkipUntil(tok::semi, StopAtSemi);
Douglas Gregor7bab5ff2009-11-25 00:27:52 +00001688 return true;
Argyrios Kyrtzidis2b4072f2008-09-09 20:38:47 +00001689 }
Nikola Smiljanic01a75982014-05-29 10:55:11 +00001690 DeclaratorInfo.setAsmLabel(AsmLabel.get());
Sebastian Redlf6591ca2009-02-09 18:23:29 +00001691 DeclaratorInfo.SetRangeEnd(Loc);
Argyrios Kyrtzidis2b4072f2008-09-09 20:38:47 +00001692 }
1693
1694 // If attributes are present, parse them.
John McCall53fa7142010-12-24 02:08:15 +00001695 MaybeParseGNUAttributes(DeclaratorInfo);
Argyrios Kyrtzidis2b4072f2008-09-09 20:38:47 +00001696
Douglas Gregor7bab5ff2009-11-25 00:27:52 +00001697 // Type-check the declaration itself.
John McCalldadc5752010-08-24 06:29:42 +00001698 DeclResult Dcl = Actions.ActOnCXXConditionDeclaration(getCurScope(),
John McCall53fa7142010-12-24 02:08:15 +00001699 DeclaratorInfo);
John McCalldadc5752010-08-24 06:29:42 +00001700 DeclOut = Dcl.get();
1701 ExprOut = ExprError();
Argyrios Kyrtzidisb5c7c512010-10-08 02:39:23 +00001702
Argyrios Kyrtzidis2b4072f2008-09-09 20:38:47 +00001703 // '=' assignment-expression
Richard Trieuc64d3232012-01-18 22:54:52 +00001704 // If a '==' or '+=' is found, suggest a fixit to '='.
Richard Smith2a15b742012-02-22 06:49:09 +00001705 bool CopyInitialization = isTokenEqualOrEqualTypo();
1706 if (CopyInitialization)
Jeffrey Yasskin8dfa5f12011-01-18 02:00:16 +00001707 ConsumeToken();
Richard Smith2a15b742012-02-22 06:49:09 +00001708
1709 ExprResult InitExpr = ExprError();
Richard Smith2bf7fdb2013-01-02 11:42:31 +00001710 if (getLangOpts().CPlusPlus11 && Tok.is(tok::l_brace)) {
Richard Smith2a15b742012-02-22 06:49:09 +00001711 Diag(Tok.getLocation(),
1712 diag::warn_cxx98_compat_generalized_initializer_lists);
1713 InitExpr = ParseBraceInitializer();
1714 } else if (CopyInitialization) {
1715 InitExpr = ParseAssignmentExpression();
1716 } else if (Tok.is(tok::l_paren)) {
1717 // This was probably an attempt to initialize the variable.
1718 SourceLocation LParen = ConsumeParen(), RParen = LParen;
Alexey Bataevee6507d2013-11-18 08:17:37 +00001719 if (SkipUntil(tok::r_paren, StopAtSemi | StopBeforeMatch))
Richard Smith2a15b742012-02-22 06:49:09 +00001720 RParen = ConsumeParen();
1721 Diag(DeclOut ? DeclOut->getLocation() : LParen,
1722 diag::err_expected_init_in_condition_lparen)
1723 << SourceRange(LParen, RParen);
Douglas Gregor7bab5ff2009-11-25 00:27:52 +00001724 } else {
Richard Smith2a15b742012-02-22 06:49:09 +00001725 Diag(DeclOut ? DeclOut->getLocation() : Tok.getLocation(),
1726 diag::err_expected_init_in_condition);
Douglas Gregor7bab5ff2009-11-25 00:27:52 +00001727 }
Richard Smith2a15b742012-02-22 06:49:09 +00001728
1729 if (!InitExpr.isInvalid())
Nikola Smiljanic01a75982014-05-29 10:55:11 +00001730 Actions.AddInitializerToDecl(DeclOut, InitExpr.get(), !CopyInitialization,
Richard Smith74aeef52013-04-26 16:15:35 +00001731 DS.containsPlaceholderType());
Richard Smith27d807c2013-04-30 13:56:41 +00001732 else
1733 Actions.ActOnInitializerError(DeclOut);
Richard Smith2a15b742012-02-22 06:49:09 +00001734
Douglas Gregore60e41a2010-05-06 17:25:47 +00001735 // FIXME: Build a reference to this declaration? Convert it to bool?
1736 // (This is currently handled by Sema).
Richard Smithb2bc2e62011-02-21 20:05:19 +00001737
1738 Actions.FinalizeDeclaration(DeclOut);
Douglas Gregore60e41a2010-05-06 17:25:47 +00001739
Douglas Gregor7bab5ff2009-11-25 00:27:52 +00001740 return false;
Argyrios Kyrtzidis2b4072f2008-09-09 20:38:47 +00001741}
1742
Argyrios Kyrtzidis857fcc22008-08-22 15:38:55 +00001743/// ParseCXXSimpleTypeSpecifier - [C++ 7.1.5.2] Simple type specifiers.
1744/// This should only be called when the current token is known to be part of
1745/// simple-type-specifier.
1746///
1747/// simple-type-specifier:
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +00001748/// '::'[opt] nested-name-specifier[opt] type-name
Argyrios Kyrtzidis857fcc22008-08-22 15:38:55 +00001749/// '::'[opt] nested-name-specifier 'template' simple-template-id [TODO]
1750/// char
1751/// wchar_t
1752/// bool
1753/// short
1754/// int
1755/// long
1756/// signed
1757/// unsigned
1758/// float
1759/// double
1760/// void
1761/// [GNU] typeof-specifier
1762/// [C++0x] auto [TODO]
1763///
1764/// type-name:
1765/// class-name
1766/// enum-name
1767/// typedef-name
1768///
1769void Parser::ParseCXXSimpleTypeSpecifier(DeclSpec &DS) {
1770 DS.SetRangeStart(Tok.getLocation());
1771 const char *PrevSpec;
John McCall49bfce42009-08-03 20:12:06 +00001772 unsigned DiagID;
Argyrios Kyrtzidis857fcc22008-08-22 15:38:55 +00001773 SourceLocation Loc = Tok.getLocation();
Erik Verbruggen888d52a2014-01-15 09:15:43 +00001774 const clang::PrintingPolicy &Policy =
1775 Actions.getASTContext().getPrintingPolicy();
Mike Stump11289f42009-09-09 15:08:12 +00001776
Argyrios Kyrtzidis857fcc22008-08-22 15:38:55 +00001777 switch (Tok.getKind()) {
Chris Lattner45ddec32009-01-05 00:13:00 +00001778 case tok::identifier: // foo::bar
1779 case tok::coloncolon: // ::foo::bar
David Blaikie83d382b2011-09-23 05:06:16 +00001780 llvm_unreachable("Annotation token should already be formed!");
Mike Stump11289f42009-09-09 15:08:12 +00001781 default:
David Blaikie83d382b2011-09-23 05:06:16 +00001782 llvm_unreachable("Not a simple-type-specifier token!");
Chris Lattner45ddec32009-01-05 00:13:00 +00001783
Argyrios Kyrtzidis857fcc22008-08-22 15:38:55 +00001784 // type-name
Chris Lattnera8a3f732009-01-06 05:06:21 +00001785 case tok::annot_typename: {
Douglas Gregor0231d8d2011-01-19 20:10:05 +00001786 if (getTypeAnnotation(Tok))
1787 DS.SetTypeSpecType(DeclSpec::TST_typename, Loc, PrevSpec, DiagID,
Erik Verbruggen888d52a2014-01-15 09:15:43 +00001788 getTypeAnnotation(Tok), Policy);
Douglas Gregor0231d8d2011-01-19 20:10:05 +00001789 else
1790 DS.SetTypeSpecError();
Douglas Gregor06e41ae2010-10-21 23:17:00 +00001791
1792 DS.SetRangeEnd(Tok.getAnnotationEndLoc());
1793 ConsumeToken();
1794
1795 // Objective-C supports syntax of the form 'id<proto1,proto2>' where 'id'
1796 // is a specific typedef and 'itf<proto1,proto2>' where 'itf' is an
1797 // Objective-C interface. If we don't have Objective-C or a '<', this is
1798 // just a normal reference to a typedef name.
David Blaikiebbafb8a2012-03-11 07:00:24 +00001799 if (Tok.is(tok::less) && getLangOpts().ObjC1)
Douglas Gregor06e41ae2010-10-21 23:17:00 +00001800 ParseObjCProtocolQualifiers(DS);
1801
Erik Verbruggen888d52a2014-01-15 09:15:43 +00001802 DS.Finish(Diags, PP, Policy);
Douglas Gregor06e41ae2010-10-21 23:17:00 +00001803 return;
Argyrios Kyrtzidis857fcc22008-08-22 15:38:55 +00001804 }
Mike Stump11289f42009-09-09 15:08:12 +00001805
Argyrios Kyrtzidis857fcc22008-08-22 15:38:55 +00001806 // builtin types
1807 case tok::kw_short:
Erik Verbruggen888d52a2014-01-15 09:15:43 +00001808 DS.SetTypeSpecWidth(DeclSpec::TSW_short, Loc, PrevSpec, DiagID, Policy);
Argyrios Kyrtzidis857fcc22008-08-22 15:38:55 +00001809 break;
1810 case tok::kw_long:
Erik Verbruggen888d52a2014-01-15 09:15:43 +00001811 DS.SetTypeSpecWidth(DeclSpec::TSW_long, Loc, PrevSpec, DiagID, Policy);
Argyrios Kyrtzidis857fcc22008-08-22 15:38:55 +00001812 break;
Francois Pichet84133e42011-04-28 01:59:37 +00001813 case tok::kw___int64:
Erik Verbruggen888d52a2014-01-15 09:15:43 +00001814 DS.SetTypeSpecWidth(DeclSpec::TSW_longlong, Loc, PrevSpec, DiagID, Policy);
Francois Pichet84133e42011-04-28 01:59:37 +00001815 break;
Argyrios Kyrtzidis857fcc22008-08-22 15:38:55 +00001816 case tok::kw_signed:
John McCall49bfce42009-08-03 20:12:06 +00001817 DS.SetTypeSpecSign(DeclSpec::TSS_signed, Loc, PrevSpec, DiagID);
Argyrios Kyrtzidis857fcc22008-08-22 15:38:55 +00001818 break;
1819 case tok::kw_unsigned:
John McCall49bfce42009-08-03 20:12:06 +00001820 DS.SetTypeSpecSign(DeclSpec::TSS_unsigned, Loc, PrevSpec, DiagID);
Argyrios Kyrtzidis857fcc22008-08-22 15:38:55 +00001821 break;
1822 case tok::kw_void:
Erik Verbruggen888d52a2014-01-15 09:15:43 +00001823 DS.SetTypeSpecType(DeclSpec::TST_void, Loc, PrevSpec, DiagID, Policy);
Argyrios Kyrtzidis857fcc22008-08-22 15:38:55 +00001824 break;
1825 case tok::kw_char:
Erik Verbruggen888d52a2014-01-15 09:15:43 +00001826 DS.SetTypeSpecType(DeclSpec::TST_char, Loc, PrevSpec, DiagID, Policy);
Argyrios Kyrtzidis857fcc22008-08-22 15:38:55 +00001827 break;
1828 case tok::kw_int:
Erik Verbruggen888d52a2014-01-15 09:15:43 +00001829 DS.SetTypeSpecType(DeclSpec::TST_int, Loc, PrevSpec, DiagID, Policy);
Argyrios Kyrtzidis857fcc22008-08-22 15:38:55 +00001830 break;
Richard Smithf016bbc2012-04-04 06:24:32 +00001831 case tok::kw___int128:
Erik Verbruggen888d52a2014-01-15 09:15:43 +00001832 DS.SetTypeSpecType(DeclSpec::TST_int128, Loc, PrevSpec, DiagID, Policy);
Richard Smithf016bbc2012-04-04 06:24:32 +00001833 break;
Anton Korobeynikovf0c267e2011-10-14 23:23:15 +00001834 case tok::kw_half:
Erik Verbruggen888d52a2014-01-15 09:15:43 +00001835 DS.SetTypeSpecType(DeclSpec::TST_half, Loc, PrevSpec, DiagID, Policy);
Anton Korobeynikovf0c267e2011-10-14 23:23:15 +00001836 break;
Argyrios Kyrtzidis857fcc22008-08-22 15:38:55 +00001837 case tok::kw_float:
Erik Verbruggen888d52a2014-01-15 09:15:43 +00001838 DS.SetTypeSpecType(DeclSpec::TST_float, Loc, PrevSpec, DiagID, Policy);
Argyrios Kyrtzidis857fcc22008-08-22 15:38:55 +00001839 break;
1840 case tok::kw_double:
Erik Verbruggen888d52a2014-01-15 09:15:43 +00001841 DS.SetTypeSpecType(DeclSpec::TST_double, Loc, PrevSpec, DiagID, Policy);
Argyrios Kyrtzidis857fcc22008-08-22 15:38:55 +00001842 break;
1843 case tok::kw_wchar_t:
Erik Verbruggen888d52a2014-01-15 09:15:43 +00001844 DS.SetTypeSpecType(DeclSpec::TST_wchar, Loc, PrevSpec, DiagID, Policy);
Argyrios Kyrtzidis857fcc22008-08-22 15:38:55 +00001845 break;
Alisdair Mereditha9ad47d2009-07-14 06:30:34 +00001846 case tok::kw_char16_t:
Erik Verbruggen888d52a2014-01-15 09:15:43 +00001847 DS.SetTypeSpecType(DeclSpec::TST_char16, Loc, PrevSpec, DiagID, Policy);
Alisdair Mereditha9ad47d2009-07-14 06:30:34 +00001848 break;
1849 case tok::kw_char32_t:
Erik Verbruggen888d52a2014-01-15 09:15:43 +00001850 DS.SetTypeSpecType(DeclSpec::TST_char32, Loc, PrevSpec, DiagID, Policy);
Alisdair Mereditha9ad47d2009-07-14 06:30:34 +00001851 break;
Argyrios Kyrtzidis857fcc22008-08-22 15:38:55 +00001852 case tok::kw_bool:
Erik Verbruggen888d52a2014-01-15 09:15:43 +00001853 DS.SetTypeSpecType(DeclSpec::TST_bool, Loc, PrevSpec, DiagID, Policy);
Argyrios Kyrtzidis857fcc22008-08-22 15:38:55 +00001854 break;
David Blaikie25896afb2012-01-24 05:47:35 +00001855 case tok::annot_decltype:
1856 case tok::kw_decltype:
1857 DS.SetRangeEnd(ParseDecltypeSpecifier(DS));
Erik Verbruggen888d52a2014-01-15 09:15:43 +00001858 return DS.Finish(Diags, PP, Policy);
Mike Stump11289f42009-09-09 15:08:12 +00001859
Argyrios Kyrtzidis857fcc22008-08-22 15:38:55 +00001860 // GNU typeof support.
1861 case tok::kw_typeof:
1862 ParseTypeofSpecifier(DS);
Erik Verbruggen888d52a2014-01-15 09:15:43 +00001863 DS.Finish(Diags, PP, Policy);
Argyrios Kyrtzidis857fcc22008-08-22 15:38:55 +00001864 return;
1865 }
Chris Lattnera8a3f732009-01-06 05:06:21 +00001866 if (Tok.is(tok::annot_typename))
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +00001867 DS.SetRangeEnd(Tok.getAnnotationEndLoc());
1868 else
1869 DS.SetRangeEnd(Tok.getLocation());
Argyrios Kyrtzidis857fcc22008-08-22 15:38:55 +00001870 ConsumeToken();
Erik Verbruggen888d52a2014-01-15 09:15:43 +00001871 DS.Finish(Diags, PP, Policy);
Argyrios Kyrtzidis857fcc22008-08-22 15:38:55 +00001872}
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00001873
Douglas Gregordbc5daf2008-11-07 20:08:42 +00001874/// ParseCXXTypeSpecifierSeq - Parse a C++ type-specifier-seq (C++
1875/// [dcl.name]), which is a non-empty sequence of type-specifiers,
1876/// e.g., "const short int". Note that the DeclSpec is *not* finished
1877/// by parsing the type-specifier-seq, because these sequences are
1878/// typically followed by some form of declarator. Returns true and
1879/// emits diagnostics if this is not a type-specifier-seq, false
1880/// otherwise.
1881///
1882/// type-specifier-seq: [C++ 8.1]
1883/// type-specifier type-specifier-seq[opt]
1884///
1885bool Parser::ParseCXXTypeSpecifierSeq(DeclSpec &DS) {
Richard Smithc5b05522012-03-12 07:56:15 +00001886 ParseSpecifierQualifierList(DS, AS_none, DSC_type_specifier);
Erik Verbruggen888d52a2014-01-15 09:15:43 +00001887 DS.Finish(Diags, PP, Actions.getASTContext().getPrintingPolicy());
Douglas Gregordbc5daf2008-11-07 20:08:42 +00001888 return false;
1889}
1890
Douglas Gregor7861a802009-11-03 01:35:08 +00001891/// \brief Finish parsing a C++ unqualified-id that is a template-id of
1892/// some form.
1893///
1894/// This routine is invoked when a '<' is encountered after an identifier or
1895/// operator-function-id is parsed by \c ParseUnqualifiedId() to determine
1896/// whether the unqualified-id is actually a template-id. This routine will
1897/// then parse the template arguments and form the appropriate template-id to
1898/// return to the caller.
1899///
1900/// \param SS the nested-name-specifier that precedes this template-id, if
1901/// we're actually parsing a qualified-id.
1902///
1903/// \param Name for constructor and destructor names, this is the actual
1904/// identifier that may be a template-name.
1905///
1906/// \param NameLoc the location of the class-name in a constructor or
1907/// destructor.
1908///
1909/// \param EnteringContext whether we're entering the scope of the
1910/// nested-name-specifier.
1911///
Douglas Gregor127ea592009-11-03 21:24:04 +00001912/// \param ObjectType if this unqualified-id occurs within a member access
1913/// expression, the type of the base object whose member is being accessed.
1914///
Douglas Gregor7861a802009-11-03 01:35:08 +00001915/// \param Id as input, describes the template-name or operator-function-id
1916/// that precedes the '<'. If template arguments were parsed successfully,
1917/// will be updated with the template-id.
1918///
Douglas Gregore610ada2010-02-24 18:44:31 +00001919/// \param AssumeTemplateId When true, this routine will assume that the name
1920/// refers to a template without performing name lookup to verify.
1921///
Douglas Gregor7861a802009-11-03 01:35:08 +00001922/// \returns true if a parse error occurred, false otherwise.
1923bool Parser::ParseUnqualifiedIdTemplateId(CXXScopeSpec &SS,
Abramo Bagnara7945c982012-01-27 09:46:47 +00001924 SourceLocation TemplateKWLoc,
Douglas Gregor7861a802009-11-03 01:35:08 +00001925 IdentifierInfo *Name,
1926 SourceLocation NameLoc,
1927 bool EnteringContext,
John McCallba7bf592010-08-24 05:47:05 +00001928 ParsedType ObjectType,
Douglas Gregore610ada2010-02-24 18:44:31 +00001929 UnqualifiedId &Id,
Abramo Bagnara7945c982012-01-27 09:46:47 +00001930 bool AssumeTemplateId) {
Douglas Gregorb22ee882010-05-05 05:58:24 +00001931 assert((AssumeTemplateId || Tok.is(tok::less)) &&
1932 "Expected '<' to finish parsing a template-id");
Douglas Gregor7861a802009-11-03 01:35:08 +00001933
1934 TemplateTy Template;
1935 TemplateNameKind TNK = TNK_Non_template;
1936 switch (Id.getKind()) {
1937 case UnqualifiedId::IK_Identifier:
Douglas Gregor3cf81312009-11-03 23:16:33 +00001938 case UnqualifiedId::IK_OperatorFunctionId:
Alexis Hunted0530f2009-11-28 08:58:14 +00001939 case UnqualifiedId::IK_LiteralOperatorId:
Douglas Gregore610ada2010-02-24 18:44:31 +00001940 if (AssumeTemplateId) {
Abramo Bagnara7945c982012-01-27 09:46:47 +00001941 TNK = Actions.ActOnDependentTemplateName(getCurScope(), SS, TemplateKWLoc,
Douglas Gregorbb119652010-06-16 23:00:59 +00001942 Id, ObjectType, EnteringContext,
1943 Template);
1944 if (TNK == TNK_Non_template)
1945 return true;
Douglas Gregor786123d2010-05-21 23:18:07 +00001946 } else {
1947 bool MemberOfUnknownSpecialization;
Abramo Bagnara7c5dee42010-08-06 12:11:11 +00001948 TNK = Actions.isTemplateName(getCurScope(), SS,
1949 TemplateKWLoc.isValid(), Id,
1950 ObjectType, EnteringContext, Template,
Douglas Gregor786123d2010-05-21 23:18:07 +00001951 MemberOfUnknownSpecialization);
1952
1953 if (TNK == TNK_Non_template && MemberOfUnknownSpecialization &&
1954 ObjectType && IsTemplateArgumentList()) {
1955 // We have something like t->getAs<T>(), where getAs is a
1956 // member of an unknown specialization. However, this will only
1957 // parse correctly as a template, so suggest the keyword 'template'
1958 // before 'getAs' and treat this as a dependent template name.
1959 std::string Name;
1960 if (Id.getKind() == UnqualifiedId::IK_Identifier)
1961 Name = Id.Identifier->getName();
1962 else {
1963 Name = "operator ";
1964 if (Id.getKind() == UnqualifiedId::IK_OperatorFunctionId)
1965 Name += getOperatorSpelling(Id.OperatorFunctionId.Operator);
1966 else
1967 Name += Id.Identifier->getName();
1968 }
1969 Diag(Id.StartLocation, diag::err_missing_dependent_template_keyword)
1970 << Name
1971 << FixItHint::CreateInsertion(Id.StartLocation, "template ");
Abramo Bagnara7945c982012-01-27 09:46:47 +00001972 TNK = Actions.ActOnDependentTemplateName(getCurScope(),
1973 SS, TemplateKWLoc, Id,
1974 ObjectType, EnteringContext,
1975 Template);
Douglas Gregorbb119652010-06-16 23:00:59 +00001976 if (TNK == TNK_Non_template)
Douglas Gregor786123d2010-05-21 23:18:07 +00001977 return true;
1978 }
1979 }
Douglas Gregor7861a802009-11-03 01:35:08 +00001980 break;
1981
Douglas Gregor3cf81312009-11-03 23:16:33 +00001982 case UnqualifiedId::IK_ConstructorName: {
1983 UnqualifiedId TemplateName;
Douglas Gregor786123d2010-05-21 23:18:07 +00001984 bool MemberOfUnknownSpecialization;
Douglas Gregor3cf81312009-11-03 23:16:33 +00001985 TemplateName.setIdentifier(Name, NameLoc);
Abramo Bagnara7c5dee42010-08-06 12:11:11 +00001986 TNK = Actions.isTemplateName(getCurScope(), SS, TemplateKWLoc.isValid(),
1987 TemplateName, ObjectType,
Douglas Gregor786123d2010-05-21 23:18:07 +00001988 EnteringContext, Template,
1989 MemberOfUnknownSpecialization);
Douglas Gregor7861a802009-11-03 01:35:08 +00001990 break;
1991 }
1992
Douglas Gregor3cf81312009-11-03 23:16:33 +00001993 case UnqualifiedId::IK_DestructorName: {
1994 UnqualifiedId TemplateName;
Douglas Gregor786123d2010-05-21 23:18:07 +00001995 bool MemberOfUnknownSpecialization;
Douglas Gregor3cf81312009-11-03 23:16:33 +00001996 TemplateName.setIdentifier(Name, NameLoc);
Douglas Gregor30d60cb2009-11-03 19:44:04 +00001997 if (ObjectType) {
Abramo Bagnara7945c982012-01-27 09:46:47 +00001998 TNK = Actions.ActOnDependentTemplateName(getCurScope(),
1999 SS, TemplateKWLoc, TemplateName,
2000 ObjectType, EnteringContext,
2001 Template);
Douglas Gregorbb119652010-06-16 23:00:59 +00002002 if (TNK == TNK_Non_template)
Douglas Gregor30d60cb2009-11-03 19:44:04 +00002003 return true;
2004 } else {
Abramo Bagnara7c5dee42010-08-06 12:11:11 +00002005 TNK = Actions.isTemplateName(getCurScope(), SS, TemplateKWLoc.isValid(),
2006 TemplateName, ObjectType,
Douglas Gregor786123d2010-05-21 23:18:07 +00002007 EnteringContext, Template,
2008 MemberOfUnknownSpecialization);
Douglas Gregor30d60cb2009-11-03 19:44:04 +00002009
John McCallba7bf592010-08-24 05:47:05 +00002010 if (TNK == TNK_Non_template && !Id.DestructorName.get()) {
Douglas Gregorfe17d252010-02-16 19:09:40 +00002011 Diag(NameLoc, diag::err_destructor_template_id)
2012 << Name << SS.getRange();
Douglas Gregor30d60cb2009-11-03 19:44:04 +00002013 return true;
2014 }
2015 }
Douglas Gregor7861a802009-11-03 01:35:08 +00002016 break;
Douglas Gregor3cf81312009-11-03 23:16:33 +00002017 }
Douglas Gregor7861a802009-11-03 01:35:08 +00002018
2019 default:
2020 return false;
2021 }
2022
2023 if (TNK == TNK_Non_template)
2024 return false;
2025
2026 // Parse the enclosed template argument list.
2027 SourceLocation LAngleLoc, RAngleLoc;
2028 TemplateArgList TemplateArgs;
Douglas Gregorb22ee882010-05-05 05:58:24 +00002029 if (Tok.is(tok::less) &&
2030 ParseTemplateIdAfterTemplateName(Template, Id.StartLocation,
Douglas Gregore7c20652011-03-02 00:47:37 +00002031 SS, true, LAngleLoc,
Douglas Gregor7861a802009-11-03 01:35:08 +00002032 TemplateArgs,
Douglas Gregor7861a802009-11-03 01:35:08 +00002033 RAngleLoc))
2034 return true;
2035
2036 if (Id.getKind() == UnqualifiedId::IK_Identifier ||
Alexis Hunted0530f2009-11-28 08:58:14 +00002037 Id.getKind() == UnqualifiedId::IK_OperatorFunctionId ||
2038 Id.getKind() == UnqualifiedId::IK_LiteralOperatorId) {
Douglas Gregor7861a802009-11-03 01:35:08 +00002039 // Form a parsed representation of the template-id to be stored in the
2040 // UnqualifiedId.
2041 TemplateIdAnnotation *TemplateId
Benjamin Kramer1e6b6062012-04-14 12:14:03 +00002042 = TemplateIdAnnotation::Allocate(TemplateArgs.size(), TemplateIds);
Douglas Gregor7861a802009-11-03 01:35:08 +00002043
Richard Smith72bfbd82013-12-04 00:28:23 +00002044 // FIXME: Store name for literal operator too.
Douglas Gregor7861a802009-11-03 01:35:08 +00002045 if (Id.getKind() == UnqualifiedId::IK_Identifier) {
2046 TemplateId->Name = Id.Identifier;
Douglas Gregor3cf81312009-11-03 23:16:33 +00002047 TemplateId->Operator = OO_None;
Douglas Gregor7861a802009-11-03 01:35:08 +00002048 TemplateId->TemplateNameLoc = Id.StartLocation;
2049 } else {
Craig Topper161e4db2014-05-21 06:02:52 +00002050 TemplateId->Name = nullptr;
Douglas Gregor3cf81312009-11-03 23:16:33 +00002051 TemplateId->Operator = Id.OperatorFunctionId.Operator;
2052 TemplateId->TemplateNameLoc = Id.StartLocation;
Douglas Gregor7861a802009-11-03 01:35:08 +00002053 }
2054
Douglas Gregore7c20652011-03-02 00:47:37 +00002055 TemplateId->SS = SS;
Benjamin Kramer807c2db2012-02-19 23:37:39 +00002056 TemplateId->TemplateKWLoc = TemplateKWLoc;
John McCall3e56fd42010-08-23 07:28:44 +00002057 TemplateId->Template = Template;
Douglas Gregor7861a802009-11-03 01:35:08 +00002058 TemplateId->Kind = TNK;
2059 TemplateId->LAngleLoc = LAngleLoc;
2060 TemplateId->RAngleLoc = RAngleLoc;
Douglas Gregorb53edfb2009-11-10 19:49:08 +00002061 ParsedTemplateArgument *Args = TemplateId->getTemplateArgs();
Douglas Gregor7861a802009-11-03 01:35:08 +00002062 for (unsigned Arg = 0, ArgEnd = TemplateArgs.size();
Douglas Gregorb53edfb2009-11-10 19:49:08 +00002063 Arg != ArgEnd; ++Arg)
Douglas Gregor7861a802009-11-03 01:35:08 +00002064 Args[Arg] = TemplateArgs[Arg];
Douglas Gregor7861a802009-11-03 01:35:08 +00002065
2066 Id.setTemplateId(TemplateId);
2067 return false;
2068 }
2069
2070 // Bundle the template arguments together.
Benjamin Kramercc4c49d2012-08-23 23:38:35 +00002071 ASTTemplateArgsPtr TemplateArgsPtr(TemplateArgs);
Abramo Bagnara4244b432012-01-27 08:46:19 +00002072
Douglas Gregor7861a802009-11-03 01:35:08 +00002073 // Constructor and destructor names.
John McCallfaf5fb42010-08-26 23:41:50 +00002074 TypeResult Type
Abramo Bagnara48c05be2012-02-06 14:41:24 +00002075 = Actions.ActOnTemplateIdType(SS, TemplateKWLoc,
2076 Template, NameLoc,
Abramo Bagnara4244b432012-01-27 08:46:19 +00002077 LAngleLoc, TemplateArgsPtr, RAngleLoc,
2078 /*IsCtorOrDtorName=*/true);
Douglas Gregor7861a802009-11-03 01:35:08 +00002079 if (Type.isInvalid())
2080 return true;
2081
2082 if (Id.getKind() == UnqualifiedId::IK_ConstructorName)
2083 Id.setConstructorName(Type.get(), NameLoc, RAngleLoc);
2084 else
2085 Id.setDestructorName(Id.StartLocation, Type.get(), RAngleLoc);
2086
2087 return false;
2088}
2089
Douglas Gregor71395fa2009-11-04 00:56:37 +00002090/// \brief Parse an operator-function-id or conversion-function-id as part
2091/// of a C++ unqualified-id.
2092///
2093/// This routine is responsible only for parsing the operator-function-id or
2094/// conversion-function-id; it does not handle template arguments in any way.
Douglas Gregor7861a802009-11-03 01:35:08 +00002095///
2096/// \code
Douglas Gregor7861a802009-11-03 01:35:08 +00002097/// operator-function-id: [C++ 13.5]
2098/// 'operator' operator
2099///
Douglas Gregor71395fa2009-11-04 00:56:37 +00002100/// operator: one of
Douglas Gregor7861a802009-11-03 01:35:08 +00002101/// new delete new[] delete[]
2102/// + - * / % ^ & | ~
2103/// ! = < > += -= *= /= %=
2104/// ^= &= |= << >> >>= <<= == !=
2105/// <= >= && || ++ -- , ->* ->
2106/// () []
2107///
2108/// conversion-function-id: [C++ 12.3.2]
2109/// operator conversion-type-id
2110///
2111/// conversion-type-id:
2112/// type-specifier-seq conversion-declarator[opt]
2113///
2114/// conversion-declarator:
2115/// ptr-operator conversion-declarator[opt]
2116/// \endcode
2117///
Dmitri Gribenkodd28e792012-08-24 00:01:24 +00002118/// \param SS The nested-name-specifier that preceded this unqualified-id. If
Douglas Gregor7861a802009-11-03 01:35:08 +00002119/// non-empty, then we are parsing the unqualified-id of a qualified-id.
2120///
2121/// \param EnteringContext whether we are entering the scope of the
2122/// nested-name-specifier.
2123///
Douglas Gregor71395fa2009-11-04 00:56:37 +00002124/// \param ObjectType if this unqualified-id occurs within a member access
2125/// expression, the type of the base object whose member is being accessed.
2126///
2127/// \param Result on a successful parse, contains the parsed unqualified-id.
2128///
2129/// \returns true if parsing fails, false otherwise.
2130bool Parser::ParseUnqualifiedIdOperator(CXXScopeSpec &SS, bool EnteringContext,
John McCallba7bf592010-08-24 05:47:05 +00002131 ParsedType ObjectType,
Douglas Gregor71395fa2009-11-04 00:56:37 +00002132 UnqualifiedId &Result) {
2133 assert(Tok.is(tok::kw_operator) && "Expected 'operator' keyword");
2134
2135 // Consume the 'operator' keyword.
2136 SourceLocation KeywordLoc = ConsumeToken();
2137
2138 // Determine what kind of operator name we have.
2139 unsigned SymbolIdx = 0;
2140 SourceLocation SymbolLocations[3];
2141 OverloadedOperatorKind Op = OO_None;
2142 switch (Tok.getKind()) {
2143 case tok::kw_new:
2144 case tok::kw_delete: {
2145 bool isNew = Tok.getKind() == tok::kw_new;
2146 // Consume the 'new' or 'delete'.
2147 SymbolLocations[SymbolIdx++] = ConsumeToken();
Richard Smith7bdcc4a2012-04-10 01:32:12 +00002148 // Check for array new/delete.
2149 if (Tok.is(tok::l_square) &&
Richard Smith2bf7fdb2013-01-02 11:42:31 +00002150 (!getLangOpts().CPlusPlus11 || NextToken().isNot(tok::l_square))) {
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00002151 // Consume the '[' and ']'.
2152 BalancedDelimiterTracker T(*this, tok::l_square);
2153 T.consumeOpen();
2154 T.consumeClose();
2155 if (T.getCloseLocation().isInvalid())
Douglas Gregor71395fa2009-11-04 00:56:37 +00002156 return true;
2157
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00002158 SymbolLocations[SymbolIdx++] = T.getOpenLocation();
2159 SymbolLocations[SymbolIdx++] = T.getCloseLocation();
Douglas Gregor71395fa2009-11-04 00:56:37 +00002160 Op = isNew? OO_Array_New : OO_Array_Delete;
2161 } else {
2162 Op = isNew? OO_New : OO_Delete;
2163 }
2164 break;
2165 }
2166
2167#define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \
2168 case tok::Token: \
2169 SymbolLocations[SymbolIdx++] = ConsumeToken(); \
2170 Op = OO_##Name; \
2171 break;
2172#define OVERLOADED_OPERATOR_MULTI(Name,Spelling,Unary,Binary,MemberOnly)
2173#include "clang/Basic/OperatorKinds.def"
2174
2175 case tok::l_paren: {
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00002176 // Consume the '(' and ')'.
2177 BalancedDelimiterTracker T(*this, tok::l_paren);
2178 T.consumeOpen();
2179 T.consumeClose();
2180 if (T.getCloseLocation().isInvalid())
Douglas Gregor71395fa2009-11-04 00:56:37 +00002181 return true;
2182
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00002183 SymbolLocations[SymbolIdx++] = T.getOpenLocation();
2184 SymbolLocations[SymbolIdx++] = T.getCloseLocation();
Douglas Gregor71395fa2009-11-04 00:56:37 +00002185 Op = OO_Call;
2186 break;
2187 }
2188
2189 case tok::l_square: {
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00002190 // Consume the '[' and ']'.
2191 BalancedDelimiterTracker T(*this, tok::l_square);
2192 T.consumeOpen();
2193 T.consumeClose();
2194 if (T.getCloseLocation().isInvalid())
Douglas Gregor71395fa2009-11-04 00:56:37 +00002195 return true;
2196
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00002197 SymbolLocations[SymbolIdx++] = T.getOpenLocation();
2198 SymbolLocations[SymbolIdx++] = T.getCloseLocation();
Douglas Gregor71395fa2009-11-04 00:56:37 +00002199 Op = OO_Subscript;
2200 break;
2201 }
2202
2203 case tok::code_completion: {
2204 // Code completion for the operator name.
Douglas Gregor0be31a22010-07-02 17:43:08 +00002205 Actions.CodeCompleteOperatorName(getCurScope());
Argyrios Kyrtzidis5cec2ae2011-09-04 03:32:15 +00002206 cutOffParsing();
Douglas Gregor71395fa2009-11-04 00:56:37 +00002207 // Don't try to parse any further.
2208 return true;
2209 }
2210
2211 default:
2212 break;
2213 }
2214
2215 if (Op != OO_None) {
2216 // We have parsed an operator-function-id.
2217 Result.setOperatorFunctionId(KeywordLoc, Op, SymbolLocations);
2218 return false;
2219 }
Alexis Hunt34458502009-11-28 04:44:28 +00002220
2221 // Parse a literal-operator-id.
2222 //
Richard Smith6f212062012-10-20 08:41:10 +00002223 // literal-operator-id: C++11 [over.literal]
2224 // operator string-literal identifier
2225 // operator user-defined-string-literal
Alexis Hunt34458502009-11-28 04:44:28 +00002226
Richard Smith2bf7fdb2013-01-02 11:42:31 +00002227 if (getLangOpts().CPlusPlus11 && isTokenStringLiteral()) {
Richard Smith5d164bc2011-10-15 05:09:34 +00002228 Diag(Tok.getLocation(), diag::warn_cxx98_compat_literal_operator);
Alexis Hunt34458502009-11-28 04:44:28 +00002229
Richard Smith7d182a72012-03-08 23:06:02 +00002230 SourceLocation DiagLoc;
2231 unsigned DiagId = 0;
2232
2233 // We're past translation phase 6, so perform string literal concatenation
2234 // before checking for "".
Dmitri Gribenkof8579502013-01-12 19:30:44 +00002235 SmallVector<Token, 4> Toks;
2236 SmallVector<SourceLocation, 4> TokLocs;
Richard Smith7d182a72012-03-08 23:06:02 +00002237 while (isTokenStringLiteral()) {
2238 if (!Tok.is(tok::string_literal) && !DiagId) {
Richard Smith6f212062012-10-20 08:41:10 +00002239 // C++11 [over.literal]p1:
2240 // The string-literal or user-defined-string-literal in a
2241 // literal-operator-id shall have no encoding-prefix [...].
Richard Smith7d182a72012-03-08 23:06:02 +00002242 DiagLoc = Tok.getLocation();
2243 DiagId = diag::err_literal_operator_string_prefix;
2244 }
2245 Toks.push_back(Tok);
2246 TokLocs.push_back(ConsumeStringToken());
2247 }
2248
Craig Topper9d5583e2014-06-26 04:58:39 +00002249 StringLiteralParser Literal(Toks, PP);
Richard Smith7d182a72012-03-08 23:06:02 +00002250 if (Literal.hadError)
2251 return true;
2252
2253 // Grab the literal operator's suffix, which will be either the next token
2254 // or a ud-suffix from the string literal.
Craig Topper161e4db2014-05-21 06:02:52 +00002255 IdentifierInfo *II = nullptr;
Richard Smith7d182a72012-03-08 23:06:02 +00002256 SourceLocation SuffixLoc;
2257 if (!Literal.getUDSuffix().empty()) {
2258 II = &PP.getIdentifierTable().get(Literal.getUDSuffix());
2259 SuffixLoc =
2260 Lexer::AdvanceToTokenCharacter(TokLocs[Literal.getUDSuffixToken()],
2261 Literal.getUDSuffixOffset(),
David Blaikiebbafb8a2012-03-11 07:00:24 +00002262 PP.getSourceManager(), getLangOpts());
Richard Smith7d182a72012-03-08 23:06:02 +00002263 } else if (Tok.is(tok::identifier)) {
2264 II = Tok.getIdentifierInfo();
2265 SuffixLoc = ConsumeToken();
2266 TokLocs.push_back(SuffixLoc);
2267 } else {
Alp Tokerec543272013-12-24 09:48:30 +00002268 Diag(Tok.getLocation(), diag::err_expected) << tok::identifier;
Alexis Hunt34458502009-11-28 04:44:28 +00002269 return true;
2270 }
2271
Richard Smith7d182a72012-03-08 23:06:02 +00002272 // The string literal must be empty.
2273 if (!Literal.GetString().empty() || Literal.Pascal) {
Richard Smith6f212062012-10-20 08:41:10 +00002274 // C++11 [over.literal]p1:
2275 // The string-literal or user-defined-string-literal in a
2276 // literal-operator-id shall [...] contain no characters
2277 // other than the implicit terminating '\0'.
Richard Smith7d182a72012-03-08 23:06:02 +00002278 DiagLoc = TokLocs.front();
2279 DiagId = diag::err_literal_operator_string_not_empty;
2280 }
2281
2282 if (DiagId) {
2283 // This isn't a valid literal-operator-id, but we think we know
2284 // what the user meant. Tell them what they should have written.
Dmitri Gribenkof8579502013-01-12 19:30:44 +00002285 SmallString<32> Str;
Richard Smith7d182a72012-03-08 23:06:02 +00002286 Str += "\"\" ";
2287 Str += II->getName();
2288 Diag(DiagLoc, DiagId) << FixItHint::CreateReplacement(
2289 SourceRange(TokLocs.front(), TokLocs.back()), Str);
2290 }
2291
2292 Result.setLiteralOperatorId(II, KeywordLoc, SuffixLoc);
Richard Smithd091dc12013-12-05 00:58:33 +00002293
2294 return Actions.checkLiteralOperatorId(SS, Result);
Alexis Hunt34458502009-11-28 04:44:28 +00002295 }
Richard Smithd091dc12013-12-05 00:58:33 +00002296
Douglas Gregor71395fa2009-11-04 00:56:37 +00002297 // Parse a conversion-function-id.
2298 //
2299 // conversion-function-id: [C++ 12.3.2]
2300 // operator conversion-type-id
2301 //
2302 // conversion-type-id:
2303 // type-specifier-seq conversion-declarator[opt]
2304 //
2305 // conversion-declarator:
2306 // ptr-operator conversion-declarator[opt]
2307
2308 // Parse the type-specifier-seq.
John McCall084e83d2011-03-24 11:26:52 +00002309 DeclSpec DS(AttrFactory);
Douglas Gregora25d65d2009-11-20 22:03:38 +00002310 if (ParseCXXTypeSpecifierSeq(DS)) // FIXME: ObjectType?
Douglas Gregor71395fa2009-11-04 00:56:37 +00002311 return true;
2312
2313 // Parse the conversion-declarator, which is merely a sequence of
2314 // ptr-operators.
Richard Smith01518fa2013-05-04 01:26:46 +00002315 Declarator D(DS, Declarator::ConversionIdContext);
Craig Topper161e4db2014-05-21 06:02:52 +00002316 ParseDeclaratorInternal(D, /*DirectDeclParser=*/nullptr);
2317
Douglas Gregor71395fa2009-11-04 00:56:37 +00002318 // Finish up the type.
John McCallfaf5fb42010-08-26 23:41:50 +00002319 TypeResult Ty = Actions.ActOnTypeName(getCurScope(), D);
Douglas Gregor71395fa2009-11-04 00:56:37 +00002320 if (Ty.isInvalid())
2321 return true;
2322
2323 // Note that this is a conversion-function-id.
2324 Result.setConversionFunctionId(KeywordLoc, Ty.get(),
2325 D.getSourceRange().getEnd());
2326 return false;
2327}
2328
2329/// \brief Parse a C++ unqualified-id (or a C identifier), which describes the
2330/// name of an entity.
2331///
2332/// \code
2333/// unqualified-id: [C++ expr.prim.general]
2334/// identifier
2335/// operator-function-id
2336/// conversion-function-id
2337/// [C++0x] literal-operator-id [TODO]
2338/// ~ class-name
2339/// template-id
2340///
2341/// \endcode
2342///
Dmitri Gribenkodd28e792012-08-24 00:01:24 +00002343/// \param SS The nested-name-specifier that preceded this unqualified-id. If
Douglas Gregor71395fa2009-11-04 00:56:37 +00002344/// non-empty, then we are parsing the unqualified-id of a qualified-id.
2345///
2346/// \param EnteringContext whether we are entering the scope of the
2347/// nested-name-specifier.
2348///
Douglas Gregor7861a802009-11-03 01:35:08 +00002349/// \param AllowDestructorName whether we allow parsing of a destructor name.
2350///
2351/// \param AllowConstructorName whether we allow parsing a constructor name.
2352///
Douglas Gregor127ea592009-11-03 21:24:04 +00002353/// \param ObjectType if this unqualified-id occurs within a member access
2354/// expression, the type of the base object whose member is being accessed.
2355///
Douglas Gregor7861a802009-11-03 01:35:08 +00002356/// \param Result on a successful parse, contains the parsed unqualified-id.
2357///
2358/// \returns true if parsing fails, false otherwise.
2359bool Parser::ParseUnqualifiedId(CXXScopeSpec &SS, bool EnteringContext,
2360 bool AllowDestructorName,
2361 bool AllowConstructorName,
John McCallba7bf592010-08-24 05:47:05 +00002362 ParsedType ObjectType,
Abramo Bagnara7945c982012-01-27 09:46:47 +00002363 SourceLocation& TemplateKWLoc,
Douglas Gregor7861a802009-11-03 01:35:08 +00002364 UnqualifiedId &Result) {
Douglas Gregorb22ee882010-05-05 05:58:24 +00002365
2366 // Handle 'A::template B'. This is for template-ids which have not
2367 // already been annotated by ParseOptionalCXXScopeSpecifier().
2368 bool TemplateSpecified = false;
David Blaikiebbafb8a2012-03-11 07:00:24 +00002369 if (getLangOpts().CPlusPlus && Tok.is(tok::kw_template) &&
Douglas Gregorb22ee882010-05-05 05:58:24 +00002370 (ObjectType || SS.isSet())) {
2371 TemplateSpecified = true;
2372 TemplateKWLoc = ConsumeToken();
2373 }
2374
Douglas Gregor7861a802009-11-03 01:35:08 +00002375 // unqualified-id:
2376 // identifier
2377 // template-id (when it hasn't already been annotated)
2378 if (Tok.is(tok::identifier)) {
2379 // Consume the identifier.
2380 IdentifierInfo *Id = Tok.getIdentifierInfo();
2381 SourceLocation IdLoc = ConsumeToken();
2382
David Blaikiebbafb8a2012-03-11 07:00:24 +00002383 if (!getLangOpts().CPlusPlus) {
Douglas Gregor411e5ac2010-01-11 23:29:10 +00002384 // If we're not in C++, only identifiers matter. Record the
2385 // identifier and return.
2386 Result.setIdentifier(Id, IdLoc);
2387 return false;
2388 }
2389
Douglas Gregor7861a802009-11-03 01:35:08 +00002390 if (AllowConstructorName &&
Douglas Gregor0be31a22010-07-02 17:43:08 +00002391 Actions.isCurrentClassName(*Id, getCurScope(), &SS)) {
Douglas Gregor7861a802009-11-03 01:35:08 +00002392 // We have parsed a constructor name.
Abramo Bagnara4244b432012-01-27 08:46:19 +00002393 ParsedType Ty = Actions.getTypeName(*Id, IdLoc, getCurScope(),
2394 &SS, false, false,
2395 ParsedType(),
2396 /*IsCtorOrDtorName=*/true,
2397 /*NonTrivialTypeSourceInfo=*/true);
2398 Result.setConstructorName(Ty, IdLoc, IdLoc);
Douglas Gregor7861a802009-11-03 01:35:08 +00002399 } else {
2400 // We have parsed an identifier.
2401 Result.setIdentifier(Id, IdLoc);
2402 }
2403
2404 // If the next token is a '<', we may have a template.
Douglas Gregorb22ee882010-05-05 05:58:24 +00002405 if (TemplateSpecified || Tok.is(tok::less))
Abramo Bagnara7945c982012-01-27 09:46:47 +00002406 return ParseUnqualifiedIdTemplateId(SS, TemplateKWLoc, Id, IdLoc,
2407 EnteringContext, ObjectType,
2408 Result, TemplateSpecified);
Douglas Gregor7861a802009-11-03 01:35:08 +00002409
2410 return false;
2411 }
2412
2413 // unqualified-id:
2414 // template-id (already parsed and annotated)
2415 if (Tok.is(tok::annot_template_id)) {
Argyrios Kyrtzidisc0c5dd22011-06-22 06:09:49 +00002416 TemplateIdAnnotation *TemplateId = takeTemplateIdAnnotation(Tok);
Douglas Gregor9de54ea2010-01-13 17:31:36 +00002417
2418 // If the template-name names the current class, then this is a constructor
2419 if (AllowConstructorName && TemplateId->Name &&
Douglas Gregor0be31a22010-07-02 17:43:08 +00002420 Actions.isCurrentClassName(*TemplateId->Name, getCurScope(), &SS)) {
Douglas Gregor9de54ea2010-01-13 17:31:36 +00002421 if (SS.isSet()) {
2422 // C++ [class.qual]p2 specifies that a qualified template-name
2423 // is taken as the constructor name where a constructor can be
2424 // declared. Thus, the template arguments are extraneous, so
2425 // complain about them and remove them entirely.
2426 Diag(TemplateId->TemplateNameLoc,
2427 diag::err_out_of_line_constructor_template_id)
2428 << TemplateId->Name
Douglas Gregora771f462010-03-31 17:46:05 +00002429 << FixItHint::CreateRemoval(
Douglas Gregor9de54ea2010-01-13 17:31:36 +00002430 SourceRange(TemplateId->LAngleLoc, TemplateId->RAngleLoc));
Abramo Bagnara4244b432012-01-27 08:46:19 +00002431 ParsedType Ty = Actions.getTypeName(*TemplateId->Name,
2432 TemplateId->TemplateNameLoc,
2433 getCurScope(),
2434 &SS, false, false,
2435 ParsedType(),
2436 /*IsCtorOrDtorName=*/true,
2437 /*NontrivialTypeSourceInfo=*/true);
2438 Result.setConstructorName(Ty, TemplateId->TemplateNameLoc,
Douglas Gregor9de54ea2010-01-13 17:31:36 +00002439 TemplateId->RAngleLoc);
Douglas Gregor9de54ea2010-01-13 17:31:36 +00002440 ConsumeToken();
2441 return false;
2442 }
2443
2444 Result.setConstructorTemplateId(TemplateId);
2445 ConsumeToken();
2446 return false;
2447 }
2448
Douglas Gregor7861a802009-11-03 01:35:08 +00002449 // We have already parsed a template-id; consume the annotation token as
2450 // our unqualified-id.
Douglas Gregor9de54ea2010-01-13 17:31:36 +00002451 Result.setTemplateId(TemplateId);
Abramo Bagnara7945c982012-01-27 09:46:47 +00002452 TemplateKWLoc = TemplateId->TemplateKWLoc;
Douglas Gregor7861a802009-11-03 01:35:08 +00002453 ConsumeToken();
2454 return false;
2455 }
2456
2457 // unqualified-id:
2458 // operator-function-id
2459 // conversion-function-id
2460 if (Tok.is(tok::kw_operator)) {
Douglas Gregor71395fa2009-11-04 00:56:37 +00002461 if (ParseUnqualifiedIdOperator(SS, EnteringContext, ObjectType, Result))
Douglas Gregor7861a802009-11-03 01:35:08 +00002462 return true;
2463
Alexis Hunted0530f2009-11-28 08:58:14 +00002464 // If we have an operator-function-id or a literal-operator-id and the next
2465 // token is a '<', we may have a
Douglas Gregor71395fa2009-11-04 00:56:37 +00002466 //
2467 // template-id:
2468 // operator-function-id < template-argument-list[opt] >
Alexis Hunted0530f2009-11-28 08:58:14 +00002469 if ((Result.getKind() == UnqualifiedId::IK_OperatorFunctionId ||
2470 Result.getKind() == UnqualifiedId::IK_LiteralOperatorId) &&
Douglas Gregorb22ee882010-05-05 05:58:24 +00002471 (TemplateSpecified || Tok.is(tok::less)))
Abramo Bagnara7945c982012-01-27 09:46:47 +00002472 return ParseUnqualifiedIdTemplateId(SS, TemplateKWLoc,
Craig Topper161e4db2014-05-21 06:02:52 +00002473 nullptr, SourceLocation(),
Abramo Bagnara7945c982012-01-27 09:46:47 +00002474 EnteringContext, ObjectType,
2475 Result, TemplateSpecified);
Craig Topper161e4db2014-05-21 06:02:52 +00002476
Douglas Gregor7861a802009-11-03 01:35:08 +00002477 return false;
2478 }
2479
David Blaikiebbafb8a2012-03-11 07:00:24 +00002480 if (getLangOpts().CPlusPlus &&
Douglas Gregor411e5ac2010-01-11 23:29:10 +00002481 (AllowDestructorName || SS.isSet()) && Tok.is(tok::tilde)) {
Douglas Gregor7861a802009-11-03 01:35:08 +00002482 // C++ [expr.unary.op]p10:
2483 // There is an ambiguity in the unary-expression ~X(), where X is a
2484 // class-name. The ambiguity is resolved in favor of treating ~ as a
2485 // unary complement rather than treating ~X as referring to a destructor.
2486
2487 // Parse the '~'.
2488 SourceLocation TildeLoc = ConsumeToken();
David Blaikieecd8a942011-12-08 16:13:53 +00002489
2490 if (SS.isEmpty() && Tok.is(tok::kw_decltype)) {
2491 DeclSpec DS(AttrFactory);
2492 SourceLocation EndLoc = ParseDecltypeSpecifier(DS);
2493 if (ParsedType Type = Actions.getDestructorType(DS, ObjectType)) {
2494 Result.setDestructorName(TildeLoc, Type, EndLoc);
2495 return false;
2496 }
2497 return true;
2498 }
Douglas Gregor7861a802009-11-03 01:35:08 +00002499
2500 // Parse the class-name.
2501 if (Tok.isNot(tok::identifier)) {
Douglas Gregorfe17d252010-02-16 19:09:40 +00002502 Diag(Tok, diag::err_destructor_tilde_identifier);
Douglas Gregor7861a802009-11-03 01:35:08 +00002503 return true;
2504 }
2505
Richard Smithefa6f732014-09-06 02:06:12 +00002506 // If the user wrote ~T::T, correct it to T::~T.
2507 if (!TemplateSpecified && NextToken().is(tok::coloncolon)) {
2508 if (SS.isSet()) {
2509 AnnotateScopeToken(SS, /*NewAnnotation*/true);
2510 SS.clear();
2511 }
2512 if (ParseOptionalCXXScopeSpecifier(SS, ObjectType, EnteringContext))
2513 return true;
2514 if (Tok.isNot(tok::identifier) || NextToken().is(tok::coloncolon)) {
2515 Diag(TildeLoc, diag::err_destructor_tilde_scope);
2516 return true;
2517 }
2518
2519 // Recover as if the tilde had been written before the identifier.
2520 Diag(TildeLoc, diag::err_destructor_tilde_scope)
2521 << FixItHint::CreateRemoval(TildeLoc)
2522 << FixItHint::CreateInsertion(Tok.getLocation(), "~");
2523 }
2524
Douglas Gregor7861a802009-11-03 01:35:08 +00002525 // Parse the class-name (or template-name in a simple-template-id).
2526 IdentifierInfo *ClassName = Tok.getIdentifierInfo();
2527 SourceLocation ClassNameLoc = ConsumeToken();
Richard Smithefa6f732014-09-06 02:06:12 +00002528
Douglas Gregorb22ee882010-05-05 05:58:24 +00002529 if (TemplateSpecified || Tok.is(tok::less)) {
John McCallba7bf592010-08-24 05:47:05 +00002530 Result.setDestructorName(TildeLoc, ParsedType(), ClassNameLoc);
Abramo Bagnara7945c982012-01-27 09:46:47 +00002531 return ParseUnqualifiedIdTemplateId(SS, TemplateKWLoc,
2532 ClassName, ClassNameLoc,
2533 EnteringContext, ObjectType,
2534 Result, TemplateSpecified);
Douglas Gregor30d60cb2009-11-03 19:44:04 +00002535 }
Richard Smithefa6f732014-09-06 02:06:12 +00002536
Douglas Gregor7861a802009-11-03 01:35:08 +00002537 // Note that this is a destructor name.
John McCallba7bf592010-08-24 05:47:05 +00002538 ParsedType Ty = Actions.getDestructorName(TildeLoc, *ClassName,
2539 ClassNameLoc, getCurScope(),
2540 SS, ObjectType,
2541 EnteringContext);
Douglas Gregorfe17d252010-02-16 19:09:40 +00002542 if (!Ty)
Douglas Gregor7861a802009-11-03 01:35:08 +00002543 return true;
Douglas Gregorfe17d252010-02-16 19:09:40 +00002544
Douglas Gregor7861a802009-11-03 01:35:08 +00002545 Result.setDestructorName(TildeLoc, Ty, ClassNameLoc);
Douglas Gregor7861a802009-11-03 01:35:08 +00002546 return false;
2547 }
2548
Douglas Gregor30d60cb2009-11-03 19:44:04 +00002549 Diag(Tok, diag::err_expected_unqualified_id)
David Blaikiebbafb8a2012-03-11 07:00:24 +00002550 << getLangOpts().CPlusPlus;
Douglas Gregor7861a802009-11-03 01:35:08 +00002551 return true;
2552}
2553
Sebastian Redlbd150f42008-11-21 19:14:01 +00002554/// ParseCXXNewExpression - Parse a C++ new-expression. New is used to allocate
2555/// memory in a typesafe manner and call constructors.
Mike Stump11289f42009-09-09 15:08:12 +00002556///
Chris Lattner109faf22009-01-04 21:25:24 +00002557/// This method is called to parse the new expression after the optional :: has
2558/// been already parsed. If the :: was present, "UseGlobal" is true and "Start"
2559/// is its location. Otherwise, "Start" is the location of the 'new' token.
Sebastian Redlbd150f42008-11-21 19:14:01 +00002560///
2561/// new-expression:
2562/// '::'[opt] 'new' new-placement[opt] new-type-id
2563/// new-initializer[opt]
2564/// '::'[opt] 'new' new-placement[opt] '(' type-id ')'
2565/// new-initializer[opt]
2566///
2567/// new-placement:
2568/// '(' expression-list ')'
2569///
Sebastian Redl351bb782008-12-02 14:43:59 +00002570/// new-type-id:
2571/// type-specifier-seq new-declarator[opt]
Douglas Gregora3a020a2011-04-15 19:40:02 +00002572/// [GNU] attributes type-specifier-seq new-declarator[opt]
Sebastian Redl351bb782008-12-02 14:43:59 +00002573///
2574/// new-declarator:
2575/// ptr-operator new-declarator[opt]
2576/// direct-new-declarator
2577///
Sebastian Redlbd150f42008-11-21 19:14:01 +00002578/// new-initializer:
2579/// '(' expression-list[opt] ')'
Sebastian Redl3da34892011-06-05 12:23:16 +00002580/// [C++0x] braced-init-list
Sebastian Redlbd150f42008-11-21 19:14:01 +00002581///
John McCalldadc5752010-08-24 06:29:42 +00002582ExprResult
Chris Lattner109faf22009-01-04 21:25:24 +00002583Parser::ParseCXXNewExpression(bool UseGlobal, SourceLocation Start) {
2584 assert(Tok.is(tok::kw_new) && "expected 'new' token");
2585 ConsumeToken(); // Consume 'new'
Sebastian Redlbd150f42008-11-21 19:14:01 +00002586
2587 // A '(' now can be a new-placement or the '(' wrapping the type-id in the
2588 // second form of new-expression. It can't be a new-type-id.
2589
Benjamin Kramerf0623432012-08-23 22:51:59 +00002590 ExprVector PlacementArgs;
Sebastian Redlbd150f42008-11-21 19:14:01 +00002591 SourceLocation PlacementLParen, PlacementRParen;
2592
Douglas Gregorf2753b32010-07-13 15:54:32 +00002593 SourceRange TypeIdParens;
John McCall084e83d2011-03-24 11:26:52 +00002594 DeclSpec DS(AttrFactory);
Argyrios Kyrtzidis3ff13572011-06-28 03:01:23 +00002595 Declarator DeclaratorInfo(DS, Declarator::CXXNewContext);
Sebastian Redlbd150f42008-11-21 19:14:01 +00002596 if (Tok.is(tok::l_paren)) {
2597 // If it turns out to be a placement, we change the type location.
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00002598 BalancedDelimiterTracker T(*this, tok::l_paren);
2599 T.consumeOpen();
2600 PlacementLParen = T.getOpenLocation();
Sebastian Redl351bb782008-12-02 14:43:59 +00002601 if (ParseExpressionListOrTypeId(PlacementArgs, DeclaratorInfo)) {
Alexey Bataevee6507d2013-11-18 08:17:37 +00002602 SkipUntil(tok::semi, StopAtSemi | StopBeforeMatch);
Sebastian Redld65cea82008-12-11 22:51:44 +00002603 return ExprError();
Sebastian Redl351bb782008-12-02 14:43:59 +00002604 }
Sebastian Redlbd150f42008-11-21 19:14:01 +00002605
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00002606 T.consumeClose();
2607 PlacementRParen = T.getCloseLocation();
Sebastian Redl351bb782008-12-02 14:43:59 +00002608 if (PlacementRParen.isInvalid()) {
Alexey Bataevee6507d2013-11-18 08:17:37 +00002609 SkipUntil(tok::semi, StopAtSemi | StopBeforeMatch);
Sebastian Redld65cea82008-12-11 22:51:44 +00002610 return ExprError();
Sebastian Redl351bb782008-12-02 14:43:59 +00002611 }
Sebastian Redlbd150f42008-11-21 19:14:01 +00002612
Sebastian Redl351bb782008-12-02 14:43:59 +00002613 if (PlacementArgs.empty()) {
Sebastian Redlbd150f42008-11-21 19:14:01 +00002614 // Reset the placement locations. There was no placement.
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00002615 TypeIdParens = T.getRange();
Sebastian Redlbd150f42008-11-21 19:14:01 +00002616 PlacementLParen = PlacementRParen = SourceLocation();
Sebastian Redlbd150f42008-11-21 19:14:01 +00002617 } else {
2618 // We still need the type.
2619 if (Tok.is(tok::l_paren)) {
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00002620 BalancedDelimiterTracker T(*this, tok::l_paren);
2621 T.consumeOpen();
Douglas Gregora3a020a2011-04-15 19:40:02 +00002622 MaybeParseGNUAttributes(DeclaratorInfo);
Sebastian Redl351bb782008-12-02 14:43:59 +00002623 ParseSpecifierQualifierList(DS);
Sebastian Redlf6591ca2009-02-09 18:23:29 +00002624 DeclaratorInfo.SetSourceRange(DS.getSourceRange());
Sebastian Redl351bb782008-12-02 14:43:59 +00002625 ParseDeclarator(DeclaratorInfo);
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00002626 T.consumeClose();
2627 TypeIdParens = T.getRange();
Sebastian Redlbd150f42008-11-21 19:14:01 +00002628 } else {
Douglas Gregora3a020a2011-04-15 19:40:02 +00002629 MaybeParseGNUAttributes(DeclaratorInfo);
Sebastian Redl351bb782008-12-02 14:43:59 +00002630 if (ParseCXXTypeSpecifierSeq(DS))
2631 DeclaratorInfo.setInvalidType(true);
Sebastian Redlf6591ca2009-02-09 18:23:29 +00002632 else {
2633 DeclaratorInfo.SetSourceRange(DS.getSourceRange());
Sebastian Redl351bb782008-12-02 14:43:59 +00002634 ParseDeclaratorInternal(DeclaratorInfo,
2635 &Parser::ParseDirectNewDeclarator);
Sebastian Redlf6591ca2009-02-09 18:23:29 +00002636 }
Sebastian Redlbd150f42008-11-21 19:14:01 +00002637 }
Sebastian Redlbd150f42008-11-21 19:14:01 +00002638 }
2639 } else {
Sebastian Redl351bb782008-12-02 14:43:59 +00002640 // A new-type-id is a simplified type-id, where essentially the
2641 // direct-declarator is replaced by a direct-new-declarator.
Douglas Gregora3a020a2011-04-15 19:40:02 +00002642 MaybeParseGNUAttributes(DeclaratorInfo);
Sebastian Redl351bb782008-12-02 14:43:59 +00002643 if (ParseCXXTypeSpecifierSeq(DS))
2644 DeclaratorInfo.setInvalidType(true);
Sebastian Redlf6591ca2009-02-09 18:23:29 +00002645 else {
2646 DeclaratorInfo.SetSourceRange(DS.getSourceRange());
Sebastian Redl351bb782008-12-02 14:43:59 +00002647 ParseDeclaratorInternal(DeclaratorInfo,
2648 &Parser::ParseDirectNewDeclarator);
Sebastian Redlf6591ca2009-02-09 18:23:29 +00002649 }
Sebastian Redlbd150f42008-11-21 19:14:01 +00002650 }
Chris Lattnerf6d1c9c2009-04-25 08:06:05 +00002651 if (DeclaratorInfo.isInvalidType()) {
Alexey Bataevee6507d2013-11-18 08:17:37 +00002652 SkipUntil(tok::semi, StopAtSemi | StopBeforeMatch);
Sebastian Redld65cea82008-12-11 22:51:44 +00002653 return ExprError();
Sebastian Redl351bb782008-12-02 14:43:59 +00002654 }
Sebastian Redlbd150f42008-11-21 19:14:01 +00002655
Sebastian Redl6047f072012-02-16 12:22:20 +00002656 ExprResult Initializer;
Sebastian Redlbd150f42008-11-21 19:14:01 +00002657
2658 if (Tok.is(tok::l_paren)) {
Sebastian Redl6047f072012-02-16 12:22:20 +00002659 SourceLocation ConstructorLParen, ConstructorRParen;
Benjamin Kramerf0623432012-08-23 22:51:59 +00002660 ExprVector ConstructorArgs;
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00002661 BalancedDelimiterTracker T(*this, tok::l_paren);
2662 T.consumeOpen();
2663 ConstructorLParen = T.getOpenLocation();
Sebastian Redlbd150f42008-11-21 19:14:01 +00002664 if (Tok.isNot(tok::r_paren)) {
2665 CommaLocsTy CommaLocs;
Sebastian Redl351bb782008-12-02 14:43:59 +00002666 if (ParseExpressionList(ConstructorArgs, CommaLocs)) {
Alexey Bataevee6507d2013-11-18 08:17:37 +00002667 SkipUntil(tok::semi, StopAtSemi | StopBeforeMatch);
Sebastian Redld65cea82008-12-11 22:51:44 +00002668 return ExprError();
Sebastian Redl351bb782008-12-02 14:43:59 +00002669 }
Sebastian Redlbd150f42008-11-21 19:14:01 +00002670 }
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00002671 T.consumeClose();
2672 ConstructorRParen = T.getCloseLocation();
Sebastian Redl351bb782008-12-02 14:43:59 +00002673 if (ConstructorRParen.isInvalid()) {
Alexey Bataevee6507d2013-11-18 08:17:37 +00002674 SkipUntil(tok::semi, StopAtSemi | StopBeforeMatch);
Sebastian Redld65cea82008-12-11 22:51:44 +00002675 return ExprError();
Sebastian Redl351bb782008-12-02 14:43:59 +00002676 }
Sebastian Redl6047f072012-02-16 12:22:20 +00002677 Initializer = Actions.ActOnParenListExpr(ConstructorLParen,
2678 ConstructorRParen,
Benjamin Kramer62b95d82012-08-23 21:35:17 +00002679 ConstructorArgs);
Richard Smith2bf7fdb2013-01-02 11:42:31 +00002680 } else if (Tok.is(tok::l_brace) && getLangOpts().CPlusPlus11) {
Richard Smith5d164bc2011-10-15 05:09:34 +00002681 Diag(Tok.getLocation(),
2682 diag::warn_cxx98_compat_generalized_initializer_lists);
Sebastian Redl6047f072012-02-16 12:22:20 +00002683 Initializer = ParseBraceInitializer();
Sebastian Redlbd150f42008-11-21 19:14:01 +00002684 }
Sebastian Redl6047f072012-02-16 12:22:20 +00002685 if (Initializer.isInvalid())
2686 return Initializer;
Sebastian Redlbd150f42008-11-21 19:14:01 +00002687
Sebastian Redl6d4256c2009-03-15 17:47:39 +00002688 return Actions.ActOnCXXNew(Start, UseGlobal, PlacementLParen,
Benjamin Kramer62b95d82012-08-23 21:35:17 +00002689 PlacementArgs, PlacementRParen,
Nikola Smiljanic01a75982014-05-29 10:55:11 +00002690 TypeIdParens, DeclaratorInfo, Initializer.get());
Sebastian Redlbd150f42008-11-21 19:14:01 +00002691}
2692
Sebastian Redlbd150f42008-11-21 19:14:01 +00002693/// ParseDirectNewDeclarator - Parses a direct-new-declarator. Intended to be
2694/// passed to ParseDeclaratorInternal.
2695///
2696/// direct-new-declarator:
2697/// '[' expression ']'
2698/// direct-new-declarator '[' constant-expression ']'
2699///
Chris Lattner109faf22009-01-04 21:25:24 +00002700void Parser::ParseDirectNewDeclarator(Declarator &D) {
Sebastian Redlbd150f42008-11-21 19:14:01 +00002701 // Parse the array dimensions.
2702 bool first = true;
2703 while (Tok.is(tok::l_square)) {
Richard Smith7bdcc4a2012-04-10 01:32:12 +00002704 // An array-size expression can't start with a lambda.
2705 if (CheckProhibitedCXX11Attribute())
2706 continue;
2707
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00002708 BalancedDelimiterTracker T(*this, tok::l_square);
2709 T.consumeOpen();
2710
John McCalldadc5752010-08-24 06:29:42 +00002711 ExprResult Size(first ? ParseExpression()
Sebastian Redl59b5e512008-12-11 21:36:32 +00002712 : ParseConstantExpression());
Sebastian Redl17f2c7d2008-12-09 13:15:23 +00002713 if (Size.isInvalid()) {
Sebastian Redlbd150f42008-11-21 19:14:01 +00002714 // Recover
Alexey Bataevee6507d2013-11-18 08:17:37 +00002715 SkipUntil(tok::r_square, StopAtSemi);
Sebastian Redlbd150f42008-11-21 19:14:01 +00002716 return;
2717 }
2718 first = false;
2719
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00002720 T.consumeClose();
John McCall084e83d2011-03-24 11:26:52 +00002721
Bill Wendling44426052012-12-20 19:22:21 +00002722 // Attributes here appertain to the array type. C++11 [expr.new]p5.
Richard Smith7bdcc4a2012-04-10 01:32:12 +00002723 ParsedAttributes Attrs(AttrFactory);
Richard Smith89645bc2013-01-02 12:01:23 +00002724 MaybeParseCXX11Attributes(Attrs);
Richard Smith7bdcc4a2012-04-10 01:32:12 +00002725
John McCall084e83d2011-03-24 11:26:52 +00002726 D.AddTypeInfo(DeclaratorChunk::getArray(0,
John McCall53fa7142010-12-24 02:08:15 +00002727 /*static=*/false, /*star=*/false,
Nikola Smiljanic01a75982014-05-29 10:55:11 +00002728 Size.get(),
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00002729 T.getOpenLocation(),
2730 T.getCloseLocation()),
Richard Smith7bdcc4a2012-04-10 01:32:12 +00002731 Attrs, T.getCloseLocation());
Sebastian Redlbd150f42008-11-21 19:14:01 +00002732
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00002733 if (T.getCloseLocation().isInvalid())
Sebastian Redlbd150f42008-11-21 19:14:01 +00002734 return;
2735 }
2736}
2737
2738/// ParseExpressionListOrTypeId - Parse either an expression-list or a type-id.
2739/// This ambiguity appears in the syntax of the C++ new operator.
2740///
2741/// new-expression:
2742/// '::'[opt] 'new' new-placement[opt] '(' type-id ')'
2743/// new-initializer[opt]
2744///
2745/// new-placement:
2746/// '(' expression-list ')'
2747///
John McCall37ad5512010-08-23 06:44:23 +00002748bool Parser::ParseExpressionListOrTypeId(
Chris Lattner0e62c1c2011-07-23 10:55:15 +00002749 SmallVectorImpl<Expr*> &PlacementArgs,
Chris Lattner109faf22009-01-04 21:25:24 +00002750 Declarator &D) {
Sebastian Redlbd150f42008-11-21 19:14:01 +00002751 // The '(' was already consumed.
2752 if (isTypeIdInParens()) {
Sebastian Redl351bb782008-12-02 14:43:59 +00002753 ParseSpecifierQualifierList(D.getMutableDeclSpec());
Sebastian Redlf6591ca2009-02-09 18:23:29 +00002754 D.SetSourceRange(D.getDeclSpec().getSourceRange());
Sebastian Redl351bb782008-12-02 14:43:59 +00002755 ParseDeclarator(D);
Chris Lattnerf6d1c9c2009-04-25 08:06:05 +00002756 return D.isInvalidType();
Sebastian Redlbd150f42008-11-21 19:14:01 +00002757 }
2758
2759 // It's not a type, it has to be an expression list.
2760 // Discard the comma locations - ActOnCXXNew has enough parameters.
2761 CommaLocsTy CommaLocs;
2762 return ParseExpressionList(PlacementArgs, CommaLocs);
2763}
2764
2765/// ParseCXXDeleteExpression - Parse a C++ delete-expression. Delete is used
2766/// to free memory allocated by new.
2767///
Chris Lattner109faf22009-01-04 21:25:24 +00002768/// This method is called to parse the 'delete' expression after the optional
2769/// '::' has been already parsed. If the '::' was present, "UseGlobal" is true
2770/// and "Start" is its location. Otherwise, "Start" is the location of the
2771/// 'delete' token.
2772///
Sebastian Redlbd150f42008-11-21 19:14:01 +00002773/// delete-expression:
2774/// '::'[opt] 'delete' cast-expression
2775/// '::'[opt] 'delete' '[' ']' cast-expression
John McCalldadc5752010-08-24 06:29:42 +00002776ExprResult
Chris Lattner109faf22009-01-04 21:25:24 +00002777Parser::ParseCXXDeleteExpression(bool UseGlobal, SourceLocation Start) {
2778 assert(Tok.is(tok::kw_delete) && "Expected 'delete' keyword");
2779 ConsumeToken(); // Consume 'delete'
Sebastian Redlbd150f42008-11-21 19:14:01 +00002780
2781 // Array delete?
2782 bool ArrayDelete = false;
Richard Smith7bdcc4a2012-04-10 01:32:12 +00002783 if (Tok.is(tok::l_square) && NextToken().is(tok::r_square)) {
Richard Smith10c60722012-08-09 19:01:51 +00002784 // C++11 [expr.delete]p1:
2785 // Whenever the delete keyword is followed by empty square brackets, it
2786 // shall be interpreted as [array delete].
2787 // [Footnote: A lambda expression with a lambda-introducer that consists
2788 // of empty square brackets can follow the delete keyword if
2789 // the lambda expression is enclosed in parentheses.]
2790 // FIXME: Produce a better diagnostic if the '[]' is unambiguously a
2791 // lambda-introducer.
Sebastian Redlbd150f42008-11-21 19:14:01 +00002792 ArrayDelete = true;
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00002793 BalancedDelimiterTracker T(*this, tok::l_square);
2794
2795 T.consumeOpen();
2796 T.consumeClose();
2797 if (T.getCloseLocation().isInvalid())
Sebastian Redld65cea82008-12-11 22:51:44 +00002798 return ExprError();
Sebastian Redlbd150f42008-11-21 19:14:01 +00002799 }
2800
John McCalldadc5752010-08-24 06:29:42 +00002801 ExprResult Operand(ParseCastExpression(false));
Sebastian Redl17f2c7d2008-12-09 13:15:23 +00002802 if (Operand.isInvalid())
Benjamin Kramer62b95d82012-08-23 21:35:17 +00002803 return Operand;
Sebastian Redlbd150f42008-11-21 19:14:01 +00002804
Nikola Smiljanic01a75982014-05-29 10:55:11 +00002805 return Actions.ActOnCXXDelete(Start, UseGlobal, ArrayDelete, Operand.get());
Sebastian Redlbd150f42008-11-21 19:14:01 +00002806}
Sebastian Redlbaad4e72009-01-05 20:52:13 +00002807
Douglas Gregor29c42f22012-02-24 07:38:34 +00002808static TypeTrait TypeTraitFromTokKind(tok::TokenKind kind) {
2809 switch (kind) {
2810 default: llvm_unreachable("Not a known type trait");
Alp Toker95e7ff22014-01-01 05:57:51 +00002811#define TYPE_TRAIT_1(Spelling, Name, Key) \
2812case tok::kw_ ## Spelling: return UTT_ ## Name;
Alp Tokercbb90342013-12-13 20:49:58 +00002813#define TYPE_TRAIT_2(Spelling, Name, Key) \
2814case tok::kw_ ## Spelling: return BTT_ ## Name;
2815#include "clang/Basic/TokenKinds.def"
Alp Toker40f9b1c2013-12-12 21:23:03 +00002816#define TYPE_TRAIT_N(Spelling, Name, Key) \
2817 case tok::kw_ ## Spelling: return TT_ ## Name;
2818#include "clang/Basic/TokenKinds.def"
Douglas Gregor29c42f22012-02-24 07:38:34 +00002819 }
2820}
2821
John Wiegley6242b6a2011-04-28 00:16:57 +00002822static ArrayTypeTrait ArrayTypeTraitFromTokKind(tok::TokenKind kind) {
2823 switch(kind) {
2824 default: llvm_unreachable("Not a known binary type trait");
2825 case tok::kw___array_rank: return ATT_ArrayRank;
2826 case tok::kw___array_extent: return ATT_ArrayExtent;
2827 }
2828}
2829
John Wiegleyf9f65842011-04-25 06:54:41 +00002830static ExpressionTrait ExpressionTraitFromTokKind(tok::TokenKind kind) {
2831 switch(kind) {
David Blaikie83d382b2011-09-23 05:06:16 +00002832 default: llvm_unreachable("Not a known unary expression trait.");
John Wiegleyf9f65842011-04-25 06:54:41 +00002833 case tok::kw___is_lvalue_expr: return ET_IsLValueExpr;
2834 case tok::kw___is_rvalue_expr: return ET_IsRValueExpr;
2835 }
2836}
2837
Alp Toker40f9b1c2013-12-12 21:23:03 +00002838static unsigned TypeTraitArity(tok::TokenKind kind) {
2839 switch (kind) {
2840 default: llvm_unreachable("Not a known type trait");
2841#define TYPE_TRAIT(N,Spelling,K) case tok::kw_##Spelling: return N;
2842#include "clang/Basic/TokenKinds.def"
Francois Pichet9dfa3ce2010-12-07 00:08:36 +00002843 }
Francois Pichet9dfa3ce2010-12-07 00:08:36 +00002844}
2845
Douglas Gregor29c42f22012-02-24 07:38:34 +00002846/// \brief Parse the built-in type-trait pseudo-functions that allow
2847/// implementation of the TR1/C++11 type traits templates.
2848///
2849/// primary-expression:
Alp Toker40f9b1c2013-12-12 21:23:03 +00002850/// unary-type-trait '(' type-id ')'
2851/// binary-type-trait '(' type-id ',' type-id ')'
Douglas Gregor29c42f22012-02-24 07:38:34 +00002852/// type-trait '(' type-id-seq ')'
2853///
2854/// type-id-seq:
2855/// type-id ...[opt] type-id-seq[opt]
2856///
2857ExprResult Parser::ParseTypeTrait() {
Alp Toker40f9b1c2013-12-12 21:23:03 +00002858 tok::TokenKind Kind = Tok.getKind();
2859 unsigned Arity = TypeTraitArity(Kind);
2860
Douglas Gregor29c42f22012-02-24 07:38:34 +00002861 SourceLocation Loc = ConsumeToken();
2862
2863 BalancedDelimiterTracker Parens(*this, tok::l_paren);
Alp Toker383d2c42014-01-01 03:08:43 +00002864 if (Parens.expectAndConsume())
Douglas Gregor29c42f22012-02-24 07:38:34 +00002865 return ExprError();
2866
Dmitri Gribenkof8579502013-01-12 19:30:44 +00002867 SmallVector<ParsedType, 2> Args;
Douglas Gregor29c42f22012-02-24 07:38:34 +00002868 do {
2869 // Parse the next type.
2870 TypeResult Ty = ParseTypeName();
2871 if (Ty.isInvalid()) {
2872 Parens.skipToEnd();
2873 return ExprError();
2874 }
2875
2876 // Parse the ellipsis, if present.
2877 if (Tok.is(tok::ellipsis)) {
2878 Ty = Actions.ActOnPackExpansion(Ty.get(), ConsumeToken());
2879 if (Ty.isInvalid()) {
2880 Parens.skipToEnd();
2881 return ExprError();
2882 }
2883 }
2884
2885 // Add this type to the list of arguments.
2886 Args.push_back(Ty.get());
Alp Tokera3ebe6e2013-12-17 14:12:37 +00002887 } while (TryConsumeToken(tok::comma));
2888
Douglas Gregor29c42f22012-02-24 07:38:34 +00002889 if (Parens.consumeClose())
2890 return ExprError();
Alp Toker40f9b1c2013-12-12 21:23:03 +00002891
2892 SourceLocation EndLoc = Parens.getCloseLocation();
2893
2894 if (Arity && Args.size() != Arity) {
2895 Diag(EndLoc, diag::err_type_trait_arity)
2896 << Arity << 0 << (Arity > 1) << (int)Args.size() << SourceRange(Loc);
2897 return ExprError();
2898 }
2899
2900 if (!Arity && Args.empty()) {
2901 Diag(EndLoc, diag::err_type_trait_arity)
2902 << 1 << 1 << 1 << (int)Args.size() << SourceRange(Loc);
2903 return ExprError();
2904 }
2905
Alp Toker88f64e62013-12-13 21:19:30 +00002906 return Actions.ActOnTypeTrait(TypeTraitFromTokKind(Kind), Loc, Args, EndLoc);
Douglas Gregor29c42f22012-02-24 07:38:34 +00002907}
2908
John Wiegley6242b6a2011-04-28 00:16:57 +00002909/// ParseArrayTypeTrait - Parse the built-in array type-trait
2910/// pseudo-functions.
2911///
2912/// primary-expression:
2913/// [Embarcadero] '__array_rank' '(' type-id ')'
2914/// [Embarcadero] '__array_extent' '(' type-id ',' expression ')'
2915///
2916ExprResult Parser::ParseArrayTypeTrait() {
2917 ArrayTypeTrait ATT = ArrayTypeTraitFromTokKind(Tok.getKind());
2918 SourceLocation Loc = ConsumeToken();
2919
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00002920 BalancedDelimiterTracker T(*this, tok::l_paren);
Alp Toker383d2c42014-01-01 03:08:43 +00002921 if (T.expectAndConsume())
John Wiegley6242b6a2011-04-28 00:16:57 +00002922 return ExprError();
2923
2924 TypeResult Ty = ParseTypeName();
2925 if (Ty.isInvalid()) {
Alexey Bataevee6507d2013-11-18 08:17:37 +00002926 SkipUntil(tok::comma, StopAtSemi);
2927 SkipUntil(tok::r_paren, StopAtSemi);
John Wiegley6242b6a2011-04-28 00:16:57 +00002928 return ExprError();
2929 }
2930
2931 switch (ATT) {
2932 case ATT_ArrayRank: {
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00002933 T.consumeClose();
Craig Topper161e4db2014-05-21 06:02:52 +00002934 return Actions.ActOnArrayTypeTrait(ATT, Loc, Ty.get(), nullptr,
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00002935 T.getCloseLocation());
John Wiegley6242b6a2011-04-28 00:16:57 +00002936 }
2937 case ATT_ArrayExtent: {
Alp Toker383d2c42014-01-01 03:08:43 +00002938 if (ExpectAndConsume(tok::comma)) {
Alexey Bataevee6507d2013-11-18 08:17:37 +00002939 SkipUntil(tok::r_paren, StopAtSemi);
John Wiegley6242b6a2011-04-28 00:16:57 +00002940 return ExprError();
2941 }
2942
2943 ExprResult DimExpr = ParseExpression();
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00002944 T.consumeClose();
John Wiegley6242b6a2011-04-28 00:16:57 +00002945
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00002946 return Actions.ActOnArrayTypeTrait(ATT, Loc, Ty.get(), DimExpr.get(),
2947 T.getCloseLocation());
John Wiegley6242b6a2011-04-28 00:16:57 +00002948 }
John Wiegley6242b6a2011-04-28 00:16:57 +00002949 }
David Blaikiee4d798f2012-01-20 21:50:17 +00002950 llvm_unreachable("Invalid ArrayTypeTrait!");
John Wiegley6242b6a2011-04-28 00:16:57 +00002951}
2952
John Wiegleyf9f65842011-04-25 06:54:41 +00002953/// ParseExpressionTrait - Parse built-in expression-trait
2954/// pseudo-functions like __is_lvalue_expr( xxx ).
2955///
2956/// primary-expression:
2957/// [Embarcadero] expression-trait '(' expression ')'
2958///
2959ExprResult Parser::ParseExpressionTrait() {
2960 ExpressionTrait ET = ExpressionTraitFromTokKind(Tok.getKind());
2961 SourceLocation Loc = ConsumeToken();
2962
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00002963 BalancedDelimiterTracker T(*this, tok::l_paren);
Alp Toker383d2c42014-01-01 03:08:43 +00002964 if (T.expectAndConsume())
John Wiegleyf9f65842011-04-25 06:54:41 +00002965 return ExprError();
2966
2967 ExprResult Expr = ParseExpression();
2968
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00002969 T.consumeClose();
John Wiegleyf9f65842011-04-25 06:54:41 +00002970
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00002971 return Actions.ActOnExpressionTrait(ET, Loc, Expr.get(),
2972 T.getCloseLocation());
John Wiegleyf9f65842011-04-25 06:54:41 +00002973}
2974
2975
Argyrios Kyrtzidis12179bc2009-05-22 10:24:42 +00002976/// ParseCXXAmbiguousParenExpression - We have parsed the left paren of a
2977/// parenthesized ambiguous type-id. This uses tentative parsing to disambiguate
2978/// based on the context past the parens.
John McCalldadc5752010-08-24 06:29:42 +00002979ExprResult
Argyrios Kyrtzidis12179bc2009-05-22 10:24:42 +00002980Parser::ParseCXXAmbiguousParenExpression(ParenParseOption &ExprType,
John McCallba7bf592010-08-24 05:47:05 +00002981 ParsedType &CastTy,
Richard Smith87e11a42014-05-15 02:43:47 +00002982 BalancedDelimiterTracker &Tracker,
2983 ColonProtectionRAIIObject &ColonProt) {
David Blaikiebbafb8a2012-03-11 07:00:24 +00002984 assert(getLangOpts().CPlusPlus && "Should only be called for C++!");
Argyrios Kyrtzidis12179bc2009-05-22 10:24:42 +00002985 assert(ExprType == CastExpr && "Compound literals are not ambiguous!");
2986 assert(isTypeIdInParens() && "Not a type-id!");
2987
John McCalldadc5752010-08-24 06:29:42 +00002988 ExprResult Result(true);
John McCallba7bf592010-08-24 05:47:05 +00002989 CastTy = ParsedType();
Argyrios Kyrtzidis12179bc2009-05-22 10:24:42 +00002990
2991 // We need to disambiguate a very ugly part of the C++ syntax:
2992 //
2993 // (T())x; - type-id
2994 // (T())*x; - type-id
2995 // (T())/x; - expression
2996 // (T()); - expression
2997 //
2998 // The bad news is that we cannot use the specialized tentative parser, since
2999 // it can only verify that the thing inside the parens can be parsed as
3000 // type-id, it is not useful for determining the context past the parens.
3001 //
3002 // The good news is that the parser can disambiguate this part without
Argyrios Kyrtzidis24ad6922009-05-22 15:12:46 +00003003 // making any unnecessary Action calls.
Argyrios Kyrtzidisf73f2d22009-05-22 21:09:47 +00003004 //
3005 // It uses a scheme similar to parsing inline methods. The parenthesized
3006 // tokens are cached, the context that follows is determined (possibly by
3007 // parsing a cast-expression), and then we re-introduce the cached tokens
3008 // into the token stream and parse them appropriately.
Argyrios Kyrtzidis12179bc2009-05-22 10:24:42 +00003009
Mike Stump11289f42009-09-09 15:08:12 +00003010 ParenParseOption ParseAs;
Argyrios Kyrtzidisf73f2d22009-05-22 21:09:47 +00003011 CachedTokens Toks;
Argyrios Kyrtzidis12179bc2009-05-22 10:24:42 +00003012
Argyrios Kyrtzidisf73f2d22009-05-22 21:09:47 +00003013 // Store the tokens of the parentheses. We will parse them after we determine
3014 // the context that follows them.
Argyrios Kyrtzidis8d7bdba2010-04-23 21:20:12 +00003015 if (!ConsumeAndStoreUntil(tok::r_paren, Toks)) {
Argyrios Kyrtzidisf73f2d22009-05-22 21:09:47 +00003016 // We didn't find the ')' we expected.
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00003017 Tracker.consumeClose();
Argyrios Kyrtzidis12179bc2009-05-22 10:24:42 +00003018 return ExprError();
3019 }
3020
Argyrios Kyrtzidis12179bc2009-05-22 10:24:42 +00003021 if (Tok.is(tok::l_brace)) {
Argyrios Kyrtzidisf73f2d22009-05-22 21:09:47 +00003022 ParseAs = CompoundLiteral;
3023 } else {
3024 bool NotCastExpr;
Eli Friedmancf7530f2009-05-25 19:41:42 +00003025 if (Tok.is(tok::l_paren) && NextToken().is(tok::r_paren)) {
3026 NotCastExpr = true;
3027 } else {
3028 // Try parsing the cast-expression that may follow.
3029 // If it is not a cast-expression, NotCastExpr will be true and no token
3030 // will be consumed.
Richard Smith87e11a42014-05-15 02:43:47 +00003031 ColonProt.restore();
Eli Friedmancf7530f2009-05-25 19:41:42 +00003032 Result = ParseCastExpression(false/*isUnaryExpression*/,
3033 false/*isAddressofOperand*/,
John McCallba7bf592010-08-24 05:47:05 +00003034 NotCastExpr,
Argyrios Kyrtzidis7192a3b2011-07-01 22:22:59 +00003035 // type-id has priority.
Kaelyn Uhrain77e21fc2012-01-25 20:49:08 +00003036 IsTypeCast);
Eli Friedmancf7530f2009-05-25 19:41:42 +00003037 }
Argyrios Kyrtzidisf73f2d22009-05-22 21:09:47 +00003038
3039 // If we parsed a cast-expression, it's really a type-id, otherwise it's
3040 // an expression.
3041 ParseAs = NotCastExpr ? SimpleExpr : CastExpr;
Argyrios Kyrtzidis12179bc2009-05-22 10:24:42 +00003042 }
3043
Mike Stump11289f42009-09-09 15:08:12 +00003044 // The current token should go after the cached tokens.
Argyrios Kyrtzidisf73f2d22009-05-22 21:09:47 +00003045 Toks.push_back(Tok);
3046 // Re-enter the stored parenthesized tokens into the token stream, so we may
3047 // parse them now.
3048 PP.EnterTokenStream(Toks.data(), Toks.size(),
3049 true/*DisableMacroExpansion*/, false/*OwnsTokens*/);
3050 // Drop the current token and bring the first cached one. It's the same token
3051 // as when we entered this function.
3052 ConsumeAnyToken();
Argyrios Kyrtzidis12179bc2009-05-22 10:24:42 +00003053
Argyrios Kyrtzidisf73f2d22009-05-22 21:09:47 +00003054 if (ParseAs >= CompoundLiteral) {
Argyrios Kyrtzidis7192a3b2011-07-01 22:22:59 +00003055 // Parse the type declarator.
3056 DeclSpec DS(AttrFactory);
Argyrios Kyrtzidis7192a3b2011-07-01 22:22:59 +00003057 Declarator DeclaratorInfo(DS, Declarator::TypeNameContext);
Richard Smith87e11a42014-05-15 02:43:47 +00003058 {
3059 ColonProtectionRAIIObject InnerColonProtection(*this);
3060 ParseSpecifierQualifierList(DS);
3061 ParseDeclarator(DeclaratorInfo);
3062 }
Argyrios Kyrtzidis12179bc2009-05-22 10:24:42 +00003063
Argyrios Kyrtzidisf73f2d22009-05-22 21:09:47 +00003064 // Match the ')'.
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00003065 Tracker.consumeClose();
Richard Smith87e11a42014-05-15 02:43:47 +00003066 ColonProt.restore();
Argyrios Kyrtzidis12179bc2009-05-22 10:24:42 +00003067
Argyrios Kyrtzidisf73f2d22009-05-22 21:09:47 +00003068 if (ParseAs == CompoundLiteral) {
3069 ExprType = CompoundLiteral;
Richard Smithaba8b362014-05-15 02:51:15 +00003070 if (DeclaratorInfo.isInvalidType())
3071 return ExprError();
3072
3073 TypeResult Ty = Actions.ActOnTypeName(getCurScope(), DeclaratorInfo);
Richard Smith87e11a42014-05-15 02:43:47 +00003074 return ParseCompoundLiteralExpression(Ty.get(),
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00003075 Tracker.getOpenLocation(),
3076 Tracker.getCloseLocation());
Argyrios Kyrtzidisf73f2d22009-05-22 21:09:47 +00003077 }
Mike Stump11289f42009-09-09 15:08:12 +00003078
Argyrios Kyrtzidisf73f2d22009-05-22 21:09:47 +00003079 // We parsed '(' type-id ')' and the thing after it wasn't a '{'.
3080 assert(ParseAs == CastExpr);
3081
Argyrios Kyrtzidis7192a3b2011-07-01 22:22:59 +00003082 if (DeclaratorInfo.isInvalidType())
Argyrios Kyrtzidisf73f2d22009-05-22 21:09:47 +00003083 return ExprError();
3084
Argyrios Kyrtzidisf73f2d22009-05-22 21:09:47 +00003085 // Result is what ParseCastExpression returned earlier.
Argyrios Kyrtzidis12179bc2009-05-22 10:24:42 +00003086 if (!Result.isInvalid())
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00003087 Result = Actions.ActOnCastExpr(getCurScope(), Tracker.getOpenLocation(),
3088 DeclaratorInfo, CastTy,
Nikola Smiljanic01a75982014-05-29 10:55:11 +00003089 Tracker.getCloseLocation(), Result.get());
Benjamin Kramer62b95d82012-08-23 21:35:17 +00003090 return Result;
Argyrios Kyrtzidis12179bc2009-05-22 10:24:42 +00003091 }
Mike Stump11289f42009-09-09 15:08:12 +00003092
Argyrios Kyrtzidisf73f2d22009-05-22 21:09:47 +00003093 // Not a compound literal, and not followed by a cast-expression.
3094 assert(ParseAs == SimpleExpr);
Argyrios Kyrtzidis12179bc2009-05-22 10:24:42 +00003095
Argyrios Kyrtzidis12179bc2009-05-22 10:24:42 +00003096 ExprType = SimpleExpr;
Argyrios Kyrtzidisf73f2d22009-05-22 21:09:47 +00003097 Result = ParseExpression();
Argyrios Kyrtzidis12179bc2009-05-22 10:24:42 +00003098 if (!Result.isInvalid() && Tok.is(tok::r_paren))
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00003099 Result = Actions.ActOnParenExpr(Tracker.getOpenLocation(),
Nikola Smiljanic01a75982014-05-29 10:55:11 +00003100 Tok.getLocation(), Result.get());
Argyrios Kyrtzidis12179bc2009-05-22 10:24:42 +00003101
3102 // Match the ')'.
3103 if (Result.isInvalid()) {
Alexey Bataevee6507d2013-11-18 08:17:37 +00003104 SkipUntil(tok::r_paren, StopAtSemi);
Argyrios Kyrtzidis12179bc2009-05-22 10:24:42 +00003105 return ExprError();
3106 }
Mike Stump11289f42009-09-09 15:08:12 +00003107
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00003108 Tracker.consumeClose();
Benjamin Kramer62b95d82012-08-23 21:35:17 +00003109 return Result;
Argyrios Kyrtzidis12179bc2009-05-22 10:24:42 +00003110}