blob: d079aa1d3df611c02221e6f086506dea73ed040a [file] [log] [blame]
Reid Spencer5f016e22007-07-11 17:01:13 +00001//===--- ParseExprCXX.cpp - C++ Expression Parsing ------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner0bc735f2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Reid Spencer5f016e22007-07-11 17:01:13 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the Expression parsing implementation for C++.
11//
12//===----------------------------------------------------------------------===//
13
Chris Lattner500d3292009-01-29 05:15:15 +000014#include "clang/Parse/ParseDiagnostic.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000015#include "clang/Parse/Parser.h"
Douglas Gregorbc61bd82011-01-11 00:33:19 +000016#include "RAIIObjectsForParser.h"
John McCall19510852010-08-20 18:27:03 +000017#include "clang/Sema/DeclSpec.h"
Douglas Gregorae7902c2011-08-04 15:30:47 +000018#include "clang/Sema/Scope.h"
John McCall19510852010-08-20 18:27:03 +000019#include "clang/Sema/ParsedTemplate.h"
Douglas Gregor3f9a0562009-11-03 01:35:08 +000020#include "llvm/Support/ErrorHandling.h"
21
Reid Spencer5f016e22007-07-11 17:01:13 +000022using namespace clang;
23
Richard Smithea698b32011-04-14 21:45:45 +000024static int SelectDigraphErrorMessage(tok::TokenKind Kind) {
25 switch (Kind) {
26 case tok::kw_template: return 0;
27 case tok::kw_const_cast: return 1;
28 case tok::kw_dynamic_cast: return 2;
29 case tok::kw_reinterpret_cast: return 3;
30 case tok::kw_static_cast: return 4;
31 default:
David Blaikieb219cfc2011-09-23 05:06:16 +000032 llvm_unreachable("Unknown type for digraph error message.");
Richard Smithea698b32011-04-14 21:45:45 +000033 }
34}
35
36// Are the two tokens adjacent in the same source file?
37static bool AreTokensAdjacent(Preprocessor &PP, Token &First, Token &Second) {
38 SourceManager &SM = PP.getSourceManager();
39 SourceLocation FirstLoc = SM.getSpellingLoc(First.getLocation());
Argyrios Kyrtzidisa64ccef2011-09-19 20:40:19 +000040 SourceLocation FirstEnd = FirstLoc.getLocWithOffset(First.getLength());
Richard Smithea698b32011-04-14 21:45:45 +000041 return FirstEnd == SM.getSpellingLoc(Second.getLocation());
42}
43
44// Suggest fixit for "<::" after a cast.
45static void FixDigraph(Parser &P, Preprocessor &PP, Token &DigraphToken,
46 Token &ColonToken, tok::TokenKind Kind, bool AtDigraph) {
47 // Pull '<:' and ':' off token stream.
48 if (!AtDigraph)
49 PP.Lex(DigraphToken);
50 PP.Lex(ColonToken);
51
52 SourceRange Range;
53 Range.setBegin(DigraphToken.getLocation());
54 Range.setEnd(ColonToken.getLocation());
55 P.Diag(DigraphToken.getLocation(), diag::err_missing_whitespace_digraph)
56 << SelectDigraphErrorMessage(Kind)
57 << FixItHint::CreateReplacement(Range, "< ::");
58
59 // Update token information to reflect their change in token type.
60 ColonToken.setKind(tok::coloncolon);
Argyrios Kyrtzidisa64ccef2011-09-19 20:40:19 +000061 ColonToken.setLocation(ColonToken.getLocation().getLocWithOffset(-1));
Richard Smithea698b32011-04-14 21:45:45 +000062 ColonToken.setLength(2);
63 DigraphToken.setKind(tok::less);
64 DigraphToken.setLength(1);
65
66 // Push new tokens back to token stream.
67 PP.EnterToken(ColonToken);
68 if (!AtDigraph)
69 PP.EnterToken(DigraphToken);
70}
71
Richard Trieu950be712011-09-19 19:01:00 +000072// Check for '<::' which should be '< ::' instead of '[:' when following
73// a template name.
74void Parser::CheckForTemplateAndDigraph(Token &Next, ParsedType ObjectType,
75 bool EnteringContext,
76 IdentifierInfo &II, CXXScopeSpec &SS) {
Richard Trieuc11030e2011-09-20 20:03:50 +000077 if (!Next.is(tok::l_square) || Next.getLength() != 2)
Richard Trieu950be712011-09-19 19:01:00 +000078 return;
79
80 Token SecondToken = GetLookAheadToken(2);
81 if (!SecondToken.is(tok::colon) || !AreTokensAdjacent(PP, Next, SecondToken))
82 return;
83
84 TemplateTy Template;
85 UnqualifiedId TemplateName;
86 TemplateName.setIdentifier(&II, Tok.getLocation());
87 bool MemberOfUnknownSpecialization;
88 if (!Actions.isTemplateName(getCurScope(), SS, /*hasTemplateKeyword=*/false,
89 TemplateName, ObjectType, EnteringContext,
90 Template, MemberOfUnknownSpecialization))
91 return;
92
93 FixDigraph(*this, PP, Next, SecondToken, tok::kw_template,
94 /*AtDigraph*/false);
95}
96
Mike Stump1eb44332009-09-09 15:08:12 +000097/// \brief Parse global scope or nested-name-specifier if present.
Douglas Gregor2dd078a2009-09-02 22:59:36 +000098///
99/// Parses a C++ global scope specifier ('::') or nested-name-specifier (which
Mike Stump1eb44332009-09-09 15:08:12 +0000100/// may be preceded by '::'). Note that this routine will not parse ::new or
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000101/// ::delete; it will just leave them in the token stream.
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000102///
103/// '::'[opt] nested-name-specifier
104/// '::'
105///
106/// nested-name-specifier:
107/// type-name '::'
108/// namespace-name '::'
109/// nested-name-specifier identifier '::'
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000110/// nested-name-specifier 'template'[opt] simple-template-id '::'
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000111///
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000112///
Mike Stump1eb44332009-09-09 15:08:12 +0000113/// \param SS the scope specifier that will be set to the parsed
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000114/// nested-name-specifier (or empty)
115///
Mike Stump1eb44332009-09-09 15:08:12 +0000116/// \param ObjectType if this nested-name-specifier is being parsed following
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000117/// the "." or "->" of a member access expression, this parameter provides the
118/// type of the object whose members are being accessed.
119///
120/// \param EnteringContext whether we will be entering into the context of
121/// the nested-name-specifier after parsing it.
122///
Douglas Gregord4dca082010-02-24 18:44:31 +0000123/// \param MayBePseudoDestructor When non-NULL, points to a flag that
124/// indicates whether this nested-name-specifier may be part of a
125/// pseudo-destructor name. In this case, the flag will be set false
126/// if we don't actually end up parsing a destructor name. Moreorover,
127/// if we do end up determining that we are parsing a destructor name,
128/// the last component of the nested-name-specifier is not parsed as
129/// part of the scope specifier.
130
Douglas Gregorb10cd042010-02-21 18:36:56 +0000131/// member access expression, e.g., the \p T:: in \p p->T::m.
132///
John McCall9ba61662010-02-26 08:45:28 +0000133/// \returns true if there was an error parsing a scope specifier
Douglas Gregor495c35d2009-08-25 22:51:20 +0000134bool Parser::ParseOptionalCXXScopeSpecifier(CXXScopeSpec &SS,
John McCallb3d87482010-08-24 05:47:05 +0000135 ParsedType ObjectType,
Douglas Gregorb10cd042010-02-21 18:36:56 +0000136 bool EnteringContext,
Francois Pichet4147d302011-03-27 19:41:34 +0000137 bool *MayBePseudoDestructor,
138 bool IsTypename) {
Argyrios Kyrtzidis4bdd91c2008-11-26 21:41:52 +0000139 assert(getLang().CPlusPlus &&
Chris Lattner7452c6f2009-01-05 01:24:05 +0000140 "Call sites of this function should be guarded by checking for C++");
Mike Stump1eb44332009-09-09 15:08:12 +0000141
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000142 if (Tok.is(tok::annot_cxxscope)) {
Douglas Gregorc34348a2011-02-24 17:54:50 +0000143 Actions.RestoreNestedNameSpecifierAnnotation(Tok.getAnnotationValue(),
144 Tok.getAnnotationRange(),
145 SS);
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000146 ConsumeToken();
John McCall9ba61662010-02-26 08:45:28 +0000147 return false;
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000148 }
Chris Lattnere607e802009-01-04 21:14:15 +0000149
Douglas Gregor39a8de12009-02-25 19:37:18 +0000150 bool HasScopeSpecifier = false;
151
Chris Lattner5b454732009-01-05 03:55:46 +0000152 if (Tok.is(tok::coloncolon)) {
153 // ::new and ::delete aren't nested-name-specifiers.
154 tok::TokenKind NextKind = NextToken().getKind();
155 if (NextKind == tok::kw_new || NextKind == tok::kw_delete)
156 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000157
Chris Lattner55a7cef2009-01-05 00:13:00 +0000158 // '::' - Global scope qualifier.
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000159 if (Actions.ActOnCXXGlobalScopeSpecifier(getCurScope(), ConsumeToken(), SS))
160 return true;
161
Douglas Gregor39a8de12009-02-25 19:37:18 +0000162 HasScopeSpecifier = true;
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000163 }
164
Douglas Gregord4dca082010-02-24 18:44:31 +0000165 bool CheckForDestructor = false;
166 if (MayBePseudoDestructor && *MayBePseudoDestructor) {
167 CheckForDestructor = true;
168 *MayBePseudoDestructor = false;
169 }
170
Douglas Gregor39a8de12009-02-25 19:37:18 +0000171 while (true) {
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000172 if (HasScopeSpecifier) {
173 // C++ [basic.lookup.classref]p5:
174 // If the qualified-id has the form
Douglas Gregor3b6afbb2009-09-09 00:23:06 +0000175 //
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000176 // ::class-name-or-namespace-name::...
Douglas Gregor3b6afbb2009-09-09 00:23:06 +0000177 //
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000178 // the class-name-or-namespace-name is looked up in global scope as a
179 // class-name or namespace-name.
180 //
181 // To implement this, we clear out the object type as soon as we've
182 // seen a leading '::' or part of a nested-name-specifier.
John McCallb3d87482010-08-24 05:47:05 +0000183 ObjectType = ParsedType();
Douglas Gregor81b747b2009-09-17 21:32:03 +0000184
185 if (Tok.is(tok::code_completion)) {
186 // Code completion for a nested-name-specifier, where the code
187 // code completion token follows the '::'.
Douglas Gregor23c94db2010-07-02 17:43:08 +0000188 Actions.CodeCompleteQualifiedId(getCurScope(), SS, EnteringContext);
Argyrios Kyrtzidisb6b2b182011-04-23 01:04:12 +0000189 // Include code completion token into the range of the scope otherwise
190 // when we try to annotate the scope tokens the dangling code completion
191 // token will cause assertion in
192 // Preprocessor::AnnotatePreviousCachedTokens.
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +0000193 SS.setEndLoc(Tok.getLocation());
194 cutOffParsing();
195 return true;
Douglas Gregor81b747b2009-09-17 21:32:03 +0000196 }
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000197 }
Mike Stump1eb44332009-09-09 15:08:12 +0000198
Douglas Gregor39a8de12009-02-25 19:37:18 +0000199 // nested-name-specifier:
Chris Lattner77cf72a2009-06-26 03:47:46 +0000200 // nested-name-specifier 'template'[opt] simple-template-id '::'
201
202 // Parse the optional 'template' keyword, then make sure we have
203 // 'identifier <' after it.
204 if (Tok.is(tok::kw_template)) {
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000205 // If we don't have a scope specifier or an object type, this isn't a
Eli Friedmaneab975d2009-08-29 04:08:08 +0000206 // nested-name-specifier, since they aren't allowed to start with
207 // 'template'.
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000208 if (!HasScopeSpecifier && !ObjectType)
Eli Friedmaneab975d2009-08-29 04:08:08 +0000209 break;
210
Douglas Gregor7bb87fc2009-11-11 16:39:34 +0000211 TentativeParsingAction TPA(*this);
Chris Lattner77cf72a2009-06-26 03:47:46 +0000212 SourceLocation TemplateKWLoc = ConsumeToken();
Douglas Gregorca1bdd72009-11-04 00:56:37 +0000213
214 UnqualifiedId TemplateName;
215 if (Tok.is(tok::identifier)) {
Douglas Gregorca1bdd72009-11-04 00:56:37 +0000216 // Consume the identifier.
Douglas Gregor7bb87fc2009-11-11 16:39:34 +0000217 TemplateName.setIdentifier(Tok.getIdentifierInfo(), Tok.getLocation());
Douglas Gregorca1bdd72009-11-04 00:56:37 +0000218 ConsumeToken();
219 } else if (Tok.is(tok::kw_operator)) {
220 if (ParseUnqualifiedIdOperator(SS, EnteringContext, ObjectType,
Douglas Gregor7bb87fc2009-11-11 16:39:34 +0000221 TemplateName)) {
222 TPA.Commit();
Douglas Gregorca1bdd72009-11-04 00:56:37 +0000223 break;
Douglas Gregor7bb87fc2009-11-11 16:39:34 +0000224 }
Douglas Gregorca1bdd72009-11-04 00:56:37 +0000225
Sean Hunte6252d12009-11-28 08:58:14 +0000226 if (TemplateName.getKind() != UnqualifiedId::IK_OperatorFunctionId &&
227 TemplateName.getKind() != UnqualifiedId::IK_LiteralOperatorId) {
Douglas Gregorca1bdd72009-11-04 00:56:37 +0000228 Diag(TemplateName.getSourceRange().getBegin(),
229 diag::err_id_after_template_in_nested_name_spec)
230 << TemplateName.getSourceRange();
Douglas Gregor7bb87fc2009-11-11 16:39:34 +0000231 TPA.Commit();
Douglas Gregorca1bdd72009-11-04 00:56:37 +0000232 break;
233 }
234 } else {
Douglas Gregor7bb87fc2009-11-11 16:39:34 +0000235 TPA.Revert();
Chris Lattner77cf72a2009-06-26 03:47:46 +0000236 break;
237 }
Mike Stump1eb44332009-09-09 15:08:12 +0000238
Douglas Gregor7bb87fc2009-11-11 16:39:34 +0000239 // If the next token is not '<', we have a qualified-id that refers
240 // to a template name, such as T::template apply, but is not a
241 // template-id.
242 if (Tok.isNot(tok::less)) {
243 TPA.Revert();
244 break;
245 }
246
247 // Commit to parsing the template-id.
248 TPA.Commit();
Douglas Gregord6ab2322010-06-16 23:00:59 +0000249 TemplateTy Template;
Douglas Gregor23c94db2010-07-02 17:43:08 +0000250 if (TemplateNameKind TNK = Actions.ActOnDependentTemplateName(getCurScope(),
Douglas Gregord6ab2322010-06-16 23:00:59 +0000251 TemplateKWLoc,
252 SS,
253 TemplateName,
254 ObjectType,
255 EnteringContext,
256 Template)) {
Douglas Gregor059101f2011-03-02 00:47:37 +0000257 if (AnnotateTemplateIdToken(Template, TNK, SS, TemplateName,
Douglas Gregord6ab2322010-06-16 23:00:59 +0000258 TemplateKWLoc, false))
259 return true;
260 } else
John McCall9ba61662010-02-26 08:45:28 +0000261 return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000262
Chris Lattner77cf72a2009-06-26 03:47:46 +0000263 continue;
264 }
Mike Stump1eb44332009-09-09 15:08:12 +0000265
Douglas Gregor39a8de12009-02-25 19:37:18 +0000266 if (Tok.is(tok::annot_template_id) && NextToken().is(tok::coloncolon)) {
Mike Stump1eb44332009-09-09 15:08:12 +0000267 // We have
Douglas Gregor39a8de12009-02-25 19:37:18 +0000268 //
269 // simple-template-id '::'
270 //
271 // So we need to check whether the simple-template-id is of the
Douglas Gregorc45c2322009-03-31 00:43:58 +0000272 // right kind (it should name a type or be dependent), and then
273 // convert it into a type within the nested-name-specifier.
Argyrios Kyrtzidis25a76762011-06-22 06:09:49 +0000274 TemplateIdAnnotation *TemplateId = takeTemplateIdAnnotation(Tok);
Douglas Gregord4dca082010-02-24 18:44:31 +0000275 if (CheckForDestructor && GetLookAheadToken(2).is(tok::tilde)) {
276 *MayBePseudoDestructor = true;
John McCall9ba61662010-02-26 08:45:28 +0000277 return false;
Douglas Gregord4dca082010-02-24 18:44:31 +0000278 }
279
Douglas Gregor6cd9d4a2011-03-04 21:37:14 +0000280 // Consume the template-id token.
281 ConsumeToken();
282
283 assert(Tok.is(tok::coloncolon) && "NextToken() not working properly!");
284 SourceLocation CCLoc = ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +0000285
Douglas Gregor6cd9d4a2011-03-04 21:37:14 +0000286 if (!HasScopeSpecifier)
287 HasScopeSpecifier = true;
288
289 ASTTemplateArgsPtr TemplateArgsPtr(Actions,
290 TemplateId->getTemplateArgs(),
291 TemplateId->NumArgs);
292
293 if (Actions.ActOnCXXNestedNameSpecifier(getCurScope(),
294 /*FIXME:*/SourceLocation(),
295 SS,
296 TemplateId->Template,
297 TemplateId->TemplateNameLoc,
298 TemplateId->LAngleLoc,
299 TemplateArgsPtr,
300 TemplateId->RAngleLoc,
301 CCLoc,
302 EnteringContext)) {
303 SourceLocation StartLoc
304 = SS.getBeginLoc().isValid()? SS.getBeginLoc()
305 : TemplateId->TemplateNameLoc;
306 SS.SetInvalid(SourceRange(StartLoc, CCLoc));
Chris Lattner67b9e832009-06-26 03:45:46 +0000307 }
Argyrios Kyrtzidiseccce7e2011-05-03 18:45:38 +0000308
Douglas Gregor6cd9d4a2011-03-04 21:37:14 +0000309 continue;
Douglas Gregor39a8de12009-02-25 19:37:18 +0000310 }
311
Chris Lattner5c7f7862009-06-26 03:52:38 +0000312
313 // The rest of the nested-name-specifier possibilities start with
314 // tok::identifier.
315 if (Tok.isNot(tok::identifier))
316 break;
317
318 IdentifierInfo &II = *Tok.getIdentifierInfo();
319
320 // nested-name-specifier:
321 // type-name '::'
322 // namespace-name '::'
323 // nested-name-specifier identifier '::'
324 Token Next = NextToken();
Chris Lattner46646492009-12-07 01:36:53 +0000325
326 // If we get foo:bar, this is almost certainly a typo for foo::bar. Recover
327 // and emit a fixit hint for it.
Douglas Gregorb10cd042010-02-21 18:36:56 +0000328 if (Next.is(tok::colon) && !ColonIsSacred) {
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000329 if (Actions.IsInvalidUnlessNestedName(getCurScope(), SS, II,
330 Tok.getLocation(),
331 Next.getLocation(), ObjectType,
Douglas Gregorb10cd042010-02-21 18:36:56 +0000332 EnteringContext) &&
333 // If the token after the colon isn't an identifier, it's still an
334 // error, but they probably meant something else strange so don't
335 // recover like this.
336 PP.LookAhead(1).is(tok::identifier)) {
337 Diag(Next, diag::err_unexected_colon_in_nested_name_spec)
Douglas Gregor849b2432010-03-31 17:46:05 +0000338 << FixItHint::CreateReplacement(Next.getLocation(), "::");
Douglas Gregorb10cd042010-02-21 18:36:56 +0000339
340 // Recover as if the user wrote '::'.
341 Next.setKind(tok::coloncolon);
342 }
Chris Lattner46646492009-12-07 01:36:53 +0000343 }
344
Chris Lattner5c7f7862009-06-26 03:52:38 +0000345 if (Next.is(tok::coloncolon)) {
Douglas Gregor77549082010-02-24 21:29:12 +0000346 if (CheckForDestructor && GetLookAheadToken(2).is(tok::tilde) &&
Douglas Gregor23c94db2010-07-02 17:43:08 +0000347 !Actions.isNonTypeNestedNameSpecifier(getCurScope(), SS, Tok.getLocation(),
Douglas Gregor77549082010-02-24 21:29:12 +0000348 II, ObjectType)) {
Douglas Gregord4dca082010-02-24 18:44:31 +0000349 *MayBePseudoDestructor = true;
John McCall9ba61662010-02-26 08:45:28 +0000350 return false;
Douglas Gregord4dca082010-02-24 18:44:31 +0000351 }
352
Chris Lattner5c7f7862009-06-26 03:52:38 +0000353 // We have an identifier followed by a '::'. Lookup this name
354 // as the name in a nested-name-specifier.
355 SourceLocation IdLoc = ConsumeToken();
Chris Lattner46646492009-12-07 01:36:53 +0000356 assert((Tok.is(tok::coloncolon) || Tok.is(tok::colon)) &&
357 "NextToken() not working properly!");
Chris Lattner5c7f7862009-06-26 03:52:38 +0000358 SourceLocation CCLoc = ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +0000359
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000360 HasScopeSpecifier = true;
361 if (Actions.ActOnCXXNestedNameSpecifier(getCurScope(), II, IdLoc, CCLoc,
362 ObjectType, EnteringContext, SS))
363 SS.SetInvalid(SourceRange(IdLoc, CCLoc));
364
Chris Lattner5c7f7862009-06-26 03:52:38 +0000365 continue;
366 }
Mike Stump1eb44332009-09-09 15:08:12 +0000367
Richard Trieu950be712011-09-19 19:01:00 +0000368 CheckForTemplateAndDigraph(Next, ObjectType, EnteringContext, II, SS);
Richard Smithea698b32011-04-14 21:45:45 +0000369
Chris Lattner5c7f7862009-06-26 03:52:38 +0000370 // nested-name-specifier:
371 // type-name '<'
372 if (Next.is(tok::less)) {
373 TemplateTy Template;
Douglas Gregor014e88d2009-11-03 23:16:33 +0000374 UnqualifiedId TemplateName;
375 TemplateName.setIdentifier(&II, Tok.getLocation());
Douglas Gregor1fd6d442010-05-21 23:18:07 +0000376 bool MemberOfUnknownSpecialization;
Douglas Gregor23c94db2010-07-02 17:43:08 +0000377 if (TemplateNameKind TNK = Actions.isTemplateName(getCurScope(), SS,
Abramo Bagnara7c153532010-08-06 12:11:11 +0000378 /*hasTemplateKeyword=*/false,
Douglas Gregor014e88d2009-11-03 23:16:33 +0000379 TemplateName,
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000380 ObjectType,
Douglas Gregor495c35d2009-08-25 22:51:20 +0000381 EnteringContext,
Douglas Gregor1fd6d442010-05-21 23:18:07 +0000382 Template,
383 MemberOfUnknownSpecialization)) {
Chris Lattner5c7f7862009-06-26 03:52:38 +0000384 // We have found a template name, so annotate this this token
385 // with a template-id annotation. We do not permit the
386 // template-id to be translated into a type annotation,
387 // because some clients (e.g., the parsing of class template
388 // specializations) still want to see the original template-id
389 // token.
Douglas Gregorca1bdd72009-11-04 00:56:37 +0000390 ConsumeToken();
Douglas Gregor059101f2011-03-02 00:47:37 +0000391 if (AnnotateTemplateIdToken(Template, TNK, SS, TemplateName,
Douglas Gregorca1bdd72009-11-04 00:56:37 +0000392 SourceLocation(), false))
John McCall9ba61662010-02-26 08:45:28 +0000393 return true;
Chris Lattner5c7f7862009-06-26 03:52:38 +0000394 continue;
Douglas Gregord5ab9b02010-05-21 23:43:39 +0000395 }
396
397 if (MemberOfUnknownSpecialization && (ObjectType || SS.isSet()) &&
Francois Pichet4147d302011-03-27 19:41:34 +0000398 (IsTypename || IsTemplateArgumentList(1))) {
Douglas Gregord5ab9b02010-05-21 23:43:39 +0000399 // We have something like t::getAs<T>, where getAs is a
400 // member of an unknown specialization. However, this will only
401 // parse correctly as a template, so suggest the keyword 'template'
402 // before 'getAs' and treat this as a dependent template name.
Francois Pichet4147d302011-03-27 19:41:34 +0000403 unsigned DiagID = diag::err_missing_dependent_template_keyword;
Francois Pichet62ec1f22011-09-17 17:15:52 +0000404 if (getLang().MicrosoftExt)
Francois Pichetcf320c62011-04-22 08:25:24 +0000405 DiagID = diag::warn_missing_dependent_template_keyword;
Francois Pichet4147d302011-03-27 19:41:34 +0000406
407 Diag(Tok.getLocation(), DiagID)
Douglas Gregord5ab9b02010-05-21 23:43:39 +0000408 << II.getName()
409 << FixItHint::CreateInsertion(Tok.getLocation(), "template ");
410
Douglas Gregord6ab2322010-06-16 23:00:59 +0000411 if (TemplateNameKind TNK
Douglas Gregor23c94db2010-07-02 17:43:08 +0000412 = Actions.ActOnDependentTemplateName(getCurScope(),
Douglas Gregord6ab2322010-06-16 23:00:59 +0000413 Tok.getLocation(), SS,
414 TemplateName, ObjectType,
415 EnteringContext, Template)) {
416 // Consume the identifier.
417 ConsumeToken();
Douglas Gregor059101f2011-03-02 00:47:37 +0000418 if (AnnotateTemplateIdToken(Template, TNK, SS, TemplateName,
Douglas Gregord6ab2322010-06-16 23:00:59 +0000419 SourceLocation(), false))
420 return true;
421 }
422 else
Douglas Gregord5ab9b02010-05-21 23:43:39 +0000423 return true;
Douglas Gregord6ab2322010-06-16 23:00:59 +0000424
Douglas Gregord5ab9b02010-05-21 23:43:39 +0000425 continue;
Chris Lattner5c7f7862009-06-26 03:52:38 +0000426 }
427 }
428
Douglas Gregor39a8de12009-02-25 19:37:18 +0000429 // We don't have any tokens that form the beginning of a
430 // nested-name-specifier, so we're done.
431 break;
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000432 }
Mike Stump1eb44332009-09-09 15:08:12 +0000433
Douglas Gregord4dca082010-02-24 18:44:31 +0000434 // Even if we didn't see any pieces of a nested-name-specifier, we
435 // still check whether there is a tilde in this position, which
436 // indicates a potential pseudo-destructor.
437 if (CheckForDestructor && Tok.is(tok::tilde))
438 *MayBePseudoDestructor = true;
439
John McCall9ba61662010-02-26 08:45:28 +0000440 return false;
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000441}
442
443/// ParseCXXIdExpression - Handle id-expression.
444///
445/// id-expression:
446/// unqualified-id
447/// qualified-id
448///
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000449/// qualified-id:
450/// '::'[opt] nested-name-specifier 'template'[opt] unqualified-id
451/// '::' identifier
452/// '::' operator-function-id
Douglas Gregoredce4dd2009-06-30 22:34:41 +0000453/// '::' template-id
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000454///
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000455/// NOTE: The standard specifies that, for qualified-id, the parser does not
456/// expect:
457///
458/// '::' conversion-function-id
459/// '::' '~' class-name
460///
461/// This may cause a slight inconsistency on diagnostics:
462///
463/// class C {};
464/// namespace A {}
465/// void f() {
466/// :: A :: ~ C(); // Some Sema error about using destructor with a
467/// // namespace.
468/// :: ~ C(); // Some Parser error like 'unexpected ~'.
469/// }
470///
471/// We simplify the parser a bit and make it work like:
472///
473/// qualified-id:
474/// '::'[opt] nested-name-specifier 'template'[opt] unqualified-id
475/// '::' unqualified-id
476///
477/// That way Sema can handle and report similar errors for namespaces and the
478/// global scope.
479///
Sebastian Redlebc07d52009-02-03 20:19:35 +0000480/// The isAddressOfOperand parameter indicates that this id-expression is a
481/// direct operand of the address-of operator. This is, besides member contexts,
482/// the only place where a qualified-id naming a non-static class member may
483/// appear.
484///
John McCall60d7b3a2010-08-24 06:29:42 +0000485ExprResult Parser::ParseCXXIdExpression(bool isAddressOfOperand) {
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000486 // qualified-id:
487 // '::'[opt] nested-name-specifier 'template'[opt] unqualified-id
488 // '::' unqualified-id
489 //
490 CXXScopeSpec SS;
John McCallb3d87482010-08-24 05:47:05 +0000491 ParseOptionalCXXScopeSpecifier(SS, ParsedType(), false);
Douglas Gregor02a24ee2009-11-03 16:56:39 +0000492
493 UnqualifiedId Name;
494 if (ParseUnqualifiedId(SS,
495 /*EnteringContext=*/false,
496 /*AllowDestructorName=*/false,
497 /*AllowConstructorName=*/false,
John McCallb3d87482010-08-24 05:47:05 +0000498 /*ObjectType=*/ ParsedType(),
Douglas Gregor02a24ee2009-11-03 16:56:39 +0000499 Name))
500 return ExprError();
John McCallb681b612009-11-22 02:49:43 +0000501
502 // This is only the direct operand of an & operator if it is not
503 // followed by a postfix-expression suffix.
John McCall9c72c602010-08-27 09:08:28 +0000504 if (isAddressOfOperand && isPostfixExpressionSuffixStart())
505 isAddressOfOperand = false;
Douglas Gregor02a24ee2009-11-03 16:56:39 +0000506
Douglas Gregor23c94db2010-07-02 17:43:08 +0000507 return Actions.ActOnIdExpression(getCurScope(), SS, Name, Tok.is(tok::l_paren),
Douglas Gregor02a24ee2009-11-03 16:56:39 +0000508 isAddressOfOperand);
509
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000510}
511
Douglas Gregorae7902c2011-08-04 15:30:47 +0000512/// ParseLambdaExpression - Parse a C++0x lambda expression.
513///
514/// lambda-expression:
515/// lambda-introducer lambda-declarator[opt] compound-statement
516///
517/// lambda-introducer:
518/// '[' lambda-capture[opt] ']'
519///
520/// lambda-capture:
521/// capture-default
522/// capture-list
523/// capture-default ',' capture-list
524///
525/// capture-default:
526/// '&'
527/// '='
528///
529/// capture-list:
530/// capture
531/// capture-list ',' capture
532///
533/// capture:
534/// identifier
535/// '&' identifier
536/// 'this'
537///
538/// lambda-declarator:
539/// '(' parameter-declaration-clause ')' attribute-specifier[opt]
540/// 'mutable'[opt] exception-specification[opt]
541/// trailing-return-type[opt]
542///
543ExprResult Parser::ParseLambdaExpression() {
544 // Parse lambda-introducer.
545 LambdaIntroducer Intro;
546
547 llvm::Optional<unsigned> DiagID(ParseLambdaIntroducer(Intro));
548 if (DiagID) {
549 Diag(Tok, DiagID.getValue());
550 SkipUntil(tok::r_square);
551 }
552
553 return ParseLambdaExpressionAfterIntroducer(Intro);
554}
555
556/// TryParseLambdaExpression - Use lookahead and potentially tentative
557/// parsing to determine if we are looking at a C++0x lambda expression, and parse
558/// it if we are.
559///
560/// If we are not looking at a lambda expression, returns ExprError().
561ExprResult Parser::TryParseLambdaExpression() {
562 assert(getLang().CPlusPlus0x
563 && Tok.is(tok::l_square)
564 && "Not at the start of a possible lambda expression.");
565
566 const Token Next = NextToken(), After = GetLookAheadToken(2);
567
568 // If lookahead indicates this is a lambda...
569 if (Next.is(tok::r_square) || // []
570 Next.is(tok::equal) || // [=
571 (Next.is(tok::amp) && // [&] or [&,
572 (After.is(tok::r_square) ||
573 After.is(tok::comma))) ||
574 (Next.is(tok::identifier) && // [identifier]
575 After.is(tok::r_square))) {
576 return ParseLambdaExpression();
577 }
578
579 // If lookahead indicates this is an Objective-C message...
580 if (Next.is(tok::identifier) && After.is(tok::identifier)) {
581 return ExprError();
582 }
583
584 LambdaIntroducer Intro;
585 if (TryParseLambdaIntroducer(Intro))
586 return ExprError();
587 return ParseLambdaExpressionAfterIntroducer(Intro);
588}
589
590/// ParseLambdaExpression - Parse a lambda introducer.
591///
592/// Returns a DiagnosticID if it hit something unexpected.
593llvm::Optional<unsigned> Parser::ParseLambdaIntroducer(LambdaIntroducer &Intro) {
594 typedef llvm::Optional<unsigned> DiagResult;
595
596 assert(Tok.is(tok::l_square) && "Lambda expressions begin with '['.");
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000597 BalancedDelimiterTracker T(*this, tok::l_square);
598 T.consumeOpen();
599
600 Intro.Range.setBegin(T.getOpenLocation());
Douglas Gregorae7902c2011-08-04 15:30:47 +0000601
602 bool first = true;
603
604 // Parse capture-default.
605 if (Tok.is(tok::amp) &&
606 (NextToken().is(tok::comma) || NextToken().is(tok::r_square))) {
607 Intro.Default = LCD_ByRef;
608 ConsumeToken();
609 first = false;
610 } else if (Tok.is(tok::equal)) {
611 Intro.Default = LCD_ByCopy;
612 ConsumeToken();
613 first = false;
614 }
615
616 while (Tok.isNot(tok::r_square)) {
617 if (!first) {
618 if (Tok.isNot(tok::comma))
619 return DiagResult(diag::err_expected_comma_or_rsquare);
620 ConsumeToken();
621 }
622
623 first = false;
624
625 // Parse capture.
626 LambdaCaptureKind Kind = LCK_ByCopy;
627 SourceLocation Loc;
628 IdentifierInfo* Id = 0;
629
630 if (Tok.is(tok::kw_this)) {
631 Kind = LCK_This;
632 Loc = ConsumeToken();
633 } else {
634 if (Tok.is(tok::amp)) {
635 Kind = LCK_ByRef;
636 ConsumeToken();
637 }
638
639 if (Tok.is(tok::identifier)) {
640 Id = Tok.getIdentifierInfo();
641 Loc = ConsumeToken();
642 } else if (Tok.is(tok::kw_this)) {
643 // FIXME: If we want to suggest a fixit here, will need to return more
644 // than just DiagnosticID. Perhaps full DiagnosticBuilder that can be
645 // Clear()ed to prevent emission in case of tentative parsing?
646 return DiagResult(diag::err_this_captured_by_reference);
647 } else {
648 return DiagResult(diag::err_expected_capture);
649 }
650 }
651
652 Intro.addCapture(Kind, Loc, Id);
653 }
654
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000655 T.consumeClose();
656 Intro.Range.setEnd(T.getCloseLocation());
Douglas Gregorae7902c2011-08-04 15:30:47 +0000657
658 return DiagResult();
659}
660
661/// TryParseLambdaExpression - Tentatively parse a lambda introducer.
662///
663/// Returns true if it hit something unexpected.
664bool Parser::TryParseLambdaIntroducer(LambdaIntroducer &Intro) {
665 TentativeParsingAction PA(*this);
666
667 llvm::Optional<unsigned> DiagID(ParseLambdaIntroducer(Intro));
668
669 if (DiagID) {
670 PA.Revert();
671 return true;
672 }
673
674 PA.Commit();
675 return false;
676}
677
678/// ParseLambdaExpressionAfterIntroducer - Parse the rest of a lambda
679/// expression.
680ExprResult Parser::ParseLambdaExpressionAfterIntroducer(
681 LambdaIntroducer &Intro) {
682 // Parse lambda-declarator[opt].
683 DeclSpec DS(AttrFactory);
684 Declarator D(DS, Declarator::PrototypeContext);
685
686 if (Tok.is(tok::l_paren)) {
687 ParseScope PrototypeScope(this,
688 Scope::FunctionPrototypeScope |
689 Scope::DeclScope);
690
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000691 SourceLocation DeclLoc, DeclEndLoc;
692 BalancedDelimiterTracker T(*this, tok::l_paren);
693 T.consumeOpen();
694 DeclLoc = T.getOpenLocation();
Douglas Gregorae7902c2011-08-04 15:30:47 +0000695
696 // Parse parameter-declaration-clause.
697 ParsedAttributes Attr(AttrFactory);
698 llvm::SmallVector<DeclaratorChunk::ParamInfo, 16> ParamInfo;
699 SourceLocation EllipsisLoc;
700
701 if (Tok.isNot(tok::r_paren))
702 ParseParameterDeclarationClause(D, Attr, ParamInfo, EllipsisLoc);
703
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000704 T.consumeClose();
705 DeclEndLoc = T.getCloseLocation();
Douglas Gregorae7902c2011-08-04 15:30:47 +0000706
707 // Parse 'mutable'[opt].
708 SourceLocation MutableLoc;
709 if (Tok.is(tok::kw_mutable)) {
710 MutableLoc = ConsumeToken();
711 DeclEndLoc = MutableLoc;
712 }
713
714 // Parse exception-specification[opt].
715 ExceptionSpecificationType ESpecType = EST_None;
716 SourceRange ESpecRange;
717 llvm::SmallVector<ParsedType, 2> DynamicExceptions;
718 llvm::SmallVector<SourceRange, 2> DynamicExceptionRanges;
719 ExprResult NoexceptExpr;
720 ESpecType = MaybeParseExceptionSpecification(ESpecRange,
721 DynamicExceptions,
722 DynamicExceptionRanges,
723 NoexceptExpr);
724
725 if (ESpecType != EST_None)
726 DeclEndLoc = ESpecRange.getEnd();
727
728 // Parse attribute-specifier[opt].
729 MaybeParseCXX0XAttributes(Attr, &DeclEndLoc);
730
731 // Parse trailing-return-type[opt].
732 ParsedType TrailingReturnType;
733 if (Tok.is(tok::arrow)) {
734 SourceRange Range;
735 TrailingReturnType = ParseTrailingReturnType(Range).get();
736 if (Range.getEnd().isValid())
737 DeclEndLoc = Range.getEnd();
738 }
739
740 PrototypeScope.Exit();
741
742 D.AddTypeInfo(DeclaratorChunk::getFunction(/*hasProto=*/true,
743 /*isVariadic=*/EllipsisLoc.isValid(),
744 EllipsisLoc,
745 ParamInfo.data(), ParamInfo.size(),
746 DS.getTypeQualifiers(),
747 /*RefQualifierIsLValueRef=*/true,
748 /*RefQualifierLoc=*/SourceLocation(),
749 MutableLoc,
750 ESpecType, ESpecRange.getBegin(),
751 DynamicExceptions.data(),
752 DynamicExceptionRanges.data(),
753 DynamicExceptions.size(),
754 NoexceptExpr.isUsable() ?
755 NoexceptExpr.get() : 0,
756 DeclLoc, DeclEndLoc, D,
757 TrailingReturnType),
758 Attr, DeclEndLoc);
759 }
760
761 // Parse compound-statement.
762 if (Tok.is(tok::l_brace)) {
763 // FIXME: Rename BlockScope -> ClosureScope if we decide to continue using
764 // it.
765 ParseScope BodyScope(this, Scope::BlockScope | Scope::FnScope |
766 Scope::BreakScope | Scope::ContinueScope |
767 Scope::DeclScope);
768
769 StmtResult Stmt(ParseCompoundStatementBody());
770
771 BodyScope.Exit();
772 } else {
773 Diag(Tok, diag::err_expected_lambda_body);
774 }
775
776 return ExprEmpty();
777}
778
Reid Spencer5f016e22007-07-11 17:01:13 +0000779/// ParseCXXCasts - This handles the various ways to cast expressions to another
780/// type.
781///
782/// postfix-expression: [C++ 5.2p1]
783/// 'dynamic_cast' '<' type-name '>' '(' expression ')'
784/// 'static_cast' '<' type-name '>' '(' expression ')'
785/// 'reinterpret_cast' '<' type-name '>' '(' expression ')'
786/// 'const_cast' '<' type-name '>' '(' expression ')'
787///
John McCall60d7b3a2010-08-24 06:29:42 +0000788ExprResult Parser::ParseCXXCasts() {
Reid Spencer5f016e22007-07-11 17:01:13 +0000789 tok::TokenKind Kind = Tok.getKind();
790 const char *CastName = 0; // For error messages
791
792 switch (Kind) {
David Blaikieeb2d1f12011-09-23 20:26:49 +0000793 default: llvm_unreachable("Unknown C++ cast!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000794 case tok::kw_const_cast: CastName = "const_cast"; break;
795 case tok::kw_dynamic_cast: CastName = "dynamic_cast"; break;
796 case tok::kw_reinterpret_cast: CastName = "reinterpret_cast"; break;
797 case tok::kw_static_cast: CastName = "static_cast"; break;
798 }
799
800 SourceLocation OpLoc = ConsumeToken();
801 SourceLocation LAngleBracketLoc = Tok.getLocation();
802
Richard Smithea698b32011-04-14 21:45:45 +0000803 // Check for "<::" which is parsed as "[:". If found, fix token stream,
804 // diagnose error, suggest fix, and recover parsing.
805 Token Next = NextToken();
806 if (Tok.is(tok::l_square) && Tok.getLength() == 2 && Next.is(tok::colon) &&
807 AreTokensAdjacent(PP, Tok, Next))
808 FixDigraph(*this, PP, Tok, Next, Kind, /*AtDigraph*/true);
809
Reid Spencer5f016e22007-07-11 17:01:13 +0000810 if (ExpectAndConsume(tok::less, diag::err_expected_less_after, CastName))
Sebastian Redl20df9b72008-12-11 22:51:44 +0000811 return ExprError();
Reid Spencer5f016e22007-07-11 17:01:13 +0000812
Argyrios Kyrtzidis31862ba2011-07-01 22:22:50 +0000813 // Parse the common declaration-specifiers piece.
814 DeclSpec DS(AttrFactory);
815 ParseSpecifierQualifierList(DS);
816
817 // Parse the abstract-declarator, if present.
818 Declarator DeclaratorInfo(DS, Declarator::TypeNameContext);
819 ParseDeclarator(DeclaratorInfo);
820
Reid Spencer5f016e22007-07-11 17:01:13 +0000821 SourceLocation RAngleBracketLoc = Tok.getLocation();
822
Chris Lattner1ab3b962008-11-18 07:48:38 +0000823 if (ExpectAndConsume(tok::greater, diag::err_expected_greater))
Sebastian Redl20df9b72008-12-11 22:51:44 +0000824 return ExprError(Diag(LAngleBracketLoc, diag::note_matching) << "<");
Reid Spencer5f016e22007-07-11 17:01:13 +0000825
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000826 SourceLocation LParenLoc, RParenLoc;
827 BalancedDelimiterTracker T(*this, tok::l_paren);
Reid Spencer5f016e22007-07-11 17:01:13 +0000828
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000829 if (T.expectAndConsume(diag::err_expected_lparen_after, CastName))
Argyrios Kyrtzidis21e7ad22009-05-22 10:23:16 +0000830 return ExprError();
Reid Spencer5f016e22007-07-11 17:01:13 +0000831
John McCall60d7b3a2010-08-24 06:29:42 +0000832 ExprResult Result = ParseExpression();
Mike Stump1eb44332009-09-09 15:08:12 +0000833
Argyrios Kyrtzidis21e7ad22009-05-22 10:23:16 +0000834 // Match the ')'.
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000835 T.consumeClose();
Reid Spencer5f016e22007-07-11 17:01:13 +0000836
Argyrios Kyrtzidis31862ba2011-07-01 22:22:50 +0000837 if (!Result.isInvalid() && !DeclaratorInfo.isInvalidType())
Douglas Gregor49badde2008-10-27 19:41:14 +0000838 Result = Actions.ActOnCXXNamedCast(OpLoc, Kind,
Argyrios Kyrtzidis31862ba2011-07-01 22:22:50 +0000839 LAngleBracketLoc, DeclaratorInfo,
Douglas Gregor809070a2009-02-18 17:45:20 +0000840 RAngleBracketLoc,
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000841 T.getOpenLocation(), Result.take(),
842 T.getCloseLocation());
Reid Spencer5f016e22007-07-11 17:01:13 +0000843
Sebastian Redl20df9b72008-12-11 22:51:44 +0000844 return move(Result);
Reid Spencer5f016e22007-07-11 17:01:13 +0000845}
846
Sebastian Redlc42e1182008-11-11 11:37:55 +0000847/// ParseCXXTypeid - This handles the C++ typeid expression.
848///
849/// postfix-expression: [C++ 5.2p1]
850/// 'typeid' '(' expression ')'
851/// 'typeid' '(' type-id ')'
852///
John McCall60d7b3a2010-08-24 06:29:42 +0000853ExprResult Parser::ParseCXXTypeid() {
Sebastian Redlc42e1182008-11-11 11:37:55 +0000854 assert(Tok.is(tok::kw_typeid) && "Not 'typeid'!");
855
856 SourceLocation OpLoc = ConsumeToken();
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000857 SourceLocation LParenLoc, RParenLoc;
858 BalancedDelimiterTracker T(*this, tok::l_paren);
Sebastian Redlc42e1182008-11-11 11:37:55 +0000859
860 // typeid expressions are always parenthesized.
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000861 if (T.expectAndConsume(diag::err_expected_lparen_after, "typeid"))
Sebastian Redl20df9b72008-12-11 22:51:44 +0000862 return ExprError();
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000863 LParenLoc = T.getOpenLocation();
Sebastian Redlc42e1182008-11-11 11:37:55 +0000864
John McCall60d7b3a2010-08-24 06:29:42 +0000865 ExprResult Result;
Sebastian Redlc42e1182008-11-11 11:37:55 +0000866
867 if (isTypeIdInParens()) {
Douglas Gregor809070a2009-02-18 17:45:20 +0000868 TypeResult Ty = ParseTypeName();
Sebastian Redlc42e1182008-11-11 11:37:55 +0000869
870 // Match the ')'.
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000871 T.consumeClose();
872 RParenLoc = T.getCloseLocation();
Douglas Gregor4eb4f0f2010-09-08 23:14:30 +0000873 if (Ty.isInvalid() || RParenLoc.isInvalid())
Sebastian Redl20df9b72008-12-11 22:51:44 +0000874 return ExprError();
Sebastian Redlc42e1182008-11-11 11:37:55 +0000875
876 Result = Actions.ActOnCXXTypeid(OpLoc, LParenLoc, /*isType=*/true,
John McCallb3d87482010-08-24 05:47:05 +0000877 Ty.get().getAsOpaquePtr(), RParenLoc);
Sebastian Redlc42e1182008-11-11 11:37:55 +0000878 } else {
Douglas Gregore0762c92009-06-19 23:52:42 +0000879 // C++0x [expr.typeid]p3:
Mike Stump1eb44332009-09-09 15:08:12 +0000880 // When typeid is applied to an expression other than an lvalue of a
881 // polymorphic class type [...] The expression is an unevaluated
Douglas Gregore0762c92009-06-19 23:52:42 +0000882 // operand (Clause 5).
883 //
Mike Stump1eb44332009-09-09 15:08:12 +0000884 // Note that we can't tell whether the expression is an lvalue of a
Douglas Gregore0762c92009-06-19 23:52:42 +0000885 // polymorphic class type until after we've parsed the expression, so
Douglas Gregorac7610d2009-06-22 20:57:11 +0000886 // we the expression is potentially potentially evaluated.
887 EnterExpressionEvaluationContext Unevaluated(Actions,
John McCallf312b1e2010-08-26 23:41:50 +0000888 Sema::PotentiallyPotentiallyEvaluated);
Sebastian Redlc42e1182008-11-11 11:37:55 +0000889 Result = ParseExpression();
890
891 // Match the ')'.
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000892 if (Result.isInvalid())
Sebastian Redlc42e1182008-11-11 11:37:55 +0000893 SkipUntil(tok::r_paren);
894 else {
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000895 T.consumeClose();
896 RParenLoc = T.getCloseLocation();
Douglas Gregor4eb4f0f2010-09-08 23:14:30 +0000897 if (RParenLoc.isInvalid())
898 return ExprError();
Douglas Gregorfadb53b2011-03-12 01:48:56 +0000899
Sebastian Redlc42e1182008-11-11 11:37:55 +0000900 Result = Actions.ActOnCXXTypeid(OpLoc, LParenLoc, /*isType=*/false,
Sebastian Redleffa8d12008-12-10 00:02:53 +0000901 Result.release(), RParenLoc);
Sebastian Redlc42e1182008-11-11 11:37:55 +0000902 }
903 }
904
Sebastian Redl20df9b72008-12-11 22:51:44 +0000905 return move(Result);
Sebastian Redlc42e1182008-11-11 11:37:55 +0000906}
907
Francois Pichet01b7c302010-09-08 12:20:18 +0000908/// ParseCXXUuidof - This handles the Microsoft C++ __uuidof expression.
909///
910/// '__uuidof' '(' expression ')'
911/// '__uuidof' '(' type-id ')'
912///
913ExprResult Parser::ParseCXXUuidof() {
914 assert(Tok.is(tok::kw___uuidof) && "Not '__uuidof'!");
915
916 SourceLocation OpLoc = ConsumeToken();
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000917 BalancedDelimiterTracker T(*this, tok::l_paren);
Francois Pichet01b7c302010-09-08 12:20:18 +0000918
919 // __uuidof expressions are always parenthesized.
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000920 if (T.expectAndConsume(diag::err_expected_lparen_after, "__uuidof"))
Francois Pichet01b7c302010-09-08 12:20:18 +0000921 return ExprError();
922
923 ExprResult Result;
924
925 if (isTypeIdInParens()) {
926 TypeResult Ty = ParseTypeName();
927
928 // Match the ')'.
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000929 T.consumeClose();
Francois Pichet01b7c302010-09-08 12:20:18 +0000930
931 if (Ty.isInvalid())
932 return ExprError();
933
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000934 Result = Actions.ActOnCXXUuidof(OpLoc, T.getOpenLocation(), /*isType=*/true,
935 Ty.get().getAsOpaquePtr(),
936 T.getCloseLocation());
Francois Pichet01b7c302010-09-08 12:20:18 +0000937 } else {
938 EnterExpressionEvaluationContext Unevaluated(Actions, Sema::Unevaluated);
939 Result = ParseExpression();
940
941 // Match the ')'.
942 if (Result.isInvalid())
943 SkipUntil(tok::r_paren);
944 else {
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000945 T.consumeClose();
Francois Pichet01b7c302010-09-08 12:20:18 +0000946
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000947 Result = Actions.ActOnCXXUuidof(OpLoc, T.getOpenLocation(),
948 /*isType=*/false,
949 Result.release(), T.getCloseLocation());
Francois Pichet01b7c302010-09-08 12:20:18 +0000950 }
951 }
952
953 return move(Result);
954}
955
Douglas Gregord4dca082010-02-24 18:44:31 +0000956/// \brief Parse a C++ pseudo-destructor expression after the base,
957/// . or -> operator, and nested-name-specifier have already been
958/// parsed.
959///
960/// postfix-expression: [C++ 5.2]
961/// postfix-expression . pseudo-destructor-name
962/// postfix-expression -> pseudo-destructor-name
963///
964/// pseudo-destructor-name:
965/// ::[opt] nested-name-specifier[opt] type-name :: ~type-name
966/// ::[opt] nested-name-specifier template simple-template-id ::
967/// ~type-name
968/// ::[opt] nested-name-specifier[opt] ~type-name
969///
John McCall60d7b3a2010-08-24 06:29:42 +0000970ExprResult
Douglas Gregord4dca082010-02-24 18:44:31 +0000971Parser::ParseCXXPseudoDestructor(ExprArg Base, SourceLocation OpLoc,
972 tok::TokenKind OpKind,
973 CXXScopeSpec &SS,
John McCallb3d87482010-08-24 05:47:05 +0000974 ParsedType ObjectType) {
Douglas Gregord4dca082010-02-24 18:44:31 +0000975 // We're parsing either a pseudo-destructor-name or a dependent
976 // member access that has the same form as a
977 // pseudo-destructor-name. We parse both in the same way and let
978 // the action model sort them out.
979 //
980 // Note that the ::[opt] nested-name-specifier[opt] has already
981 // been parsed, and if there was a simple-template-id, it has
982 // been coalesced into a template-id annotation token.
983 UnqualifiedId FirstTypeName;
984 SourceLocation CCLoc;
985 if (Tok.is(tok::identifier)) {
986 FirstTypeName.setIdentifier(Tok.getIdentifierInfo(), Tok.getLocation());
987 ConsumeToken();
988 assert(Tok.is(tok::coloncolon) &&"ParseOptionalCXXScopeSpecifier fail");
989 CCLoc = ConsumeToken();
990 } else if (Tok.is(tok::annot_template_id)) {
991 FirstTypeName.setTemplateId(
992 (TemplateIdAnnotation *)Tok.getAnnotationValue());
993 ConsumeToken();
994 assert(Tok.is(tok::coloncolon) &&"ParseOptionalCXXScopeSpecifier fail");
995 CCLoc = ConsumeToken();
996 } else {
997 FirstTypeName.setIdentifier(0, SourceLocation());
998 }
999
1000 // Parse the tilde.
1001 assert(Tok.is(tok::tilde) && "ParseOptionalCXXScopeSpecifier fail");
1002 SourceLocation TildeLoc = ConsumeToken();
1003 if (!Tok.is(tok::identifier)) {
1004 Diag(Tok, diag::err_destructor_tilde_identifier);
1005 return ExprError();
1006 }
1007
1008 // Parse the second type.
1009 UnqualifiedId SecondTypeName;
1010 IdentifierInfo *Name = Tok.getIdentifierInfo();
1011 SourceLocation NameLoc = ConsumeToken();
1012 SecondTypeName.setIdentifier(Name, NameLoc);
1013
1014 // If there is a '<', the second type name is a template-id. Parse
1015 // it as such.
1016 if (Tok.is(tok::less) &&
1017 ParseUnqualifiedIdTemplateId(SS, Name, NameLoc, false, ObjectType,
Douglas Gregor0278e122010-05-05 05:58:24 +00001018 SecondTypeName, /*AssumeTemplateName=*/true,
1019 /*TemplateKWLoc*/SourceLocation()))
Douglas Gregord4dca082010-02-24 18:44:31 +00001020 return ExprError();
1021
John McCall9ae2f072010-08-23 23:25:46 +00001022 return Actions.ActOnPseudoDestructorExpr(getCurScope(), Base,
1023 OpLoc, OpKind,
Douglas Gregord4dca082010-02-24 18:44:31 +00001024 SS, FirstTypeName, CCLoc,
1025 TildeLoc, SecondTypeName,
1026 Tok.is(tok::l_paren));
1027}
1028
Reid Spencer5f016e22007-07-11 17:01:13 +00001029/// ParseCXXBoolLiteral - This handles the C++ Boolean literals.
1030///
1031/// boolean-literal: [C++ 2.13.5]
1032/// 'true'
1033/// 'false'
John McCall60d7b3a2010-08-24 06:29:42 +00001034ExprResult Parser::ParseCXXBoolLiteral() {
Reid Spencer5f016e22007-07-11 17:01:13 +00001035 tok::TokenKind Kind = Tok.getKind();
Sebastian Redlf53597f2009-03-15 17:47:39 +00001036 return Actions.ActOnCXXBoolLiteral(ConsumeToken(), Kind);
Reid Spencer5f016e22007-07-11 17:01:13 +00001037}
Chris Lattner50dd2892008-02-26 00:51:44 +00001038
1039/// ParseThrowExpression - This handles the C++ throw expression.
1040///
1041/// throw-expression: [C++ 15]
1042/// 'throw' assignment-expression[opt]
John McCall60d7b3a2010-08-24 06:29:42 +00001043ExprResult Parser::ParseThrowExpression() {
Chris Lattner50dd2892008-02-26 00:51:44 +00001044 assert(Tok.is(tok::kw_throw) && "Not throw!");
Chris Lattner50dd2892008-02-26 00:51:44 +00001045 SourceLocation ThrowLoc = ConsumeToken(); // Eat the throw token.
Sebastian Redl20df9b72008-12-11 22:51:44 +00001046
Chris Lattner2a2819a2008-04-06 06:02:23 +00001047 // If the current token isn't the start of an assignment-expression,
1048 // then the expression is not present. This handles things like:
1049 // "C ? throw : (void)42", which is crazy but legal.
1050 switch (Tok.getKind()) { // FIXME: move this predicate somewhere common.
1051 case tok::semi:
1052 case tok::r_paren:
1053 case tok::r_square:
1054 case tok::r_brace:
1055 case tok::colon:
1056 case tok::comma:
Douglas Gregorbca01b42011-07-06 22:04:06 +00001057 return Actions.ActOnCXXThrow(getCurScope(), ThrowLoc, 0);
Chris Lattner50dd2892008-02-26 00:51:44 +00001058
Chris Lattner2a2819a2008-04-06 06:02:23 +00001059 default:
John McCall60d7b3a2010-08-24 06:29:42 +00001060 ExprResult Expr(ParseAssignmentExpression());
Sebastian Redl20df9b72008-12-11 22:51:44 +00001061 if (Expr.isInvalid()) return move(Expr);
Douglas Gregorbca01b42011-07-06 22:04:06 +00001062 return Actions.ActOnCXXThrow(getCurScope(), ThrowLoc, Expr.take());
Chris Lattner2a2819a2008-04-06 06:02:23 +00001063 }
Chris Lattner50dd2892008-02-26 00:51:44 +00001064}
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001065
1066/// ParseCXXThis - This handles the C++ 'this' pointer.
1067///
1068/// C++ 9.3.2: In the body of a non-static member function, the keyword this is
1069/// a non-lvalue expression whose value is the address of the object for which
1070/// the function is called.
John McCall60d7b3a2010-08-24 06:29:42 +00001071ExprResult Parser::ParseCXXThis() {
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001072 assert(Tok.is(tok::kw_this) && "Not 'this'!");
1073 SourceLocation ThisLoc = ConsumeToken();
Sebastian Redlf53597f2009-03-15 17:47:39 +00001074 return Actions.ActOnCXXThis(ThisLoc);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001075}
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +00001076
1077/// ParseCXXTypeConstructExpression - Parse construction of a specified type.
1078/// Can be interpreted either as function-style casting ("int(x)")
1079/// or class type construction ("ClassType(x,y,z)")
1080/// or creation of a value-initialized type ("int()").
Sebastian Redldbef1bb2011-06-05 12:23:16 +00001081/// See [C++ 5.2.3].
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +00001082///
1083/// postfix-expression: [C++ 5.2p1]
Sebastian Redldbef1bb2011-06-05 12:23:16 +00001084/// simple-type-specifier '(' expression-list[opt] ')'
1085/// [C++0x] simple-type-specifier braced-init-list
1086/// typename-specifier '(' expression-list[opt] ')'
1087/// [C++0x] typename-specifier braced-init-list
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +00001088///
John McCall60d7b3a2010-08-24 06:29:42 +00001089ExprResult
Sebastian Redl20df9b72008-12-11 22:51:44 +00001090Parser::ParseCXXTypeConstructExpression(const DeclSpec &DS) {
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +00001091 Declarator DeclaratorInfo(DS, Declarator::TypeNameContext);
John McCallb3d87482010-08-24 05:47:05 +00001092 ParsedType TypeRep = Actions.ActOnTypeName(getCurScope(), DeclaratorInfo).get();
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +00001093
Sebastian Redldbef1bb2011-06-05 12:23:16 +00001094 assert((Tok.is(tok::l_paren) ||
1095 (getLang().CPlusPlus0x && Tok.is(tok::l_brace)))
1096 && "Expected '(' or '{'!");
Douglas Gregorbc61bd82011-01-11 00:33:19 +00001097
Sebastian Redldbef1bb2011-06-05 12:23:16 +00001098 if (Tok.is(tok::l_brace)) {
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +00001099
Sebastian Redldbef1bb2011-06-05 12:23:16 +00001100 // FIXME: Convert to a proper type construct expression.
1101 return ParseBraceInitializer();
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +00001102
Sebastian Redldbef1bb2011-06-05 12:23:16 +00001103 } else {
1104 GreaterThanIsOperatorScope G(GreaterThanIsOperator, true);
1105
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00001106 BalancedDelimiterTracker T(*this, tok::l_paren);
1107 T.consumeOpen();
Sebastian Redldbef1bb2011-06-05 12:23:16 +00001108
1109 ExprVector Exprs(Actions);
1110 CommaLocsTy CommaLocs;
1111
1112 if (Tok.isNot(tok::r_paren)) {
1113 if (ParseExpressionList(Exprs, CommaLocs)) {
1114 SkipUntil(tok::r_paren);
1115 return ExprError();
1116 }
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +00001117 }
Sebastian Redldbef1bb2011-06-05 12:23:16 +00001118
1119 // Match the ')'.
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00001120 T.consumeClose();
Sebastian Redldbef1bb2011-06-05 12:23:16 +00001121
1122 // TypeRep could be null, if it references an invalid typedef.
1123 if (!TypeRep)
1124 return ExprError();
1125
1126 assert((Exprs.size() == 0 || Exprs.size()-1 == CommaLocs.size())&&
1127 "Unexpected number of commas!");
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00001128 return Actions.ActOnCXXTypeConstructExpr(TypeRep, T.getOpenLocation(),
1129 move_arg(Exprs),
1130 T.getCloseLocation());
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +00001131 }
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +00001132}
1133
Douglas Gregor99e9b4d2009-11-25 00:27:52 +00001134/// ParseCXXCondition - if/switch/while condition expression.
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +00001135///
1136/// condition:
1137/// expression
1138/// type-specifier-seq declarator '=' assignment-expression
1139/// [GNU] type-specifier-seq declarator simple-asm-expr[opt] attributes[opt]
1140/// '=' assignment-expression
1141///
Douglas Gregor99e9b4d2009-11-25 00:27:52 +00001142/// \param ExprResult if the condition was parsed as an expression, the
1143/// parsed expression.
1144///
1145/// \param DeclResult if the condition was parsed as a declaration, the
1146/// parsed declaration.
1147///
Douglas Gregor586596f2010-05-06 17:25:47 +00001148/// \param Loc The location of the start of the statement that requires this
1149/// condition, e.g., the "for" in a for loop.
1150///
1151/// \param ConvertToBoolean Whether the condition expression should be
1152/// converted to a boolean value.
1153///
Douglas Gregor99e9b4d2009-11-25 00:27:52 +00001154/// \returns true if there was a parsing, false otherwise.
John McCall60d7b3a2010-08-24 06:29:42 +00001155bool Parser::ParseCXXCondition(ExprResult &ExprOut,
1156 Decl *&DeclOut,
Douglas Gregor586596f2010-05-06 17:25:47 +00001157 SourceLocation Loc,
1158 bool ConvertToBoolean) {
Douglas Gregor01dfea02010-01-10 23:08:15 +00001159 if (Tok.is(tok::code_completion)) {
John McCallf312b1e2010-08-26 23:41:50 +00001160 Actions.CodeCompleteOrdinaryName(getCurScope(), Sema::PCC_Condition);
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00001161 cutOffParsing();
1162 return true;
Douglas Gregor01dfea02010-01-10 23:08:15 +00001163 }
1164
Douglas Gregor99e9b4d2009-11-25 00:27:52 +00001165 if (!isCXXConditionDeclaration()) {
Douglas Gregor586596f2010-05-06 17:25:47 +00001166 // Parse the expression.
John McCall60d7b3a2010-08-24 06:29:42 +00001167 ExprOut = ParseExpression(); // expression
1168 DeclOut = 0;
1169 if (ExprOut.isInvalid())
Douglas Gregor586596f2010-05-06 17:25:47 +00001170 return true;
1171
1172 // If required, convert to a boolean value.
1173 if (ConvertToBoolean)
John McCall60d7b3a2010-08-24 06:29:42 +00001174 ExprOut
1175 = Actions.ActOnBooleanCondition(getCurScope(), Loc, ExprOut.get());
1176 return ExprOut.isInvalid();
Douglas Gregor99e9b4d2009-11-25 00:27:52 +00001177 }
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +00001178
1179 // type-specifier-seq
John McCall0b7e6782011-03-24 11:26:52 +00001180 DeclSpec DS(AttrFactory);
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +00001181 ParseSpecifierQualifierList(DS);
1182
1183 // declarator
1184 Declarator DeclaratorInfo(DS, Declarator::ConditionContext);
1185 ParseDeclarator(DeclaratorInfo);
1186
1187 // simple-asm-expr[opt]
1188 if (Tok.is(tok::kw_asm)) {
Sebastian Redlab197ba2009-02-09 18:23:29 +00001189 SourceLocation Loc;
John McCall60d7b3a2010-08-24 06:29:42 +00001190 ExprResult AsmLabel(ParseSimpleAsm(&Loc));
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001191 if (AsmLabel.isInvalid()) {
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +00001192 SkipUntil(tok::semi);
Douglas Gregor99e9b4d2009-11-25 00:27:52 +00001193 return true;
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +00001194 }
Sebastian Redleffa8d12008-12-10 00:02:53 +00001195 DeclaratorInfo.setAsmLabel(AsmLabel.release());
Sebastian Redlab197ba2009-02-09 18:23:29 +00001196 DeclaratorInfo.SetRangeEnd(Loc);
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +00001197 }
1198
1199 // If attributes are present, parse them.
John McCall7f040a92010-12-24 02:08:15 +00001200 MaybeParseGNUAttributes(DeclaratorInfo);
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +00001201
Douglas Gregor99e9b4d2009-11-25 00:27:52 +00001202 // Type-check the declaration itself.
John McCall60d7b3a2010-08-24 06:29:42 +00001203 DeclResult Dcl = Actions.ActOnCXXConditionDeclaration(getCurScope(),
John McCall7f040a92010-12-24 02:08:15 +00001204 DeclaratorInfo);
John McCall60d7b3a2010-08-24 06:29:42 +00001205 DeclOut = Dcl.get();
1206 ExprOut = ExprError();
Argyrios Kyrtzidisa6eb5f82010-10-08 02:39:23 +00001207
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +00001208 // '=' assignment-expression
Argyrios Kyrtzidisa6eb5f82010-10-08 02:39:23 +00001209 if (isTokenEqualOrMistypedEqualEqual(
1210 diag::err_invalid_equalequal_after_declarator)) {
Jeffrey Yasskindec09842011-01-18 02:00:16 +00001211 ConsumeToken();
John McCall60d7b3a2010-08-24 06:29:42 +00001212 ExprResult AssignExpr(ParseAssignmentExpression());
Douglas Gregor99e9b4d2009-11-25 00:27:52 +00001213 if (!AssignExpr.isInvalid())
Richard Smith34b41d92011-02-20 03:19:35 +00001214 Actions.AddInitializerToDecl(DeclOut, AssignExpr.take(), false,
1215 DS.getTypeSpecType() == DeclSpec::TST_auto);
Douglas Gregor99e9b4d2009-11-25 00:27:52 +00001216 } else {
1217 // FIXME: C++0x allows a braced-init-list
1218 Diag(Tok, diag::err_expected_equal_after_declarator);
1219 }
1220
Douglas Gregor586596f2010-05-06 17:25:47 +00001221 // FIXME: Build a reference to this declaration? Convert it to bool?
1222 // (This is currently handled by Sema).
Richard Smith483b9f32011-02-21 20:05:19 +00001223
1224 Actions.FinalizeDeclaration(DeclOut);
Douglas Gregor586596f2010-05-06 17:25:47 +00001225
Douglas Gregor99e9b4d2009-11-25 00:27:52 +00001226 return false;
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +00001227}
1228
Douglas Gregor6aa14d82010-04-21 22:36:40 +00001229/// \brief Determine whether the current token starts a C++
1230/// simple-type-specifier.
1231bool Parser::isCXXSimpleTypeSpecifier() const {
1232 switch (Tok.getKind()) {
1233 case tok::annot_typename:
1234 case tok::kw_short:
1235 case tok::kw_long:
Francois Pichet338d7f72011-04-28 01:59:37 +00001236 case tok::kw___int64:
Douglas Gregor6aa14d82010-04-21 22:36:40 +00001237 case tok::kw_signed:
1238 case tok::kw_unsigned:
1239 case tok::kw_void:
1240 case tok::kw_char:
1241 case tok::kw_int:
Anton Korobeynikovaa4a99b2011-10-14 23:23:15 +00001242 case tok::kw_half:
Douglas Gregor6aa14d82010-04-21 22:36:40 +00001243 case tok::kw_float:
1244 case tok::kw_double:
1245 case tok::kw_wchar_t:
1246 case tok::kw_char16_t:
1247 case tok::kw_char32_t:
1248 case tok::kw_bool:
Douglas Gregord9d75e52011-04-27 05:41:15 +00001249 case tok::kw_decltype:
Douglas Gregor6aa14d82010-04-21 22:36:40 +00001250 case tok::kw_typeof:
Sean Huntdb5d44b2011-05-19 05:37:45 +00001251 case tok::kw___underlying_type:
Douglas Gregor6aa14d82010-04-21 22:36:40 +00001252 return true;
1253
1254 default:
1255 break;
1256 }
1257
1258 return false;
1259}
1260
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +00001261/// ParseCXXSimpleTypeSpecifier - [C++ 7.1.5.2] Simple type specifiers.
1262/// This should only be called when the current token is known to be part of
1263/// simple-type-specifier.
1264///
1265/// simple-type-specifier:
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001266/// '::'[opt] nested-name-specifier[opt] type-name
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +00001267/// '::'[opt] nested-name-specifier 'template' simple-template-id [TODO]
1268/// char
1269/// wchar_t
1270/// bool
1271/// short
1272/// int
1273/// long
1274/// signed
1275/// unsigned
1276/// float
1277/// double
1278/// void
1279/// [GNU] typeof-specifier
1280/// [C++0x] auto [TODO]
1281///
1282/// type-name:
1283/// class-name
1284/// enum-name
1285/// typedef-name
1286///
1287void Parser::ParseCXXSimpleTypeSpecifier(DeclSpec &DS) {
1288 DS.SetRangeStart(Tok.getLocation());
1289 const char *PrevSpec;
John McCallfec54012009-08-03 20:12:06 +00001290 unsigned DiagID;
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +00001291 SourceLocation Loc = Tok.getLocation();
Mike Stump1eb44332009-09-09 15:08:12 +00001292
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +00001293 switch (Tok.getKind()) {
Chris Lattner55a7cef2009-01-05 00:13:00 +00001294 case tok::identifier: // foo::bar
1295 case tok::coloncolon: // ::foo::bar
David Blaikieb219cfc2011-09-23 05:06:16 +00001296 llvm_unreachable("Annotation token should already be formed!");
Mike Stump1eb44332009-09-09 15:08:12 +00001297 default:
David Blaikieb219cfc2011-09-23 05:06:16 +00001298 llvm_unreachable("Not a simple-type-specifier token!");
Chris Lattner55a7cef2009-01-05 00:13:00 +00001299
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +00001300 // type-name
Chris Lattnerb31757b2009-01-06 05:06:21 +00001301 case tok::annot_typename: {
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001302 if (getTypeAnnotation(Tok))
1303 DS.SetTypeSpecType(DeclSpec::TST_typename, Loc, PrevSpec, DiagID,
1304 getTypeAnnotation(Tok));
1305 else
1306 DS.SetTypeSpecError();
Douglas Gregor9bd1d8d2010-10-21 23:17:00 +00001307
1308 DS.SetRangeEnd(Tok.getAnnotationEndLoc());
1309 ConsumeToken();
1310
1311 // Objective-C supports syntax of the form 'id<proto1,proto2>' where 'id'
1312 // is a specific typedef and 'itf<proto1,proto2>' where 'itf' is an
1313 // Objective-C interface. If we don't have Objective-C or a '<', this is
1314 // just a normal reference to a typedef name.
1315 if (Tok.is(tok::less) && getLang().ObjC1)
1316 ParseObjCProtocolQualifiers(DS);
1317
1318 DS.Finish(Diags, PP);
1319 return;
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +00001320 }
Mike Stump1eb44332009-09-09 15:08:12 +00001321
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +00001322 // builtin types
1323 case tok::kw_short:
John McCallfec54012009-08-03 20:12:06 +00001324 DS.SetTypeSpecWidth(DeclSpec::TSW_short, Loc, PrevSpec, DiagID);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +00001325 break;
1326 case tok::kw_long:
John McCallfec54012009-08-03 20:12:06 +00001327 DS.SetTypeSpecWidth(DeclSpec::TSW_long, Loc, PrevSpec, DiagID);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +00001328 break;
Francois Pichet338d7f72011-04-28 01:59:37 +00001329 case tok::kw___int64:
1330 DS.SetTypeSpecWidth(DeclSpec::TSW_longlong, Loc, PrevSpec, DiagID);
1331 break;
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +00001332 case tok::kw_signed:
John McCallfec54012009-08-03 20:12:06 +00001333 DS.SetTypeSpecSign(DeclSpec::TSS_signed, Loc, PrevSpec, DiagID);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +00001334 break;
1335 case tok::kw_unsigned:
John McCallfec54012009-08-03 20:12:06 +00001336 DS.SetTypeSpecSign(DeclSpec::TSS_unsigned, Loc, PrevSpec, DiagID);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +00001337 break;
1338 case tok::kw_void:
John McCallfec54012009-08-03 20:12:06 +00001339 DS.SetTypeSpecType(DeclSpec::TST_void, Loc, PrevSpec, DiagID);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +00001340 break;
1341 case tok::kw_char:
John McCallfec54012009-08-03 20:12:06 +00001342 DS.SetTypeSpecType(DeclSpec::TST_char, Loc, PrevSpec, DiagID);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +00001343 break;
1344 case tok::kw_int:
John McCallfec54012009-08-03 20:12:06 +00001345 DS.SetTypeSpecType(DeclSpec::TST_int, Loc, PrevSpec, DiagID);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +00001346 break;
Anton Korobeynikovaa4a99b2011-10-14 23:23:15 +00001347 case tok::kw_half:
1348 DS.SetTypeSpecType(DeclSpec::TST_half, Loc, PrevSpec, DiagID);
1349 break;
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +00001350 case tok::kw_float:
John McCallfec54012009-08-03 20:12:06 +00001351 DS.SetTypeSpecType(DeclSpec::TST_float, Loc, PrevSpec, DiagID);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +00001352 break;
1353 case tok::kw_double:
John McCallfec54012009-08-03 20:12:06 +00001354 DS.SetTypeSpecType(DeclSpec::TST_double, Loc, PrevSpec, DiagID);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +00001355 break;
1356 case tok::kw_wchar_t:
John McCallfec54012009-08-03 20:12:06 +00001357 DS.SetTypeSpecType(DeclSpec::TST_wchar, Loc, PrevSpec, DiagID);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +00001358 break;
Alisdair Meredithf5c209d2009-07-14 06:30:34 +00001359 case tok::kw_char16_t:
John McCallfec54012009-08-03 20:12:06 +00001360 DS.SetTypeSpecType(DeclSpec::TST_char16, Loc, PrevSpec, DiagID);
Alisdair Meredithf5c209d2009-07-14 06:30:34 +00001361 break;
1362 case tok::kw_char32_t:
John McCallfec54012009-08-03 20:12:06 +00001363 DS.SetTypeSpecType(DeclSpec::TST_char32, Loc, PrevSpec, DiagID);
Alisdair Meredithf5c209d2009-07-14 06:30:34 +00001364 break;
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +00001365 case tok::kw_bool:
John McCallfec54012009-08-03 20:12:06 +00001366 DS.SetTypeSpecType(DeclSpec::TST_bool, Loc, PrevSpec, DiagID);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +00001367 break;
Mike Stump1eb44332009-09-09 15:08:12 +00001368
Douglas Gregor6aa14d82010-04-21 22:36:40 +00001369 // FIXME: C++0x decltype support.
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +00001370 // GNU typeof support.
1371 case tok::kw_typeof:
1372 ParseTypeofSpecifier(DS);
Douglas Gregor9b3064b2009-04-01 22:41:11 +00001373 DS.Finish(Diags, PP);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +00001374 return;
1375 }
Chris Lattnerb31757b2009-01-06 05:06:21 +00001376 if (Tok.is(tok::annot_typename))
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001377 DS.SetRangeEnd(Tok.getAnnotationEndLoc());
1378 else
1379 DS.SetRangeEnd(Tok.getLocation());
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +00001380 ConsumeToken();
Douglas Gregor9b3064b2009-04-01 22:41:11 +00001381 DS.Finish(Diags, PP);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +00001382}
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00001383
Douglas Gregor2f1bc522008-11-07 20:08:42 +00001384/// ParseCXXTypeSpecifierSeq - Parse a C++ type-specifier-seq (C++
1385/// [dcl.name]), which is a non-empty sequence of type-specifiers,
1386/// e.g., "const short int". Note that the DeclSpec is *not* finished
1387/// by parsing the type-specifier-seq, because these sequences are
1388/// typically followed by some form of declarator. Returns true and
1389/// emits diagnostics if this is not a type-specifier-seq, false
1390/// otherwise.
1391///
1392/// type-specifier-seq: [C++ 8.1]
1393/// type-specifier type-specifier-seq[opt]
1394///
1395bool Parser::ParseCXXTypeSpecifierSeq(DeclSpec &DS) {
1396 DS.SetRangeStart(Tok.getLocation());
1397 const char *PrevSpec = 0;
John McCallfec54012009-08-03 20:12:06 +00001398 unsigned DiagID;
1399 bool isInvalid = 0;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00001400
1401 // Parse one or more of the type specifiers.
Sebastian Redld9bafa72010-02-03 21:21:43 +00001402 if (!ParseOptionalTypeSpecifier(DS, isInvalid, PrevSpec, DiagID,
1403 ParsedTemplateInfo(), /*SuppressDeclarations*/true)) {
Nick Lewycky9fa8e562010-11-03 17:52:57 +00001404 Diag(Tok, diag::err_expected_type);
Douglas Gregor2f1bc522008-11-07 20:08:42 +00001405 return true;
1406 }
Mike Stump1eb44332009-09-09 15:08:12 +00001407
Sebastian Redld9bafa72010-02-03 21:21:43 +00001408 while (ParseOptionalTypeSpecifier(DS, isInvalid, PrevSpec, DiagID,
1409 ParsedTemplateInfo(), /*SuppressDeclarations*/true))
1410 {}
Douglas Gregor2f1bc522008-11-07 20:08:42 +00001411
Douglas Gregor396a9f22010-02-24 23:13:13 +00001412 DS.Finish(Diags, PP);
Douglas Gregor2f1bc522008-11-07 20:08:42 +00001413 return false;
1414}
1415
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001416/// \brief Finish parsing a C++ unqualified-id that is a template-id of
1417/// some form.
1418///
1419/// This routine is invoked when a '<' is encountered after an identifier or
1420/// operator-function-id is parsed by \c ParseUnqualifiedId() to determine
1421/// whether the unqualified-id is actually a template-id. This routine will
1422/// then parse the template arguments and form the appropriate template-id to
1423/// return to the caller.
1424///
1425/// \param SS the nested-name-specifier that precedes this template-id, if
1426/// we're actually parsing a qualified-id.
1427///
1428/// \param Name for constructor and destructor names, this is the actual
1429/// identifier that may be a template-name.
1430///
1431/// \param NameLoc the location of the class-name in a constructor or
1432/// destructor.
1433///
1434/// \param EnteringContext whether we're entering the scope of the
1435/// nested-name-specifier.
1436///
Douglas Gregor46df8cc2009-11-03 21:24:04 +00001437/// \param ObjectType if this unqualified-id occurs within a member access
1438/// expression, the type of the base object whose member is being accessed.
1439///
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001440/// \param Id as input, describes the template-name or operator-function-id
1441/// that precedes the '<'. If template arguments were parsed successfully,
1442/// will be updated with the template-id.
1443///
Douglas Gregord4dca082010-02-24 18:44:31 +00001444/// \param AssumeTemplateId When true, this routine will assume that the name
1445/// refers to a template without performing name lookup to verify.
1446///
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001447/// \returns true if a parse error occurred, false otherwise.
1448bool Parser::ParseUnqualifiedIdTemplateId(CXXScopeSpec &SS,
1449 IdentifierInfo *Name,
1450 SourceLocation NameLoc,
1451 bool EnteringContext,
John McCallb3d87482010-08-24 05:47:05 +00001452 ParsedType ObjectType,
Douglas Gregord4dca082010-02-24 18:44:31 +00001453 UnqualifiedId &Id,
Douglas Gregor0278e122010-05-05 05:58:24 +00001454 bool AssumeTemplateId,
1455 SourceLocation TemplateKWLoc) {
1456 assert((AssumeTemplateId || Tok.is(tok::less)) &&
1457 "Expected '<' to finish parsing a template-id");
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001458
1459 TemplateTy Template;
1460 TemplateNameKind TNK = TNK_Non_template;
1461 switch (Id.getKind()) {
1462 case UnqualifiedId::IK_Identifier:
Douglas Gregor014e88d2009-11-03 23:16:33 +00001463 case UnqualifiedId::IK_OperatorFunctionId:
Sean Hunte6252d12009-11-28 08:58:14 +00001464 case UnqualifiedId::IK_LiteralOperatorId:
Douglas Gregord4dca082010-02-24 18:44:31 +00001465 if (AssumeTemplateId) {
Douglas Gregor23c94db2010-07-02 17:43:08 +00001466 TNK = Actions.ActOnDependentTemplateName(getCurScope(), TemplateKWLoc, SS,
Douglas Gregord6ab2322010-06-16 23:00:59 +00001467 Id, ObjectType, EnteringContext,
1468 Template);
1469 if (TNK == TNK_Non_template)
1470 return true;
Douglas Gregor1fd6d442010-05-21 23:18:07 +00001471 } else {
1472 bool MemberOfUnknownSpecialization;
Abramo Bagnara7c153532010-08-06 12:11:11 +00001473 TNK = Actions.isTemplateName(getCurScope(), SS,
1474 TemplateKWLoc.isValid(), Id,
1475 ObjectType, EnteringContext, Template,
Douglas Gregor1fd6d442010-05-21 23:18:07 +00001476 MemberOfUnknownSpecialization);
1477
1478 if (TNK == TNK_Non_template && MemberOfUnknownSpecialization &&
1479 ObjectType && IsTemplateArgumentList()) {
1480 // We have something like t->getAs<T>(), where getAs is a
1481 // member of an unknown specialization. However, this will only
1482 // parse correctly as a template, so suggest the keyword 'template'
1483 // before 'getAs' and treat this as a dependent template name.
1484 std::string Name;
1485 if (Id.getKind() == UnqualifiedId::IK_Identifier)
1486 Name = Id.Identifier->getName();
1487 else {
1488 Name = "operator ";
1489 if (Id.getKind() == UnqualifiedId::IK_OperatorFunctionId)
1490 Name += getOperatorSpelling(Id.OperatorFunctionId.Operator);
1491 else
1492 Name += Id.Identifier->getName();
1493 }
1494 Diag(Id.StartLocation, diag::err_missing_dependent_template_keyword)
1495 << Name
1496 << FixItHint::CreateInsertion(Id.StartLocation, "template ");
Douglas Gregor23c94db2010-07-02 17:43:08 +00001497 TNK = Actions.ActOnDependentTemplateName(getCurScope(), TemplateKWLoc,
Douglas Gregord6ab2322010-06-16 23:00:59 +00001498 SS, Id, ObjectType,
1499 EnteringContext, Template);
1500 if (TNK == TNK_Non_template)
Douglas Gregor1fd6d442010-05-21 23:18:07 +00001501 return true;
1502 }
1503 }
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001504 break;
1505
Douglas Gregor014e88d2009-11-03 23:16:33 +00001506 case UnqualifiedId::IK_ConstructorName: {
1507 UnqualifiedId TemplateName;
Douglas Gregor1fd6d442010-05-21 23:18:07 +00001508 bool MemberOfUnknownSpecialization;
Douglas Gregor014e88d2009-11-03 23:16:33 +00001509 TemplateName.setIdentifier(Name, NameLoc);
Abramo Bagnara7c153532010-08-06 12:11:11 +00001510 TNK = Actions.isTemplateName(getCurScope(), SS, TemplateKWLoc.isValid(),
1511 TemplateName, ObjectType,
Douglas Gregor1fd6d442010-05-21 23:18:07 +00001512 EnteringContext, Template,
1513 MemberOfUnknownSpecialization);
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001514 break;
1515 }
1516
Douglas Gregor014e88d2009-11-03 23:16:33 +00001517 case UnqualifiedId::IK_DestructorName: {
1518 UnqualifiedId TemplateName;
Douglas Gregor1fd6d442010-05-21 23:18:07 +00001519 bool MemberOfUnknownSpecialization;
Douglas Gregor014e88d2009-11-03 23:16:33 +00001520 TemplateName.setIdentifier(Name, NameLoc);
Douglas Gregor2d1c2142009-11-03 19:44:04 +00001521 if (ObjectType) {
Douglas Gregor23c94db2010-07-02 17:43:08 +00001522 TNK = Actions.ActOnDependentTemplateName(getCurScope(), TemplateKWLoc, SS,
Douglas Gregord6ab2322010-06-16 23:00:59 +00001523 TemplateName, ObjectType,
1524 EnteringContext, Template);
1525 if (TNK == TNK_Non_template)
Douglas Gregor2d1c2142009-11-03 19:44:04 +00001526 return true;
1527 } else {
Abramo Bagnara7c153532010-08-06 12:11:11 +00001528 TNK = Actions.isTemplateName(getCurScope(), SS, TemplateKWLoc.isValid(),
1529 TemplateName, ObjectType,
Douglas Gregor1fd6d442010-05-21 23:18:07 +00001530 EnteringContext, Template,
1531 MemberOfUnknownSpecialization);
Douglas Gregor2d1c2142009-11-03 19:44:04 +00001532
John McCallb3d87482010-08-24 05:47:05 +00001533 if (TNK == TNK_Non_template && !Id.DestructorName.get()) {
Douglas Gregor124b8782010-02-16 19:09:40 +00001534 Diag(NameLoc, diag::err_destructor_template_id)
1535 << Name << SS.getRange();
Douglas Gregor2d1c2142009-11-03 19:44:04 +00001536 return true;
1537 }
1538 }
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001539 break;
Douglas Gregor014e88d2009-11-03 23:16:33 +00001540 }
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001541
1542 default:
1543 return false;
1544 }
1545
1546 if (TNK == TNK_Non_template)
1547 return false;
1548
1549 // Parse the enclosed template argument list.
1550 SourceLocation LAngleLoc, RAngleLoc;
1551 TemplateArgList TemplateArgs;
Douglas Gregor0278e122010-05-05 05:58:24 +00001552 if (Tok.is(tok::less) &&
1553 ParseTemplateIdAfterTemplateName(Template, Id.StartLocation,
Douglas Gregor059101f2011-03-02 00:47:37 +00001554 SS, true, LAngleLoc,
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001555 TemplateArgs,
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001556 RAngleLoc))
1557 return true;
1558
1559 if (Id.getKind() == UnqualifiedId::IK_Identifier ||
Sean Hunte6252d12009-11-28 08:58:14 +00001560 Id.getKind() == UnqualifiedId::IK_OperatorFunctionId ||
1561 Id.getKind() == UnqualifiedId::IK_LiteralOperatorId) {
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001562 // Form a parsed representation of the template-id to be stored in the
1563 // UnqualifiedId.
1564 TemplateIdAnnotation *TemplateId
1565 = TemplateIdAnnotation::Allocate(TemplateArgs.size());
1566
1567 if (Id.getKind() == UnqualifiedId::IK_Identifier) {
1568 TemplateId->Name = Id.Identifier;
Douglas Gregor014e88d2009-11-03 23:16:33 +00001569 TemplateId->Operator = OO_None;
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001570 TemplateId->TemplateNameLoc = Id.StartLocation;
1571 } else {
Douglas Gregor014e88d2009-11-03 23:16:33 +00001572 TemplateId->Name = 0;
1573 TemplateId->Operator = Id.OperatorFunctionId.Operator;
1574 TemplateId->TemplateNameLoc = Id.StartLocation;
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001575 }
1576
Douglas Gregor059101f2011-03-02 00:47:37 +00001577 TemplateId->SS = SS;
John McCall2b5289b2010-08-23 07:28:44 +00001578 TemplateId->Template = Template;
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001579 TemplateId->Kind = TNK;
1580 TemplateId->LAngleLoc = LAngleLoc;
1581 TemplateId->RAngleLoc = RAngleLoc;
Douglas Gregor314b97f2009-11-10 19:49:08 +00001582 ParsedTemplateArgument *Args = TemplateId->getTemplateArgs();
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001583 for (unsigned Arg = 0, ArgEnd = TemplateArgs.size();
Douglas Gregor314b97f2009-11-10 19:49:08 +00001584 Arg != ArgEnd; ++Arg)
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001585 Args[Arg] = TemplateArgs[Arg];
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001586
1587 Id.setTemplateId(TemplateId);
1588 return false;
1589 }
1590
1591 // Bundle the template arguments together.
1592 ASTTemplateArgsPtr TemplateArgsPtr(Actions, TemplateArgs.data(),
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001593 TemplateArgs.size());
1594
1595 // Constructor and destructor names.
John McCallf312b1e2010-08-26 23:41:50 +00001596 TypeResult Type
Douglas Gregor059101f2011-03-02 00:47:37 +00001597 = Actions.ActOnTemplateIdType(SS, Template, NameLoc,
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001598 LAngleLoc, TemplateArgsPtr,
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001599 RAngleLoc);
1600 if (Type.isInvalid())
1601 return true;
1602
1603 if (Id.getKind() == UnqualifiedId::IK_ConstructorName)
1604 Id.setConstructorName(Type.get(), NameLoc, RAngleLoc);
1605 else
1606 Id.setDestructorName(Id.StartLocation, Type.get(), RAngleLoc);
1607
1608 return false;
1609}
1610
Douglas Gregorca1bdd72009-11-04 00:56:37 +00001611/// \brief Parse an operator-function-id or conversion-function-id as part
1612/// of a C++ unqualified-id.
1613///
1614/// This routine is responsible only for parsing the operator-function-id or
1615/// conversion-function-id; it does not handle template arguments in any way.
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001616///
1617/// \code
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001618/// operator-function-id: [C++ 13.5]
1619/// 'operator' operator
1620///
Douglas Gregorca1bdd72009-11-04 00:56:37 +00001621/// operator: one of
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001622/// new delete new[] delete[]
1623/// + - * / % ^ & | ~
1624/// ! = < > += -= *= /= %=
1625/// ^= &= |= << >> >>= <<= == !=
1626/// <= >= && || ++ -- , ->* ->
1627/// () []
1628///
1629/// conversion-function-id: [C++ 12.3.2]
1630/// operator conversion-type-id
1631///
1632/// conversion-type-id:
1633/// type-specifier-seq conversion-declarator[opt]
1634///
1635/// conversion-declarator:
1636/// ptr-operator conversion-declarator[opt]
1637/// \endcode
1638///
1639/// \param The nested-name-specifier that preceded this unqualified-id. If
1640/// non-empty, then we are parsing the unqualified-id of a qualified-id.
1641///
1642/// \param EnteringContext whether we are entering the scope of the
1643/// nested-name-specifier.
1644///
Douglas Gregorca1bdd72009-11-04 00:56:37 +00001645/// \param ObjectType if this unqualified-id occurs within a member access
1646/// expression, the type of the base object whose member is being accessed.
1647///
1648/// \param Result on a successful parse, contains the parsed unqualified-id.
1649///
1650/// \returns true if parsing fails, false otherwise.
1651bool Parser::ParseUnqualifiedIdOperator(CXXScopeSpec &SS, bool EnteringContext,
John McCallb3d87482010-08-24 05:47:05 +00001652 ParsedType ObjectType,
Douglas Gregorca1bdd72009-11-04 00:56:37 +00001653 UnqualifiedId &Result) {
1654 assert(Tok.is(tok::kw_operator) && "Expected 'operator' keyword");
1655
1656 // Consume the 'operator' keyword.
1657 SourceLocation KeywordLoc = ConsumeToken();
1658
1659 // Determine what kind of operator name we have.
1660 unsigned SymbolIdx = 0;
1661 SourceLocation SymbolLocations[3];
1662 OverloadedOperatorKind Op = OO_None;
1663 switch (Tok.getKind()) {
1664 case tok::kw_new:
1665 case tok::kw_delete: {
1666 bool isNew = Tok.getKind() == tok::kw_new;
1667 // Consume the 'new' or 'delete'.
1668 SymbolLocations[SymbolIdx++] = ConsumeToken();
1669 if (Tok.is(tok::l_square)) {
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00001670 // Consume the '[' and ']'.
1671 BalancedDelimiterTracker T(*this, tok::l_square);
1672 T.consumeOpen();
1673 T.consumeClose();
1674 if (T.getCloseLocation().isInvalid())
Douglas Gregorca1bdd72009-11-04 00:56:37 +00001675 return true;
1676
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00001677 SymbolLocations[SymbolIdx++] = T.getOpenLocation();
1678 SymbolLocations[SymbolIdx++] = T.getCloseLocation();
Douglas Gregorca1bdd72009-11-04 00:56:37 +00001679 Op = isNew? OO_Array_New : OO_Array_Delete;
1680 } else {
1681 Op = isNew? OO_New : OO_Delete;
1682 }
1683 break;
1684 }
1685
1686#define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \
1687 case tok::Token: \
1688 SymbolLocations[SymbolIdx++] = ConsumeToken(); \
1689 Op = OO_##Name; \
1690 break;
1691#define OVERLOADED_OPERATOR_MULTI(Name,Spelling,Unary,Binary,MemberOnly)
1692#include "clang/Basic/OperatorKinds.def"
1693
1694 case tok::l_paren: {
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00001695 // Consume the '(' and ')'.
1696 BalancedDelimiterTracker T(*this, tok::l_paren);
1697 T.consumeOpen();
1698 T.consumeClose();
1699 if (T.getCloseLocation().isInvalid())
Douglas Gregorca1bdd72009-11-04 00:56:37 +00001700 return true;
1701
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00001702 SymbolLocations[SymbolIdx++] = T.getOpenLocation();
1703 SymbolLocations[SymbolIdx++] = T.getCloseLocation();
Douglas Gregorca1bdd72009-11-04 00:56:37 +00001704 Op = OO_Call;
1705 break;
1706 }
1707
1708 case tok::l_square: {
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00001709 // Consume the '[' and ']'.
1710 BalancedDelimiterTracker T(*this, tok::l_square);
1711 T.consumeOpen();
1712 T.consumeClose();
1713 if (T.getCloseLocation().isInvalid())
Douglas Gregorca1bdd72009-11-04 00:56:37 +00001714 return true;
1715
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00001716 SymbolLocations[SymbolIdx++] = T.getOpenLocation();
1717 SymbolLocations[SymbolIdx++] = T.getCloseLocation();
Douglas Gregorca1bdd72009-11-04 00:56:37 +00001718 Op = OO_Subscript;
1719 break;
1720 }
1721
1722 case tok::code_completion: {
1723 // Code completion for the operator name.
Douglas Gregor23c94db2010-07-02 17:43:08 +00001724 Actions.CodeCompleteOperatorName(getCurScope());
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00001725 cutOffParsing();
Douglas Gregorca1bdd72009-11-04 00:56:37 +00001726 // Don't try to parse any further.
1727 return true;
1728 }
1729
1730 default:
1731 break;
1732 }
1733
1734 if (Op != OO_None) {
1735 // We have parsed an operator-function-id.
1736 Result.setOperatorFunctionId(KeywordLoc, Op, SymbolLocations);
1737 return false;
1738 }
Sean Hunt0486d742009-11-28 04:44:28 +00001739
1740 // Parse a literal-operator-id.
1741 //
1742 // literal-operator-id: [C++0x 13.5.8]
1743 // operator "" identifier
1744
1745 if (getLang().CPlusPlus0x && Tok.is(tok::string_literal)) {
1746 if (Tok.getLength() != 2)
1747 Diag(Tok.getLocation(), diag::err_operator_string_not_empty);
1748 ConsumeStringToken();
1749
1750 if (Tok.isNot(tok::identifier)) {
1751 Diag(Tok.getLocation(), diag::err_expected_ident);
1752 return true;
1753 }
1754
1755 IdentifierInfo *II = Tok.getIdentifierInfo();
1756 Result.setLiteralOperatorId(II, KeywordLoc, ConsumeToken());
Sean Hunt3e518bd2009-11-29 07:34:05 +00001757 return false;
Sean Hunt0486d742009-11-28 04:44:28 +00001758 }
Douglas Gregorca1bdd72009-11-04 00:56:37 +00001759
1760 // Parse a conversion-function-id.
1761 //
1762 // conversion-function-id: [C++ 12.3.2]
1763 // operator conversion-type-id
1764 //
1765 // conversion-type-id:
1766 // type-specifier-seq conversion-declarator[opt]
1767 //
1768 // conversion-declarator:
1769 // ptr-operator conversion-declarator[opt]
1770
1771 // Parse the type-specifier-seq.
John McCall0b7e6782011-03-24 11:26:52 +00001772 DeclSpec DS(AttrFactory);
Douglas Gregorf6e6fc82009-11-20 22:03:38 +00001773 if (ParseCXXTypeSpecifierSeq(DS)) // FIXME: ObjectType?
Douglas Gregorca1bdd72009-11-04 00:56:37 +00001774 return true;
1775
1776 // Parse the conversion-declarator, which is merely a sequence of
1777 // ptr-operators.
1778 Declarator D(DS, Declarator::TypeNameContext);
1779 ParseDeclaratorInternal(D, /*DirectDeclParser=*/0);
1780
1781 // Finish up the type.
John McCallf312b1e2010-08-26 23:41:50 +00001782 TypeResult Ty = Actions.ActOnTypeName(getCurScope(), D);
Douglas Gregorca1bdd72009-11-04 00:56:37 +00001783 if (Ty.isInvalid())
1784 return true;
1785
1786 // Note that this is a conversion-function-id.
1787 Result.setConversionFunctionId(KeywordLoc, Ty.get(),
1788 D.getSourceRange().getEnd());
1789 return false;
1790}
1791
1792/// \brief Parse a C++ unqualified-id (or a C identifier), which describes the
1793/// name of an entity.
1794///
1795/// \code
1796/// unqualified-id: [C++ expr.prim.general]
1797/// identifier
1798/// operator-function-id
1799/// conversion-function-id
1800/// [C++0x] literal-operator-id [TODO]
1801/// ~ class-name
1802/// template-id
1803///
1804/// \endcode
1805///
1806/// \param The nested-name-specifier that preceded this unqualified-id. If
1807/// non-empty, then we are parsing the unqualified-id of a qualified-id.
1808///
1809/// \param EnteringContext whether we are entering the scope of the
1810/// nested-name-specifier.
1811///
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001812/// \param AllowDestructorName whether we allow parsing of a destructor name.
1813///
1814/// \param AllowConstructorName whether we allow parsing a constructor name.
1815///
Douglas Gregor46df8cc2009-11-03 21:24:04 +00001816/// \param ObjectType if this unqualified-id occurs within a member access
1817/// expression, the type of the base object whose member is being accessed.
1818///
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001819/// \param Result on a successful parse, contains the parsed unqualified-id.
1820///
1821/// \returns true if parsing fails, false otherwise.
1822bool Parser::ParseUnqualifiedId(CXXScopeSpec &SS, bool EnteringContext,
1823 bool AllowDestructorName,
1824 bool AllowConstructorName,
John McCallb3d87482010-08-24 05:47:05 +00001825 ParsedType ObjectType,
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001826 UnqualifiedId &Result) {
Douglas Gregor0278e122010-05-05 05:58:24 +00001827
1828 // Handle 'A::template B'. This is for template-ids which have not
1829 // already been annotated by ParseOptionalCXXScopeSpecifier().
1830 bool TemplateSpecified = false;
1831 SourceLocation TemplateKWLoc;
1832 if (getLang().CPlusPlus && Tok.is(tok::kw_template) &&
1833 (ObjectType || SS.isSet())) {
1834 TemplateSpecified = true;
1835 TemplateKWLoc = ConsumeToken();
1836 }
1837
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001838 // unqualified-id:
1839 // identifier
1840 // template-id (when it hasn't already been annotated)
1841 if (Tok.is(tok::identifier)) {
1842 // Consume the identifier.
1843 IdentifierInfo *Id = Tok.getIdentifierInfo();
1844 SourceLocation IdLoc = ConsumeToken();
1845
Douglas Gregorb862b8f2010-01-11 23:29:10 +00001846 if (!getLang().CPlusPlus) {
1847 // If we're not in C++, only identifiers matter. Record the
1848 // identifier and return.
1849 Result.setIdentifier(Id, IdLoc);
1850 return false;
1851 }
1852
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001853 if (AllowConstructorName &&
Douglas Gregor23c94db2010-07-02 17:43:08 +00001854 Actions.isCurrentClassName(*Id, getCurScope(), &SS)) {
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001855 // We have parsed a constructor name.
Douglas Gregor23c94db2010-07-02 17:43:08 +00001856 Result.setConstructorName(Actions.getTypeName(*Id, IdLoc, getCurScope(),
Douglas Gregor9e876872011-03-01 18:12:44 +00001857 &SS, false, false,
1858 ParsedType(),
1859 /*NonTrivialTypeSourceInfo=*/true),
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001860 IdLoc, IdLoc);
1861 } else {
1862 // We have parsed an identifier.
1863 Result.setIdentifier(Id, IdLoc);
1864 }
1865
1866 // If the next token is a '<', we may have a template.
Douglas Gregor0278e122010-05-05 05:58:24 +00001867 if (TemplateSpecified || Tok.is(tok::less))
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001868 return ParseUnqualifiedIdTemplateId(SS, Id, IdLoc, EnteringContext,
Douglas Gregor0278e122010-05-05 05:58:24 +00001869 ObjectType, Result,
1870 TemplateSpecified, TemplateKWLoc);
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001871
1872 return false;
1873 }
1874
1875 // unqualified-id:
1876 // template-id (already parsed and annotated)
1877 if (Tok.is(tok::annot_template_id)) {
Argyrios Kyrtzidis25a76762011-06-22 06:09:49 +00001878 TemplateIdAnnotation *TemplateId = takeTemplateIdAnnotation(Tok);
Douglas Gregor0efc2c12010-01-13 17:31:36 +00001879
1880 // If the template-name names the current class, then this is a constructor
1881 if (AllowConstructorName && TemplateId->Name &&
Douglas Gregor23c94db2010-07-02 17:43:08 +00001882 Actions.isCurrentClassName(*TemplateId->Name, getCurScope(), &SS)) {
Douglas Gregor0efc2c12010-01-13 17:31:36 +00001883 if (SS.isSet()) {
1884 // C++ [class.qual]p2 specifies that a qualified template-name
1885 // is taken as the constructor name where a constructor can be
1886 // declared. Thus, the template arguments are extraneous, so
1887 // complain about them and remove them entirely.
1888 Diag(TemplateId->TemplateNameLoc,
1889 diag::err_out_of_line_constructor_template_id)
1890 << TemplateId->Name
Douglas Gregor849b2432010-03-31 17:46:05 +00001891 << FixItHint::CreateRemoval(
Douglas Gregor0efc2c12010-01-13 17:31:36 +00001892 SourceRange(TemplateId->LAngleLoc, TemplateId->RAngleLoc));
1893 Result.setConstructorName(Actions.getTypeName(*TemplateId->Name,
1894 TemplateId->TemplateNameLoc,
Douglas Gregor23c94db2010-07-02 17:43:08 +00001895 getCurScope(),
Douglas Gregor9e876872011-03-01 18:12:44 +00001896 &SS, false, false,
1897 ParsedType(),
1898 /*NontrivialTypeSourceInfo=*/true),
Douglas Gregor0efc2c12010-01-13 17:31:36 +00001899 TemplateId->TemplateNameLoc,
1900 TemplateId->RAngleLoc);
Douglas Gregor0efc2c12010-01-13 17:31:36 +00001901 ConsumeToken();
1902 return false;
1903 }
1904
1905 Result.setConstructorTemplateId(TemplateId);
1906 ConsumeToken();
1907 return false;
1908 }
1909
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001910 // We have already parsed a template-id; consume the annotation token as
1911 // our unqualified-id.
Douglas Gregor0efc2c12010-01-13 17:31:36 +00001912 Result.setTemplateId(TemplateId);
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001913 ConsumeToken();
1914 return false;
1915 }
1916
1917 // unqualified-id:
1918 // operator-function-id
1919 // conversion-function-id
1920 if (Tok.is(tok::kw_operator)) {
Douglas Gregorca1bdd72009-11-04 00:56:37 +00001921 if (ParseUnqualifiedIdOperator(SS, EnteringContext, ObjectType, Result))
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001922 return true;
1923
Sean Hunte6252d12009-11-28 08:58:14 +00001924 // If we have an operator-function-id or a literal-operator-id and the next
1925 // token is a '<', we may have a
Douglas Gregorca1bdd72009-11-04 00:56:37 +00001926 //
1927 // template-id:
1928 // operator-function-id < template-argument-list[opt] >
Sean Hunte6252d12009-11-28 08:58:14 +00001929 if ((Result.getKind() == UnqualifiedId::IK_OperatorFunctionId ||
1930 Result.getKind() == UnqualifiedId::IK_LiteralOperatorId) &&
Douglas Gregor0278e122010-05-05 05:58:24 +00001931 (TemplateSpecified || Tok.is(tok::less)))
Douglas Gregorca1bdd72009-11-04 00:56:37 +00001932 return ParseUnqualifiedIdTemplateId(SS, 0, SourceLocation(),
1933 EnteringContext, ObjectType,
Douglas Gregor0278e122010-05-05 05:58:24 +00001934 Result,
1935 TemplateSpecified, TemplateKWLoc);
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001936
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001937 return false;
1938 }
1939
Douglas Gregorb862b8f2010-01-11 23:29:10 +00001940 if (getLang().CPlusPlus &&
1941 (AllowDestructorName || SS.isSet()) && Tok.is(tok::tilde)) {
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001942 // C++ [expr.unary.op]p10:
1943 // There is an ambiguity in the unary-expression ~X(), where X is a
1944 // class-name. The ambiguity is resolved in favor of treating ~ as a
1945 // unary complement rather than treating ~X as referring to a destructor.
1946
1947 // Parse the '~'.
1948 SourceLocation TildeLoc = ConsumeToken();
1949
1950 // Parse the class-name.
1951 if (Tok.isNot(tok::identifier)) {
Douglas Gregor124b8782010-02-16 19:09:40 +00001952 Diag(Tok, diag::err_destructor_tilde_identifier);
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001953 return true;
1954 }
1955
1956 // Parse the class-name (or template-name in a simple-template-id).
1957 IdentifierInfo *ClassName = Tok.getIdentifierInfo();
1958 SourceLocation ClassNameLoc = ConsumeToken();
1959
Douglas Gregor0278e122010-05-05 05:58:24 +00001960 if (TemplateSpecified || Tok.is(tok::less)) {
John McCallb3d87482010-08-24 05:47:05 +00001961 Result.setDestructorName(TildeLoc, ParsedType(), ClassNameLoc);
Douglas Gregor2d1c2142009-11-03 19:44:04 +00001962 return ParseUnqualifiedIdTemplateId(SS, ClassName, ClassNameLoc,
Douglas Gregor0278e122010-05-05 05:58:24 +00001963 EnteringContext, ObjectType, Result,
1964 TemplateSpecified, TemplateKWLoc);
Douglas Gregor2d1c2142009-11-03 19:44:04 +00001965 }
1966
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001967 // Note that this is a destructor name.
John McCallb3d87482010-08-24 05:47:05 +00001968 ParsedType Ty = Actions.getDestructorName(TildeLoc, *ClassName,
1969 ClassNameLoc, getCurScope(),
1970 SS, ObjectType,
1971 EnteringContext);
Douglas Gregor124b8782010-02-16 19:09:40 +00001972 if (!Ty)
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001973 return true;
Douglas Gregor124b8782010-02-16 19:09:40 +00001974
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001975 Result.setDestructorName(TildeLoc, Ty, ClassNameLoc);
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001976 return false;
1977 }
1978
Douglas Gregor2d1c2142009-11-03 19:44:04 +00001979 Diag(Tok, diag::err_expected_unqualified_id)
1980 << getLang().CPlusPlus;
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001981 return true;
1982}
1983
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001984/// ParseCXXNewExpression - Parse a C++ new-expression. New is used to allocate
1985/// memory in a typesafe manner and call constructors.
Mike Stump1eb44332009-09-09 15:08:12 +00001986///
Chris Lattner59232d32009-01-04 21:25:24 +00001987/// This method is called to parse the new expression after the optional :: has
1988/// been already parsed. If the :: was present, "UseGlobal" is true and "Start"
1989/// is its location. Otherwise, "Start" is the location of the 'new' token.
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001990///
1991/// new-expression:
1992/// '::'[opt] 'new' new-placement[opt] new-type-id
1993/// new-initializer[opt]
1994/// '::'[opt] 'new' new-placement[opt] '(' type-id ')'
1995/// new-initializer[opt]
1996///
1997/// new-placement:
1998/// '(' expression-list ')'
1999///
Sebastian Redlcee63fb2008-12-02 14:43:59 +00002000/// new-type-id:
2001/// type-specifier-seq new-declarator[opt]
Douglas Gregor893e1cc2011-04-15 19:40:02 +00002002/// [GNU] attributes type-specifier-seq new-declarator[opt]
Sebastian Redlcee63fb2008-12-02 14:43:59 +00002003///
2004/// new-declarator:
2005/// ptr-operator new-declarator[opt]
2006/// direct-new-declarator
2007///
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002008/// new-initializer:
2009/// '(' expression-list[opt] ')'
Sebastian Redldbef1bb2011-06-05 12:23:16 +00002010/// [C++0x] braced-init-list
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002011///
John McCall60d7b3a2010-08-24 06:29:42 +00002012ExprResult
Chris Lattner59232d32009-01-04 21:25:24 +00002013Parser::ParseCXXNewExpression(bool UseGlobal, SourceLocation Start) {
2014 assert(Tok.is(tok::kw_new) && "expected 'new' token");
2015 ConsumeToken(); // Consume 'new'
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002016
2017 // A '(' now can be a new-placement or the '(' wrapping the type-id in the
2018 // second form of new-expression. It can't be a new-type-id.
2019
Sebastian Redla55e52c2008-11-25 22:21:31 +00002020 ExprVector PlacementArgs(Actions);
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002021 SourceLocation PlacementLParen, PlacementRParen;
2022
Douglas Gregor4bd40312010-07-13 15:54:32 +00002023 SourceRange TypeIdParens;
John McCall0b7e6782011-03-24 11:26:52 +00002024 DeclSpec DS(AttrFactory);
Argyrios Kyrtzidis0b8c98f2011-06-28 03:01:23 +00002025 Declarator DeclaratorInfo(DS, Declarator::CXXNewContext);
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002026 if (Tok.is(tok::l_paren)) {
2027 // If it turns out to be a placement, we change the type location.
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002028 BalancedDelimiterTracker T(*this, tok::l_paren);
2029 T.consumeOpen();
2030 PlacementLParen = T.getOpenLocation();
Sebastian Redlcee63fb2008-12-02 14:43:59 +00002031 if (ParseExpressionListOrTypeId(PlacementArgs, DeclaratorInfo)) {
2032 SkipUntil(tok::semi, /*StopAtSemi=*/true, /*DontConsume=*/true);
Sebastian Redl20df9b72008-12-11 22:51:44 +00002033 return ExprError();
Sebastian Redlcee63fb2008-12-02 14:43:59 +00002034 }
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002035
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002036 T.consumeClose();
2037 PlacementRParen = T.getCloseLocation();
Sebastian Redlcee63fb2008-12-02 14:43:59 +00002038 if (PlacementRParen.isInvalid()) {
2039 SkipUntil(tok::semi, /*StopAtSemi=*/true, /*DontConsume=*/true);
Sebastian Redl20df9b72008-12-11 22:51:44 +00002040 return ExprError();
Sebastian Redlcee63fb2008-12-02 14:43:59 +00002041 }
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002042
Sebastian Redlcee63fb2008-12-02 14:43:59 +00002043 if (PlacementArgs.empty()) {
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002044 // Reset the placement locations. There was no placement.
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002045 TypeIdParens = T.getRange();
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002046 PlacementLParen = PlacementRParen = SourceLocation();
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002047 } else {
2048 // We still need the type.
2049 if (Tok.is(tok::l_paren)) {
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002050 BalancedDelimiterTracker T(*this, tok::l_paren);
2051 T.consumeOpen();
Douglas Gregor893e1cc2011-04-15 19:40:02 +00002052 MaybeParseGNUAttributes(DeclaratorInfo);
Sebastian Redlcee63fb2008-12-02 14:43:59 +00002053 ParseSpecifierQualifierList(DS);
Sebastian Redlab197ba2009-02-09 18:23:29 +00002054 DeclaratorInfo.SetSourceRange(DS.getSourceRange());
Sebastian Redlcee63fb2008-12-02 14:43:59 +00002055 ParseDeclarator(DeclaratorInfo);
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002056 T.consumeClose();
2057 TypeIdParens = T.getRange();
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002058 } else {
Douglas Gregor893e1cc2011-04-15 19:40:02 +00002059 MaybeParseGNUAttributes(DeclaratorInfo);
Sebastian Redlcee63fb2008-12-02 14:43:59 +00002060 if (ParseCXXTypeSpecifierSeq(DS))
2061 DeclaratorInfo.setInvalidType(true);
Sebastian Redlab197ba2009-02-09 18:23:29 +00002062 else {
2063 DeclaratorInfo.SetSourceRange(DS.getSourceRange());
Sebastian Redlcee63fb2008-12-02 14:43:59 +00002064 ParseDeclaratorInternal(DeclaratorInfo,
2065 &Parser::ParseDirectNewDeclarator);
Sebastian Redlab197ba2009-02-09 18:23:29 +00002066 }
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002067 }
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002068 }
2069 } else {
Sebastian Redlcee63fb2008-12-02 14:43:59 +00002070 // A new-type-id is a simplified type-id, where essentially the
2071 // direct-declarator is replaced by a direct-new-declarator.
Douglas Gregor893e1cc2011-04-15 19:40:02 +00002072 MaybeParseGNUAttributes(DeclaratorInfo);
Sebastian Redlcee63fb2008-12-02 14:43:59 +00002073 if (ParseCXXTypeSpecifierSeq(DS))
2074 DeclaratorInfo.setInvalidType(true);
Sebastian Redlab197ba2009-02-09 18:23:29 +00002075 else {
2076 DeclaratorInfo.SetSourceRange(DS.getSourceRange());
Sebastian Redlcee63fb2008-12-02 14:43:59 +00002077 ParseDeclaratorInternal(DeclaratorInfo,
2078 &Parser::ParseDirectNewDeclarator);
Sebastian Redlab197ba2009-02-09 18:23:29 +00002079 }
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002080 }
Chris Lattnereaaebc72009-04-25 08:06:05 +00002081 if (DeclaratorInfo.isInvalidType()) {
Sebastian Redlcee63fb2008-12-02 14:43:59 +00002082 SkipUntil(tok::semi, /*StopAtSemi=*/true, /*DontConsume=*/true);
Sebastian Redl20df9b72008-12-11 22:51:44 +00002083 return ExprError();
Sebastian Redlcee63fb2008-12-02 14:43:59 +00002084 }
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002085
Sebastian Redla55e52c2008-11-25 22:21:31 +00002086 ExprVector ConstructorArgs(Actions);
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002087 SourceLocation ConstructorLParen, ConstructorRParen;
2088
2089 if (Tok.is(tok::l_paren)) {
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002090 BalancedDelimiterTracker T(*this, tok::l_paren);
2091 T.consumeOpen();
2092 ConstructorLParen = T.getOpenLocation();
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002093 if (Tok.isNot(tok::r_paren)) {
2094 CommaLocsTy CommaLocs;
Sebastian Redlcee63fb2008-12-02 14:43:59 +00002095 if (ParseExpressionList(ConstructorArgs, CommaLocs)) {
2096 SkipUntil(tok::semi, /*StopAtSemi=*/true, /*DontConsume=*/true);
Sebastian Redl20df9b72008-12-11 22:51:44 +00002097 return ExprError();
Sebastian Redlcee63fb2008-12-02 14:43:59 +00002098 }
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002099 }
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002100 T.consumeClose();
2101 ConstructorRParen = T.getCloseLocation();
Sebastian Redlcee63fb2008-12-02 14:43:59 +00002102 if (ConstructorRParen.isInvalid()) {
2103 SkipUntil(tok::semi, /*StopAtSemi=*/true, /*DontConsume=*/true);
Sebastian Redl20df9b72008-12-11 22:51:44 +00002104 return ExprError();
Sebastian Redlcee63fb2008-12-02 14:43:59 +00002105 }
Richard Smith29e3a312011-10-15 03:38:41 +00002106 } else if (Tok.is(tok::l_brace) && getLang().CPlusPlus0x) {
Sebastian Redldbef1bb2011-06-05 12:23:16 +00002107 // FIXME: Have to communicate the init-list to ActOnCXXNew.
2108 ParseBraceInitializer();
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002109 }
2110
Sebastian Redlf53597f2009-03-15 17:47:39 +00002111 return Actions.ActOnCXXNew(Start, UseGlobal, PlacementLParen,
2112 move_arg(PlacementArgs), PlacementRParen,
Douglas Gregor4bd40312010-07-13 15:54:32 +00002113 TypeIdParens, DeclaratorInfo, ConstructorLParen,
Sebastian Redlf53597f2009-03-15 17:47:39 +00002114 move_arg(ConstructorArgs), ConstructorRParen);
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002115}
2116
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002117/// ParseDirectNewDeclarator - Parses a direct-new-declarator. Intended to be
2118/// passed to ParseDeclaratorInternal.
2119///
2120/// direct-new-declarator:
2121/// '[' expression ']'
2122/// direct-new-declarator '[' constant-expression ']'
2123///
Chris Lattner59232d32009-01-04 21:25:24 +00002124void Parser::ParseDirectNewDeclarator(Declarator &D) {
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002125 // Parse the array dimensions.
2126 bool first = true;
2127 while (Tok.is(tok::l_square)) {
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002128 BalancedDelimiterTracker T(*this, tok::l_square);
2129 T.consumeOpen();
2130
John McCall60d7b3a2010-08-24 06:29:42 +00002131 ExprResult Size(first ? ParseExpression()
Sebastian Redl2f7ece72008-12-11 21:36:32 +00002132 : ParseConstantExpression());
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00002133 if (Size.isInvalid()) {
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002134 // Recover
2135 SkipUntil(tok::r_square);
2136 return;
2137 }
2138 first = false;
2139
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002140 T.consumeClose();
John McCall0b7e6782011-03-24 11:26:52 +00002141
2142 ParsedAttributes attrs(AttrFactory);
2143 D.AddTypeInfo(DeclaratorChunk::getArray(0,
John McCall7f040a92010-12-24 02:08:15 +00002144 /*static=*/false, /*star=*/false,
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002145 Size.release(),
2146 T.getOpenLocation(),
2147 T.getCloseLocation()),
2148 attrs, T.getCloseLocation());
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002149
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002150 if (T.getCloseLocation().isInvalid())
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002151 return;
2152 }
2153}
2154
2155/// ParseExpressionListOrTypeId - Parse either an expression-list or a type-id.
2156/// This ambiguity appears in the syntax of the C++ new operator.
2157///
2158/// new-expression:
2159/// '::'[opt] 'new' new-placement[opt] '(' type-id ')'
2160/// new-initializer[opt]
2161///
2162/// new-placement:
2163/// '(' expression-list ')'
2164///
John McCallca0408f2010-08-23 06:44:23 +00002165bool Parser::ParseExpressionListOrTypeId(
Chris Lattner5f9e2722011-07-23 10:55:15 +00002166 SmallVectorImpl<Expr*> &PlacementArgs,
Chris Lattner59232d32009-01-04 21:25:24 +00002167 Declarator &D) {
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002168 // The '(' was already consumed.
2169 if (isTypeIdInParens()) {
Sebastian Redlcee63fb2008-12-02 14:43:59 +00002170 ParseSpecifierQualifierList(D.getMutableDeclSpec());
Sebastian Redlab197ba2009-02-09 18:23:29 +00002171 D.SetSourceRange(D.getDeclSpec().getSourceRange());
Sebastian Redlcee63fb2008-12-02 14:43:59 +00002172 ParseDeclarator(D);
Chris Lattnereaaebc72009-04-25 08:06:05 +00002173 return D.isInvalidType();
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002174 }
2175
2176 // It's not a type, it has to be an expression list.
2177 // Discard the comma locations - ActOnCXXNew has enough parameters.
2178 CommaLocsTy CommaLocs;
2179 return ParseExpressionList(PlacementArgs, CommaLocs);
2180}
2181
2182/// ParseCXXDeleteExpression - Parse a C++ delete-expression. Delete is used
2183/// to free memory allocated by new.
2184///
Chris Lattner59232d32009-01-04 21:25:24 +00002185/// This method is called to parse the 'delete' expression after the optional
2186/// '::' has been already parsed. If the '::' was present, "UseGlobal" is true
2187/// and "Start" is its location. Otherwise, "Start" is the location of the
2188/// 'delete' token.
2189///
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002190/// delete-expression:
2191/// '::'[opt] 'delete' cast-expression
2192/// '::'[opt] 'delete' '[' ']' cast-expression
John McCall60d7b3a2010-08-24 06:29:42 +00002193ExprResult
Chris Lattner59232d32009-01-04 21:25:24 +00002194Parser::ParseCXXDeleteExpression(bool UseGlobal, SourceLocation Start) {
2195 assert(Tok.is(tok::kw_delete) && "Expected 'delete' keyword");
2196 ConsumeToken(); // Consume 'delete'
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002197
2198 // Array delete?
2199 bool ArrayDelete = false;
2200 if (Tok.is(tok::l_square)) {
2201 ArrayDelete = true;
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002202 BalancedDelimiterTracker T(*this, tok::l_square);
2203
2204 T.consumeOpen();
2205 T.consumeClose();
2206 if (T.getCloseLocation().isInvalid())
Sebastian Redl20df9b72008-12-11 22:51:44 +00002207 return ExprError();
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002208 }
2209
John McCall60d7b3a2010-08-24 06:29:42 +00002210 ExprResult Operand(ParseCastExpression(false));
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00002211 if (Operand.isInvalid())
Sebastian Redl20df9b72008-12-11 22:51:44 +00002212 return move(Operand);
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002213
John McCall9ae2f072010-08-23 23:25:46 +00002214 return Actions.ActOnCXXDelete(Start, UseGlobal, ArrayDelete, Operand.take());
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002215}
Sebastian Redl64b45f72009-01-05 20:52:13 +00002216
Mike Stump1eb44332009-09-09 15:08:12 +00002217static UnaryTypeTrait UnaryTypeTraitFromTokKind(tok::TokenKind kind) {
Sebastian Redl64b45f72009-01-05 20:52:13 +00002218 switch(kind) {
David Blaikieb219cfc2011-09-23 05:06:16 +00002219 default: llvm_unreachable("Not a known unary type trait.");
Sebastian Redl64b45f72009-01-05 20:52:13 +00002220 case tok::kw___has_nothrow_assign: return UTT_HasNothrowAssign;
Sebastian Redl64b45f72009-01-05 20:52:13 +00002221 case tok::kw___has_nothrow_constructor: return UTT_HasNothrowConstructor;
John Wiegley20c0da72011-04-27 23:09:49 +00002222 case tok::kw___has_nothrow_copy: return UTT_HasNothrowCopy;
Sebastian Redl64b45f72009-01-05 20:52:13 +00002223 case tok::kw___has_trivial_assign: return UTT_HasTrivialAssign;
Sean Hunt023df372011-05-09 18:22:59 +00002224 case tok::kw___has_trivial_constructor:
2225 return UTT_HasTrivialDefaultConstructor;
John Wiegley20c0da72011-04-27 23:09:49 +00002226 case tok::kw___has_trivial_copy: return UTT_HasTrivialCopy;
Sebastian Redl64b45f72009-01-05 20:52:13 +00002227 case tok::kw___has_trivial_destructor: return UTT_HasTrivialDestructor;
2228 case tok::kw___has_virtual_destructor: return UTT_HasVirtualDestructor;
2229 case tok::kw___is_abstract: return UTT_IsAbstract;
John Wiegley20c0da72011-04-27 23:09:49 +00002230 case tok::kw___is_arithmetic: return UTT_IsArithmetic;
2231 case tok::kw___is_array: return UTT_IsArray;
Sebastian Redl64b45f72009-01-05 20:52:13 +00002232 case tok::kw___is_class: return UTT_IsClass;
John Wiegley20c0da72011-04-27 23:09:49 +00002233 case tok::kw___is_complete_type: return UTT_IsCompleteType;
2234 case tok::kw___is_compound: return UTT_IsCompound;
2235 case tok::kw___is_const: return UTT_IsConst;
Sebastian Redl64b45f72009-01-05 20:52:13 +00002236 case tok::kw___is_empty: return UTT_IsEmpty;
2237 case tok::kw___is_enum: return UTT_IsEnum;
John Wiegley20c0da72011-04-27 23:09:49 +00002238 case tok::kw___is_floating_point: return UTT_IsFloatingPoint;
2239 case tok::kw___is_function: return UTT_IsFunction;
2240 case tok::kw___is_fundamental: return UTT_IsFundamental;
2241 case tok::kw___is_integral: return UTT_IsIntegral;
John Wiegley20c0da72011-04-27 23:09:49 +00002242 case tok::kw___is_lvalue_reference: return UTT_IsLvalueReference;
2243 case tok::kw___is_member_function_pointer: return UTT_IsMemberFunctionPointer;
2244 case tok::kw___is_member_object_pointer: return UTT_IsMemberObjectPointer;
2245 case tok::kw___is_member_pointer: return UTT_IsMemberPointer;
2246 case tok::kw___is_object: return UTT_IsObject;
Chandler Carruth4e61ddd2011-04-23 10:47:20 +00002247 case tok::kw___is_literal: return UTT_IsLiteral;
Chandler Carruth38402812011-04-24 02:49:28 +00002248 case tok::kw___is_literal_type: return UTT_IsLiteral;
Sebastian Redl64b45f72009-01-05 20:52:13 +00002249 case tok::kw___is_pod: return UTT_IsPOD;
John Wiegley20c0da72011-04-27 23:09:49 +00002250 case tok::kw___is_pointer: return UTT_IsPointer;
Sebastian Redl64b45f72009-01-05 20:52:13 +00002251 case tok::kw___is_polymorphic: return UTT_IsPolymorphic;
John Wiegley20c0da72011-04-27 23:09:49 +00002252 case tok::kw___is_reference: return UTT_IsReference;
John Wiegley20c0da72011-04-27 23:09:49 +00002253 case tok::kw___is_rvalue_reference: return UTT_IsRvalueReference;
2254 case tok::kw___is_scalar: return UTT_IsScalar;
2255 case tok::kw___is_signed: return UTT_IsSigned;
2256 case tok::kw___is_standard_layout: return UTT_IsStandardLayout;
2257 case tok::kw___is_trivial: return UTT_IsTrivial;
Sean Huntfeb375d2011-05-13 00:31:07 +00002258 case tok::kw___is_trivially_copyable: return UTT_IsTriviallyCopyable;
Sebastian Redl64b45f72009-01-05 20:52:13 +00002259 case tok::kw___is_union: return UTT_IsUnion;
John Wiegley20c0da72011-04-27 23:09:49 +00002260 case tok::kw___is_unsigned: return UTT_IsUnsigned;
2261 case tok::kw___is_void: return UTT_IsVoid;
2262 case tok::kw___is_volatile: return UTT_IsVolatile;
Sebastian Redl64b45f72009-01-05 20:52:13 +00002263 }
Francois Pichet6ad6f282010-12-07 00:08:36 +00002264}
2265
2266static BinaryTypeTrait BinaryTypeTraitFromTokKind(tok::TokenKind kind) {
2267 switch(kind) {
Francois Pichet38c2b732010-12-07 00:55:57 +00002268 default: llvm_unreachable("Not a known binary type trait");
Francois Pichetf1872372010-12-08 22:35:30 +00002269 case tok::kw___is_base_of: return BTT_IsBaseOf;
John Wiegley20c0da72011-04-27 23:09:49 +00002270 case tok::kw___is_convertible: return BTT_IsConvertible;
2271 case tok::kw___is_same: return BTT_IsSame;
Francois Pichetf1872372010-12-08 22:35:30 +00002272 case tok::kw___builtin_types_compatible_p: return BTT_TypeCompatible;
Douglas Gregor9f361132011-01-27 20:28:01 +00002273 case tok::kw___is_convertible_to: return BTT_IsConvertibleTo;
Francois Pichet6ad6f282010-12-07 00:08:36 +00002274 }
Sebastian Redl64b45f72009-01-05 20:52:13 +00002275}
2276
John Wiegley21ff2e52011-04-28 00:16:57 +00002277static ArrayTypeTrait ArrayTypeTraitFromTokKind(tok::TokenKind kind) {
2278 switch(kind) {
2279 default: llvm_unreachable("Not a known binary type trait");
2280 case tok::kw___array_rank: return ATT_ArrayRank;
2281 case tok::kw___array_extent: return ATT_ArrayExtent;
2282 }
2283}
2284
John Wiegley55262202011-04-25 06:54:41 +00002285static ExpressionTrait ExpressionTraitFromTokKind(tok::TokenKind kind) {
2286 switch(kind) {
David Blaikieb219cfc2011-09-23 05:06:16 +00002287 default: llvm_unreachable("Not a known unary expression trait.");
John Wiegley55262202011-04-25 06:54:41 +00002288 case tok::kw___is_lvalue_expr: return ET_IsLValueExpr;
2289 case tok::kw___is_rvalue_expr: return ET_IsRValueExpr;
2290 }
2291}
2292
Sebastian Redl64b45f72009-01-05 20:52:13 +00002293/// ParseUnaryTypeTrait - Parse the built-in unary type-trait
2294/// pseudo-functions that allow implementation of the TR1/C++0x type traits
2295/// templates.
2296///
2297/// primary-expression:
2298/// [GNU] unary-type-trait '(' type-id ')'
2299///
John McCall60d7b3a2010-08-24 06:29:42 +00002300ExprResult Parser::ParseUnaryTypeTrait() {
Sebastian Redl64b45f72009-01-05 20:52:13 +00002301 UnaryTypeTrait UTT = UnaryTypeTraitFromTokKind(Tok.getKind());
2302 SourceLocation Loc = ConsumeToken();
2303
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002304 BalancedDelimiterTracker T(*this, tok::l_paren);
2305 if (T.expectAndConsume(diag::err_expected_lparen))
Sebastian Redl64b45f72009-01-05 20:52:13 +00002306 return ExprError();
2307
2308 // FIXME: Error reporting absolutely sucks! If the this fails to parse a type
2309 // there will be cryptic errors about mismatched parentheses and missing
2310 // specifiers.
Douglas Gregor809070a2009-02-18 17:45:20 +00002311 TypeResult Ty = ParseTypeName();
Sebastian Redl64b45f72009-01-05 20:52:13 +00002312
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002313 T.consumeClose();
Sebastian Redl64b45f72009-01-05 20:52:13 +00002314
Douglas Gregor809070a2009-02-18 17:45:20 +00002315 if (Ty.isInvalid())
2316 return ExprError();
2317
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002318 return Actions.ActOnUnaryTypeTrait(UTT, Loc, Ty.get(), T.getCloseLocation());
Sebastian Redl64b45f72009-01-05 20:52:13 +00002319}
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00002320
Francois Pichet6ad6f282010-12-07 00:08:36 +00002321/// ParseBinaryTypeTrait - Parse the built-in binary type-trait
2322/// pseudo-functions that allow implementation of the TR1/C++0x type traits
2323/// templates.
2324///
2325/// primary-expression:
2326/// [GNU] binary-type-trait '(' type-id ',' type-id ')'
2327///
2328ExprResult Parser::ParseBinaryTypeTrait() {
2329 BinaryTypeTrait BTT = BinaryTypeTraitFromTokKind(Tok.getKind());
2330 SourceLocation Loc = ConsumeToken();
2331
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002332 BalancedDelimiterTracker T(*this, tok::l_paren);
2333 if (T.expectAndConsume(diag::err_expected_lparen))
Francois Pichet6ad6f282010-12-07 00:08:36 +00002334 return ExprError();
2335
2336 TypeResult LhsTy = ParseTypeName();
2337 if (LhsTy.isInvalid()) {
2338 SkipUntil(tok::r_paren);
2339 return ExprError();
2340 }
2341
2342 if (ExpectAndConsume(tok::comma, diag::err_expected_comma)) {
2343 SkipUntil(tok::r_paren);
2344 return ExprError();
2345 }
2346
2347 TypeResult RhsTy = ParseTypeName();
2348 if (RhsTy.isInvalid()) {
2349 SkipUntil(tok::r_paren);
2350 return ExprError();
2351 }
2352
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002353 T.consumeClose();
Francois Pichet6ad6f282010-12-07 00:08:36 +00002354
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002355 return Actions.ActOnBinaryTypeTrait(BTT, Loc, LhsTy.get(), RhsTy.get(),
2356 T.getCloseLocation());
Francois Pichet6ad6f282010-12-07 00:08:36 +00002357}
2358
John Wiegley21ff2e52011-04-28 00:16:57 +00002359/// ParseArrayTypeTrait - Parse the built-in array type-trait
2360/// pseudo-functions.
2361///
2362/// primary-expression:
2363/// [Embarcadero] '__array_rank' '(' type-id ')'
2364/// [Embarcadero] '__array_extent' '(' type-id ',' expression ')'
2365///
2366ExprResult Parser::ParseArrayTypeTrait() {
2367 ArrayTypeTrait ATT = ArrayTypeTraitFromTokKind(Tok.getKind());
2368 SourceLocation Loc = ConsumeToken();
2369
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002370 BalancedDelimiterTracker T(*this, tok::l_paren);
2371 if (T.expectAndConsume(diag::err_expected_lparen))
John Wiegley21ff2e52011-04-28 00:16:57 +00002372 return ExprError();
2373
2374 TypeResult Ty = ParseTypeName();
2375 if (Ty.isInvalid()) {
2376 SkipUntil(tok::comma);
2377 SkipUntil(tok::r_paren);
2378 return ExprError();
2379 }
2380
2381 switch (ATT) {
2382 case ATT_ArrayRank: {
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002383 T.consumeClose();
2384 return Actions.ActOnArrayTypeTrait(ATT, Loc, Ty.get(), NULL,
2385 T.getCloseLocation());
John Wiegley21ff2e52011-04-28 00:16:57 +00002386 }
2387 case ATT_ArrayExtent: {
2388 if (ExpectAndConsume(tok::comma, diag::err_expected_comma)) {
2389 SkipUntil(tok::r_paren);
2390 return ExprError();
2391 }
2392
2393 ExprResult DimExpr = ParseExpression();
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002394 T.consumeClose();
John Wiegley21ff2e52011-04-28 00:16:57 +00002395
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002396 return Actions.ActOnArrayTypeTrait(ATT, Loc, Ty.get(), DimExpr.get(),
2397 T.getCloseLocation());
John Wiegley21ff2e52011-04-28 00:16:57 +00002398 }
2399 default:
2400 break;
2401 }
2402 return ExprError();
2403}
2404
John Wiegley55262202011-04-25 06:54:41 +00002405/// ParseExpressionTrait - Parse built-in expression-trait
2406/// pseudo-functions like __is_lvalue_expr( xxx ).
2407///
2408/// primary-expression:
2409/// [Embarcadero] expression-trait '(' expression ')'
2410///
2411ExprResult Parser::ParseExpressionTrait() {
2412 ExpressionTrait ET = ExpressionTraitFromTokKind(Tok.getKind());
2413 SourceLocation Loc = ConsumeToken();
2414
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002415 BalancedDelimiterTracker T(*this, tok::l_paren);
2416 if (T.expectAndConsume(diag::err_expected_lparen))
John Wiegley55262202011-04-25 06:54:41 +00002417 return ExprError();
2418
2419 ExprResult Expr = ParseExpression();
2420
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002421 T.consumeClose();
John Wiegley55262202011-04-25 06:54:41 +00002422
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002423 return Actions.ActOnExpressionTrait(ET, Loc, Expr.get(),
2424 T.getCloseLocation());
John Wiegley55262202011-04-25 06:54:41 +00002425}
2426
2427
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00002428/// ParseCXXAmbiguousParenExpression - We have parsed the left paren of a
2429/// parenthesized ambiguous type-id. This uses tentative parsing to disambiguate
2430/// based on the context past the parens.
John McCall60d7b3a2010-08-24 06:29:42 +00002431ExprResult
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00002432Parser::ParseCXXAmbiguousParenExpression(ParenParseOption &ExprType,
John McCallb3d87482010-08-24 05:47:05 +00002433 ParsedType &CastTy,
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002434 BalancedDelimiterTracker &Tracker) {
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00002435 assert(getLang().CPlusPlus && "Should only be called for C++!");
2436 assert(ExprType == CastExpr && "Compound literals are not ambiguous!");
2437 assert(isTypeIdInParens() && "Not a type-id!");
2438
John McCall60d7b3a2010-08-24 06:29:42 +00002439 ExprResult Result(true);
John McCallb3d87482010-08-24 05:47:05 +00002440 CastTy = ParsedType();
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00002441
2442 // We need to disambiguate a very ugly part of the C++ syntax:
2443 //
2444 // (T())x; - type-id
2445 // (T())*x; - type-id
2446 // (T())/x; - expression
2447 // (T()); - expression
2448 //
2449 // The bad news is that we cannot use the specialized tentative parser, since
2450 // it can only verify that the thing inside the parens can be parsed as
2451 // type-id, it is not useful for determining the context past the parens.
2452 //
2453 // The good news is that the parser can disambiguate this part without
Argyrios Kyrtzidisa558a892009-05-22 15:12:46 +00002454 // making any unnecessary Action calls.
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00002455 //
2456 // It uses a scheme similar to parsing inline methods. The parenthesized
2457 // tokens are cached, the context that follows is determined (possibly by
2458 // parsing a cast-expression), and then we re-introduce the cached tokens
2459 // into the token stream and parse them appropriately.
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00002460
Mike Stump1eb44332009-09-09 15:08:12 +00002461 ParenParseOption ParseAs;
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00002462 CachedTokens Toks;
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00002463
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00002464 // Store the tokens of the parentheses. We will parse them after we determine
2465 // the context that follows them.
Argyrios Kyrtzidis14b91622010-04-23 21:20:12 +00002466 if (!ConsumeAndStoreUntil(tok::r_paren, Toks)) {
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00002467 // We didn't find the ')' we expected.
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002468 Tracker.consumeClose();
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00002469 return ExprError();
2470 }
2471
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00002472 if (Tok.is(tok::l_brace)) {
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00002473 ParseAs = CompoundLiteral;
2474 } else {
2475 bool NotCastExpr;
Eli Friedmanb53f08a2009-05-25 19:41:42 +00002476 // FIXME: Special-case ++ and --: "(S())++;" is not a cast-expression
2477 if (Tok.is(tok::l_paren) && NextToken().is(tok::r_paren)) {
2478 NotCastExpr = true;
2479 } else {
2480 // Try parsing the cast-expression that may follow.
2481 // If it is not a cast-expression, NotCastExpr will be true and no token
2482 // will be consumed.
2483 Result = ParseCastExpression(false/*isUnaryExpression*/,
2484 false/*isAddressofOperand*/,
John McCallb3d87482010-08-24 05:47:05 +00002485 NotCastExpr,
Argyrios Kyrtzidis0a851832011-07-01 22:22:59 +00002486 // type-id has priority.
2487 true/*isTypeCast*/);
Eli Friedmanb53f08a2009-05-25 19:41:42 +00002488 }
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00002489
2490 // If we parsed a cast-expression, it's really a type-id, otherwise it's
2491 // an expression.
2492 ParseAs = NotCastExpr ? SimpleExpr : CastExpr;
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00002493 }
2494
Mike Stump1eb44332009-09-09 15:08:12 +00002495 // The current token should go after the cached tokens.
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00002496 Toks.push_back(Tok);
2497 // Re-enter the stored parenthesized tokens into the token stream, so we may
2498 // parse them now.
2499 PP.EnterTokenStream(Toks.data(), Toks.size(),
2500 true/*DisableMacroExpansion*/, false/*OwnsTokens*/);
2501 // Drop the current token and bring the first cached one. It's the same token
2502 // as when we entered this function.
2503 ConsumeAnyToken();
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00002504
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00002505 if (ParseAs >= CompoundLiteral) {
Argyrios Kyrtzidis0a851832011-07-01 22:22:59 +00002506 // Parse the type declarator.
2507 DeclSpec DS(AttrFactory);
2508 ParseSpecifierQualifierList(DS);
2509 Declarator DeclaratorInfo(DS, Declarator::TypeNameContext);
2510 ParseDeclarator(DeclaratorInfo);
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00002511
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00002512 // Match the ')'.
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002513 Tracker.consumeClose();
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00002514
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00002515 if (ParseAs == CompoundLiteral) {
2516 ExprType = CompoundLiteral;
Argyrios Kyrtzidis0a851832011-07-01 22:22:59 +00002517 TypeResult Ty = ParseTypeName();
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002518 return ParseCompoundLiteralExpression(Ty.get(),
2519 Tracker.getOpenLocation(),
2520 Tracker.getCloseLocation());
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00002521 }
Mike Stump1eb44332009-09-09 15:08:12 +00002522
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00002523 // We parsed '(' type-id ')' and the thing after it wasn't a '{'.
2524 assert(ParseAs == CastExpr);
2525
Argyrios Kyrtzidis0a851832011-07-01 22:22:59 +00002526 if (DeclaratorInfo.isInvalidType())
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00002527 return ExprError();
2528
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00002529 // Result is what ParseCastExpression returned earlier.
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00002530 if (!Result.isInvalid())
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002531 Result = Actions.ActOnCastExpr(getCurScope(), Tracker.getOpenLocation(),
2532 DeclaratorInfo, CastTy,
2533 Tracker.getCloseLocation(), Result.take());
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00002534 return move(Result);
2535 }
Mike Stump1eb44332009-09-09 15:08:12 +00002536
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00002537 // Not a compound literal, and not followed by a cast-expression.
2538 assert(ParseAs == SimpleExpr);
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00002539
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00002540 ExprType = SimpleExpr;
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00002541 Result = ParseExpression();
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00002542 if (!Result.isInvalid() && Tok.is(tok::r_paren))
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002543 Result = Actions.ActOnParenExpr(Tracker.getOpenLocation(),
2544 Tok.getLocation(), Result.take());
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00002545
2546 // Match the ')'.
2547 if (Result.isInvalid()) {
2548 SkipUntil(tok::r_paren);
2549 return ExprError();
2550 }
Mike Stump1eb44332009-09-09 15:08:12 +00002551
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002552 Tracker.consumeClose();
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00002553 return move(Result);
2554}