blob: 5041a212924a2fc987c5744630415c718e56ddec [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"
John McCall19510852010-08-20 18:27:03 +000016#include "clang/Sema/DeclSpec.h"
17#include "clang/Sema/ParsedTemplate.h"
Douglas Gregor3f9a0562009-11-03 01:35:08 +000018#include "llvm/Support/ErrorHandling.h"
19
Reid Spencer5f016e22007-07-11 17:01:13 +000020using namespace clang;
21
Mike Stump1eb44332009-09-09 15:08:12 +000022/// \brief Parse global scope or nested-name-specifier if present.
Douglas Gregor2dd078a2009-09-02 22:59:36 +000023///
24/// Parses a C++ global scope specifier ('::') or nested-name-specifier (which
Mike Stump1eb44332009-09-09 15:08:12 +000025/// may be preceded by '::'). Note that this routine will not parse ::new or
Douglas Gregor2dd078a2009-09-02 22:59:36 +000026/// ::delete; it will just leave them in the token stream.
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +000027///
28/// '::'[opt] nested-name-specifier
29/// '::'
30///
31/// nested-name-specifier:
32/// type-name '::'
33/// namespace-name '::'
34/// nested-name-specifier identifier '::'
Douglas Gregor2dd078a2009-09-02 22:59:36 +000035/// nested-name-specifier 'template'[opt] simple-template-id '::'
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +000036///
Douglas Gregor2dd078a2009-09-02 22:59:36 +000037///
Mike Stump1eb44332009-09-09 15:08:12 +000038/// \param SS the scope specifier that will be set to the parsed
Douglas Gregor2dd078a2009-09-02 22:59:36 +000039/// nested-name-specifier (or empty)
40///
Mike Stump1eb44332009-09-09 15:08:12 +000041/// \param ObjectType if this nested-name-specifier is being parsed following
Douglas Gregor2dd078a2009-09-02 22:59:36 +000042/// the "." or "->" of a member access expression, this parameter provides the
43/// type of the object whose members are being accessed.
44///
45/// \param EnteringContext whether we will be entering into the context of
46/// the nested-name-specifier after parsing it.
47///
Douglas Gregord4dca082010-02-24 18:44:31 +000048/// \param MayBePseudoDestructor When non-NULL, points to a flag that
49/// indicates whether this nested-name-specifier may be part of a
50/// pseudo-destructor name. In this case, the flag will be set false
51/// if we don't actually end up parsing a destructor name. Moreorover,
52/// if we do end up determining that we are parsing a destructor name,
53/// the last component of the nested-name-specifier is not parsed as
54/// part of the scope specifier.
55
Douglas Gregorb10cd042010-02-21 18:36:56 +000056/// member access expression, e.g., the \p T:: in \p p->T::m.
57///
John McCall9ba61662010-02-26 08:45:28 +000058/// \returns true if there was an error parsing a scope specifier
Douglas Gregor495c35d2009-08-25 22:51:20 +000059bool Parser::ParseOptionalCXXScopeSpecifier(CXXScopeSpec &SS,
John McCallb3d87482010-08-24 05:47:05 +000060 ParsedType ObjectType,
Douglas Gregorb10cd042010-02-21 18:36:56 +000061 bool EnteringContext,
Douglas Gregord4dca082010-02-24 18:44:31 +000062 bool *MayBePseudoDestructor) {
Argyrios Kyrtzidis4bdd91c2008-11-26 21:41:52 +000063 assert(getLang().CPlusPlus &&
Chris Lattner7452c6f2009-01-05 01:24:05 +000064 "Call sites of this function should be guarded by checking for C++");
Mike Stump1eb44332009-09-09 15:08:12 +000065
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +000066 if (Tok.is(tok::annot_cxxscope)) {
John McCallca0408f2010-08-23 06:44:23 +000067 SS.setScopeRep(static_cast<NestedNameSpecifier*>(Tok.getAnnotationValue()));
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +000068 SS.setRange(Tok.getAnnotationRange());
69 ConsumeToken();
John McCall9ba61662010-02-26 08:45:28 +000070 return false;
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +000071 }
Chris Lattnere607e802009-01-04 21:14:15 +000072
Douglas Gregor39a8de12009-02-25 19:37:18 +000073 bool HasScopeSpecifier = false;
74
Chris Lattner5b454732009-01-05 03:55:46 +000075 if (Tok.is(tok::coloncolon)) {
76 // ::new and ::delete aren't nested-name-specifiers.
77 tok::TokenKind NextKind = NextToken().getKind();
78 if (NextKind == tok::kw_new || NextKind == tok::kw_delete)
79 return false;
Mike Stump1eb44332009-09-09 15:08:12 +000080
Chris Lattner55a7cef2009-01-05 00:13:00 +000081 // '::' - Global scope qualifier.
Chris Lattner357089d2009-01-05 02:07:19 +000082 SourceLocation CCLoc = ConsumeToken();
Chris Lattner357089d2009-01-05 02:07:19 +000083 SS.setBeginLoc(CCLoc);
Douglas Gregor23c94db2010-07-02 17:43:08 +000084 SS.setScopeRep(Actions.ActOnCXXGlobalScopeSpecifier(getCurScope(), CCLoc));
Chris Lattner357089d2009-01-05 02:07:19 +000085 SS.setEndLoc(CCLoc);
Douglas Gregor39a8de12009-02-25 19:37:18 +000086 HasScopeSpecifier = true;
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +000087 }
88
Douglas Gregord4dca082010-02-24 18:44:31 +000089 bool CheckForDestructor = false;
90 if (MayBePseudoDestructor && *MayBePseudoDestructor) {
91 CheckForDestructor = true;
92 *MayBePseudoDestructor = false;
93 }
94
Douglas Gregor39a8de12009-02-25 19:37:18 +000095 while (true) {
Douglas Gregor2dd078a2009-09-02 22:59:36 +000096 if (HasScopeSpecifier) {
97 // C++ [basic.lookup.classref]p5:
98 // If the qualified-id has the form
Douglas Gregor3b6afbb2009-09-09 00:23:06 +000099 //
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000100 // ::class-name-or-namespace-name::...
Douglas Gregor3b6afbb2009-09-09 00:23:06 +0000101 //
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000102 // the class-name-or-namespace-name is looked up in global scope as a
103 // class-name or namespace-name.
104 //
105 // To implement this, we clear out the object type as soon as we've
106 // seen a leading '::' or part of a nested-name-specifier.
John McCallb3d87482010-08-24 05:47:05 +0000107 ObjectType = ParsedType();
Douglas Gregor81b747b2009-09-17 21:32:03 +0000108
109 if (Tok.is(tok::code_completion)) {
110 // Code completion for a nested-name-specifier, where the code
111 // code completion token follows the '::'.
Douglas Gregor23c94db2010-07-02 17:43:08 +0000112 Actions.CodeCompleteQualifiedId(getCurScope(), SS, EnteringContext);
Douglas Gregordc845342010-05-25 05:58:43 +0000113 ConsumeCodeCompletionToken();
Douglas Gregor81b747b2009-09-17 21:32:03 +0000114 }
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000115 }
Mike Stump1eb44332009-09-09 15:08:12 +0000116
Douglas Gregor39a8de12009-02-25 19:37:18 +0000117 // nested-name-specifier:
Chris Lattner77cf72a2009-06-26 03:47:46 +0000118 // nested-name-specifier 'template'[opt] simple-template-id '::'
119
120 // Parse the optional 'template' keyword, then make sure we have
121 // 'identifier <' after it.
122 if (Tok.is(tok::kw_template)) {
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000123 // If we don't have a scope specifier or an object type, this isn't a
Eli Friedmaneab975d2009-08-29 04:08:08 +0000124 // nested-name-specifier, since they aren't allowed to start with
125 // 'template'.
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000126 if (!HasScopeSpecifier && !ObjectType)
Eli Friedmaneab975d2009-08-29 04:08:08 +0000127 break;
128
Douglas Gregor7bb87fc2009-11-11 16:39:34 +0000129 TentativeParsingAction TPA(*this);
Chris Lattner77cf72a2009-06-26 03:47:46 +0000130 SourceLocation TemplateKWLoc = ConsumeToken();
Douglas Gregorca1bdd72009-11-04 00:56:37 +0000131
132 UnqualifiedId TemplateName;
133 if (Tok.is(tok::identifier)) {
Douglas Gregorca1bdd72009-11-04 00:56:37 +0000134 // Consume the identifier.
Douglas Gregor7bb87fc2009-11-11 16:39:34 +0000135 TemplateName.setIdentifier(Tok.getIdentifierInfo(), Tok.getLocation());
Douglas Gregorca1bdd72009-11-04 00:56:37 +0000136 ConsumeToken();
137 } else if (Tok.is(tok::kw_operator)) {
138 if (ParseUnqualifiedIdOperator(SS, EnteringContext, ObjectType,
Douglas Gregor7bb87fc2009-11-11 16:39:34 +0000139 TemplateName)) {
140 TPA.Commit();
Douglas Gregorca1bdd72009-11-04 00:56:37 +0000141 break;
Douglas Gregor7bb87fc2009-11-11 16:39:34 +0000142 }
Douglas Gregorca1bdd72009-11-04 00:56:37 +0000143
Sean Hunte6252d12009-11-28 08:58:14 +0000144 if (TemplateName.getKind() != UnqualifiedId::IK_OperatorFunctionId &&
145 TemplateName.getKind() != UnqualifiedId::IK_LiteralOperatorId) {
Douglas Gregorca1bdd72009-11-04 00:56:37 +0000146 Diag(TemplateName.getSourceRange().getBegin(),
147 diag::err_id_after_template_in_nested_name_spec)
148 << TemplateName.getSourceRange();
Douglas Gregor7bb87fc2009-11-11 16:39:34 +0000149 TPA.Commit();
Douglas Gregorca1bdd72009-11-04 00:56:37 +0000150 break;
151 }
152 } else {
Douglas Gregor7bb87fc2009-11-11 16:39:34 +0000153 TPA.Revert();
Chris Lattner77cf72a2009-06-26 03:47:46 +0000154 break;
155 }
Mike Stump1eb44332009-09-09 15:08:12 +0000156
Douglas Gregor7bb87fc2009-11-11 16:39:34 +0000157 // If the next token is not '<', we have a qualified-id that refers
158 // to a template name, such as T::template apply, but is not a
159 // template-id.
160 if (Tok.isNot(tok::less)) {
161 TPA.Revert();
162 break;
163 }
164
165 // Commit to parsing the template-id.
166 TPA.Commit();
Douglas Gregord6ab2322010-06-16 23:00:59 +0000167 TemplateTy Template;
Douglas Gregor23c94db2010-07-02 17:43:08 +0000168 if (TemplateNameKind TNK = Actions.ActOnDependentTemplateName(getCurScope(),
Douglas Gregord6ab2322010-06-16 23:00:59 +0000169 TemplateKWLoc,
170 SS,
171 TemplateName,
172 ObjectType,
173 EnteringContext,
174 Template)) {
175 if (AnnotateTemplateIdToken(Template, TNK, &SS, TemplateName,
176 TemplateKWLoc, false))
177 return true;
178 } else
John McCall9ba61662010-02-26 08:45:28 +0000179 return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000180
Chris Lattner77cf72a2009-06-26 03:47:46 +0000181 continue;
182 }
Mike Stump1eb44332009-09-09 15:08:12 +0000183
Douglas Gregor39a8de12009-02-25 19:37:18 +0000184 if (Tok.is(tok::annot_template_id) && NextToken().is(tok::coloncolon)) {
Mike Stump1eb44332009-09-09 15:08:12 +0000185 // We have
Douglas Gregor39a8de12009-02-25 19:37:18 +0000186 //
187 // simple-template-id '::'
188 //
189 // So we need to check whether the simple-template-id is of the
Douglas Gregorc45c2322009-03-31 00:43:58 +0000190 // right kind (it should name a type or be dependent), and then
191 // convert it into a type within the nested-name-specifier.
Mike Stump1eb44332009-09-09 15:08:12 +0000192 TemplateIdAnnotation *TemplateId
Douglas Gregor39a8de12009-02-25 19:37:18 +0000193 = static_cast<TemplateIdAnnotation *>(Tok.getAnnotationValue());
Douglas Gregord4dca082010-02-24 18:44:31 +0000194 if (CheckForDestructor && GetLookAheadToken(2).is(tok::tilde)) {
195 *MayBePseudoDestructor = true;
John McCall9ba61662010-02-26 08:45:28 +0000196 return false;
Douglas Gregord4dca082010-02-24 18:44:31 +0000197 }
198
Mike Stump1eb44332009-09-09 15:08:12 +0000199 if (TemplateId->Kind == TNK_Type_template ||
Douglas Gregorc45c2322009-03-31 00:43:58 +0000200 TemplateId->Kind == TNK_Dependent_template_name) {
Douglas Gregor31a19b62009-04-01 21:51:26 +0000201 AnnotateTemplateIdTokenAsType(&SS);
Douglas Gregor39a8de12009-02-25 19:37:18 +0000202
Mike Stump1eb44332009-09-09 15:08:12 +0000203 assert(Tok.is(tok::annot_typename) &&
Douglas Gregor39a8de12009-02-25 19:37:18 +0000204 "AnnotateTemplateIdTokenAsType isn't working");
Douglas Gregor39a8de12009-02-25 19:37:18 +0000205 Token TypeToken = Tok;
206 ConsumeToken();
207 assert(Tok.is(tok::coloncolon) && "NextToken() not working properly!");
208 SourceLocation CCLoc = ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +0000209
Douglas Gregor39a8de12009-02-25 19:37:18 +0000210 if (!HasScopeSpecifier) {
211 SS.setBeginLoc(TypeToken.getLocation());
212 HasScopeSpecifier = true;
213 }
Mike Stump1eb44332009-09-09 15:08:12 +0000214
John McCallb3d87482010-08-24 05:47:05 +0000215 if (ParsedType T = getTypeAnnotation(TypeToken)) {
216 CXXScopeTy *Scope =
217 Actions.ActOnCXXNestedNameSpecifier(getCurScope(), SS, T,
Douglas Gregor31a19b62009-04-01 21:51:26 +0000218 TypeToken.getAnnotationRange(),
John McCallb3d87482010-08-24 05:47:05 +0000219 CCLoc);
220 SS.setScopeRep(Scope);
221 } else
Douglas Gregor31a19b62009-04-01 21:51:26 +0000222 SS.setScopeRep(0);
Douglas Gregor39a8de12009-02-25 19:37:18 +0000223 SS.setEndLoc(CCLoc);
224 continue;
Chris Lattner67b9e832009-06-26 03:45:46 +0000225 }
Mike Stump1eb44332009-09-09 15:08:12 +0000226
Chris Lattner67b9e832009-06-26 03:45:46 +0000227 assert(false && "FIXME: Only type template names supported here");
Douglas Gregor39a8de12009-02-25 19:37:18 +0000228 }
229
Chris Lattner5c7f7862009-06-26 03:52:38 +0000230
231 // The rest of the nested-name-specifier possibilities start with
232 // tok::identifier.
233 if (Tok.isNot(tok::identifier))
234 break;
235
236 IdentifierInfo &II = *Tok.getIdentifierInfo();
237
238 // nested-name-specifier:
239 // type-name '::'
240 // namespace-name '::'
241 // nested-name-specifier identifier '::'
242 Token Next = NextToken();
Chris Lattner46646492009-12-07 01:36:53 +0000243
244 // If we get foo:bar, this is almost certainly a typo for foo::bar. Recover
245 // and emit a fixit hint for it.
Douglas Gregorb10cd042010-02-21 18:36:56 +0000246 if (Next.is(tok::colon) && !ColonIsSacred) {
Douglas Gregor23c94db2010-07-02 17:43:08 +0000247 if (Actions.IsInvalidUnlessNestedName(getCurScope(), SS, II, ObjectType,
Douglas Gregorb10cd042010-02-21 18:36:56 +0000248 EnteringContext) &&
249 // If the token after the colon isn't an identifier, it's still an
250 // error, but they probably meant something else strange so don't
251 // recover like this.
252 PP.LookAhead(1).is(tok::identifier)) {
253 Diag(Next, diag::err_unexected_colon_in_nested_name_spec)
Douglas Gregor849b2432010-03-31 17:46:05 +0000254 << FixItHint::CreateReplacement(Next.getLocation(), "::");
Douglas Gregorb10cd042010-02-21 18:36:56 +0000255
256 // Recover as if the user wrote '::'.
257 Next.setKind(tok::coloncolon);
258 }
Chris Lattner46646492009-12-07 01:36:53 +0000259 }
260
Chris Lattner5c7f7862009-06-26 03:52:38 +0000261 if (Next.is(tok::coloncolon)) {
Douglas Gregor77549082010-02-24 21:29:12 +0000262 if (CheckForDestructor && GetLookAheadToken(2).is(tok::tilde) &&
Douglas Gregor23c94db2010-07-02 17:43:08 +0000263 !Actions.isNonTypeNestedNameSpecifier(getCurScope(), SS, Tok.getLocation(),
Douglas Gregor77549082010-02-24 21:29:12 +0000264 II, ObjectType)) {
Douglas Gregord4dca082010-02-24 18:44:31 +0000265 *MayBePseudoDestructor = true;
John McCall9ba61662010-02-26 08:45:28 +0000266 return false;
Douglas Gregord4dca082010-02-24 18:44:31 +0000267 }
268
Chris Lattner5c7f7862009-06-26 03:52:38 +0000269 // We have an identifier followed by a '::'. Lookup this name
270 // as the name in a nested-name-specifier.
271 SourceLocation IdLoc = ConsumeToken();
Chris Lattner46646492009-12-07 01:36:53 +0000272 assert((Tok.is(tok::coloncolon) || Tok.is(tok::colon)) &&
273 "NextToken() not working properly!");
Chris Lattner5c7f7862009-06-26 03:52:38 +0000274 SourceLocation CCLoc = ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +0000275
Chris Lattner5c7f7862009-06-26 03:52:38 +0000276 if (!HasScopeSpecifier) {
277 SS.setBeginLoc(IdLoc);
278 HasScopeSpecifier = true;
279 }
Mike Stump1eb44332009-09-09 15:08:12 +0000280
Argyrios Kyrtzidis661c36b2010-06-22 11:30:04 +0000281 if (!SS.isInvalid())
282 SS.setScopeRep(
Douglas Gregor23c94db2010-07-02 17:43:08 +0000283 Actions.ActOnCXXNestedNameSpecifier(getCurScope(), SS, IdLoc, CCLoc, II,
Argyrios Kyrtzidis661c36b2010-06-22 11:30:04 +0000284 ObjectType, EnteringContext));
Chris Lattner5c7f7862009-06-26 03:52:38 +0000285 SS.setEndLoc(CCLoc);
286 continue;
287 }
Mike Stump1eb44332009-09-09 15:08:12 +0000288
Chris Lattner5c7f7862009-06-26 03:52:38 +0000289 // nested-name-specifier:
290 // type-name '<'
291 if (Next.is(tok::less)) {
292 TemplateTy Template;
Douglas Gregor014e88d2009-11-03 23:16:33 +0000293 UnqualifiedId TemplateName;
294 TemplateName.setIdentifier(&II, Tok.getLocation());
Douglas Gregor1fd6d442010-05-21 23:18:07 +0000295 bool MemberOfUnknownSpecialization;
Douglas Gregor23c94db2010-07-02 17:43:08 +0000296 if (TemplateNameKind TNK = Actions.isTemplateName(getCurScope(), SS,
Abramo Bagnara7c153532010-08-06 12:11:11 +0000297 /*hasTemplateKeyword=*/false,
Douglas Gregor014e88d2009-11-03 23:16:33 +0000298 TemplateName,
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000299 ObjectType,
Douglas Gregor495c35d2009-08-25 22:51:20 +0000300 EnteringContext,
Douglas Gregor1fd6d442010-05-21 23:18:07 +0000301 Template,
302 MemberOfUnknownSpecialization)) {
Chris Lattner5c7f7862009-06-26 03:52:38 +0000303 // We have found a template name, so annotate this this token
304 // with a template-id annotation. We do not permit the
305 // template-id to be translated into a type annotation,
306 // because some clients (e.g., the parsing of class template
307 // specializations) still want to see the original template-id
308 // token.
Douglas Gregorca1bdd72009-11-04 00:56:37 +0000309 ConsumeToken();
310 if (AnnotateTemplateIdToken(Template, TNK, &SS, TemplateName,
311 SourceLocation(), false))
John McCall9ba61662010-02-26 08:45:28 +0000312 return true;
Chris Lattner5c7f7862009-06-26 03:52:38 +0000313 continue;
Douglas Gregord5ab9b02010-05-21 23:43:39 +0000314 }
315
316 if (MemberOfUnknownSpecialization && (ObjectType || SS.isSet()) &&
317 IsTemplateArgumentList(1)) {
318 // We have something like t::getAs<T>, where getAs is a
319 // member of an unknown specialization. However, this will only
320 // parse correctly as a template, so suggest the keyword 'template'
321 // before 'getAs' and treat this as a dependent template name.
322 Diag(Tok.getLocation(), diag::err_missing_dependent_template_keyword)
323 << II.getName()
324 << FixItHint::CreateInsertion(Tok.getLocation(), "template ");
325
Douglas Gregord6ab2322010-06-16 23:00:59 +0000326 if (TemplateNameKind TNK
Douglas Gregor23c94db2010-07-02 17:43:08 +0000327 = Actions.ActOnDependentTemplateName(getCurScope(),
Douglas Gregord6ab2322010-06-16 23:00:59 +0000328 Tok.getLocation(), SS,
329 TemplateName, ObjectType,
330 EnteringContext, Template)) {
331 // Consume the identifier.
332 ConsumeToken();
333 if (AnnotateTemplateIdToken(Template, TNK, &SS, TemplateName,
334 SourceLocation(), false))
335 return true;
336 }
337 else
Douglas Gregord5ab9b02010-05-21 23:43:39 +0000338 return true;
Douglas Gregord6ab2322010-06-16 23:00:59 +0000339
Douglas Gregord5ab9b02010-05-21 23:43:39 +0000340 continue;
Chris Lattner5c7f7862009-06-26 03:52:38 +0000341 }
342 }
343
Douglas Gregor39a8de12009-02-25 19:37:18 +0000344 // We don't have any tokens that form the beginning of a
345 // nested-name-specifier, so we're done.
346 break;
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000347 }
Mike Stump1eb44332009-09-09 15:08:12 +0000348
Douglas Gregord4dca082010-02-24 18:44:31 +0000349 // Even if we didn't see any pieces of a nested-name-specifier, we
350 // still check whether there is a tilde in this position, which
351 // indicates a potential pseudo-destructor.
352 if (CheckForDestructor && Tok.is(tok::tilde))
353 *MayBePseudoDestructor = true;
354
John McCall9ba61662010-02-26 08:45:28 +0000355 return false;
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000356}
357
358/// ParseCXXIdExpression - Handle id-expression.
359///
360/// id-expression:
361/// unqualified-id
362/// qualified-id
363///
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000364/// qualified-id:
365/// '::'[opt] nested-name-specifier 'template'[opt] unqualified-id
366/// '::' identifier
367/// '::' operator-function-id
Douglas Gregoredce4dd2009-06-30 22:34:41 +0000368/// '::' template-id
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000369///
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000370/// NOTE: The standard specifies that, for qualified-id, the parser does not
371/// expect:
372///
373/// '::' conversion-function-id
374/// '::' '~' class-name
375///
376/// This may cause a slight inconsistency on diagnostics:
377///
378/// class C {};
379/// namespace A {}
380/// void f() {
381/// :: A :: ~ C(); // Some Sema error about using destructor with a
382/// // namespace.
383/// :: ~ C(); // Some Parser error like 'unexpected ~'.
384/// }
385///
386/// We simplify the parser a bit and make it work like:
387///
388/// qualified-id:
389/// '::'[opt] nested-name-specifier 'template'[opt] unqualified-id
390/// '::' unqualified-id
391///
392/// That way Sema can handle and report similar errors for namespaces and the
393/// global scope.
394///
Sebastian Redlebc07d52009-02-03 20:19:35 +0000395/// The isAddressOfOperand parameter indicates that this id-expression is a
396/// direct operand of the address-of operator. This is, besides member contexts,
397/// the only place where a qualified-id naming a non-static class member may
398/// appear.
399///
John McCall60d7b3a2010-08-24 06:29:42 +0000400ExprResult Parser::ParseCXXIdExpression(bool isAddressOfOperand) {
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000401 // qualified-id:
402 // '::'[opt] nested-name-specifier 'template'[opt] unqualified-id
403 // '::' unqualified-id
404 //
405 CXXScopeSpec SS;
John McCallb3d87482010-08-24 05:47:05 +0000406 ParseOptionalCXXScopeSpecifier(SS, ParsedType(), false);
Douglas Gregor02a24ee2009-11-03 16:56:39 +0000407
408 UnqualifiedId Name;
409 if (ParseUnqualifiedId(SS,
410 /*EnteringContext=*/false,
411 /*AllowDestructorName=*/false,
412 /*AllowConstructorName=*/false,
John McCallb3d87482010-08-24 05:47:05 +0000413 /*ObjectType=*/ ParsedType(),
Douglas Gregor02a24ee2009-11-03 16:56:39 +0000414 Name))
415 return ExprError();
John McCallb681b612009-11-22 02:49:43 +0000416
417 // This is only the direct operand of an & operator if it is not
418 // followed by a postfix-expression suffix.
John McCall9c72c602010-08-27 09:08:28 +0000419 if (isAddressOfOperand && isPostfixExpressionSuffixStart())
420 isAddressOfOperand = false;
Douglas Gregor02a24ee2009-11-03 16:56:39 +0000421
Douglas Gregor23c94db2010-07-02 17:43:08 +0000422 return Actions.ActOnIdExpression(getCurScope(), SS, Name, Tok.is(tok::l_paren),
Douglas Gregor02a24ee2009-11-03 16:56:39 +0000423 isAddressOfOperand);
424
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000425}
426
Reid Spencer5f016e22007-07-11 17:01:13 +0000427/// ParseCXXCasts - This handles the various ways to cast expressions to another
428/// type.
429///
430/// postfix-expression: [C++ 5.2p1]
431/// 'dynamic_cast' '<' type-name '>' '(' expression ')'
432/// 'static_cast' '<' type-name '>' '(' expression ')'
433/// 'reinterpret_cast' '<' type-name '>' '(' expression ')'
434/// 'const_cast' '<' type-name '>' '(' expression ')'
435///
John McCall60d7b3a2010-08-24 06:29:42 +0000436ExprResult Parser::ParseCXXCasts() {
Reid Spencer5f016e22007-07-11 17:01:13 +0000437 tok::TokenKind Kind = Tok.getKind();
438 const char *CastName = 0; // For error messages
439
440 switch (Kind) {
441 default: assert(0 && "Unknown C++ cast!"); abort();
442 case tok::kw_const_cast: CastName = "const_cast"; break;
443 case tok::kw_dynamic_cast: CastName = "dynamic_cast"; break;
444 case tok::kw_reinterpret_cast: CastName = "reinterpret_cast"; break;
445 case tok::kw_static_cast: CastName = "static_cast"; break;
446 }
447
448 SourceLocation OpLoc = ConsumeToken();
449 SourceLocation LAngleBracketLoc = Tok.getLocation();
450
451 if (ExpectAndConsume(tok::less, diag::err_expected_less_after, CastName))
Sebastian Redl20df9b72008-12-11 22:51:44 +0000452 return ExprError();
Reid Spencer5f016e22007-07-11 17:01:13 +0000453
Douglas Gregor809070a2009-02-18 17:45:20 +0000454 TypeResult CastTy = ParseTypeName();
Reid Spencer5f016e22007-07-11 17:01:13 +0000455 SourceLocation RAngleBracketLoc = Tok.getLocation();
456
Chris Lattner1ab3b962008-11-18 07:48:38 +0000457 if (ExpectAndConsume(tok::greater, diag::err_expected_greater))
Sebastian Redl20df9b72008-12-11 22:51:44 +0000458 return ExprError(Diag(LAngleBracketLoc, diag::note_matching) << "<");
Reid Spencer5f016e22007-07-11 17:01:13 +0000459
460 SourceLocation LParenLoc = Tok.getLocation(), RParenLoc;
461
Argyrios Kyrtzidis21e7ad22009-05-22 10:23:16 +0000462 if (ExpectAndConsume(tok::l_paren, diag::err_expected_lparen_after, CastName))
463 return ExprError();
Reid Spencer5f016e22007-07-11 17:01:13 +0000464
John McCall60d7b3a2010-08-24 06:29:42 +0000465 ExprResult Result = ParseExpression();
Mike Stump1eb44332009-09-09 15:08:12 +0000466
Argyrios Kyrtzidis21e7ad22009-05-22 10:23:16 +0000467 // Match the ')'.
Douglas Gregor27591ff2009-11-06 05:48:00 +0000468 RParenLoc = MatchRHSPunctuation(tok::r_paren, LParenLoc);
Reid Spencer5f016e22007-07-11 17:01:13 +0000469
Douglas Gregor809070a2009-02-18 17:45:20 +0000470 if (!Result.isInvalid() && !CastTy.isInvalid())
Douglas Gregor49badde2008-10-27 19:41:14 +0000471 Result = Actions.ActOnCXXNamedCast(OpLoc, Kind,
Sebastian Redlf53597f2009-03-15 17:47:39 +0000472 LAngleBracketLoc, CastTy.get(),
Douglas Gregor809070a2009-02-18 17:45:20 +0000473 RAngleBracketLoc,
John McCall9ae2f072010-08-23 23:25:46 +0000474 LParenLoc, Result.take(), RParenLoc);
Reid Spencer5f016e22007-07-11 17:01:13 +0000475
Sebastian Redl20df9b72008-12-11 22:51:44 +0000476 return move(Result);
Reid Spencer5f016e22007-07-11 17:01:13 +0000477}
478
Sebastian Redlc42e1182008-11-11 11:37:55 +0000479/// ParseCXXTypeid - This handles the C++ typeid expression.
480///
481/// postfix-expression: [C++ 5.2p1]
482/// 'typeid' '(' expression ')'
483/// 'typeid' '(' type-id ')'
484///
John McCall60d7b3a2010-08-24 06:29:42 +0000485ExprResult Parser::ParseCXXTypeid() {
Sebastian Redlc42e1182008-11-11 11:37:55 +0000486 assert(Tok.is(tok::kw_typeid) && "Not 'typeid'!");
487
488 SourceLocation OpLoc = ConsumeToken();
489 SourceLocation LParenLoc = Tok.getLocation();
490 SourceLocation RParenLoc;
491
492 // typeid expressions are always parenthesized.
493 if (ExpectAndConsume(tok::l_paren, diag::err_expected_lparen_after,
494 "typeid"))
Sebastian Redl20df9b72008-12-11 22:51:44 +0000495 return ExprError();
Sebastian Redlc42e1182008-11-11 11:37:55 +0000496
John McCall60d7b3a2010-08-24 06:29:42 +0000497 ExprResult Result;
Sebastian Redlc42e1182008-11-11 11:37:55 +0000498
499 if (isTypeIdInParens()) {
Douglas Gregor809070a2009-02-18 17:45:20 +0000500 TypeResult Ty = ParseTypeName();
Sebastian Redlc42e1182008-11-11 11:37:55 +0000501
502 // Match the ')'.
503 MatchRHSPunctuation(tok::r_paren, LParenLoc);
504
Douglas Gregor809070a2009-02-18 17:45:20 +0000505 if (Ty.isInvalid())
Sebastian Redl20df9b72008-12-11 22:51:44 +0000506 return ExprError();
Sebastian Redlc42e1182008-11-11 11:37:55 +0000507
508 Result = Actions.ActOnCXXTypeid(OpLoc, LParenLoc, /*isType=*/true,
John McCallb3d87482010-08-24 05:47:05 +0000509 Ty.get().getAsOpaquePtr(), RParenLoc);
Sebastian Redlc42e1182008-11-11 11:37:55 +0000510 } else {
Douglas Gregore0762c92009-06-19 23:52:42 +0000511 // C++0x [expr.typeid]p3:
Mike Stump1eb44332009-09-09 15:08:12 +0000512 // When typeid is applied to an expression other than an lvalue of a
513 // polymorphic class type [...] The expression is an unevaluated
Douglas Gregore0762c92009-06-19 23:52:42 +0000514 // operand (Clause 5).
515 //
Mike Stump1eb44332009-09-09 15:08:12 +0000516 // Note that we can't tell whether the expression is an lvalue of a
Douglas Gregore0762c92009-06-19 23:52:42 +0000517 // polymorphic class type until after we've parsed the expression, so
Douglas Gregorac7610d2009-06-22 20:57:11 +0000518 // we the expression is potentially potentially evaluated.
519 EnterExpressionEvaluationContext Unevaluated(Actions,
John McCallf312b1e2010-08-26 23:41:50 +0000520 Sema::PotentiallyPotentiallyEvaluated);
Sebastian Redlc42e1182008-11-11 11:37:55 +0000521 Result = ParseExpression();
522
523 // Match the ')'.
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000524 if (Result.isInvalid())
Sebastian Redlc42e1182008-11-11 11:37:55 +0000525 SkipUntil(tok::r_paren);
526 else {
527 MatchRHSPunctuation(tok::r_paren, LParenLoc);
528
529 Result = Actions.ActOnCXXTypeid(OpLoc, LParenLoc, /*isType=*/false,
Sebastian Redleffa8d12008-12-10 00:02:53 +0000530 Result.release(), RParenLoc);
Sebastian Redlc42e1182008-11-11 11:37:55 +0000531 }
532 }
533
Sebastian Redl20df9b72008-12-11 22:51:44 +0000534 return move(Result);
Sebastian Redlc42e1182008-11-11 11:37:55 +0000535}
536
Douglas Gregord4dca082010-02-24 18:44:31 +0000537/// \brief Parse a C++ pseudo-destructor expression after the base,
538/// . or -> operator, and nested-name-specifier have already been
539/// parsed.
540///
541/// postfix-expression: [C++ 5.2]
542/// postfix-expression . pseudo-destructor-name
543/// postfix-expression -> pseudo-destructor-name
544///
545/// pseudo-destructor-name:
546/// ::[opt] nested-name-specifier[opt] type-name :: ~type-name
547/// ::[opt] nested-name-specifier template simple-template-id ::
548/// ~type-name
549/// ::[opt] nested-name-specifier[opt] ~type-name
550///
John McCall60d7b3a2010-08-24 06:29:42 +0000551ExprResult
Douglas Gregord4dca082010-02-24 18:44:31 +0000552Parser::ParseCXXPseudoDestructor(ExprArg Base, SourceLocation OpLoc,
553 tok::TokenKind OpKind,
554 CXXScopeSpec &SS,
John McCallb3d87482010-08-24 05:47:05 +0000555 ParsedType ObjectType) {
Douglas Gregord4dca082010-02-24 18:44:31 +0000556 // We're parsing either a pseudo-destructor-name or a dependent
557 // member access that has the same form as a
558 // pseudo-destructor-name. We parse both in the same way and let
559 // the action model sort them out.
560 //
561 // Note that the ::[opt] nested-name-specifier[opt] has already
562 // been parsed, and if there was a simple-template-id, it has
563 // been coalesced into a template-id annotation token.
564 UnqualifiedId FirstTypeName;
565 SourceLocation CCLoc;
566 if (Tok.is(tok::identifier)) {
567 FirstTypeName.setIdentifier(Tok.getIdentifierInfo(), Tok.getLocation());
568 ConsumeToken();
569 assert(Tok.is(tok::coloncolon) &&"ParseOptionalCXXScopeSpecifier fail");
570 CCLoc = ConsumeToken();
571 } else if (Tok.is(tok::annot_template_id)) {
572 FirstTypeName.setTemplateId(
573 (TemplateIdAnnotation *)Tok.getAnnotationValue());
574 ConsumeToken();
575 assert(Tok.is(tok::coloncolon) &&"ParseOptionalCXXScopeSpecifier fail");
576 CCLoc = ConsumeToken();
577 } else {
578 FirstTypeName.setIdentifier(0, SourceLocation());
579 }
580
581 // Parse the tilde.
582 assert(Tok.is(tok::tilde) && "ParseOptionalCXXScopeSpecifier fail");
583 SourceLocation TildeLoc = ConsumeToken();
584 if (!Tok.is(tok::identifier)) {
585 Diag(Tok, diag::err_destructor_tilde_identifier);
586 return ExprError();
587 }
588
589 // Parse the second type.
590 UnqualifiedId SecondTypeName;
591 IdentifierInfo *Name = Tok.getIdentifierInfo();
592 SourceLocation NameLoc = ConsumeToken();
593 SecondTypeName.setIdentifier(Name, NameLoc);
594
595 // If there is a '<', the second type name is a template-id. Parse
596 // it as such.
597 if (Tok.is(tok::less) &&
598 ParseUnqualifiedIdTemplateId(SS, Name, NameLoc, false, ObjectType,
Douglas Gregor0278e122010-05-05 05:58:24 +0000599 SecondTypeName, /*AssumeTemplateName=*/true,
600 /*TemplateKWLoc*/SourceLocation()))
Douglas Gregord4dca082010-02-24 18:44:31 +0000601 return ExprError();
602
John McCall9ae2f072010-08-23 23:25:46 +0000603 return Actions.ActOnPseudoDestructorExpr(getCurScope(), Base,
604 OpLoc, OpKind,
Douglas Gregord4dca082010-02-24 18:44:31 +0000605 SS, FirstTypeName, CCLoc,
606 TildeLoc, SecondTypeName,
607 Tok.is(tok::l_paren));
608}
609
Reid Spencer5f016e22007-07-11 17:01:13 +0000610/// ParseCXXBoolLiteral - This handles the C++ Boolean literals.
611///
612/// boolean-literal: [C++ 2.13.5]
613/// 'true'
614/// 'false'
John McCall60d7b3a2010-08-24 06:29:42 +0000615ExprResult Parser::ParseCXXBoolLiteral() {
Reid Spencer5f016e22007-07-11 17:01:13 +0000616 tok::TokenKind Kind = Tok.getKind();
Sebastian Redlf53597f2009-03-15 17:47:39 +0000617 return Actions.ActOnCXXBoolLiteral(ConsumeToken(), Kind);
Reid Spencer5f016e22007-07-11 17:01:13 +0000618}
Chris Lattner50dd2892008-02-26 00:51:44 +0000619
620/// ParseThrowExpression - This handles the C++ throw expression.
621///
622/// throw-expression: [C++ 15]
623/// 'throw' assignment-expression[opt]
John McCall60d7b3a2010-08-24 06:29:42 +0000624ExprResult Parser::ParseThrowExpression() {
Chris Lattner50dd2892008-02-26 00:51:44 +0000625 assert(Tok.is(tok::kw_throw) && "Not throw!");
Chris Lattner50dd2892008-02-26 00:51:44 +0000626 SourceLocation ThrowLoc = ConsumeToken(); // Eat the throw token.
Sebastian Redl20df9b72008-12-11 22:51:44 +0000627
Chris Lattner2a2819a2008-04-06 06:02:23 +0000628 // If the current token isn't the start of an assignment-expression,
629 // then the expression is not present. This handles things like:
630 // "C ? throw : (void)42", which is crazy but legal.
631 switch (Tok.getKind()) { // FIXME: move this predicate somewhere common.
632 case tok::semi:
633 case tok::r_paren:
634 case tok::r_square:
635 case tok::r_brace:
636 case tok::colon:
637 case tok::comma:
John McCall9ae2f072010-08-23 23:25:46 +0000638 return Actions.ActOnCXXThrow(ThrowLoc, 0);
Chris Lattner50dd2892008-02-26 00:51:44 +0000639
Chris Lattner2a2819a2008-04-06 06:02:23 +0000640 default:
John McCall60d7b3a2010-08-24 06:29:42 +0000641 ExprResult Expr(ParseAssignmentExpression());
Sebastian Redl20df9b72008-12-11 22:51:44 +0000642 if (Expr.isInvalid()) return move(Expr);
John McCall9ae2f072010-08-23 23:25:46 +0000643 return Actions.ActOnCXXThrow(ThrowLoc, Expr.take());
Chris Lattner2a2819a2008-04-06 06:02:23 +0000644 }
Chris Lattner50dd2892008-02-26 00:51:44 +0000645}
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +0000646
647/// ParseCXXThis - This handles the C++ 'this' pointer.
648///
649/// C++ 9.3.2: In the body of a non-static member function, the keyword this is
650/// a non-lvalue expression whose value is the address of the object for which
651/// the function is called.
John McCall60d7b3a2010-08-24 06:29:42 +0000652ExprResult Parser::ParseCXXThis() {
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +0000653 assert(Tok.is(tok::kw_this) && "Not 'this'!");
654 SourceLocation ThisLoc = ConsumeToken();
Sebastian Redlf53597f2009-03-15 17:47:39 +0000655 return Actions.ActOnCXXThis(ThisLoc);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +0000656}
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000657
658/// ParseCXXTypeConstructExpression - Parse construction of a specified type.
659/// Can be interpreted either as function-style casting ("int(x)")
660/// or class type construction ("ClassType(x,y,z)")
661/// or creation of a value-initialized type ("int()").
662///
663/// postfix-expression: [C++ 5.2p1]
664/// simple-type-specifier '(' expression-list[opt] ')' [C++ 5.2.3]
665/// typename-specifier '(' expression-list[opt] ')' [TODO]
666///
John McCall60d7b3a2010-08-24 06:29:42 +0000667ExprResult
Sebastian Redl20df9b72008-12-11 22:51:44 +0000668Parser::ParseCXXTypeConstructExpression(const DeclSpec &DS) {
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000669 Declarator DeclaratorInfo(DS, Declarator::TypeNameContext);
John McCallb3d87482010-08-24 05:47:05 +0000670 ParsedType TypeRep = Actions.ActOnTypeName(getCurScope(), DeclaratorInfo).get();
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000671
672 assert(Tok.is(tok::l_paren) && "Expected '('!");
673 SourceLocation LParenLoc = ConsumeParen();
674
Sebastian Redla55e52c2008-11-25 22:21:31 +0000675 ExprVector Exprs(Actions);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000676 CommaLocsTy CommaLocs;
677
678 if (Tok.isNot(tok::r_paren)) {
679 if (ParseExpressionList(Exprs, CommaLocs)) {
680 SkipUntil(tok::r_paren);
Sebastian Redl20df9b72008-12-11 22:51:44 +0000681 return ExprError();
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000682 }
683 }
684
685 // Match the ')'.
686 SourceLocation RParenLoc = MatchRHSPunctuation(tok::r_paren, LParenLoc);
687
Sebastian Redlef0cb8e2009-07-29 13:50:23 +0000688 // TypeRep could be null, if it references an invalid typedef.
689 if (!TypeRep)
690 return ExprError();
691
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000692 assert((Exprs.size() == 0 || Exprs.size()-1 == CommaLocs.size())&&
693 "Unexpected number of commas!");
Sebastian Redlf53597f2009-03-15 17:47:39 +0000694 return Actions.ActOnCXXTypeConstructExpr(DS.getSourceRange(), TypeRep,
695 LParenLoc, move_arg(Exprs),
Jay Foadbeaaccd2009-05-21 09:52:38 +0000696 CommaLocs.data(), RParenLoc);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000697}
698
Douglas Gregor99e9b4d2009-11-25 00:27:52 +0000699/// ParseCXXCondition - if/switch/while condition expression.
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +0000700///
701/// condition:
702/// expression
703/// type-specifier-seq declarator '=' assignment-expression
704/// [GNU] type-specifier-seq declarator simple-asm-expr[opt] attributes[opt]
705/// '=' assignment-expression
706///
Douglas Gregor99e9b4d2009-11-25 00:27:52 +0000707/// \param ExprResult if the condition was parsed as an expression, the
708/// parsed expression.
709///
710/// \param DeclResult if the condition was parsed as a declaration, the
711/// parsed declaration.
712///
Douglas Gregor586596f2010-05-06 17:25:47 +0000713/// \param Loc The location of the start of the statement that requires this
714/// condition, e.g., the "for" in a for loop.
715///
716/// \param ConvertToBoolean Whether the condition expression should be
717/// converted to a boolean value.
718///
Douglas Gregor99e9b4d2009-11-25 00:27:52 +0000719/// \returns true if there was a parsing, false otherwise.
John McCall60d7b3a2010-08-24 06:29:42 +0000720bool Parser::ParseCXXCondition(ExprResult &ExprOut,
721 Decl *&DeclOut,
Douglas Gregor586596f2010-05-06 17:25:47 +0000722 SourceLocation Loc,
723 bool ConvertToBoolean) {
Douglas Gregor01dfea02010-01-10 23:08:15 +0000724 if (Tok.is(tok::code_completion)) {
John McCallf312b1e2010-08-26 23:41:50 +0000725 Actions.CodeCompleteOrdinaryName(getCurScope(), Sema::PCC_Condition);
Douglas Gregordc845342010-05-25 05:58:43 +0000726 ConsumeCodeCompletionToken();
Douglas Gregor01dfea02010-01-10 23:08:15 +0000727 }
728
Douglas Gregor99e9b4d2009-11-25 00:27:52 +0000729 if (!isCXXConditionDeclaration()) {
Douglas Gregor586596f2010-05-06 17:25:47 +0000730 // Parse the expression.
John McCall60d7b3a2010-08-24 06:29:42 +0000731 ExprOut = ParseExpression(); // expression
732 DeclOut = 0;
733 if (ExprOut.isInvalid())
Douglas Gregor586596f2010-05-06 17:25:47 +0000734 return true;
735
736 // If required, convert to a boolean value.
737 if (ConvertToBoolean)
John McCall60d7b3a2010-08-24 06:29:42 +0000738 ExprOut
739 = Actions.ActOnBooleanCondition(getCurScope(), Loc, ExprOut.get());
740 return ExprOut.isInvalid();
Douglas Gregor99e9b4d2009-11-25 00:27:52 +0000741 }
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +0000742
743 // type-specifier-seq
744 DeclSpec DS;
745 ParseSpecifierQualifierList(DS);
746
747 // declarator
748 Declarator DeclaratorInfo(DS, Declarator::ConditionContext);
749 ParseDeclarator(DeclaratorInfo);
750
751 // simple-asm-expr[opt]
752 if (Tok.is(tok::kw_asm)) {
Sebastian Redlab197ba2009-02-09 18:23:29 +0000753 SourceLocation Loc;
John McCall60d7b3a2010-08-24 06:29:42 +0000754 ExprResult AsmLabel(ParseSimpleAsm(&Loc));
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000755 if (AsmLabel.isInvalid()) {
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +0000756 SkipUntil(tok::semi);
Douglas Gregor99e9b4d2009-11-25 00:27:52 +0000757 return true;
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +0000758 }
Sebastian Redleffa8d12008-12-10 00:02:53 +0000759 DeclaratorInfo.setAsmLabel(AsmLabel.release());
Sebastian Redlab197ba2009-02-09 18:23:29 +0000760 DeclaratorInfo.SetRangeEnd(Loc);
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +0000761 }
762
763 // If attributes are present, parse them.
Sebastian Redlab197ba2009-02-09 18:23:29 +0000764 if (Tok.is(tok::kw___attribute)) {
765 SourceLocation Loc;
Sean Huntbbd37c62009-11-21 08:43:09 +0000766 AttributeList *AttrList = ParseGNUAttributes(&Loc);
Sebastian Redlab197ba2009-02-09 18:23:29 +0000767 DeclaratorInfo.AddAttributes(AttrList, Loc);
768 }
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +0000769
Douglas Gregor99e9b4d2009-11-25 00:27:52 +0000770 // Type-check the declaration itself.
John McCall60d7b3a2010-08-24 06:29:42 +0000771 DeclResult Dcl = Actions.ActOnCXXConditionDeclaration(getCurScope(),
Douglas Gregor99e9b4d2009-11-25 00:27:52 +0000772 DeclaratorInfo);
John McCall60d7b3a2010-08-24 06:29:42 +0000773 DeclOut = Dcl.get();
774 ExprOut = ExprError();
Douglas Gregor99e9b4d2009-11-25 00:27:52 +0000775
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +0000776 // '=' assignment-expression
Douglas Gregor99e9b4d2009-11-25 00:27:52 +0000777 if (Tok.is(tok::equal)) {
778 SourceLocation EqualLoc = ConsumeToken();
John McCall60d7b3a2010-08-24 06:29:42 +0000779 ExprResult AssignExpr(ParseAssignmentExpression());
Douglas Gregor99e9b4d2009-11-25 00:27:52 +0000780 if (!AssignExpr.isInvalid())
John McCall60d7b3a2010-08-24 06:29:42 +0000781 Actions.AddInitializerToDecl(DeclOut, AssignExpr.take());
Douglas Gregor99e9b4d2009-11-25 00:27:52 +0000782 } else {
783 // FIXME: C++0x allows a braced-init-list
784 Diag(Tok, diag::err_expected_equal_after_declarator);
785 }
786
Douglas Gregor586596f2010-05-06 17:25:47 +0000787 // FIXME: Build a reference to this declaration? Convert it to bool?
788 // (This is currently handled by Sema).
789
Douglas Gregor99e9b4d2009-11-25 00:27:52 +0000790 return false;
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +0000791}
792
Douglas Gregor6aa14d82010-04-21 22:36:40 +0000793/// \brief Determine whether the current token starts a C++
794/// simple-type-specifier.
795bool Parser::isCXXSimpleTypeSpecifier() const {
796 switch (Tok.getKind()) {
797 case tok::annot_typename:
798 case tok::kw_short:
799 case tok::kw_long:
800 case tok::kw_signed:
801 case tok::kw_unsigned:
802 case tok::kw_void:
803 case tok::kw_char:
804 case tok::kw_int:
805 case tok::kw_float:
806 case tok::kw_double:
807 case tok::kw_wchar_t:
808 case tok::kw_char16_t:
809 case tok::kw_char32_t:
810 case tok::kw_bool:
811 // FIXME: C++0x decltype support.
812 // GNU typeof support.
813 case tok::kw_typeof:
814 return true;
815
816 default:
817 break;
818 }
819
820 return false;
821}
822
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000823/// ParseCXXSimpleTypeSpecifier - [C++ 7.1.5.2] Simple type specifiers.
824/// This should only be called when the current token is known to be part of
825/// simple-type-specifier.
826///
827/// simple-type-specifier:
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000828/// '::'[opt] nested-name-specifier[opt] type-name
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000829/// '::'[opt] nested-name-specifier 'template' simple-template-id [TODO]
830/// char
831/// wchar_t
832/// bool
833/// short
834/// int
835/// long
836/// signed
837/// unsigned
838/// float
839/// double
840/// void
841/// [GNU] typeof-specifier
842/// [C++0x] auto [TODO]
843///
844/// type-name:
845/// class-name
846/// enum-name
847/// typedef-name
848///
849void Parser::ParseCXXSimpleTypeSpecifier(DeclSpec &DS) {
850 DS.SetRangeStart(Tok.getLocation());
851 const char *PrevSpec;
John McCallfec54012009-08-03 20:12:06 +0000852 unsigned DiagID;
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000853 SourceLocation Loc = Tok.getLocation();
Mike Stump1eb44332009-09-09 15:08:12 +0000854
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000855 switch (Tok.getKind()) {
Chris Lattner55a7cef2009-01-05 00:13:00 +0000856 case tok::identifier: // foo::bar
857 case tok::coloncolon: // ::foo::bar
858 assert(0 && "Annotation token should already be formed!");
Mike Stump1eb44332009-09-09 15:08:12 +0000859 default:
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000860 assert(0 && "Not a simple-type-specifier token!");
861 abort();
Chris Lattner55a7cef2009-01-05 00:13:00 +0000862
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000863 // type-name
Chris Lattnerb31757b2009-01-06 05:06:21 +0000864 case tok::annot_typename: {
John McCallfec54012009-08-03 20:12:06 +0000865 DS.SetTypeSpecType(DeclSpec::TST_typename, Loc, PrevSpec, DiagID,
John McCallb3d87482010-08-24 05:47:05 +0000866 getTypeAnnotation(Tok));
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000867 break;
868 }
Mike Stump1eb44332009-09-09 15:08:12 +0000869
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000870 // builtin types
871 case tok::kw_short:
John McCallfec54012009-08-03 20:12:06 +0000872 DS.SetTypeSpecWidth(DeclSpec::TSW_short, Loc, PrevSpec, DiagID);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000873 break;
874 case tok::kw_long:
John McCallfec54012009-08-03 20:12:06 +0000875 DS.SetTypeSpecWidth(DeclSpec::TSW_long, Loc, PrevSpec, DiagID);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000876 break;
877 case tok::kw_signed:
John McCallfec54012009-08-03 20:12:06 +0000878 DS.SetTypeSpecSign(DeclSpec::TSS_signed, Loc, PrevSpec, DiagID);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000879 break;
880 case tok::kw_unsigned:
John McCallfec54012009-08-03 20:12:06 +0000881 DS.SetTypeSpecSign(DeclSpec::TSS_unsigned, Loc, PrevSpec, DiagID);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000882 break;
883 case tok::kw_void:
John McCallfec54012009-08-03 20:12:06 +0000884 DS.SetTypeSpecType(DeclSpec::TST_void, Loc, PrevSpec, DiagID);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000885 break;
886 case tok::kw_char:
John McCallfec54012009-08-03 20:12:06 +0000887 DS.SetTypeSpecType(DeclSpec::TST_char, Loc, PrevSpec, DiagID);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000888 break;
889 case tok::kw_int:
John McCallfec54012009-08-03 20:12:06 +0000890 DS.SetTypeSpecType(DeclSpec::TST_int, Loc, PrevSpec, DiagID);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000891 break;
892 case tok::kw_float:
John McCallfec54012009-08-03 20:12:06 +0000893 DS.SetTypeSpecType(DeclSpec::TST_float, Loc, PrevSpec, DiagID);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000894 break;
895 case tok::kw_double:
John McCallfec54012009-08-03 20:12:06 +0000896 DS.SetTypeSpecType(DeclSpec::TST_double, Loc, PrevSpec, DiagID);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000897 break;
898 case tok::kw_wchar_t:
John McCallfec54012009-08-03 20:12:06 +0000899 DS.SetTypeSpecType(DeclSpec::TST_wchar, Loc, PrevSpec, DiagID);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000900 break;
Alisdair Meredithf5c209d2009-07-14 06:30:34 +0000901 case tok::kw_char16_t:
John McCallfec54012009-08-03 20:12:06 +0000902 DS.SetTypeSpecType(DeclSpec::TST_char16, Loc, PrevSpec, DiagID);
Alisdair Meredithf5c209d2009-07-14 06:30:34 +0000903 break;
904 case tok::kw_char32_t:
John McCallfec54012009-08-03 20:12:06 +0000905 DS.SetTypeSpecType(DeclSpec::TST_char32, Loc, PrevSpec, DiagID);
Alisdair Meredithf5c209d2009-07-14 06:30:34 +0000906 break;
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000907 case tok::kw_bool:
John McCallfec54012009-08-03 20:12:06 +0000908 DS.SetTypeSpecType(DeclSpec::TST_bool, Loc, PrevSpec, DiagID);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000909 break;
Mike Stump1eb44332009-09-09 15:08:12 +0000910
Douglas Gregor6aa14d82010-04-21 22:36:40 +0000911 // FIXME: C++0x decltype support.
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000912 // GNU typeof support.
913 case tok::kw_typeof:
914 ParseTypeofSpecifier(DS);
Douglas Gregor9b3064b2009-04-01 22:41:11 +0000915 DS.Finish(Diags, PP);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000916 return;
917 }
Chris Lattnerb31757b2009-01-06 05:06:21 +0000918 if (Tok.is(tok::annot_typename))
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000919 DS.SetRangeEnd(Tok.getAnnotationEndLoc());
920 else
921 DS.SetRangeEnd(Tok.getLocation());
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000922 ConsumeToken();
Douglas Gregor9b3064b2009-04-01 22:41:11 +0000923 DS.Finish(Diags, PP);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000924}
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +0000925
Douglas Gregor2f1bc522008-11-07 20:08:42 +0000926/// ParseCXXTypeSpecifierSeq - Parse a C++ type-specifier-seq (C++
927/// [dcl.name]), which is a non-empty sequence of type-specifiers,
928/// e.g., "const short int". Note that the DeclSpec is *not* finished
929/// by parsing the type-specifier-seq, because these sequences are
930/// typically followed by some form of declarator. Returns true and
931/// emits diagnostics if this is not a type-specifier-seq, false
932/// otherwise.
933///
934/// type-specifier-seq: [C++ 8.1]
935/// type-specifier type-specifier-seq[opt]
936///
937bool Parser::ParseCXXTypeSpecifierSeq(DeclSpec &DS) {
938 DS.SetRangeStart(Tok.getLocation());
939 const char *PrevSpec = 0;
John McCallfec54012009-08-03 20:12:06 +0000940 unsigned DiagID;
941 bool isInvalid = 0;
Douglas Gregor2f1bc522008-11-07 20:08:42 +0000942
943 // Parse one or more of the type specifiers.
Sebastian Redld9bafa72010-02-03 21:21:43 +0000944 if (!ParseOptionalTypeSpecifier(DS, isInvalid, PrevSpec, DiagID,
945 ParsedTemplateInfo(), /*SuppressDeclarations*/true)) {
Chris Lattner1ab3b962008-11-18 07:48:38 +0000946 Diag(Tok, diag::err_operator_missing_type_specifier);
Douglas Gregor2f1bc522008-11-07 20:08:42 +0000947 return true;
948 }
Mike Stump1eb44332009-09-09 15:08:12 +0000949
Sebastian Redld9bafa72010-02-03 21:21:43 +0000950 while (ParseOptionalTypeSpecifier(DS, isInvalid, PrevSpec, DiagID,
951 ParsedTemplateInfo(), /*SuppressDeclarations*/true))
952 {}
Douglas Gregor2f1bc522008-11-07 20:08:42 +0000953
Douglas Gregor396a9f22010-02-24 23:13:13 +0000954 DS.Finish(Diags, PP);
Douglas Gregor2f1bc522008-11-07 20:08:42 +0000955 return false;
956}
957
Douglas Gregor3f9a0562009-11-03 01:35:08 +0000958/// \brief Finish parsing a C++ unqualified-id that is a template-id of
959/// some form.
960///
961/// This routine is invoked when a '<' is encountered after an identifier or
962/// operator-function-id is parsed by \c ParseUnqualifiedId() to determine
963/// whether the unqualified-id is actually a template-id. This routine will
964/// then parse the template arguments and form the appropriate template-id to
965/// return to the caller.
966///
967/// \param SS the nested-name-specifier that precedes this template-id, if
968/// we're actually parsing a qualified-id.
969///
970/// \param Name for constructor and destructor names, this is the actual
971/// identifier that may be a template-name.
972///
973/// \param NameLoc the location of the class-name in a constructor or
974/// destructor.
975///
976/// \param EnteringContext whether we're entering the scope of the
977/// nested-name-specifier.
978///
Douglas Gregor46df8cc2009-11-03 21:24:04 +0000979/// \param ObjectType if this unqualified-id occurs within a member access
980/// expression, the type of the base object whose member is being accessed.
981///
Douglas Gregor3f9a0562009-11-03 01:35:08 +0000982/// \param Id as input, describes the template-name or operator-function-id
983/// that precedes the '<'. If template arguments were parsed successfully,
984/// will be updated with the template-id.
985///
Douglas Gregord4dca082010-02-24 18:44:31 +0000986/// \param AssumeTemplateId When true, this routine will assume that the name
987/// refers to a template without performing name lookup to verify.
988///
Douglas Gregor3f9a0562009-11-03 01:35:08 +0000989/// \returns true if a parse error occurred, false otherwise.
990bool Parser::ParseUnqualifiedIdTemplateId(CXXScopeSpec &SS,
991 IdentifierInfo *Name,
992 SourceLocation NameLoc,
993 bool EnteringContext,
John McCallb3d87482010-08-24 05:47:05 +0000994 ParsedType ObjectType,
Douglas Gregord4dca082010-02-24 18:44:31 +0000995 UnqualifiedId &Id,
Douglas Gregor0278e122010-05-05 05:58:24 +0000996 bool AssumeTemplateId,
997 SourceLocation TemplateKWLoc) {
998 assert((AssumeTemplateId || Tok.is(tok::less)) &&
999 "Expected '<' to finish parsing a template-id");
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001000
1001 TemplateTy Template;
1002 TemplateNameKind TNK = TNK_Non_template;
1003 switch (Id.getKind()) {
1004 case UnqualifiedId::IK_Identifier:
Douglas Gregor014e88d2009-11-03 23:16:33 +00001005 case UnqualifiedId::IK_OperatorFunctionId:
Sean Hunte6252d12009-11-28 08:58:14 +00001006 case UnqualifiedId::IK_LiteralOperatorId:
Douglas Gregord4dca082010-02-24 18:44:31 +00001007 if (AssumeTemplateId) {
Douglas Gregor23c94db2010-07-02 17:43:08 +00001008 TNK = Actions.ActOnDependentTemplateName(getCurScope(), TemplateKWLoc, SS,
Douglas Gregord6ab2322010-06-16 23:00:59 +00001009 Id, ObjectType, EnteringContext,
1010 Template);
1011 if (TNK == TNK_Non_template)
1012 return true;
Douglas Gregor1fd6d442010-05-21 23:18:07 +00001013 } else {
1014 bool MemberOfUnknownSpecialization;
Abramo Bagnara7c153532010-08-06 12:11:11 +00001015 TNK = Actions.isTemplateName(getCurScope(), SS,
1016 TemplateKWLoc.isValid(), Id,
1017 ObjectType, EnteringContext, Template,
Douglas Gregor1fd6d442010-05-21 23:18:07 +00001018 MemberOfUnknownSpecialization);
1019
1020 if (TNK == TNK_Non_template && MemberOfUnknownSpecialization &&
1021 ObjectType && IsTemplateArgumentList()) {
1022 // We have something like t->getAs<T>(), where getAs is a
1023 // member of an unknown specialization. However, this will only
1024 // parse correctly as a template, so suggest the keyword 'template'
1025 // before 'getAs' and treat this as a dependent template name.
1026 std::string Name;
1027 if (Id.getKind() == UnqualifiedId::IK_Identifier)
1028 Name = Id.Identifier->getName();
1029 else {
1030 Name = "operator ";
1031 if (Id.getKind() == UnqualifiedId::IK_OperatorFunctionId)
1032 Name += getOperatorSpelling(Id.OperatorFunctionId.Operator);
1033 else
1034 Name += Id.Identifier->getName();
1035 }
1036 Diag(Id.StartLocation, diag::err_missing_dependent_template_keyword)
1037 << Name
1038 << FixItHint::CreateInsertion(Id.StartLocation, "template ");
Douglas Gregor23c94db2010-07-02 17:43:08 +00001039 TNK = Actions.ActOnDependentTemplateName(getCurScope(), TemplateKWLoc,
Douglas Gregord6ab2322010-06-16 23:00:59 +00001040 SS, Id, ObjectType,
1041 EnteringContext, Template);
1042 if (TNK == TNK_Non_template)
Douglas Gregor1fd6d442010-05-21 23:18:07 +00001043 return true;
1044 }
1045 }
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001046 break;
1047
Douglas Gregor014e88d2009-11-03 23:16:33 +00001048 case UnqualifiedId::IK_ConstructorName: {
1049 UnqualifiedId TemplateName;
Douglas Gregor1fd6d442010-05-21 23:18:07 +00001050 bool MemberOfUnknownSpecialization;
Douglas Gregor014e88d2009-11-03 23:16:33 +00001051 TemplateName.setIdentifier(Name, NameLoc);
Abramo Bagnara7c153532010-08-06 12:11:11 +00001052 TNK = Actions.isTemplateName(getCurScope(), SS, TemplateKWLoc.isValid(),
1053 TemplateName, ObjectType,
Douglas Gregor1fd6d442010-05-21 23:18:07 +00001054 EnteringContext, Template,
1055 MemberOfUnknownSpecialization);
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001056 break;
1057 }
1058
Douglas Gregor014e88d2009-11-03 23:16:33 +00001059 case UnqualifiedId::IK_DestructorName: {
1060 UnqualifiedId TemplateName;
Douglas Gregor1fd6d442010-05-21 23:18:07 +00001061 bool MemberOfUnknownSpecialization;
Douglas Gregor014e88d2009-11-03 23:16:33 +00001062 TemplateName.setIdentifier(Name, NameLoc);
Douglas Gregor2d1c2142009-11-03 19:44:04 +00001063 if (ObjectType) {
Douglas Gregor23c94db2010-07-02 17:43:08 +00001064 TNK = Actions.ActOnDependentTemplateName(getCurScope(), TemplateKWLoc, SS,
Douglas Gregord6ab2322010-06-16 23:00:59 +00001065 TemplateName, ObjectType,
1066 EnteringContext, Template);
1067 if (TNK == TNK_Non_template)
Douglas Gregor2d1c2142009-11-03 19:44:04 +00001068 return true;
1069 } else {
Abramo Bagnara7c153532010-08-06 12:11:11 +00001070 TNK = Actions.isTemplateName(getCurScope(), SS, TemplateKWLoc.isValid(),
1071 TemplateName, ObjectType,
Douglas Gregor1fd6d442010-05-21 23:18:07 +00001072 EnteringContext, Template,
1073 MemberOfUnknownSpecialization);
Douglas Gregor2d1c2142009-11-03 19:44:04 +00001074
John McCallb3d87482010-08-24 05:47:05 +00001075 if (TNK == TNK_Non_template && !Id.DestructorName.get()) {
Douglas Gregor124b8782010-02-16 19:09:40 +00001076 Diag(NameLoc, diag::err_destructor_template_id)
1077 << Name << SS.getRange();
Douglas Gregor2d1c2142009-11-03 19:44:04 +00001078 return true;
1079 }
1080 }
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001081 break;
Douglas Gregor014e88d2009-11-03 23:16:33 +00001082 }
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001083
1084 default:
1085 return false;
1086 }
1087
1088 if (TNK == TNK_Non_template)
1089 return false;
1090
1091 // Parse the enclosed template argument list.
1092 SourceLocation LAngleLoc, RAngleLoc;
1093 TemplateArgList TemplateArgs;
Douglas Gregor0278e122010-05-05 05:58:24 +00001094 if (Tok.is(tok::less) &&
1095 ParseTemplateIdAfterTemplateName(Template, Id.StartLocation,
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001096 &SS, true, LAngleLoc,
1097 TemplateArgs,
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001098 RAngleLoc))
1099 return true;
1100
1101 if (Id.getKind() == UnqualifiedId::IK_Identifier ||
Sean Hunte6252d12009-11-28 08:58:14 +00001102 Id.getKind() == UnqualifiedId::IK_OperatorFunctionId ||
1103 Id.getKind() == UnqualifiedId::IK_LiteralOperatorId) {
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001104 // Form a parsed representation of the template-id to be stored in the
1105 // UnqualifiedId.
1106 TemplateIdAnnotation *TemplateId
1107 = TemplateIdAnnotation::Allocate(TemplateArgs.size());
1108
1109 if (Id.getKind() == UnqualifiedId::IK_Identifier) {
1110 TemplateId->Name = Id.Identifier;
Douglas Gregor014e88d2009-11-03 23:16:33 +00001111 TemplateId->Operator = OO_None;
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001112 TemplateId->TemplateNameLoc = Id.StartLocation;
1113 } else {
Douglas Gregor014e88d2009-11-03 23:16:33 +00001114 TemplateId->Name = 0;
1115 TemplateId->Operator = Id.OperatorFunctionId.Operator;
1116 TemplateId->TemplateNameLoc = Id.StartLocation;
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001117 }
1118
John McCall2b5289b2010-08-23 07:28:44 +00001119 TemplateId->Template = Template;
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001120 TemplateId->Kind = TNK;
1121 TemplateId->LAngleLoc = LAngleLoc;
1122 TemplateId->RAngleLoc = RAngleLoc;
Douglas Gregor314b97f2009-11-10 19:49:08 +00001123 ParsedTemplateArgument *Args = TemplateId->getTemplateArgs();
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001124 for (unsigned Arg = 0, ArgEnd = TemplateArgs.size();
Douglas Gregor314b97f2009-11-10 19:49:08 +00001125 Arg != ArgEnd; ++Arg)
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001126 Args[Arg] = TemplateArgs[Arg];
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001127
1128 Id.setTemplateId(TemplateId);
1129 return false;
1130 }
1131
1132 // Bundle the template arguments together.
1133 ASTTemplateArgsPtr TemplateArgsPtr(Actions, TemplateArgs.data(),
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001134 TemplateArgs.size());
1135
1136 // Constructor and destructor names.
John McCallf312b1e2010-08-26 23:41:50 +00001137 TypeResult Type
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001138 = Actions.ActOnTemplateIdType(Template, NameLoc,
1139 LAngleLoc, TemplateArgsPtr,
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001140 RAngleLoc);
1141 if (Type.isInvalid())
1142 return true;
1143
1144 if (Id.getKind() == UnqualifiedId::IK_ConstructorName)
1145 Id.setConstructorName(Type.get(), NameLoc, RAngleLoc);
1146 else
1147 Id.setDestructorName(Id.StartLocation, Type.get(), RAngleLoc);
1148
1149 return false;
1150}
1151
Douglas Gregorca1bdd72009-11-04 00:56:37 +00001152/// \brief Parse an operator-function-id or conversion-function-id as part
1153/// of a C++ unqualified-id.
1154///
1155/// This routine is responsible only for parsing the operator-function-id or
1156/// conversion-function-id; it does not handle template arguments in any way.
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001157///
1158/// \code
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001159/// operator-function-id: [C++ 13.5]
1160/// 'operator' operator
1161///
Douglas Gregorca1bdd72009-11-04 00:56:37 +00001162/// operator: one of
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001163/// new delete new[] delete[]
1164/// + - * / % ^ & | ~
1165/// ! = < > += -= *= /= %=
1166/// ^= &= |= << >> >>= <<= == !=
1167/// <= >= && || ++ -- , ->* ->
1168/// () []
1169///
1170/// conversion-function-id: [C++ 12.3.2]
1171/// operator conversion-type-id
1172///
1173/// conversion-type-id:
1174/// type-specifier-seq conversion-declarator[opt]
1175///
1176/// conversion-declarator:
1177/// ptr-operator conversion-declarator[opt]
1178/// \endcode
1179///
1180/// \param The nested-name-specifier that preceded this unqualified-id. If
1181/// non-empty, then we are parsing the unqualified-id of a qualified-id.
1182///
1183/// \param EnteringContext whether we are entering the scope of the
1184/// nested-name-specifier.
1185///
Douglas Gregorca1bdd72009-11-04 00:56:37 +00001186/// \param ObjectType if this unqualified-id occurs within a member access
1187/// expression, the type of the base object whose member is being accessed.
1188///
1189/// \param Result on a successful parse, contains the parsed unqualified-id.
1190///
1191/// \returns true if parsing fails, false otherwise.
1192bool Parser::ParseUnqualifiedIdOperator(CXXScopeSpec &SS, bool EnteringContext,
John McCallb3d87482010-08-24 05:47:05 +00001193 ParsedType ObjectType,
Douglas Gregorca1bdd72009-11-04 00:56:37 +00001194 UnqualifiedId &Result) {
1195 assert(Tok.is(tok::kw_operator) && "Expected 'operator' keyword");
1196
1197 // Consume the 'operator' keyword.
1198 SourceLocation KeywordLoc = ConsumeToken();
1199
1200 // Determine what kind of operator name we have.
1201 unsigned SymbolIdx = 0;
1202 SourceLocation SymbolLocations[3];
1203 OverloadedOperatorKind Op = OO_None;
1204 switch (Tok.getKind()) {
1205 case tok::kw_new:
1206 case tok::kw_delete: {
1207 bool isNew = Tok.getKind() == tok::kw_new;
1208 // Consume the 'new' or 'delete'.
1209 SymbolLocations[SymbolIdx++] = ConsumeToken();
1210 if (Tok.is(tok::l_square)) {
1211 // Consume the '['.
1212 SourceLocation LBracketLoc = ConsumeBracket();
1213 // Consume the ']'.
1214 SourceLocation RBracketLoc = MatchRHSPunctuation(tok::r_square,
1215 LBracketLoc);
1216 if (RBracketLoc.isInvalid())
1217 return true;
1218
1219 SymbolLocations[SymbolIdx++] = LBracketLoc;
1220 SymbolLocations[SymbolIdx++] = RBracketLoc;
1221 Op = isNew? OO_Array_New : OO_Array_Delete;
1222 } else {
1223 Op = isNew? OO_New : OO_Delete;
1224 }
1225 break;
1226 }
1227
1228#define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \
1229 case tok::Token: \
1230 SymbolLocations[SymbolIdx++] = ConsumeToken(); \
1231 Op = OO_##Name; \
1232 break;
1233#define OVERLOADED_OPERATOR_MULTI(Name,Spelling,Unary,Binary,MemberOnly)
1234#include "clang/Basic/OperatorKinds.def"
1235
1236 case tok::l_paren: {
1237 // Consume the '('.
1238 SourceLocation LParenLoc = ConsumeParen();
1239 // Consume the ')'.
1240 SourceLocation RParenLoc = MatchRHSPunctuation(tok::r_paren,
1241 LParenLoc);
1242 if (RParenLoc.isInvalid())
1243 return true;
1244
1245 SymbolLocations[SymbolIdx++] = LParenLoc;
1246 SymbolLocations[SymbolIdx++] = RParenLoc;
1247 Op = OO_Call;
1248 break;
1249 }
1250
1251 case tok::l_square: {
1252 // Consume the '['.
1253 SourceLocation LBracketLoc = ConsumeBracket();
1254 // Consume the ']'.
1255 SourceLocation RBracketLoc = MatchRHSPunctuation(tok::r_square,
1256 LBracketLoc);
1257 if (RBracketLoc.isInvalid())
1258 return true;
1259
1260 SymbolLocations[SymbolIdx++] = LBracketLoc;
1261 SymbolLocations[SymbolIdx++] = RBracketLoc;
1262 Op = OO_Subscript;
1263 break;
1264 }
1265
1266 case tok::code_completion: {
1267 // Code completion for the operator name.
Douglas Gregor23c94db2010-07-02 17:43:08 +00001268 Actions.CodeCompleteOperatorName(getCurScope());
Douglas Gregorca1bdd72009-11-04 00:56:37 +00001269
1270 // Consume the operator token.
Douglas Gregordc845342010-05-25 05:58:43 +00001271 ConsumeCodeCompletionToken();
Douglas Gregorca1bdd72009-11-04 00:56:37 +00001272
1273 // Don't try to parse any further.
1274 return true;
1275 }
1276
1277 default:
1278 break;
1279 }
1280
1281 if (Op != OO_None) {
1282 // We have parsed an operator-function-id.
1283 Result.setOperatorFunctionId(KeywordLoc, Op, SymbolLocations);
1284 return false;
1285 }
Sean Hunt0486d742009-11-28 04:44:28 +00001286
1287 // Parse a literal-operator-id.
1288 //
1289 // literal-operator-id: [C++0x 13.5.8]
1290 // operator "" identifier
1291
1292 if (getLang().CPlusPlus0x && Tok.is(tok::string_literal)) {
1293 if (Tok.getLength() != 2)
1294 Diag(Tok.getLocation(), diag::err_operator_string_not_empty);
1295 ConsumeStringToken();
1296
1297 if (Tok.isNot(tok::identifier)) {
1298 Diag(Tok.getLocation(), diag::err_expected_ident);
1299 return true;
1300 }
1301
1302 IdentifierInfo *II = Tok.getIdentifierInfo();
1303 Result.setLiteralOperatorId(II, KeywordLoc, ConsumeToken());
Sean Hunt3e518bd2009-11-29 07:34:05 +00001304 return false;
Sean Hunt0486d742009-11-28 04:44:28 +00001305 }
Douglas Gregorca1bdd72009-11-04 00:56:37 +00001306
1307 // Parse a conversion-function-id.
1308 //
1309 // conversion-function-id: [C++ 12.3.2]
1310 // operator conversion-type-id
1311 //
1312 // conversion-type-id:
1313 // type-specifier-seq conversion-declarator[opt]
1314 //
1315 // conversion-declarator:
1316 // ptr-operator conversion-declarator[opt]
1317
1318 // Parse the type-specifier-seq.
1319 DeclSpec DS;
Douglas Gregorf6e6fc82009-11-20 22:03:38 +00001320 if (ParseCXXTypeSpecifierSeq(DS)) // FIXME: ObjectType?
Douglas Gregorca1bdd72009-11-04 00:56:37 +00001321 return true;
1322
1323 // Parse the conversion-declarator, which is merely a sequence of
1324 // ptr-operators.
1325 Declarator D(DS, Declarator::TypeNameContext);
1326 ParseDeclaratorInternal(D, /*DirectDeclParser=*/0);
1327
1328 // Finish up the type.
John McCallf312b1e2010-08-26 23:41:50 +00001329 TypeResult Ty = Actions.ActOnTypeName(getCurScope(), D);
Douglas Gregorca1bdd72009-11-04 00:56:37 +00001330 if (Ty.isInvalid())
1331 return true;
1332
1333 // Note that this is a conversion-function-id.
1334 Result.setConversionFunctionId(KeywordLoc, Ty.get(),
1335 D.getSourceRange().getEnd());
1336 return false;
1337}
1338
1339/// \brief Parse a C++ unqualified-id (or a C identifier), which describes the
1340/// name of an entity.
1341///
1342/// \code
1343/// unqualified-id: [C++ expr.prim.general]
1344/// identifier
1345/// operator-function-id
1346/// conversion-function-id
1347/// [C++0x] literal-operator-id [TODO]
1348/// ~ class-name
1349/// template-id
1350///
1351/// \endcode
1352///
1353/// \param The nested-name-specifier that preceded this unqualified-id. If
1354/// non-empty, then we are parsing the unqualified-id of a qualified-id.
1355///
1356/// \param EnteringContext whether we are entering the scope of the
1357/// nested-name-specifier.
1358///
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001359/// \param AllowDestructorName whether we allow parsing of a destructor name.
1360///
1361/// \param AllowConstructorName whether we allow parsing a constructor name.
1362///
Douglas Gregor46df8cc2009-11-03 21:24:04 +00001363/// \param ObjectType if this unqualified-id occurs within a member access
1364/// expression, the type of the base object whose member is being accessed.
1365///
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001366/// \param Result on a successful parse, contains the parsed unqualified-id.
1367///
1368/// \returns true if parsing fails, false otherwise.
1369bool Parser::ParseUnqualifiedId(CXXScopeSpec &SS, bool EnteringContext,
1370 bool AllowDestructorName,
1371 bool AllowConstructorName,
John McCallb3d87482010-08-24 05:47:05 +00001372 ParsedType ObjectType,
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001373 UnqualifiedId &Result) {
Douglas Gregor0278e122010-05-05 05:58:24 +00001374
1375 // Handle 'A::template B'. This is for template-ids which have not
1376 // already been annotated by ParseOptionalCXXScopeSpecifier().
1377 bool TemplateSpecified = false;
1378 SourceLocation TemplateKWLoc;
1379 if (getLang().CPlusPlus && Tok.is(tok::kw_template) &&
1380 (ObjectType || SS.isSet())) {
1381 TemplateSpecified = true;
1382 TemplateKWLoc = ConsumeToken();
1383 }
1384
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001385 // unqualified-id:
1386 // identifier
1387 // template-id (when it hasn't already been annotated)
1388 if (Tok.is(tok::identifier)) {
1389 // Consume the identifier.
1390 IdentifierInfo *Id = Tok.getIdentifierInfo();
1391 SourceLocation IdLoc = ConsumeToken();
1392
Douglas Gregorb862b8f2010-01-11 23:29:10 +00001393 if (!getLang().CPlusPlus) {
1394 // If we're not in C++, only identifiers matter. Record the
1395 // identifier and return.
1396 Result.setIdentifier(Id, IdLoc);
1397 return false;
1398 }
1399
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001400 if (AllowConstructorName &&
Douglas Gregor23c94db2010-07-02 17:43:08 +00001401 Actions.isCurrentClassName(*Id, getCurScope(), &SS)) {
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001402 // We have parsed a constructor name.
Douglas Gregor23c94db2010-07-02 17:43:08 +00001403 Result.setConstructorName(Actions.getTypeName(*Id, IdLoc, getCurScope(),
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001404 &SS, false),
1405 IdLoc, IdLoc);
1406 } else {
1407 // We have parsed an identifier.
1408 Result.setIdentifier(Id, IdLoc);
1409 }
1410
1411 // If the next token is a '<', we may have a template.
Douglas Gregor0278e122010-05-05 05:58:24 +00001412 if (TemplateSpecified || Tok.is(tok::less))
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001413 return ParseUnqualifiedIdTemplateId(SS, Id, IdLoc, EnteringContext,
Douglas Gregor0278e122010-05-05 05:58:24 +00001414 ObjectType, Result,
1415 TemplateSpecified, TemplateKWLoc);
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001416
1417 return false;
1418 }
1419
1420 // unqualified-id:
1421 // template-id (already parsed and annotated)
1422 if (Tok.is(tok::annot_template_id)) {
Douglas Gregor0efc2c12010-01-13 17:31:36 +00001423 TemplateIdAnnotation *TemplateId
1424 = static_cast<TemplateIdAnnotation*>(Tok.getAnnotationValue());
1425
1426 // If the template-name names the current class, then this is a constructor
1427 if (AllowConstructorName && TemplateId->Name &&
Douglas Gregor23c94db2010-07-02 17:43:08 +00001428 Actions.isCurrentClassName(*TemplateId->Name, getCurScope(), &SS)) {
Douglas Gregor0efc2c12010-01-13 17:31:36 +00001429 if (SS.isSet()) {
1430 // C++ [class.qual]p2 specifies that a qualified template-name
1431 // is taken as the constructor name where a constructor can be
1432 // declared. Thus, the template arguments are extraneous, so
1433 // complain about them and remove them entirely.
1434 Diag(TemplateId->TemplateNameLoc,
1435 diag::err_out_of_line_constructor_template_id)
1436 << TemplateId->Name
Douglas Gregor849b2432010-03-31 17:46:05 +00001437 << FixItHint::CreateRemoval(
Douglas Gregor0efc2c12010-01-13 17:31:36 +00001438 SourceRange(TemplateId->LAngleLoc, TemplateId->RAngleLoc));
1439 Result.setConstructorName(Actions.getTypeName(*TemplateId->Name,
1440 TemplateId->TemplateNameLoc,
Douglas Gregor23c94db2010-07-02 17:43:08 +00001441 getCurScope(),
Douglas Gregor0efc2c12010-01-13 17:31:36 +00001442 &SS, false),
1443 TemplateId->TemplateNameLoc,
1444 TemplateId->RAngleLoc);
1445 TemplateId->Destroy();
1446 ConsumeToken();
1447 return false;
1448 }
1449
1450 Result.setConstructorTemplateId(TemplateId);
1451 ConsumeToken();
1452 return false;
1453 }
1454
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001455 // We have already parsed a template-id; consume the annotation token as
1456 // our unqualified-id.
Douglas Gregor0efc2c12010-01-13 17:31:36 +00001457 Result.setTemplateId(TemplateId);
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001458 ConsumeToken();
1459 return false;
1460 }
1461
1462 // unqualified-id:
1463 // operator-function-id
1464 // conversion-function-id
1465 if (Tok.is(tok::kw_operator)) {
Douglas Gregorca1bdd72009-11-04 00:56:37 +00001466 if (ParseUnqualifiedIdOperator(SS, EnteringContext, ObjectType, Result))
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001467 return true;
1468
Sean Hunte6252d12009-11-28 08:58:14 +00001469 // If we have an operator-function-id or a literal-operator-id and the next
1470 // token is a '<', we may have a
Douglas Gregorca1bdd72009-11-04 00:56:37 +00001471 //
1472 // template-id:
1473 // operator-function-id < template-argument-list[opt] >
Sean Hunte6252d12009-11-28 08:58:14 +00001474 if ((Result.getKind() == UnqualifiedId::IK_OperatorFunctionId ||
1475 Result.getKind() == UnqualifiedId::IK_LiteralOperatorId) &&
Douglas Gregor0278e122010-05-05 05:58:24 +00001476 (TemplateSpecified || Tok.is(tok::less)))
Douglas Gregorca1bdd72009-11-04 00:56:37 +00001477 return ParseUnqualifiedIdTemplateId(SS, 0, SourceLocation(),
1478 EnteringContext, ObjectType,
Douglas Gregor0278e122010-05-05 05:58:24 +00001479 Result,
1480 TemplateSpecified, TemplateKWLoc);
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001481
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001482 return false;
1483 }
1484
Douglas Gregorb862b8f2010-01-11 23:29:10 +00001485 if (getLang().CPlusPlus &&
1486 (AllowDestructorName || SS.isSet()) && Tok.is(tok::tilde)) {
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001487 // C++ [expr.unary.op]p10:
1488 // There is an ambiguity in the unary-expression ~X(), where X is a
1489 // class-name. The ambiguity is resolved in favor of treating ~ as a
1490 // unary complement rather than treating ~X as referring to a destructor.
1491
1492 // Parse the '~'.
1493 SourceLocation TildeLoc = ConsumeToken();
1494
1495 // Parse the class-name.
1496 if (Tok.isNot(tok::identifier)) {
Douglas Gregor124b8782010-02-16 19:09:40 +00001497 Diag(Tok, diag::err_destructor_tilde_identifier);
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001498 return true;
1499 }
1500
1501 // Parse the class-name (or template-name in a simple-template-id).
1502 IdentifierInfo *ClassName = Tok.getIdentifierInfo();
1503 SourceLocation ClassNameLoc = ConsumeToken();
1504
Douglas Gregor0278e122010-05-05 05:58:24 +00001505 if (TemplateSpecified || Tok.is(tok::less)) {
John McCallb3d87482010-08-24 05:47:05 +00001506 Result.setDestructorName(TildeLoc, ParsedType(), ClassNameLoc);
Douglas Gregor2d1c2142009-11-03 19:44:04 +00001507 return ParseUnqualifiedIdTemplateId(SS, ClassName, ClassNameLoc,
Douglas Gregor0278e122010-05-05 05:58:24 +00001508 EnteringContext, ObjectType, Result,
1509 TemplateSpecified, TemplateKWLoc);
Douglas Gregor2d1c2142009-11-03 19:44:04 +00001510 }
1511
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001512 // Note that this is a destructor name.
John McCallb3d87482010-08-24 05:47:05 +00001513 ParsedType Ty = Actions.getDestructorName(TildeLoc, *ClassName,
1514 ClassNameLoc, getCurScope(),
1515 SS, ObjectType,
1516 EnteringContext);
Douglas Gregor124b8782010-02-16 19:09:40 +00001517 if (!Ty)
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001518 return true;
Douglas Gregor124b8782010-02-16 19:09:40 +00001519
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001520 Result.setDestructorName(TildeLoc, Ty, ClassNameLoc);
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001521 return false;
1522 }
1523
Douglas Gregor2d1c2142009-11-03 19:44:04 +00001524 Diag(Tok, diag::err_expected_unqualified_id)
1525 << getLang().CPlusPlus;
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001526 return true;
1527}
1528
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001529/// ParseCXXNewExpression - Parse a C++ new-expression. New is used to allocate
1530/// memory in a typesafe manner and call constructors.
Mike Stump1eb44332009-09-09 15:08:12 +00001531///
Chris Lattner59232d32009-01-04 21:25:24 +00001532/// This method is called to parse the new expression after the optional :: has
1533/// been already parsed. If the :: was present, "UseGlobal" is true and "Start"
1534/// is its location. Otherwise, "Start" is the location of the 'new' token.
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001535///
1536/// new-expression:
1537/// '::'[opt] 'new' new-placement[opt] new-type-id
1538/// new-initializer[opt]
1539/// '::'[opt] 'new' new-placement[opt] '(' type-id ')'
1540/// new-initializer[opt]
1541///
1542/// new-placement:
1543/// '(' expression-list ')'
1544///
Sebastian Redlcee63fb2008-12-02 14:43:59 +00001545/// new-type-id:
1546/// type-specifier-seq new-declarator[opt]
1547///
1548/// new-declarator:
1549/// ptr-operator new-declarator[opt]
1550/// direct-new-declarator
1551///
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001552/// new-initializer:
1553/// '(' expression-list[opt] ')'
1554/// [C++0x] braced-init-list [TODO]
1555///
John McCall60d7b3a2010-08-24 06:29:42 +00001556ExprResult
Chris Lattner59232d32009-01-04 21:25:24 +00001557Parser::ParseCXXNewExpression(bool UseGlobal, SourceLocation Start) {
1558 assert(Tok.is(tok::kw_new) && "expected 'new' token");
1559 ConsumeToken(); // Consume 'new'
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001560
1561 // A '(' now can be a new-placement or the '(' wrapping the type-id in the
1562 // second form of new-expression. It can't be a new-type-id.
1563
Sebastian Redla55e52c2008-11-25 22:21:31 +00001564 ExprVector PlacementArgs(Actions);
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001565 SourceLocation PlacementLParen, PlacementRParen;
1566
Douglas Gregor4bd40312010-07-13 15:54:32 +00001567 SourceRange TypeIdParens;
Sebastian Redlcee63fb2008-12-02 14:43:59 +00001568 DeclSpec DS;
1569 Declarator DeclaratorInfo(DS, Declarator::TypeNameContext);
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001570 if (Tok.is(tok::l_paren)) {
1571 // If it turns out to be a placement, we change the type location.
1572 PlacementLParen = ConsumeParen();
Sebastian Redlcee63fb2008-12-02 14:43:59 +00001573 if (ParseExpressionListOrTypeId(PlacementArgs, DeclaratorInfo)) {
1574 SkipUntil(tok::semi, /*StopAtSemi=*/true, /*DontConsume=*/true);
Sebastian Redl20df9b72008-12-11 22:51:44 +00001575 return ExprError();
Sebastian Redlcee63fb2008-12-02 14:43:59 +00001576 }
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001577
1578 PlacementRParen = MatchRHSPunctuation(tok::r_paren, PlacementLParen);
Sebastian Redlcee63fb2008-12-02 14:43:59 +00001579 if (PlacementRParen.isInvalid()) {
1580 SkipUntil(tok::semi, /*StopAtSemi=*/true, /*DontConsume=*/true);
Sebastian Redl20df9b72008-12-11 22:51:44 +00001581 return ExprError();
Sebastian Redlcee63fb2008-12-02 14:43:59 +00001582 }
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001583
Sebastian Redlcee63fb2008-12-02 14:43:59 +00001584 if (PlacementArgs.empty()) {
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001585 // Reset the placement locations. There was no placement.
Douglas Gregor4bd40312010-07-13 15:54:32 +00001586 TypeIdParens = SourceRange(PlacementLParen, PlacementRParen);
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001587 PlacementLParen = PlacementRParen = SourceLocation();
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001588 } else {
1589 // We still need the type.
1590 if (Tok.is(tok::l_paren)) {
Douglas Gregor4bd40312010-07-13 15:54:32 +00001591 TypeIdParens.setBegin(ConsumeParen());
Sebastian Redlcee63fb2008-12-02 14:43:59 +00001592 ParseSpecifierQualifierList(DS);
Sebastian Redlab197ba2009-02-09 18:23:29 +00001593 DeclaratorInfo.SetSourceRange(DS.getSourceRange());
Sebastian Redlcee63fb2008-12-02 14:43:59 +00001594 ParseDeclarator(DeclaratorInfo);
Douglas Gregor4bd40312010-07-13 15:54:32 +00001595 TypeIdParens.setEnd(MatchRHSPunctuation(tok::r_paren,
1596 TypeIdParens.getBegin()));
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001597 } else {
Sebastian Redlcee63fb2008-12-02 14:43:59 +00001598 if (ParseCXXTypeSpecifierSeq(DS))
1599 DeclaratorInfo.setInvalidType(true);
Sebastian Redlab197ba2009-02-09 18:23:29 +00001600 else {
1601 DeclaratorInfo.SetSourceRange(DS.getSourceRange());
Sebastian Redlcee63fb2008-12-02 14:43:59 +00001602 ParseDeclaratorInternal(DeclaratorInfo,
1603 &Parser::ParseDirectNewDeclarator);
Sebastian Redlab197ba2009-02-09 18:23:29 +00001604 }
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001605 }
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001606 }
1607 } else {
Sebastian Redlcee63fb2008-12-02 14:43:59 +00001608 // A new-type-id is a simplified type-id, where essentially the
1609 // direct-declarator is replaced by a direct-new-declarator.
1610 if (ParseCXXTypeSpecifierSeq(DS))
1611 DeclaratorInfo.setInvalidType(true);
Sebastian Redlab197ba2009-02-09 18:23:29 +00001612 else {
1613 DeclaratorInfo.SetSourceRange(DS.getSourceRange());
Sebastian Redlcee63fb2008-12-02 14:43:59 +00001614 ParseDeclaratorInternal(DeclaratorInfo,
1615 &Parser::ParseDirectNewDeclarator);
Sebastian Redlab197ba2009-02-09 18:23:29 +00001616 }
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001617 }
Chris Lattnereaaebc72009-04-25 08:06:05 +00001618 if (DeclaratorInfo.isInvalidType()) {
Sebastian Redlcee63fb2008-12-02 14:43:59 +00001619 SkipUntil(tok::semi, /*StopAtSemi=*/true, /*DontConsume=*/true);
Sebastian Redl20df9b72008-12-11 22:51:44 +00001620 return ExprError();
Sebastian Redlcee63fb2008-12-02 14:43:59 +00001621 }
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001622
Sebastian Redla55e52c2008-11-25 22:21:31 +00001623 ExprVector ConstructorArgs(Actions);
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001624 SourceLocation ConstructorLParen, ConstructorRParen;
1625
1626 if (Tok.is(tok::l_paren)) {
1627 ConstructorLParen = ConsumeParen();
1628 if (Tok.isNot(tok::r_paren)) {
1629 CommaLocsTy CommaLocs;
Sebastian Redlcee63fb2008-12-02 14:43:59 +00001630 if (ParseExpressionList(ConstructorArgs, CommaLocs)) {
1631 SkipUntil(tok::semi, /*StopAtSemi=*/true, /*DontConsume=*/true);
Sebastian Redl20df9b72008-12-11 22:51:44 +00001632 return ExprError();
Sebastian Redlcee63fb2008-12-02 14:43:59 +00001633 }
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001634 }
1635 ConstructorRParen = MatchRHSPunctuation(tok::r_paren, ConstructorLParen);
Sebastian Redlcee63fb2008-12-02 14:43:59 +00001636 if (ConstructorRParen.isInvalid()) {
1637 SkipUntil(tok::semi, /*StopAtSemi=*/true, /*DontConsume=*/true);
Sebastian Redl20df9b72008-12-11 22:51:44 +00001638 return ExprError();
Sebastian Redlcee63fb2008-12-02 14:43:59 +00001639 }
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001640 }
1641
Sebastian Redlf53597f2009-03-15 17:47:39 +00001642 return Actions.ActOnCXXNew(Start, UseGlobal, PlacementLParen,
1643 move_arg(PlacementArgs), PlacementRParen,
Douglas Gregor4bd40312010-07-13 15:54:32 +00001644 TypeIdParens, DeclaratorInfo, ConstructorLParen,
Sebastian Redlf53597f2009-03-15 17:47:39 +00001645 move_arg(ConstructorArgs), ConstructorRParen);
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001646}
1647
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001648/// ParseDirectNewDeclarator - Parses a direct-new-declarator. Intended to be
1649/// passed to ParseDeclaratorInternal.
1650///
1651/// direct-new-declarator:
1652/// '[' expression ']'
1653/// direct-new-declarator '[' constant-expression ']'
1654///
Chris Lattner59232d32009-01-04 21:25:24 +00001655void Parser::ParseDirectNewDeclarator(Declarator &D) {
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001656 // Parse the array dimensions.
1657 bool first = true;
1658 while (Tok.is(tok::l_square)) {
1659 SourceLocation LLoc = ConsumeBracket();
John McCall60d7b3a2010-08-24 06:29:42 +00001660 ExprResult Size(first ? ParseExpression()
Sebastian Redl2f7ece72008-12-11 21:36:32 +00001661 : ParseConstantExpression());
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001662 if (Size.isInvalid()) {
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001663 // Recover
1664 SkipUntil(tok::r_square);
1665 return;
1666 }
1667 first = false;
1668
Sebastian Redlab197ba2009-02-09 18:23:29 +00001669 SourceLocation RLoc = MatchRHSPunctuation(tok::r_square, LLoc);
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001670 D.AddTypeInfo(DeclaratorChunk::getArray(0, /*static=*/false, /*star=*/false,
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +00001671 Size.release(), LLoc, RLoc),
Sebastian Redlab197ba2009-02-09 18:23:29 +00001672 RLoc);
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001673
Sebastian Redlab197ba2009-02-09 18:23:29 +00001674 if (RLoc.isInvalid())
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001675 return;
1676 }
1677}
1678
1679/// ParseExpressionListOrTypeId - Parse either an expression-list or a type-id.
1680/// This ambiguity appears in the syntax of the C++ new operator.
1681///
1682/// new-expression:
1683/// '::'[opt] 'new' new-placement[opt] '(' type-id ')'
1684/// new-initializer[opt]
1685///
1686/// new-placement:
1687/// '(' expression-list ')'
1688///
John McCallca0408f2010-08-23 06:44:23 +00001689bool Parser::ParseExpressionListOrTypeId(
1690 llvm::SmallVectorImpl<Expr*> &PlacementArgs,
Chris Lattner59232d32009-01-04 21:25:24 +00001691 Declarator &D) {
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001692 // The '(' was already consumed.
1693 if (isTypeIdInParens()) {
Sebastian Redlcee63fb2008-12-02 14:43:59 +00001694 ParseSpecifierQualifierList(D.getMutableDeclSpec());
Sebastian Redlab197ba2009-02-09 18:23:29 +00001695 D.SetSourceRange(D.getDeclSpec().getSourceRange());
Sebastian Redlcee63fb2008-12-02 14:43:59 +00001696 ParseDeclarator(D);
Chris Lattnereaaebc72009-04-25 08:06:05 +00001697 return D.isInvalidType();
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001698 }
1699
1700 // It's not a type, it has to be an expression list.
1701 // Discard the comma locations - ActOnCXXNew has enough parameters.
1702 CommaLocsTy CommaLocs;
1703 return ParseExpressionList(PlacementArgs, CommaLocs);
1704}
1705
1706/// ParseCXXDeleteExpression - Parse a C++ delete-expression. Delete is used
1707/// to free memory allocated by new.
1708///
Chris Lattner59232d32009-01-04 21:25:24 +00001709/// This method is called to parse the 'delete' expression after the optional
1710/// '::' has been already parsed. If the '::' was present, "UseGlobal" is true
1711/// and "Start" is its location. Otherwise, "Start" is the location of the
1712/// 'delete' token.
1713///
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001714/// delete-expression:
1715/// '::'[opt] 'delete' cast-expression
1716/// '::'[opt] 'delete' '[' ']' cast-expression
John McCall60d7b3a2010-08-24 06:29:42 +00001717ExprResult
Chris Lattner59232d32009-01-04 21:25:24 +00001718Parser::ParseCXXDeleteExpression(bool UseGlobal, SourceLocation Start) {
1719 assert(Tok.is(tok::kw_delete) && "Expected 'delete' keyword");
1720 ConsumeToken(); // Consume 'delete'
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001721
1722 // Array delete?
1723 bool ArrayDelete = false;
1724 if (Tok.is(tok::l_square)) {
1725 ArrayDelete = true;
1726 SourceLocation LHS = ConsumeBracket();
1727 SourceLocation RHS = MatchRHSPunctuation(tok::r_square, LHS);
1728 if (RHS.isInvalid())
Sebastian Redl20df9b72008-12-11 22:51:44 +00001729 return ExprError();
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001730 }
1731
John McCall60d7b3a2010-08-24 06:29:42 +00001732 ExprResult Operand(ParseCastExpression(false));
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001733 if (Operand.isInvalid())
Sebastian Redl20df9b72008-12-11 22:51:44 +00001734 return move(Operand);
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001735
John McCall9ae2f072010-08-23 23:25:46 +00001736 return Actions.ActOnCXXDelete(Start, UseGlobal, ArrayDelete, Operand.take());
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001737}
Sebastian Redl64b45f72009-01-05 20:52:13 +00001738
Mike Stump1eb44332009-09-09 15:08:12 +00001739static UnaryTypeTrait UnaryTypeTraitFromTokKind(tok::TokenKind kind) {
Sebastian Redl64b45f72009-01-05 20:52:13 +00001740 switch(kind) {
1741 default: assert(false && "Not a known unary type trait.");
1742 case tok::kw___has_nothrow_assign: return UTT_HasNothrowAssign;
1743 case tok::kw___has_nothrow_copy: return UTT_HasNothrowCopy;
1744 case tok::kw___has_nothrow_constructor: return UTT_HasNothrowConstructor;
1745 case tok::kw___has_trivial_assign: return UTT_HasTrivialAssign;
1746 case tok::kw___has_trivial_copy: return UTT_HasTrivialCopy;
1747 case tok::kw___has_trivial_constructor: return UTT_HasTrivialConstructor;
1748 case tok::kw___has_trivial_destructor: return UTT_HasTrivialDestructor;
1749 case tok::kw___has_virtual_destructor: return UTT_HasVirtualDestructor;
1750 case tok::kw___is_abstract: return UTT_IsAbstract;
1751 case tok::kw___is_class: return UTT_IsClass;
1752 case tok::kw___is_empty: return UTT_IsEmpty;
1753 case tok::kw___is_enum: return UTT_IsEnum;
1754 case tok::kw___is_pod: return UTT_IsPOD;
1755 case tok::kw___is_polymorphic: return UTT_IsPolymorphic;
1756 case tok::kw___is_union: return UTT_IsUnion;
Sebastian Redlccf43502009-12-03 00:13:20 +00001757 case tok::kw___is_literal: return UTT_IsLiteral;
Sebastian Redl64b45f72009-01-05 20:52:13 +00001758 }
1759}
1760
1761/// ParseUnaryTypeTrait - Parse the built-in unary type-trait
1762/// pseudo-functions that allow implementation of the TR1/C++0x type traits
1763/// templates.
1764///
1765/// primary-expression:
1766/// [GNU] unary-type-trait '(' type-id ')'
1767///
John McCall60d7b3a2010-08-24 06:29:42 +00001768ExprResult Parser::ParseUnaryTypeTrait() {
Sebastian Redl64b45f72009-01-05 20:52:13 +00001769 UnaryTypeTrait UTT = UnaryTypeTraitFromTokKind(Tok.getKind());
1770 SourceLocation Loc = ConsumeToken();
1771
1772 SourceLocation LParen = Tok.getLocation();
1773 if (ExpectAndConsume(tok::l_paren, diag::err_expected_lparen))
1774 return ExprError();
1775
1776 // FIXME: Error reporting absolutely sucks! If the this fails to parse a type
1777 // there will be cryptic errors about mismatched parentheses and missing
1778 // specifiers.
Douglas Gregor809070a2009-02-18 17:45:20 +00001779 TypeResult Ty = ParseTypeName();
Sebastian Redl64b45f72009-01-05 20:52:13 +00001780
1781 SourceLocation RParen = MatchRHSPunctuation(tok::r_paren, LParen);
1782
Douglas Gregor809070a2009-02-18 17:45:20 +00001783 if (Ty.isInvalid())
1784 return ExprError();
1785
1786 return Actions.ActOnUnaryTypeTrait(UTT, Loc, LParen, Ty.get(), RParen);
Sebastian Redl64b45f72009-01-05 20:52:13 +00001787}
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00001788
1789/// ParseCXXAmbiguousParenExpression - We have parsed the left paren of a
1790/// parenthesized ambiguous type-id. This uses tentative parsing to disambiguate
1791/// based on the context past the parens.
John McCall60d7b3a2010-08-24 06:29:42 +00001792ExprResult
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00001793Parser::ParseCXXAmbiguousParenExpression(ParenParseOption &ExprType,
John McCallb3d87482010-08-24 05:47:05 +00001794 ParsedType &CastTy,
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00001795 SourceLocation LParenLoc,
1796 SourceLocation &RParenLoc) {
1797 assert(getLang().CPlusPlus && "Should only be called for C++!");
1798 assert(ExprType == CastExpr && "Compound literals are not ambiguous!");
1799 assert(isTypeIdInParens() && "Not a type-id!");
1800
John McCall60d7b3a2010-08-24 06:29:42 +00001801 ExprResult Result(true);
John McCallb3d87482010-08-24 05:47:05 +00001802 CastTy = ParsedType();
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00001803
1804 // We need to disambiguate a very ugly part of the C++ syntax:
1805 //
1806 // (T())x; - type-id
1807 // (T())*x; - type-id
1808 // (T())/x; - expression
1809 // (T()); - expression
1810 //
1811 // The bad news is that we cannot use the specialized tentative parser, since
1812 // it can only verify that the thing inside the parens can be parsed as
1813 // type-id, it is not useful for determining the context past the parens.
1814 //
1815 // The good news is that the parser can disambiguate this part without
Argyrios Kyrtzidisa558a892009-05-22 15:12:46 +00001816 // making any unnecessary Action calls.
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00001817 //
1818 // It uses a scheme similar to parsing inline methods. The parenthesized
1819 // tokens are cached, the context that follows is determined (possibly by
1820 // parsing a cast-expression), and then we re-introduce the cached tokens
1821 // into the token stream and parse them appropriately.
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00001822
Mike Stump1eb44332009-09-09 15:08:12 +00001823 ParenParseOption ParseAs;
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00001824 CachedTokens Toks;
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00001825
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00001826 // Store the tokens of the parentheses. We will parse them after we determine
1827 // the context that follows them.
Argyrios Kyrtzidis14b91622010-04-23 21:20:12 +00001828 if (!ConsumeAndStoreUntil(tok::r_paren, Toks)) {
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00001829 // We didn't find the ')' we expected.
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00001830 MatchRHSPunctuation(tok::r_paren, LParenLoc);
1831 return ExprError();
1832 }
1833
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00001834 if (Tok.is(tok::l_brace)) {
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00001835 ParseAs = CompoundLiteral;
1836 } else {
1837 bool NotCastExpr;
Eli Friedmanb53f08a2009-05-25 19:41:42 +00001838 // FIXME: Special-case ++ and --: "(S())++;" is not a cast-expression
1839 if (Tok.is(tok::l_paren) && NextToken().is(tok::r_paren)) {
1840 NotCastExpr = true;
1841 } else {
1842 // Try parsing the cast-expression that may follow.
1843 // If it is not a cast-expression, NotCastExpr will be true and no token
1844 // will be consumed.
1845 Result = ParseCastExpression(false/*isUnaryExpression*/,
1846 false/*isAddressofOperand*/,
John McCallb3d87482010-08-24 05:47:05 +00001847 NotCastExpr,
1848 ParsedType()/*TypeOfCast*/);
Eli Friedmanb53f08a2009-05-25 19:41:42 +00001849 }
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00001850
1851 // If we parsed a cast-expression, it's really a type-id, otherwise it's
1852 // an expression.
1853 ParseAs = NotCastExpr ? SimpleExpr : CastExpr;
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00001854 }
1855
Mike Stump1eb44332009-09-09 15:08:12 +00001856 // The current token should go after the cached tokens.
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00001857 Toks.push_back(Tok);
1858 // Re-enter the stored parenthesized tokens into the token stream, so we may
1859 // parse them now.
1860 PP.EnterTokenStream(Toks.data(), Toks.size(),
1861 true/*DisableMacroExpansion*/, false/*OwnsTokens*/);
1862 // Drop the current token and bring the first cached one. It's the same token
1863 // as when we entered this function.
1864 ConsumeAnyToken();
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00001865
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00001866 if (ParseAs >= CompoundLiteral) {
1867 TypeResult Ty = ParseTypeName();
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00001868
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00001869 // Match the ')'.
1870 if (Tok.is(tok::r_paren))
1871 RParenLoc = ConsumeParen();
1872 else
1873 MatchRHSPunctuation(tok::r_paren, LParenLoc);
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00001874
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00001875 if (ParseAs == CompoundLiteral) {
1876 ExprType = CompoundLiteral;
1877 return ParseCompoundLiteralExpression(Ty.get(), LParenLoc, RParenLoc);
1878 }
Mike Stump1eb44332009-09-09 15:08:12 +00001879
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00001880 // We parsed '(' type-id ')' and the thing after it wasn't a '{'.
1881 assert(ParseAs == CastExpr);
1882
1883 if (Ty.isInvalid())
1884 return ExprError();
1885
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00001886 CastTy = Ty.get();
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00001887
1888 // Result is what ParseCastExpression returned earlier.
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00001889 if (!Result.isInvalid())
Douglas Gregor23c94db2010-07-02 17:43:08 +00001890 Result = Actions.ActOnCastExpr(getCurScope(), LParenLoc, CastTy, RParenLoc,
John McCall9ae2f072010-08-23 23:25:46 +00001891 Result.take());
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00001892 return move(Result);
1893 }
Mike Stump1eb44332009-09-09 15:08:12 +00001894
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00001895 // Not a compound literal, and not followed by a cast-expression.
1896 assert(ParseAs == SimpleExpr);
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00001897
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00001898 ExprType = SimpleExpr;
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00001899 Result = ParseExpression();
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00001900 if (!Result.isInvalid() && Tok.is(tok::r_paren))
John McCall9ae2f072010-08-23 23:25:46 +00001901 Result = Actions.ActOnParenExpr(LParenLoc, Tok.getLocation(), Result.take());
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00001902
1903 // Match the ')'.
1904 if (Result.isInvalid()) {
1905 SkipUntil(tok::r_paren);
1906 return ExprError();
1907 }
Mike Stump1eb44332009-09-09 15:08:12 +00001908
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00001909 if (Tok.is(tok::r_paren))
1910 RParenLoc = ConsumeParen();
1911 else
1912 MatchRHSPunctuation(tok::r_paren, LParenLoc);
1913
1914 return move(Result);
1915}