blob: 37d9b5b2b9ab7f5a4dad0d2226e2a13de8951325 [file] [log] [blame]
Reid Spencer5f016e22007-07-11 17:01:13 +00001//===--- ParseExprCXX.cpp - C++ Expression Parsing ------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner0bc735f2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Reid Spencer5f016e22007-07-11 17:01:13 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the Expression parsing implementation for C++.
11//
12//===----------------------------------------------------------------------===//
13
Chris Lattner500d3292009-01-29 05:15:15 +000014#include "clang/Parse/ParseDiagnostic.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000015#include "clang/Parse/Parser.h"
Douglas Gregorbc61bd82011-01-11 00:33:19 +000016#include "RAIIObjectsForParser.h"
Eli Friedmandc3b7232012-01-04 02:40:39 +000017#include "clang/Basic/PrettyStackTrace.h"
John McCall19510852010-08-20 18:27:03 +000018#include "clang/Sema/DeclSpec.h"
Douglas Gregorae7902c2011-08-04 15:30:47 +000019#include "clang/Sema/Scope.h"
John McCall19510852010-08-20 18:27:03 +000020#include "clang/Sema/ParsedTemplate.h"
Douglas Gregor3f9a0562009-11-03 01:35:08 +000021#include "llvm/Support/ErrorHandling.h"
22
Reid Spencer5f016e22007-07-11 17:01:13 +000023using namespace clang;
24
Richard Smithea698b32011-04-14 21:45:45 +000025static int SelectDigraphErrorMessage(tok::TokenKind Kind) {
26 switch (Kind) {
27 case tok::kw_template: return 0;
28 case tok::kw_const_cast: return 1;
29 case tok::kw_dynamic_cast: return 2;
30 case tok::kw_reinterpret_cast: return 3;
31 case tok::kw_static_cast: return 4;
32 default:
David Blaikieb219cfc2011-09-23 05:06:16 +000033 llvm_unreachable("Unknown type for digraph error message.");
Richard Smithea698b32011-04-14 21:45:45 +000034 }
35}
36
37// Are the two tokens adjacent in the same source file?
38static bool AreTokensAdjacent(Preprocessor &PP, Token &First, Token &Second) {
39 SourceManager &SM = PP.getSourceManager();
40 SourceLocation FirstLoc = SM.getSpellingLoc(First.getLocation());
Argyrios Kyrtzidisa64ccef2011-09-19 20:40:19 +000041 SourceLocation FirstEnd = FirstLoc.getLocWithOffset(First.getLength());
Richard Smithea698b32011-04-14 21:45:45 +000042 return FirstEnd == SM.getSpellingLoc(Second.getLocation());
43}
44
45// Suggest fixit for "<::" after a cast.
46static void FixDigraph(Parser &P, Preprocessor &PP, Token &DigraphToken,
47 Token &ColonToken, tok::TokenKind Kind, bool AtDigraph) {
48 // Pull '<:' and ':' off token stream.
49 if (!AtDigraph)
50 PP.Lex(DigraphToken);
51 PP.Lex(ColonToken);
52
53 SourceRange Range;
54 Range.setBegin(DigraphToken.getLocation());
55 Range.setEnd(ColonToken.getLocation());
56 P.Diag(DigraphToken.getLocation(), diag::err_missing_whitespace_digraph)
57 << SelectDigraphErrorMessage(Kind)
58 << FixItHint::CreateReplacement(Range, "< ::");
59
60 // Update token information to reflect their change in token type.
61 ColonToken.setKind(tok::coloncolon);
Argyrios Kyrtzidisa64ccef2011-09-19 20:40:19 +000062 ColonToken.setLocation(ColonToken.getLocation().getLocWithOffset(-1));
Richard Smithea698b32011-04-14 21:45:45 +000063 ColonToken.setLength(2);
64 DigraphToken.setKind(tok::less);
65 DigraphToken.setLength(1);
66
67 // Push new tokens back to token stream.
68 PP.EnterToken(ColonToken);
69 if (!AtDigraph)
70 PP.EnterToken(DigraphToken);
71}
72
Richard Trieu950be712011-09-19 19:01:00 +000073// Check for '<::' which should be '< ::' instead of '[:' when following
74// a template name.
75void Parser::CheckForTemplateAndDigraph(Token &Next, ParsedType ObjectType,
76 bool EnteringContext,
77 IdentifierInfo &II, CXXScopeSpec &SS) {
Richard Trieuc11030e2011-09-20 20:03:50 +000078 if (!Next.is(tok::l_square) || Next.getLength() != 2)
Richard Trieu950be712011-09-19 19:01:00 +000079 return;
80
81 Token SecondToken = GetLookAheadToken(2);
82 if (!SecondToken.is(tok::colon) || !AreTokensAdjacent(PP, Next, SecondToken))
83 return;
84
85 TemplateTy Template;
86 UnqualifiedId TemplateName;
87 TemplateName.setIdentifier(&II, Tok.getLocation());
88 bool MemberOfUnknownSpecialization;
89 if (!Actions.isTemplateName(getCurScope(), SS, /*hasTemplateKeyword=*/false,
90 TemplateName, ObjectType, EnteringContext,
91 Template, MemberOfUnknownSpecialization))
92 return;
93
94 FixDigraph(*this, PP, Next, SecondToken, tok::kw_template,
95 /*AtDigraph*/false);
96}
97
Mike Stump1eb44332009-09-09 15:08:12 +000098/// \brief Parse global scope or nested-name-specifier if present.
Douglas Gregor2dd078a2009-09-02 22:59:36 +000099///
100/// Parses a C++ global scope specifier ('::') or nested-name-specifier (which
Mike Stump1eb44332009-09-09 15:08:12 +0000101/// may be preceded by '::'). Note that this routine will not parse ::new or
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000102/// ::delete; it will just leave them in the token stream.
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000103///
104/// '::'[opt] nested-name-specifier
105/// '::'
106///
107/// nested-name-specifier:
108/// type-name '::'
109/// namespace-name '::'
110/// nested-name-specifier identifier '::'
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000111/// nested-name-specifier 'template'[opt] simple-template-id '::'
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000112///
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000113///
Mike Stump1eb44332009-09-09 15:08:12 +0000114/// \param SS the scope specifier that will be set to the parsed
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000115/// nested-name-specifier (or empty)
116///
Mike Stump1eb44332009-09-09 15:08:12 +0000117/// \param ObjectType if this nested-name-specifier is being parsed following
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000118/// the "." or "->" of a member access expression, this parameter provides the
119/// type of the object whose members are being accessed.
120///
121/// \param EnteringContext whether we will be entering into the context of
122/// the nested-name-specifier after parsing it.
123///
Douglas Gregord4dca082010-02-24 18:44:31 +0000124/// \param MayBePseudoDestructor When non-NULL, points to a flag that
125/// indicates whether this nested-name-specifier may be part of a
126/// pseudo-destructor name. In this case, the flag will be set false
127/// if we don't actually end up parsing a destructor name. Moreorover,
128/// if we do end up determining that we are parsing a destructor name,
129/// the last component of the nested-name-specifier is not parsed as
130/// part of the scope specifier.
131
Douglas Gregorb10cd042010-02-21 18:36:56 +0000132/// member access expression, e.g., the \p T:: in \p p->T::m.
133///
John McCall9ba61662010-02-26 08:45:28 +0000134/// \returns true if there was an error parsing a scope specifier
Douglas Gregor495c35d2009-08-25 22:51:20 +0000135bool Parser::ParseOptionalCXXScopeSpecifier(CXXScopeSpec &SS,
John McCallb3d87482010-08-24 05:47:05 +0000136 ParsedType ObjectType,
Douglas Gregorb10cd042010-02-21 18:36:56 +0000137 bool EnteringContext,
Francois Pichet4147d302011-03-27 19:41:34 +0000138 bool *MayBePseudoDestructor,
139 bool IsTypename) {
Argyrios Kyrtzidis4bdd91c2008-11-26 21:41:52 +0000140 assert(getLang().CPlusPlus &&
Chris Lattner7452c6f2009-01-05 01:24:05 +0000141 "Call sites of this function should be guarded by checking for C++");
Mike Stump1eb44332009-09-09 15:08:12 +0000142
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000143 if (Tok.is(tok::annot_cxxscope)) {
Douglas Gregorc34348a2011-02-24 17:54:50 +0000144 Actions.RestoreNestedNameSpecifierAnnotation(Tok.getAnnotationValue(),
145 Tok.getAnnotationRange(),
146 SS);
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000147 ConsumeToken();
John McCall9ba61662010-02-26 08:45:28 +0000148 return false;
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000149 }
Chris Lattnere607e802009-01-04 21:14:15 +0000150
Douglas Gregor39a8de12009-02-25 19:37:18 +0000151 bool HasScopeSpecifier = false;
152
Chris Lattner5b454732009-01-05 03:55:46 +0000153 if (Tok.is(tok::coloncolon)) {
154 // ::new and ::delete aren't nested-name-specifiers.
155 tok::TokenKind NextKind = NextToken().getKind();
156 if (NextKind == tok::kw_new || NextKind == tok::kw_delete)
157 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000158
Chris Lattner55a7cef2009-01-05 00:13:00 +0000159 // '::' - Global scope qualifier.
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000160 if (Actions.ActOnCXXGlobalScopeSpecifier(getCurScope(), ConsumeToken(), SS))
161 return true;
162
Douglas Gregor39a8de12009-02-25 19:37:18 +0000163 HasScopeSpecifier = true;
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000164 }
165
Douglas Gregord4dca082010-02-24 18:44:31 +0000166 bool CheckForDestructor = false;
167 if (MayBePseudoDestructor && *MayBePseudoDestructor) {
168 CheckForDestructor = true;
169 *MayBePseudoDestructor = false;
170 }
171
David Blaikie42d6d0c2011-12-04 05:04:18 +0000172 if (Tok.is(tok::kw_decltype) || Tok.is(tok::annot_decltype)) {
173 DeclSpec DS(AttrFactory);
174 SourceLocation DeclLoc = Tok.getLocation();
175 SourceLocation EndLoc = ParseDecltypeSpecifier(DS);
176 if (Tok.isNot(tok::coloncolon)) {
177 AnnotateExistingDecltypeSpecifier(DS, DeclLoc, EndLoc);
178 return false;
179 }
180
181 SourceLocation CCLoc = ConsumeToken();
182 if (Actions.ActOnCXXNestedNameSpecifierDecltype(SS, DS, CCLoc))
183 SS.SetInvalid(SourceRange(DeclLoc, CCLoc));
184
185 HasScopeSpecifier = true;
186 }
187
Douglas Gregor39a8de12009-02-25 19:37:18 +0000188 while (true) {
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000189 if (HasScopeSpecifier) {
190 // C++ [basic.lookup.classref]p5:
191 // If the qualified-id has the form
Douglas Gregor3b6afbb2009-09-09 00:23:06 +0000192 //
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000193 // ::class-name-or-namespace-name::...
Douglas Gregor3b6afbb2009-09-09 00:23:06 +0000194 //
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000195 // the class-name-or-namespace-name is looked up in global scope as a
196 // class-name or namespace-name.
197 //
198 // To implement this, we clear out the object type as soon as we've
199 // seen a leading '::' or part of a nested-name-specifier.
John McCallb3d87482010-08-24 05:47:05 +0000200 ObjectType = ParsedType();
Douglas Gregor81b747b2009-09-17 21:32:03 +0000201
202 if (Tok.is(tok::code_completion)) {
203 // Code completion for a nested-name-specifier, where the code
204 // code completion token follows the '::'.
Douglas Gregor23c94db2010-07-02 17:43:08 +0000205 Actions.CodeCompleteQualifiedId(getCurScope(), SS, EnteringContext);
Argyrios Kyrtzidisb6b2b182011-04-23 01:04:12 +0000206 // Include code completion token into the range of the scope otherwise
207 // when we try to annotate the scope tokens the dangling code completion
208 // token will cause assertion in
209 // Preprocessor::AnnotatePreviousCachedTokens.
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +0000210 SS.setEndLoc(Tok.getLocation());
211 cutOffParsing();
212 return true;
Douglas Gregor81b747b2009-09-17 21:32:03 +0000213 }
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000214 }
Mike Stump1eb44332009-09-09 15:08:12 +0000215
Douglas Gregor39a8de12009-02-25 19:37:18 +0000216 // nested-name-specifier:
Chris Lattner77cf72a2009-06-26 03:47:46 +0000217 // nested-name-specifier 'template'[opt] simple-template-id '::'
218
219 // Parse the optional 'template' keyword, then make sure we have
220 // 'identifier <' after it.
221 if (Tok.is(tok::kw_template)) {
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000222 // If we don't have a scope specifier or an object type, this isn't a
Eli Friedmaneab975d2009-08-29 04:08:08 +0000223 // nested-name-specifier, since they aren't allowed to start with
224 // 'template'.
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000225 if (!HasScopeSpecifier && !ObjectType)
Eli Friedmaneab975d2009-08-29 04:08:08 +0000226 break;
227
Douglas Gregor7bb87fc2009-11-11 16:39:34 +0000228 TentativeParsingAction TPA(*this);
Chris Lattner77cf72a2009-06-26 03:47:46 +0000229 SourceLocation TemplateKWLoc = ConsumeToken();
Douglas Gregorca1bdd72009-11-04 00:56:37 +0000230
231 UnqualifiedId TemplateName;
232 if (Tok.is(tok::identifier)) {
Douglas Gregorca1bdd72009-11-04 00:56:37 +0000233 // Consume the identifier.
Douglas Gregor7bb87fc2009-11-11 16:39:34 +0000234 TemplateName.setIdentifier(Tok.getIdentifierInfo(), Tok.getLocation());
Douglas Gregorca1bdd72009-11-04 00:56:37 +0000235 ConsumeToken();
236 } else if (Tok.is(tok::kw_operator)) {
237 if (ParseUnqualifiedIdOperator(SS, EnteringContext, ObjectType,
Douglas Gregor7bb87fc2009-11-11 16:39:34 +0000238 TemplateName)) {
239 TPA.Commit();
Douglas Gregorca1bdd72009-11-04 00:56:37 +0000240 break;
Douglas Gregor7bb87fc2009-11-11 16:39:34 +0000241 }
Douglas Gregorca1bdd72009-11-04 00:56:37 +0000242
Sean Hunte6252d12009-11-28 08:58:14 +0000243 if (TemplateName.getKind() != UnqualifiedId::IK_OperatorFunctionId &&
244 TemplateName.getKind() != UnqualifiedId::IK_LiteralOperatorId) {
Douglas Gregorca1bdd72009-11-04 00:56:37 +0000245 Diag(TemplateName.getSourceRange().getBegin(),
246 diag::err_id_after_template_in_nested_name_spec)
247 << TemplateName.getSourceRange();
Douglas Gregor7bb87fc2009-11-11 16:39:34 +0000248 TPA.Commit();
Douglas Gregorca1bdd72009-11-04 00:56:37 +0000249 break;
250 }
251 } else {
Douglas Gregor7bb87fc2009-11-11 16:39:34 +0000252 TPA.Revert();
Chris Lattner77cf72a2009-06-26 03:47:46 +0000253 break;
254 }
Mike Stump1eb44332009-09-09 15:08:12 +0000255
Douglas Gregor7bb87fc2009-11-11 16:39:34 +0000256 // If the next token is not '<', we have a qualified-id that refers
257 // to a template name, such as T::template apply, but is not a
258 // template-id.
259 if (Tok.isNot(tok::less)) {
260 TPA.Revert();
261 break;
262 }
263
264 // Commit to parsing the template-id.
265 TPA.Commit();
Douglas Gregord6ab2322010-06-16 23:00:59 +0000266 TemplateTy Template;
Douglas Gregor23c94db2010-07-02 17:43:08 +0000267 if (TemplateNameKind TNK = Actions.ActOnDependentTemplateName(getCurScope(),
Douglas Gregord6ab2322010-06-16 23:00:59 +0000268 TemplateKWLoc,
269 SS,
270 TemplateName,
271 ObjectType,
272 EnteringContext,
273 Template)) {
Douglas Gregor059101f2011-03-02 00:47:37 +0000274 if (AnnotateTemplateIdToken(Template, TNK, SS, TemplateName,
Douglas Gregord6ab2322010-06-16 23:00:59 +0000275 TemplateKWLoc, false))
276 return true;
277 } else
John McCall9ba61662010-02-26 08:45:28 +0000278 return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000279
Chris Lattner77cf72a2009-06-26 03:47:46 +0000280 continue;
281 }
Mike Stump1eb44332009-09-09 15:08:12 +0000282
Douglas Gregor39a8de12009-02-25 19:37:18 +0000283 if (Tok.is(tok::annot_template_id) && NextToken().is(tok::coloncolon)) {
Mike Stump1eb44332009-09-09 15:08:12 +0000284 // We have
Douglas Gregor39a8de12009-02-25 19:37:18 +0000285 //
286 // simple-template-id '::'
287 //
288 // So we need to check whether the simple-template-id is of the
Douglas Gregorc45c2322009-03-31 00:43:58 +0000289 // right kind (it should name a type or be dependent), and then
290 // convert it into a type within the nested-name-specifier.
Argyrios Kyrtzidis25a76762011-06-22 06:09:49 +0000291 TemplateIdAnnotation *TemplateId = takeTemplateIdAnnotation(Tok);
Douglas Gregord4dca082010-02-24 18:44:31 +0000292 if (CheckForDestructor && GetLookAheadToken(2).is(tok::tilde)) {
293 *MayBePseudoDestructor = true;
John McCall9ba61662010-02-26 08:45:28 +0000294 return false;
Douglas Gregord4dca082010-02-24 18:44:31 +0000295 }
296
Douglas Gregor6cd9d4a2011-03-04 21:37:14 +0000297 // Consume the template-id token.
298 ConsumeToken();
299
300 assert(Tok.is(tok::coloncolon) && "NextToken() not working properly!");
301 SourceLocation CCLoc = ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +0000302
David Blaikie6796fc12011-11-07 03:30:03 +0000303 HasScopeSpecifier = true;
Douglas Gregor6cd9d4a2011-03-04 21:37:14 +0000304
305 ASTTemplateArgsPtr TemplateArgsPtr(Actions,
306 TemplateId->getTemplateArgs(),
307 TemplateId->NumArgs);
308
309 if (Actions.ActOnCXXNestedNameSpecifier(getCurScope(),
310 /*FIXME:*/SourceLocation(),
311 SS,
312 TemplateId->Template,
313 TemplateId->TemplateNameLoc,
314 TemplateId->LAngleLoc,
315 TemplateArgsPtr,
316 TemplateId->RAngleLoc,
317 CCLoc,
318 EnteringContext)) {
319 SourceLocation StartLoc
320 = SS.getBeginLoc().isValid()? SS.getBeginLoc()
321 : TemplateId->TemplateNameLoc;
322 SS.SetInvalid(SourceRange(StartLoc, CCLoc));
Chris Lattner67b9e832009-06-26 03:45:46 +0000323 }
Argyrios Kyrtzidiseccce7e2011-05-03 18:45:38 +0000324
Douglas Gregor6cd9d4a2011-03-04 21:37:14 +0000325 continue;
Douglas Gregor39a8de12009-02-25 19:37:18 +0000326 }
327
Chris Lattner5c7f7862009-06-26 03:52:38 +0000328
329 // The rest of the nested-name-specifier possibilities start with
330 // tok::identifier.
331 if (Tok.isNot(tok::identifier))
332 break;
333
334 IdentifierInfo &II = *Tok.getIdentifierInfo();
335
336 // nested-name-specifier:
337 // type-name '::'
338 // namespace-name '::'
339 // nested-name-specifier identifier '::'
340 Token Next = NextToken();
Chris Lattner46646492009-12-07 01:36:53 +0000341
342 // If we get foo:bar, this is almost certainly a typo for foo::bar. Recover
343 // and emit a fixit hint for it.
Douglas Gregorb10cd042010-02-21 18:36:56 +0000344 if (Next.is(tok::colon) && !ColonIsSacred) {
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000345 if (Actions.IsInvalidUnlessNestedName(getCurScope(), SS, II,
346 Tok.getLocation(),
347 Next.getLocation(), ObjectType,
Douglas Gregorb10cd042010-02-21 18:36:56 +0000348 EnteringContext) &&
349 // If the token after the colon isn't an identifier, it's still an
350 // error, but they probably meant something else strange so don't
351 // recover like this.
352 PP.LookAhead(1).is(tok::identifier)) {
353 Diag(Next, diag::err_unexected_colon_in_nested_name_spec)
Douglas Gregor849b2432010-03-31 17:46:05 +0000354 << FixItHint::CreateReplacement(Next.getLocation(), "::");
Douglas Gregorb10cd042010-02-21 18:36:56 +0000355
356 // Recover as if the user wrote '::'.
357 Next.setKind(tok::coloncolon);
358 }
Chris Lattner46646492009-12-07 01:36:53 +0000359 }
360
Chris Lattner5c7f7862009-06-26 03:52:38 +0000361 if (Next.is(tok::coloncolon)) {
Douglas Gregor77549082010-02-24 21:29:12 +0000362 if (CheckForDestructor && GetLookAheadToken(2).is(tok::tilde) &&
Douglas Gregor23c94db2010-07-02 17:43:08 +0000363 !Actions.isNonTypeNestedNameSpecifier(getCurScope(), SS, Tok.getLocation(),
Douglas Gregor77549082010-02-24 21:29:12 +0000364 II, ObjectType)) {
Douglas Gregord4dca082010-02-24 18:44:31 +0000365 *MayBePseudoDestructor = true;
John McCall9ba61662010-02-26 08:45:28 +0000366 return false;
Douglas Gregord4dca082010-02-24 18:44:31 +0000367 }
368
Chris Lattner5c7f7862009-06-26 03:52:38 +0000369 // We have an identifier followed by a '::'. Lookup this name
370 // as the name in a nested-name-specifier.
371 SourceLocation IdLoc = ConsumeToken();
Chris Lattner46646492009-12-07 01:36:53 +0000372 assert((Tok.is(tok::coloncolon) || Tok.is(tok::colon)) &&
373 "NextToken() not working properly!");
Chris Lattner5c7f7862009-06-26 03:52:38 +0000374 SourceLocation CCLoc = ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +0000375
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000376 HasScopeSpecifier = true;
377 if (Actions.ActOnCXXNestedNameSpecifier(getCurScope(), II, IdLoc, CCLoc,
378 ObjectType, EnteringContext, SS))
379 SS.SetInvalid(SourceRange(IdLoc, CCLoc));
380
Chris Lattner5c7f7862009-06-26 03:52:38 +0000381 continue;
382 }
Mike Stump1eb44332009-09-09 15:08:12 +0000383
Richard Trieu950be712011-09-19 19:01:00 +0000384 CheckForTemplateAndDigraph(Next, ObjectType, EnteringContext, II, SS);
Richard Smithea698b32011-04-14 21:45:45 +0000385
Chris Lattner5c7f7862009-06-26 03:52:38 +0000386 // nested-name-specifier:
387 // type-name '<'
388 if (Next.is(tok::less)) {
389 TemplateTy Template;
Douglas Gregor014e88d2009-11-03 23:16:33 +0000390 UnqualifiedId TemplateName;
391 TemplateName.setIdentifier(&II, Tok.getLocation());
Douglas Gregor1fd6d442010-05-21 23:18:07 +0000392 bool MemberOfUnknownSpecialization;
Douglas Gregor23c94db2010-07-02 17:43:08 +0000393 if (TemplateNameKind TNK = Actions.isTemplateName(getCurScope(), SS,
Abramo Bagnara7c153532010-08-06 12:11:11 +0000394 /*hasTemplateKeyword=*/false,
Douglas Gregor014e88d2009-11-03 23:16:33 +0000395 TemplateName,
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000396 ObjectType,
Douglas Gregor495c35d2009-08-25 22:51:20 +0000397 EnteringContext,
Douglas Gregor1fd6d442010-05-21 23:18:07 +0000398 Template,
399 MemberOfUnknownSpecialization)) {
David Blaikie6796fc12011-11-07 03:30:03 +0000400 // We have found a template name, so annotate this token
Chris Lattner5c7f7862009-06-26 03:52:38 +0000401 // with a template-id annotation. We do not permit the
402 // template-id to be translated into a type annotation,
403 // because some clients (e.g., the parsing of class template
404 // specializations) still want to see the original template-id
405 // token.
Douglas Gregorca1bdd72009-11-04 00:56:37 +0000406 ConsumeToken();
Douglas Gregor059101f2011-03-02 00:47:37 +0000407 if (AnnotateTemplateIdToken(Template, TNK, SS, TemplateName,
Douglas Gregorca1bdd72009-11-04 00:56:37 +0000408 SourceLocation(), false))
John McCall9ba61662010-02-26 08:45:28 +0000409 return true;
Chris Lattner5c7f7862009-06-26 03:52:38 +0000410 continue;
Douglas Gregord5ab9b02010-05-21 23:43:39 +0000411 }
412
413 if (MemberOfUnknownSpecialization && (ObjectType || SS.isSet()) &&
Francois Pichet4147d302011-03-27 19:41:34 +0000414 (IsTypename || IsTemplateArgumentList(1))) {
Douglas Gregord5ab9b02010-05-21 23:43:39 +0000415 // We have something like t::getAs<T>, where getAs is a
416 // member of an unknown specialization. However, this will only
417 // parse correctly as a template, so suggest the keyword 'template'
418 // before 'getAs' and treat this as a dependent template name.
Francois Pichet4147d302011-03-27 19:41:34 +0000419 unsigned DiagID = diag::err_missing_dependent_template_keyword;
Francois Pichet62ec1f22011-09-17 17:15:52 +0000420 if (getLang().MicrosoftExt)
Francois Pichetcf320c62011-04-22 08:25:24 +0000421 DiagID = diag::warn_missing_dependent_template_keyword;
Francois Pichet4147d302011-03-27 19:41:34 +0000422
423 Diag(Tok.getLocation(), DiagID)
Douglas Gregord5ab9b02010-05-21 23:43:39 +0000424 << II.getName()
425 << FixItHint::CreateInsertion(Tok.getLocation(), "template ");
426
Douglas Gregord6ab2322010-06-16 23:00:59 +0000427 if (TemplateNameKind TNK
Douglas Gregor23c94db2010-07-02 17:43:08 +0000428 = Actions.ActOnDependentTemplateName(getCurScope(),
Douglas Gregord6ab2322010-06-16 23:00:59 +0000429 Tok.getLocation(), SS,
430 TemplateName, ObjectType,
431 EnteringContext, Template)) {
432 // Consume the identifier.
433 ConsumeToken();
Douglas Gregor059101f2011-03-02 00:47:37 +0000434 if (AnnotateTemplateIdToken(Template, TNK, SS, TemplateName,
Douglas Gregord6ab2322010-06-16 23:00:59 +0000435 SourceLocation(), false))
436 return true;
437 }
438 else
Douglas Gregord5ab9b02010-05-21 23:43:39 +0000439 return true;
Douglas Gregord6ab2322010-06-16 23:00:59 +0000440
Douglas Gregord5ab9b02010-05-21 23:43:39 +0000441 continue;
Chris Lattner5c7f7862009-06-26 03:52:38 +0000442 }
443 }
444
Douglas Gregor39a8de12009-02-25 19:37:18 +0000445 // We don't have any tokens that form the beginning of a
446 // nested-name-specifier, so we're done.
447 break;
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000448 }
Mike Stump1eb44332009-09-09 15:08:12 +0000449
Douglas Gregord4dca082010-02-24 18:44:31 +0000450 // Even if we didn't see any pieces of a nested-name-specifier, we
451 // still check whether there is a tilde in this position, which
452 // indicates a potential pseudo-destructor.
453 if (CheckForDestructor && Tok.is(tok::tilde))
454 *MayBePseudoDestructor = true;
455
John McCall9ba61662010-02-26 08:45:28 +0000456 return false;
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000457}
458
459/// ParseCXXIdExpression - Handle id-expression.
460///
461/// id-expression:
462/// unqualified-id
463/// qualified-id
464///
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000465/// qualified-id:
466/// '::'[opt] nested-name-specifier 'template'[opt] unqualified-id
467/// '::' identifier
468/// '::' operator-function-id
Douglas Gregoredce4dd2009-06-30 22:34:41 +0000469/// '::' template-id
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000470///
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000471/// NOTE: The standard specifies that, for qualified-id, the parser does not
472/// expect:
473///
474/// '::' conversion-function-id
475/// '::' '~' class-name
476///
477/// This may cause a slight inconsistency on diagnostics:
478///
479/// class C {};
480/// namespace A {}
481/// void f() {
482/// :: A :: ~ C(); // Some Sema error about using destructor with a
483/// // namespace.
484/// :: ~ C(); // Some Parser error like 'unexpected ~'.
485/// }
486///
487/// We simplify the parser a bit and make it work like:
488///
489/// qualified-id:
490/// '::'[opt] nested-name-specifier 'template'[opt] unqualified-id
491/// '::' unqualified-id
492///
493/// That way Sema can handle and report similar errors for namespaces and the
494/// global scope.
495///
Sebastian Redlebc07d52009-02-03 20:19:35 +0000496/// The isAddressOfOperand parameter indicates that this id-expression is a
497/// direct operand of the address-of operator. This is, besides member contexts,
498/// the only place where a qualified-id naming a non-static class member may
499/// appear.
500///
John McCall60d7b3a2010-08-24 06:29:42 +0000501ExprResult Parser::ParseCXXIdExpression(bool isAddressOfOperand) {
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000502 // qualified-id:
503 // '::'[opt] nested-name-specifier 'template'[opt] unqualified-id
504 // '::' unqualified-id
505 //
506 CXXScopeSpec SS;
Douglas Gregorefaa93a2011-11-07 17:33:42 +0000507 ParseOptionalCXXScopeSpecifier(SS, ParsedType(), /*EnteringContext=*/false);
Douglas Gregor02a24ee2009-11-03 16:56:39 +0000508
509 UnqualifiedId Name;
510 if (ParseUnqualifiedId(SS,
511 /*EnteringContext=*/false,
512 /*AllowDestructorName=*/false,
513 /*AllowConstructorName=*/false,
John McCallb3d87482010-08-24 05:47:05 +0000514 /*ObjectType=*/ ParsedType(),
Douglas Gregor02a24ee2009-11-03 16:56:39 +0000515 Name))
516 return ExprError();
John McCallb681b612009-11-22 02:49:43 +0000517
518 // This is only the direct operand of an & operator if it is not
519 // followed by a postfix-expression suffix.
John McCall9c72c602010-08-27 09:08:28 +0000520 if (isAddressOfOperand && isPostfixExpressionSuffixStart())
521 isAddressOfOperand = false;
Douglas Gregor02a24ee2009-11-03 16:56:39 +0000522
Douglas Gregor23c94db2010-07-02 17:43:08 +0000523 return Actions.ActOnIdExpression(getCurScope(), SS, Name, Tok.is(tok::l_paren),
Douglas Gregor02a24ee2009-11-03 16:56:39 +0000524 isAddressOfOperand);
525
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000526}
527
Douglas Gregorae7902c2011-08-04 15:30:47 +0000528/// ParseLambdaExpression - Parse a C++0x lambda expression.
529///
530/// lambda-expression:
531/// lambda-introducer lambda-declarator[opt] compound-statement
532///
533/// lambda-introducer:
534/// '[' lambda-capture[opt] ']'
535///
536/// lambda-capture:
537/// capture-default
538/// capture-list
539/// capture-default ',' capture-list
540///
541/// capture-default:
542/// '&'
543/// '='
544///
545/// capture-list:
546/// capture
547/// capture-list ',' capture
548///
549/// capture:
550/// identifier
551/// '&' identifier
552/// 'this'
553///
554/// lambda-declarator:
555/// '(' parameter-declaration-clause ')' attribute-specifier[opt]
556/// 'mutable'[opt] exception-specification[opt]
557/// trailing-return-type[opt]
558///
559ExprResult Parser::ParseLambdaExpression() {
560 // Parse lambda-introducer.
561 LambdaIntroducer Intro;
562
563 llvm::Optional<unsigned> DiagID(ParseLambdaIntroducer(Intro));
564 if (DiagID) {
565 Diag(Tok, DiagID.getValue());
566 SkipUntil(tok::r_square);
Eli Friedmandc3b7232012-01-04 02:40:39 +0000567 SkipUntil(tok::l_brace);
568 SkipUntil(tok::r_brace);
569 return ExprError();
Douglas Gregorae7902c2011-08-04 15:30:47 +0000570 }
571
572 return ParseLambdaExpressionAfterIntroducer(Intro);
573}
574
575/// TryParseLambdaExpression - Use lookahead and potentially tentative
576/// parsing to determine if we are looking at a C++0x lambda expression, and parse
577/// it if we are.
578///
579/// If we are not looking at a lambda expression, returns ExprError().
580ExprResult Parser::TryParseLambdaExpression() {
581 assert(getLang().CPlusPlus0x
582 && Tok.is(tok::l_square)
583 && "Not at the start of a possible lambda expression.");
584
585 const Token Next = NextToken(), After = GetLookAheadToken(2);
586
587 // If lookahead indicates this is a lambda...
588 if (Next.is(tok::r_square) || // []
589 Next.is(tok::equal) || // [=
590 (Next.is(tok::amp) && // [&] or [&,
591 (After.is(tok::r_square) ||
592 After.is(tok::comma))) ||
593 (Next.is(tok::identifier) && // [identifier]
594 After.is(tok::r_square))) {
595 return ParseLambdaExpression();
596 }
597
Eli Friedmandc3b7232012-01-04 02:40:39 +0000598 // If lookahead indicates an ObjC message send...
599 // [identifier identifier
Douglas Gregorae7902c2011-08-04 15:30:47 +0000600 if (Next.is(tok::identifier) && After.is(tok::identifier)) {
Eli Friedmandc3b7232012-01-04 02:40:39 +0000601 return ExprEmpty();
Douglas Gregorae7902c2011-08-04 15:30:47 +0000602 }
603
Eli Friedmandc3b7232012-01-04 02:40:39 +0000604 // Here, we're stuck: lambda introducers and Objective-C message sends are
605 // unambiguous, but it requires arbitrary lookhead. [a,b,c,d,e,f,g] is a
606 // lambda, and [a,b,c,d,e,f,g h] is a Objective-C message send. Instead of
607 // writing two routines to parse a lambda introducer, just try to parse
608 // a lambda introducer first, and fall back if that fails.
609 // (TryParseLambdaIntroducer never produces any diagnostic output.)
Douglas Gregorae7902c2011-08-04 15:30:47 +0000610 LambdaIntroducer Intro;
611 if (TryParseLambdaIntroducer(Intro))
Eli Friedmandc3b7232012-01-04 02:40:39 +0000612 return ExprEmpty();
Douglas Gregorae7902c2011-08-04 15:30:47 +0000613 return ParseLambdaExpressionAfterIntroducer(Intro);
614}
615
616/// ParseLambdaExpression - Parse a lambda introducer.
617///
618/// Returns a DiagnosticID if it hit something unexpected.
619llvm::Optional<unsigned> Parser::ParseLambdaIntroducer(LambdaIntroducer &Intro) {
620 typedef llvm::Optional<unsigned> DiagResult;
621
622 assert(Tok.is(tok::l_square) && "Lambda expressions begin with '['.");
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000623 BalancedDelimiterTracker T(*this, tok::l_square);
624 T.consumeOpen();
625
626 Intro.Range.setBegin(T.getOpenLocation());
Douglas Gregorae7902c2011-08-04 15:30:47 +0000627
628 bool first = true;
629
630 // Parse capture-default.
631 if (Tok.is(tok::amp) &&
632 (NextToken().is(tok::comma) || NextToken().is(tok::r_square))) {
633 Intro.Default = LCD_ByRef;
634 ConsumeToken();
635 first = false;
636 } else if (Tok.is(tok::equal)) {
637 Intro.Default = LCD_ByCopy;
638 ConsumeToken();
639 first = false;
640 }
641
642 while (Tok.isNot(tok::r_square)) {
643 if (!first) {
644 if (Tok.isNot(tok::comma))
645 return DiagResult(diag::err_expected_comma_or_rsquare);
646 ConsumeToken();
647 }
648
649 first = false;
650
651 // Parse capture.
652 LambdaCaptureKind Kind = LCK_ByCopy;
653 SourceLocation Loc;
654 IdentifierInfo* Id = 0;
655
656 if (Tok.is(tok::kw_this)) {
657 Kind = LCK_This;
658 Loc = ConsumeToken();
659 } else {
660 if (Tok.is(tok::amp)) {
661 Kind = LCK_ByRef;
662 ConsumeToken();
663 }
664
665 if (Tok.is(tok::identifier)) {
666 Id = Tok.getIdentifierInfo();
667 Loc = ConsumeToken();
668 } else if (Tok.is(tok::kw_this)) {
669 // FIXME: If we want to suggest a fixit here, will need to return more
670 // than just DiagnosticID. Perhaps full DiagnosticBuilder that can be
671 // Clear()ed to prevent emission in case of tentative parsing?
672 return DiagResult(diag::err_this_captured_by_reference);
673 } else {
674 return DiagResult(diag::err_expected_capture);
675 }
676 }
677
678 Intro.addCapture(Kind, Loc, Id);
679 }
680
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000681 T.consumeClose();
682 Intro.Range.setEnd(T.getCloseLocation());
Douglas Gregorae7902c2011-08-04 15:30:47 +0000683
684 return DiagResult();
685}
686
687/// TryParseLambdaExpression - Tentatively parse a lambda introducer.
688///
689/// Returns true if it hit something unexpected.
690bool Parser::TryParseLambdaIntroducer(LambdaIntroducer &Intro) {
691 TentativeParsingAction PA(*this);
692
693 llvm::Optional<unsigned> DiagID(ParseLambdaIntroducer(Intro));
694
695 if (DiagID) {
696 PA.Revert();
697 return true;
698 }
699
700 PA.Commit();
701 return false;
702}
703
704/// ParseLambdaExpressionAfterIntroducer - Parse the rest of a lambda
705/// expression.
706ExprResult Parser::ParseLambdaExpressionAfterIntroducer(
707 LambdaIntroducer &Intro) {
Eli Friedmandc3b7232012-01-04 02:40:39 +0000708 SourceLocation LambdaBeginLoc = Intro.Range.getBegin();
709 Diag(LambdaBeginLoc, diag::warn_cxx98_compat_lambda);
710
711 PrettyStackTraceLoc CrashInfo(PP.getSourceManager(), LambdaBeginLoc,
712 "lambda expression parsing");
713
Douglas Gregorae7902c2011-08-04 15:30:47 +0000714 // Parse lambda-declarator[opt].
715 DeclSpec DS(AttrFactory);
Eli Friedmanf88c4002012-01-04 04:41:38 +0000716 Declarator D(DS, Declarator::LambdaExprContext);
Douglas Gregorae7902c2011-08-04 15:30:47 +0000717
718 if (Tok.is(tok::l_paren)) {
719 ParseScope PrototypeScope(this,
720 Scope::FunctionPrototypeScope |
721 Scope::DeclScope);
722
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000723 SourceLocation DeclLoc, DeclEndLoc;
724 BalancedDelimiterTracker T(*this, tok::l_paren);
725 T.consumeOpen();
726 DeclLoc = T.getOpenLocation();
Douglas Gregorae7902c2011-08-04 15:30:47 +0000727
728 // Parse parameter-declaration-clause.
729 ParsedAttributes Attr(AttrFactory);
730 llvm::SmallVector<DeclaratorChunk::ParamInfo, 16> ParamInfo;
731 SourceLocation EllipsisLoc;
732
733 if (Tok.isNot(tok::r_paren))
734 ParseParameterDeclarationClause(D, Attr, ParamInfo, EllipsisLoc);
735
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000736 T.consumeClose();
737 DeclEndLoc = T.getCloseLocation();
Douglas Gregorae7902c2011-08-04 15:30:47 +0000738
739 // Parse 'mutable'[opt].
740 SourceLocation MutableLoc;
741 if (Tok.is(tok::kw_mutable)) {
742 MutableLoc = ConsumeToken();
743 DeclEndLoc = MutableLoc;
744 }
745
746 // Parse exception-specification[opt].
747 ExceptionSpecificationType ESpecType = EST_None;
748 SourceRange ESpecRange;
749 llvm::SmallVector<ParsedType, 2> DynamicExceptions;
750 llvm::SmallVector<SourceRange, 2> DynamicExceptionRanges;
751 ExprResult NoexceptExpr;
752 ESpecType = MaybeParseExceptionSpecification(ESpecRange,
753 DynamicExceptions,
754 DynamicExceptionRanges,
755 NoexceptExpr);
756
757 if (ESpecType != EST_None)
758 DeclEndLoc = ESpecRange.getEnd();
759
760 // Parse attribute-specifier[opt].
761 MaybeParseCXX0XAttributes(Attr, &DeclEndLoc);
762
763 // Parse trailing-return-type[opt].
764 ParsedType TrailingReturnType;
765 if (Tok.is(tok::arrow)) {
766 SourceRange Range;
767 TrailingReturnType = ParseTrailingReturnType(Range).get();
768 if (Range.getEnd().isValid())
769 DeclEndLoc = Range.getEnd();
770 }
771
772 PrototypeScope.Exit();
773
774 D.AddTypeInfo(DeclaratorChunk::getFunction(/*hasProto=*/true,
775 /*isVariadic=*/EllipsisLoc.isValid(),
776 EllipsisLoc,
777 ParamInfo.data(), ParamInfo.size(),
778 DS.getTypeQualifiers(),
779 /*RefQualifierIsLValueRef=*/true,
780 /*RefQualifierLoc=*/SourceLocation(),
Douglas Gregor43f51032011-10-19 06:04:55 +0000781 /*ConstQualifierLoc=*/SourceLocation(),
782 /*VolatileQualifierLoc=*/SourceLocation(),
Douglas Gregorae7902c2011-08-04 15:30:47 +0000783 MutableLoc,
784 ESpecType, ESpecRange.getBegin(),
785 DynamicExceptions.data(),
786 DynamicExceptionRanges.data(),
787 DynamicExceptions.size(),
788 NoexceptExpr.isUsable() ?
789 NoexceptExpr.get() : 0,
790 DeclLoc, DeclEndLoc, D,
791 TrailingReturnType),
792 Attr, DeclEndLoc);
793 }
794
Eli Friedman906a7e12012-01-06 03:05:34 +0000795 // FIXME: Rename BlockScope -> ClosureScope if we decide to continue using
796 // it.
797 ParseScope BodyScope(this, Scope::BlockScope | Scope::FnScope |
798 Scope::BreakScope | Scope::ContinueScope |
799 Scope::DeclScope);
800
Eli Friedmanec9ea722012-01-05 03:35:19 +0000801 Actions.ActOnStartOfLambdaDefinition(Intro, D, getCurScope());
802
Douglas Gregorae7902c2011-08-04 15:30:47 +0000803 // Parse compound-statement.
Eli Friedmandc3b7232012-01-04 02:40:39 +0000804 if (!Tok.is(tok::l_brace)) {
Douglas Gregorae7902c2011-08-04 15:30:47 +0000805 Diag(Tok, diag::err_expected_lambda_body);
Eli Friedmandc3b7232012-01-04 02:40:39 +0000806 Actions.ActOnLambdaError(LambdaBeginLoc, getCurScope());
807 return ExprError();
Douglas Gregorae7902c2011-08-04 15:30:47 +0000808 }
809
Eli Friedmandc3b7232012-01-04 02:40:39 +0000810 StmtResult Stmt(ParseCompoundStatementBody());
811 BodyScope.Exit();
812
Eli Friedmandeeab902012-01-04 02:46:53 +0000813 if (!Stmt.isInvalid())
814 return Actions.ActOnLambdaExpr(LambdaBeginLoc, Stmt.take(),
815 getCurScope());
Eli Friedmandc3b7232012-01-04 02:40:39 +0000816
Eli Friedmandeeab902012-01-04 02:46:53 +0000817 Actions.ActOnLambdaError(LambdaBeginLoc, getCurScope());
818 return ExprError();
Douglas Gregorae7902c2011-08-04 15:30:47 +0000819}
820
Reid Spencer5f016e22007-07-11 17:01:13 +0000821/// ParseCXXCasts - This handles the various ways to cast expressions to another
822/// type.
823///
824/// postfix-expression: [C++ 5.2p1]
825/// 'dynamic_cast' '<' type-name '>' '(' expression ')'
826/// 'static_cast' '<' type-name '>' '(' expression ')'
827/// 'reinterpret_cast' '<' type-name '>' '(' expression ')'
828/// 'const_cast' '<' type-name '>' '(' expression ')'
829///
John McCall60d7b3a2010-08-24 06:29:42 +0000830ExprResult Parser::ParseCXXCasts() {
Reid Spencer5f016e22007-07-11 17:01:13 +0000831 tok::TokenKind Kind = Tok.getKind();
832 const char *CastName = 0; // For error messages
833
834 switch (Kind) {
David Blaikieeb2d1f12011-09-23 20:26:49 +0000835 default: llvm_unreachable("Unknown C++ cast!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000836 case tok::kw_const_cast: CastName = "const_cast"; break;
837 case tok::kw_dynamic_cast: CastName = "dynamic_cast"; break;
838 case tok::kw_reinterpret_cast: CastName = "reinterpret_cast"; break;
839 case tok::kw_static_cast: CastName = "static_cast"; break;
840 }
841
842 SourceLocation OpLoc = ConsumeToken();
843 SourceLocation LAngleBracketLoc = Tok.getLocation();
844
Richard Smithea698b32011-04-14 21:45:45 +0000845 // Check for "<::" which is parsed as "[:". If found, fix token stream,
846 // diagnose error, suggest fix, and recover parsing.
847 Token Next = NextToken();
848 if (Tok.is(tok::l_square) && Tok.getLength() == 2 && Next.is(tok::colon) &&
849 AreTokensAdjacent(PP, Tok, Next))
850 FixDigraph(*this, PP, Tok, Next, Kind, /*AtDigraph*/true);
851
Reid Spencer5f016e22007-07-11 17:01:13 +0000852 if (ExpectAndConsume(tok::less, diag::err_expected_less_after, CastName))
Sebastian Redl20df9b72008-12-11 22:51:44 +0000853 return ExprError();
Reid Spencer5f016e22007-07-11 17:01:13 +0000854
Argyrios Kyrtzidis31862ba2011-07-01 22:22:50 +0000855 // Parse the common declaration-specifiers piece.
856 DeclSpec DS(AttrFactory);
857 ParseSpecifierQualifierList(DS);
858
859 // Parse the abstract-declarator, if present.
860 Declarator DeclaratorInfo(DS, Declarator::TypeNameContext);
861 ParseDeclarator(DeclaratorInfo);
862
Reid Spencer5f016e22007-07-11 17:01:13 +0000863 SourceLocation RAngleBracketLoc = Tok.getLocation();
864
Chris Lattner1ab3b962008-11-18 07:48:38 +0000865 if (ExpectAndConsume(tok::greater, diag::err_expected_greater))
Sebastian Redl20df9b72008-12-11 22:51:44 +0000866 return ExprError(Diag(LAngleBracketLoc, diag::note_matching) << "<");
Reid Spencer5f016e22007-07-11 17:01:13 +0000867
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000868 SourceLocation LParenLoc, RParenLoc;
869 BalancedDelimiterTracker T(*this, tok::l_paren);
Reid Spencer5f016e22007-07-11 17:01:13 +0000870
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000871 if (T.expectAndConsume(diag::err_expected_lparen_after, CastName))
Argyrios Kyrtzidis21e7ad22009-05-22 10:23:16 +0000872 return ExprError();
Reid Spencer5f016e22007-07-11 17:01:13 +0000873
John McCall60d7b3a2010-08-24 06:29:42 +0000874 ExprResult Result = ParseExpression();
Mike Stump1eb44332009-09-09 15:08:12 +0000875
Argyrios Kyrtzidis21e7ad22009-05-22 10:23:16 +0000876 // Match the ')'.
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000877 T.consumeClose();
Reid Spencer5f016e22007-07-11 17:01:13 +0000878
Argyrios Kyrtzidis31862ba2011-07-01 22:22:50 +0000879 if (!Result.isInvalid() && !DeclaratorInfo.isInvalidType())
Douglas Gregor49badde2008-10-27 19:41:14 +0000880 Result = Actions.ActOnCXXNamedCast(OpLoc, Kind,
Argyrios Kyrtzidis31862ba2011-07-01 22:22:50 +0000881 LAngleBracketLoc, DeclaratorInfo,
Douglas Gregor809070a2009-02-18 17:45:20 +0000882 RAngleBracketLoc,
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000883 T.getOpenLocation(), Result.take(),
884 T.getCloseLocation());
Reid Spencer5f016e22007-07-11 17:01:13 +0000885
Sebastian Redl20df9b72008-12-11 22:51:44 +0000886 return move(Result);
Reid Spencer5f016e22007-07-11 17:01:13 +0000887}
888
Sebastian Redlc42e1182008-11-11 11:37:55 +0000889/// ParseCXXTypeid - This handles the C++ typeid expression.
890///
891/// postfix-expression: [C++ 5.2p1]
892/// 'typeid' '(' expression ')'
893/// 'typeid' '(' type-id ')'
894///
John McCall60d7b3a2010-08-24 06:29:42 +0000895ExprResult Parser::ParseCXXTypeid() {
Sebastian Redlc42e1182008-11-11 11:37:55 +0000896 assert(Tok.is(tok::kw_typeid) && "Not 'typeid'!");
897
898 SourceLocation OpLoc = ConsumeToken();
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000899 SourceLocation LParenLoc, RParenLoc;
900 BalancedDelimiterTracker T(*this, tok::l_paren);
Sebastian Redlc42e1182008-11-11 11:37:55 +0000901
902 // typeid expressions are always parenthesized.
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000903 if (T.expectAndConsume(diag::err_expected_lparen_after, "typeid"))
Sebastian Redl20df9b72008-12-11 22:51:44 +0000904 return ExprError();
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000905 LParenLoc = T.getOpenLocation();
Sebastian Redlc42e1182008-11-11 11:37:55 +0000906
John McCall60d7b3a2010-08-24 06:29:42 +0000907 ExprResult Result;
Sebastian Redlc42e1182008-11-11 11:37:55 +0000908
909 if (isTypeIdInParens()) {
Douglas Gregor809070a2009-02-18 17:45:20 +0000910 TypeResult Ty = ParseTypeName();
Sebastian Redlc42e1182008-11-11 11:37:55 +0000911
912 // Match the ')'.
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000913 T.consumeClose();
914 RParenLoc = T.getCloseLocation();
Douglas Gregor4eb4f0f2010-09-08 23:14:30 +0000915 if (Ty.isInvalid() || RParenLoc.isInvalid())
Sebastian Redl20df9b72008-12-11 22:51:44 +0000916 return ExprError();
Sebastian Redlc42e1182008-11-11 11:37:55 +0000917
918 Result = Actions.ActOnCXXTypeid(OpLoc, LParenLoc, /*isType=*/true,
John McCallb3d87482010-08-24 05:47:05 +0000919 Ty.get().getAsOpaquePtr(), RParenLoc);
Sebastian Redlc42e1182008-11-11 11:37:55 +0000920 } else {
Douglas Gregore0762c92009-06-19 23:52:42 +0000921 // C++0x [expr.typeid]p3:
Mike Stump1eb44332009-09-09 15:08:12 +0000922 // When typeid is applied to an expression other than an lvalue of a
923 // polymorphic class type [...] The expression is an unevaluated
Douglas Gregore0762c92009-06-19 23:52:42 +0000924 // operand (Clause 5).
925 //
Mike Stump1eb44332009-09-09 15:08:12 +0000926 // Note that we can't tell whether the expression is an lvalue of a
Eli Friedmanef331b72012-01-20 01:26:23 +0000927 // polymorphic class type until after we've parsed the expression; we
928 // speculatively assume the subexpression is unevaluated, and fix it up
929 // later.
930 EnterExpressionEvaluationContext Unevaluated(Actions, Sema::Unevaluated);
Sebastian Redlc42e1182008-11-11 11:37:55 +0000931 Result = ParseExpression();
932
933 // Match the ')'.
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000934 if (Result.isInvalid())
Sebastian Redlc42e1182008-11-11 11:37:55 +0000935 SkipUntil(tok::r_paren);
936 else {
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000937 T.consumeClose();
938 RParenLoc = T.getCloseLocation();
Douglas Gregor4eb4f0f2010-09-08 23:14:30 +0000939 if (RParenLoc.isInvalid())
940 return ExprError();
Douglas Gregorfadb53b2011-03-12 01:48:56 +0000941
Sebastian Redlc42e1182008-11-11 11:37:55 +0000942 Result = Actions.ActOnCXXTypeid(OpLoc, LParenLoc, /*isType=*/false,
Sebastian Redleffa8d12008-12-10 00:02:53 +0000943 Result.release(), RParenLoc);
Sebastian Redlc42e1182008-11-11 11:37:55 +0000944 }
945 }
946
Sebastian Redl20df9b72008-12-11 22:51:44 +0000947 return move(Result);
Sebastian Redlc42e1182008-11-11 11:37:55 +0000948}
949
Francois Pichet01b7c302010-09-08 12:20:18 +0000950/// ParseCXXUuidof - This handles the Microsoft C++ __uuidof expression.
951///
952/// '__uuidof' '(' expression ')'
953/// '__uuidof' '(' type-id ')'
954///
955ExprResult Parser::ParseCXXUuidof() {
956 assert(Tok.is(tok::kw___uuidof) && "Not '__uuidof'!");
957
958 SourceLocation OpLoc = ConsumeToken();
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000959 BalancedDelimiterTracker T(*this, tok::l_paren);
Francois Pichet01b7c302010-09-08 12:20:18 +0000960
961 // __uuidof expressions are always parenthesized.
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000962 if (T.expectAndConsume(diag::err_expected_lparen_after, "__uuidof"))
Francois Pichet01b7c302010-09-08 12:20:18 +0000963 return ExprError();
964
965 ExprResult Result;
966
967 if (isTypeIdInParens()) {
968 TypeResult Ty = ParseTypeName();
969
970 // Match the ')'.
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000971 T.consumeClose();
Francois Pichet01b7c302010-09-08 12:20:18 +0000972
973 if (Ty.isInvalid())
974 return ExprError();
975
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000976 Result = Actions.ActOnCXXUuidof(OpLoc, T.getOpenLocation(), /*isType=*/true,
977 Ty.get().getAsOpaquePtr(),
978 T.getCloseLocation());
Francois Pichet01b7c302010-09-08 12:20:18 +0000979 } else {
980 EnterExpressionEvaluationContext Unevaluated(Actions, Sema::Unevaluated);
981 Result = ParseExpression();
982
983 // Match the ')'.
984 if (Result.isInvalid())
985 SkipUntil(tok::r_paren);
986 else {
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000987 T.consumeClose();
Francois Pichet01b7c302010-09-08 12:20:18 +0000988
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000989 Result = Actions.ActOnCXXUuidof(OpLoc, T.getOpenLocation(),
990 /*isType=*/false,
991 Result.release(), T.getCloseLocation());
Francois Pichet01b7c302010-09-08 12:20:18 +0000992 }
993 }
994
995 return move(Result);
996}
997
Douglas Gregord4dca082010-02-24 18:44:31 +0000998/// \brief Parse a C++ pseudo-destructor expression after the base,
999/// . or -> operator, and nested-name-specifier have already been
1000/// parsed.
1001///
1002/// postfix-expression: [C++ 5.2]
1003/// postfix-expression . pseudo-destructor-name
1004/// postfix-expression -> pseudo-destructor-name
1005///
1006/// pseudo-destructor-name:
1007/// ::[opt] nested-name-specifier[opt] type-name :: ~type-name
1008/// ::[opt] nested-name-specifier template simple-template-id ::
1009/// ~type-name
1010/// ::[opt] nested-name-specifier[opt] ~type-name
1011///
John McCall60d7b3a2010-08-24 06:29:42 +00001012ExprResult
Douglas Gregord4dca082010-02-24 18:44:31 +00001013Parser::ParseCXXPseudoDestructor(ExprArg Base, SourceLocation OpLoc,
1014 tok::TokenKind OpKind,
1015 CXXScopeSpec &SS,
John McCallb3d87482010-08-24 05:47:05 +00001016 ParsedType ObjectType) {
Douglas Gregord4dca082010-02-24 18:44:31 +00001017 // We're parsing either a pseudo-destructor-name or a dependent
1018 // member access that has the same form as a
1019 // pseudo-destructor-name. We parse both in the same way and let
1020 // the action model sort them out.
1021 //
1022 // Note that the ::[opt] nested-name-specifier[opt] has already
1023 // been parsed, and if there was a simple-template-id, it has
1024 // been coalesced into a template-id annotation token.
1025 UnqualifiedId FirstTypeName;
1026 SourceLocation CCLoc;
1027 if (Tok.is(tok::identifier)) {
1028 FirstTypeName.setIdentifier(Tok.getIdentifierInfo(), Tok.getLocation());
1029 ConsumeToken();
1030 assert(Tok.is(tok::coloncolon) &&"ParseOptionalCXXScopeSpecifier fail");
1031 CCLoc = ConsumeToken();
1032 } else if (Tok.is(tok::annot_template_id)) {
1033 FirstTypeName.setTemplateId(
1034 (TemplateIdAnnotation *)Tok.getAnnotationValue());
1035 ConsumeToken();
1036 assert(Tok.is(tok::coloncolon) &&"ParseOptionalCXXScopeSpecifier fail");
1037 CCLoc = ConsumeToken();
1038 } else {
1039 FirstTypeName.setIdentifier(0, SourceLocation());
1040 }
1041
1042 // Parse the tilde.
1043 assert(Tok.is(tok::tilde) && "ParseOptionalCXXScopeSpecifier fail");
1044 SourceLocation TildeLoc = ConsumeToken();
David Blaikie91ec7892011-12-16 16:03:09 +00001045
1046 if (Tok.is(tok::kw_decltype) && !FirstTypeName.isValid() && SS.isEmpty()) {
1047 DeclSpec DS(AttrFactory);
Benjamin Kramer85c60db2011-12-18 12:18:02 +00001048 ParseDecltypeSpecifier(DS);
David Blaikie91ec7892011-12-16 16:03:09 +00001049 if (DS.getTypeSpecType() == TST_error)
1050 return ExprError();
1051 return Actions.ActOnPseudoDestructorExpr(getCurScope(), Base, OpLoc,
1052 OpKind, TildeLoc, DS,
1053 Tok.is(tok::l_paren));
1054 }
1055
Douglas Gregord4dca082010-02-24 18:44:31 +00001056 if (!Tok.is(tok::identifier)) {
1057 Diag(Tok, diag::err_destructor_tilde_identifier);
1058 return ExprError();
1059 }
1060
1061 // Parse the second type.
1062 UnqualifiedId SecondTypeName;
1063 IdentifierInfo *Name = Tok.getIdentifierInfo();
1064 SourceLocation NameLoc = ConsumeToken();
1065 SecondTypeName.setIdentifier(Name, NameLoc);
1066
1067 // If there is a '<', the second type name is a template-id. Parse
1068 // it as such.
1069 if (Tok.is(tok::less) &&
1070 ParseUnqualifiedIdTemplateId(SS, Name, NameLoc, false, ObjectType,
Douglas Gregor0278e122010-05-05 05:58:24 +00001071 SecondTypeName, /*AssumeTemplateName=*/true,
1072 /*TemplateKWLoc*/SourceLocation()))
Douglas Gregord4dca082010-02-24 18:44:31 +00001073 return ExprError();
1074
John McCall9ae2f072010-08-23 23:25:46 +00001075 return Actions.ActOnPseudoDestructorExpr(getCurScope(), Base,
1076 OpLoc, OpKind,
Douglas Gregord4dca082010-02-24 18:44:31 +00001077 SS, FirstTypeName, CCLoc,
1078 TildeLoc, SecondTypeName,
1079 Tok.is(tok::l_paren));
1080}
1081
Reid Spencer5f016e22007-07-11 17:01:13 +00001082/// ParseCXXBoolLiteral - This handles the C++ Boolean literals.
1083///
1084/// boolean-literal: [C++ 2.13.5]
1085/// 'true'
1086/// 'false'
John McCall60d7b3a2010-08-24 06:29:42 +00001087ExprResult Parser::ParseCXXBoolLiteral() {
Reid Spencer5f016e22007-07-11 17:01:13 +00001088 tok::TokenKind Kind = Tok.getKind();
Sebastian Redlf53597f2009-03-15 17:47:39 +00001089 return Actions.ActOnCXXBoolLiteral(ConsumeToken(), Kind);
Reid Spencer5f016e22007-07-11 17:01:13 +00001090}
Chris Lattner50dd2892008-02-26 00:51:44 +00001091
1092/// ParseThrowExpression - This handles the C++ throw expression.
1093///
1094/// throw-expression: [C++ 15]
1095/// 'throw' assignment-expression[opt]
John McCall60d7b3a2010-08-24 06:29:42 +00001096ExprResult Parser::ParseThrowExpression() {
Chris Lattner50dd2892008-02-26 00:51:44 +00001097 assert(Tok.is(tok::kw_throw) && "Not throw!");
Chris Lattner50dd2892008-02-26 00:51:44 +00001098 SourceLocation ThrowLoc = ConsumeToken(); // Eat the throw token.
Sebastian Redl20df9b72008-12-11 22:51:44 +00001099
Chris Lattner2a2819a2008-04-06 06:02:23 +00001100 // If the current token isn't the start of an assignment-expression,
1101 // then the expression is not present. This handles things like:
1102 // "C ? throw : (void)42", which is crazy but legal.
1103 switch (Tok.getKind()) { // FIXME: move this predicate somewhere common.
1104 case tok::semi:
1105 case tok::r_paren:
1106 case tok::r_square:
1107 case tok::r_brace:
1108 case tok::colon:
1109 case tok::comma:
Douglas Gregorbca01b42011-07-06 22:04:06 +00001110 return Actions.ActOnCXXThrow(getCurScope(), ThrowLoc, 0);
Chris Lattner50dd2892008-02-26 00:51:44 +00001111
Chris Lattner2a2819a2008-04-06 06:02:23 +00001112 default:
John McCall60d7b3a2010-08-24 06:29:42 +00001113 ExprResult Expr(ParseAssignmentExpression());
Sebastian Redl20df9b72008-12-11 22:51:44 +00001114 if (Expr.isInvalid()) return move(Expr);
Douglas Gregorbca01b42011-07-06 22:04:06 +00001115 return Actions.ActOnCXXThrow(getCurScope(), ThrowLoc, Expr.take());
Chris Lattner2a2819a2008-04-06 06:02:23 +00001116 }
Chris Lattner50dd2892008-02-26 00:51:44 +00001117}
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001118
1119/// ParseCXXThis - This handles the C++ 'this' pointer.
1120///
1121/// C++ 9.3.2: In the body of a non-static member function, the keyword this is
1122/// a non-lvalue expression whose value is the address of the object for which
1123/// the function is called.
John McCall60d7b3a2010-08-24 06:29:42 +00001124ExprResult Parser::ParseCXXThis() {
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001125 assert(Tok.is(tok::kw_this) && "Not 'this'!");
1126 SourceLocation ThisLoc = ConsumeToken();
Sebastian Redlf53597f2009-03-15 17:47:39 +00001127 return Actions.ActOnCXXThis(ThisLoc);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001128}
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +00001129
1130/// ParseCXXTypeConstructExpression - Parse construction of a specified type.
1131/// Can be interpreted either as function-style casting ("int(x)")
1132/// or class type construction ("ClassType(x,y,z)")
1133/// or creation of a value-initialized type ("int()").
Sebastian Redldbef1bb2011-06-05 12:23:16 +00001134/// See [C++ 5.2.3].
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +00001135///
1136/// postfix-expression: [C++ 5.2p1]
Sebastian Redldbef1bb2011-06-05 12:23:16 +00001137/// simple-type-specifier '(' expression-list[opt] ')'
1138/// [C++0x] simple-type-specifier braced-init-list
1139/// typename-specifier '(' expression-list[opt] ')'
1140/// [C++0x] typename-specifier braced-init-list
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +00001141///
John McCall60d7b3a2010-08-24 06:29:42 +00001142ExprResult
Sebastian Redl20df9b72008-12-11 22:51:44 +00001143Parser::ParseCXXTypeConstructExpression(const DeclSpec &DS) {
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +00001144 Declarator DeclaratorInfo(DS, Declarator::TypeNameContext);
John McCallb3d87482010-08-24 05:47:05 +00001145 ParsedType TypeRep = Actions.ActOnTypeName(getCurScope(), DeclaratorInfo).get();
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +00001146
Sebastian Redldbef1bb2011-06-05 12:23:16 +00001147 assert((Tok.is(tok::l_paren) ||
1148 (getLang().CPlusPlus0x && Tok.is(tok::l_brace)))
1149 && "Expected '(' or '{'!");
Douglas Gregorbc61bd82011-01-11 00:33:19 +00001150
Sebastian Redldbef1bb2011-06-05 12:23:16 +00001151 if (Tok.is(tok::l_brace)) {
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +00001152
Sebastian Redldbef1bb2011-06-05 12:23:16 +00001153 // FIXME: Convert to a proper type construct expression.
1154 return ParseBraceInitializer();
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +00001155
Sebastian Redldbef1bb2011-06-05 12:23:16 +00001156 } else {
1157 GreaterThanIsOperatorScope G(GreaterThanIsOperator, true);
1158
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00001159 BalancedDelimiterTracker T(*this, tok::l_paren);
1160 T.consumeOpen();
Sebastian Redldbef1bb2011-06-05 12:23:16 +00001161
1162 ExprVector Exprs(Actions);
1163 CommaLocsTy CommaLocs;
1164
1165 if (Tok.isNot(tok::r_paren)) {
1166 if (ParseExpressionList(Exprs, CommaLocs)) {
1167 SkipUntil(tok::r_paren);
1168 return ExprError();
1169 }
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +00001170 }
Sebastian Redldbef1bb2011-06-05 12:23:16 +00001171
1172 // Match the ')'.
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00001173 T.consumeClose();
Sebastian Redldbef1bb2011-06-05 12:23:16 +00001174
1175 // TypeRep could be null, if it references an invalid typedef.
1176 if (!TypeRep)
1177 return ExprError();
1178
1179 assert((Exprs.size() == 0 || Exprs.size()-1 == CommaLocs.size())&&
1180 "Unexpected number of commas!");
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00001181 return Actions.ActOnCXXTypeConstructExpr(TypeRep, T.getOpenLocation(),
1182 move_arg(Exprs),
1183 T.getCloseLocation());
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +00001184 }
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +00001185}
1186
Douglas Gregor99e9b4d2009-11-25 00:27:52 +00001187/// ParseCXXCondition - if/switch/while condition expression.
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +00001188///
1189/// condition:
1190/// expression
1191/// type-specifier-seq declarator '=' assignment-expression
1192/// [GNU] type-specifier-seq declarator simple-asm-expr[opt] attributes[opt]
1193/// '=' assignment-expression
1194///
Douglas Gregor99e9b4d2009-11-25 00:27:52 +00001195/// \param ExprResult if the condition was parsed as an expression, the
1196/// parsed expression.
1197///
1198/// \param DeclResult if the condition was parsed as a declaration, the
1199/// parsed declaration.
1200///
Douglas Gregor586596f2010-05-06 17:25:47 +00001201/// \param Loc The location of the start of the statement that requires this
1202/// condition, e.g., the "for" in a for loop.
1203///
1204/// \param ConvertToBoolean Whether the condition expression should be
1205/// converted to a boolean value.
1206///
Douglas Gregor99e9b4d2009-11-25 00:27:52 +00001207/// \returns true if there was a parsing, false otherwise.
John McCall60d7b3a2010-08-24 06:29:42 +00001208bool Parser::ParseCXXCondition(ExprResult &ExprOut,
1209 Decl *&DeclOut,
Douglas Gregor586596f2010-05-06 17:25:47 +00001210 SourceLocation Loc,
1211 bool ConvertToBoolean) {
Douglas Gregor01dfea02010-01-10 23:08:15 +00001212 if (Tok.is(tok::code_completion)) {
John McCallf312b1e2010-08-26 23:41:50 +00001213 Actions.CodeCompleteOrdinaryName(getCurScope(), Sema::PCC_Condition);
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00001214 cutOffParsing();
1215 return true;
Douglas Gregor01dfea02010-01-10 23:08:15 +00001216 }
1217
Douglas Gregor99e9b4d2009-11-25 00:27:52 +00001218 if (!isCXXConditionDeclaration()) {
Douglas Gregor586596f2010-05-06 17:25:47 +00001219 // Parse the expression.
John McCall60d7b3a2010-08-24 06:29:42 +00001220 ExprOut = ParseExpression(); // expression
1221 DeclOut = 0;
1222 if (ExprOut.isInvalid())
Douglas Gregor586596f2010-05-06 17:25:47 +00001223 return true;
1224
1225 // If required, convert to a boolean value.
1226 if (ConvertToBoolean)
John McCall60d7b3a2010-08-24 06:29:42 +00001227 ExprOut
1228 = Actions.ActOnBooleanCondition(getCurScope(), Loc, ExprOut.get());
1229 return ExprOut.isInvalid();
Douglas Gregor99e9b4d2009-11-25 00:27:52 +00001230 }
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +00001231
1232 // type-specifier-seq
John McCall0b7e6782011-03-24 11:26:52 +00001233 DeclSpec DS(AttrFactory);
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +00001234 ParseSpecifierQualifierList(DS);
1235
1236 // declarator
1237 Declarator DeclaratorInfo(DS, Declarator::ConditionContext);
1238 ParseDeclarator(DeclaratorInfo);
1239
1240 // simple-asm-expr[opt]
1241 if (Tok.is(tok::kw_asm)) {
Sebastian Redlab197ba2009-02-09 18:23:29 +00001242 SourceLocation Loc;
John McCall60d7b3a2010-08-24 06:29:42 +00001243 ExprResult AsmLabel(ParseSimpleAsm(&Loc));
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001244 if (AsmLabel.isInvalid()) {
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +00001245 SkipUntil(tok::semi);
Douglas Gregor99e9b4d2009-11-25 00:27:52 +00001246 return true;
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +00001247 }
Sebastian Redleffa8d12008-12-10 00:02:53 +00001248 DeclaratorInfo.setAsmLabel(AsmLabel.release());
Sebastian Redlab197ba2009-02-09 18:23:29 +00001249 DeclaratorInfo.SetRangeEnd(Loc);
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +00001250 }
1251
1252 // If attributes are present, parse them.
John McCall7f040a92010-12-24 02:08:15 +00001253 MaybeParseGNUAttributes(DeclaratorInfo);
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +00001254
Douglas Gregor99e9b4d2009-11-25 00:27:52 +00001255 // Type-check the declaration itself.
John McCall60d7b3a2010-08-24 06:29:42 +00001256 DeclResult Dcl = Actions.ActOnCXXConditionDeclaration(getCurScope(),
John McCall7f040a92010-12-24 02:08:15 +00001257 DeclaratorInfo);
John McCall60d7b3a2010-08-24 06:29:42 +00001258 DeclOut = Dcl.get();
1259 ExprOut = ExprError();
Argyrios Kyrtzidisa6eb5f82010-10-08 02:39:23 +00001260
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +00001261 // '=' assignment-expression
Richard Trieud6c7c672012-01-18 22:54:52 +00001262 // If a '==' or '+=' is found, suggest a fixit to '='.
Richard Trieufcaf27e2012-01-19 22:01:51 +00001263 if (isTokenEqualOrEqualTypo()) {
Jeffrey Yasskindec09842011-01-18 02:00:16 +00001264 ConsumeToken();
John McCall60d7b3a2010-08-24 06:29:42 +00001265 ExprResult AssignExpr(ParseAssignmentExpression());
Douglas Gregor99e9b4d2009-11-25 00:27:52 +00001266 if (!AssignExpr.isInvalid())
Richard Smith34b41d92011-02-20 03:19:35 +00001267 Actions.AddInitializerToDecl(DeclOut, AssignExpr.take(), false,
1268 DS.getTypeSpecType() == DeclSpec::TST_auto);
Douglas Gregor99e9b4d2009-11-25 00:27:52 +00001269 } else {
1270 // FIXME: C++0x allows a braced-init-list
1271 Diag(Tok, diag::err_expected_equal_after_declarator);
1272 }
1273
Douglas Gregor586596f2010-05-06 17:25:47 +00001274 // FIXME: Build a reference to this declaration? Convert it to bool?
1275 // (This is currently handled by Sema).
Richard Smith483b9f32011-02-21 20:05:19 +00001276
1277 Actions.FinalizeDeclaration(DeclOut);
Douglas Gregor586596f2010-05-06 17:25:47 +00001278
Douglas Gregor99e9b4d2009-11-25 00:27:52 +00001279 return false;
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +00001280}
1281
Douglas Gregor6aa14d82010-04-21 22:36:40 +00001282/// \brief Determine whether the current token starts a C++
1283/// simple-type-specifier.
1284bool Parser::isCXXSimpleTypeSpecifier() const {
1285 switch (Tok.getKind()) {
1286 case tok::annot_typename:
1287 case tok::kw_short:
1288 case tok::kw_long:
Francois Pichet338d7f72011-04-28 01:59:37 +00001289 case tok::kw___int64:
Douglas Gregor6aa14d82010-04-21 22:36:40 +00001290 case tok::kw_signed:
1291 case tok::kw_unsigned:
1292 case tok::kw_void:
1293 case tok::kw_char:
1294 case tok::kw_int:
Anton Korobeynikovaa4a99b2011-10-14 23:23:15 +00001295 case tok::kw_half:
Douglas Gregor6aa14d82010-04-21 22:36:40 +00001296 case tok::kw_float:
1297 case tok::kw_double:
1298 case tok::kw_wchar_t:
1299 case tok::kw_char16_t:
1300 case tok::kw_char32_t:
1301 case tok::kw_bool:
Douglas Gregord9d75e52011-04-27 05:41:15 +00001302 case tok::kw_decltype:
Douglas Gregor6aa14d82010-04-21 22:36:40 +00001303 case tok::kw_typeof:
Sean Huntdb5d44b2011-05-19 05:37:45 +00001304 case tok::kw___underlying_type:
Douglas Gregor6aa14d82010-04-21 22:36:40 +00001305 return true;
1306
1307 default:
1308 break;
1309 }
1310
1311 return false;
1312}
1313
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +00001314/// ParseCXXSimpleTypeSpecifier - [C++ 7.1.5.2] Simple type specifiers.
1315/// This should only be called when the current token is known to be part of
1316/// simple-type-specifier.
1317///
1318/// simple-type-specifier:
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001319/// '::'[opt] nested-name-specifier[opt] type-name
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +00001320/// '::'[opt] nested-name-specifier 'template' simple-template-id [TODO]
1321/// char
1322/// wchar_t
1323/// bool
1324/// short
1325/// int
1326/// long
1327/// signed
1328/// unsigned
1329/// float
1330/// double
1331/// void
1332/// [GNU] typeof-specifier
1333/// [C++0x] auto [TODO]
1334///
1335/// type-name:
1336/// class-name
1337/// enum-name
1338/// typedef-name
1339///
1340void Parser::ParseCXXSimpleTypeSpecifier(DeclSpec &DS) {
1341 DS.SetRangeStart(Tok.getLocation());
1342 const char *PrevSpec;
John McCallfec54012009-08-03 20:12:06 +00001343 unsigned DiagID;
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +00001344 SourceLocation Loc = Tok.getLocation();
Mike Stump1eb44332009-09-09 15:08:12 +00001345
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +00001346 switch (Tok.getKind()) {
Chris Lattner55a7cef2009-01-05 00:13:00 +00001347 case tok::identifier: // foo::bar
1348 case tok::coloncolon: // ::foo::bar
David Blaikieb219cfc2011-09-23 05:06:16 +00001349 llvm_unreachable("Annotation token should already be formed!");
Mike Stump1eb44332009-09-09 15:08:12 +00001350 default:
David Blaikieb219cfc2011-09-23 05:06:16 +00001351 llvm_unreachable("Not a simple-type-specifier token!");
Chris Lattner55a7cef2009-01-05 00:13:00 +00001352
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +00001353 // type-name
Chris Lattnerb31757b2009-01-06 05:06:21 +00001354 case tok::annot_typename: {
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001355 if (getTypeAnnotation(Tok))
1356 DS.SetTypeSpecType(DeclSpec::TST_typename, Loc, PrevSpec, DiagID,
1357 getTypeAnnotation(Tok));
1358 else
1359 DS.SetTypeSpecError();
Douglas Gregor9bd1d8d2010-10-21 23:17:00 +00001360
1361 DS.SetRangeEnd(Tok.getAnnotationEndLoc());
1362 ConsumeToken();
1363
1364 // Objective-C supports syntax of the form 'id<proto1,proto2>' where 'id'
1365 // is a specific typedef and 'itf<proto1,proto2>' where 'itf' is an
1366 // Objective-C interface. If we don't have Objective-C or a '<', this is
1367 // just a normal reference to a typedef name.
1368 if (Tok.is(tok::less) && getLang().ObjC1)
1369 ParseObjCProtocolQualifiers(DS);
1370
1371 DS.Finish(Diags, PP);
1372 return;
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +00001373 }
Mike Stump1eb44332009-09-09 15:08:12 +00001374
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +00001375 // builtin types
1376 case tok::kw_short:
John McCallfec54012009-08-03 20:12:06 +00001377 DS.SetTypeSpecWidth(DeclSpec::TSW_short, Loc, PrevSpec, DiagID);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +00001378 break;
1379 case tok::kw_long:
John McCallfec54012009-08-03 20:12:06 +00001380 DS.SetTypeSpecWidth(DeclSpec::TSW_long, Loc, PrevSpec, DiagID);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +00001381 break;
Francois Pichet338d7f72011-04-28 01:59:37 +00001382 case tok::kw___int64:
1383 DS.SetTypeSpecWidth(DeclSpec::TSW_longlong, Loc, PrevSpec, DiagID);
1384 break;
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +00001385 case tok::kw_signed:
John McCallfec54012009-08-03 20:12:06 +00001386 DS.SetTypeSpecSign(DeclSpec::TSS_signed, Loc, PrevSpec, DiagID);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +00001387 break;
1388 case tok::kw_unsigned:
John McCallfec54012009-08-03 20:12:06 +00001389 DS.SetTypeSpecSign(DeclSpec::TSS_unsigned, Loc, PrevSpec, DiagID);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +00001390 break;
1391 case tok::kw_void:
John McCallfec54012009-08-03 20:12:06 +00001392 DS.SetTypeSpecType(DeclSpec::TST_void, Loc, PrevSpec, DiagID);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +00001393 break;
1394 case tok::kw_char:
John McCallfec54012009-08-03 20:12:06 +00001395 DS.SetTypeSpecType(DeclSpec::TST_char, Loc, PrevSpec, DiagID);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +00001396 break;
1397 case tok::kw_int:
John McCallfec54012009-08-03 20:12:06 +00001398 DS.SetTypeSpecType(DeclSpec::TST_int, Loc, PrevSpec, DiagID);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +00001399 break;
Anton Korobeynikovaa4a99b2011-10-14 23:23:15 +00001400 case tok::kw_half:
1401 DS.SetTypeSpecType(DeclSpec::TST_half, Loc, PrevSpec, DiagID);
1402 break;
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +00001403 case tok::kw_float:
John McCallfec54012009-08-03 20:12:06 +00001404 DS.SetTypeSpecType(DeclSpec::TST_float, Loc, PrevSpec, DiagID);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +00001405 break;
1406 case tok::kw_double:
John McCallfec54012009-08-03 20:12:06 +00001407 DS.SetTypeSpecType(DeclSpec::TST_double, Loc, PrevSpec, DiagID);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +00001408 break;
1409 case tok::kw_wchar_t:
John McCallfec54012009-08-03 20:12:06 +00001410 DS.SetTypeSpecType(DeclSpec::TST_wchar, Loc, PrevSpec, DiagID);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +00001411 break;
Alisdair Meredithf5c209d2009-07-14 06:30:34 +00001412 case tok::kw_char16_t:
John McCallfec54012009-08-03 20:12:06 +00001413 DS.SetTypeSpecType(DeclSpec::TST_char16, Loc, PrevSpec, DiagID);
Alisdair Meredithf5c209d2009-07-14 06:30:34 +00001414 break;
1415 case tok::kw_char32_t:
John McCallfec54012009-08-03 20:12:06 +00001416 DS.SetTypeSpecType(DeclSpec::TST_char32, Loc, PrevSpec, DiagID);
Alisdair Meredithf5c209d2009-07-14 06:30:34 +00001417 break;
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +00001418 case tok::kw_bool:
John McCallfec54012009-08-03 20:12:06 +00001419 DS.SetTypeSpecType(DeclSpec::TST_bool, Loc, PrevSpec, DiagID);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +00001420 break;
David Blaikie5e089fe2012-01-24 05:47:35 +00001421 case tok::annot_decltype:
1422 case tok::kw_decltype:
1423 DS.SetRangeEnd(ParseDecltypeSpecifier(DS));
1424 return DS.Finish(Diags, PP);
Mike Stump1eb44332009-09-09 15:08:12 +00001425
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +00001426 // GNU typeof support.
1427 case tok::kw_typeof:
1428 ParseTypeofSpecifier(DS);
Douglas Gregor9b3064b2009-04-01 22:41:11 +00001429 DS.Finish(Diags, PP);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +00001430 return;
1431 }
Chris Lattnerb31757b2009-01-06 05:06:21 +00001432 if (Tok.is(tok::annot_typename))
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001433 DS.SetRangeEnd(Tok.getAnnotationEndLoc());
1434 else
1435 DS.SetRangeEnd(Tok.getLocation());
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +00001436 ConsumeToken();
Douglas Gregor9b3064b2009-04-01 22:41:11 +00001437 DS.Finish(Diags, PP);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +00001438}
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00001439
Douglas Gregor2f1bc522008-11-07 20:08:42 +00001440/// ParseCXXTypeSpecifierSeq - Parse a C++ type-specifier-seq (C++
1441/// [dcl.name]), which is a non-empty sequence of type-specifiers,
1442/// e.g., "const short int". Note that the DeclSpec is *not* finished
1443/// by parsing the type-specifier-seq, because these sequences are
1444/// typically followed by some form of declarator. Returns true and
1445/// emits diagnostics if this is not a type-specifier-seq, false
1446/// otherwise.
1447///
1448/// type-specifier-seq: [C++ 8.1]
1449/// type-specifier type-specifier-seq[opt]
1450///
1451bool Parser::ParseCXXTypeSpecifierSeq(DeclSpec &DS) {
1452 DS.SetRangeStart(Tok.getLocation());
1453 const char *PrevSpec = 0;
John McCallfec54012009-08-03 20:12:06 +00001454 unsigned DiagID;
1455 bool isInvalid = 0;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00001456
1457 // Parse one or more of the type specifiers.
Sebastian Redld9bafa72010-02-03 21:21:43 +00001458 if (!ParseOptionalTypeSpecifier(DS, isInvalid, PrevSpec, DiagID,
1459 ParsedTemplateInfo(), /*SuppressDeclarations*/true)) {
Nick Lewycky9fa8e562010-11-03 17:52:57 +00001460 Diag(Tok, diag::err_expected_type);
Douglas Gregor2f1bc522008-11-07 20:08:42 +00001461 return true;
1462 }
Mike Stump1eb44332009-09-09 15:08:12 +00001463
Sebastian Redld9bafa72010-02-03 21:21:43 +00001464 while (ParseOptionalTypeSpecifier(DS, isInvalid, PrevSpec, DiagID,
1465 ParsedTemplateInfo(), /*SuppressDeclarations*/true))
1466 {}
Douglas Gregor2f1bc522008-11-07 20:08:42 +00001467
Douglas Gregor396a9f22010-02-24 23:13:13 +00001468 DS.Finish(Diags, PP);
Douglas Gregor2f1bc522008-11-07 20:08:42 +00001469 return false;
1470}
1471
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001472/// \brief Finish parsing a C++ unqualified-id that is a template-id of
1473/// some form.
1474///
1475/// This routine is invoked when a '<' is encountered after an identifier or
1476/// operator-function-id is parsed by \c ParseUnqualifiedId() to determine
1477/// whether the unqualified-id is actually a template-id. This routine will
1478/// then parse the template arguments and form the appropriate template-id to
1479/// return to the caller.
1480///
1481/// \param SS the nested-name-specifier that precedes this template-id, if
1482/// we're actually parsing a qualified-id.
1483///
1484/// \param Name for constructor and destructor names, this is the actual
1485/// identifier that may be a template-name.
1486///
1487/// \param NameLoc the location of the class-name in a constructor or
1488/// destructor.
1489///
1490/// \param EnteringContext whether we're entering the scope of the
1491/// nested-name-specifier.
1492///
Douglas Gregor46df8cc2009-11-03 21:24:04 +00001493/// \param ObjectType if this unqualified-id occurs within a member access
1494/// expression, the type of the base object whose member is being accessed.
1495///
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001496/// \param Id as input, describes the template-name or operator-function-id
1497/// that precedes the '<'. If template arguments were parsed successfully,
1498/// will be updated with the template-id.
1499///
Douglas Gregord4dca082010-02-24 18:44:31 +00001500/// \param AssumeTemplateId When true, this routine will assume that the name
1501/// refers to a template without performing name lookup to verify.
1502///
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001503/// \returns true if a parse error occurred, false otherwise.
1504bool Parser::ParseUnqualifiedIdTemplateId(CXXScopeSpec &SS,
1505 IdentifierInfo *Name,
1506 SourceLocation NameLoc,
1507 bool EnteringContext,
John McCallb3d87482010-08-24 05:47:05 +00001508 ParsedType ObjectType,
Douglas Gregord4dca082010-02-24 18:44:31 +00001509 UnqualifiedId &Id,
Douglas Gregor0278e122010-05-05 05:58:24 +00001510 bool AssumeTemplateId,
1511 SourceLocation TemplateKWLoc) {
1512 assert((AssumeTemplateId || Tok.is(tok::less)) &&
1513 "Expected '<' to finish parsing a template-id");
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001514
1515 TemplateTy Template;
1516 TemplateNameKind TNK = TNK_Non_template;
1517 switch (Id.getKind()) {
1518 case UnqualifiedId::IK_Identifier:
Douglas Gregor014e88d2009-11-03 23:16:33 +00001519 case UnqualifiedId::IK_OperatorFunctionId:
Sean Hunte6252d12009-11-28 08:58:14 +00001520 case UnqualifiedId::IK_LiteralOperatorId:
Douglas Gregord4dca082010-02-24 18:44:31 +00001521 if (AssumeTemplateId) {
Douglas Gregor23c94db2010-07-02 17:43:08 +00001522 TNK = Actions.ActOnDependentTemplateName(getCurScope(), TemplateKWLoc, SS,
Douglas Gregord6ab2322010-06-16 23:00:59 +00001523 Id, ObjectType, EnteringContext,
1524 Template);
1525 if (TNK == TNK_Non_template)
1526 return true;
Douglas Gregor1fd6d442010-05-21 23:18:07 +00001527 } else {
1528 bool MemberOfUnknownSpecialization;
Abramo Bagnara7c153532010-08-06 12:11:11 +00001529 TNK = Actions.isTemplateName(getCurScope(), SS,
1530 TemplateKWLoc.isValid(), Id,
1531 ObjectType, EnteringContext, Template,
Douglas Gregor1fd6d442010-05-21 23:18:07 +00001532 MemberOfUnknownSpecialization);
1533
1534 if (TNK == TNK_Non_template && MemberOfUnknownSpecialization &&
1535 ObjectType && IsTemplateArgumentList()) {
1536 // We have something like t->getAs<T>(), where getAs is a
1537 // member of an unknown specialization. However, this will only
1538 // parse correctly as a template, so suggest the keyword 'template'
1539 // before 'getAs' and treat this as a dependent template name.
1540 std::string Name;
1541 if (Id.getKind() == UnqualifiedId::IK_Identifier)
1542 Name = Id.Identifier->getName();
1543 else {
1544 Name = "operator ";
1545 if (Id.getKind() == UnqualifiedId::IK_OperatorFunctionId)
1546 Name += getOperatorSpelling(Id.OperatorFunctionId.Operator);
1547 else
1548 Name += Id.Identifier->getName();
1549 }
1550 Diag(Id.StartLocation, diag::err_missing_dependent_template_keyword)
1551 << Name
1552 << FixItHint::CreateInsertion(Id.StartLocation, "template ");
Douglas Gregor23c94db2010-07-02 17:43:08 +00001553 TNK = Actions.ActOnDependentTemplateName(getCurScope(), TemplateKWLoc,
Douglas Gregord6ab2322010-06-16 23:00:59 +00001554 SS, Id, ObjectType,
1555 EnteringContext, Template);
1556 if (TNK == TNK_Non_template)
Douglas Gregor1fd6d442010-05-21 23:18:07 +00001557 return true;
1558 }
1559 }
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001560 break;
1561
Douglas Gregor014e88d2009-11-03 23:16:33 +00001562 case UnqualifiedId::IK_ConstructorName: {
1563 UnqualifiedId TemplateName;
Douglas Gregor1fd6d442010-05-21 23:18:07 +00001564 bool MemberOfUnknownSpecialization;
Douglas Gregor014e88d2009-11-03 23:16:33 +00001565 TemplateName.setIdentifier(Name, NameLoc);
Abramo Bagnara7c153532010-08-06 12:11:11 +00001566 TNK = Actions.isTemplateName(getCurScope(), SS, TemplateKWLoc.isValid(),
1567 TemplateName, ObjectType,
Douglas Gregor1fd6d442010-05-21 23:18:07 +00001568 EnteringContext, Template,
1569 MemberOfUnknownSpecialization);
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001570 break;
1571 }
1572
Douglas Gregor014e88d2009-11-03 23:16:33 +00001573 case UnqualifiedId::IK_DestructorName: {
1574 UnqualifiedId TemplateName;
Douglas Gregor1fd6d442010-05-21 23:18:07 +00001575 bool MemberOfUnknownSpecialization;
Douglas Gregor014e88d2009-11-03 23:16:33 +00001576 TemplateName.setIdentifier(Name, NameLoc);
Douglas Gregor2d1c2142009-11-03 19:44:04 +00001577 if (ObjectType) {
Douglas Gregor23c94db2010-07-02 17:43:08 +00001578 TNK = Actions.ActOnDependentTemplateName(getCurScope(), TemplateKWLoc, SS,
Douglas Gregord6ab2322010-06-16 23:00:59 +00001579 TemplateName, ObjectType,
1580 EnteringContext, Template);
1581 if (TNK == TNK_Non_template)
Douglas Gregor2d1c2142009-11-03 19:44:04 +00001582 return true;
1583 } else {
Abramo Bagnara7c153532010-08-06 12:11:11 +00001584 TNK = Actions.isTemplateName(getCurScope(), SS, TemplateKWLoc.isValid(),
1585 TemplateName, ObjectType,
Douglas Gregor1fd6d442010-05-21 23:18:07 +00001586 EnteringContext, Template,
1587 MemberOfUnknownSpecialization);
Douglas Gregor2d1c2142009-11-03 19:44:04 +00001588
John McCallb3d87482010-08-24 05:47:05 +00001589 if (TNK == TNK_Non_template && !Id.DestructorName.get()) {
Douglas Gregor124b8782010-02-16 19:09:40 +00001590 Diag(NameLoc, diag::err_destructor_template_id)
1591 << Name << SS.getRange();
Douglas Gregor2d1c2142009-11-03 19:44:04 +00001592 return true;
1593 }
1594 }
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001595 break;
Douglas Gregor014e88d2009-11-03 23:16:33 +00001596 }
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001597
1598 default:
1599 return false;
1600 }
1601
1602 if (TNK == TNK_Non_template)
1603 return false;
1604
1605 // Parse the enclosed template argument list.
1606 SourceLocation LAngleLoc, RAngleLoc;
1607 TemplateArgList TemplateArgs;
Douglas Gregor0278e122010-05-05 05:58:24 +00001608 if (Tok.is(tok::less) &&
1609 ParseTemplateIdAfterTemplateName(Template, Id.StartLocation,
Douglas Gregor059101f2011-03-02 00:47:37 +00001610 SS, true, LAngleLoc,
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001611 TemplateArgs,
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001612 RAngleLoc))
1613 return true;
1614
1615 if (Id.getKind() == UnqualifiedId::IK_Identifier ||
Sean Hunte6252d12009-11-28 08:58:14 +00001616 Id.getKind() == UnqualifiedId::IK_OperatorFunctionId ||
1617 Id.getKind() == UnqualifiedId::IK_LiteralOperatorId) {
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001618 // Form a parsed representation of the template-id to be stored in the
1619 // UnqualifiedId.
1620 TemplateIdAnnotation *TemplateId
1621 = TemplateIdAnnotation::Allocate(TemplateArgs.size());
1622
1623 if (Id.getKind() == UnqualifiedId::IK_Identifier) {
1624 TemplateId->Name = Id.Identifier;
Douglas Gregor014e88d2009-11-03 23:16:33 +00001625 TemplateId->Operator = OO_None;
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001626 TemplateId->TemplateNameLoc = Id.StartLocation;
1627 } else {
Douglas Gregor014e88d2009-11-03 23:16:33 +00001628 TemplateId->Name = 0;
1629 TemplateId->Operator = Id.OperatorFunctionId.Operator;
1630 TemplateId->TemplateNameLoc = Id.StartLocation;
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001631 }
1632
Douglas Gregor059101f2011-03-02 00:47:37 +00001633 TemplateId->SS = SS;
John McCall2b5289b2010-08-23 07:28:44 +00001634 TemplateId->Template = Template;
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001635 TemplateId->Kind = TNK;
1636 TemplateId->LAngleLoc = LAngleLoc;
1637 TemplateId->RAngleLoc = RAngleLoc;
Douglas Gregor314b97f2009-11-10 19:49:08 +00001638 ParsedTemplateArgument *Args = TemplateId->getTemplateArgs();
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001639 for (unsigned Arg = 0, ArgEnd = TemplateArgs.size();
Douglas Gregor314b97f2009-11-10 19:49:08 +00001640 Arg != ArgEnd; ++Arg)
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001641 Args[Arg] = TemplateArgs[Arg];
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001642
1643 Id.setTemplateId(TemplateId);
1644 return false;
1645 }
1646
1647 // Bundle the template arguments together.
1648 ASTTemplateArgsPtr TemplateArgsPtr(Actions, TemplateArgs.data(),
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001649 TemplateArgs.size());
1650
1651 // Constructor and destructor names.
John McCallf312b1e2010-08-26 23:41:50 +00001652 TypeResult Type
Douglas Gregor059101f2011-03-02 00:47:37 +00001653 = Actions.ActOnTemplateIdType(SS, Template, NameLoc,
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001654 LAngleLoc, TemplateArgsPtr,
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001655 RAngleLoc);
1656 if (Type.isInvalid())
1657 return true;
1658
1659 if (Id.getKind() == UnqualifiedId::IK_ConstructorName)
1660 Id.setConstructorName(Type.get(), NameLoc, RAngleLoc);
1661 else
1662 Id.setDestructorName(Id.StartLocation, Type.get(), RAngleLoc);
1663
1664 return false;
1665}
1666
Douglas Gregorca1bdd72009-11-04 00:56:37 +00001667/// \brief Parse an operator-function-id or conversion-function-id as part
1668/// of a C++ unqualified-id.
1669///
1670/// This routine is responsible only for parsing the operator-function-id or
1671/// conversion-function-id; it does not handle template arguments in any way.
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001672///
1673/// \code
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001674/// operator-function-id: [C++ 13.5]
1675/// 'operator' operator
1676///
Douglas Gregorca1bdd72009-11-04 00:56:37 +00001677/// operator: one of
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001678/// new delete new[] delete[]
1679/// + - * / % ^ & | ~
1680/// ! = < > += -= *= /= %=
1681/// ^= &= |= << >> >>= <<= == !=
1682/// <= >= && || ++ -- , ->* ->
1683/// () []
1684///
1685/// conversion-function-id: [C++ 12.3.2]
1686/// operator conversion-type-id
1687///
1688/// conversion-type-id:
1689/// type-specifier-seq conversion-declarator[opt]
1690///
1691/// conversion-declarator:
1692/// ptr-operator conversion-declarator[opt]
1693/// \endcode
1694///
1695/// \param The nested-name-specifier that preceded this unqualified-id. If
1696/// non-empty, then we are parsing the unqualified-id of a qualified-id.
1697///
1698/// \param EnteringContext whether we are entering the scope of the
1699/// nested-name-specifier.
1700///
Douglas Gregorca1bdd72009-11-04 00:56:37 +00001701/// \param ObjectType if this unqualified-id occurs within a member access
1702/// expression, the type of the base object whose member is being accessed.
1703///
1704/// \param Result on a successful parse, contains the parsed unqualified-id.
1705///
1706/// \returns true if parsing fails, false otherwise.
1707bool Parser::ParseUnqualifiedIdOperator(CXXScopeSpec &SS, bool EnteringContext,
John McCallb3d87482010-08-24 05:47:05 +00001708 ParsedType ObjectType,
Douglas Gregorca1bdd72009-11-04 00:56:37 +00001709 UnqualifiedId &Result) {
1710 assert(Tok.is(tok::kw_operator) && "Expected 'operator' keyword");
1711
1712 // Consume the 'operator' keyword.
1713 SourceLocation KeywordLoc = ConsumeToken();
1714
1715 // Determine what kind of operator name we have.
1716 unsigned SymbolIdx = 0;
1717 SourceLocation SymbolLocations[3];
1718 OverloadedOperatorKind Op = OO_None;
1719 switch (Tok.getKind()) {
1720 case tok::kw_new:
1721 case tok::kw_delete: {
1722 bool isNew = Tok.getKind() == tok::kw_new;
1723 // Consume the 'new' or 'delete'.
1724 SymbolLocations[SymbolIdx++] = ConsumeToken();
1725 if (Tok.is(tok::l_square)) {
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00001726 // Consume the '[' and ']'.
1727 BalancedDelimiterTracker T(*this, tok::l_square);
1728 T.consumeOpen();
1729 T.consumeClose();
1730 if (T.getCloseLocation().isInvalid())
Douglas Gregorca1bdd72009-11-04 00:56:37 +00001731 return true;
1732
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00001733 SymbolLocations[SymbolIdx++] = T.getOpenLocation();
1734 SymbolLocations[SymbolIdx++] = T.getCloseLocation();
Douglas Gregorca1bdd72009-11-04 00:56:37 +00001735 Op = isNew? OO_Array_New : OO_Array_Delete;
1736 } else {
1737 Op = isNew? OO_New : OO_Delete;
1738 }
1739 break;
1740 }
1741
1742#define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \
1743 case tok::Token: \
1744 SymbolLocations[SymbolIdx++] = ConsumeToken(); \
1745 Op = OO_##Name; \
1746 break;
1747#define OVERLOADED_OPERATOR_MULTI(Name,Spelling,Unary,Binary,MemberOnly)
1748#include "clang/Basic/OperatorKinds.def"
1749
1750 case tok::l_paren: {
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00001751 // Consume the '(' and ')'.
1752 BalancedDelimiterTracker T(*this, tok::l_paren);
1753 T.consumeOpen();
1754 T.consumeClose();
1755 if (T.getCloseLocation().isInvalid())
Douglas Gregorca1bdd72009-11-04 00:56:37 +00001756 return true;
1757
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00001758 SymbolLocations[SymbolIdx++] = T.getOpenLocation();
1759 SymbolLocations[SymbolIdx++] = T.getCloseLocation();
Douglas Gregorca1bdd72009-11-04 00:56:37 +00001760 Op = OO_Call;
1761 break;
1762 }
1763
1764 case tok::l_square: {
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00001765 // Consume the '[' and ']'.
1766 BalancedDelimiterTracker T(*this, tok::l_square);
1767 T.consumeOpen();
1768 T.consumeClose();
1769 if (T.getCloseLocation().isInvalid())
Douglas Gregorca1bdd72009-11-04 00:56:37 +00001770 return true;
1771
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00001772 SymbolLocations[SymbolIdx++] = T.getOpenLocation();
1773 SymbolLocations[SymbolIdx++] = T.getCloseLocation();
Douglas Gregorca1bdd72009-11-04 00:56:37 +00001774 Op = OO_Subscript;
1775 break;
1776 }
1777
1778 case tok::code_completion: {
1779 // Code completion for the operator name.
Douglas Gregor23c94db2010-07-02 17:43:08 +00001780 Actions.CodeCompleteOperatorName(getCurScope());
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00001781 cutOffParsing();
Douglas Gregorca1bdd72009-11-04 00:56:37 +00001782 // Don't try to parse any further.
1783 return true;
1784 }
1785
1786 default:
1787 break;
1788 }
1789
1790 if (Op != OO_None) {
1791 // We have parsed an operator-function-id.
1792 Result.setOperatorFunctionId(KeywordLoc, Op, SymbolLocations);
1793 return false;
1794 }
Sean Hunt0486d742009-11-28 04:44:28 +00001795
1796 // Parse a literal-operator-id.
1797 //
1798 // literal-operator-id: [C++0x 13.5.8]
1799 // operator "" identifier
1800
1801 if (getLang().CPlusPlus0x && Tok.is(tok::string_literal)) {
Richard Smith7fe62082011-10-15 05:09:34 +00001802 Diag(Tok.getLocation(), diag::warn_cxx98_compat_literal_operator);
Sean Hunt0486d742009-11-28 04:44:28 +00001803 if (Tok.getLength() != 2)
1804 Diag(Tok.getLocation(), diag::err_operator_string_not_empty);
1805 ConsumeStringToken();
1806
1807 if (Tok.isNot(tok::identifier)) {
1808 Diag(Tok.getLocation(), diag::err_expected_ident);
1809 return true;
1810 }
1811
1812 IdentifierInfo *II = Tok.getIdentifierInfo();
1813 Result.setLiteralOperatorId(II, KeywordLoc, ConsumeToken());
Sean Hunt3e518bd2009-11-29 07:34:05 +00001814 return false;
Sean Hunt0486d742009-11-28 04:44:28 +00001815 }
Douglas Gregorca1bdd72009-11-04 00:56:37 +00001816
1817 // Parse a conversion-function-id.
1818 //
1819 // conversion-function-id: [C++ 12.3.2]
1820 // operator conversion-type-id
1821 //
1822 // conversion-type-id:
1823 // type-specifier-seq conversion-declarator[opt]
1824 //
1825 // conversion-declarator:
1826 // ptr-operator conversion-declarator[opt]
1827
1828 // Parse the type-specifier-seq.
John McCall0b7e6782011-03-24 11:26:52 +00001829 DeclSpec DS(AttrFactory);
Douglas Gregorf6e6fc82009-11-20 22:03:38 +00001830 if (ParseCXXTypeSpecifierSeq(DS)) // FIXME: ObjectType?
Douglas Gregorca1bdd72009-11-04 00:56:37 +00001831 return true;
1832
1833 // Parse the conversion-declarator, which is merely a sequence of
1834 // ptr-operators.
1835 Declarator D(DS, Declarator::TypeNameContext);
1836 ParseDeclaratorInternal(D, /*DirectDeclParser=*/0);
1837
1838 // Finish up the type.
John McCallf312b1e2010-08-26 23:41:50 +00001839 TypeResult Ty = Actions.ActOnTypeName(getCurScope(), D);
Douglas Gregorca1bdd72009-11-04 00:56:37 +00001840 if (Ty.isInvalid())
1841 return true;
1842
1843 // Note that this is a conversion-function-id.
1844 Result.setConversionFunctionId(KeywordLoc, Ty.get(),
1845 D.getSourceRange().getEnd());
1846 return false;
1847}
1848
1849/// \brief Parse a C++ unqualified-id (or a C identifier), which describes the
1850/// name of an entity.
1851///
1852/// \code
1853/// unqualified-id: [C++ expr.prim.general]
1854/// identifier
1855/// operator-function-id
1856/// conversion-function-id
1857/// [C++0x] literal-operator-id [TODO]
1858/// ~ class-name
1859/// template-id
1860///
1861/// \endcode
1862///
1863/// \param The nested-name-specifier that preceded this unqualified-id. If
1864/// non-empty, then we are parsing the unqualified-id of a qualified-id.
1865///
1866/// \param EnteringContext whether we are entering the scope of the
1867/// nested-name-specifier.
1868///
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001869/// \param AllowDestructorName whether we allow parsing of a destructor name.
1870///
1871/// \param AllowConstructorName whether we allow parsing a constructor name.
1872///
Douglas Gregor46df8cc2009-11-03 21:24:04 +00001873/// \param ObjectType if this unqualified-id occurs within a member access
1874/// expression, the type of the base object whose member is being accessed.
1875///
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001876/// \param Result on a successful parse, contains the parsed unqualified-id.
1877///
1878/// \returns true if parsing fails, false otherwise.
1879bool Parser::ParseUnqualifiedId(CXXScopeSpec &SS, bool EnteringContext,
1880 bool AllowDestructorName,
1881 bool AllowConstructorName,
John McCallb3d87482010-08-24 05:47:05 +00001882 ParsedType ObjectType,
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001883 UnqualifiedId &Result) {
Douglas Gregor0278e122010-05-05 05:58:24 +00001884
1885 // Handle 'A::template B'. This is for template-ids which have not
1886 // already been annotated by ParseOptionalCXXScopeSpecifier().
1887 bool TemplateSpecified = false;
1888 SourceLocation TemplateKWLoc;
1889 if (getLang().CPlusPlus && Tok.is(tok::kw_template) &&
1890 (ObjectType || SS.isSet())) {
1891 TemplateSpecified = true;
1892 TemplateKWLoc = ConsumeToken();
1893 }
1894
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001895 // unqualified-id:
1896 // identifier
1897 // template-id (when it hasn't already been annotated)
1898 if (Tok.is(tok::identifier)) {
1899 // Consume the identifier.
1900 IdentifierInfo *Id = Tok.getIdentifierInfo();
1901 SourceLocation IdLoc = ConsumeToken();
1902
Douglas Gregorb862b8f2010-01-11 23:29:10 +00001903 if (!getLang().CPlusPlus) {
1904 // If we're not in C++, only identifiers matter. Record the
1905 // identifier and return.
1906 Result.setIdentifier(Id, IdLoc);
1907 return false;
1908 }
1909
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001910 if (AllowConstructorName &&
Douglas Gregor23c94db2010-07-02 17:43:08 +00001911 Actions.isCurrentClassName(*Id, getCurScope(), &SS)) {
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001912 // We have parsed a constructor name.
Douglas Gregor23c94db2010-07-02 17:43:08 +00001913 Result.setConstructorName(Actions.getTypeName(*Id, IdLoc, getCurScope(),
Douglas Gregor9e876872011-03-01 18:12:44 +00001914 &SS, false, false,
1915 ParsedType(),
1916 /*NonTrivialTypeSourceInfo=*/true),
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001917 IdLoc, IdLoc);
1918 } else {
1919 // We have parsed an identifier.
1920 Result.setIdentifier(Id, IdLoc);
1921 }
1922
1923 // If the next token is a '<', we may have a template.
Douglas Gregor0278e122010-05-05 05:58:24 +00001924 if (TemplateSpecified || Tok.is(tok::less))
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001925 return ParseUnqualifiedIdTemplateId(SS, Id, IdLoc, EnteringContext,
Douglas Gregor0278e122010-05-05 05:58:24 +00001926 ObjectType, Result,
1927 TemplateSpecified, TemplateKWLoc);
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001928
1929 return false;
1930 }
1931
1932 // unqualified-id:
1933 // template-id (already parsed and annotated)
1934 if (Tok.is(tok::annot_template_id)) {
Argyrios Kyrtzidis25a76762011-06-22 06:09:49 +00001935 TemplateIdAnnotation *TemplateId = takeTemplateIdAnnotation(Tok);
Douglas Gregor0efc2c12010-01-13 17:31:36 +00001936
1937 // If the template-name names the current class, then this is a constructor
1938 if (AllowConstructorName && TemplateId->Name &&
Douglas Gregor23c94db2010-07-02 17:43:08 +00001939 Actions.isCurrentClassName(*TemplateId->Name, getCurScope(), &SS)) {
Douglas Gregor0efc2c12010-01-13 17:31:36 +00001940 if (SS.isSet()) {
1941 // C++ [class.qual]p2 specifies that a qualified template-name
1942 // is taken as the constructor name where a constructor can be
1943 // declared. Thus, the template arguments are extraneous, so
1944 // complain about them and remove them entirely.
1945 Diag(TemplateId->TemplateNameLoc,
1946 diag::err_out_of_line_constructor_template_id)
1947 << TemplateId->Name
Douglas Gregor849b2432010-03-31 17:46:05 +00001948 << FixItHint::CreateRemoval(
Douglas Gregor0efc2c12010-01-13 17:31:36 +00001949 SourceRange(TemplateId->LAngleLoc, TemplateId->RAngleLoc));
1950 Result.setConstructorName(Actions.getTypeName(*TemplateId->Name,
1951 TemplateId->TemplateNameLoc,
Douglas Gregor23c94db2010-07-02 17:43:08 +00001952 getCurScope(),
Douglas Gregor9e876872011-03-01 18:12:44 +00001953 &SS, false, false,
1954 ParsedType(),
1955 /*NontrivialTypeSourceInfo=*/true),
Douglas Gregor0efc2c12010-01-13 17:31:36 +00001956 TemplateId->TemplateNameLoc,
1957 TemplateId->RAngleLoc);
Douglas Gregor0efc2c12010-01-13 17:31:36 +00001958 ConsumeToken();
1959 return false;
1960 }
1961
1962 Result.setConstructorTemplateId(TemplateId);
1963 ConsumeToken();
1964 return false;
1965 }
1966
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001967 // We have already parsed a template-id; consume the annotation token as
1968 // our unqualified-id.
Douglas Gregor0efc2c12010-01-13 17:31:36 +00001969 Result.setTemplateId(TemplateId);
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001970 ConsumeToken();
1971 return false;
1972 }
1973
1974 // unqualified-id:
1975 // operator-function-id
1976 // conversion-function-id
1977 if (Tok.is(tok::kw_operator)) {
Douglas Gregorca1bdd72009-11-04 00:56:37 +00001978 if (ParseUnqualifiedIdOperator(SS, EnteringContext, ObjectType, Result))
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001979 return true;
1980
Sean Hunte6252d12009-11-28 08:58:14 +00001981 // If we have an operator-function-id or a literal-operator-id and the next
1982 // token is a '<', we may have a
Douglas Gregorca1bdd72009-11-04 00:56:37 +00001983 //
1984 // template-id:
1985 // operator-function-id < template-argument-list[opt] >
Sean Hunte6252d12009-11-28 08:58:14 +00001986 if ((Result.getKind() == UnqualifiedId::IK_OperatorFunctionId ||
1987 Result.getKind() == UnqualifiedId::IK_LiteralOperatorId) &&
Douglas Gregor0278e122010-05-05 05:58:24 +00001988 (TemplateSpecified || Tok.is(tok::less)))
Douglas Gregorca1bdd72009-11-04 00:56:37 +00001989 return ParseUnqualifiedIdTemplateId(SS, 0, SourceLocation(),
1990 EnteringContext, ObjectType,
Douglas Gregor0278e122010-05-05 05:58:24 +00001991 Result,
1992 TemplateSpecified, TemplateKWLoc);
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001993
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001994 return false;
1995 }
1996
Douglas Gregorb862b8f2010-01-11 23:29:10 +00001997 if (getLang().CPlusPlus &&
1998 (AllowDestructorName || SS.isSet()) && Tok.is(tok::tilde)) {
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001999 // C++ [expr.unary.op]p10:
2000 // There is an ambiguity in the unary-expression ~X(), where X is a
2001 // class-name. The ambiguity is resolved in favor of treating ~ as a
2002 // unary complement rather than treating ~X as referring to a destructor.
2003
2004 // Parse the '~'.
2005 SourceLocation TildeLoc = ConsumeToken();
David Blaikie53a75c02011-12-08 16:13:53 +00002006
2007 if (SS.isEmpty() && Tok.is(tok::kw_decltype)) {
2008 DeclSpec DS(AttrFactory);
2009 SourceLocation EndLoc = ParseDecltypeSpecifier(DS);
2010 if (ParsedType Type = Actions.getDestructorType(DS, ObjectType)) {
2011 Result.setDestructorName(TildeLoc, Type, EndLoc);
2012 return false;
2013 }
2014 return true;
2015 }
Douglas Gregor3f9a0562009-11-03 01:35:08 +00002016
2017 // Parse the class-name.
2018 if (Tok.isNot(tok::identifier)) {
Douglas Gregor124b8782010-02-16 19:09:40 +00002019 Diag(Tok, diag::err_destructor_tilde_identifier);
Douglas Gregor3f9a0562009-11-03 01:35:08 +00002020 return true;
2021 }
2022
2023 // Parse the class-name (or template-name in a simple-template-id).
2024 IdentifierInfo *ClassName = Tok.getIdentifierInfo();
2025 SourceLocation ClassNameLoc = ConsumeToken();
2026
Douglas Gregor0278e122010-05-05 05:58:24 +00002027 if (TemplateSpecified || Tok.is(tok::less)) {
John McCallb3d87482010-08-24 05:47:05 +00002028 Result.setDestructorName(TildeLoc, ParsedType(), ClassNameLoc);
Douglas Gregor2d1c2142009-11-03 19:44:04 +00002029 return ParseUnqualifiedIdTemplateId(SS, ClassName, ClassNameLoc,
Douglas Gregor0278e122010-05-05 05:58:24 +00002030 EnteringContext, ObjectType, Result,
2031 TemplateSpecified, TemplateKWLoc);
Douglas Gregor2d1c2142009-11-03 19:44:04 +00002032 }
2033
Douglas Gregor3f9a0562009-11-03 01:35:08 +00002034 // Note that this is a destructor name.
John McCallb3d87482010-08-24 05:47:05 +00002035 ParsedType Ty = Actions.getDestructorName(TildeLoc, *ClassName,
2036 ClassNameLoc, getCurScope(),
2037 SS, ObjectType,
2038 EnteringContext);
Douglas Gregor124b8782010-02-16 19:09:40 +00002039 if (!Ty)
Douglas Gregor3f9a0562009-11-03 01:35:08 +00002040 return true;
Douglas Gregor124b8782010-02-16 19:09:40 +00002041
Douglas Gregor3f9a0562009-11-03 01:35:08 +00002042 Result.setDestructorName(TildeLoc, Ty, ClassNameLoc);
Douglas Gregor3f9a0562009-11-03 01:35:08 +00002043 return false;
2044 }
2045
Douglas Gregor2d1c2142009-11-03 19:44:04 +00002046 Diag(Tok, diag::err_expected_unqualified_id)
2047 << getLang().CPlusPlus;
Douglas Gregor3f9a0562009-11-03 01:35:08 +00002048 return true;
2049}
2050
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002051/// ParseCXXNewExpression - Parse a C++ new-expression. New is used to allocate
2052/// memory in a typesafe manner and call constructors.
Mike Stump1eb44332009-09-09 15:08:12 +00002053///
Chris Lattner59232d32009-01-04 21:25:24 +00002054/// This method is called to parse the new expression after the optional :: has
2055/// been already parsed. If the :: was present, "UseGlobal" is true and "Start"
2056/// is its location. Otherwise, "Start" is the location of the 'new' token.
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002057///
2058/// new-expression:
2059/// '::'[opt] 'new' new-placement[opt] new-type-id
2060/// new-initializer[opt]
2061/// '::'[opt] 'new' new-placement[opt] '(' type-id ')'
2062/// new-initializer[opt]
2063///
2064/// new-placement:
2065/// '(' expression-list ')'
2066///
Sebastian Redlcee63fb2008-12-02 14:43:59 +00002067/// new-type-id:
2068/// type-specifier-seq new-declarator[opt]
Douglas Gregor893e1cc2011-04-15 19:40:02 +00002069/// [GNU] attributes type-specifier-seq new-declarator[opt]
Sebastian Redlcee63fb2008-12-02 14:43:59 +00002070///
2071/// new-declarator:
2072/// ptr-operator new-declarator[opt]
2073/// direct-new-declarator
2074///
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002075/// new-initializer:
2076/// '(' expression-list[opt] ')'
Sebastian Redldbef1bb2011-06-05 12:23:16 +00002077/// [C++0x] braced-init-list
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002078///
John McCall60d7b3a2010-08-24 06:29:42 +00002079ExprResult
Chris Lattner59232d32009-01-04 21:25:24 +00002080Parser::ParseCXXNewExpression(bool UseGlobal, SourceLocation Start) {
2081 assert(Tok.is(tok::kw_new) && "expected 'new' token");
2082 ConsumeToken(); // Consume 'new'
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002083
2084 // A '(' now can be a new-placement or the '(' wrapping the type-id in the
2085 // second form of new-expression. It can't be a new-type-id.
2086
Sebastian Redla55e52c2008-11-25 22:21:31 +00002087 ExprVector PlacementArgs(Actions);
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002088 SourceLocation PlacementLParen, PlacementRParen;
2089
Douglas Gregor4bd40312010-07-13 15:54:32 +00002090 SourceRange TypeIdParens;
John McCall0b7e6782011-03-24 11:26:52 +00002091 DeclSpec DS(AttrFactory);
Argyrios Kyrtzidis0b8c98f2011-06-28 03:01:23 +00002092 Declarator DeclaratorInfo(DS, Declarator::CXXNewContext);
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002093 if (Tok.is(tok::l_paren)) {
2094 // If it turns out to be a placement, we change the type location.
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002095 BalancedDelimiterTracker T(*this, tok::l_paren);
2096 T.consumeOpen();
2097 PlacementLParen = T.getOpenLocation();
Sebastian Redlcee63fb2008-12-02 14:43:59 +00002098 if (ParseExpressionListOrTypeId(PlacementArgs, DeclaratorInfo)) {
2099 SkipUntil(tok::semi, /*StopAtSemi=*/true, /*DontConsume=*/true);
Sebastian Redl20df9b72008-12-11 22:51:44 +00002100 return ExprError();
Sebastian Redlcee63fb2008-12-02 14:43:59 +00002101 }
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002102
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002103 T.consumeClose();
2104 PlacementRParen = T.getCloseLocation();
Sebastian Redlcee63fb2008-12-02 14:43:59 +00002105 if (PlacementRParen.isInvalid()) {
2106 SkipUntil(tok::semi, /*StopAtSemi=*/true, /*DontConsume=*/true);
Sebastian Redl20df9b72008-12-11 22:51:44 +00002107 return ExprError();
Sebastian Redlcee63fb2008-12-02 14:43:59 +00002108 }
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002109
Sebastian Redlcee63fb2008-12-02 14:43:59 +00002110 if (PlacementArgs.empty()) {
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002111 // Reset the placement locations. There was no placement.
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002112 TypeIdParens = T.getRange();
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002113 PlacementLParen = PlacementRParen = SourceLocation();
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002114 } else {
2115 // We still need the type.
2116 if (Tok.is(tok::l_paren)) {
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002117 BalancedDelimiterTracker T(*this, tok::l_paren);
2118 T.consumeOpen();
Douglas Gregor893e1cc2011-04-15 19:40:02 +00002119 MaybeParseGNUAttributes(DeclaratorInfo);
Sebastian Redlcee63fb2008-12-02 14:43:59 +00002120 ParseSpecifierQualifierList(DS);
Sebastian Redlab197ba2009-02-09 18:23:29 +00002121 DeclaratorInfo.SetSourceRange(DS.getSourceRange());
Sebastian Redlcee63fb2008-12-02 14:43:59 +00002122 ParseDeclarator(DeclaratorInfo);
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002123 T.consumeClose();
2124 TypeIdParens = T.getRange();
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002125 } else {
Douglas Gregor893e1cc2011-04-15 19:40:02 +00002126 MaybeParseGNUAttributes(DeclaratorInfo);
Sebastian Redlcee63fb2008-12-02 14:43:59 +00002127 if (ParseCXXTypeSpecifierSeq(DS))
2128 DeclaratorInfo.setInvalidType(true);
Sebastian Redlab197ba2009-02-09 18:23:29 +00002129 else {
2130 DeclaratorInfo.SetSourceRange(DS.getSourceRange());
Sebastian Redlcee63fb2008-12-02 14:43:59 +00002131 ParseDeclaratorInternal(DeclaratorInfo,
2132 &Parser::ParseDirectNewDeclarator);
Sebastian Redlab197ba2009-02-09 18:23:29 +00002133 }
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002134 }
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002135 }
2136 } else {
Sebastian Redlcee63fb2008-12-02 14:43:59 +00002137 // A new-type-id is a simplified type-id, where essentially the
2138 // direct-declarator is replaced by a direct-new-declarator.
Douglas Gregor893e1cc2011-04-15 19:40:02 +00002139 MaybeParseGNUAttributes(DeclaratorInfo);
Sebastian Redlcee63fb2008-12-02 14:43:59 +00002140 if (ParseCXXTypeSpecifierSeq(DS))
2141 DeclaratorInfo.setInvalidType(true);
Sebastian Redlab197ba2009-02-09 18:23:29 +00002142 else {
2143 DeclaratorInfo.SetSourceRange(DS.getSourceRange());
Sebastian Redlcee63fb2008-12-02 14:43:59 +00002144 ParseDeclaratorInternal(DeclaratorInfo,
2145 &Parser::ParseDirectNewDeclarator);
Sebastian Redlab197ba2009-02-09 18:23:29 +00002146 }
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002147 }
Chris Lattnereaaebc72009-04-25 08:06:05 +00002148 if (DeclaratorInfo.isInvalidType()) {
Sebastian Redlcee63fb2008-12-02 14:43:59 +00002149 SkipUntil(tok::semi, /*StopAtSemi=*/true, /*DontConsume=*/true);
Sebastian Redl20df9b72008-12-11 22:51:44 +00002150 return ExprError();
Sebastian Redlcee63fb2008-12-02 14:43:59 +00002151 }
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002152
Sebastian Redla55e52c2008-11-25 22:21:31 +00002153 ExprVector ConstructorArgs(Actions);
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002154 SourceLocation ConstructorLParen, ConstructorRParen;
2155
2156 if (Tok.is(tok::l_paren)) {
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002157 BalancedDelimiterTracker T(*this, tok::l_paren);
2158 T.consumeOpen();
2159 ConstructorLParen = T.getOpenLocation();
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002160 if (Tok.isNot(tok::r_paren)) {
2161 CommaLocsTy CommaLocs;
Sebastian Redlcee63fb2008-12-02 14:43:59 +00002162 if (ParseExpressionList(ConstructorArgs, CommaLocs)) {
2163 SkipUntil(tok::semi, /*StopAtSemi=*/true, /*DontConsume=*/true);
Sebastian Redl20df9b72008-12-11 22:51:44 +00002164 return ExprError();
Sebastian Redlcee63fb2008-12-02 14:43:59 +00002165 }
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002166 }
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002167 T.consumeClose();
2168 ConstructorRParen = T.getCloseLocation();
Sebastian Redlcee63fb2008-12-02 14:43:59 +00002169 if (ConstructorRParen.isInvalid()) {
2170 SkipUntil(tok::semi, /*StopAtSemi=*/true, /*DontConsume=*/true);
Sebastian Redl20df9b72008-12-11 22:51:44 +00002171 return ExprError();
Sebastian Redlcee63fb2008-12-02 14:43:59 +00002172 }
Richard Smith29e3a312011-10-15 03:38:41 +00002173 } else if (Tok.is(tok::l_brace) && getLang().CPlusPlus0x) {
Richard Smith7fe62082011-10-15 05:09:34 +00002174 Diag(Tok.getLocation(),
2175 diag::warn_cxx98_compat_generalized_initializer_lists);
Sebastian Redldbef1bb2011-06-05 12:23:16 +00002176 // FIXME: Have to communicate the init-list to ActOnCXXNew.
2177 ParseBraceInitializer();
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002178 }
2179
Sebastian Redlf53597f2009-03-15 17:47:39 +00002180 return Actions.ActOnCXXNew(Start, UseGlobal, PlacementLParen,
2181 move_arg(PlacementArgs), PlacementRParen,
Douglas Gregor4bd40312010-07-13 15:54:32 +00002182 TypeIdParens, DeclaratorInfo, ConstructorLParen,
Sebastian Redlf53597f2009-03-15 17:47:39 +00002183 move_arg(ConstructorArgs), ConstructorRParen);
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002184}
2185
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002186/// ParseDirectNewDeclarator - Parses a direct-new-declarator. Intended to be
2187/// passed to ParseDeclaratorInternal.
2188///
2189/// direct-new-declarator:
2190/// '[' expression ']'
2191/// direct-new-declarator '[' constant-expression ']'
2192///
Chris Lattner59232d32009-01-04 21:25:24 +00002193void Parser::ParseDirectNewDeclarator(Declarator &D) {
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002194 // Parse the array dimensions.
2195 bool first = true;
2196 while (Tok.is(tok::l_square)) {
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002197 BalancedDelimiterTracker T(*this, tok::l_square);
2198 T.consumeOpen();
2199
John McCall60d7b3a2010-08-24 06:29:42 +00002200 ExprResult Size(first ? ParseExpression()
Sebastian Redl2f7ece72008-12-11 21:36:32 +00002201 : ParseConstantExpression());
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00002202 if (Size.isInvalid()) {
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002203 // Recover
2204 SkipUntil(tok::r_square);
2205 return;
2206 }
2207 first = false;
2208
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002209 T.consumeClose();
John McCall0b7e6782011-03-24 11:26:52 +00002210
2211 ParsedAttributes attrs(AttrFactory);
2212 D.AddTypeInfo(DeclaratorChunk::getArray(0,
John McCall7f040a92010-12-24 02:08:15 +00002213 /*static=*/false, /*star=*/false,
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002214 Size.release(),
2215 T.getOpenLocation(),
2216 T.getCloseLocation()),
2217 attrs, T.getCloseLocation());
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002218
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002219 if (T.getCloseLocation().isInvalid())
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002220 return;
2221 }
2222}
2223
2224/// ParseExpressionListOrTypeId - Parse either an expression-list or a type-id.
2225/// This ambiguity appears in the syntax of the C++ new operator.
2226///
2227/// new-expression:
2228/// '::'[opt] 'new' new-placement[opt] '(' type-id ')'
2229/// new-initializer[opt]
2230///
2231/// new-placement:
2232/// '(' expression-list ')'
2233///
John McCallca0408f2010-08-23 06:44:23 +00002234bool Parser::ParseExpressionListOrTypeId(
Chris Lattner5f9e2722011-07-23 10:55:15 +00002235 SmallVectorImpl<Expr*> &PlacementArgs,
Chris Lattner59232d32009-01-04 21:25:24 +00002236 Declarator &D) {
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002237 // The '(' was already consumed.
2238 if (isTypeIdInParens()) {
Sebastian Redlcee63fb2008-12-02 14:43:59 +00002239 ParseSpecifierQualifierList(D.getMutableDeclSpec());
Sebastian Redlab197ba2009-02-09 18:23:29 +00002240 D.SetSourceRange(D.getDeclSpec().getSourceRange());
Sebastian Redlcee63fb2008-12-02 14:43:59 +00002241 ParseDeclarator(D);
Chris Lattnereaaebc72009-04-25 08:06:05 +00002242 return D.isInvalidType();
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002243 }
2244
2245 // It's not a type, it has to be an expression list.
2246 // Discard the comma locations - ActOnCXXNew has enough parameters.
2247 CommaLocsTy CommaLocs;
2248 return ParseExpressionList(PlacementArgs, CommaLocs);
2249}
2250
2251/// ParseCXXDeleteExpression - Parse a C++ delete-expression. Delete is used
2252/// to free memory allocated by new.
2253///
Chris Lattner59232d32009-01-04 21:25:24 +00002254/// This method is called to parse the 'delete' expression after the optional
2255/// '::' has been already parsed. If the '::' was present, "UseGlobal" is true
2256/// and "Start" is its location. Otherwise, "Start" is the location of the
2257/// 'delete' token.
2258///
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002259/// delete-expression:
2260/// '::'[opt] 'delete' cast-expression
2261/// '::'[opt] 'delete' '[' ']' cast-expression
John McCall60d7b3a2010-08-24 06:29:42 +00002262ExprResult
Chris Lattner59232d32009-01-04 21:25:24 +00002263Parser::ParseCXXDeleteExpression(bool UseGlobal, SourceLocation Start) {
2264 assert(Tok.is(tok::kw_delete) && "Expected 'delete' keyword");
2265 ConsumeToken(); // Consume 'delete'
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002266
2267 // Array delete?
2268 bool ArrayDelete = false;
2269 if (Tok.is(tok::l_square)) {
2270 ArrayDelete = true;
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002271 BalancedDelimiterTracker T(*this, tok::l_square);
2272
2273 T.consumeOpen();
2274 T.consumeClose();
2275 if (T.getCloseLocation().isInvalid())
Sebastian Redl20df9b72008-12-11 22:51:44 +00002276 return ExprError();
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002277 }
2278
John McCall60d7b3a2010-08-24 06:29:42 +00002279 ExprResult Operand(ParseCastExpression(false));
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00002280 if (Operand.isInvalid())
Sebastian Redl20df9b72008-12-11 22:51:44 +00002281 return move(Operand);
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002282
John McCall9ae2f072010-08-23 23:25:46 +00002283 return Actions.ActOnCXXDelete(Start, UseGlobal, ArrayDelete, Operand.take());
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002284}
Sebastian Redl64b45f72009-01-05 20:52:13 +00002285
Mike Stump1eb44332009-09-09 15:08:12 +00002286static UnaryTypeTrait UnaryTypeTraitFromTokKind(tok::TokenKind kind) {
Sebastian Redl64b45f72009-01-05 20:52:13 +00002287 switch(kind) {
David Blaikieb219cfc2011-09-23 05:06:16 +00002288 default: llvm_unreachable("Not a known unary type trait.");
Sebastian Redl64b45f72009-01-05 20:52:13 +00002289 case tok::kw___has_nothrow_assign: return UTT_HasNothrowAssign;
Sebastian Redl64b45f72009-01-05 20:52:13 +00002290 case tok::kw___has_nothrow_constructor: return UTT_HasNothrowConstructor;
John Wiegley20c0da72011-04-27 23:09:49 +00002291 case tok::kw___has_nothrow_copy: return UTT_HasNothrowCopy;
Sebastian Redl64b45f72009-01-05 20:52:13 +00002292 case tok::kw___has_trivial_assign: return UTT_HasTrivialAssign;
Sean Hunt023df372011-05-09 18:22:59 +00002293 case tok::kw___has_trivial_constructor:
2294 return UTT_HasTrivialDefaultConstructor;
John Wiegley20c0da72011-04-27 23:09:49 +00002295 case tok::kw___has_trivial_copy: return UTT_HasTrivialCopy;
Sebastian Redl64b45f72009-01-05 20:52:13 +00002296 case tok::kw___has_trivial_destructor: return UTT_HasTrivialDestructor;
2297 case tok::kw___has_virtual_destructor: return UTT_HasVirtualDestructor;
2298 case tok::kw___is_abstract: return UTT_IsAbstract;
John Wiegley20c0da72011-04-27 23:09:49 +00002299 case tok::kw___is_arithmetic: return UTT_IsArithmetic;
2300 case tok::kw___is_array: return UTT_IsArray;
Sebastian Redl64b45f72009-01-05 20:52:13 +00002301 case tok::kw___is_class: return UTT_IsClass;
John Wiegley20c0da72011-04-27 23:09:49 +00002302 case tok::kw___is_complete_type: return UTT_IsCompleteType;
2303 case tok::kw___is_compound: return UTT_IsCompound;
2304 case tok::kw___is_const: return UTT_IsConst;
Sebastian Redl64b45f72009-01-05 20:52:13 +00002305 case tok::kw___is_empty: return UTT_IsEmpty;
2306 case tok::kw___is_enum: return UTT_IsEnum;
Douglas Gregor5e9392b2011-12-03 18:14:24 +00002307 case tok::kw___is_final: return UTT_IsFinal;
John Wiegley20c0da72011-04-27 23:09:49 +00002308 case tok::kw___is_floating_point: return UTT_IsFloatingPoint;
2309 case tok::kw___is_function: return UTT_IsFunction;
2310 case tok::kw___is_fundamental: return UTT_IsFundamental;
2311 case tok::kw___is_integral: return UTT_IsIntegral;
John Wiegley20c0da72011-04-27 23:09:49 +00002312 case tok::kw___is_lvalue_reference: return UTT_IsLvalueReference;
2313 case tok::kw___is_member_function_pointer: return UTT_IsMemberFunctionPointer;
2314 case tok::kw___is_member_object_pointer: return UTT_IsMemberObjectPointer;
2315 case tok::kw___is_member_pointer: return UTT_IsMemberPointer;
2316 case tok::kw___is_object: return UTT_IsObject;
Chandler Carruth4e61ddd2011-04-23 10:47:20 +00002317 case tok::kw___is_literal: return UTT_IsLiteral;
Chandler Carruth38402812011-04-24 02:49:28 +00002318 case tok::kw___is_literal_type: return UTT_IsLiteral;
Sebastian Redl64b45f72009-01-05 20:52:13 +00002319 case tok::kw___is_pod: return UTT_IsPOD;
John Wiegley20c0da72011-04-27 23:09:49 +00002320 case tok::kw___is_pointer: return UTT_IsPointer;
Sebastian Redl64b45f72009-01-05 20:52:13 +00002321 case tok::kw___is_polymorphic: return UTT_IsPolymorphic;
John Wiegley20c0da72011-04-27 23:09:49 +00002322 case tok::kw___is_reference: return UTT_IsReference;
John Wiegley20c0da72011-04-27 23:09:49 +00002323 case tok::kw___is_rvalue_reference: return UTT_IsRvalueReference;
2324 case tok::kw___is_scalar: return UTT_IsScalar;
2325 case tok::kw___is_signed: return UTT_IsSigned;
2326 case tok::kw___is_standard_layout: return UTT_IsStandardLayout;
2327 case tok::kw___is_trivial: return UTT_IsTrivial;
Sean Huntfeb375d2011-05-13 00:31:07 +00002328 case tok::kw___is_trivially_copyable: return UTT_IsTriviallyCopyable;
Sebastian Redl64b45f72009-01-05 20:52:13 +00002329 case tok::kw___is_union: return UTT_IsUnion;
John Wiegley20c0da72011-04-27 23:09:49 +00002330 case tok::kw___is_unsigned: return UTT_IsUnsigned;
2331 case tok::kw___is_void: return UTT_IsVoid;
2332 case tok::kw___is_volatile: return UTT_IsVolatile;
Sebastian Redl64b45f72009-01-05 20:52:13 +00002333 }
Francois Pichet6ad6f282010-12-07 00:08:36 +00002334}
2335
2336static BinaryTypeTrait BinaryTypeTraitFromTokKind(tok::TokenKind kind) {
2337 switch(kind) {
Francois Pichet38c2b732010-12-07 00:55:57 +00002338 default: llvm_unreachable("Not a known binary type trait");
Francois Pichetf1872372010-12-08 22:35:30 +00002339 case tok::kw___is_base_of: return BTT_IsBaseOf;
John Wiegley20c0da72011-04-27 23:09:49 +00002340 case tok::kw___is_convertible: return BTT_IsConvertible;
2341 case tok::kw___is_same: return BTT_IsSame;
Francois Pichetf1872372010-12-08 22:35:30 +00002342 case tok::kw___builtin_types_compatible_p: return BTT_TypeCompatible;
Douglas Gregor9f361132011-01-27 20:28:01 +00002343 case tok::kw___is_convertible_to: return BTT_IsConvertibleTo;
Francois Pichet6ad6f282010-12-07 00:08:36 +00002344 }
Sebastian Redl64b45f72009-01-05 20:52:13 +00002345}
2346
John Wiegley21ff2e52011-04-28 00:16:57 +00002347static ArrayTypeTrait ArrayTypeTraitFromTokKind(tok::TokenKind kind) {
2348 switch(kind) {
2349 default: llvm_unreachable("Not a known binary type trait");
2350 case tok::kw___array_rank: return ATT_ArrayRank;
2351 case tok::kw___array_extent: return ATT_ArrayExtent;
2352 }
2353}
2354
John Wiegley55262202011-04-25 06:54:41 +00002355static ExpressionTrait ExpressionTraitFromTokKind(tok::TokenKind kind) {
2356 switch(kind) {
David Blaikieb219cfc2011-09-23 05:06:16 +00002357 default: llvm_unreachable("Not a known unary expression trait.");
John Wiegley55262202011-04-25 06:54:41 +00002358 case tok::kw___is_lvalue_expr: return ET_IsLValueExpr;
2359 case tok::kw___is_rvalue_expr: return ET_IsRValueExpr;
2360 }
2361}
2362
Sebastian Redl64b45f72009-01-05 20:52:13 +00002363/// ParseUnaryTypeTrait - Parse the built-in unary type-trait
2364/// pseudo-functions that allow implementation of the TR1/C++0x type traits
2365/// templates.
2366///
2367/// primary-expression:
2368/// [GNU] unary-type-trait '(' type-id ')'
2369///
John McCall60d7b3a2010-08-24 06:29:42 +00002370ExprResult Parser::ParseUnaryTypeTrait() {
Sebastian Redl64b45f72009-01-05 20:52:13 +00002371 UnaryTypeTrait UTT = UnaryTypeTraitFromTokKind(Tok.getKind());
2372 SourceLocation Loc = ConsumeToken();
2373
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002374 BalancedDelimiterTracker T(*this, tok::l_paren);
2375 if (T.expectAndConsume(diag::err_expected_lparen))
Sebastian Redl64b45f72009-01-05 20:52:13 +00002376 return ExprError();
2377
2378 // FIXME: Error reporting absolutely sucks! If the this fails to parse a type
2379 // there will be cryptic errors about mismatched parentheses and missing
2380 // specifiers.
Douglas Gregor809070a2009-02-18 17:45:20 +00002381 TypeResult Ty = ParseTypeName();
Sebastian Redl64b45f72009-01-05 20:52:13 +00002382
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002383 T.consumeClose();
Sebastian Redl64b45f72009-01-05 20:52:13 +00002384
Douglas Gregor809070a2009-02-18 17:45:20 +00002385 if (Ty.isInvalid())
2386 return ExprError();
2387
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002388 return Actions.ActOnUnaryTypeTrait(UTT, Loc, Ty.get(), T.getCloseLocation());
Sebastian Redl64b45f72009-01-05 20:52:13 +00002389}
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00002390
Francois Pichet6ad6f282010-12-07 00:08:36 +00002391/// ParseBinaryTypeTrait - Parse the built-in binary type-trait
2392/// pseudo-functions that allow implementation of the TR1/C++0x type traits
2393/// templates.
2394///
2395/// primary-expression:
2396/// [GNU] binary-type-trait '(' type-id ',' type-id ')'
2397///
2398ExprResult Parser::ParseBinaryTypeTrait() {
2399 BinaryTypeTrait BTT = BinaryTypeTraitFromTokKind(Tok.getKind());
2400 SourceLocation Loc = ConsumeToken();
2401
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002402 BalancedDelimiterTracker T(*this, tok::l_paren);
2403 if (T.expectAndConsume(diag::err_expected_lparen))
Francois Pichet6ad6f282010-12-07 00:08:36 +00002404 return ExprError();
2405
2406 TypeResult LhsTy = ParseTypeName();
2407 if (LhsTy.isInvalid()) {
2408 SkipUntil(tok::r_paren);
2409 return ExprError();
2410 }
2411
2412 if (ExpectAndConsume(tok::comma, diag::err_expected_comma)) {
2413 SkipUntil(tok::r_paren);
2414 return ExprError();
2415 }
2416
2417 TypeResult RhsTy = ParseTypeName();
2418 if (RhsTy.isInvalid()) {
2419 SkipUntil(tok::r_paren);
2420 return ExprError();
2421 }
2422
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002423 T.consumeClose();
Francois Pichet6ad6f282010-12-07 00:08:36 +00002424
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002425 return Actions.ActOnBinaryTypeTrait(BTT, Loc, LhsTy.get(), RhsTy.get(),
2426 T.getCloseLocation());
Francois Pichet6ad6f282010-12-07 00:08:36 +00002427}
2428
John Wiegley21ff2e52011-04-28 00:16:57 +00002429/// ParseArrayTypeTrait - Parse the built-in array type-trait
2430/// pseudo-functions.
2431///
2432/// primary-expression:
2433/// [Embarcadero] '__array_rank' '(' type-id ')'
2434/// [Embarcadero] '__array_extent' '(' type-id ',' expression ')'
2435///
2436ExprResult Parser::ParseArrayTypeTrait() {
2437 ArrayTypeTrait ATT = ArrayTypeTraitFromTokKind(Tok.getKind());
2438 SourceLocation Loc = ConsumeToken();
2439
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002440 BalancedDelimiterTracker T(*this, tok::l_paren);
2441 if (T.expectAndConsume(diag::err_expected_lparen))
John Wiegley21ff2e52011-04-28 00:16:57 +00002442 return ExprError();
2443
2444 TypeResult Ty = ParseTypeName();
2445 if (Ty.isInvalid()) {
2446 SkipUntil(tok::comma);
2447 SkipUntil(tok::r_paren);
2448 return ExprError();
2449 }
2450
2451 switch (ATT) {
2452 case ATT_ArrayRank: {
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002453 T.consumeClose();
2454 return Actions.ActOnArrayTypeTrait(ATT, Loc, Ty.get(), NULL,
2455 T.getCloseLocation());
John Wiegley21ff2e52011-04-28 00:16:57 +00002456 }
2457 case ATT_ArrayExtent: {
2458 if (ExpectAndConsume(tok::comma, diag::err_expected_comma)) {
2459 SkipUntil(tok::r_paren);
2460 return ExprError();
2461 }
2462
2463 ExprResult DimExpr = ParseExpression();
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002464 T.consumeClose();
John Wiegley21ff2e52011-04-28 00:16:57 +00002465
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002466 return Actions.ActOnArrayTypeTrait(ATT, Loc, Ty.get(), DimExpr.get(),
2467 T.getCloseLocation());
John Wiegley21ff2e52011-04-28 00:16:57 +00002468 }
John Wiegley21ff2e52011-04-28 00:16:57 +00002469 }
David Blaikie30263482012-01-20 21:50:17 +00002470 llvm_unreachable("Invalid ArrayTypeTrait!");
John Wiegley21ff2e52011-04-28 00:16:57 +00002471}
2472
John Wiegley55262202011-04-25 06:54:41 +00002473/// ParseExpressionTrait - Parse built-in expression-trait
2474/// pseudo-functions like __is_lvalue_expr( xxx ).
2475///
2476/// primary-expression:
2477/// [Embarcadero] expression-trait '(' expression ')'
2478///
2479ExprResult Parser::ParseExpressionTrait() {
2480 ExpressionTrait ET = ExpressionTraitFromTokKind(Tok.getKind());
2481 SourceLocation Loc = ConsumeToken();
2482
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002483 BalancedDelimiterTracker T(*this, tok::l_paren);
2484 if (T.expectAndConsume(diag::err_expected_lparen))
John Wiegley55262202011-04-25 06:54:41 +00002485 return ExprError();
2486
2487 ExprResult Expr = ParseExpression();
2488
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002489 T.consumeClose();
John Wiegley55262202011-04-25 06:54:41 +00002490
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002491 return Actions.ActOnExpressionTrait(ET, Loc, Expr.get(),
2492 T.getCloseLocation());
John Wiegley55262202011-04-25 06:54:41 +00002493}
2494
2495
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00002496/// ParseCXXAmbiguousParenExpression - We have parsed the left paren of a
2497/// parenthesized ambiguous type-id. This uses tentative parsing to disambiguate
2498/// based on the context past the parens.
John McCall60d7b3a2010-08-24 06:29:42 +00002499ExprResult
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00002500Parser::ParseCXXAmbiguousParenExpression(ParenParseOption &ExprType,
John McCallb3d87482010-08-24 05:47:05 +00002501 ParsedType &CastTy,
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002502 BalancedDelimiterTracker &Tracker) {
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00002503 assert(getLang().CPlusPlus && "Should only be called for C++!");
2504 assert(ExprType == CastExpr && "Compound literals are not ambiguous!");
2505 assert(isTypeIdInParens() && "Not a type-id!");
2506
John McCall60d7b3a2010-08-24 06:29:42 +00002507 ExprResult Result(true);
John McCallb3d87482010-08-24 05:47:05 +00002508 CastTy = ParsedType();
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00002509
2510 // We need to disambiguate a very ugly part of the C++ syntax:
2511 //
2512 // (T())x; - type-id
2513 // (T())*x; - type-id
2514 // (T())/x; - expression
2515 // (T()); - expression
2516 //
2517 // The bad news is that we cannot use the specialized tentative parser, since
2518 // it can only verify that the thing inside the parens can be parsed as
2519 // type-id, it is not useful for determining the context past the parens.
2520 //
2521 // The good news is that the parser can disambiguate this part without
Argyrios Kyrtzidisa558a892009-05-22 15:12:46 +00002522 // making any unnecessary Action calls.
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00002523 //
2524 // It uses a scheme similar to parsing inline methods. The parenthesized
2525 // tokens are cached, the context that follows is determined (possibly by
2526 // parsing a cast-expression), and then we re-introduce the cached tokens
2527 // into the token stream and parse them appropriately.
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00002528
Mike Stump1eb44332009-09-09 15:08:12 +00002529 ParenParseOption ParseAs;
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00002530 CachedTokens Toks;
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00002531
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00002532 // Store the tokens of the parentheses. We will parse them after we determine
2533 // the context that follows them.
Argyrios Kyrtzidis14b91622010-04-23 21:20:12 +00002534 if (!ConsumeAndStoreUntil(tok::r_paren, Toks)) {
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00002535 // We didn't find the ')' we expected.
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002536 Tracker.consumeClose();
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00002537 return ExprError();
2538 }
2539
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00002540 if (Tok.is(tok::l_brace)) {
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00002541 ParseAs = CompoundLiteral;
2542 } else {
2543 bool NotCastExpr;
Eli Friedmanb53f08a2009-05-25 19:41:42 +00002544 // FIXME: Special-case ++ and --: "(S())++;" is not a cast-expression
2545 if (Tok.is(tok::l_paren) && NextToken().is(tok::r_paren)) {
2546 NotCastExpr = true;
2547 } else {
2548 // Try parsing the cast-expression that may follow.
2549 // If it is not a cast-expression, NotCastExpr will be true and no token
2550 // will be consumed.
2551 Result = ParseCastExpression(false/*isUnaryExpression*/,
2552 false/*isAddressofOperand*/,
John McCallb3d87482010-08-24 05:47:05 +00002553 NotCastExpr,
Argyrios Kyrtzidis0a851832011-07-01 22:22:59 +00002554 // type-id has priority.
2555 true/*isTypeCast*/);
Eli Friedmanb53f08a2009-05-25 19:41:42 +00002556 }
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00002557
2558 // If we parsed a cast-expression, it's really a type-id, otherwise it's
2559 // an expression.
2560 ParseAs = NotCastExpr ? SimpleExpr : CastExpr;
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00002561 }
2562
Mike Stump1eb44332009-09-09 15:08:12 +00002563 // The current token should go after the cached tokens.
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00002564 Toks.push_back(Tok);
2565 // Re-enter the stored parenthesized tokens into the token stream, so we may
2566 // parse them now.
2567 PP.EnterTokenStream(Toks.data(), Toks.size(),
2568 true/*DisableMacroExpansion*/, false/*OwnsTokens*/);
2569 // Drop the current token and bring the first cached one. It's the same token
2570 // as when we entered this function.
2571 ConsumeAnyToken();
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00002572
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00002573 if (ParseAs >= CompoundLiteral) {
Argyrios Kyrtzidis0a851832011-07-01 22:22:59 +00002574 // Parse the type declarator.
2575 DeclSpec DS(AttrFactory);
2576 ParseSpecifierQualifierList(DS);
2577 Declarator DeclaratorInfo(DS, Declarator::TypeNameContext);
2578 ParseDeclarator(DeclaratorInfo);
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00002579
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00002580 // Match the ')'.
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002581 Tracker.consumeClose();
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00002582
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00002583 if (ParseAs == CompoundLiteral) {
2584 ExprType = CompoundLiteral;
Argyrios Kyrtzidis0a851832011-07-01 22:22:59 +00002585 TypeResult Ty = ParseTypeName();
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002586 return ParseCompoundLiteralExpression(Ty.get(),
2587 Tracker.getOpenLocation(),
2588 Tracker.getCloseLocation());
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00002589 }
Mike Stump1eb44332009-09-09 15:08:12 +00002590
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00002591 // We parsed '(' type-id ')' and the thing after it wasn't a '{'.
2592 assert(ParseAs == CastExpr);
2593
Argyrios Kyrtzidis0a851832011-07-01 22:22:59 +00002594 if (DeclaratorInfo.isInvalidType())
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00002595 return ExprError();
2596
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00002597 // Result is what ParseCastExpression returned earlier.
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00002598 if (!Result.isInvalid())
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002599 Result = Actions.ActOnCastExpr(getCurScope(), Tracker.getOpenLocation(),
2600 DeclaratorInfo, CastTy,
2601 Tracker.getCloseLocation(), Result.take());
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00002602 return move(Result);
2603 }
Mike Stump1eb44332009-09-09 15:08:12 +00002604
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00002605 // Not a compound literal, and not followed by a cast-expression.
2606 assert(ParseAs == SimpleExpr);
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00002607
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00002608 ExprType = SimpleExpr;
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00002609 Result = ParseExpression();
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00002610 if (!Result.isInvalid() && Tok.is(tok::r_paren))
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002611 Result = Actions.ActOnParenExpr(Tracker.getOpenLocation(),
2612 Tok.getLocation(), Result.take());
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00002613
2614 // Match the ')'.
2615 if (Result.isInvalid()) {
2616 SkipUntil(tok::r_paren);
2617 return ExprError();
2618 }
Mike Stump1eb44332009-09-09 15:08:12 +00002619
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002620 Tracker.consumeClose();
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00002621 return move(Result);
2622}