blob: f101d9f12739b55495a84f882ec767552b8256e5 [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 '::'.
David Majnemerec3f49d2014-12-29 23:24:27 +0000451 Diag(PP.getLocForEndOfToken(ConsumeToken()), diag::err_expected)
452 << tok::identifier;
David Majnemerf58efd92014-12-29 23:12:23 +0000453 UnconsumeToken(Identifier); // Stick the identifier back.
454 Next = NextToken(); // Point Next at the '{' token.
455 }
456
Chris Lattnere2355f72009-06-26 03:52:38 +0000457 if (Next.is(tok::coloncolon)) {
Douglas Gregor0d5b0a12010-02-24 21:29:12 +0000458 if (CheckForDestructor && GetLookAheadToken(2).is(tok::tilde) &&
Nico Weber61281fa2014-07-26 22:15:25 +0000459 !Actions.isNonTypeNestedNameSpecifier(
460 getCurScope(), SS, Tok.getLocation(), II, ObjectType)) {
Douglas Gregore610ada2010-02-24 18:44:31 +0000461 *MayBePseudoDestructor = true;
John McCall1f476a12010-02-26 08:45:28 +0000462 return false;
Douglas Gregore610ada2010-02-24 18:44:31 +0000463 }
464
Serge Pavlov6a7ffbe2014-04-13 16:52:03 +0000465 if (ColonIsSacred) {
466 const Token &Next2 = GetLookAheadToken(2);
467 if (Next2.is(tok::kw_private) || Next2.is(tok::kw_protected) ||
468 Next2.is(tok::kw_public) || Next2.is(tok::kw_virtual)) {
469 Diag(Next2, diag::err_unexpected_token_in_nested_name_spec)
470 << Next2.getName()
471 << FixItHint::CreateReplacement(Next.getLocation(), ":");
472 Token ColonColon;
473 PP.Lex(ColonColon);
474 ColonColon.setKind(tok::colon);
475 PP.EnterToken(ColonColon);
476 break;
477 }
478 }
479
Richard Smith7447af42013-03-26 01:15:19 +0000480 if (LastII)
481 *LastII = &II;
482
Chris Lattnere2355f72009-06-26 03:52:38 +0000483 // We have an identifier followed by a '::'. Lookup this name
484 // as the name in a nested-name-specifier.
Serge Pavlov6a7ffbe2014-04-13 16:52:03 +0000485 Token Identifier = Tok;
Chris Lattnere2355f72009-06-26 03:52:38 +0000486 SourceLocation IdLoc = ConsumeToken();
Chris Lattner1c428032009-12-07 01:36:53 +0000487 assert((Tok.is(tok::coloncolon) || Tok.is(tok::colon)) &&
488 "NextToken() not working properly!");
Serge Pavlov6a7ffbe2014-04-13 16:52:03 +0000489 Token ColonColon = Tok;
Chris Lattnere2355f72009-06-26 03:52:38 +0000490 SourceLocation CCLoc = ConsumeToken();
Mike Stump11289f42009-09-09 15:08:12 +0000491
Richard Trieu1f3ea7b2012-11-02 01:08:58 +0000492 CheckForLParenAfterColonColon();
493
Serge Pavlov6a7ffbe2014-04-13 16:52:03 +0000494 bool IsCorrectedToColon = false;
Craig Topper161e4db2014-05-21 06:02:52 +0000495 bool *CorrectionFlagPtr = ColonIsSacred ? &IsCorrectedToColon : nullptr;
Douglas Gregor90c99722011-02-24 00:17:56 +0000496 if (Actions.ActOnCXXNestedNameSpecifier(getCurScope(), II, IdLoc, CCLoc,
Serge Pavlov6a7ffbe2014-04-13 16:52:03 +0000497 ObjectType, EnteringContext, SS,
498 false, CorrectionFlagPtr)) {
499 // Identifier is not recognized as a nested name, but we can have
500 // mistyped '::' instead of ':'.
501 if (CorrectionFlagPtr && IsCorrectedToColon) {
502 ColonColon.setKind(tok::colon);
503 PP.EnterToken(Tok);
504 PP.EnterToken(ColonColon);
505 Tok = Identifier;
506 break;
507 }
Douglas Gregor90c99722011-02-24 00:17:56 +0000508 SS.SetInvalid(SourceRange(IdLoc, CCLoc));
Serge Pavlov6a7ffbe2014-04-13 16:52:03 +0000509 }
510 HasScopeSpecifier = true;
Chris Lattnere2355f72009-06-26 03:52:38 +0000511 continue;
512 }
Mike Stump11289f42009-09-09 15:08:12 +0000513
Richard Trieu01fc0012011-09-19 19:01:00 +0000514 CheckForTemplateAndDigraph(Next, ObjectType, EnteringContext, II, SS);
Richard Smith55858492011-04-14 21:45:45 +0000515
Chris Lattnere2355f72009-06-26 03:52:38 +0000516 // nested-name-specifier:
517 // type-name '<'
518 if (Next.is(tok::less)) {
519 TemplateTy Template;
Douglas Gregor3cf81312009-11-03 23:16:33 +0000520 UnqualifiedId TemplateName;
521 TemplateName.setIdentifier(&II, Tok.getLocation());
Douglas Gregor786123d2010-05-21 23:18:07 +0000522 bool MemberOfUnknownSpecialization;
Douglas Gregor0be31a22010-07-02 17:43:08 +0000523 if (TemplateNameKind TNK = Actions.isTemplateName(getCurScope(), SS,
Abramo Bagnara7c5dee42010-08-06 12:11:11 +0000524 /*hasTemplateKeyword=*/false,
Douglas Gregor3cf81312009-11-03 23:16:33 +0000525 TemplateName,
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000526 ObjectType,
Douglas Gregore861bac2009-08-25 22:51:20 +0000527 EnteringContext,
Douglas Gregor786123d2010-05-21 23:18:07 +0000528 Template,
529 MemberOfUnknownSpecialization)) {
David Blaikie8c045bc2011-11-07 03:30:03 +0000530 // We have found a template name, so annotate this token
Chris Lattnere2355f72009-06-26 03:52:38 +0000531 // with a template-id annotation. We do not permit the
532 // template-id to be translated into a type annotation,
533 // because some clients (e.g., the parsing of class template
534 // specializations) still want to see the original template-id
535 // token.
Douglas Gregor71395fa2009-11-04 00:56:37 +0000536 ConsumeToken();
Abramo Bagnara7945c982012-01-27 09:46:47 +0000537 if (AnnotateTemplateIdToken(Template, TNK, SS, SourceLocation(),
538 TemplateName, false))
John McCall1f476a12010-02-26 08:45:28 +0000539 return true;
Chris Lattnere2355f72009-06-26 03:52:38 +0000540 continue;
Larisse Voufo39a1e502013-08-06 01:03:05 +0000541 }
542
Douglas Gregor20c38a72010-05-21 23:43:39 +0000543 if (MemberOfUnknownSpecialization && (ObjectType || SS.isSet()) &&
Francois Pichet4e7a2c02011-03-27 19:41:34 +0000544 (IsTypename || IsTemplateArgumentList(1))) {
Douglas Gregor20c38a72010-05-21 23:43:39 +0000545 // We have something like t::getAs<T>, where getAs is a
546 // member of an unknown specialization. However, this will only
547 // parse correctly as a template, so suggest the keyword 'template'
548 // before 'getAs' and treat this as a dependent template name.
Francois Pichet4e7a2c02011-03-27 19:41:34 +0000549 unsigned DiagID = diag::err_missing_dependent_template_keyword;
David Blaikiebbafb8a2012-03-11 07:00:24 +0000550 if (getLangOpts().MicrosoftExt)
Francois Pichet93921652011-04-22 08:25:24 +0000551 DiagID = diag::warn_missing_dependent_template_keyword;
Francois Pichet4e7a2c02011-03-27 19:41:34 +0000552
553 Diag(Tok.getLocation(), DiagID)
Douglas Gregor20c38a72010-05-21 23:43:39 +0000554 << II.getName()
555 << FixItHint::CreateInsertion(Tok.getLocation(), "template ");
556
Douglas Gregorbb119652010-06-16 23:00:59 +0000557 if (TemplateNameKind TNK
Douglas Gregor0be31a22010-07-02 17:43:08 +0000558 = Actions.ActOnDependentTemplateName(getCurScope(),
Abramo Bagnara7945c982012-01-27 09:46:47 +0000559 SS, SourceLocation(),
Douglas Gregorbb119652010-06-16 23:00:59 +0000560 TemplateName, ObjectType,
561 EnteringContext, Template)) {
562 // Consume the identifier.
563 ConsumeToken();
Abramo Bagnara7945c982012-01-27 09:46:47 +0000564 if (AnnotateTemplateIdToken(Template, TNK, SS, SourceLocation(),
565 TemplateName, false))
566 return true;
Douglas Gregorbb119652010-06-16 23:00:59 +0000567 }
568 else
Douglas Gregor20c38a72010-05-21 23:43:39 +0000569 return true;
Douglas Gregorbb119652010-06-16 23:00:59 +0000570
Douglas Gregor20c38a72010-05-21 23:43:39 +0000571 continue;
Chris Lattnere2355f72009-06-26 03:52:38 +0000572 }
573 }
574
Douglas Gregor7f741122009-02-25 19:37:18 +0000575 // We don't have any tokens that form the beginning of a
576 // nested-name-specifier, so we're done.
577 break;
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +0000578 }
Mike Stump11289f42009-09-09 15:08:12 +0000579
Douglas Gregore610ada2010-02-24 18:44:31 +0000580 // Even if we didn't see any pieces of a nested-name-specifier, we
581 // still check whether there is a tilde in this position, which
582 // indicates a potential pseudo-destructor.
583 if (CheckForDestructor && Tok.is(tok::tilde))
584 *MayBePseudoDestructor = true;
585
John McCall1f476a12010-02-26 08:45:28 +0000586 return false;
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +0000587}
588
Kaelyn Takatab16e6322014-11-20 22:06:40 +0000589ExprResult Parser::tryParseCXXIdExpression(CXXScopeSpec &SS, bool isAddressOfOperand,
590 Token &Replacement) {
591 SourceLocation TemplateKWLoc;
592 UnqualifiedId Name;
593 if (ParseUnqualifiedId(SS,
594 /*EnteringContext=*/false,
595 /*AllowDestructorName=*/false,
596 /*AllowConstructorName=*/false,
597 /*ObjectType=*/ParsedType(), TemplateKWLoc, Name))
598 return ExprError();
599
600 // This is only the direct operand of an & operator if it is not
601 // followed by a postfix-expression suffix.
602 if (isAddressOfOperand && isPostfixExpressionSuffixStart())
603 isAddressOfOperand = false;
604
605 return Actions.ActOnIdExpression(getCurScope(), SS, TemplateKWLoc, Name,
606 Tok.is(tok::l_paren), isAddressOfOperand,
607 nullptr, /*IsInlineAsmIdentifier=*/false,
608 &Replacement);
609}
610
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +0000611/// ParseCXXIdExpression - Handle id-expression.
612///
613/// id-expression:
614/// unqualified-id
615/// qualified-id
616///
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +0000617/// qualified-id:
618/// '::'[opt] nested-name-specifier 'template'[opt] unqualified-id
619/// '::' identifier
620/// '::' operator-function-id
Douglas Gregora727cb92009-06-30 22:34:41 +0000621/// '::' template-id
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +0000622///
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +0000623/// NOTE: The standard specifies that, for qualified-id, the parser does not
624/// expect:
625///
626/// '::' conversion-function-id
627/// '::' '~' class-name
628///
629/// This may cause a slight inconsistency on diagnostics:
630///
631/// class C {};
632/// namespace A {}
633/// void f() {
634/// :: A :: ~ C(); // Some Sema error about using destructor with a
635/// // namespace.
636/// :: ~ C(); // Some Parser error like 'unexpected ~'.
637/// }
638///
639/// We simplify the parser a bit and make it work like:
640///
641/// qualified-id:
642/// '::'[opt] nested-name-specifier 'template'[opt] unqualified-id
643/// '::' unqualified-id
644///
645/// That way Sema can handle and report similar errors for namespaces and the
646/// global scope.
647///
Sebastian Redl3d3f75a2009-02-03 20:19:35 +0000648/// The isAddressOfOperand parameter indicates that this id-expression is a
649/// direct operand of the address-of operator. This is, besides member contexts,
650/// the only place where a qualified-id naming a non-static class member may
651/// appear.
652///
John McCalldadc5752010-08-24 06:29:42 +0000653ExprResult Parser::ParseCXXIdExpression(bool isAddressOfOperand) {
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +0000654 // qualified-id:
655 // '::'[opt] nested-name-specifier 'template'[opt] unqualified-id
656 // '::' unqualified-id
657 //
658 CXXScopeSpec SS;
Douglas Gregordf593fb2011-11-07 17:33:42 +0000659 ParseOptionalCXXScopeSpecifier(SS, ParsedType(), /*EnteringContext=*/false);
Abramo Bagnara7945c982012-01-27 09:46:47 +0000660
Kaelyn Takatab16e6322014-11-20 22:06:40 +0000661 Token Replacement;
662 ExprResult Result = tryParseCXXIdExpression(SS, isAddressOfOperand, Replacement);
663 if (Result.isUnset()) {
664 // If the ExprResult is valid but null, then typo correction suggested a
665 // keyword replacement that needs to be reparsed.
666 UnconsumeToken(Replacement);
667 Result = tryParseCXXIdExpression(SS, isAddressOfOperand, Replacement);
668 }
669 assert(!Result.isUnset() && "Typo correction suggested a keyword replacement "
670 "for a previous keyword suggestion");
671 return Result;
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +0000672}
673
Richard Smith21b3ab42013-05-09 21:36:41 +0000674/// ParseLambdaExpression - Parse a C++11 lambda expression.
Douglas Gregordb0b9f12011-08-04 15:30:47 +0000675///
676/// lambda-expression:
677/// lambda-introducer lambda-declarator[opt] compound-statement
678///
679/// lambda-introducer:
680/// '[' lambda-capture[opt] ']'
681///
682/// lambda-capture:
683/// capture-default
684/// capture-list
685/// capture-default ',' capture-list
686///
687/// capture-default:
688/// '&'
689/// '='
690///
691/// capture-list:
692/// capture
693/// capture-list ',' capture
694///
695/// capture:
Richard Smith21b3ab42013-05-09 21:36:41 +0000696/// simple-capture
697/// init-capture [C++1y]
698///
699/// simple-capture:
Douglas Gregordb0b9f12011-08-04 15:30:47 +0000700/// identifier
701/// '&' identifier
702/// 'this'
703///
Richard Smith21b3ab42013-05-09 21:36:41 +0000704/// init-capture: [C++1y]
705/// identifier initializer
706/// '&' identifier initializer
707///
Douglas Gregordb0b9f12011-08-04 15:30:47 +0000708/// lambda-declarator:
709/// '(' parameter-declaration-clause ')' attribute-specifier[opt]
710/// 'mutable'[opt] exception-specification[opt]
711/// trailing-return-type[opt]
712///
713ExprResult Parser::ParseLambdaExpression() {
714 // Parse lambda-introducer.
715 LambdaIntroducer Intro;
Faisal Vali5fb7c3c2013-12-05 01:40:41 +0000716 Optional<unsigned> DiagID = ParseLambdaIntroducer(Intro);
Douglas Gregordb0b9f12011-08-04 15:30:47 +0000717 if (DiagID) {
718 Diag(Tok, DiagID.getValue());
Alexey Bataevee6507d2013-11-18 08:17:37 +0000719 SkipUntil(tok::r_square, StopAtSemi);
720 SkipUntil(tok::l_brace, StopAtSemi);
721 SkipUntil(tok::r_brace, StopAtSemi);
Eli Friedmanc7c97142012-01-04 02:40:39 +0000722 return ExprError();
Douglas Gregordb0b9f12011-08-04 15:30:47 +0000723 }
724
725 return ParseLambdaExpressionAfterIntroducer(Intro);
726}
727
728/// TryParseLambdaExpression - Use lookahead and potentially tentative
729/// parsing to determine if we are looking at a C++0x lambda expression, and parse
730/// it if we are.
731///
732/// If we are not looking at a lambda expression, returns ExprError().
733ExprResult Parser::TryParseLambdaExpression() {
Richard Smith2bf7fdb2013-01-02 11:42:31 +0000734 assert(getLangOpts().CPlusPlus11
Douglas Gregordb0b9f12011-08-04 15:30:47 +0000735 && Tok.is(tok::l_square)
736 && "Not at the start of a possible lambda expression.");
737
738 const Token Next = NextToken(), After = GetLookAheadToken(2);
739
740 // If lookahead indicates this is a lambda...
741 if (Next.is(tok::r_square) || // []
742 Next.is(tok::equal) || // [=
743 (Next.is(tok::amp) && // [&] or [&,
744 (After.is(tok::r_square) ||
745 After.is(tok::comma))) ||
746 (Next.is(tok::identifier) && // [identifier]
747 After.is(tok::r_square))) {
748 return ParseLambdaExpression();
749 }
750
Eli Friedmanc7c97142012-01-04 02:40:39 +0000751 // If lookahead indicates an ObjC message send...
752 // [identifier identifier
Douglas Gregordb0b9f12011-08-04 15:30:47 +0000753 if (Next.is(tok::identifier) && After.is(tok::identifier)) {
Eli Friedmanc7c97142012-01-04 02:40:39 +0000754 return ExprEmpty();
Douglas Gregordb0b9f12011-08-04 15:30:47 +0000755 }
Faisal Vali5fb7c3c2013-12-05 01:40:41 +0000756
Eli Friedmanc7c97142012-01-04 02:40:39 +0000757 // Here, we're stuck: lambda introducers and Objective-C message sends are
758 // unambiguous, but it requires arbitrary lookhead. [a,b,c,d,e,f,g] is a
759 // lambda, and [a,b,c,d,e,f,g h] is a Objective-C message send. Instead of
760 // writing two routines to parse a lambda introducer, just try to parse
761 // a lambda introducer first, and fall back if that fails.
762 // (TryParseLambdaIntroducer never produces any diagnostic output.)
Douglas Gregordb0b9f12011-08-04 15:30:47 +0000763 LambdaIntroducer Intro;
764 if (TryParseLambdaIntroducer(Intro))
Eli Friedmanc7c97142012-01-04 02:40:39 +0000765 return ExprEmpty();
Faisal Vali5fb7c3c2013-12-05 01:40:41 +0000766
Douglas Gregordb0b9f12011-08-04 15:30:47 +0000767 return ParseLambdaExpressionAfterIntroducer(Intro);
768}
769
Richard Smithf44d2a82013-05-21 22:21:19 +0000770/// \brief Parse a lambda introducer.
771/// \param Intro A LambdaIntroducer filled in with information about the
772/// contents of the lambda-introducer.
773/// \param SkippedInits If non-null, we are disambiguating between an Obj-C
774/// message send and a lambda expression. In this mode, we will
775/// sometimes skip the initializers for init-captures and not fully
776/// populate \p Intro. This flag will be set to \c true if we do so.
777/// \return A DiagnosticID if it hit something unexpected. The location for
778/// for the diagnostic is that of the current token.
779Optional<unsigned> Parser::ParseLambdaIntroducer(LambdaIntroducer &Intro,
780 bool *SkippedInits) {
David Blaikie05785d12013-02-20 22:23:23 +0000781 typedef Optional<unsigned> DiagResult;
Douglas Gregordb0b9f12011-08-04 15:30:47 +0000782
783 assert(Tok.is(tok::l_square) && "Lambda expressions begin with '['.");
Douglas Gregore7a8e3b2011-10-12 16:37:45 +0000784 BalancedDelimiterTracker T(*this, tok::l_square);
785 T.consumeOpen();
786
787 Intro.Range.setBegin(T.getOpenLocation());
Douglas Gregordb0b9f12011-08-04 15:30:47 +0000788
789 bool first = true;
790
791 // Parse capture-default.
792 if (Tok.is(tok::amp) &&
793 (NextToken().is(tok::comma) || NextToken().is(tok::r_square))) {
794 Intro.Default = LCD_ByRef;
Douglas Gregora1bffa22012-02-10 17:46:20 +0000795 Intro.DefaultLoc = ConsumeToken();
Douglas Gregordb0b9f12011-08-04 15:30:47 +0000796 first = false;
797 } else if (Tok.is(tok::equal)) {
798 Intro.Default = LCD_ByCopy;
Douglas Gregora1bffa22012-02-10 17:46:20 +0000799 Intro.DefaultLoc = ConsumeToken();
Douglas Gregordb0b9f12011-08-04 15:30:47 +0000800 first = false;
801 }
802
803 while (Tok.isNot(tok::r_square)) {
804 if (!first) {
Douglas Gregord8c61782012-02-15 15:34:24 +0000805 if (Tok.isNot(tok::comma)) {
Douglas Gregor721b14d2012-07-31 00:50:07 +0000806 // Provide a completion for a lambda introducer here. Except
807 // in Objective-C, where this is Almost Surely meant to be a message
808 // send. In that case, fail here and let the ObjC message
809 // expression parser perform the completion.
Douglas Gregor2d8db8f2012-07-31 15:27:48 +0000810 if (Tok.is(tok::code_completion) &&
811 !(getLangOpts().ObjC1 && Intro.Default == LCD_None &&
812 !Intro.Captures.empty())) {
Douglas Gregord8c61782012-02-15 15:34:24 +0000813 Actions.CodeCompleteLambdaIntroducer(getCurScope(), Intro,
814 /*AfterAmpersand=*/false);
Alp Toker1c583cc2014-05-02 03:43:14 +0000815 cutOffParsing();
Douglas Gregord8c61782012-02-15 15:34:24 +0000816 break;
817 }
818
Douglas Gregordb0b9f12011-08-04 15:30:47 +0000819 return DiagResult(diag::err_expected_comma_or_rsquare);
Douglas Gregord8c61782012-02-15 15:34:24 +0000820 }
Douglas Gregordb0b9f12011-08-04 15:30:47 +0000821 ConsumeToken();
822 }
823
Douglas Gregord8c61782012-02-15 15:34:24 +0000824 if (Tok.is(tok::code_completion)) {
825 // If we're in Objective-C++ and we have a bare '[', then this is more
826 // likely to be a message receiver.
David Blaikiebbafb8a2012-03-11 07:00:24 +0000827 if (getLangOpts().ObjC1 && first)
Douglas Gregord8c61782012-02-15 15:34:24 +0000828 Actions.CodeCompleteObjCMessageReceiver(getCurScope());
829 else
830 Actions.CodeCompleteLambdaIntroducer(getCurScope(), Intro,
831 /*AfterAmpersand=*/false);
Alp Toker1c583cc2014-05-02 03:43:14 +0000832 cutOffParsing();
Douglas Gregord8c61782012-02-15 15:34:24 +0000833 break;
834 }
Douglas Gregordb0b9f12011-08-04 15:30:47 +0000835
Douglas Gregord8c61782012-02-15 15:34:24 +0000836 first = false;
837
Douglas Gregordb0b9f12011-08-04 15:30:47 +0000838 // Parse capture.
839 LambdaCaptureKind Kind = LCK_ByCopy;
840 SourceLocation Loc;
Craig Topper161e4db2014-05-21 06:02:52 +0000841 IdentifierInfo *Id = nullptr;
Douglas Gregor3e308b12012-02-14 19:27:52 +0000842 SourceLocation EllipsisLoc;
Richard Smith21b3ab42013-05-09 21:36:41 +0000843 ExprResult Init;
Douglas Gregor3e308b12012-02-14 19:27:52 +0000844
Douglas Gregordb0b9f12011-08-04 15:30:47 +0000845 if (Tok.is(tok::kw_this)) {
846 Kind = LCK_This;
847 Loc = ConsumeToken();
848 } else {
849 if (Tok.is(tok::amp)) {
850 Kind = LCK_ByRef;
851 ConsumeToken();
Douglas Gregord8c61782012-02-15 15:34:24 +0000852
853 if (Tok.is(tok::code_completion)) {
854 Actions.CodeCompleteLambdaIntroducer(getCurScope(), Intro,
855 /*AfterAmpersand=*/true);
Alp Toker1c583cc2014-05-02 03:43:14 +0000856 cutOffParsing();
Douglas Gregord8c61782012-02-15 15:34:24 +0000857 break;
858 }
Douglas Gregordb0b9f12011-08-04 15:30:47 +0000859 }
860
861 if (Tok.is(tok::identifier)) {
862 Id = Tok.getIdentifierInfo();
863 Loc = ConsumeToken();
864 } else if (Tok.is(tok::kw_this)) {
865 // FIXME: If we want to suggest a fixit here, will need to return more
866 // than just DiagnosticID. Perhaps full DiagnosticBuilder that can be
867 // Clear()ed to prevent emission in case of tentative parsing?
868 return DiagResult(diag::err_this_captured_by_reference);
869 } else {
870 return DiagResult(diag::err_expected_capture);
871 }
Richard Smith21b3ab42013-05-09 21:36:41 +0000872
873 if (Tok.is(tok::l_paren)) {
874 BalancedDelimiterTracker Parens(*this, tok::l_paren);
875 Parens.consumeOpen();
876
877 ExprVector Exprs;
878 CommaLocsTy Commas;
Richard Smithf44d2a82013-05-21 22:21:19 +0000879 if (SkippedInits) {
880 Parens.skipToEnd();
881 *SkippedInits = true;
882 } else if (ParseExpressionList(Exprs, Commas)) {
Richard Smith21b3ab42013-05-09 21:36:41 +0000883 Parens.skipToEnd();
884 Init = ExprError();
885 } else {
886 Parens.consumeClose();
887 Init = Actions.ActOnParenListExpr(Parens.getOpenLocation(),
888 Parens.getCloseLocation(),
889 Exprs);
890 }
891 } else if (Tok.is(tok::l_brace) || Tok.is(tok::equal)) {
Faisal Vali5fb7c3c2013-12-05 01:40:41 +0000892 // Each lambda init-capture forms its own full expression, which clears
893 // Actions.MaybeODRUseExprs. So create an expression evaluation context
894 // to save the necessary state, and restore it later.
895 EnterExpressionEvaluationContext EC(Actions,
896 Sema::PotentiallyEvaluated);
Alp Tokera3ebe6e2013-12-17 14:12:37 +0000897 TryConsumeToken(tok::equal);
Richard Smith21b3ab42013-05-09 21:36:41 +0000898
Richard Smithf44d2a82013-05-21 22:21:19 +0000899 if (!SkippedInits)
900 Init = ParseInitializer();
901 else if (Tok.is(tok::l_brace)) {
902 BalancedDelimiterTracker Braces(*this, tok::l_brace);
903 Braces.consumeOpen();
904 Braces.skipToEnd();
905 *SkippedInits = true;
906 } else {
907 // We're disambiguating this:
908 //
909 // [..., x = expr
910 //
911 // We need to find the end of the following expression in order to
Richard Smith9e2f0a42014-04-13 04:31:48 +0000912 // determine whether this is an Obj-C message send's receiver, a
913 // C99 designator, or a lambda init-capture.
Richard Smithf44d2a82013-05-21 22:21:19 +0000914 //
915 // Parse the expression to find where it ends, and annotate it back
916 // onto the tokens. We would have parsed this expression the same way
917 // in either case: both the RHS of an init-capture and the RHS of an
918 // assignment expression are parsed as an initializer-clause, and in
919 // neither case can anything be added to the scope between the '[' and
920 // here.
921 //
922 // FIXME: This is horrible. Adding a mechanism to skip an expression
923 // would be much cleaner.
924 // FIXME: If there is a ',' before the next ']' or ':', we can skip to
925 // that instead. (And if we see a ':' with no matching '?', we can
926 // classify this as an Obj-C message send.)
927 SourceLocation StartLoc = Tok.getLocation();
928 InMessageExpressionRAIIObject MaybeInMessageExpression(*this, true);
929 Init = ParseInitializer();
930
931 if (Tok.getLocation() != StartLoc) {
932 // Back out the lexing of the token after the initializer.
933 PP.RevertCachedTokens(1);
934
935 // Replace the consumed tokens with an appropriate annotation.
936 Tok.setLocation(StartLoc);
937 Tok.setKind(tok::annot_primary_expr);
938 setExprAnnotation(Tok, Init);
939 Tok.setAnnotationEndLoc(PP.getLastCachedTokenLocation());
940 PP.AnnotateCachedTokens(Tok);
941
942 // Consume the annotated initializer.
943 ConsumeToken();
944 }
945 }
Alp Tokera3ebe6e2013-12-17 14:12:37 +0000946 } else
947 TryConsumeToken(tok::ellipsis, EllipsisLoc);
Douglas Gregordb0b9f12011-08-04 15:30:47 +0000948 }
Faisal Vali5fb7c3c2013-12-05 01:40:41 +0000949 // If this is an init capture, process the initialization expression
950 // right away. For lambda init-captures such as the following:
951 // const int x = 10;
952 // auto L = [i = x+1](int a) {
953 // return [j = x+2,
954 // &k = x](char b) { };
955 // };
956 // keep in mind that each lambda init-capture has to have:
957 // - its initialization expression executed in the context
958 // of the enclosing/parent decl-context.
959 // - but the variable itself has to be 'injected' into the
960 // decl-context of its lambda's call-operator (which has
961 // not yet been created).
962 // Each init-expression is a full-expression that has to get
963 // Sema-analyzed (for capturing etc.) before its lambda's
964 // call-operator's decl-context, scope & scopeinfo are pushed on their
965 // respective stacks. Thus if any variable is odr-used in the init-capture
966 // it will correctly get captured in the enclosing lambda, if one exists.
967 // The init-variables above are created later once the lambdascope and
968 // call-operators decl-context is pushed onto its respective stack.
Douglas Gregordb0b9f12011-08-04 15:30:47 +0000969
Faisal Vali5fb7c3c2013-12-05 01:40:41 +0000970 // Since the lambda init-capture's initializer expression occurs in the
971 // context of the enclosing function or lambda, therefore we can not wait
972 // till a lambda scope has been pushed on before deciding whether the
973 // variable needs to be captured. We also need to process all
974 // lvalue-to-rvalue conversions and discarded-value conversions,
975 // so that we can avoid capturing certain constant variables.
976 // For e.g.,
977 // void test() {
978 // const int x = 10;
979 // auto L = [&z = x](char a) { <-- don't capture by the current lambda
980 // return [y = x](int i) { <-- don't capture by enclosing lambda
981 // return y;
982 // }
983 // };
984 // If x was not const, the second use would require 'L' to capture, and
985 // that would be an error.
986
987 ParsedType InitCaptureParsedType;
988 if (Init.isUsable()) {
989 // Get the pointer and store it in an lvalue, so we can use it as an
990 // out argument.
991 Expr *InitExpr = Init.get();
992 // This performs any lvalue-to-rvalue conversions if necessary, which
993 // can affect what gets captured in the containing decl-context.
994 QualType InitCaptureType = Actions.performLambdaInitCaptureInitialization(
995 Loc, Kind == LCK_ByRef, Id, InitExpr);
996 Init = InitExpr;
997 InitCaptureParsedType.set(InitCaptureType);
998 }
999 Intro.addCapture(Kind, Loc, Id, EllipsisLoc, Init, InitCaptureParsedType);
Douglas Gregordb0b9f12011-08-04 15:30:47 +00001000 }
1001
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00001002 T.consumeClose();
1003 Intro.Range.setEnd(T.getCloseLocation());
Douglas Gregordb0b9f12011-08-04 15:30:47 +00001004 return DiagResult();
1005}
1006
Douglas Gregord8c61782012-02-15 15:34:24 +00001007/// TryParseLambdaIntroducer - Tentatively parse a lambda introducer.
Douglas Gregordb0b9f12011-08-04 15:30:47 +00001008///
1009/// Returns true if it hit something unexpected.
1010bool Parser::TryParseLambdaIntroducer(LambdaIntroducer &Intro) {
1011 TentativeParsingAction PA(*this);
1012
Richard Smithf44d2a82013-05-21 22:21:19 +00001013 bool SkippedInits = false;
1014 Optional<unsigned> DiagID(ParseLambdaIntroducer(Intro, &SkippedInits));
Douglas Gregordb0b9f12011-08-04 15:30:47 +00001015
1016 if (DiagID) {
1017 PA.Revert();
1018 return true;
1019 }
1020
Richard Smithf44d2a82013-05-21 22:21:19 +00001021 if (SkippedInits) {
1022 // Parse it again, but this time parse the init-captures too.
1023 PA.Revert();
1024 Intro = LambdaIntroducer();
1025 DiagID = ParseLambdaIntroducer(Intro);
1026 assert(!DiagID && "parsing lambda-introducer failed on reparse");
1027 return false;
1028 }
1029
Douglas Gregordb0b9f12011-08-04 15:30:47 +00001030 PA.Commit();
1031 return false;
1032}
1033
1034/// ParseLambdaExpressionAfterIntroducer - Parse the rest of a lambda
1035/// expression.
1036ExprResult Parser::ParseLambdaExpressionAfterIntroducer(
1037 LambdaIntroducer &Intro) {
Eli Friedmanc7c97142012-01-04 02:40:39 +00001038 SourceLocation LambdaBeginLoc = Intro.Range.getBegin();
1039 Diag(LambdaBeginLoc, diag::warn_cxx98_compat_lambda);
1040
1041 PrettyStackTraceLoc CrashInfo(PP.getSourceManager(), LambdaBeginLoc,
1042 "lambda expression parsing");
1043
Faisal Vali2b391ab2013-09-26 19:54:12 +00001044
1045
Richard Smith21b3ab42013-05-09 21:36:41 +00001046 // FIXME: Call into Actions to add any init-capture declarations to the
1047 // scope while parsing the lambda-declarator and compound-statement.
1048
Douglas Gregordb0b9f12011-08-04 15:30:47 +00001049 // Parse lambda-declarator[opt].
1050 DeclSpec DS(AttrFactory);
Eli Friedman36d12942012-01-04 04:41:38 +00001051 Declarator D(DS, Declarator::LambdaExprContext);
Faisal Vali2b391ab2013-09-26 19:54:12 +00001052 TemplateParameterDepthRAII CurTemplateDepthTracker(TemplateParameterDepth);
1053 Actions.PushLambdaScope();
Douglas Gregordb0b9f12011-08-04 15:30:47 +00001054
1055 if (Tok.is(tok::l_paren)) {
1056 ParseScope PrototypeScope(this,
1057 Scope::FunctionPrototypeScope |
Richard Smithe233fbf2013-01-28 22:42:45 +00001058 Scope::FunctionDeclarationScope |
Douglas Gregordb0b9f12011-08-04 15:30:47 +00001059 Scope::DeclScope);
1060
Abramo Bagnaraaeeb9892012-10-04 21:42:10 +00001061 SourceLocation DeclEndLoc;
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00001062 BalancedDelimiterTracker T(*this, tok::l_paren);
1063 T.consumeOpen();
Abramo Bagnaraaeeb9892012-10-04 21:42:10 +00001064 SourceLocation LParenLoc = T.getOpenLocation();
Douglas Gregordb0b9f12011-08-04 15:30:47 +00001065
1066 // Parse parameter-declaration-clause.
1067 ParsedAttributes Attr(AttrFactory);
Dmitri Gribenkof8579502013-01-12 19:30:44 +00001068 SmallVector<DeclaratorChunk::ParamInfo, 16> ParamInfo;
Douglas Gregordb0b9f12011-08-04 15:30:47 +00001069 SourceLocation EllipsisLoc;
Faisal Vali2b391ab2013-09-26 19:54:12 +00001070
1071 if (Tok.isNot(tok::r_paren)) {
Faisal Vali2b391ab2013-09-26 19:54:12 +00001072 Actions.RecordParsingTemplateParameterDepth(TemplateParameterDepth);
Douglas Gregordb0b9f12011-08-04 15:30:47 +00001073 ParseParameterDeclarationClause(D, Attr, ParamInfo, EllipsisLoc);
Faisal Vali2b391ab2013-09-26 19:54:12 +00001074 // For a generic lambda, each 'auto' within the parameter declaration
1075 // clause creates a template type parameter, so increment the depth.
1076 if (Actions.getCurGenericLambda())
1077 ++CurTemplateDepthTracker;
1078 }
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00001079 T.consumeClose();
Abramo Bagnaraaeeb9892012-10-04 21:42:10 +00001080 SourceLocation RParenLoc = T.getCloseLocation();
1081 DeclEndLoc = RParenLoc;
Douglas Gregordb0b9f12011-08-04 15:30:47 +00001082
Aaron Ballmane8d69b72014-03-12 00:01:07 +00001083 // GNU-style attributes must be parsed before the mutable specifier to be
1084 // compatible with GCC.
1085 MaybeParseGNUAttributes(Attr, &DeclEndLoc);
1086
Douglas Gregordb0b9f12011-08-04 15:30:47 +00001087 // Parse 'mutable'[opt].
1088 SourceLocation MutableLoc;
Alp Toker094e5212014-01-05 03:27:11 +00001089 if (TryConsumeToken(tok::kw_mutable, MutableLoc))
Douglas Gregordb0b9f12011-08-04 15:30:47 +00001090 DeclEndLoc = MutableLoc;
Douglas Gregordb0b9f12011-08-04 15:30:47 +00001091
1092 // Parse exception-specification[opt].
1093 ExceptionSpecificationType ESpecType = EST_None;
1094 SourceRange ESpecRange;
Dmitri Gribenkof8579502013-01-12 19:30:44 +00001095 SmallVector<ParsedType, 2> DynamicExceptions;
1096 SmallVector<SourceRange, 2> DynamicExceptionRanges;
Douglas Gregordb0b9f12011-08-04 15:30:47 +00001097 ExprResult NoexceptExpr;
Richard Smith0b3a4622014-11-13 20:01:57 +00001098 CachedTokens *ExceptionSpecTokens;
1099 ESpecType = tryParseExceptionSpecification(/*Delayed=*/false,
1100 ESpecRange,
Douglas Gregor433e0532012-04-16 18:27:27 +00001101 DynamicExceptions,
1102 DynamicExceptionRanges,
Richard Smith0b3a4622014-11-13 20:01:57 +00001103 NoexceptExpr,
1104 ExceptionSpecTokens);
Douglas Gregordb0b9f12011-08-04 15:30:47 +00001105
1106 if (ESpecType != EST_None)
1107 DeclEndLoc = ESpecRange.getEnd();
1108
1109 // Parse attribute-specifier[opt].
Richard Smith89645bc2013-01-02 12:01:23 +00001110 MaybeParseCXX11Attributes(Attr, &DeclEndLoc);
Douglas Gregordb0b9f12011-08-04 15:30:47 +00001111
Abramo Bagnaraaeeb9892012-10-04 21:42:10 +00001112 SourceLocation FunLocalRangeEnd = DeclEndLoc;
1113
Douglas Gregordb0b9f12011-08-04 15:30:47 +00001114 // Parse trailing-return-type[opt].
Richard Smith700537c2012-06-12 01:51:59 +00001115 TypeResult TrailingReturnType;
Douglas Gregordb0b9f12011-08-04 15:30:47 +00001116 if (Tok.is(tok::arrow)) {
Abramo Bagnaraaeeb9892012-10-04 21:42:10 +00001117 FunLocalRangeEnd = Tok.getLocation();
Douglas Gregordb0b9f12011-08-04 15:30:47 +00001118 SourceRange Range;
Richard Smith700537c2012-06-12 01:51:59 +00001119 TrailingReturnType = ParseTrailingReturnType(Range);
Douglas Gregordb0b9f12011-08-04 15:30:47 +00001120 if (Range.getEnd().isValid())
1121 DeclEndLoc = Range.getEnd();
1122 }
1123
1124 PrototypeScope.Exit();
1125
Abramo Bagnaraaeeb9892012-10-04 21:42:10 +00001126 SourceLocation NoLoc;
Douglas Gregordb0b9f12011-08-04 15:30:47 +00001127 D.AddTypeInfo(DeclaratorChunk::getFunction(/*hasProto=*/true,
Abramo Bagnaraaeeb9892012-10-04 21:42:10 +00001128 /*isAmbiguous=*/false,
1129 LParenLoc,
Douglas Gregordb0b9f12011-08-04 15:30:47 +00001130 ParamInfo.data(), ParamInfo.size(),
Abramo Bagnaraaeeb9892012-10-04 21:42:10 +00001131 EllipsisLoc, RParenLoc,
Douglas Gregordb0b9f12011-08-04 15:30:47 +00001132 DS.getTypeQualifiers(),
1133 /*RefQualifierIsLValueRef=*/true,
Abramo Bagnaraaeeb9892012-10-04 21:42:10 +00001134 /*RefQualifierLoc=*/NoLoc,
1135 /*ConstQualifierLoc=*/NoLoc,
1136 /*VolatileQualifierLoc=*/NoLoc,
Hal Finkel23a07392014-10-20 17:32:04 +00001137 /*RestrictQualifierLoc=*/NoLoc,
Douglas Gregordb0b9f12011-08-04 15:30:47 +00001138 MutableLoc,
1139 ESpecType, ESpecRange.getBegin(),
1140 DynamicExceptions.data(),
1141 DynamicExceptionRanges.data(),
1142 DynamicExceptions.size(),
1143 NoexceptExpr.isUsable() ?
Craig Topper161e4db2014-05-21 06:02:52 +00001144 NoexceptExpr.get() : nullptr,
Richard Smith0b3a4622014-11-13 20:01:57 +00001145 /*ExceptionSpecTokens*/nullptr,
Abramo Bagnaraaeeb9892012-10-04 21:42:10 +00001146 LParenLoc, FunLocalRangeEnd, D,
Douglas Gregordb0b9f12011-08-04 15:30:47 +00001147 TrailingReturnType),
1148 Attr, DeclEndLoc);
Aaron Ballmanb5c59f52014-03-11 13:03:15 +00001149 } else if (Tok.is(tok::kw_mutable) || Tok.is(tok::arrow) ||
Aaron Ballmane8d69b72014-03-12 00:01:07 +00001150 Tok.is(tok::kw___attribute) ||
Aaron Ballmanb5c59f52014-03-11 13:03:15 +00001151 (Tok.is(tok::l_square) && NextToken().is(tok::l_square))) {
1152 // It's common to forget that one needs '()' before 'mutable', an attribute
1153 // specifier, or the result type. Deal with this.
1154 unsigned TokKind = 0;
1155 switch (Tok.getKind()) {
1156 case tok::kw_mutable: TokKind = 0; break;
1157 case tok::arrow: TokKind = 1; break;
Aaron Ballmane8d69b72014-03-12 00:01:07 +00001158 case tok::kw___attribute:
Aaron Ballmanb5c59f52014-03-11 13:03:15 +00001159 case tok::l_square: TokKind = 2; break;
1160 default: llvm_unreachable("Unknown token kind");
1161 }
1162
Douglas Gregor6746c5d2012-02-16 21:53:36 +00001163 Diag(Tok, diag::err_lambda_missing_parens)
Aaron Ballmanb5c59f52014-03-11 13:03:15 +00001164 << TokKind
Douglas Gregor6746c5d2012-02-16 21:53:36 +00001165 << FixItHint::CreateInsertion(Tok.getLocation(), "() ");
1166 SourceLocation DeclLoc = Tok.getLocation();
1167 SourceLocation DeclEndLoc = DeclLoc;
Aaron Ballmane8d69b72014-03-12 00:01:07 +00001168
1169 // GNU-style attributes must be parsed before the mutable specifier to be
1170 // compatible with GCC.
1171 ParsedAttributes Attr(AttrFactory);
1172 MaybeParseGNUAttributes(Attr, &DeclEndLoc);
1173
Douglas Gregor6746c5d2012-02-16 21:53:36 +00001174 // Parse 'mutable', if it's there.
1175 SourceLocation MutableLoc;
1176 if (Tok.is(tok::kw_mutable)) {
1177 MutableLoc = ConsumeToken();
1178 DeclEndLoc = MutableLoc;
1179 }
Aaron Ballmanb5c59f52014-03-11 13:03:15 +00001180
1181 // Parse attribute-specifier[opt].
Aaron Ballmanb5c59f52014-03-11 13:03:15 +00001182 MaybeParseCXX11Attributes(Attr, &DeclEndLoc);
1183
Douglas Gregor6746c5d2012-02-16 21:53:36 +00001184 // Parse the return type, if there is one.
Richard Smith700537c2012-06-12 01:51:59 +00001185 TypeResult TrailingReturnType;
Douglas Gregor6746c5d2012-02-16 21:53:36 +00001186 if (Tok.is(tok::arrow)) {
1187 SourceRange Range;
Richard Smith700537c2012-06-12 01:51:59 +00001188 TrailingReturnType = ParseTrailingReturnType(Range);
Douglas Gregor6746c5d2012-02-16 21:53:36 +00001189 if (Range.getEnd().isValid())
1190 DeclEndLoc = Range.getEnd();
1191 }
1192
Abramo Bagnaraaeeb9892012-10-04 21:42:10 +00001193 SourceLocation NoLoc;
Douglas Gregor6746c5d2012-02-16 21:53:36 +00001194 D.AddTypeInfo(DeclaratorChunk::getFunction(/*hasProto=*/true,
Abramo Bagnaraaeeb9892012-10-04 21:42:10 +00001195 /*isAmbiguous=*/false,
1196 /*LParenLoc=*/NoLoc,
Craig Topper161e4db2014-05-21 06:02:52 +00001197 /*Params=*/nullptr,
Abramo Bagnaraaeeb9892012-10-04 21:42:10 +00001198 /*NumParams=*/0,
1199 /*EllipsisLoc=*/NoLoc,
1200 /*RParenLoc=*/NoLoc,
1201 /*TypeQuals=*/0,
1202 /*RefQualifierIsLValueRef=*/true,
1203 /*RefQualifierLoc=*/NoLoc,
1204 /*ConstQualifierLoc=*/NoLoc,
1205 /*VolatileQualifierLoc=*/NoLoc,
Hal Finkel23a07392014-10-20 17:32:04 +00001206 /*RestrictQualifierLoc=*/NoLoc,
Abramo Bagnaraaeeb9892012-10-04 21:42:10 +00001207 MutableLoc,
1208 EST_None,
1209 /*ESpecLoc=*/NoLoc,
Craig Topper161e4db2014-05-21 06:02:52 +00001210 /*Exceptions=*/nullptr,
1211 /*ExceptionRanges=*/nullptr,
Abramo Bagnaraaeeb9892012-10-04 21:42:10 +00001212 /*NumExceptions=*/0,
Craig Topper161e4db2014-05-21 06:02:52 +00001213 /*NoexceptExpr=*/nullptr,
Richard Smith0b3a4622014-11-13 20:01:57 +00001214 /*ExceptionSpecTokens=*/nullptr,
Abramo Bagnaraaeeb9892012-10-04 21:42:10 +00001215 DeclLoc, DeclEndLoc, D,
1216 TrailingReturnType),
Douglas Gregor6746c5d2012-02-16 21:53:36 +00001217 Attr, DeclEndLoc);
Douglas Gregordb0b9f12011-08-04 15:30:47 +00001218 }
Douglas Gregor6746c5d2012-02-16 21:53:36 +00001219
Douglas Gregordb0b9f12011-08-04 15:30:47 +00001220
Eli Friedman4817cf72012-01-06 03:05:34 +00001221 // FIXME: Rename BlockScope -> ClosureScope if we decide to continue using
1222 // it.
Douglas Gregorb8389972012-02-21 22:51:27 +00001223 unsigned ScopeFlags = Scope::BlockScope | Scope::FnScope | Scope::DeclScope;
Douglas Gregorb8389972012-02-21 22:51:27 +00001224 ParseScope BodyScope(this, ScopeFlags);
Eli Friedman4817cf72012-01-06 03:05:34 +00001225
Eli Friedman71c80552012-01-05 03:35:19 +00001226 Actions.ActOnStartOfLambdaDefinition(Intro, D, getCurScope());
1227
Douglas Gregordb0b9f12011-08-04 15:30:47 +00001228 // Parse compound-statement.
Eli Friedmanc7c97142012-01-04 02:40:39 +00001229 if (!Tok.is(tok::l_brace)) {
Douglas Gregordb0b9f12011-08-04 15:30:47 +00001230 Diag(Tok, diag::err_expected_lambda_body);
Eli Friedmanc7c97142012-01-04 02:40:39 +00001231 Actions.ActOnLambdaError(LambdaBeginLoc, getCurScope());
1232 return ExprError();
Douglas Gregordb0b9f12011-08-04 15:30:47 +00001233 }
1234
Eli Friedmanc7c97142012-01-04 02:40:39 +00001235 StmtResult Stmt(ParseCompoundStatementBody());
1236 BodyScope.Exit();
1237
Eli Friedman898caf82012-01-04 02:46:53 +00001238 if (!Stmt.isInvalid())
Nikola Smiljanic01a75982014-05-29 10:55:11 +00001239 return Actions.ActOnLambdaExpr(LambdaBeginLoc, Stmt.get(), getCurScope());
Eli Friedmanc7c97142012-01-04 02:40:39 +00001240
Eli Friedman898caf82012-01-04 02:46:53 +00001241 Actions.ActOnLambdaError(LambdaBeginLoc, getCurScope());
1242 return ExprError();
Douglas Gregordb0b9f12011-08-04 15:30:47 +00001243}
1244
Chris Lattner29375652006-12-04 18:06:35 +00001245/// ParseCXXCasts - This handles the various ways to cast expressions to another
1246/// type.
1247///
1248/// postfix-expression: [C++ 5.2p1]
1249/// 'dynamic_cast' '<' type-name '>' '(' expression ')'
1250/// 'static_cast' '<' type-name '>' '(' expression ')'
1251/// 'reinterpret_cast' '<' type-name '>' '(' expression ')'
1252/// 'const_cast' '<' type-name '>' '(' expression ')'
1253///
John McCalldadc5752010-08-24 06:29:42 +00001254ExprResult Parser::ParseCXXCasts() {
Chris Lattner29375652006-12-04 18:06:35 +00001255 tok::TokenKind Kind = Tok.getKind();
Craig Topper161e4db2014-05-21 06:02:52 +00001256 const char *CastName = nullptr; // For error messages
Chris Lattner29375652006-12-04 18:06:35 +00001257
1258 switch (Kind) {
David Blaikieaa347f92011-09-23 20:26:49 +00001259 default: llvm_unreachable("Unknown C++ cast!");
Chris Lattner29375652006-12-04 18:06:35 +00001260 case tok::kw_const_cast: CastName = "const_cast"; break;
1261 case tok::kw_dynamic_cast: CastName = "dynamic_cast"; break;
1262 case tok::kw_reinterpret_cast: CastName = "reinterpret_cast"; break;
1263 case tok::kw_static_cast: CastName = "static_cast"; break;
1264 }
1265
1266 SourceLocation OpLoc = ConsumeToken();
1267 SourceLocation LAngleBracketLoc = Tok.getLocation();
1268
Richard Smith55858492011-04-14 21:45:45 +00001269 // Check for "<::" which is parsed as "[:". If found, fix token stream,
1270 // diagnose error, suggest fix, and recover parsing.
Richard Smith62e66302012-08-20 17:37:52 +00001271 if (Tok.is(tok::l_square) && Tok.getLength() == 2) {
1272 Token Next = NextToken();
1273 if (Next.is(tok::colon) && areTokensAdjacent(Tok, Next))
1274 FixDigraph(*this, PP, Tok, Next, Kind, /*AtDigraph*/true);
1275 }
Richard Smith55858492011-04-14 21:45:45 +00001276
Chris Lattner29375652006-12-04 18:06:35 +00001277 if (ExpectAndConsume(tok::less, diag::err_expected_less_after, CastName))
Sebastian Redld65cea82008-12-11 22:51:44 +00001278 return ExprError();
Chris Lattner29375652006-12-04 18:06:35 +00001279
Argyrios Kyrtzidis7451d1c2011-07-01 22:22:50 +00001280 // Parse the common declaration-specifiers piece.
1281 DeclSpec DS(AttrFactory);
1282 ParseSpecifierQualifierList(DS);
1283
1284 // Parse the abstract-declarator, if present.
1285 Declarator DeclaratorInfo(DS, Declarator::TypeNameContext);
1286 ParseDeclarator(DeclaratorInfo);
1287
Chris Lattner29375652006-12-04 18:06:35 +00001288 SourceLocation RAngleBracketLoc = Tok.getLocation();
1289
Alp Toker383d2c42014-01-01 03:08:43 +00001290 if (ExpectAndConsume(tok::greater))
Alp Tokerec543272013-12-24 09:48:30 +00001291 return ExprError(Diag(LAngleBracketLoc, diag::note_matching) << tok::less);
Chris Lattner29375652006-12-04 18:06:35 +00001292
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00001293 SourceLocation LParenLoc, RParenLoc;
1294 BalancedDelimiterTracker T(*this, tok::l_paren);
Chris Lattner29375652006-12-04 18:06:35 +00001295
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00001296 if (T.expectAndConsume(diag::err_expected_lparen_after, CastName))
Argyrios Kyrtzidis387a3342009-05-22 10:23:16 +00001297 return ExprError();
Chris Lattner29375652006-12-04 18:06:35 +00001298
John McCalldadc5752010-08-24 06:29:42 +00001299 ExprResult Result = ParseExpression();
Mike Stump11289f42009-09-09 15:08:12 +00001300
Argyrios Kyrtzidis387a3342009-05-22 10:23:16 +00001301 // Match the ')'.
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00001302 T.consumeClose();
Chris Lattner29375652006-12-04 18:06:35 +00001303
Argyrios Kyrtzidis7451d1c2011-07-01 22:22:50 +00001304 if (!Result.isInvalid() && !DeclaratorInfo.isInvalidType())
Douglas Gregore200adc2008-10-27 19:41:14 +00001305 Result = Actions.ActOnCXXNamedCast(OpLoc, Kind,
Argyrios Kyrtzidis7451d1c2011-07-01 22:22:50 +00001306 LAngleBracketLoc, DeclaratorInfo,
Douglas Gregor220cac52009-02-18 17:45:20 +00001307 RAngleBracketLoc,
Nikola Smiljanic01a75982014-05-29 10:55:11 +00001308 T.getOpenLocation(), Result.get(),
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00001309 T.getCloseLocation());
Chris Lattner29375652006-12-04 18:06:35 +00001310
Benjamin Kramer62b95d82012-08-23 21:35:17 +00001311 return Result;
Chris Lattner29375652006-12-04 18:06:35 +00001312}
Bill Wendling4073ed52007-02-13 01:51:42 +00001313
Sebastian Redlc4704762008-11-11 11:37:55 +00001314/// ParseCXXTypeid - This handles the C++ typeid expression.
1315///
1316/// postfix-expression: [C++ 5.2p1]
1317/// 'typeid' '(' expression ')'
1318/// 'typeid' '(' type-id ')'
1319///
John McCalldadc5752010-08-24 06:29:42 +00001320ExprResult Parser::ParseCXXTypeid() {
Sebastian Redlc4704762008-11-11 11:37:55 +00001321 assert(Tok.is(tok::kw_typeid) && "Not 'typeid'!");
1322
1323 SourceLocation OpLoc = ConsumeToken();
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00001324 SourceLocation LParenLoc, RParenLoc;
1325 BalancedDelimiterTracker T(*this, tok::l_paren);
Sebastian Redlc4704762008-11-11 11:37:55 +00001326
1327 // typeid expressions are always parenthesized.
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00001328 if (T.expectAndConsume(diag::err_expected_lparen_after, "typeid"))
Sebastian Redld65cea82008-12-11 22:51:44 +00001329 return ExprError();
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00001330 LParenLoc = T.getOpenLocation();
Sebastian Redlc4704762008-11-11 11:37:55 +00001331
John McCalldadc5752010-08-24 06:29:42 +00001332 ExprResult Result;
Sebastian Redlc4704762008-11-11 11:37:55 +00001333
Richard Smith4f605af2012-08-18 00:55:03 +00001334 // C++0x [expr.typeid]p3:
1335 // When typeid is applied to an expression other than an lvalue of a
1336 // polymorphic class type [...] The expression is an unevaluated
1337 // operand (Clause 5).
1338 //
1339 // Note that we can't tell whether the expression is an lvalue of a
1340 // polymorphic class type until after we've parsed the expression; we
1341 // speculatively assume the subexpression is unevaluated, and fix it up
1342 // later.
1343 //
1344 // We enter the unevaluated context before trying to determine whether we
1345 // have a type-id, because the tentative parse logic will try to resolve
1346 // names, and must treat them as unevaluated.
Eli Friedman15681d62012-09-26 04:34:21 +00001347 EnterExpressionEvaluationContext Unevaluated(Actions, Sema::Unevaluated,
1348 Sema::ReuseLambdaContextDecl);
Richard Smith4f605af2012-08-18 00:55:03 +00001349
Sebastian Redlc4704762008-11-11 11:37:55 +00001350 if (isTypeIdInParens()) {
Douglas Gregor220cac52009-02-18 17:45:20 +00001351 TypeResult Ty = ParseTypeName();
Sebastian Redlc4704762008-11-11 11:37:55 +00001352
1353 // Match the ')'.
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00001354 T.consumeClose();
1355 RParenLoc = T.getCloseLocation();
Douglas Gregor4c7c1092010-09-08 23:14:30 +00001356 if (Ty.isInvalid() || RParenLoc.isInvalid())
Sebastian Redld65cea82008-12-11 22:51:44 +00001357 return ExprError();
Sebastian Redlc4704762008-11-11 11:37:55 +00001358
1359 Result = Actions.ActOnCXXTypeid(OpLoc, LParenLoc, /*isType=*/true,
John McCallba7bf592010-08-24 05:47:05 +00001360 Ty.get().getAsOpaquePtr(), RParenLoc);
Sebastian Redlc4704762008-11-11 11:37:55 +00001361 } else {
1362 Result = ParseExpression();
1363
1364 // Match the ')'.
Sebastian Redl17f2c7d2008-12-09 13:15:23 +00001365 if (Result.isInvalid())
Alexey Bataevee6507d2013-11-18 08:17:37 +00001366 SkipUntil(tok::r_paren, StopAtSemi);
Sebastian Redlc4704762008-11-11 11:37:55 +00001367 else {
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00001368 T.consumeClose();
1369 RParenLoc = T.getCloseLocation();
Douglas Gregor4c7c1092010-09-08 23:14:30 +00001370 if (RParenLoc.isInvalid())
1371 return ExprError();
Douglas Gregor1beec452011-03-12 01:48:56 +00001372
Sebastian Redlc4704762008-11-11 11:37:55 +00001373 Result = Actions.ActOnCXXTypeid(OpLoc, LParenLoc, /*isType=*/false,
Nikola Smiljanic01a75982014-05-29 10:55:11 +00001374 Result.get(), RParenLoc);
Sebastian Redlc4704762008-11-11 11:37:55 +00001375 }
1376 }
1377
Benjamin Kramer62b95d82012-08-23 21:35:17 +00001378 return Result;
Sebastian Redlc4704762008-11-11 11:37:55 +00001379}
1380
Francois Pichet9f4f2072010-09-08 12:20:18 +00001381/// ParseCXXUuidof - This handles the Microsoft C++ __uuidof expression.
1382///
1383/// '__uuidof' '(' expression ')'
1384/// '__uuidof' '(' type-id ')'
1385///
1386ExprResult Parser::ParseCXXUuidof() {
1387 assert(Tok.is(tok::kw___uuidof) && "Not '__uuidof'!");
1388
1389 SourceLocation OpLoc = ConsumeToken();
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00001390 BalancedDelimiterTracker T(*this, tok::l_paren);
Francois Pichet9f4f2072010-09-08 12:20:18 +00001391
1392 // __uuidof expressions are always parenthesized.
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00001393 if (T.expectAndConsume(diag::err_expected_lparen_after, "__uuidof"))
Francois Pichet9f4f2072010-09-08 12:20:18 +00001394 return ExprError();
1395
1396 ExprResult Result;
1397
1398 if (isTypeIdInParens()) {
1399 TypeResult Ty = ParseTypeName();
1400
1401 // Match the ')'.
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00001402 T.consumeClose();
Francois Pichet9f4f2072010-09-08 12:20:18 +00001403
1404 if (Ty.isInvalid())
1405 return ExprError();
1406
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00001407 Result = Actions.ActOnCXXUuidof(OpLoc, T.getOpenLocation(), /*isType=*/true,
1408 Ty.get().getAsOpaquePtr(),
1409 T.getCloseLocation());
Francois Pichet9f4f2072010-09-08 12:20:18 +00001410 } else {
1411 EnterExpressionEvaluationContext Unevaluated(Actions, Sema::Unevaluated);
1412 Result = ParseExpression();
1413
1414 // Match the ')'.
1415 if (Result.isInvalid())
Alexey Bataevee6507d2013-11-18 08:17:37 +00001416 SkipUntil(tok::r_paren, StopAtSemi);
Francois Pichet9f4f2072010-09-08 12:20:18 +00001417 else {
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00001418 T.consumeClose();
Francois Pichet9f4f2072010-09-08 12:20:18 +00001419
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00001420 Result = Actions.ActOnCXXUuidof(OpLoc, T.getOpenLocation(),
1421 /*isType=*/false,
Nikola Smiljanic01a75982014-05-29 10:55:11 +00001422 Result.get(), T.getCloseLocation());
Francois Pichet9f4f2072010-09-08 12:20:18 +00001423 }
1424 }
1425
Benjamin Kramer62b95d82012-08-23 21:35:17 +00001426 return Result;
Francois Pichet9f4f2072010-09-08 12:20:18 +00001427}
1428
Douglas Gregore610ada2010-02-24 18:44:31 +00001429/// \brief Parse a C++ pseudo-destructor expression after the base,
1430/// . or -> operator, and nested-name-specifier have already been
1431/// parsed.
1432///
1433/// postfix-expression: [C++ 5.2]
1434/// postfix-expression . pseudo-destructor-name
1435/// postfix-expression -> pseudo-destructor-name
1436///
1437/// pseudo-destructor-name:
1438/// ::[opt] nested-name-specifier[opt] type-name :: ~type-name
1439/// ::[opt] nested-name-specifier template simple-template-id ::
1440/// ~type-name
1441/// ::[opt] nested-name-specifier[opt] ~type-name
1442///
John McCalldadc5752010-08-24 06:29:42 +00001443ExprResult
Craig Toppera2c51532014-10-30 05:30:05 +00001444Parser::ParseCXXPseudoDestructor(Expr *Base, SourceLocation OpLoc,
Douglas Gregore610ada2010-02-24 18:44:31 +00001445 tok::TokenKind OpKind,
1446 CXXScopeSpec &SS,
John McCallba7bf592010-08-24 05:47:05 +00001447 ParsedType ObjectType) {
Douglas Gregore610ada2010-02-24 18:44:31 +00001448 // We're parsing either a pseudo-destructor-name or a dependent
1449 // member access that has the same form as a
1450 // pseudo-destructor-name. We parse both in the same way and let
1451 // the action model sort them out.
1452 //
1453 // Note that the ::[opt] nested-name-specifier[opt] has already
1454 // been parsed, and if there was a simple-template-id, it has
1455 // been coalesced into a template-id annotation token.
1456 UnqualifiedId FirstTypeName;
1457 SourceLocation CCLoc;
1458 if (Tok.is(tok::identifier)) {
1459 FirstTypeName.setIdentifier(Tok.getIdentifierInfo(), Tok.getLocation());
1460 ConsumeToken();
1461 assert(Tok.is(tok::coloncolon) &&"ParseOptionalCXXScopeSpecifier fail");
1462 CCLoc = ConsumeToken();
1463 } else if (Tok.is(tok::annot_template_id)) {
Abramo Bagnara7945c982012-01-27 09:46:47 +00001464 // FIXME: retrieve TemplateKWLoc from template-id annotation and
1465 // store it in the pseudo-dtor node (to be used when instantiating it).
Douglas Gregore610ada2010-02-24 18:44:31 +00001466 FirstTypeName.setTemplateId(
1467 (TemplateIdAnnotation *)Tok.getAnnotationValue());
1468 ConsumeToken();
1469 assert(Tok.is(tok::coloncolon) &&"ParseOptionalCXXScopeSpecifier fail");
1470 CCLoc = ConsumeToken();
1471 } else {
Craig Topper161e4db2014-05-21 06:02:52 +00001472 FirstTypeName.setIdentifier(nullptr, SourceLocation());
Douglas Gregore610ada2010-02-24 18:44:31 +00001473 }
1474
1475 // Parse the tilde.
1476 assert(Tok.is(tok::tilde) && "ParseOptionalCXXScopeSpecifier fail");
1477 SourceLocation TildeLoc = ConsumeToken();
David Blaikie1d578782011-12-16 16:03:09 +00001478
1479 if (Tok.is(tok::kw_decltype) && !FirstTypeName.isValid() && SS.isEmpty()) {
1480 DeclSpec DS(AttrFactory);
Benjamin Kramer198e0832011-12-18 12:18:02 +00001481 ParseDecltypeSpecifier(DS);
David Blaikie1d578782011-12-16 16:03:09 +00001482 if (DS.getTypeSpecType() == TST_error)
1483 return ExprError();
1484 return Actions.ActOnPseudoDestructorExpr(getCurScope(), Base, OpLoc,
1485 OpKind, TildeLoc, DS,
1486 Tok.is(tok::l_paren));
1487 }
1488
Douglas Gregore610ada2010-02-24 18:44:31 +00001489 if (!Tok.is(tok::identifier)) {
1490 Diag(Tok, diag::err_destructor_tilde_identifier);
1491 return ExprError();
1492 }
1493
1494 // Parse the second type.
1495 UnqualifiedId SecondTypeName;
1496 IdentifierInfo *Name = Tok.getIdentifierInfo();
1497 SourceLocation NameLoc = ConsumeToken();
1498 SecondTypeName.setIdentifier(Name, NameLoc);
1499
1500 // If there is a '<', the second type name is a template-id. Parse
1501 // it as such.
1502 if (Tok.is(tok::less) &&
Abramo Bagnara7945c982012-01-27 09:46:47 +00001503 ParseUnqualifiedIdTemplateId(SS, SourceLocation(),
1504 Name, NameLoc,
1505 false, ObjectType, SecondTypeName,
1506 /*AssumeTemplateName=*/true))
Douglas Gregore610ada2010-02-24 18:44:31 +00001507 return ExprError();
1508
John McCallb268a282010-08-23 23:25:46 +00001509 return Actions.ActOnPseudoDestructorExpr(getCurScope(), Base,
1510 OpLoc, OpKind,
Douglas Gregore610ada2010-02-24 18:44:31 +00001511 SS, FirstTypeName, CCLoc,
1512 TildeLoc, SecondTypeName,
1513 Tok.is(tok::l_paren));
1514}
1515
Bill Wendling4073ed52007-02-13 01:51:42 +00001516/// ParseCXXBoolLiteral - This handles the C++ Boolean literals.
1517///
1518/// boolean-literal: [C++ 2.13.5]
1519/// 'true'
1520/// 'false'
John McCalldadc5752010-08-24 06:29:42 +00001521ExprResult Parser::ParseCXXBoolLiteral() {
Bill Wendling4073ed52007-02-13 01:51:42 +00001522 tok::TokenKind Kind = Tok.getKind();
Sebastian Redl6d4256c2009-03-15 17:47:39 +00001523 return Actions.ActOnCXXBoolLiteral(ConsumeToken(), Kind);
Bill Wendling4073ed52007-02-13 01:51:42 +00001524}
Chris Lattnerb7e656b2008-02-26 00:51:44 +00001525
1526/// ParseThrowExpression - This handles the C++ throw expression.
1527///
1528/// throw-expression: [C++ 15]
1529/// 'throw' assignment-expression[opt]
John McCalldadc5752010-08-24 06:29:42 +00001530ExprResult Parser::ParseThrowExpression() {
Chris Lattnerb7e656b2008-02-26 00:51:44 +00001531 assert(Tok.is(tok::kw_throw) && "Not throw!");
Chris Lattnerb7e656b2008-02-26 00:51:44 +00001532 SourceLocation ThrowLoc = ConsumeToken(); // Eat the throw token.
Sebastian Redld65cea82008-12-11 22:51:44 +00001533
Chris Lattner65dd8432008-04-06 06:02:23 +00001534 // If the current token isn't the start of an assignment-expression,
1535 // then the expression is not present. This handles things like:
1536 // "C ? throw : (void)42", which is crazy but legal.
1537 switch (Tok.getKind()) { // FIXME: move this predicate somewhere common.
1538 case tok::semi:
1539 case tok::r_paren:
1540 case tok::r_square:
1541 case tok::r_brace:
1542 case tok::colon:
1543 case tok::comma:
Craig Topper161e4db2014-05-21 06:02:52 +00001544 return Actions.ActOnCXXThrow(getCurScope(), ThrowLoc, nullptr);
Chris Lattnerb7e656b2008-02-26 00:51:44 +00001545
Chris Lattner65dd8432008-04-06 06:02:23 +00001546 default:
John McCalldadc5752010-08-24 06:29:42 +00001547 ExprResult Expr(ParseAssignmentExpression());
Benjamin Kramer62b95d82012-08-23 21:35:17 +00001548 if (Expr.isInvalid()) return Expr;
Nikola Smiljanic01a75982014-05-29 10:55:11 +00001549 return Actions.ActOnCXXThrow(getCurScope(), ThrowLoc, Expr.get());
Chris Lattner65dd8432008-04-06 06:02:23 +00001550 }
Chris Lattnerb7e656b2008-02-26 00:51:44 +00001551}
Argyrios Kyrtzidis7bbb20e2008-06-24 22:12:16 +00001552
1553/// ParseCXXThis - This handles the C++ 'this' pointer.
1554///
1555/// C++ 9.3.2: In the body of a non-static member function, the keyword this is
1556/// a non-lvalue expression whose value is the address of the object for which
1557/// the function is called.
John McCalldadc5752010-08-24 06:29:42 +00001558ExprResult Parser::ParseCXXThis() {
Argyrios Kyrtzidis7bbb20e2008-06-24 22:12:16 +00001559 assert(Tok.is(tok::kw_this) && "Not 'this'!");
1560 SourceLocation ThisLoc = ConsumeToken();
Sebastian Redl6d4256c2009-03-15 17:47:39 +00001561 return Actions.ActOnCXXThis(ThisLoc);
Argyrios Kyrtzidis7bbb20e2008-06-24 22:12:16 +00001562}
Argyrios Kyrtzidis857fcc22008-08-22 15:38:55 +00001563
1564/// ParseCXXTypeConstructExpression - Parse construction of a specified type.
1565/// Can be interpreted either as function-style casting ("int(x)")
1566/// or class type construction ("ClassType(x,y,z)")
1567/// or creation of a value-initialized type ("int()").
Sebastian Redl3da34892011-06-05 12:23:16 +00001568/// See [C++ 5.2.3].
Argyrios Kyrtzidis857fcc22008-08-22 15:38:55 +00001569///
1570/// postfix-expression: [C++ 5.2p1]
Sebastian Redl3da34892011-06-05 12:23:16 +00001571/// simple-type-specifier '(' expression-list[opt] ')'
1572/// [C++0x] simple-type-specifier braced-init-list
1573/// typename-specifier '(' expression-list[opt] ')'
1574/// [C++0x] typename-specifier braced-init-list
Argyrios Kyrtzidis857fcc22008-08-22 15:38:55 +00001575///
John McCalldadc5752010-08-24 06:29:42 +00001576ExprResult
Sebastian Redld65cea82008-12-11 22:51:44 +00001577Parser::ParseCXXTypeConstructExpression(const DeclSpec &DS) {
Argyrios Kyrtzidis857fcc22008-08-22 15:38:55 +00001578 Declarator DeclaratorInfo(DS, Declarator::TypeNameContext);
John McCallba7bf592010-08-24 05:47:05 +00001579 ParsedType TypeRep = Actions.ActOnTypeName(getCurScope(), DeclaratorInfo).get();
Argyrios Kyrtzidis857fcc22008-08-22 15:38:55 +00001580
Sebastian Redl3da34892011-06-05 12:23:16 +00001581 assert((Tok.is(tok::l_paren) ||
Richard Smith2bf7fdb2013-01-02 11:42:31 +00001582 (getLangOpts().CPlusPlus11 && Tok.is(tok::l_brace)))
Sebastian Redl3da34892011-06-05 12:23:16 +00001583 && "Expected '(' or '{'!");
Douglas Gregor94a32472011-01-11 00:33:19 +00001584
Sebastian Redl3da34892011-06-05 12:23:16 +00001585 if (Tok.is(tok::l_brace)) {
Sebastian Redld74dd492012-02-12 18:41:05 +00001586 ExprResult Init = ParseBraceInitializer();
1587 if (Init.isInvalid())
1588 return Init;
Nikola Smiljanic01a75982014-05-29 10:55:11 +00001589 Expr *InitList = Init.get();
Sebastian Redld74dd492012-02-12 18:41:05 +00001590 return Actions.ActOnCXXTypeConstructExpr(TypeRep, SourceLocation(),
1591 MultiExprArg(&InitList, 1),
1592 SourceLocation());
Sebastian Redl3da34892011-06-05 12:23:16 +00001593 } else {
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00001594 BalancedDelimiterTracker T(*this, tok::l_paren);
1595 T.consumeOpen();
Sebastian Redl3da34892011-06-05 12:23:16 +00001596
Benjamin Kramerf0623432012-08-23 22:51:59 +00001597 ExprVector Exprs;
Sebastian Redl3da34892011-06-05 12:23:16 +00001598 CommaLocsTy CommaLocs;
1599
1600 if (Tok.isNot(tok::r_paren)) {
1601 if (ParseExpressionList(Exprs, CommaLocs)) {
Alexey Bataevee6507d2013-11-18 08:17:37 +00001602 SkipUntil(tok::r_paren, StopAtSemi);
Sebastian Redl3da34892011-06-05 12:23:16 +00001603 return ExprError();
1604 }
Argyrios Kyrtzidis857fcc22008-08-22 15:38:55 +00001605 }
Sebastian Redl3da34892011-06-05 12:23:16 +00001606
1607 // Match the ')'.
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00001608 T.consumeClose();
Sebastian Redl3da34892011-06-05 12:23:16 +00001609
1610 // TypeRep could be null, if it references an invalid typedef.
1611 if (!TypeRep)
1612 return ExprError();
1613
1614 assert((Exprs.size() == 0 || Exprs.size()-1 == CommaLocs.size())&&
1615 "Unexpected number of commas!");
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00001616 return Actions.ActOnCXXTypeConstructExpr(TypeRep, T.getOpenLocation(),
Benjamin Kramer62b95d82012-08-23 21:35:17 +00001617 Exprs,
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00001618 T.getCloseLocation());
Argyrios Kyrtzidis857fcc22008-08-22 15:38:55 +00001619 }
Argyrios Kyrtzidis857fcc22008-08-22 15:38:55 +00001620}
1621
Douglas Gregor7bab5ff2009-11-25 00:27:52 +00001622/// ParseCXXCondition - if/switch/while condition expression.
Argyrios Kyrtzidis2b4072f2008-09-09 20:38:47 +00001623///
1624/// condition:
1625/// expression
1626/// type-specifier-seq declarator '=' assignment-expression
Richard Smith2a15b742012-02-22 06:49:09 +00001627/// [C++11] type-specifier-seq declarator '=' initializer-clause
1628/// [C++11] type-specifier-seq declarator braced-init-list
Argyrios Kyrtzidis2b4072f2008-09-09 20:38:47 +00001629/// [GNU] type-specifier-seq declarator simple-asm-expr[opt] attributes[opt]
1630/// '=' assignment-expression
1631///
Dmitri Gribenkodd28e792012-08-24 00:01:24 +00001632/// \param ExprOut if the condition was parsed as an expression, the parsed
1633/// expression.
Douglas Gregor7bab5ff2009-11-25 00:27:52 +00001634///
Dmitri Gribenkodd28e792012-08-24 00:01:24 +00001635/// \param DeclOut if the condition was parsed as a declaration, the parsed
1636/// declaration.
Douglas Gregor7bab5ff2009-11-25 00:27:52 +00001637///
Douglas Gregore60e41a2010-05-06 17:25:47 +00001638/// \param Loc The location of the start of the statement that requires this
1639/// condition, e.g., the "for" in a for loop.
1640///
1641/// \param ConvertToBoolean Whether the condition expression should be
1642/// converted to a boolean value.
1643///
Douglas Gregor7bab5ff2009-11-25 00:27:52 +00001644/// \returns true if there was a parsing, false otherwise.
John McCalldadc5752010-08-24 06:29:42 +00001645bool Parser::ParseCXXCondition(ExprResult &ExprOut,
1646 Decl *&DeclOut,
Douglas Gregore60e41a2010-05-06 17:25:47 +00001647 SourceLocation Loc,
1648 bool ConvertToBoolean) {
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001649 if (Tok.is(tok::code_completion)) {
John McCallfaf5fb42010-08-26 23:41:50 +00001650 Actions.CodeCompleteOrdinaryName(getCurScope(), Sema::PCC_Condition);
Argyrios Kyrtzidis5cec2ae2011-09-04 03:32:15 +00001651 cutOffParsing();
1652 return true;
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001653 }
1654
Alexis Hunt6aa9bee2012-06-23 05:07:58 +00001655 ParsedAttributesWithRange attrs(AttrFactory);
Richard Smith89645bc2013-01-02 12:01:23 +00001656 MaybeParseCXX11Attributes(attrs);
Alexis Hunt6aa9bee2012-06-23 05:07:58 +00001657
Douglas Gregor7bab5ff2009-11-25 00:27:52 +00001658 if (!isCXXConditionDeclaration()) {
Alexis Hunt6aa9bee2012-06-23 05:07:58 +00001659 ProhibitAttributes(attrs);
1660
Douglas Gregore60e41a2010-05-06 17:25:47 +00001661 // Parse the expression.
John McCalldadc5752010-08-24 06:29:42 +00001662 ExprOut = ParseExpression(); // expression
Craig Topper161e4db2014-05-21 06:02:52 +00001663 DeclOut = nullptr;
John McCalldadc5752010-08-24 06:29:42 +00001664 if (ExprOut.isInvalid())
Douglas Gregore60e41a2010-05-06 17:25:47 +00001665 return true;
1666
1667 // If required, convert to a boolean value.
1668 if (ConvertToBoolean)
John McCalldadc5752010-08-24 06:29:42 +00001669 ExprOut
1670 = Actions.ActOnBooleanCondition(getCurScope(), Loc, ExprOut.get());
1671 return ExprOut.isInvalid();
Douglas Gregor7bab5ff2009-11-25 00:27:52 +00001672 }
Argyrios Kyrtzidis2b4072f2008-09-09 20:38:47 +00001673
1674 // type-specifier-seq
John McCall084e83d2011-03-24 11:26:52 +00001675 DeclSpec DS(AttrFactory);
Richard Smith54ecd982013-02-20 19:22:51 +00001676 DS.takeAttributesFrom(attrs);
Argyrios Kyrtzidis2b4072f2008-09-09 20:38:47 +00001677 ParseSpecifierQualifierList(DS);
1678
1679 // declarator
1680 Declarator DeclaratorInfo(DS, Declarator::ConditionContext);
1681 ParseDeclarator(DeclaratorInfo);
1682
1683 // simple-asm-expr[opt]
1684 if (Tok.is(tok::kw_asm)) {
Sebastian Redlf6591ca2009-02-09 18:23:29 +00001685 SourceLocation Loc;
John McCalldadc5752010-08-24 06:29:42 +00001686 ExprResult AsmLabel(ParseSimpleAsm(&Loc));
Sebastian Redl17f2c7d2008-12-09 13:15:23 +00001687 if (AsmLabel.isInvalid()) {
Alexey Bataevee6507d2013-11-18 08:17:37 +00001688 SkipUntil(tok::semi, StopAtSemi);
Douglas Gregor7bab5ff2009-11-25 00:27:52 +00001689 return true;
Argyrios Kyrtzidis2b4072f2008-09-09 20:38:47 +00001690 }
Nikola Smiljanic01a75982014-05-29 10:55:11 +00001691 DeclaratorInfo.setAsmLabel(AsmLabel.get());
Sebastian Redlf6591ca2009-02-09 18:23:29 +00001692 DeclaratorInfo.SetRangeEnd(Loc);
Argyrios Kyrtzidis2b4072f2008-09-09 20:38:47 +00001693 }
1694
1695 // If attributes are present, parse them.
John McCall53fa7142010-12-24 02:08:15 +00001696 MaybeParseGNUAttributes(DeclaratorInfo);
Argyrios Kyrtzidis2b4072f2008-09-09 20:38:47 +00001697
Douglas Gregor7bab5ff2009-11-25 00:27:52 +00001698 // Type-check the declaration itself.
John McCalldadc5752010-08-24 06:29:42 +00001699 DeclResult Dcl = Actions.ActOnCXXConditionDeclaration(getCurScope(),
John McCall53fa7142010-12-24 02:08:15 +00001700 DeclaratorInfo);
John McCalldadc5752010-08-24 06:29:42 +00001701 DeclOut = Dcl.get();
1702 ExprOut = ExprError();
Argyrios Kyrtzidisb5c7c512010-10-08 02:39:23 +00001703
Argyrios Kyrtzidis2b4072f2008-09-09 20:38:47 +00001704 // '=' assignment-expression
Richard Trieuc64d3232012-01-18 22:54:52 +00001705 // If a '==' or '+=' is found, suggest a fixit to '='.
Richard Smith2a15b742012-02-22 06:49:09 +00001706 bool CopyInitialization = isTokenEqualOrEqualTypo();
1707 if (CopyInitialization)
Jeffrey Yasskin8dfa5f12011-01-18 02:00:16 +00001708 ConsumeToken();
Richard Smith2a15b742012-02-22 06:49:09 +00001709
1710 ExprResult InitExpr = ExprError();
Richard Smith2bf7fdb2013-01-02 11:42:31 +00001711 if (getLangOpts().CPlusPlus11 && Tok.is(tok::l_brace)) {
Richard Smith2a15b742012-02-22 06:49:09 +00001712 Diag(Tok.getLocation(),
1713 diag::warn_cxx98_compat_generalized_initializer_lists);
1714 InitExpr = ParseBraceInitializer();
1715 } else if (CopyInitialization) {
1716 InitExpr = ParseAssignmentExpression();
1717 } else if (Tok.is(tok::l_paren)) {
1718 // This was probably an attempt to initialize the variable.
1719 SourceLocation LParen = ConsumeParen(), RParen = LParen;
Alexey Bataevee6507d2013-11-18 08:17:37 +00001720 if (SkipUntil(tok::r_paren, StopAtSemi | StopBeforeMatch))
Richard Smith2a15b742012-02-22 06:49:09 +00001721 RParen = ConsumeParen();
1722 Diag(DeclOut ? DeclOut->getLocation() : LParen,
1723 diag::err_expected_init_in_condition_lparen)
1724 << SourceRange(LParen, RParen);
Douglas Gregor7bab5ff2009-11-25 00:27:52 +00001725 } else {
Richard Smith2a15b742012-02-22 06:49:09 +00001726 Diag(DeclOut ? DeclOut->getLocation() : Tok.getLocation(),
1727 diag::err_expected_init_in_condition);
Douglas Gregor7bab5ff2009-11-25 00:27:52 +00001728 }
Richard Smith2a15b742012-02-22 06:49:09 +00001729
1730 if (!InitExpr.isInvalid())
Nikola Smiljanic01a75982014-05-29 10:55:11 +00001731 Actions.AddInitializerToDecl(DeclOut, InitExpr.get(), !CopyInitialization,
Richard Smith74aeef52013-04-26 16:15:35 +00001732 DS.containsPlaceholderType());
Richard Smith27d807c2013-04-30 13:56:41 +00001733 else
1734 Actions.ActOnInitializerError(DeclOut);
Richard Smith2a15b742012-02-22 06:49:09 +00001735
Douglas Gregore60e41a2010-05-06 17:25:47 +00001736 // FIXME: Build a reference to this declaration? Convert it to bool?
1737 // (This is currently handled by Sema).
Richard Smithb2bc2e62011-02-21 20:05:19 +00001738
1739 Actions.FinalizeDeclaration(DeclOut);
Douglas Gregore60e41a2010-05-06 17:25:47 +00001740
Douglas Gregor7bab5ff2009-11-25 00:27:52 +00001741 return false;
Argyrios Kyrtzidis2b4072f2008-09-09 20:38:47 +00001742}
1743
Argyrios Kyrtzidis857fcc22008-08-22 15:38:55 +00001744/// ParseCXXSimpleTypeSpecifier - [C++ 7.1.5.2] Simple type specifiers.
1745/// This should only be called when the current token is known to be part of
1746/// simple-type-specifier.
1747///
1748/// simple-type-specifier:
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +00001749/// '::'[opt] nested-name-specifier[opt] type-name
Argyrios Kyrtzidis857fcc22008-08-22 15:38:55 +00001750/// '::'[opt] nested-name-specifier 'template' simple-template-id [TODO]
1751/// char
1752/// wchar_t
1753/// bool
1754/// short
1755/// int
1756/// long
1757/// signed
1758/// unsigned
1759/// float
1760/// double
1761/// void
1762/// [GNU] typeof-specifier
1763/// [C++0x] auto [TODO]
1764///
1765/// type-name:
1766/// class-name
1767/// enum-name
1768/// typedef-name
1769///
1770void Parser::ParseCXXSimpleTypeSpecifier(DeclSpec &DS) {
1771 DS.SetRangeStart(Tok.getLocation());
1772 const char *PrevSpec;
John McCall49bfce42009-08-03 20:12:06 +00001773 unsigned DiagID;
Argyrios Kyrtzidis857fcc22008-08-22 15:38:55 +00001774 SourceLocation Loc = Tok.getLocation();
Erik Verbruggen888d52a2014-01-15 09:15:43 +00001775 const clang::PrintingPolicy &Policy =
1776 Actions.getASTContext().getPrintingPolicy();
Mike Stump11289f42009-09-09 15:08:12 +00001777
Argyrios Kyrtzidis857fcc22008-08-22 15:38:55 +00001778 switch (Tok.getKind()) {
Chris Lattner45ddec32009-01-05 00:13:00 +00001779 case tok::identifier: // foo::bar
1780 case tok::coloncolon: // ::foo::bar
David Blaikie83d382b2011-09-23 05:06:16 +00001781 llvm_unreachable("Annotation token should already be formed!");
Mike Stump11289f42009-09-09 15:08:12 +00001782 default:
David Blaikie83d382b2011-09-23 05:06:16 +00001783 llvm_unreachable("Not a simple-type-specifier token!");
Chris Lattner45ddec32009-01-05 00:13:00 +00001784
Argyrios Kyrtzidis857fcc22008-08-22 15:38:55 +00001785 // type-name
Chris Lattnera8a3f732009-01-06 05:06:21 +00001786 case tok::annot_typename: {
Douglas Gregor0231d8d2011-01-19 20:10:05 +00001787 if (getTypeAnnotation(Tok))
1788 DS.SetTypeSpecType(DeclSpec::TST_typename, Loc, PrevSpec, DiagID,
Erik Verbruggen888d52a2014-01-15 09:15:43 +00001789 getTypeAnnotation(Tok), Policy);
Douglas Gregor0231d8d2011-01-19 20:10:05 +00001790 else
1791 DS.SetTypeSpecError();
Douglas Gregor06e41ae2010-10-21 23:17:00 +00001792
1793 DS.SetRangeEnd(Tok.getAnnotationEndLoc());
1794 ConsumeToken();
1795
1796 // Objective-C supports syntax of the form 'id<proto1,proto2>' where 'id'
1797 // is a specific typedef and 'itf<proto1,proto2>' where 'itf' is an
1798 // Objective-C interface. If we don't have Objective-C or a '<', this is
1799 // just a normal reference to a typedef name.
David Blaikiebbafb8a2012-03-11 07:00:24 +00001800 if (Tok.is(tok::less) && getLangOpts().ObjC1)
Douglas Gregor06e41ae2010-10-21 23:17:00 +00001801 ParseObjCProtocolQualifiers(DS);
1802
Erik Verbruggen888d52a2014-01-15 09:15:43 +00001803 DS.Finish(Diags, PP, Policy);
Douglas Gregor06e41ae2010-10-21 23:17:00 +00001804 return;
Argyrios Kyrtzidis857fcc22008-08-22 15:38:55 +00001805 }
Mike Stump11289f42009-09-09 15:08:12 +00001806
Argyrios Kyrtzidis857fcc22008-08-22 15:38:55 +00001807 // builtin types
1808 case tok::kw_short:
Erik Verbruggen888d52a2014-01-15 09:15:43 +00001809 DS.SetTypeSpecWidth(DeclSpec::TSW_short, Loc, PrevSpec, DiagID, Policy);
Argyrios Kyrtzidis857fcc22008-08-22 15:38:55 +00001810 break;
1811 case tok::kw_long:
Erik Verbruggen888d52a2014-01-15 09:15:43 +00001812 DS.SetTypeSpecWidth(DeclSpec::TSW_long, Loc, PrevSpec, DiagID, Policy);
Argyrios Kyrtzidis857fcc22008-08-22 15:38:55 +00001813 break;
Francois Pichet84133e42011-04-28 01:59:37 +00001814 case tok::kw___int64:
Erik Verbruggen888d52a2014-01-15 09:15:43 +00001815 DS.SetTypeSpecWidth(DeclSpec::TSW_longlong, Loc, PrevSpec, DiagID, Policy);
Francois Pichet84133e42011-04-28 01:59:37 +00001816 break;
Argyrios Kyrtzidis857fcc22008-08-22 15:38:55 +00001817 case tok::kw_signed:
John McCall49bfce42009-08-03 20:12:06 +00001818 DS.SetTypeSpecSign(DeclSpec::TSS_signed, Loc, PrevSpec, DiagID);
Argyrios Kyrtzidis857fcc22008-08-22 15:38:55 +00001819 break;
1820 case tok::kw_unsigned:
John McCall49bfce42009-08-03 20:12:06 +00001821 DS.SetTypeSpecSign(DeclSpec::TSS_unsigned, Loc, PrevSpec, DiagID);
Argyrios Kyrtzidis857fcc22008-08-22 15:38:55 +00001822 break;
1823 case tok::kw_void:
Erik Verbruggen888d52a2014-01-15 09:15:43 +00001824 DS.SetTypeSpecType(DeclSpec::TST_void, Loc, PrevSpec, DiagID, Policy);
Argyrios Kyrtzidis857fcc22008-08-22 15:38:55 +00001825 break;
1826 case tok::kw_char:
Erik Verbruggen888d52a2014-01-15 09:15:43 +00001827 DS.SetTypeSpecType(DeclSpec::TST_char, Loc, PrevSpec, DiagID, Policy);
Argyrios Kyrtzidis857fcc22008-08-22 15:38:55 +00001828 break;
1829 case tok::kw_int:
Erik Verbruggen888d52a2014-01-15 09:15:43 +00001830 DS.SetTypeSpecType(DeclSpec::TST_int, Loc, PrevSpec, DiagID, Policy);
Argyrios Kyrtzidis857fcc22008-08-22 15:38:55 +00001831 break;
Richard Smithf016bbc2012-04-04 06:24:32 +00001832 case tok::kw___int128:
Erik Verbruggen888d52a2014-01-15 09:15:43 +00001833 DS.SetTypeSpecType(DeclSpec::TST_int128, Loc, PrevSpec, DiagID, Policy);
Richard Smithf016bbc2012-04-04 06:24:32 +00001834 break;
Anton Korobeynikovf0c267e2011-10-14 23:23:15 +00001835 case tok::kw_half:
Erik Verbruggen888d52a2014-01-15 09:15:43 +00001836 DS.SetTypeSpecType(DeclSpec::TST_half, Loc, PrevSpec, DiagID, Policy);
Anton Korobeynikovf0c267e2011-10-14 23:23:15 +00001837 break;
Argyrios Kyrtzidis857fcc22008-08-22 15:38:55 +00001838 case tok::kw_float:
Erik Verbruggen888d52a2014-01-15 09:15:43 +00001839 DS.SetTypeSpecType(DeclSpec::TST_float, Loc, PrevSpec, DiagID, Policy);
Argyrios Kyrtzidis857fcc22008-08-22 15:38:55 +00001840 break;
1841 case tok::kw_double:
Erik Verbruggen888d52a2014-01-15 09:15:43 +00001842 DS.SetTypeSpecType(DeclSpec::TST_double, Loc, PrevSpec, DiagID, Policy);
Argyrios Kyrtzidis857fcc22008-08-22 15:38:55 +00001843 break;
1844 case tok::kw_wchar_t:
Erik Verbruggen888d52a2014-01-15 09:15:43 +00001845 DS.SetTypeSpecType(DeclSpec::TST_wchar, Loc, PrevSpec, DiagID, Policy);
Argyrios Kyrtzidis857fcc22008-08-22 15:38:55 +00001846 break;
Alisdair Mereditha9ad47d2009-07-14 06:30:34 +00001847 case tok::kw_char16_t:
Erik Verbruggen888d52a2014-01-15 09:15:43 +00001848 DS.SetTypeSpecType(DeclSpec::TST_char16, Loc, PrevSpec, DiagID, Policy);
Alisdair Mereditha9ad47d2009-07-14 06:30:34 +00001849 break;
1850 case tok::kw_char32_t:
Erik Verbruggen888d52a2014-01-15 09:15:43 +00001851 DS.SetTypeSpecType(DeclSpec::TST_char32, Loc, PrevSpec, DiagID, Policy);
Alisdair Mereditha9ad47d2009-07-14 06:30:34 +00001852 break;
Argyrios Kyrtzidis857fcc22008-08-22 15:38:55 +00001853 case tok::kw_bool:
Erik Verbruggen888d52a2014-01-15 09:15:43 +00001854 DS.SetTypeSpecType(DeclSpec::TST_bool, Loc, PrevSpec, DiagID, Policy);
Argyrios Kyrtzidis857fcc22008-08-22 15:38:55 +00001855 break;
David Blaikie25896afb2012-01-24 05:47:35 +00001856 case tok::annot_decltype:
1857 case tok::kw_decltype:
1858 DS.SetRangeEnd(ParseDecltypeSpecifier(DS));
Erik Verbruggen888d52a2014-01-15 09:15:43 +00001859 return DS.Finish(Diags, PP, Policy);
Mike Stump11289f42009-09-09 15:08:12 +00001860
Argyrios Kyrtzidis857fcc22008-08-22 15:38:55 +00001861 // GNU typeof support.
1862 case tok::kw_typeof:
1863 ParseTypeofSpecifier(DS);
Erik Verbruggen888d52a2014-01-15 09:15:43 +00001864 DS.Finish(Diags, PP, Policy);
Argyrios Kyrtzidis857fcc22008-08-22 15:38:55 +00001865 return;
1866 }
Chris Lattnera8a3f732009-01-06 05:06:21 +00001867 if (Tok.is(tok::annot_typename))
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +00001868 DS.SetRangeEnd(Tok.getAnnotationEndLoc());
1869 else
1870 DS.SetRangeEnd(Tok.getLocation());
Argyrios Kyrtzidis857fcc22008-08-22 15:38:55 +00001871 ConsumeToken();
Erik Verbruggen888d52a2014-01-15 09:15:43 +00001872 DS.Finish(Diags, PP, Policy);
Argyrios Kyrtzidis857fcc22008-08-22 15:38:55 +00001873}
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00001874
Douglas Gregordbc5daf2008-11-07 20:08:42 +00001875/// ParseCXXTypeSpecifierSeq - Parse a C++ type-specifier-seq (C++
1876/// [dcl.name]), which is a non-empty sequence of type-specifiers,
1877/// e.g., "const short int". Note that the DeclSpec is *not* finished
1878/// by parsing the type-specifier-seq, because these sequences are
1879/// typically followed by some form of declarator. Returns true and
1880/// emits diagnostics if this is not a type-specifier-seq, false
1881/// otherwise.
1882///
1883/// type-specifier-seq: [C++ 8.1]
1884/// type-specifier type-specifier-seq[opt]
1885///
1886bool Parser::ParseCXXTypeSpecifierSeq(DeclSpec &DS) {
Richard Smithc5b05522012-03-12 07:56:15 +00001887 ParseSpecifierQualifierList(DS, AS_none, DSC_type_specifier);
Erik Verbruggen888d52a2014-01-15 09:15:43 +00001888 DS.Finish(Diags, PP, Actions.getASTContext().getPrintingPolicy());
Douglas Gregordbc5daf2008-11-07 20:08:42 +00001889 return false;
1890}
1891
Douglas Gregor7861a802009-11-03 01:35:08 +00001892/// \brief Finish parsing a C++ unqualified-id that is a template-id of
1893/// some form.
1894///
1895/// This routine is invoked when a '<' is encountered after an identifier or
1896/// operator-function-id is parsed by \c ParseUnqualifiedId() to determine
1897/// whether the unqualified-id is actually a template-id. This routine will
1898/// then parse the template arguments and form the appropriate template-id to
1899/// return to the caller.
1900///
1901/// \param SS the nested-name-specifier that precedes this template-id, if
1902/// we're actually parsing a qualified-id.
1903///
1904/// \param Name for constructor and destructor names, this is the actual
1905/// identifier that may be a template-name.
1906///
1907/// \param NameLoc the location of the class-name in a constructor or
1908/// destructor.
1909///
1910/// \param EnteringContext whether we're entering the scope of the
1911/// nested-name-specifier.
1912///
Douglas Gregor127ea592009-11-03 21:24:04 +00001913/// \param ObjectType if this unqualified-id occurs within a member access
1914/// expression, the type of the base object whose member is being accessed.
1915///
Douglas Gregor7861a802009-11-03 01:35:08 +00001916/// \param Id as input, describes the template-name or operator-function-id
1917/// that precedes the '<'. If template arguments were parsed successfully,
1918/// will be updated with the template-id.
1919///
Douglas Gregore610ada2010-02-24 18:44:31 +00001920/// \param AssumeTemplateId When true, this routine will assume that the name
1921/// refers to a template without performing name lookup to verify.
1922///
Douglas Gregor7861a802009-11-03 01:35:08 +00001923/// \returns true if a parse error occurred, false otherwise.
1924bool Parser::ParseUnqualifiedIdTemplateId(CXXScopeSpec &SS,
Abramo Bagnara7945c982012-01-27 09:46:47 +00001925 SourceLocation TemplateKWLoc,
Douglas Gregor7861a802009-11-03 01:35:08 +00001926 IdentifierInfo *Name,
1927 SourceLocation NameLoc,
1928 bool EnteringContext,
John McCallba7bf592010-08-24 05:47:05 +00001929 ParsedType ObjectType,
Douglas Gregore610ada2010-02-24 18:44:31 +00001930 UnqualifiedId &Id,
Abramo Bagnara7945c982012-01-27 09:46:47 +00001931 bool AssumeTemplateId) {
Douglas Gregorb22ee882010-05-05 05:58:24 +00001932 assert((AssumeTemplateId || Tok.is(tok::less)) &&
1933 "Expected '<' to finish parsing a template-id");
Douglas Gregor7861a802009-11-03 01:35:08 +00001934
1935 TemplateTy Template;
1936 TemplateNameKind TNK = TNK_Non_template;
1937 switch (Id.getKind()) {
1938 case UnqualifiedId::IK_Identifier:
Douglas Gregor3cf81312009-11-03 23:16:33 +00001939 case UnqualifiedId::IK_OperatorFunctionId:
Alexis Hunted0530f2009-11-28 08:58:14 +00001940 case UnqualifiedId::IK_LiteralOperatorId:
Douglas Gregore610ada2010-02-24 18:44:31 +00001941 if (AssumeTemplateId) {
Abramo Bagnara7945c982012-01-27 09:46:47 +00001942 TNK = Actions.ActOnDependentTemplateName(getCurScope(), SS, TemplateKWLoc,
Douglas Gregorbb119652010-06-16 23:00:59 +00001943 Id, ObjectType, EnteringContext,
1944 Template);
1945 if (TNK == TNK_Non_template)
1946 return true;
Douglas Gregor786123d2010-05-21 23:18:07 +00001947 } else {
1948 bool MemberOfUnknownSpecialization;
Abramo Bagnara7c5dee42010-08-06 12:11:11 +00001949 TNK = Actions.isTemplateName(getCurScope(), SS,
1950 TemplateKWLoc.isValid(), Id,
1951 ObjectType, EnteringContext, Template,
Douglas Gregor786123d2010-05-21 23:18:07 +00001952 MemberOfUnknownSpecialization);
1953
1954 if (TNK == TNK_Non_template && MemberOfUnknownSpecialization &&
1955 ObjectType && IsTemplateArgumentList()) {
1956 // We have something like t->getAs<T>(), where getAs is a
1957 // member of an unknown specialization. However, this will only
1958 // parse correctly as a template, so suggest the keyword 'template'
1959 // before 'getAs' and treat this as a dependent template name.
1960 std::string Name;
1961 if (Id.getKind() == UnqualifiedId::IK_Identifier)
1962 Name = Id.Identifier->getName();
1963 else {
1964 Name = "operator ";
1965 if (Id.getKind() == UnqualifiedId::IK_OperatorFunctionId)
1966 Name += getOperatorSpelling(Id.OperatorFunctionId.Operator);
1967 else
1968 Name += Id.Identifier->getName();
1969 }
1970 Diag(Id.StartLocation, diag::err_missing_dependent_template_keyword)
1971 << Name
1972 << FixItHint::CreateInsertion(Id.StartLocation, "template ");
Abramo Bagnara7945c982012-01-27 09:46:47 +00001973 TNK = Actions.ActOnDependentTemplateName(getCurScope(),
1974 SS, TemplateKWLoc, Id,
1975 ObjectType, EnteringContext,
1976 Template);
Douglas Gregorbb119652010-06-16 23:00:59 +00001977 if (TNK == TNK_Non_template)
Douglas Gregor786123d2010-05-21 23:18:07 +00001978 return true;
1979 }
1980 }
Douglas Gregor7861a802009-11-03 01:35:08 +00001981 break;
1982
Douglas Gregor3cf81312009-11-03 23:16:33 +00001983 case UnqualifiedId::IK_ConstructorName: {
1984 UnqualifiedId TemplateName;
Douglas Gregor786123d2010-05-21 23:18:07 +00001985 bool MemberOfUnknownSpecialization;
Douglas Gregor3cf81312009-11-03 23:16:33 +00001986 TemplateName.setIdentifier(Name, NameLoc);
Abramo Bagnara7c5dee42010-08-06 12:11:11 +00001987 TNK = Actions.isTemplateName(getCurScope(), SS, TemplateKWLoc.isValid(),
1988 TemplateName, ObjectType,
Douglas Gregor786123d2010-05-21 23:18:07 +00001989 EnteringContext, Template,
1990 MemberOfUnknownSpecialization);
Douglas Gregor7861a802009-11-03 01:35:08 +00001991 break;
1992 }
1993
Douglas Gregor3cf81312009-11-03 23:16:33 +00001994 case UnqualifiedId::IK_DestructorName: {
1995 UnqualifiedId TemplateName;
Douglas Gregor786123d2010-05-21 23:18:07 +00001996 bool MemberOfUnknownSpecialization;
Douglas Gregor3cf81312009-11-03 23:16:33 +00001997 TemplateName.setIdentifier(Name, NameLoc);
Douglas Gregor30d60cb2009-11-03 19:44:04 +00001998 if (ObjectType) {
Abramo Bagnara7945c982012-01-27 09:46:47 +00001999 TNK = Actions.ActOnDependentTemplateName(getCurScope(),
2000 SS, TemplateKWLoc, TemplateName,
2001 ObjectType, EnteringContext,
2002 Template);
Douglas Gregorbb119652010-06-16 23:00:59 +00002003 if (TNK == TNK_Non_template)
Douglas Gregor30d60cb2009-11-03 19:44:04 +00002004 return true;
2005 } else {
Abramo Bagnara7c5dee42010-08-06 12:11:11 +00002006 TNK = Actions.isTemplateName(getCurScope(), SS, TemplateKWLoc.isValid(),
2007 TemplateName, ObjectType,
Douglas Gregor786123d2010-05-21 23:18:07 +00002008 EnteringContext, Template,
2009 MemberOfUnknownSpecialization);
Douglas Gregor30d60cb2009-11-03 19:44:04 +00002010
John McCallba7bf592010-08-24 05:47:05 +00002011 if (TNK == TNK_Non_template && !Id.DestructorName.get()) {
Douglas Gregorfe17d252010-02-16 19:09:40 +00002012 Diag(NameLoc, diag::err_destructor_template_id)
2013 << Name << SS.getRange();
Douglas Gregor30d60cb2009-11-03 19:44:04 +00002014 return true;
2015 }
2016 }
Douglas Gregor7861a802009-11-03 01:35:08 +00002017 break;
Douglas Gregor3cf81312009-11-03 23:16:33 +00002018 }
Douglas Gregor7861a802009-11-03 01:35:08 +00002019
2020 default:
2021 return false;
2022 }
2023
2024 if (TNK == TNK_Non_template)
2025 return false;
2026
2027 // Parse the enclosed template argument list.
2028 SourceLocation LAngleLoc, RAngleLoc;
2029 TemplateArgList TemplateArgs;
Douglas Gregorb22ee882010-05-05 05:58:24 +00002030 if (Tok.is(tok::less) &&
2031 ParseTemplateIdAfterTemplateName(Template, Id.StartLocation,
Douglas Gregore7c20652011-03-02 00:47:37 +00002032 SS, true, LAngleLoc,
Douglas Gregor7861a802009-11-03 01:35:08 +00002033 TemplateArgs,
Douglas Gregor7861a802009-11-03 01:35:08 +00002034 RAngleLoc))
2035 return true;
2036
2037 if (Id.getKind() == UnqualifiedId::IK_Identifier ||
Alexis Hunted0530f2009-11-28 08:58:14 +00002038 Id.getKind() == UnqualifiedId::IK_OperatorFunctionId ||
2039 Id.getKind() == UnqualifiedId::IK_LiteralOperatorId) {
Douglas Gregor7861a802009-11-03 01:35:08 +00002040 // Form a parsed representation of the template-id to be stored in the
2041 // UnqualifiedId.
2042 TemplateIdAnnotation *TemplateId
Benjamin Kramer1e6b6062012-04-14 12:14:03 +00002043 = TemplateIdAnnotation::Allocate(TemplateArgs.size(), TemplateIds);
Douglas Gregor7861a802009-11-03 01:35:08 +00002044
Richard Smith72bfbd82013-12-04 00:28:23 +00002045 // FIXME: Store name for literal operator too.
Douglas Gregor7861a802009-11-03 01:35:08 +00002046 if (Id.getKind() == UnqualifiedId::IK_Identifier) {
2047 TemplateId->Name = Id.Identifier;
Douglas Gregor3cf81312009-11-03 23:16:33 +00002048 TemplateId->Operator = OO_None;
Douglas Gregor7861a802009-11-03 01:35:08 +00002049 TemplateId->TemplateNameLoc = Id.StartLocation;
2050 } else {
Craig Topper161e4db2014-05-21 06:02:52 +00002051 TemplateId->Name = nullptr;
Douglas Gregor3cf81312009-11-03 23:16:33 +00002052 TemplateId->Operator = Id.OperatorFunctionId.Operator;
2053 TemplateId->TemplateNameLoc = Id.StartLocation;
Douglas Gregor7861a802009-11-03 01:35:08 +00002054 }
2055
Douglas Gregore7c20652011-03-02 00:47:37 +00002056 TemplateId->SS = SS;
Benjamin Kramer807c2db2012-02-19 23:37:39 +00002057 TemplateId->TemplateKWLoc = TemplateKWLoc;
John McCall3e56fd42010-08-23 07:28:44 +00002058 TemplateId->Template = Template;
Douglas Gregor7861a802009-11-03 01:35:08 +00002059 TemplateId->Kind = TNK;
2060 TemplateId->LAngleLoc = LAngleLoc;
2061 TemplateId->RAngleLoc = RAngleLoc;
Douglas Gregorb53edfb2009-11-10 19:49:08 +00002062 ParsedTemplateArgument *Args = TemplateId->getTemplateArgs();
Douglas Gregor7861a802009-11-03 01:35:08 +00002063 for (unsigned Arg = 0, ArgEnd = TemplateArgs.size();
Douglas Gregorb53edfb2009-11-10 19:49:08 +00002064 Arg != ArgEnd; ++Arg)
Douglas Gregor7861a802009-11-03 01:35:08 +00002065 Args[Arg] = TemplateArgs[Arg];
Douglas Gregor7861a802009-11-03 01:35:08 +00002066
2067 Id.setTemplateId(TemplateId);
2068 return false;
2069 }
2070
2071 // Bundle the template arguments together.
Benjamin Kramercc4c49d2012-08-23 23:38:35 +00002072 ASTTemplateArgsPtr TemplateArgsPtr(TemplateArgs);
Abramo Bagnara4244b432012-01-27 08:46:19 +00002073
Douglas Gregor7861a802009-11-03 01:35:08 +00002074 // Constructor and destructor names.
John McCallfaf5fb42010-08-26 23:41:50 +00002075 TypeResult Type
Abramo Bagnara48c05be2012-02-06 14:41:24 +00002076 = Actions.ActOnTemplateIdType(SS, TemplateKWLoc,
2077 Template, NameLoc,
Abramo Bagnara4244b432012-01-27 08:46:19 +00002078 LAngleLoc, TemplateArgsPtr, RAngleLoc,
2079 /*IsCtorOrDtorName=*/true);
Douglas Gregor7861a802009-11-03 01:35:08 +00002080 if (Type.isInvalid())
2081 return true;
2082
2083 if (Id.getKind() == UnqualifiedId::IK_ConstructorName)
2084 Id.setConstructorName(Type.get(), NameLoc, RAngleLoc);
2085 else
2086 Id.setDestructorName(Id.StartLocation, Type.get(), RAngleLoc);
2087
2088 return false;
2089}
2090
Douglas Gregor71395fa2009-11-04 00:56:37 +00002091/// \brief Parse an operator-function-id or conversion-function-id as part
2092/// of a C++ unqualified-id.
2093///
2094/// This routine is responsible only for parsing the operator-function-id or
2095/// conversion-function-id; it does not handle template arguments in any way.
Douglas Gregor7861a802009-11-03 01:35:08 +00002096///
2097/// \code
Douglas Gregor7861a802009-11-03 01:35:08 +00002098/// operator-function-id: [C++ 13.5]
2099/// 'operator' operator
2100///
Douglas Gregor71395fa2009-11-04 00:56:37 +00002101/// operator: one of
Douglas Gregor7861a802009-11-03 01:35:08 +00002102/// new delete new[] delete[]
2103/// + - * / % ^ & | ~
2104/// ! = < > += -= *= /= %=
2105/// ^= &= |= << >> >>= <<= == !=
2106/// <= >= && || ++ -- , ->* ->
2107/// () []
2108///
2109/// conversion-function-id: [C++ 12.3.2]
2110/// operator conversion-type-id
2111///
2112/// conversion-type-id:
2113/// type-specifier-seq conversion-declarator[opt]
2114///
2115/// conversion-declarator:
2116/// ptr-operator conversion-declarator[opt]
2117/// \endcode
2118///
Dmitri Gribenkodd28e792012-08-24 00:01:24 +00002119/// \param SS The nested-name-specifier that preceded this unqualified-id. If
Douglas Gregor7861a802009-11-03 01:35:08 +00002120/// non-empty, then we are parsing the unqualified-id of a qualified-id.
2121///
2122/// \param EnteringContext whether we are entering the scope of the
2123/// nested-name-specifier.
2124///
Douglas Gregor71395fa2009-11-04 00:56:37 +00002125/// \param ObjectType if this unqualified-id occurs within a member access
2126/// expression, the type of the base object whose member is being accessed.
2127///
2128/// \param Result on a successful parse, contains the parsed unqualified-id.
2129///
2130/// \returns true if parsing fails, false otherwise.
2131bool Parser::ParseUnqualifiedIdOperator(CXXScopeSpec &SS, bool EnteringContext,
John McCallba7bf592010-08-24 05:47:05 +00002132 ParsedType ObjectType,
Douglas Gregor71395fa2009-11-04 00:56:37 +00002133 UnqualifiedId &Result) {
2134 assert(Tok.is(tok::kw_operator) && "Expected 'operator' keyword");
2135
2136 // Consume the 'operator' keyword.
2137 SourceLocation KeywordLoc = ConsumeToken();
2138
2139 // Determine what kind of operator name we have.
2140 unsigned SymbolIdx = 0;
2141 SourceLocation SymbolLocations[3];
2142 OverloadedOperatorKind Op = OO_None;
2143 switch (Tok.getKind()) {
2144 case tok::kw_new:
2145 case tok::kw_delete: {
2146 bool isNew = Tok.getKind() == tok::kw_new;
2147 // Consume the 'new' or 'delete'.
2148 SymbolLocations[SymbolIdx++] = ConsumeToken();
Richard Smith7bdcc4a2012-04-10 01:32:12 +00002149 // Check for array new/delete.
2150 if (Tok.is(tok::l_square) &&
Richard Smith2bf7fdb2013-01-02 11:42:31 +00002151 (!getLangOpts().CPlusPlus11 || NextToken().isNot(tok::l_square))) {
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00002152 // Consume the '[' and ']'.
2153 BalancedDelimiterTracker T(*this, tok::l_square);
2154 T.consumeOpen();
2155 T.consumeClose();
2156 if (T.getCloseLocation().isInvalid())
Douglas Gregor71395fa2009-11-04 00:56:37 +00002157 return true;
2158
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00002159 SymbolLocations[SymbolIdx++] = T.getOpenLocation();
2160 SymbolLocations[SymbolIdx++] = T.getCloseLocation();
Douglas Gregor71395fa2009-11-04 00:56:37 +00002161 Op = isNew? OO_Array_New : OO_Array_Delete;
2162 } else {
2163 Op = isNew? OO_New : OO_Delete;
2164 }
2165 break;
2166 }
2167
2168#define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \
2169 case tok::Token: \
2170 SymbolLocations[SymbolIdx++] = ConsumeToken(); \
2171 Op = OO_##Name; \
2172 break;
2173#define OVERLOADED_OPERATOR_MULTI(Name,Spelling,Unary,Binary,MemberOnly)
2174#include "clang/Basic/OperatorKinds.def"
2175
2176 case tok::l_paren: {
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00002177 // Consume the '(' and ')'.
2178 BalancedDelimiterTracker T(*this, tok::l_paren);
2179 T.consumeOpen();
2180 T.consumeClose();
2181 if (T.getCloseLocation().isInvalid())
Douglas Gregor71395fa2009-11-04 00:56:37 +00002182 return true;
2183
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00002184 SymbolLocations[SymbolIdx++] = T.getOpenLocation();
2185 SymbolLocations[SymbolIdx++] = T.getCloseLocation();
Douglas Gregor71395fa2009-11-04 00:56:37 +00002186 Op = OO_Call;
2187 break;
2188 }
2189
2190 case tok::l_square: {
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00002191 // Consume the '[' and ']'.
2192 BalancedDelimiterTracker T(*this, tok::l_square);
2193 T.consumeOpen();
2194 T.consumeClose();
2195 if (T.getCloseLocation().isInvalid())
Douglas Gregor71395fa2009-11-04 00:56:37 +00002196 return true;
2197
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00002198 SymbolLocations[SymbolIdx++] = T.getOpenLocation();
2199 SymbolLocations[SymbolIdx++] = T.getCloseLocation();
Douglas Gregor71395fa2009-11-04 00:56:37 +00002200 Op = OO_Subscript;
2201 break;
2202 }
2203
2204 case tok::code_completion: {
2205 // Code completion for the operator name.
Douglas Gregor0be31a22010-07-02 17:43:08 +00002206 Actions.CodeCompleteOperatorName(getCurScope());
Argyrios Kyrtzidis5cec2ae2011-09-04 03:32:15 +00002207 cutOffParsing();
Douglas Gregor71395fa2009-11-04 00:56:37 +00002208 // Don't try to parse any further.
2209 return true;
2210 }
2211
2212 default:
2213 break;
2214 }
2215
2216 if (Op != OO_None) {
2217 // We have parsed an operator-function-id.
2218 Result.setOperatorFunctionId(KeywordLoc, Op, SymbolLocations);
2219 return false;
2220 }
Alexis Hunt34458502009-11-28 04:44:28 +00002221
2222 // Parse a literal-operator-id.
2223 //
Richard Smith6f212062012-10-20 08:41:10 +00002224 // literal-operator-id: C++11 [over.literal]
2225 // operator string-literal identifier
2226 // operator user-defined-string-literal
Alexis Hunt34458502009-11-28 04:44:28 +00002227
Richard Smith2bf7fdb2013-01-02 11:42:31 +00002228 if (getLangOpts().CPlusPlus11 && isTokenStringLiteral()) {
Richard Smith5d164bc2011-10-15 05:09:34 +00002229 Diag(Tok.getLocation(), diag::warn_cxx98_compat_literal_operator);
Alexis Hunt34458502009-11-28 04:44:28 +00002230
Richard Smith7d182a72012-03-08 23:06:02 +00002231 SourceLocation DiagLoc;
2232 unsigned DiagId = 0;
2233
2234 // We're past translation phase 6, so perform string literal concatenation
2235 // before checking for "".
Dmitri Gribenkof8579502013-01-12 19:30:44 +00002236 SmallVector<Token, 4> Toks;
2237 SmallVector<SourceLocation, 4> TokLocs;
Richard Smith7d182a72012-03-08 23:06:02 +00002238 while (isTokenStringLiteral()) {
2239 if (!Tok.is(tok::string_literal) && !DiagId) {
Richard Smith6f212062012-10-20 08:41:10 +00002240 // C++11 [over.literal]p1:
2241 // The string-literal or user-defined-string-literal in a
2242 // literal-operator-id shall have no encoding-prefix [...].
Richard Smith7d182a72012-03-08 23:06:02 +00002243 DiagLoc = Tok.getLocation();
2244 DiagId = diag::err_literal_operator_string_prefix;
2245 }
2246 Toks.push_back(Tok);
2247 TokLocs.push_back(ConsumeStringToken());
2248 }
2249
Craig Topper9d5583e2014-06-26 04:58:39 +00002250 StringLiteralParser Literal(Toks, PP);
Richard Smith7d182a72012-03-08 23:06:02 +00002251 if (Literal.hadError)
2252 return true;
2253
2254 // Grab the literal operator's suffix, which will be either the next token
2255 // or a ud-suffix from the string literal.
Craig Topper161e4db2014-05-21 06:02:52 +00002256 IdentifierInfo *II = nullptr;
Richard Smith7d182a72012-03-08 23:06:02 +00002257 SourceLocation SuffixLoc;
2258 if (!Literal.getUDSuffix().empty()) {
2259 II = &PP.getIdentifierTable().get(Literal.getUDSuffix());
2260 SuffixLoc =
2261 Lexer::AdvanceToTokenCharacter(TokLocs[Literal.getUDSuffixToken()],
2262 Literal.getUDSuffixOffset(),
David Blaikiebbafb8a2012-03-11 07:00:24 +00002263 PP.getSourceManager(), getLangOpts());
Richard Smith7d182a72012-03-08 23:06:02 +00002264 } else if (Tok.is(tok::identifier)) {
2265 II = Tok.getIdentifierInfo();
2266 SuffixLoc = ConsumeToken();
2267 TokLocs.push_back(SuffixLoc);
2268 } else {
Alp Tokerec543272013-12-24 09:48:30 +00002269 Diag(Tok.getLocation(), diag::err_expected) << tok::identifier;
Alexis Hunt34458502009-11-28 04:44:28 +00002270 return true;
2271 }
2272
Richard Smith7d182a72012-03-08 23:06:02 +00002273 // The string literal must be empty.
2274 if (!Literal.GetString().empty() || Literal.Pascal) {
Richard Smith6f212062012-10-20 08:41:10 +00002275 // C++11 [over.literal]p1:
2276 // The string-literal or user-defined-string-literal in a
2277 // literal-operator-id shall [...] contain no characters
2278 // other than the implicit terminating '\0'.
Richard Smith7d182a72012-03-08 23:06:02 +00002279 DiagLoc = TokLocs.front();
2280 DiagId = diag::err_literal_operator_string_not_empty;
2281 }
2282
2283 if (DiagId) {
2284 // This isn't a valid literal-operator-id, but we think we know
2285 // what the user meant. Tell them what they should have written.
Dmitri Gribenkof8579502013-01-12 19:30:44 +00002286 SmallString<32> Str;
Richard Smith7d182a72012-03-08 23:06:02 +00002287 Str += "\"\" ";
2288 Str += II->getName();
2289 Diag(DiagLoc, DiagId) << FixItHint::CreateReplacement(
2290 SourceRange(TokLocs.front(), TokLocs.back()), Str);
2291 }
2292
2293 Result.setLiteralOperatorId(II, KeywordLoc, SuffixLoc);
Richard Smithd091dc12013-12-05 00:58:33 +00002294
2295 return Actions.checkLiteralOperatorId(SS, Result);
Alexis Hunt34458502009-11-28 04:44:28 +00002296 }
Richard Smithd091dc12013-12-05 00:58:33 +00002297
Douglas Gregor71395fa2009-11-04 00:56:37 +00002298 // Parse a conversion-function-id.
2299 //
2300 // conversion-function-id: [C++ 12.3.2]
2301 // operator conversion-type-id
2302 //
2303 // conversion-type-id:
2304 // type-specifier-seq conversion-declarator[opt]
2305 //
2306 // conversion-declarator:
2307 // ptr-operator conversion-declarator[opt]
2308
2309 // Parse the type-specifier-seq.
John McCall084e83d2011-03-24 11:26:52 +00002310 DeclSpec DS(AttrFactory);
Douglas Gregora25d65d2009-11-20 22:03:38 +00002311 if (ParseCXXTypeSpecifierSeq(DS)) // FIXME: ObjectType?
Douglas Gregor71395fa2009-11-04 00:56:37 +00002312 return true;
2313
2314 // Parse the conversion-declarator, which is merely a sequence of
2315 // ptr-operators.
Richard Smith01518fa2013-05-04 01:26:46 +00002316 Declarator D(DS, Declarator::ConversionIdContext);
Craig Topper161e4db2014-05-21 06:02:52 +00002317 ParseDeclaratorInternal(D, /*DirectDeclParser=*/nullptr);
2318
Douglas Gregor71395fa2009-11-04 00:56:37 +00002319 // Finish up the type.
John McCallfaf5fb42010-08-26 23:41:50 +00002320 TypeResult Ty = Actions.ActOnTypeName(getCurScope(), D);
Douglas Gregor71395fa2009-11-04 00:56:37 +00002321 if (Ty.isInvalid())
2322 return true;
2323
2324 // Note that this is a conversion-function-id.
2325 Result.setConversionFunctionId(KeywordLoc, Ty.get(),
2326 D.getSourceRange().getEnd());
2327 return false;
2328}
2329
2330/// \brief Parse a C++ unqualified-id (or a C identifier), which describes the
2331/// name of an entity.
2332///
2333/// \code
2334/// unqualified-id: [C++ expr.prim.general]
2335/// identifier
2336/// operator-function-id
2337/// conversion-function-id
2338/// [C++0x] literal-operator-id [TODO]
2339/// ~ class-name
2340/// template-id
2341///
2342/// \endcode
2343///
Dmitri Gribenkodd28e792012-08-24 00:01:24 +00002344/// \param SS The nested-name-specifier that preceded this unqualified-id. If
Douglas Gregor71395fa2009-11-04 00:56:37 +00002345/// non-empty, then we are parsing the unqualified-id of a qualified-id.
2346///
2347/// \param EnteringContext whether we are entering the scope of the
2348/// nested-name-specifier.
2349///
Douglas Gregor7861a802009-11-03 01:35:08 +00002350/// \param AllowDestructorName whether we allow parsing of a destructor name.
2351///
2352/// \param AllowConstructorName whether we allow parsing a constructor name.
2353///
Douglas Gregor127ea592009-11-03 21:24:04 +00002354/// \param ObjectType if this unqualified-id occurs within a member access
2355/// expression, the type of the base object whose member is being accessed.
2356///
Douglas Gregor7861a802009-11-03 01:35:08 +00002357/// \param Result on a successful parse, contains the parsed unqualified-id.
2358///
2359/// \returns true if parsing fails, false otherwise.
2360bool Parser::ParseUnqualifiedId(CXXScopeSpec &SS, bool EnteringContext,
2361 bool AllowDestructorName,
2362 bool AllowConstructorName,
John McCallba7bf592010-08-24 05:47:05 +00002363 ParsedType ObjectType,
Abramo Bagnara7945c982012-01-27 09:46:47 +00002364 SourceLocation& TemplateKWLoc,
Douglas Gregor7861a802009-11-03 01:35:08 +00002365 UnqualifiedId &Result) {
Douglas Gregorb22ee882010-05-05 05:58:24 +00002366
2367 // Handle 'A::template B'. This is for template-ids which have not
2368 // already been annotated by ParseOptionalCXXScopeSpecifier().
2369 bool TemplateSpecified = false;
David Blaikiebbafb8a2012-03-11 07:00:24 +00002370 if (getLangOpts().CPlusPlus && Tok.is(tok::kw_template) &&
Douglas Gregorb22ee882010-05-05 05:58:24 +00002371 (ObjectType || SS.isSet())) {
2372 TemplateSpecified = true;
2373 TemplateKWLoc = ConsumeToken();
2374 }
2375
Douglas Gregor7861a802009-11-03 01:35:08 +00002376 // unqualified-id:
2377 // identifier
2378 // template-id (when it hasn't already been annotated)
2379 if (Tok.is(tok::identifier)) {
2380 // Consume the identifier.
2381 IdentifierInfo *Id = Tok.getIdentifierInfo();
2382 SourceLocation IdLoc = ConsumeToken();
2383
David Blaikiebbafb8a2012-03-11 07:00:24 +00002384 if (!getLangOpts().CPlusPlus) {
Douglas Gregor411e5ac2010-01-11 23:29:10 +00002385 // If we're not in C++, only identifiers matter. Record the
2386 // identifier and return.
2387 Result.setIdentifier(Id, IdLoc);
2388 return false;
2389 }
2390
Douglas Gregor7861a802009-11-03 01:35:08 +00002391 if (AllowConstructorName &&
Douglas Gregor0be31a22010-07-02 17:43:08 +00002392 Actions.isCurrentClassName(*Id, getCurScope(), &SS)) {
Douglas Gregor7861a802009-11-03 01:35:08 +00002393 // We have parsed a constructor name.
Abramo Bagnara4244b432012-01-27 08:46:19 +00002394 ParsedType Ty = Actions.getTypeName(*Id, IdLoc, getCurScope(),
2395 &SS, false, false,
2396 ParsedType(),
2397 /*IsCtorOrDtorName=*/true,
2398 /*NonTrivialTypeSourceInfo=*/true);
2399 Result.setConstructorName(Ty, IdLoc, IdLoc);
Douglas Gregor7861a802009-11-03 01:35:08 +00002400 } else {
2401 // We have parsed an identifier.
2402 Result.setIdentifier(Id, IdLoc);
2403 }
2404
2405 // If the next token is a '<', we may have a template.
Douglas Gregorb22ee882010-05-05 05:58:24 +00002406 if (TemplateSpecified || Tok.is(tok::less))
Abramo Bagnara7945c982012-01-27 09:46:47 +00002407 return ParseUnqualifiedIdTemplateId(SS, TemplateKWLoc, Id, IdLoc,
2408 EnteringContext, ObjectType,
2409 Result, TemplateSpecified);
Douglas Gregor7861a802009-11-03 01:35:08 +00002410
2411 return false;
2412 }
2413
2414 // unqualified-id:
2415 // template-id (already parsed and annotated)
2416 if (Tok.is(tok::annot_template_id)) {
Argyrios Kyrtzidisc0c5dd22011-06-22 06:09:49 +00002417 TemplateIdAnnotation *TemplateId = takeTemplateIdAnnotation(Tok);
Douglas Gregor9de54ea2010-01-13 17:31:36 +00002418
2419 // If the template-name names the current class, then this is a constructor
2420 if (AllowConstructorName && TemplateId->Name &&
Douglas Gregor0be31a22010-07-02 17:43:08 +00002421 Actions.isCurrentClassName(*TemplateId->Name, getCurScope(), &SS)) {
Douglas Gregor9de54ea2010-01-13 17:31:36 +00002422 if (SS.isSet()) {
2423 // C++ [class.qual]p2 specifies that a qualified template-name
2424 // is taken as the constructor name where a constructor can be
2425 // declared. Thus, the template arguments are extraneous, so
2426 // complain about them and remove them entirely.
2427 Diag(TemplateId->TemplateNameLoc,
2428 diag::err_out_of_line_constructor_template_id)
2429 << TemplateId->Name
Douglas Gregora771f462010-03-31 17:46:05 +00002430 << FixItHint::CreateRemoval(
Douglas Gregor9de54ea2010-01-13 17:31:36 +00002431 SourceRange(TemplateId->LAngleLoc, TemplateId->RAngleLoc));
Abramo Bagnara4244b432012-01-27 08:46:19 +00002432 ParsedType Ty = Actions.getTypeName(*TemplateId->Name,
2433 TemplateId->TemplateNameLoc,
2434 getCurScope(),
2435 &SS, false, false,
2436 ParsedType(),
2437 /*IsCtorOrDtorName=*/true,
2438 /*NontrivialTypeSourceInfo=*/true);
2439 Result.setConstructorName(Ty, TemplateId->TemplateNameLoc,
Douglas Gregor9de54ea2010-01-13 17:31:36 +00002440 TemplateId->RAngleLoc);
Douglas Gregor9de54ea2010-01-13 17:31:36 +00002441 ConsumeToken();
2442 return false;
2443 }
2444
2445 Result.setConstructorTemplateId(TemplateId);
2446 ConsumeToken();
2447 return false;
2448 }
2449
Douglas Gregor7861a802009-11-03 01:35:08 +00002450 // We have already parsed a template-id; consume the annotation token as
2451 // our unqualified-id.
Douglas Gregor9de54ea2010-01-13 17:31:36 +00002452 Result.setTemplateId(TemplateId);
Abramo Bagnara7945c982012-01-27 09:46:47 +00002453 TemplateKWLoc = TemplateId->TemplateKWLoc;
Douglas Gregor7861a802009-11-03 01:35:08 +00002454 ConsumeToken();
2455 return false;
2456 }
2457
2458 // unqualified-id:
2459 // operator-function-id
2460 // conversion-function-id
2461 if (Tok.is(tok::kw_operator)) {
Douglas Gregor71395fa2009-11-04 00:56:37 +00002462 if (ParseUnqualifiedIdOperator(SS, EnteringContext, ObjectType, Result))
Douglas Gregor7861a802009-11-03 01:35:08 +00002463 return true;
2464
Alexis Hunted0530f2009-11-28 08:58:14 +00002465 // If we have an operator-function-id or a literal-operator-id and the next
2466 // token is a '<', we may have a
Douglas Gregor71395fa2009-11-04 00:56:37 +00002467 //
2468 // template-id:
2469 // operator-function-id < template-argument-list[opt] >
Alexis Hunted0530f2009-11-28 08:58:14 +00002470 if ((Result.getKind() == UnqualifiedId::IK_OperatorFunctionId ||
2471 Result.getKind() == UnqualifiedId::IK_LiteralOperatorId) &&
Douglas Gregorb22ee882010-05-05 05:58:24 +00002472 (TemplateSpecified || Tok.is(tok::less)))
Abramo Bagnara7945c982012-01-27 09:46:47 +00002473 return ParseUnqualifiedIdTemplateId(SS, TemplateKWLoc,
Craig Topper161e4db2014-05-21 06:02:52 +00002474 nullptr, SourceLocation(),
Abramo Bagnara7945c982012-01-27 09:46:47 +00002475 EnteringContext, ObjectType,
2476 Result, TemplateSpecified);
Craig Topper161e4db2014-05-21 06:02:52 +00002477
Douglas Gregor7861a802009-11-03 01:35:08 +00002478 return false;
2479 }
2480
David Blaikiebbafb8a2012-03-11 07:00:24 +00002481 if (getLangOpts().CPlusPlus &&
Douglas Gregor411e5ac2010-01-11 23:29:10 +00002482 (AllowDestructorName || SS.isSet()) && Tok.is(tok::tilde)) {
Douglas Gregor7861a802009-11-03 01:35:08 +00002483 // C++ [expr.unary.op]p10:
2484 // There is an ambiguity in the unary-expression ~X(), where X is a
2485 // class-name. The ambiguity is resolved in favor of treating ~ as a
2486 // unary complement rather than treating ~X as referring to a destructor.
2487
2488 // Parse the '~'.
2489 SourceLocation TildeLoc = ConsumeToken();
David Blaikieecd8a942011-12-08 16:13:53 +00002490
2491 if (SS.isEmpty() && Tok.is(tok::kw_decltype)) {
2492 DeclSpec DS(AttrFactory);
2493 SourceLocation EndLoc = ParseDecltypeSpecifier(DS);
2494 if (ParsedType Type = Actions.getDestructorType(DS, ObjectType)) {
2495 Result.setDestructorName(TildeLoc, Type, EndLoc);
2496 return false;
2497 }
2498 return true;
2499 }
Douglas Gregor7861a802009-11-03 01:35:08 +00002500
2501 // Parse the class-name.
2502 if (Tok.isNot(tok::identifier)) {
Douglas Gregorfe17d252010-02-16 19:09:40 +00002503 Diag(Tok, diag::err_destructor_tilde_identifier);
Douglas Gregor7861a802009-11-03 01:35:08 +00002504 return true;
2505 }
2506
Richard Smithefa6f732014-09-06 02:06:12 +00002507 // If the user wrote ~T::T, correct it to T::~T.
2508 if (!TemplateSpecified && NextToken().is(tok::coloncolon)) {
2509 if (SS.isSet()) {
2510 AnnotateScopeToken(SS, /*NewAnnotation*/true);
2511 SS.clear();
2512 }
2513 if (ParseOptionalCXXScopeSpecifier(SS, ObjectType, EnteringContext))
2514 return true;
2515 if (Tok.isNot(tok::identifier) || NextToken().is(tok::coloncolon)) {
2516 Diag(TildeLoc, diag::err_destructor_tilde_scope);
2517 return true;
2518 }
2519
2520 // Recover as if the tilde had been written before the identifier.
2521 Diag(TildeLoc, diag::err_destructor_tilde_scope)
2522 << FixItHint::CreateRemoval(TildeLoc)
2523 << FixItHint::CreateInsertion(Tok.getLocation(), "~");
2524 }
2525
Douglas Gregor7861a802009-11-03 01:35:08 +00002526 // Parse the class-name (or template-name in a simple-template-id).
2527 IdentifierInfo *ClassName = Tok.getIdentifierInfo();
2528 SourceLocation ClassNameLoc = ConsumeToken();
Richard Smithefa6f732014-09-06 02:06:12 +00002529
Douglas Gregorb22ee882010-05-05 05:58:24 +00002530 if (TemplateSpecified || Tok.is(tok::less)) {
John McCallba7bf592010-08-24 05:47:05 +00002531 Result.setDestructorName(TildeLoc, ParsedType(), ClassNameLoc);
Abramo Bagnara7945c982012-01-27 09:46:47 +00002532 return ParseUnqualifiedIdTemplateId(SS, TemplateKWLoc,
2533 ClassName, ClassNameLoc,
2534 EnteringContext, ObjectType,
2535 Result, TemplateSpecified);
Douglas Gregor30d60cb2009-11-03 19:44:04 +00002536 }
Richard Smithefa6f732014-09-06 02:06:12 +00002537
Douglas Gregor7861a802009-11-03 01:35:08 +00002538 // Note that this is a destructor name.
John McCallba7bf592010-08-24 05:47:05 +00002539 ParsedType Ty = Actions.getDestructorName(TildeLoc, *ClassName,
2540 ClassNameLoc, getCurScope(),
2541 SS, ObjectType,
2542 EnteringContext);
Douglas Gregorfe17d252010-02-16 19:09:40 +00002543 if (!Ty)
Douglas Gregor7861a802009-11-03 01:35:08 +00002544 return true;
Douglas Gregorfe17d252010-02-16 19:09:40 +00002545
Douglas Gregor7861a802009-11-03 01:35:08 +00002546 Result.setDestructorName(TildeLoc, Ty, ClassNameLoc);
Douglas Gregor7861a802009-11-03 01:35:08 +00002547 return false;
2548 }
2549
Douglas Gregor30d60cb2009-11-03 19:44:04 +00002550 Diag(Tok, diag::err_expected_unqualified_id)
David Blaikiebbafb8a2012-03-11 07:00:24 +00002551 << getLangOpts().CPlusPlus;
Douglas Gregor7861a802009-11-03 01:35:08 +00002552 return true;
2553}
2554
Sebastian Redlbd150f42008-11-21 19:14:01 +00002555/// ParseCXXNewExpression - Parse a C++ new-expression. New is used to allocate
2556/// memory in a typesafe manner and call constructors.
Mike Stump11289f42009-09-09 15:08:12 +00002557///
Chris Lattner109faf22009-01-04 21:25:24 +00002558/// This method is called to parse the new expression after the optional :: has
2559/// been already parsed. If the :: was present, "UseGlobal" is true and "Start"
2560/// is its location. Otherwise, "Start" is the location of the 'new' token.
Sebastian Redlbd150f42008-11-21 19:14:01 +00002561///
2562/// new-expression:
2563/// '::'[opt] 'new' new-placement[opt] new-type-id
2564/// new-initializer[opt]
2565/// '::'[opt] 'new' new-placement[opt] '(' type-id ')'
2566/// new-initializer[opt]
2567///
2568/// new-placement:
2569/// '(' expression-list ')'
2570///
Sebastian Redl351bb782008-12-02 14:43:59 +00002571/// new-type-id:
2572/// type-specifier-seq new-declarator[opt]
Douglas Gregora3a020a2011-04-15 19:40:02 +00002573/// [GNU] attributes type-specifier-seq new-declarator[opt]
Sebastian Redl351bb782008-12-02 14:43:59 +00002574///
2575/// new-declarator:
2576/// ptr-operator new-declarator[opt]
2577/// direct-new-declarator
2578///
Sebastian Redlbd150f42008-11-21 19:14:01 +00002579/// new-initializer:
2580/// '(' expression-list[opt] ')'
Sebastian Redl3da34892011-06-05 12:23:16 +00002581/// [C++0x] braced-init-list
Sebastian Redlbd150f42008-11-21 19:14:01 +00002582///
John McCalldadc5752010-08-24 06:29:42 +00002583ExprResult
Chris Lattner109faf22009-01-04 21:25:24 +00002584Parser::ParseCXXNewExpression(bool UseGlobal, SourceLocation Start) {
2585 assert(Tok.is(tok::kw_new) && "expected 'new' token");
2586 ConsumeToken(); // Consume 'new'
Sebastian Redlbd150f42008-11-21 19:14:01 +00002587
2588 // A '(' now can be a new-placement or the '(' wrapping the type-id in the
2589 // second form of new-expression. It can't be a new-type-id.
2590
Benjamin Kramerf0623432012-08-23 22:51:59 +00002591 ExprVector PlacementArgs;
Sebastian Redlbd150f42008-11-21 19:14:01 +00002592 SourceLocation PlacementLParen, PlacementRParen;
2593
Douglas Gregorf2753b32010-07-13 15:54:32 +00002594 SourceRange TypeIdParens;
John McCall084e83d2011-03-24 11:26:52 +00002595 DeclSpec DS(AttrFactory);
Argyrios Kyrtzidis3ff13572011-06-28 03:01:23 +00002596 Declarator DeclaratorInfo(DS, Declarator::CXXNewContext);
Sebastian Redlbd150f42008-11-21 19:14:01 +00002597 if (Tok.is(tok::l_paren)) {
2598 // If it turns out to be a placement, we change the type location.
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00002599 BalancedDelimiterTracker T(*this, tok::l_paren);
2600 T.consumeOpen();
2601 PlacementLParen = T.getOpenLocation();
Sebastian Redl351bb782008-12-02 14:43:59 +00002602 if (ParseExpressionListOrTypeId(PlacementArgs, DeclaratorInfo)) {
Alexey Bataevee6507d2013-11-18 08:17:37 +00002603 SkipUntil(tok::semi, StopAtSemi | StopBeforeMatch);
Sebastian Redld65cea82008-12-11 22:51:44 +00002604 return ExprError();
Sebastian Redl351bb782008-12-02 14:43:59 +00002605 }
Sebastian Redlbd150f42008-11-21 19:14:01 +00002606
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00002607 T.consumeClose();
2608 PlacementRParen = T.getCloseLocation();
Sebastian Redl351bb782008-12-02 14:43:59 +00002609 if (PlacementRParen.isInvalid()) {
Alexey Bataevee6507d2013-11-18 08:17:37 +00002610 SkipUntil(tok::semi, StopAtSemi | StopBeforeMatch);
Sebastian Redld65cea82008-12-11 22:51:44 +00002611 return ExprError();
Sebastian Redl351bb782008-12-02 14:43:59 +00002612 }
Sebastian Redlbd150f42008-11-21 19:14:01 +00002613
Sebastian Redl351bb782008-12-02 14:43:59 +00002614 if (PlacementArgs.empty()) {
Sebastian Redlbd150f42008-11-21 19:14:01 +00002615 // Reset the placement locations. There was no placement.
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00002616 TypeIdParens = T.getRange();
Sebastian Redlbd150f42008-11-21 19:14:01 +00002617 PlacementLParen = PlacementRParen = SourceLocation();
Sebastian Redlbd150f42008-11-21 19:14:01 +00002618 } else {
2619 // We still need the type.
2620 if (Tok.is(tok::l_paren)) {
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00002621 BalancedDelimiterTracker T(*this, tok::l_paren);
2622 T.consumeOpen();
Douglas Gregora3a020a2011-04-15 19:40:02 +00002623 MaybeParseGNUAttributes(DeclaratorInfo);
Sebastian Redl351bb782008-12-02 14:43:59 +00002624 ParseSpecifierQualifierList(DS);
Sebastian Redlf6591ca2009-02-09 18:23:29 +00002625 DeclaratorInfo.SetSourceRange(DS.getSourceRange());
Sebastian Redl351bb782008-12-02 14:43:59 +00002626 ParseDeclarator(DeclaratorInfo);
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00002627 T.consumeClose();
2628 TypeIdParens = T.getRange();
Sebastian Redlbd150f42008-11-21 19:14:01 +00002629 } else {
Douglas Gregora3a020a2011-04-15 19:40:02 +00002630 MaybeParseGNUAttributes(DeclaratorInfo);
Sebastian Redl351bb782008-12-02 14:43:59 +00002631 if (ParseCXXTypeSpecifierSeq(DS))
2632 DeclaratorInfo.setInvalidType(true);
Sebastian Redlf6591ca2009-02-09 18:23:29 +00002633 else {
2634 DeclaratorInfo.SetSourceRange(DS.getSourceRange());
Sebastian Redl351bb782008-12-02 14:43:59 +00002635 ParseDeclaratorInternal(DeclaratorInfo,
2636 &Parser::ParseDirectNewDeclarator);
Sebastian Redlf6591ca2009-02-09 18:23:29 +00002637 }
Sebastian Redlbd150f42008-11-21 19:14:01 +00002638 }
Sebastian Redlbd150f42008-11-21 19:14:01 +00002639 }
2640 } else {
Sebastian Redl351bb782008-12-02 14:43:59 +00002641 // A new-type-id is a simplified type-id, where essentially the
2642 // direct-declarator is replaced by a direct-new-declarator.
Douglas Gregora3a020a2011-04-15 19:40:02 +00002643 MaybeParseGNUAttributes(DeclaratorInfo);
Sebastian Redl351bb782008-12-02 14:43:59 +00002644 if (ParseCXXTypeSpecifierSeq(DS))
2645 DeclaratorInfo.setInvalidType(true);
Sebastian Redlf6591ca2009-02-09 18:23:29 +00002646 else {
2647 DeclaratorInfo.SetSourceRange(DS.getSourceRange());
Sebastian Redl351bb782008-12-02 14:43:59 +00002648 ParseDeclaratorInternal(DeclaratorInfo,
2649 &Parser::ParseDirectNewDeclarator);
Sebastian Redlf6591ca2009-02-09 18:23:29 +00002650 }
Sebastian Redlbd150f42008-11-21 19:14:01 +00002651 }
Chris Lattnerf6d1c9c2009-04-25 08:06:05 +00002652 if (DeclaratorInfo.isInvalidType()) {
Alexey Bataevee6507d2013-11-18 08:17:37 +00002653 SkipUntil(tok::semi, StopAtSemi | StopBeforeMatch);
Sebastian Redld65cea82008-12-11 22:51:44 +00002654 return ExprError();
Sebastian Redl351bb782008-12-02 14:43:59 +00002655 }
Sebastian Redlbd150f42008-11-21 19:14:01 +00002656
Sebastian Redl6047f072012-02-16 12:22:20 +00002657 ExprResult Initializer;
Sebastian Redlbd150f42008-11-21 19:14:01 +00002658
2659 if (Tok.is(tok::l_paren)) {
Sebastian Redl6047f072012-02-16 12:22:20 +00002660 SourceLocation ConstructorLParen, ConstructorRParen;
Benjamin Kramerf0623432012-08-23 22:51:59 +00002661 ExprVector ConstructorArgs;
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00002662 BalancedDelimiterTracker T(*this, tok::l_paren);
2663 T.consumeOpen();
2664 ConstructorLParen = T.getOpenLocation();
Sebastian Redlbd150f42008-11-21 19:14:01 +00002665 if (Tok.isNot(tok::r_paren)) {
2666 CommaLocsTy CommaLocs;
Sebastian Redl351bb782008-12-02 14:43:59 +00002667 if (ParseExpressionList(ConstructorArgs, CommaLocs)) {
Alexey Bataevee6507d2013-11-18 08:17:37 +00002668 SkipUntil(tok::semi, StopAtSemi | StopBeforeMatch);
Sebastian Redld65cea82008-12-11 22:51:44 +00002669 return ExprError();
Sebastian Redl351bb782008-12-02 14:43:59 +00002670 }
Sebastian Redlbd150f42008-11-21 19:14:01 +00002671 }
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00002672 T.consumeClose();
2673 ConstructorRParen = T.getCloseLocation();
Sebastian Redl351bb782008-12-02 14:43:59 +00002674 if (ConstructorRParen.isInvalid()) {
Alexey Bataevee6507d2013-11-18 08:17:37 +00002675 SkipUntil(tok::semi, StopAtSemi | StopBeforeMatch);
Sebastian Redld65cea82008-12-11 22:51:44 +00002676 return ExprError();
Sebastian Redl351bb782008-12-02 14:43:59 +00002677 }
Sebastian Redl6047f072012-02-16 12:22:20 +00002678 Initializer = Actions.ActOnParenListExpr(ConstructorLParen,
2679 ConstructorRParen,
Benjamin Kramer62b95d82012-08-23 21:35:17 +00002680 ConstructorArgs);
Richard Smith2bf7fdb2013-01-02 11:42:31 +00002681 } else if (Tok.is(tok::l_brace) && getLangOpts().CPlusPlus11) {
Richard Smith5d164bc2011-10-15 05:09:34 +00002682 Diag(Tok.getLocation(),
2683 diag::warn_cxx98_compat_generalized_initializer_lists);
Sebastian Redl6047f072012-02-16 12:22:20 +00002684 Initializer = ParseBraceInitializer();
Sebastian Redlbd150f42008-11-21 19:14:01 +00002685 }
Sebastian Redl6047f072012-02-16 12:22:20 +00002686 if (Initializer.isInvalid())
2687 return Initializer;
Sebastian Redlbd150f42008-11-21 19:14:01 +00002688
Sebastian Redl6d4256c2009-03-15 17:47:39 +00002689 return Actions.ActOnCXXNew(Start, UseGlobal, PlacementLParen,
Benjamin Kramer62b95d82012-08-23 21:35:17 +00002690 PlacementArgs, PlacementRParen,
Nikola Smiljanic01a75982014-05-29 10:55:11 +00002691 TypeIdParens, DeclaratorInfo, Initializer.get());
Sebastian Redlbd150f42008-11-21 19:14:01 +00002692}
2693
Sebastian Redlbd150f42008-11-21 19:14:01 +00002694/// ParseDirectNewDeclarator - Parses a direct-new-declarator. Intended to be
2695/// passed to ParseDeclaratorInternal.
2696///
2697/// direct-new-declarator:
2698/// '[' expression ']'
2699/// direct-new-declarator '[' constant-expression ']'
2700///
Chris Lattner109faf22009-01-04 21:25:24 +00002701void Parser::ParseDirectNewDeclarator(Declarator &D) {
Sebastian Redlbd150f42008-11-21 19:14:01 +00002702 // Parse the array dimensions.
2703 bool first = true;
2704 while (Tok.is(tok::l_square)) {
Richard Smith7bdcc4a2012-04-10 01:32:12 +00002705 // An array-size expression can't start with a lambda.
2706 if (CheckProhibitedCXX11Attribute())
2707 continue;
2708
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00002709 BalancedDelimiterTracker T(*this, tok::l_square);
2710 T.consumeOpen();
2711
John McCalldadc5752010-08-24 06:29:42 +00002712 ExprResult Size(first ? ParseExpression()
Sebastian Redl59b5e512008-12-11 21:36:32 +00002713 : ParseConstantExpression());
Sebastian Redl17f2c7d2008-12-09 13:15:23 +00002714 if (Size.isInvalid()) {
Sebastian Redlbd150f42008-11-21 19:14:01 +00002715 // Recover
Alexey Bataevee6507d2013-11-18 08:17:37 +00002716 SkipUntil(tok::r_square, StopAtSemi);
Sebastian Redlbd150f42008-11-21 19:14:01 +00002717 return;
2718 }
2719 first = false;
2720
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00002721 T.consumeClose();
John McCall084e83d2011-03-24 11:26:52 +00002722
Bill Wendling44426052012-12-20 19:22:21 +00002723 // Attributes here appertain to the array type. C++11 [expr.new]p5.
Richard Smith7bdcc4a2012-04-10 01:32:12 +00002724 ParsedAttributes Attrs(AttrFactory);
Richard Smith89645bc2013-01-02 12:01:23 +00002725 MaybeParseCXX11Attributes(Attrs);
Richard Smith7bdcc4a2012-04-10 01:32:12 +00002726
John McCall084e83d2011-03-24 11:26:52 +00002727 D.AddTypeInfo(DeclaratorChunk::getArray(0,
John McCall53fa7142010-12-24 02:08:15 +00002728 /*static=*/false, /*star=*/false,
Nikola Smiljanic01a75982014-05-29 10:55:11 +00002729 Size.get(),
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00002730 T.getOpenLocation(),
2731 T.getCloseLocation()),
Richard Smith7bdcc4a2012-04-10 01:32:12 +00002732 Attrs, T.getCloseLocation());
Sebastian Redlbd150f42008-11-21 19:14:01 +00002733
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00002734 if (T.getCloseLocation().isInvalid())
Sebastian Redlbd150f42008-11-21 19:14:01 +00002735 return;
2736 }
2737}
2738
2739/// ParseExpressionListOrTypeId - Parse either an expression-list or a type-id.
2740/// This ambiguity appears in the syntax of the C++ new operator.
2741///
2742/// new-expression:
2743/// '::'[opt] 'new' new-placement[opt] '(' type-id ')'
2744/// new-initializer[opt]
2745///
2746/// new-placement:
2747/// '(' expression-list ')'
2748///
John McCall37ad5512010-08-23 06:44:23 +00002749bool Parser::ParseExpressionListOrTypeId(
Chris Lattner0e62c1c2011-07-23 10:55:15 +00002750 SmallVectorImpl<Expr*> &PlacementArgs,
Chris Lattner109faf22009-01-04 21:25:24 +00002751 Declarator &D) {
Sebastian Redlbd150f42008-11-21 19:14:01 +00002752 // The '(' was already consumed.
2753 if (isTypeIdInParens()) {
Sebastian Redl351bb782008-12-02 14:43:59 +00002754 ParseSpecifierQualifierList(D.getMutableDeclSpec());
Sebastian Redlf6591ca2009-02-09 18:23:29 +00002755 D.SetSourceRange(D.getDeclSpec().getSourceRange());
Sebastian Redl351bb782008-12-02 14:43:59 +00002756 ParseDeclarator(D);
Chris Lattnerf6d1c9c2009-04-25 08:06:05 +00002757 return D.isInvalidType();
Sebastian Redlbd150f42008-11-21 19:14:01 +00002758 }
2759
2760 // It's not a type, it has to be an expression list.
2761 // Discard the comma locations - ActOnCXXNew has enough parameters.
2762 CommaLocsTy CommaLocs;
2763 return ParseExpressionList(PlacementArgs, CommaLocs);
2764}
2765
2766/// ParseCXXDeleteExpression - Parse a C++ delete-expression. Delete is used
2767/// to free memory allocated by new.
2768///
Chris Lattner109faf22009-01-04 21:25:24 +00002769/// This method is called to parse the 'delete' expression after the optional
2770/// '::' has been already parsed. If the '::' was present, "UseGlobal" is true
2771/// and "Start" is its location. Otherwise, "Start" is the location of the
2772/// 'delete' token.
2773///
Sebastian Redlbd150f42008-11-21 19:14:01 +00002774/// delete-expression:
2775/// '::'[opt] 'delete' cast-expression
2776/// '::'[opt] 'delete' '[' ']' cast-expression
John McCalldadc5752010-08-24 06:29:42 +00002777ExprResult
Chris Lattner109faf22009-01-04 21:25:24 +00002778Parser::ParseCXXDeleteExpression(bool UseGlobal, SourceLocation Start) {
2779 assert(Tok.is(tok::kw_delete) && "Expected 'delete' keyword");
2780 ConsumeToken(); // Consume 'delete'
Sebastian Redlbd150f42008-11-21 19:14:01 +00002781
2782 // Array delete?
2783 bool ArrayDelete = false;
Richard Smith7bdcc4a2012-04-10 01:32:12 +00002784 if (Tok.is(tok::l_square) && NextToken().is(tok::r_square)) {
Richard Smith10c60722012-08-09 19:01:51 +00002785 // C++11 [expr.delete]p1:
2786 // Whenever the delete keyword is followed by empty square brackets, it
2787 // shall be interpreted as [array delete].
2788 // [Footnote: A lambda expression with a lambda-introducer that consists
2789 // of empty square brackets can follow the delete keyword if
2790 // the lambda expression is enclosed in parentheses.]
2791 // FIXME: Produce a better diagnostic if the '[]' is unambiguously a
2792 // lambda-introducer.
Sebastian Redlbd150f42008-11-21 19:14:01 +00002793 ArrayDelete = true;
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00002794 BalancedDelimiterTracker T(*this, tok::l_square);
2795
2796 T.consumeOpen();
2797 T.consumeClose();
2798 if (T.getCloseLocation().isInvalid())
Sebastian Redld65cea82008-12-11 22:51:44 +00002799 return ExprError();
Sebastian Redlbd150f42008-11-21 19:14:01 +00002800 }
2801
John McCalldadc5752010-08-24 06:29:42 +00002802 ExprResult Operand(ParseCastExpression(false));
Sebastian Redl17f2c7d2008-12-09 13:15:23 +00002803 if (Operand.isInvalid())
Benjamin Kramer62b95d82012-08-23 21:35:17 +00002804 return Operand;
Sebastian Redlbd150f42008-11-21 19:14:01 +00002805
Nikola Smiljanic01a75982014-05-29 10:55:11 +00002806 return Actions.ActOnCXXDelete(Start, UseGlobal, ArrayDelete, Operand.get());
Sebastian Redlbd150f42008-11-21 19:14:01 +00002807}
Sebastian Redlbaad4e72009-01-05 20:52:13 +00002808
Douglas Gregor29c42f22012-02-24 07:38:34 +00002809static TypeTrait TypeTraitFromTokKind(tok::TokenKind kind) {
2810 switch (kind) {
2811 default: llvm_unreachable("Not a known type trait");
Alp Toker95e7ff22014-01-01 05:57:51 +00002812#define TYPE_TRAIT_1(Spelling, Name, Key) \
2813case tok::kw_ ## Spelling: return UTT_ ## Name;
Alp Tokercbb90342013-12-13 20:49:58 +00002814#define TYPE_TRAIT_2(Spelling, Name, Key) \
2815case tok::kw_ ## Spelling: return BTT_ ## Name;
2816#include "clang/Basic/TokenKinds.def"
Alp Toker40f9b1c2013-12-12 21:23:03 +00002817#define TYPE_TRAIT_N(Spelling, Name, Key) \
2818 case tok::kw_ ## Spelling: return TT_ ## Name;
2819#include "clang/Basic/TokenKinds.def"
Douglas Gregor29c42f22012-02-24 07:38:34 +00002820 }
2821}
2822
John Wiegley6242b6a2011-04-28 00:16:57 +00002823static ArrayTypeTrait ArrayTypeTraitFromTokKind(tok::TokenKind kind) {
2824 switch(kind) {
2825 default: llvm_unreachable("Not a known binary type trait");
2826 case tok::kw___array_rank: return ATT_ArrayRank;
2827 case tok::kw___array_extent: return ATT_ArrayExtent;
2828 }
2829}
2830
John Wiegleyf9f65842011-04-25 06:54:41 +00002831static ExpressionTrait ExpressionTraitFromTokKind(tok::TokenKind kind) {
2832 switch(kind) {
David Blaikie83d382b2011-09-23 05:06:16 +00002833 default: llvm_unreachable("Not a known unary expression trait.");
John Wiegleyf9f65842011-04-25 06:54:41 +00002834 case tok::kw___is_lvalue_expr: return ET_IsLValueExpr;
2835 case tok::kw___is_rvalue_expr: return ET_IsRValueExpr;
2836 }
2837}
2838
Alp Toker40f9b1c2013-12-12 21:23:03 +00002839static unsigned TypeTraitArity(tok::TokenKind kind) {
2840 switch (kind) {
2841 default: llvm_unreachable("Not a known type trait");
2842#define TYPE_TRAIT(N,Spelling,K) case tok::kw_##Spelling: return N;
2843#include "clang/Basic/TokenKinds.def"
Francois Pichet9dfa3ce2010-12-07 00:08:36 +00002844 }
Francois Pichet9dfa3ce2010-12-07 00:08:36 +00002845}
2846
Douglas Gregor29c42f22012-02-24 07:38:34 +00002847/// \brief Parse the built-in type-trait pseudo-functions that allow
2848/// implementation of the TR1/C++11 type traits templates.
2849///
2850/// primary-expression:
Alp Toker40f9b1c2013-12-12 21:23:03 +00002851/// unary-type-trait '(' type-id ')'
2852/// binary-type-trait '(' type-id ',' type-id ')'
Douglas Gregor29c42f22012-02-24 07:38:34 +00002853/// type-trait '(' type-id-seq ')'
2854///
2855/// type-id-seq:
2856/// type-id ...[opt] type-id-seq[opt]
2857///
2858ExprResult Parser::ParseTypeTrait() {
Alp Toker40f9b1c2013-12-12 21:23:03 +00002859 tok::TokenKind Kind = Tok.getKind();
2860 unsigned Arity = TypeTraitArity(Kind);
2861
Douglas Gregor29c42f22012-02-24 07:38:34 +00002862 SourceLocation Loc = ConsumeToken();
2863
2864 BalancedDelimiterTracker Parens(*this, tok::l_paren);
Alp Toker383d2c42014-01-01 03:08:43 +00002865 if (Parens.expectAndConsume())
Douglas Gregor29c42f22012-02-24 07:38:34 +00002866 return ExprError();
2867
Dmitri Gribenkof8579502013-01-12 19:30:44 +00002868 SmallVector<ParsedType, 2> Args;
Douglas Gregor29c42f22012-02-24 07:38:34 +00002869 do {
2870 // Parse the next type.
2871 TypeResult Ty = ParseTypeName();
2872 if (Ty.isInvalid()) {
2873 Parens.skipToEnd();
2874 return ExprError();
2875 }
2876
2877 // Parse the ellipsis, if present.
2878 if (Tok.is(tok::ellipsis)) {
2879 Ty = Actions.ActOnPackExpansion(Ty.get(), ConsumeToken());
2880 if (Ty.isInvalid()) {
2881 Parens.skipToEnd();
2882 return ExprError();
2883 }
2884 }
2885
2886 // Add this type to the list of arguments.
2887 Args.push_back(Ty.get());
Alp Tokera3ebe6e2013-12-17 14:12:37 +00002888 } while (TryConsumeToken(tok::comma));
2889
Douglas Gregor29c42f22012-02-24 07:38:34 +00002890 if (Parens.consumeClose())
2891 return ExprError();
Alp Toker40f9b1c2013-12-12 21:23:03 +00002892
2893 SourceLocation EndLoc = Parens.getCloseLocation();
2894
2895 if (Arity && Args.size() != Arity) {
2896 Diag(EndLoc, diag::err_type_trait_arity)
2897 << Arity << 0 << (Arity > 1) << (int)Args.size() << SourceRange(Loc);
2898 return ExprError();
2899 }
2900
2901 if (!Arity && Args.empty()) {
2902 Diag(EndLoc, diag::err_type_trait_arity)
2903 << 1 << 1 << 1 << (int)Args.size() << SourceRange(Loc);
2904 return ExprError();
2905 }
2906
Alp Toker88f64e62013-12-13 21:19:30 +00002907 return Actions.ActOnTypeTrait(TypeTraitFromTokKind(Kind), Loc, Args, EndLoc);
Douglas Gregor29c42f22012-02-24 07:38:34 +00002908}
2909
John Wiegley6242b6a2011-04-28 00:16:57 +00002910/// ParseArrayTypeTrait - Parse the built-in array type-trait
2911/// pseudo-functions.
2912///
2913/// primary-expression:
2914/// [Embarcadero] '__array_rank' '(' type-id ')'
2915/// [Embarcadero] '__array_extent' '(' type-id ',' expression ')'
2916///
2917ExprResult Parser::ParseArrayTypeTrait() {
2918 ArrayTypeTrait ATT = ArrayTypeTraitFromTokKind(Tok.getKind());
2919 SourceLocation Loc = ConsumeToken();
2920
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00002921 BalancedDelimiterTracker T(*this, tok::l_paren);
Alp Toker383d2c42014-01-01 03:08:43 +00002922 if (T.expectAndConsume())
John Wiegley6242b6a2011-04-28 00:16:57 +00002923 return ExprError();
2924
2925 TypeResult Ty = ParseTypeName();
2926 if (Ty.isInvalid()) {
Alexey Bataevee6507d2013-11-18 08:17:37 +00002927 SkipUntil(tok::comma, StopAtSemi);
2928 SkipUntil(tok::r_paren, StopAtSemi);
John Wiegley6242b6a2011-04-28 00:16:57 +00002929 return ExprError();
2930 }
2931
2932 switch (ATT) {
2933 case ATT_ArrayRank: {
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00002934 T.consumeClose();
Craig Topper161e4db2014-05-21 06:02:52 +00002935 return Actions.ActOnArrayTypeTrait(ATT, Loc, Ty.get(), nullptr,
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00002936 T.getCloseLocation());
John Wiegley6242b6a2011-04-28 00:16:57 +00002937 }
2938 case ATT_ArrayExtent: {
Alp Toker383d2c42014-01-01 03:08:43 +00002939 if (ExpectAndConsume(tok::comma)) {
Alexey Bataevee6507d2013-11-18 08:17:37 +00002940 SkipUntil(tok::r_paren, StopAtSemi);
John Wiegley6242b6a2011-04-28 00:16:57 +00002941 return ExprError();
2942 }
2943
2944 ExprResult DimExpr = ParseExpression();
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00002945 T.consumeClose();
John Wiegley6242b6a2011-04-28 00:16:57 +00002946
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00002947 return Actions.ActOnArrayTypeTrait(ATT, Loc, Ty.get(), DimExpr.get(),
2948 T.getCloseLocation());
John Wiegley6242b6a2011-04-28 00:16:57 +00002949 }
John Wiegley6242b6a2011-04-28 00:16:57 +00002950 }
David Blaikiee4d798f2012-01-20 21:50:17 +00002951 llvm_unreachable("Invalid ArrayTypeTrait!");
John Wiegley6242b6a2011-04-28 00:16:57 +00002952}
2953
John Wiegleyf9f65842011-04-25 06:54:41 +00002954/// ParseExpressionTrait - Parse built-in expression-trait
2955/// pseudo-functions like __is_lvalue_expr( xxx ).
2956///
2957/// primary-expression:
2958/// [Embarcadero] expression-trait '(' expression ')'
2959///
2960ExprResult Parser::ParseExpressionTrait() {
2961 ExpressionTrait ET = ExpressionTraitFromTokKind(Tok.getKind());
2962 SourceLocation Loc = ConsumeToken();
2963
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00002964 BalancedDelimiterTracker T(*this, tok::l_paren);
Alp Toker383d2c42014-01-01 03:08:43 +00002965 if (T.expectAndConsume())
John Wiegleyf9f65842011-04-25 06:54:41 +00002966 return ExprError();
2967
2968 ExprResult Expr = ParseExpression();
2969
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00002970 T.consumeClose();
John Wiegleyf9f65842011-04-25 06:54:41 +00002971
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00002972 return Actions.ActOnExpressionTrait(ET, Loc, Expr.get(),
2973 T.getCloseLocation());
John Wiegleyf9f65842011-04-25 06:54:41 +00002974}
2975
2976
Argyrios Kyrtzidis12179bc2009-05-22 10:24:42 +00002977/// ParseCXXAmbiguousParenExpression - We have parsed the left paren of a
2978/// parenthesized ambiguous type-id. This uses tentative parsing to disambiguate
2979/// based on the context past the parens.
John McCalldadc5752010-08-24 06:29:42 +00002980ExprResult
Argyrios Kyrtzidis12179bc2009-05-22 10:24:42 +00002981Parser::ParseCXXAmbiguousParenExpression(ParenParseOption &ExprType,
John McCallba7bf592010-08-24 05:47:05 +00002982 ParsedType &CastTy,
Richard Smith87e11a42014-05-15 02:43:47 +00002983 BalancedDelimiterTracker &Tracker,
2984 ColonProtectionRAIIObject &ColonProt) {
David Blaikiebbafb8a2012-03-11 07:00:24 +00002985 assert(getLangOpts().CPlusPlus && "Should only be called for C++!");
Argyrios Kyrtzidis12179bc2009-05-22 10:24:42 +00002986 assert(ExprType == CastExpr && "Compound literals are not ambiguous!");
2987 assert(isTypeIdInParens() && "Not a type-id!");
2988
John McCalldadc5752010-08-24 06:29:42 +00002989 ExprResult Result(true);
John McCallba7bf592010-08-24 05:47:05 +00002990 CastTy = ParsedType();
Argyrios Kyrtzidis12179bc2009-05-22 10:24:42 +00002991
2992 // We need to disambiguate a very ugly part of the C++ syntax:
2993 //
2994 // (T())x; - type-id
2995 // (T())*x; - type-id
2996 // (T())/x; - expression
2997 // (T()); - expression
2998 //
2999 // The bad news is that we cannot use the specialized tentative parser, since
3000 // it can only verify that the thing inside the parens can be parsed as
3001 // type-id, it is not useful for determining the context past the parens.
3002 //
3003 // The good news is that the parser can disambiguate this part without
Argyrios Kyrtzidis24ad6922009-05-22 15:12:46 +00003004 // making any unnecessary Action calls.
Argyrios Kyrtzidisf73f2d22009-05-22 21:09:47 +00003005 //
3006 // It uses a scheme similar to parsing inline methods. The parenthesized
3007 // tokens are cached, the context that follows is determined (possibly by
3008 // parsing a cast-expression), and then we re-introduce the cached tokens
3009 // into the token stream and parse them appropriately.
Argyrios Kyrtzidis12179bc2009-05-22 10:24:42 +00003010
Mike Stump11289f42009-09-09 15:08:12 +00003011 ParenParseOption ParseAs;
Argyrios Kyrtzidisf73f2d22009-05-22 21:09:47 +00003012 CachedTokens Toks;
Argyrios Kyrtzidis12179bc2009-05-22 10:24:42 +00003013
Argyrios Kyrtzidisf73f2d22009-05-22 21:09:47 +00003014 // Store the tokens of the parentheses. We will parse them after we determine
3015 // the context that follows them.
Argyrios Kyrtzidis8d7bdba2010-04-23 21:20:12 +00003016 if (!ConsumeAndStoreUntil(tok::r_paren, Toks)) {
Argyrios Kyrtzidisf73f2d22009-05-22 21:09:47 +00003017 // We didn't find the ')' we expected.
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00003018 Tracker.consumeClose();
Argyrios Kyrtzidis12179bc2009-05-22 10:24:42 +00003019 return ExprError();
3020 }
3021
Argyrios Kyrtzidis12179bc2009-05-22 10:24:42 +00003022 if (Tok.is(tok::l_brace)) {
Argyrios Kyrtzidisf73f2d22009-05-22 21:09:47 +00003023 ParseAs = CompoundLiteral;
3024 } else {
3025 bool NotCastExpr;
Eli Friedmancf7530f2009-05-25 19:41:42 +00003026 if (Tok.is(tok::l_paren) && NextToken().is(tok::r_paren)) {
3027 NotCastExpr = true;
3028 } else {
3029 // Try parsing the cast-expression that may follow.
3030 // If it is not a cast-expression, NotCastExpr will be true and no token
3031 // will be consumed.
Richard Smith87e11a42014-05-15 02:43:47 +00003032 ColonProt.restore();
Eli Friedmancf7530f2009-05-25 19:41:42 +00003033 Result = ParseCastExpression(false/*isUnaryExpression*/,
3034 false/*isAddressofOperand*/,
John McCallba7bf592010-08-24 05:47:05 +00003035 NotCastExpr,
Argyrios Kyrtzidis7192a3b2011-07-01 22:22:59 +00003036 // type-id has priority.
Kaelyn Uhrain77e21fc2012-01-25 20:49:08 +00003037 IsTypeCast);
Eli Friedmancf7530f2009-05-25 19:41:42 +00003038 }
Argyrios Kyrtzidisf73f2d22009-05-22 21:09:47 +00003039
3040 // If we parsed a cast-expression, it's really a type-id, otherwise it's
3041 // an expression.
3042 ParseAs = NotCastExpr ? SimpleExpr : CastExpr;
Argyrios Kyrtzidis12179bc2009-05-22 10:24:42 +00003043 }
3044
Mike Stump11289f42009-09-09 15:08:12 +00003045 // The current token should go after the cached tokens.
Argyrios Kyrtzidisf73f2d22009-05-22 21:09:47 +00003046 Toks.push_back(Tok);
3047 // Re-enter the stored parenthesized tokens into the token stream, so we may
3048 // parse them now.
3049 PP.EnterTokenStream(Toks.data(), Toks.size(),
3050 true/*DisableMacroExpansion*/, false/*OwnsTokens*/);
3051 // Drop the current token and bring the first cached one. It's the same token
3052 // as when we entered this function.
3053 ConsumeAnyToken();
Argyrios Kyrtzidis12179bc2009-05-22 10:24:42 +00003054
Argyrios Kyrtzidisf73f2d22009-05-22 21:09:47 +00003055 if (ParseAs >= CompoundLiteral) {
Argyrios Kyrtzidis7192a3b2011-07-01 22:22:59 +00003056 // Parse the type declarator.
3057 DeclSpec DS(AttrFactory);
Argyrios Kyrtzidis7192a3b2011-07-01 22:22:59 +00003058 Declarator DeclaratorInfo(DS, Declarator::TypeNameContext);
Richard Smith87e11a42014-05-15 02:43:47 +00003059 {
3060 ColonProtectionRAIIObject InnerColonProtection(*this);
3061 ParseSpecifierQualifierList(DS);
3062 ParseDeclarator(DeclaratorInfo);
3063 }
Argyrios Kyrtzidis12179bc2009-05-22 10:24:42 +00003064
Argyrios Kyrtzidisf73f2d22009-05-22 21:09:47 +00003065 // Match the ')'.
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00003066 Tracker.consumeClose();
Richard Smith87e11a42014-05-15 02:43:47 +00003067 ColonProt.restore();
Argyrios Kyrtzidis12179bc2009-05-22 10:24:42 +00003068
Argyrios Kyrtzidisf73f2d22009-05-22 21:09:47 +00003069 if (ParseAs == CompoundLiteral) {
3070 ExprType = CompoundLiteral;
Richard Smithaba8b362014-05-15 02:51:15 +00003071 if (DeclaratorInfo.isInvalidType())
3072 return ExprError();
3073
3074 TypeResult Ty = Actions.ActOnTypeName(getCurScope(), DeclaratorInfo);
Richard Smith87e11a42014-05-15 02:43:47 +00003075 return ParseCompoundLiteralExpression(Ty.get(),
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00003076 Tracker.getOpenLocation(),
3077 Tracker.getCloseLocation());
Argyrios Kyrtzidisf73f2d22009-05-22 21:09:47 +00003078 }
Mike Stump11289f42009-09-09 15:08:12 +00003079
Argyrios Kyrtzidisf73f2d22009-05-22 21:09:47 +00003080 // We parsed '(' type-id ')' and the thing after it wasn't a '{'.
3081 assert(ParseAs == CastExpr);
3082
Argyrios Kyrtzidis7192a3b2011-07-01 22:22:59 +00003083 if (DeclaratorInfo.isInvalidType())
Argyrios Kyrtzidisf73f2d22009-05-22 21:09:47 +00003084 return ExprError();
3085
Argyrios Kyrtzidisf73f2d22009-05-22 21:09:47 +00003086 // Result is what ParseCastExpression returned earlier.
Argyrios Kyrtzidis12179bc2009-05-22 10:24:42 +00003087 if (!Result.isInvalid())
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00003088 Result = Actions.ActOnCastExpr(getCurScope(), Tracker.getOpenLocation(),
3089 DeclaratorInfo, CastTy,
Nikola Smiljanic01a75982014-05-29 10:55:11 +00003090 Tracker.getCloseLocation(), Result.get());
Benjamin Kramer62b95d82012-08-23 21:35:17 +00003091 return Result;
Argyrios Kyrtzidis12179bc2009-05-22 10:24:42 +00003092 }
Mike Stump11289f42009-09-09 15:08:12 +00003093
Argyrios Kyrtzidisf73f2d22009-05-22 21:09:47 +00003094 // Not a compound literal, and not followed by a cast-expression.
3095 assert(ParseAs == SimpleExpr);
Argyrios Kyrtzidis12179bc2009-05-22 10:24:42 +00003096
Argyrios Kyrtzidis12179bc2009-05-22 10:24:42 +00003097 ExprType = SimpleExpr;
Argyrios Kyrtzidisf73f2d22009-05-22 21:09:47 +00003098 Result = ParseExpression();
Argyrios Kyrtzidis12179bc2009-05-22 10:24:42 +00003099 if (!Result.isInvalid() && Tok.is(tok::r_paren))
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00003100 Result = Actions.ActOnParenExpr(Tracker.getOpenLocation(),
Nikola Smiljanic01a75982014-05-29 10:55:11 +00003101 Tok.getLocation(), Result.get());
Argyrios Kyrtzidis12179bc2009-05-22 10:24:42 +00003102
3103 // Match the ')'.
3104 if (Result.isInvalid()) {
Alexey Bataevee6507d2013-11-18 08:17:37 +00003105 SkipUntil(tok::r_paren, StopAtSemi);
Argyrios Kyrtzidis12179bc2009-05-22 10:24:42 +00003106 return ExprError();
3107 }
Mike Stump11289f42009-09-09 15:08:12 +00003108
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00003109 Tracker.consumeClose();
Benjamin Kramer62b95d82012-08-23 21:35:17 +00003110 return Result;
Argyrios Kyrtzidis12179bc2009-05-22 10:24:42 +00003111}