blob: 1588b69bdaa1bcd3f544897c5ddbc18d486e2c19 [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"
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +000016#include "clang/Parse/DeclSpec.h"
Douglas Gregor314b97f2009-11-10 19:49:08 +000017#include "clang/Parse/Template.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,
Douglas Gregor2dd078a2009-09-02 22:59:36 +000060 Action::TypeTy *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)) {
Douglas Gregor35073692009-03-26 23:56:24 +000067 SS.setScopeRep(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 Gregor35073692009-03-26 23:56:24 +000084 SS.setScopeRep(Actions.ActOnCXXGlobalScopeSpecifier(CurScope, 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.
107 ObjectType = 0;
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 '::'.
112 Actions.CodeCompleteQualifiedId(CurScope, SS, EnteringContext);
113 ConsumeToken();
114 }
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();
Mike Stump1eb44332009-09-09 15:08:12 +0000167 TemplateTy Template
Douglas Gregor014e88d2009-11-03 23:16:33 +0000168 = Actions.ActOnDependentTemplateName(TemplateKWLoc, SS, TemplateName,
Douglas Gregora481edb2009-11-20 23:39:24 +0000169 ObjectType, EnteringContext);
Eli Friedmaneab975d2009-08-29 04:08:08 +0000170 if (!Template)
John McCall9ba61662010-02-26 08:45:28 +0000171 return true;
Chris Lattnerc8e27cc2009-06-26 04:27:47 +0000172 if (AnnotateTemplateIdToken(Template, TNK_Dependent_template_name,
Douglas Gregorca1bdd72009-11-04 00:56:37 +0000173 &SS, TemplateName, TemplateKWLoc, false))
John McCall9ba61662010-02-26 08:45:28 +0000174 return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000175
Chris Lattner77cf72a2009-06-26 03:47:46 +0000176 continue;
177 }
Mike Stump1eb44332009-09-09 15:08:12 +0000178
Douglas Gregor39a8de12009-02-25 19:37:18 +0000179 if (Tok.is(tok::annot_template_id) && NextToken().is(tok::coloncolon)) {
Mike Stump1eb44332009-09-09 15:08:12 +0000180 // We have
Douglas Gregor39a8de12009-02-25 19:37:18 +0000181 //
182 // simple-template-id '::'
183 //
184 // So we need to check whether the simple-template-id is of the
Douglas Gregorc45c2322009-03-31 00:43:58 +0000185 // right kind (it should name a type or be dependent), and then
186 // convert it into a type within the nested-name-specifier.
Mike Stump1eb44332009-09-09 15:08:12 +0000187 TemplateIdAnnotation *TemplateId
Douglas Gregor39a8de12009-02-25 19:37:18 +0000188 = static_cast<TemplateIdAnnotation *>(Tok.getAnnotationValue());
Douglas Gregord4dca082010-02-24 18:44:31 +0000189 if (CheckForDestructor && GetLookAheadToken(2).is(tok::tilde)) {
190 *MayBePseudoDestructor = true;
John McCall9ba61662010-02-26 08:45:28 +0000191 return false;
Douglas Gregord4dca082010-02-24 18:44:31 +0000192 }
193
Mike Stump1eb44332009-09-09 15:08:12 +0000194 if (TemplateId->Kind == TNK_Type_template ||
Douglas Gregorc45c2322009-03-31 00:43:58 +0000195 TemplateId->Kind == TNK_Dependent_template_name) {
Douglas Gregor31a19b62009-04-01 21:51:26 +0000196 AnnotateTemplateIdTokenAsType(&SS);
Douglas Gregor39a8de12009-02-25 19:37:18 +0000197
Mike Stump1eb44332009-09-09 15:08:12 +0000198 assert(Tok.is(tok::annot_typename) &&
Douglas Gregor39a8de12009-02-25 19:37:18 +0000199 "AnnotateTemplateIdTokenAsType isn't working");
Douglas Gregor39a8de12009-02-25 19:37:18 +0000200 Token TypeToken = Tok;
201 ConsumeToken();
202 assert(Tok.is(tok::coloncolon) && "NextToken() not working properly!");
203 SourceLocation CCLoc = ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +0000204
Douglas Gregor39a8de12009-02-25 19:37:18 +0000205 if (!HasScopeSpecifier) {
206 SS.setBeginLoc(TypeToken.getLocation());
207 HasScopeSpecifier = true;
208 }
Mike Stump1eb44332009-09-09 15:08:12 +0000209
Douglas Gregor31a19b62009-04-01 21:51:26 +0000210 if (TypeToken.getAnnotationValue())
211 SS.setScopeRep(
Mike Stump1eb44332009-09-09 15:08:12 +0000212 Actions.ActOnCXXNestedNameSpecifier(CurScope, SS,
Douglas Gregor31a19b62009-04-01 21:51:26 +0000213 TypeToken.getAnnotationValue(),
214 TypeToken.getAnnotationRange(),
Douglas Gregoredc90502010-02-25 04:46:04 +0000215 CCLoc));
Douglas Gregor31a19b62009-04-01 21:51:26 +0000216 else
217 SS.setScopeRep(0);
Douglas Gregor39a8de12009-02-25 19:37:18 +0000218 SS.setEndLoc(CCLoc);
219 continue;
Chris Lattner67b9e832009-06-26 03:45:46 +0000220 }
Mike Stump1eb44332009-09-09 15:08:12 +0000221
Chris Lattner67b9e832009-06-26 03:45:46 +0000222 assert(false && "FIXME: Only type template names supported here");
Douglas Gregor39a8de12009-02-25 19:37:18 +0000223 }
224
Chris Lattner5c7f7862009-06-26 03:52:38 +0000225
226 // The rest of the nested-name-specifier possibilities start with
227 // tok::identifier.
228 if (Tok.isNot(tok::identifier))
229 break;
230
231 IdentifierInfo &II = *Tok.getIdentifierInfo();
232
233 // nested-name-specifier:
234 // type-name '::'
235 // namespace-name '::'
236 // nested-name-specifier identifier '::'
237 Token Next = NextToken();
Chris Lattner46646492009-12-07 01:36:53 +0000238
239 // If we get foo:bar, this is almost certainly a typo for foo::bar. Recover
240 // and emit a fixit hint for it.
Douglas Gregorb10cd042010-02-21 18:36:56 +0000241 if (Next.is(tok::colon) && !ColonIsSacred) {
Douglas Gregoredc90502010-02-25 04:46:04 +0000242 if (Actions.IsInvalidUnlessNestedName(CurScope, SS, II, ObjectType,
Douglas Gregorb10cd042010-02-21 18:36:56 +0000243 EnteringContext) &&
244 // If the token after the colon isn't an identifier, it's still an
245 // error, but they probably meant something else strange so don't
246 // recover like this.
247 PP.LookAhead(1).is(tok::identifier)) {
248 Diag(Next, diag::err_unexected_colon_in_nested_name_spec)
Douglas Gregor849b2432010-03-31 17:46:05 +0000249 << FixItHint::CreateReplacement(Next.getLocation(), "::");
Douglas Gregorb10cd042010-02-21 18:36:56 +0000250
251 // Recover as if the user wrote '::'.
252 Next.setKind(tok::coloncolon);
253 }
Chris Lattner46646492009-12-07 01:36:53 +0000254 }
255
Chris Lattner5c7f7862009-06-26 03:52:38 +0000256 if (Next.is(tok::coloncolon)) {
Douglas Gregor77549082010-02-24 21:29:12 +0000257 if (CheckForDestructor && GetLookAheadToken(2).is(tok::tilde) &&
258 !Actions.isNonTypeNestedNameSpecifier(CurScope, SS, Tok.getLocation(),
259 II, ObjectType)) {
Douglas Gregord4dca082010-02-24 18:44:31 +0000260 *MayBePseudoDestructor = true;
John McCall9ba61662010-02-26 08:45:28 +0000261 return false;
Douglas Gregord4dca082010-02-24 18:44:31 +0000262 }
263
Chris Lattner5c7f7862009-06-26 03:52:38 +0000264 // We have an identifier followed by a '::'. Lookup this name
265 // as the name in a nested-name-specifier.
266 SourceLocation IdLoc = ConsumeToken();
Chris Lattner46646492009-12-07 01:36:53 +0000267 assert((Tok.is(tok::coloncolon) || Tok.is(tok::colon)) &&
268 "NextToken() not working properly!");
Chris Lattner5c7f7862009-06-26 03:52:38 +0000269 SourceLocation CCLoc = ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +0000270
Chris Lattner5c7f7862009-06-26 03:52:38 +0000271 if (!HasScopeSpecifier) {
272 SS.setBeginLoc(IdLoc);
273 HasScopeSpecifier = true;
274 }
Mike Stump1eb44332009-09-09 15:08:12 +0000275
Chris Lattner5c7f7862009-06-26 03:52:38 +0000276 if (SS.isInvalid())
277 continue;
Mike Stump1eb44332009-09-09 15:08:12 +0000278
Chris Lattner5c7f7862009-06-26 03:52:38 +0000279 SS.setScopeRep(
Douglas Gregor495c35d2009-08-25 22:51:20 +0000280 Actions.ActOnCXXNestedNameSpecifier(CurScope, SS, IdLoc, CCLoc, II,
Douglas Gregoredc90502010-02-25 04:46:04 +0000281 ObjectType, EnteringContext));
Chris Lattner5c7f7862009-06-26 03:52:38 +0000282 SS.setEndLoc(CCLoc);
283 continue;
284 }
Mike Stump1eb44332009-09-09 15:08:12 +0000285
Chris Lattner5c7f7862009-06-26 03:52:38 +0000286 // nested-name-specifier:
287 // type-name '<'
288 if (Next.is(tok::less)) {
289 TemplateTy Template;
Douglas Gregor014e88d2009-11-03 23:16:33 +0000290 UnqualifiedId TemplateName;
291 TemplateName.setIdentifier(&II, Tok.getLocation());
Douglas Gregor1fd6d442010-05-21 23:18:07 +0000292 bool MemberOfUnknownSpecialization;
Douglas Gregor014e88d2009-11-03 23:16:33 +0000293 if (TemplateNameKind TNK = Actions.isTemplateName(CurScope, SS,
294 TemplateName,
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000295 ObjectType,
Douglas Gregor495c35d2009-08-25 22:51:20 +0000296 EnteringContext,
Douglas Gregor1fd6d442010-05-21 23:18:07 +0000297 Template,
298 MemberOfUnknownSpecialization)) {
Chris Lattner5c7f7862009-06-26 03:52:38 +0000299 // We have found a template name, so annotate this this token
300 // with a template-id annotation. We do not permit the
301 // template-id to be translated into a type annotation,
302 // because some clients (e.g., the parsing of class template
303 // specializations) still want to see the original template-id
304 // token.
Douglas Gregorca1bdd72009-11-04 00:56:37 +0000305 ConsumeToken();
306 if (AnnotateTemplateIdToken(Template, TNK, &SS, TemplateName,
307 SourceLocation(), false))
John McCall9ba61662010-02-26 08:45:28 +0000308 return true;
Chris Lattner5c7f7862009-06-26 03:52:38 +0000309 continue;
310 }
311 }
312
Douglas Gregor39a8de12009-02-25 19:37:18 +0000313 // We don't have any tokens that form the beginning of a
314 // nested-name-specifier, so we're done.
315 break;
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000316 }
Mike Stump1eb44332009-09-09 15:08:12 +0000317
Douglas Gregord4dca082010-02-24 18:44:31 +0000318 // Even if we didn't see any pieces of a nested-name-specifier, we
319 // still check whether there is a tilde in this position, which
320 // indicates a potential pseudo-destructor.
321 if (CheckForDestructor && Tok.is(tok::tilde))
322 *MayBePseudoDestructor = true;
323
John McCall9ba61662010-02-26 08:45:28 +0000324 return false;
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000325}
326
327/// ParseCXXIdExpression - Handle id-expression.
328///
329/// id-expression:
330/// unqualified-id
331/// qualified-id
332///
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000333/// qualified-id:
334/// '::'[opt] nested-name-specifier 'template'[opt] unqualified-id
335/// '::' identifier
336/// '::' operator-function-id
Douglas Gregoredce4dd2009-06-30 22:34:41 +0000337/// '::' template-id
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000338///
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000339/// NOTE: The standard specifies that, for qualified-id, the parser does not
340/// expect:
341///
342/// '::' conversion-function-id
343/// '::' '~' class-name
344///
345/// This may cause a slight inconsistency on diagnostics:
346///
347/// class C {};
348/// namespace A {}
349/// void f() {
350/// :: A :: ~ C(); // Some Sema error about using destructor with a
351/// // namespace.
352/// :: ~ C(); // Some Parser error like 'unexpected ~'.
353/// }
354///
355/// We simplify the parser a bit and make it work like:
356///
357/// qualified-id:
358/// '::'[opt] nested-name-specifier 'template'[opt] unqualified-id
359/// '::' unqualified-id
360///
361/// That way Sema can handle and report similar errors for namespaces and the
362/// global scope.
363///
Sebastian Redlebc07d52009-02-03 20:19:35 +0000364/// The isAddressOfOperand parameter indicates that this id-expression is a
365/// direct operand of the address-of operator. This is, besides member contexts,
366/// the only place where a qualified-id naming a non-static class member may
367/// appear.
368///
369Parser::OwningExprResult Parser::ParseCXXIdExpression(bool isAddressOfOperand) {
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000370 // qualified-id:
371 // '::'[opt] nested-name-specifier 'template'[opt] unqualified-id
372 // '::' unqualified-id
373 //
374 CXXScopeSpec SS;
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000375 ParseOptionalCXXScopeSpecifier(SS, /*ObjectType=*/0, false);
Douglas Gregor02a24ee2009-11-03 16:56:39 +0000376
377 UnqualifiedId Name;
378 if (ParseUnqualifiedId(SS,
379 /*EnteringContext=*/false,
380 /*AllowDestructorName=*/false,
381 /*AllowConstructorName=*/false,
Douglas Gregor2d1c2142009-11-03 19:44:04 +0000382 /*ObjectType=*/0,
Douglas Gregor02a24ee2009-11-03 16:56:39 +0000383 Name))
384 return ExprError();
John McCallb681b612009-11-22 02:49:43 +0000385
386 // This is only the direct operand of an & operator if it is not
387 // followed by a postfix-expression suffix.
388 if (isAddressOfOperand) {
389 switch (Tok.getKind()) {
390 case tok::l_square:
391 case tok::l_paren:
392 case tok::arrow:
393 case tok::period:
394 case tok::plusplus:
395 case tok::minusminus:
396 isAddressOfOperand = false;
397 break;
398
399 default:
400 break;
401 }
402 }
Douglas Gregor02a24ee2009-11-03 16:56:39 +0000403
404 return Actions.ActOnIdExpression(CurScope, SS, Name, Tok.is(tok::l_paren),
405 isAddressOfOperand);
406
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000407}
408
Reid Spencer5f016e22007-07-11 17:01:13 +0000409/// ParseCXXCasts - This handles the various ways to cast expressions to another
410/// type.
411///
412/// postfix-expression: [C++ 5.2p1]
413/// 'dynamic_cast' '<' type-name '>' '(' expression ')'
414/// 'static_cast' '<' type-name '>' '(' expression ')'
415/// 'reinterpret_cast' '<' type-name '>' '(' expression ')'
416/// 'const_cast' '<' type-name '>' '(' expression ')'
417///
Sebastian Redl20df9b72008-12-11 22:51:44 +0000418Parser::OwningExprResult Parser::ParseCXXCasts() {
Reid Spencer5f016e22007-07-11 17:01:13 +0000419 tok::TokenKind Kind = Tok.getKind();
420 const char *CastName = 0; // For error messages
421
422 switch (Kind) {
423 default: assert(0 && "Unknown C++ cast!"); abort();
424 case tok::kw_const_cast: CastName = "const_cast"; break;
425 case tok::kw_dynamic_cast: CastName = "dynamic_cast"; break;
426 case tok::kw_reinterpret_cast: CastName = "reinterpret_cast"; break;
427 case tok::kw_static_cast: CastName = "static_cast"; break;
428 }
429
430 SourceLocation OpLoc = ConsumeToken();
431 SourceLocation LAngleBracketLoc = Tok.getLocation();
432
433 if (ExpectAndConsume(tok::less, diag::err_expected_less_after, CastName))
Sebastian Redl20df9b72008-12-11 22:51:44 +0000434 return ExprError();
Reid Spencer5f016e22007-07-11 17:01:13 +0000435
Douglas Gregor809070a2009-02-18 17:45:20 +0000436 TypeResult CastTy = ParseTypeName();
Reid Spencer5f016e22007-07-11 17:01:13 +0000437 SourceLocation RAngleBracketLoc = Tok.getLocation();
438
Chris Lattner1ab3b962008-11-18 07:48:38 +0000439 if (ExpectAndConsume(tok::greater, diag::err_expected_greater))
Sebastian Redl20df9b72008-12-11 22:51:44 +0000440 return ExprError(Diag(LAngleBracketLoc, diag::note_matching) << "<");
Reid Spencer5f016e22007-07-11 17:01:13 +0000441
442 SourceLocation LParenLoc = Tok.getLocation(), RParenLoc;
443
Argyrios Kyrtzidis21e7ad22009-05-22 10:23:16 +0000444 if (ExpectAndConsume(tok::l_paren, diag::err_expected_lparen_after, CastName))
445 return ExprError();
Reid Spencer5f016e22007-07-11 17:01:13 +0000446
Argyrios Kyrtzidis21e7ad22009-05-22 10:23:16 +0000447 OwningExprResult Result = ParseExpression();
Mike Stump1eb44332009-09-09 15:08:12 +0000448
Argyrios Kyrtzidis21e7ad22009-05-22 10:23:16 +0000449 // Match the ')'.
Douglas Gregor27591ff2009-11-06 05:48:00 +0000450 RParenLoc = MatchRHSPunctuation(tok::r_paren, LParenLoc);
Reid Spencer5f016e22007-07-11 17:01:13 +0000451
Douglas Gregor809070a2009-02-18 17:45:20 +0000452 if (!Result.isInvalid() && !CastTy.isInvalid())
Douglas Gregor49badde2008-10-27 19:41:14 +0000453 Result = Actions.ActOnCXXNamedCast(OpLoc, Kind,
Sebastian Redlf53597f2009-03-15 17:47:39 +0000454 LAngleBracketLoc, CastTy.get(),
Douglas Gregor809070a2009-02-18 17:45:20 +0000455 RAngleBracketLoc,
Sebastian Redlf53597f2009-03-15 17:47:39 +0000456 LParenLoc, move(Result), RParenLoc);
Reid Spencer5f016e22007-07-11 17:01:13 +0000457
Sebastian Redl20df9b72008-12-11 22:51:44 +0000458 return move(Result);
Reid Spencer5f016e22007-07-11 17:01:13 +0000459}
460
Sebastian Redlc42e1182008-11-11 11:37:55 +0000461/// ParseCXXTypeid - This handles the C++ typeid expression.
462///
463/// postfix-expression: [C++ 5.2p1]
464/// 'typeid' '(' expression ')'
465/// 'typeid' '(' type-id ')'
466///
Sebastian Redl20df9b72008-12-11 22:51:44 +0000467Parser::OwningExprResult Parser::ParseCXXTypeid() {
Sebastian Redlc42e1182008-11-11 11:37:55 +0000468 assert(Tok.is(tok::kw_typeid) && "Not 'typeid'!");
469
470 SourceLocation OpLoc = ConsumeToken();
471 SourceLocation LParenLoc = Tok.getLocation();
472 SourceLocation RParenLoc;
473
474 // typeid expressions are always parenthesized.
475 if (ExpectAndConsume(tok::l_paren, diag::err_expected_lparen_after,
476 "typeid"))
Sebastian Redl20df9b72008-12-11 22:51:44 +0000477 return ExprError();
Sebastian Redlc42e1182008-11-11 11:37:55 +0000478
Sebastian Redl15faa7f2008-12-09 20:22:58 +0000479 OwningExprResult Result(Actions);
Sebastian Redlc42e1182008-11-11 11:37:55 +0000480
481 if (isTypeIdInParens()) {
Douglas Gregor809070a2009-02-18 17:45:20 +0000482 TypeResult Ty = ParseTypeName();
Sebastian Redlc42e1182008-11-11 11:37:55 +0000483
484 // Match the ')'.
485 MatchRHSPunctuation(tok::r_paren, LParenLoc);
486
Douglas Gregor809070a2009-02-18 17:45:20 +0000487 if (Ty.isInvalid())
Sebastian Redl20df9b72008-12-11 22:51:44 +0000488 return ExprError();
Sebastian Redlc42e1182008-11-11 11:37:55 +0000489
490 Result = Actions.ActOnCXXTypeid(OpLoc, LParenLoc, /*isType=*/true,
Douglas Gregor809070a2009-02-18 17:45:20 +0000491 Ty.get(), RParenLoc);
Sebastian Redlc42e1182008-11-11 11:37:55 +0000492 } else {
Douglas Gregore0762c92009-06-19 23:52:42 +0000493 // C++0x [expr.typeid]p3:
Mike Stump1eb44332009-09-09 15:08:12 +0000494 // When typeid is applied to an expression other than an lvalue of a
495 // polymorphic class type [...] The expression is an unevaluated
Douglas Gregore0762c92009-06-19 23:52:42 +0000496 // operand (Clause 5).
497 //
Mike Stump1eb44332009-09-09 15:08:12 +0000498 // Note that we can't tell whether the expression is an lvalue of a
Douglas Gregore0762c92009-06-19 23:52:42 +0000499 // polymorphic class type until after we've parsed the expression, so
Douglas Gregorac7610d2009-06-22 20:57:11 +0000500 // we the expression is potentially potentially evaluated.
501 EnterExpressionEvaluationContext Unevaluated(Actions,
502 Action::PotentiallyPotentiallyEvaluated);
Sebastian Redlc42e1182008-11-11 11:37:55 +0000503 Result = ParseExpression();
504
505 // Match the ')'.
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000506 if (Result.isInvalid())
Sebastian Redlc42e1182008-11-11 11:37:55 +0000507 SkipUntil(tok::r_paren);
508 else {
509 MatchRHSPunctuation(tok::r_paren, LParenLoc);
510
511 Result = Actions.ActOnCXXTypeid(OpLoc, LParenLoc, /*isType=*/false,
Sebastian Redleffa8d12008-12-10 00:02:53 +0000512 Result.release(), RParenLoc);
Sebastian Redlc42e1182008-11-11 11:37:55 +0000513 }
514 }
515
Sebastian Redl20df9b72008-12-11 22:51:44 +0000516 return move(Result);
Sebastian Redlc42e1182008-11-11 11:37:55 +0000517}
518
Douglas Gregord4dca082010-02-24 18:44:31 +0000519/// \brief Parse a C++ pseudo-destructor expression after the base,
520/// . or -> operator, and nested-name-specifier have already been
521/// parsed.
522///
523/// postfix-expression: [C++ 5.2]
524/// postfix-expression . pseudo-destructor-name
525/// postfix-expression -> pseudo-destructor-name
526///
527/// pseudo-destructor-name:
528/// ::[opt] nested-name-specifier[opt] type-name :: ~type-name
529/// ::[opt] nested-name-specifier template simple-template-id ::
530/// ~type-name
531/// ::[opt] nested-name-specifier[opt] ~type-name
532///
533Parser::OwningExprResult
534Parser::ParseCXXPseudoDestructor(ExprArg Base, SourceLocation OpLoc,
535 tok::TokenKind OpKind,
536 CXXScopeSpec &SS,
537 Action::TypeTy *ObjectType) {
538 // We're parsing either a pseudo-destructor-name or a dependent
539 // member access that has the same form as a
540 // pseudo-destructor-name. We parse both in the same way and let
541 // the action model sort them out.
542 //
543 // Note that the ::[opt] nested-name-specifier[opt] has already
544 // been parsed, and if there was a simple-template-id, it has
545 // been coalesced into a template-id annotation token.
546 UnqualifiedId FirstTypeName;
547 SourceLocation CCLoc;
548 if (Tok.is(tok::identifier)) {
549 FirstTypeName.setIdentifier(Tok.getIdentifierInfo(), Tok.getLocation());
550 ConsumeToken();
551 assert(Tok.is(tok::coloncolon) &&"ParseOptionalCXXScopeSpecifier fail");
552 CCLoc = ConsumeToken();
553 } else if (Tok.is(tok::annot_template_id)) {
554 FirstTypeName.setTemplateId(
555 (TemplateIdAnnotation *)Tok.getAnnotationValue());
556 ConsumeToken();
557 assert(Tok.is(tok::coloncolon) &&"ParseOptionalCXXScopeSpecifier fail");
558 CCLoc = ConsumeToken();
559 } else {
560 FirstTypeName.setIdentifier(0, SourceLocation());
561 }
562
563 // Parse the tilde.
564 assert(Tok.is(tok::tilde) && "ParseOptionalCXXScopeSpecifier fail");
565 SourceLocation TildeLoc = ConsumeToken();
566 if (!Tok.is(tok::identifier)) {
567 Diag(Tok, diag::err_destructor_tilde_identifier);
568 return ExprError();
569 }
570
571 // Parse the second type.
572 UnqualifiedId SecondTypeName;
573 IdentifierInfo *Name = Tok.getIdentifierInfo();
574 SourceLocation NameLoc = ConsumeToken();
575 SecondTypeName.setIdentifier(Name, NameLoc);
576
577 // If there is a '<', the second type name is a template-id. Parse
578 // it as such.
579 if (Tok.is(tok::less) &&
580 ParseUnqualifiedIdTemplateId(SS, Name, NameLoc, false, ObjectType,
Douglas Gregor0278e122010-05-05 05:58:24 +0000581 SecondTypeName, /*AssumeTemplateName=*/true,
582 /*TemplateKWLoc*/SourceLocation()))
Douglas Gregord4dca082010-02-24 18:44:31 +0000583 return ExprError();
584
585 return Actions.ActOnPseudoDestructorExpr(CurScope, move(Base), OpLoc, OpKind,
586 SS, FirstTypeName, CCLoc,
587 TildeLoc, SecondTypeName,
588 Tok.is(tok::l_paren));
589}
590
Reid Spencer5f016e22007-07-11 17:01:13 +0000591/// ParseCXXBoolLiteral - This handles the C++ Boolean literals.
592///
593/// boolean-literal: [C++ 2.13.5]
594/// 'true'
595/// 'false'
Sebastian Redl20df9b72008-12-11 22:51:44 +0000596Parser::OwningExprResult Parser::ParseCXXBoolLiteral() {
Reid Spencer5f016e22007-07-11 17:01:13 +0000597 tok::TokenKind Kind = Tok.getKind();
Sebastian Redlf53597f2009-03-15 17:47:39 +0000598 return Actions.ActOnCXXBoolLiteral(ConsumeToken(), Kind);
Reid Spencer5f016e22007-07-11 17:01:13 +0000599}
Chris Lattner50dd2892008-02-26 00:51:44 +0000600
601/// ParseThrowExpression - This handles the C++ throw expression.
602///
603/// throw-expression: [C++ 15]
604/// 'throw' assignment-expression[opt]
Sebastian Redl20df9b72008-12-11 22:51:44 +0000605Parser::OwningExprResult Parser::ParseThrowExpression() {
Chris Lattner50dd2892008-02-26 00:51:44 +0000606 assert(Tok.is(tok::kw_throw) && "Not throw!");
Chris Lattner50dd2892008-02-26 00:51:44 +0000607 SourceLocation ThrowLoc = ConsumeToken(); // Eat the throw token.
Sebastian Redl20df9b72008-12-11 22:51:44 +0000608
Chris Lattner2a2819a2008-04-06 06:02:23 +0000609 // If the current token isn't the start of an assignment-expression,
610 // then the expression is not present. This handles things like:
611 // "C ? throw : (void)42", which is crazy but legal.
612 switch (Tok.getKind()) { // FIXME: move this predicate somewhere common.
613 case tok::semi:
614 case tok::r_paren:
615 case tok::r_square:
616 case tok::r_brace:
617 case tok::colon:
618 case tok::comma:
Sebastian Redlf53597f2009-03-15 17:47:39 +0000619 return Actions.ActOnCXXThrow(ThrowLoc, ExprArg(Actions));
Chris Lattner50dd2892008-02-26 00:51:44 +0000620
Chris Lattner2a2819a2008-04-06 06:02:23 +0000621 default:
Sebastian Redl2f7ece72008-12-11 21:36:32 +0000622 OwningExprResult Expr(ParseAssignmentExpression());
Sebastian Redl20df9b72008-12-11 22:51:44 +0000623 if (Expr.isInvalid()) return move(Expr);
Sebastian Redlf53597f2009-03-15 17:47:39 +0000624 return Actions.ActOnCXXThrow(ThrowLoc, move(Expr));
Chris Lattner2a2819a2008-04-06 06:02:23 +0000625 }
Chris Lattner50dd2892008-02-26 00:51:44 +0000626}
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +0000627
628/// ParseCXXThis - This handles the C++ 'this' pointer.
629///
630/// C++ 9.3.2: In the body of a non-static member function, the keyword this is
631/// a non-lvalue expression whose value is the address of the object for which
632/// the function is called.
Sebastian Redl20df9b72008-12-11 22:51:44 +0000633Parser::OwningExprResult Parser::ParseCXXThis() {
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +0000634 assert(Tok.is(tok::kw_this) && "Not 'this'!");
635 SourceLocation ThisLoc = ConsumeToken();
Sebastian Redlf53597f2009-03-15 17:47:39 +0000636 return Actions.ActOnCXXThis(ThisLoc);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +0000637}
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000638
639/// ParseCXXTypeConstructExpression - Parse construction of a specified type.
640/// Can be interpreted either as function-style casting ("int(x)")
641/// or class type construction ("ClassType(x,y,z)")
642/// or creation of a value-initialized type ("int()").
643///
644/// postfix-expression: [C++ 5.2p1]
645/// simple-type-specifier '(' expression-list[opt] ')' [C++ 5.2.3]
646/// typename-specifier '(' expression-list[opt] ')' [TODO]
647///
Sebastian Redl20df9b72008-12-11 22:51:44 +0000648Parser::OwningExprResult
649Parser::ParseCXXTypeConstructExpression(const DeclSpec &DS) {
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000650 Declarator DeclaratorInfo(DS, Declarator::TypeNameContext);
Douglas Gregor5ac8aff2009-01-26 22:44:13 +0000651 TypeTy *TypeRep = Actions.ActOnTypeName(CurScope, DeclaratorInfo).get();
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000652
653 assert(Tok.is(tok::l_paren) && "Expected '('!");
654 SourceLocation LParenLoc = ConsumeParen();
655
Sebastian Redla55e52c2008-11-25 22:21:31 +0000656 ExprVector Exprs(Actions);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000657 CommaLocsTy CommaLocs;
658
659 if (Tok.isNot(tok::r_paren)) {
660 if (ParseExpressionList(Exprs, CommaLocs)) {
661 SkipUntil(tok::r_paren);
Sebastian Redl20df9b72008-12-11 22:51:44 +0000662 return ExprError();
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000663 }
664 }
665
666 // Match the ')'.
667 SourceLocation RParenLoc = MatchRHSPunctuation(tok::r_paren, LParenLoc);
668
Sebastian Redlef0cb8e2009-07-29 13:50:23 +0000669 // TypeRep could be null, if it references an invalid typedef.
670 if (!TypeRep)
671 return ExprError();
672
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000673 assert((Exprs.size() == 0 || Exprs.size()-1 == CommaLocs.size())&&
674 "Unexpected number of commas!");
Sebastian Redlf53597f2009-03-15 17:47:39 +0000675 return Actions.ActOnCXXTypeConstructExpr(DS.getSourceRange(), TypeRep,
676 LParenLoc, move_arg(Exprs),
Jay Foadbeaaccd2009-05-21 09:52:38 +0000677 CommaLocs.data(), RParenLoc);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000678}
679
Douglas Gregor99e9b4d2009-11-25 00:27:52 +0000680/// ParseCXXCondition - if/switch/while condition expression.
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +0000681///
682/// condition:
683/// expression
684/// type-specifier-seq declarator '=' assignment-expression
685/// [GNU] type-specifier-seq declarator simple-asm-expr[opt] attributes[opt]
686/// '=' assignment-expression
687///
Douglas Gregor99e9b4d2009-11-25 00:27:52 +0000688/// \param ExprResult if the condition was parsed as an expression, the
689/// parsed expression.
690///
691/// \param DeclResult if the condition was parsed as a declaration, the
692/// parsed declaration.
693///
Douglas Gregor586596f2010-05-06 17:25:47 +0000694/// \param Loc The location of the start of the statement that requires this
695/// condition, e.g., the "for" in a for loop.
696///
697/// \param ConvertToBoolean Whether the condition expression should be
698/// converted to a boolean value.
699///
Douglas Gregor99e9b4d2009-11-25 00:27:52 +0000700/// \returns true if there was a parsing, false otherwise.
701bool Parser::ParseCXXCondition(OwningExprResult &ExprResult,
Douglas Gregor586596f2010-05-06 17:25:47 +0000702 DeclPtrTy &DeclResult,
703 SourceLocation Loc,
704 bool ConvertToBoolean) {
Douglas Gregor01dfea02010-01-10 23:08:15 +0000705 if (Tok.is(tok::code_completion)) {
706 Actions.CodeCompleteOrdinaryName(CurScope, Action::CCC_Condition);
707 ConsumeToken();
708 }
709
Douglas Gregor99e9b4d2009-11-25 00:27:52 +0000710 if (!isCXXConditionDeclaration()) {
Douglas Gregor586596f2010-05-06 17:25:47 +0000711 // Parse the expression.
Douglas Gregor99e9b4d2009-11-25 00:27:52 +0000712 ExprResult = ParseExpression(); // expression
713 DeclResult = DeclPtrTy();
Douglas Gregor586596f2010-05-06 17:25:47 +0000714 if (ExprResult.isInvalid())
715 return true;
716
717 // If required, convert to a boolean value.
718 if (ConvertToBoolean)
719 ExprResult
720 = Actions.ActOnBooleanCondition(CurScope, Loc, move(ExprResult));
Douglas Gregor99e9b4d2009-11-25 00:27:52 +0000721 return ExprResult.isInvalid();
722 }
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +0000723
724 // type-specifier-seq
725 DeclSpec DS;
726 ParseSpecifierQualifierList(DS);
727
728 // declarator
729 Declarator DeclaratorInfo(DS, Declarator::ConditionContext);
730 ParseDeclarator(DeclaratorInfo);
731
732 // simple-asm-expr[opt]
733 if (Tok.is(tok::kw_asm)) {
Sebastian Redlab197ba2009-02-09 18:23:29 +0000734 SourceLocation Loc;
735 OwningExprResult AsmLabel(ParseSimpleAsm(&Loc));
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000736 if (AsmLabel.isInvalid()) {
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +0000737 SkipUntil(tok::semi);
Douglas Gregor99e9b4d2009-11-25 00:27:52 +0000738 return true;
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +0000739 }
Sebastian Redleffa8d12008-12-10 00:02:53 +0000740 DeclaratorInfo.setAsmLabel(AsmLabel.release());
Sebastian Redlab197ba2009-02-09 18:23:29 +0000741 DeclaratorInfo.SetRangeEnd(Loc);
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +0000742 }
743
744 // If attributes are present, parse them.
Sebastian Redlab197ba2009-02-09 18:23:29 +0000745 if (Tok.is(tok::kw___attribute)) {
746 SourceLocation Loc;
Sean Huntbbd37c62009-11-21 08:43:09 +0000747 AttributeList *AttrList = ParseGNUAttributes(&Loc);
Sebastian Redlab197ba2009-02-09 18:23:29 +0000748 DeclaratorInfo.AddAttributes(AttrList, Loc);
749 }
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +0000750
Douglas Gregor99e9b4d2009-11-25 00:27:52 +0000751 // Type-check the declaration itself.
752 Action::DeclResult Dcl = Actions.ActOnCXXConditionDeclaration(CurScope,
753 DeclaratorInfo);
754 DeclResult = Dcl.get();
755 ExprResult = ExprError();
756
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +0000757 // '=' assignment-expression
Douglas Gregor99e9b4d2009-11-25 00:27:52 +0000758 if (Tok.is(tok::equal)) {
759 SourceLocation EqualLoc = ConsumeToken();
760 OwningExprResult AssignExpr(ParseAssignmentExpression());
761 if (!AssignExpr.isInvalid())
762 Actions.AddInitializerToDecl(DeclResult, move(AssignExpr));
763 } else {
764 // FIXME: C++0x allows a braced-init-list
765 Diag(Tok, diag::err_expected_equal_after_declarator);
766 }
767
Douglas Gregor586596f2010-05-06 17:25:47 +0000768 // FIXME: Build a reference to this declaration? Convert it to bool?
769 // (This is currently handled by Sema).
770
Douglas Gregor99e9b4d2009-11-25 00:27:52 +0000771 return false;
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +0000772}
773
Douglas Gregor6aa14d82010-04-21 22:36:40 +0000774/// \brief Determine whether the current token starts a C++
775/// simple-type-specifier.
776bool Parser::isCXXSimpleTypeSpecifier() const {
777 switch (Tok.getKind()) {
778 case tok::annot_typename:
779 case tok::kw_short:
780 case tok::kw_long:
781 case tok::kw_signed:
782 case tok::kw_unsigned:
783 case tok::kw_void:
784 case tok::kw_char:
785 case tok::kw_int:
786 case tok::kw_float:
787 case tok::kw_double:
788 case tok::kw_wchar_t:
789 case tok::kw_char16_t:
790 case tok::kw_char32_t:
791 case tok::kw_bool:
792 // FIXME: C++0x decltype support.
793 // GNU typeof support.
794 case tok::kw_typeof:
795 return true;
796
797 default:
798 break;
799 }
800
801 return false;
802}
803
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000804/// ParseCXXSimpleTypeSpecifier - [C++ 7.1.5.2] Simple type specifiers.
805/// This should only be called when the current token is known to be part of
806/// simple-type-specifier.
807///
808/// simple-type-specifier:
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000809/// '::'[opt] nested-name-specifier[opt] type-name
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000810/// '::'[opt] nested-name-specifier 'template' simple-template-id [TODO]
811/// char
812/// wchar_t
813/// bool
814/// short
815/// int
816/// long
817/// signed
818/// unsigned
819/// float
820/// double
821/// void
822/// [GNU] typeof-specifier
823/// [C++0x] auto [TODO]
824///
825/// type-name:
826/// class-name
827/// enum-name
828/// typedef-name
829///
830void Parser::ParseCXXSimpleTypeSpecifier(DeclSpec &DS) {
831 DS.SetRangeStart(Tok.getLocation());
832 const char *PrevSpec;
John McCallfec54012009-08-03 20:12:06 +0000833 unsigned DiagID;
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000834 SourceLocation Loc = Tok.getLocation();
Mike Stump1eb44332009-09-09 15:08:12 +0000835
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000836 switch (Tok.getKind()) {
Chris Lattner55a7cef2009-01-05 00:13:00 +0000837 case tok::identifier: // foo::bar
838 case tok::coloncolon: // ::foo::bar
839 assert(0 && "Annotation token should already be formed!");
Mike Stump1eb44332009-09-09 15:08:12 +0000840 default:
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000841 assert(0 && "Not a simple-type-specifier token!");
842 abort();
Chris Lattner55a7cef2009-01-05 00:13:00 +0000843
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000844 // type-name
Chris Lattnerb31757b2009-01-06 05:06:21 +0000845 case tok::annot_typename: {
John McCallfec54012009-08-03 20:12:06 +0000846 DS.SetTypeSpecType(DeclSpec::TST_typename, Loc, PrevSpec, DiagID,
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000847 Tok.getAnnotationValue());
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000848 break;
849 }
Mike Stump1eb44332009-09-09 15:08:12 +0000850
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000851 // builtin types
852 case tok::kw_short:
John McCallfec54012009-08-03 20:12:06 +0000853 DS.SetTypeSpecWidth(DeclSpec::TSW_short, Loc, PrevSpec, DiagID);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000854 break;
855 case tok::kw_long:
John McCallfec54012009-08-03 20:12:06 +0000856 DS.SetTypeSpecWidth(DeclSpec::TSW_long, Loc, PrevSpec, DiagID);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000857 break;
858 case tok::kw_signed:
John McCallfec54012009-08-03 20:12:06 +0000859 DS.SetTypeSpecSign(DeclSpec::TSS_signed, Loc, PrevSpec, DiagID);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000860 break;
861 case tok::kw_unsigned:
John McCallfec54012009-08-03 20:12:06 +0000862 DS.SetTypeSpecSign(DeclSpec::TSS_unsigned, Loc, PrevSpec, DiagID);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000863 break;
864 case tok::kw_void:
John McCallfec54012009-08-03 20:12:06 +0000865 DS.SetTypeSpecType(DeclSpec::TST_void, Loc, PrevSpec, DiagID);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000866 break;
867 case tok::kw_char:
John McCallfec54012009-08-03 20:12:06 +0000868 DS.SetTypeSpecType(DeclSpec::TST_char, Loc, PrevSpec, DiagID);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000869 break;
870 case tok::kw_int:
John McCallfec54012009-08-03 20:12:06 +0000871 DS.SetTypeSpecType(DeclSpec::TST_int, Loc, PrevSpec, DiagID);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000872 break;
873 case tok::kw_float:
John McCallfec54012009-08-03 20:12:06 +0000874 DS.SetTypeSpecType(DeclSpec::TST_float, Loc, PrevSpec, DiagID);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000875 break;
876 case tok::kw_double:
John McCallfec54012009-08-03 20:12:06 +0000877 DS.SetTypeSpecType(DeclSpec::TST_double, Loc, PrevSpec, DiagID);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000878 break;
879 case tok::kw_wchar_t:
John McCallfec54012009-08-03 20:12:06 +0000880 DS.SetTypeSpecType(DeclSpec::TST_wchar, Loc, PrevSpec, DiagID);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000881 break;
Alisdair Meredithf5c209d2009-07-14 06:30:34 +0000882 case tok::kw_char16_t:
John McCallfec54012009-08-03 20:12:06 +0000883 DS.SetTypeSpecType(DeclSpec::TST_char16, Loc, PrevSpec, DiagID);
Alisdair Meredithf5c209d2009-07-14 06:30:34 +0000884 break;
885 case tok::kw_char32_t:
John McCallfec54012009-08-03 20:12:06 +0000886 DS.SetTypeSpecType(DeclSpec::TST_char32, Loc, PrevSpec, DiagID);
Alisdair Meredithf5c209d2009-07-14 06:30:34 +0000887 break;
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000888 case tok::kw_bool:
John McCallfec54012009-08-03 20:12:06 +0000889 DS.SetTypeSpecType(DeclSpec::TST_bool, Loc, PrevSpec, DiagID);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000890 break;
Mike Stump1eb44332009-09-09 15:08:12 +0000891
Douglas Gregor6aa14d82010-04-21 22:36:40 +0000892 // FIXME: C++0x decltype support.
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000893 // GNU typeof support.
894 case tok::kw_typeof:
895 ParseTypeofSpecifier(DS);
Douglas Gregor9b3064b2009-04-01 22:41:11 +0000896 DS.Finish(Diags, PP);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000897 return;
898 }
Chris Lattnerb31757b2009-01-06 05:06:21 +0000899 if (Tok.is(tok::annot_typename))
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000900 DS.SetRangeEnd(Tok.getAnnotationEndLoc());
901 else
902 DS.SetRangeEnd(Tok.getLocation());
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000903 ConsumeToken();
Douglas Gregor9b3064b2009-04-01 22:41:11 +0000904 DS.Finish(Diags, PP);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000905}
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +0000906
Douglas Gregor2f1bc522008-11-07 20:08:42 +0000907/// ParseCXXTypeSpecifierSeq - Parse a C++ type-specifier-seq (C++
908/// [dcl.name]), which is a non-empty sequence of type-specifiers,
909/// e.g., "const short int". Note that the DeclSpec is *not* finished
910/// by parsing the type-specifier-seq, because these sequences are
911/// typically followed by some form of declarator. Returns true and
912/// emits diagnostics if this is not a type-specifier-seq, false
913/// otherwise.
914///
915/// type-specifier-seq: [C++ 8.1]
916/// type-specifier type-specifier-seq[opt]
917///
918bool Parser::ParseCXXTypeSpecifierSeq(DeclSpec &DS) {
919 DS.SetRangeStart(Tok.getLocation());
920 const char *PrevSpec = 0;
John McCallfec54012009-08-03 20:12:06 +0000921 unsigned DiagID;
922 bool isInvalid = 0;
Douglas Gregor2f1bc522008-11-07 20:08:42 +0000923
924 // Parse one or more of the type specifiers.
Sebastian Redld9bafa72010-02-03 21:21:43 +0000925 if (!ParseOptionalTypeSpecifier(DS, isInvalid, PrevSpec, DiagID,
926 ParsedTemplateInfo(), /*SuppressDeclarations*/true)) {
Chris Lattner1ab3b962008-11-18 07:48:38 +0000927 Diag(Tok, diag::err_operator_missing_type_specifier);
Douglas Gregor2f1bc522008-11-07 20:08:42 +0000928 return true;
929 }
Mike Stump1eb44332009-09-09 15:08:12 +0000930
Sebastian Redld9bafa72010-02-03 21:21:43 +0000931 while (ParseOptionalTypeSpecifier(DS, isInvalid, PrevSpec, DiagID,
932 ParsedTemplateInfo(), /*SuppressDeclarations*/true))
933 {}
Douglas Gregor2f1bc522008-11-07 20:08:42 +0000934
Douglas Gregor396a9f22010-02-24 23:13:13 +0000935 DS.Finish(Diags, PP);
Douglas Gregor2f1bc522008-11-07 20:08:42 +0000936 return false;
937}
938
Douglas Gregor3f9a0562009-11-03 01:35:08 +0000939/// \brief Finish parsing a C++ unqualified-id that is a template-id of
940/// some form.
941///
942/// This routine is invoked when a '<' is encountered after an identifier or
943/// operator-function-id is parsed by \c ParseUnqualifiedId() to determine
944/// whether the unqualified-id is actually a template-id. This routine will
945/// then parse the template arguments and form the appropriate template-id to
946/// return to the caller.
947///
948/// \param SS the nested-name-specifier that precedes this template-id, if
949/// we're actually parsing a qualified-id.
950///
951/// \param Name for constructor and destructor names, this is the actual
952/// identifier that may be a template-name.
953///
954/// \param NameLoc the location of the class-name in a constructor or
955/// destructor.
956///
957/// \param EnteringContext whether we're entering the scope of the
958/// nested-name-specifier.
959///
Douglas Gregor46df8cc2009-11-03 21:24:04 +0000960/// \param ObjectType if this unqualified-id occurs within a member access
961/// expression, the type of the base object whose member is being accessed.
962///
Douglas Gregor3f9a0562009-11-03 01:35:08 +0000963/// \param Id as input, describes the template-name or operator-function-id
964/// that precedes the '<'. If template arguments were parsed successfully,
965/// will be updated with the template-id.
966///
Douglas Gregord4dca082010-02-24 18:44:31 +0000967/// \param AssumeTemplateId When true, this routine will assume that the name
968/// refers to a template without performing name lookup to verify.
969///
Douglas Gregor3f9a0562009-11-03 01:35:08 +0000970/// \returns true if a parse error occurred, false otherwise.
971bool Parser::ParseUnqualifiedIdTemplateId(CXXScopeSpec &SS,
972 IdentifierInfo *Name,
973 SourceLocation NameLoc,
974 bool EnteringContext,
Douglas Gregor2d1c2142009-11-03 19:44:04 +0000975 TypeTy *ObjectType,
Douglas Gregord4dca082010-02-24 18:44:31 +0000976 UnqualifiedId &Id,
Douglas Gregor0278e122010-05-05 05:58:24 +0000977 bool AssumeTemplateId,
978 SourceLocation TemplateKWLoc) {
979 assert((AssumeTemplateId || Tok.is(tok::less)) &&
980 "Expected '<' to finish parsing a template-id");
Douglas Gregor3f9a0562009-11-03 01:35:08 +0000981
982 TemplateTy Template;
983 TemplateNameKind TNK = TNK_Non_template;
984 switch (Id.getKind()) {
985 case UnqualifiedId::IK_Identifier:
Douglas Gregor014e88d2009-11-03 23:16:33 +0000986 case UnqualifiedId::IK_OperatorFunctionId:
Sean Hunte6252d12009-11-28 08:58:14 +0000987 case UnqualifiedId::IK_LiteralOperatorId:
Douglas Gregord4dca082010-02-24 18:44:31 +0000988 if (AssumeTemplateId) {
Douglas Gregor0278e122010-05-05 05:58:24 +0000989 Template = Actions.ActOnDependentTemplateName(TemplateKWLoc, SS,
Douglas Gregord4dca082010-02-24 18:44:31 +0000990 Id, ObjectType,
991 EnteringContext);
992 TNK = TNK_Dependent_template_name;
993 if (!Template.get())
994 return true;
Douglas Gregor1fd6d442010-05-21 23:18:07 +0000995 } else {
996 bool MemberOfUnknownSpecialization;
Douglas Gregord4dca082010-02-24 18:44:31 +0000997 TNK = Actions.isTemplateName(CurScope, SS, Id, ObjectType,
Douglas Gregor1fd6d442010-05-21 23:18:07 +0000998 EnteringContext, Template,
999 MemberOfUnknownSpecialization);
1000
1001 if (TNK == TNK_Non_template && MemberOfUnknownSpecialization &&
1002 ObjectType && IsTemplateArgumentList()) {
1003 // We have something like t->getAs<T>(), where getAs is a
1004 // member of an unknown specialization. However, this will only
1005 // parse correctly as a template, so suggest the keyword 'template'
1006 // before 'getAs' and treat this as a dependent template name.
1007 std::string Name;
1008 if (Id.getKind() == UnqualifiedId::IK_Identifier)
1009 Name = Id.Identifier->getName();
1010 else {
1011 Name = "operator ";
1012 if (Id.getKind() == UnqualifiedId::IK_OperatorFunctionId)
1013 Name += getOperatorSpelling(Id.OperatorFunctionId.Operator);
1014 else
1015 Name += Id.Identifier->getName();
1016 }
1017 Diag(Id.StartLocation, diag::err_missing_dependent_template_keyword)
1018 << Name
1019 << FixItHint::CreateInsertion(Id.StartLocation, "template ");
1020 Template = Actions.ActOnDependentTemplateName(TemplateKWLoc, SS,
1021 Id, ObjectType,
1022 EnteringContext);
1023 TNK = TNK_Dependent_template_name;
1024 if (!Template.get())
1025 return true;
1026 }
1027 }
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001028 break;
1029
Douglas Gregor014e88d2009-11-03 23:16:33 +00001030 case UnqualifiedId::IK_ConstructorName: {
1031 UnqualifiedId TemplateName;
Douglas Gregor1fd6d442010-05-21 23:18:07 +00001032 bool MemberOfUnknownSpecialization;
Douglas Gregor014e88d2009-11-03 23:16:33 +00001033 TemplateName.setIdentifier(Name, NameLoc);
1034 TNK = Actions.isTemplateName(CurScope, SS, TemplateName, ObjectType,
Douglas Gregor1fd6d442010-05-21 23:18:07 +00001035 EnteringContext, Template,
1036 MemberOfUnknownSpecialization);
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001037 break;
1038 }
1039
Douglas Gregor014e88d2009-11-03 23:16:33 +00001040 case UnqualifiedId::IK_DestructorName: {
1041 UnqualifiedId TemplateName;
Douglas Gregor1fd6d442010-05-21 23:18:07 +00001042 bool MemberOfUnknownSpecialization;
Douglas Gregor014e88d2009-11-03 23:16:33 +00001043 TemplateName.setIdentifier(Name, NameLoc);
Douglas Gregor2d1c2142009-11-03 19:44:04 +00001044 if (ObjectType) {
Douglas Gregor0278e122010-05-05 05:58:24 +00001045 Template = Actions.ActOnDependentTemplateName(TemplateKWLoc, SS,
Douglas Gregora481edb2009-11-20 23:39:24 +00001046 TemplateName, ObjectType,
1047 EnteringContext);
Douglas Gregor2d1c2142009-11-03 19:44:04 +00001048 TNK = TNK_Dependent_template_name;
1049 if (!Template.get())
1050 return true;
1051 } else {
Douglas Gregor014e88d2009-11-03 23:16:33 +00001052 TNK = Actions.isTemplateName(CurScope, SS, TemplateName, ObjectType,
Douglas Gregor1fd6d442010-05-21 23:18:07 +00001053 EnteringContext, Template,
1054 MemberOfUnknownSpecialization);
Douglas Gregor2d1c2142009-11-03 19:44:04 +00001055
1056 if (TNK == TNK_Non_template && Id.DestructorName == 0) {
Douglas Gregor124b8782010-02-16 19:09:40 +00001057 Diag(NameLoc, diag::err_destructor_template_id)
1058 << Name << SS.getRange();
Douglas Gregor2d1c2142009-11-03 19:44:04 +00001059 return true;
1060 }
1061 }
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001062 break;
Douglas Gregor014e88d2009-11-03 23:16:33 +00001063 }
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001064
1065 default:
1066 return false;
1067 }
1068
1069 if (TNK == TNK_Non_template)
1070 return false;
1071
1072 // Parse the enclosed template argument list.
1073 SourceLocation LAngleLoc, RAngleLoc;
1074 TemplateArgList TemplateArgs;
Douglas Gregor0278e122010-05-05 05:58:24 +00001075 if (Tok.is(tok::less) &&
1076 ParseTemplateIdAfterTemplateName(Template, Id.StartLocation,
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001077 &SS, true, LAngleLoc,
1078 TemplateArgs,
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001079 RAngleLoc))
1080 return true;
1081
1082 if (Id.getKind() == UnqualifiedId::IK_Identifier ||
Sean Hunte6252d12009-11-28 08:58:14 +00001083 Id.getKind() == UnqualifiedId::IK_OperatorFunctionId ||
1084 Id.getKind() == UnqualifiedId::IK_LiteralOperatorId) {
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001085 // Form a parsed representation of the template-id to be stored in the
1086 // UnqualifiedId.
1087 TemplateIdAnnotation *TemplateId
1088 = TemplateIdAnnotation::Allocate(TemplateArgs.size());
1089
1090 if (Id.getKind() == UnqualifiedId::IK_Identifier) {
1091 TemplateId->Name = Id.Identifier;
Douglas Gregor014e88d2009-11-03 23:16:33 +00001092 TemplateId->Operator = OO_None;
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001093 TemplateId->TemplateNameLoc = Id.StartLocation;
1094 } else {
Douglas Gregor014e88d2009-11-03 23:16:33 +00001095 TemplateId->Name = 0;
1096 TemplateId->Operator = Id.OperatorFunctionId.Operator;
1097 TemplateId->TemplateNameLoc = Id.StartLocation;
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001098 }
1099
1100 TemplateId->Template = Template.getAs<void*>();
1101 TemplateId->Kind = TNK;
1102 TemplateId->LAngleLoc = LAngleLoc;
1103 TemplateId->RAngleLoc = RAngleLoc;
Douglas Gregor314b97f2009-11-10 19:49:08 +00001104 ParsedTemplateArgument *Args = TemplateId->getTemplateArgs();
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001105 for (unsigned Arg = 0, ArgEnd = TemplateArgs.size();
Douglas Gregor314b97f2009-11-10 19:49:08 +00001106 Arg != ArgEnd; ++Arg)
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001107 Args[Arg] = TemplateArgs[Arg];
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001108
1109 Id.setTemplateId(TemplateId);
1110 return false;
1111 }
1112
1113 // Bundle the template arguments together.
1114 ASTTemplateArgsPtr TemplateArgsPtr(Actions, TemplateArgs.data(),
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001115 TemplateArgs.size());
1116
1117 // Constructor and destructor names.
1118 Action::TypeResult Type
1119 = Actions.ActOnTemplateIdType(Template, NameLoc,
1120 LAngleLoc, TemplateArgsPtr,
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001121 RAngleLoc);
1122 if (Type.isInvalid())
1123 return true;
1124
1125 if (Id.getKind() == UnqualifiedId::IK_ConstructorName)
1126 Id.setConstructorName(Type.get(), NameLoc, RAngleLoc);
1127 else
1128 Id.setDestructorName(Id.StartLocation, Type.get(), RAngleLoc);
1129
1130 return false;
1131}
1132
Douglas Gregorca1bdd72009-11-04 00:56:37 +00001133/// \brief Parse an operator-function-id or conversion-function-id as part
1134/// of a C++ unqualified-id.
1135///
1136/// This routine is responsible only for parsing the operator-function-id or
1137/// conversion-function-id; it does not handle template arguments in any way.
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001138///
1139/// \code
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001140/// operator-function-id: [C++ 13.5]
1141/// 'operator' operator
1142///
Douglas Gregorca1bdd72009-11-04 00:56:37 +00001143/// operator: one of
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001144/// new delete new[] delete[]
1145/// + - * / % ^ & | ~
1146/// ! = < > += -= *= /= %=
1147/// ^= &= |= << >> >>= <<= == !=
1148/// <= >= && || ++ -- , ->* ->
1149/// () []
1150///
1151/// conversion-function-id: [C++ 12.3.2]
1152/// operator conversion-type-id
1153///
1154/// conversion-type-id:
1155/// type-specifier-seq conversion-declarator[opt]
1156///
1157/// conversion-declarator:
1158/// ptr-operator conversion-declarator[opt]
1159/// \endcode
1160///
1161/// \param The nested-name-specifier that preceded this unqualified-id. If
1162/// non-empty, then we are parsing the unqualified-id of a qualified-id.
1163///
1164/// \param EnteringContext whether we are entering the scope of the
1165/// nested-name-specifier.
1166///
Douglas Gregorca1bdd72009-11-04 00:56:37 +00001167/// \param ObjectType if this unqualified-id occurs within a member access
1168/// expression, the type of the base object whose member is being accessed.
1169///
1170/// \param Result on a successful parse, contains the parsed unqualified-id.
1171///
1172/// \returns true if parsing fails, false otherwise.
1173bool Parser::ParseUnqualifiedIdOperator(CXXScopeSpec &SS, bool EnteringContext,
1174 TypeTy *ObjectType,
1175 UnqualifiedId &Result) {
1176 assert(Tok.is(tok::kw_operator) && "Expected 'operator' keyword");
1177
1178 // Consume the 'operator' keyword.
1179 SourceLocation KeywordLoc = ConsumeToken();
1180
1181 // Determine what kind of operator name we have.
1182 unsigned SymbolIdx = 0;
1183 SourceLocation SymbolLocations[3];
1184 OverloadedOperatorKind Op = OO_None;
1185 switch (Tok.getKind()) {
1186 case tok::kw_new:
1187 case tok::kw_delete: {
1188 bool isNew = Tok.getKind() == tok::kw_new;
1189 // Consume the 'new' or 'delete'.
1190 SymbolLocations[SymbolIdx++] = ConsumeToken();
1191 if (Tok.is(tok::l_square)) {
1192 // Consume the '['.
1193 SourceLocation LBracketLoc = ConsumeBracket();
1194 // Consume the ']'.
1195 SourceLocation RBracketLoc = MatchRHSPunctuation(tok::r_square,
1196 LBracketLoc);
1197 if (RBracketLoc.isInvalid())
1198 return true;
1199
1200 SymbolLocations[SymbolIdx++] = LBracketLoc;
1201 SymbolLocations[SymbolIdx++] = RBracketLoc;
1202 Op = isNew? OO_Array_New : OO_Array_Delete;
1203 } else {
1204 Op = isNew? OO_New : OO_Delete;
1205 }
1206 break;
1207 }
1208
1209#define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \
1210 case tok::Token: \
1211 SymbolLocations[SymbolIdx++] = ConsumeToken(); \
1212 Op = OO_##Name; \
1213 break;
1214#define OVERLOADED_OPERATOR_MULTI(Name,Spelling,Unary,Binary,MemberOnly)
1215#include "clang/Basic/OperatorKinds.def"
1216
1217 case tok::l_paren: {
1218 // Consume the '('.
1219 SourceLocation LParenLoc = ConsumeParen();
1220 // Consume the ')'.
1221 SourceLocation RParenLoc = MatchRHSPunctuation(tok::r_paren,
1222 LParenLoc);
1223 if (RParenLoc.isInvalid())
1224 return true;
1225
1226 SymbolLocations[SymbolIdx++] = LParenLoc;
1227 SymbolLocations[SymbolIdx++] = RParenLoc;
1228 Op = OO_Call;
1229 break;
1230 }
1231
1232 case tok::l_square: {
1233 // Consume the '['.
1234 SourceLocation LBracketLoc = ConsumeBracket();
1235 // Consume the ']'.
1236 SourceLocation RBracketLoc = MatchRHSPunctuation(tok::r_square,
1237 LBracketLoc);
1238 if (RBracketLoc.isInvalid())
1239 return true;
1240
1241 SymbolLocations[SymbolIdx++] = LBracketLoc;
1242 SymbolLocations[SymbolIdx++] = RBracketLoc;
1243 Op = OO_Subscript;
1244 break;
1245 }
1246
1247 case tok::code_completion: {
1248 // Code completion for the operator name.
1249 Actions.CodeCompleteOperatorName(CurScope);
1250
1251 // Consume the operator token.
1252 ConsumeToken();
1253
1254 // Don't try to parse any further.
1255 return true;
1256 }
1257
1258 default:
1259 break;
1260 }
1261
1262 if (Op != OO_None) {
1263 // We have parsed an operator-function-id.
1264 Result.setOperatorFunctionId(KeywordLoc, Op, SymbolLocations);
1265 return false;
1266 }
Sean Hunt0486d742009-11-28 04:44:28 +00001267
1268 // Parse a literal-operator-id.
1269 //
1270 // literal-operator-id: [C++0x 13.5.8]
1271 // operator "" identifier
1272
1273 if (getLang().CPlusPlus0x && Tok.is(tok::string_literal)) {
1274 if (Tok.getLength() != 2)
1275 Diag(Tok.getLocation(), diag::err_operator_string_not_empty);
1276 ConsumeStringToken();
1277
1278 if (Tok.isNot(tok::identifier)) {
1279 Diag(Tok.getLocation(), diag::err_expected_ident);
1280 return true;
1281 }
1282
1283 IdentifierInfo *II = Tok.getIdentifierInfo();
1284 Result.setLiteralOperatorId(II, KeywordLoc, ConsumeToken());
Sean Hunt3e518bd2009-11-29 07:34:05 +00001285 return false;
Sean Hunt0486d742009-11-28 04:44:28 +00001286 }
Douglas Gregorca1bdd72009-11-04 00:56:37 +00001287
1288 // Parse a conversion-function-id.
1289 //
1290 // conversion-function-id: [C++ 12.3.2]
1291 // operator conversion-type-id
1292 //
1293 // conversion-type-id:
1294 // type-specifier-seq conversion-declarator[opt]
1295 //
1296 // conversion-declarator:
1297 // ptr-operator conversion-declarator[opt]
1298
1299 // Parse the type-specifier-seq.
1300 DeclSpec DS;
Douglas Gregorf6e6fc82009-11-20 22:03:38 +00001301 if (ParseCXXTypeSpecifierSeq(DS)) // FIXME: ObjectType?
Douglas Gregorca1bdd72009-11-04 00:56:37 +00001302 return true;
1303
1304 // Parse the conversion-declarator, which is merely a sequence of
1305 // ptr-operators.
1306 Declarator D(DS, Declarator::TypeNameContext);
1307 ParseDeclaratorInternal(D, /*DirectDeclParser=*/0);
1308
1309 // Finish up the type.
1310 Action::TypeResult Ty = Actions.ActOnTypeName(CurScope, D);
1311 if (Ty.isInvalid())
1312 return true;
1313
1314 // Note that this is a conversion-function-id.
1315 Result.setConversionFunctionId(KeywordLoc, Ty.get(),
1316 D.getSourceRange().getEnd());
1317 return false;
1318}
1319
1320/// \brief Parse a C++ unqualified-id (or a C identifier), which describes the
1321/// name of an entity.
1322///
1323/// \code
1324/// unqualified-id: [C++ expr.prim.general]
1325/// identifier
1326/// operator-function-id
1327/// conversion-function-id
1328/// [C++0x] literal-operator-id [TODO]
1329/// ~ class-name
1330/// template-id
1331///
1332/// \endcode
1333///
1334/// \param The nested-name-specifier that preceded this unqualified-id. If
1335/// non-empty, then we are parsing the unqualified-id of a qualified-id.
1336///
1337/// \param EnteringContext whether we are entering the scope of the
1338/// nested-name-specifier.
1339///
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001340/// \param AllowDestructorName whether we allow parsing of a destructor name.
1341///
1342/// \param AllowConstructorName whether we allow parsing a constructor name.
1343///
Douglas Gregor46df8cc2009-11-03 21:24:04 +00001344/// \param ObjectType if this unqualified-id occurs within a member access
1345/// expression, the type of the base object whose member is being accessed.
1346///
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001347/// \param Result on a successful parse, contains the parsed unqualified-id.
1348///
1349/// \returns true if parsing fails, false otherwise.
1350bool Parser::ParseUnqualifiedId(CXXScopeSpec &SS, bool EnteringContext,
1351 bool AllowDestructorName,
1352 bool AllowConstructorName,
Douglas Gregor2d1c2142009-11-03 19:44:04 +00001353 TypeTy *ObjectType,
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001354 UnqualifiedId &Result) {
Douglas Gregor0278e122010-05-05 05:58:24 +00001355
1356 // Handle 'A::template B'. This is for template-ids which have not
1357 // already been annotated by ParseOptionalCXXScopeSpecifier().
1358 bool TemplateSpecified = false;
1359 SourceLocation TemplateKWLoc;
1360 if (getLang().CPlusPlus && Tok.is(tok::kw_template) &&
1361 (ObjectType || SS.isSet())) {
1362 TemplateSpecified = true;
1363 TemplateKWLoc = ConsumeToken();
1364 }
1365
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001366 // unqualified-id:
1367 // identifier
1368 // template-id (when it hasn't already been annotated)
1369 if (Tok.is(tok::identifier)) {
1370 // Consume the identifier.
1371 IdentifierInfo *Id = Tok.getIdentifierInfo();
1372 SourceLocation IdLoc = ConsumeToken();
1373
Douglas Gregorb862b8f2010-01-11 23:29:10 +00001374 if (!getLang().CPlusPlus) {
1375 // If we're not in C++, only identifiers matter. Record the
1376 // identifier and return.
1377 Result.setIdentifier(Id, IdLoc);
1378 return false;
1379 }
1380
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001381 if (AllowConstructorName &&
1382 Actions.isCurrentClassName(*Id, CurScope, &SS)) {
1383 // We have parsed a constructor name.
1384 Result.setConstructorName(Actions.getTypeName(*Id, IdLoc, CurScope,
1385 &SS, false),
1386 IdLoc, IdLoc);
1387 } else {
1388 // We have parsed an identifier.
1389 Result.setIdentifier(Id, IdLoc);
1390 }
1391
1392 // If the next token is a '<', we may have a template.
Douglas Gregor0278e122010-05-05 05:58:24 +00001393 if (TemplateSpecified || Tok.is(tok::less))
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001394 return ParseUnqualifiedIdTemplateId(SS, Id, IdLoc, EnteringContext,
Douglas Gregor0278e122010-05-05 05:58:24 +00001395 ObjectType, Result,
1396 TemplateSpecified, TemplateKWLoc);
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001397
1398 return false;
1399 }
1400
1401 // unqualified-id:
1402 // template-id (already parsed and annotated)
1403 if (Tok.is(tok::annot_template_id)) {
Douglas Gregor0efc2c12010-01-13 17:31:36 +00001404 TemplateIdAnnotation *TemplateId
1405 = static_cast<TemplateIdAnnotation*>(Tok.getAnnotationValue());
1406
1407 // If the template-name names the current class, then this is a constructor
1408 if (AllowConstructorName && TemplateId->Name &&
1409 Actions.isCurrentClassName(*TemplateId->Name, CurScope, &SS)) {
1410 if (SS.isSet()) {
1411 // C++ [class.qual]p2 specifies that a qualified template-name
1412 // is taken as the constructor name where a constructor can be
1413 // declared. Thus, the template arguments are extraneous, so
1414 // complain about them and remove them entirely.
1415 Diag(TemplateId->TemplateNameLoc,
1416 diag::err_out_of_line_constructor_template_id)
1417 << TemplateId->Name
Douglas Gregor849b2432010-03-31 17:46:05 +00001418 << FixItHint::CreateRemoval(
Douglas Gregor0efc2c12010-01-13 17:31:36 +00001419 SourceRange(TemplateId->LAngleLoc, TemplateId->RAngleLoc));
1420 Result.setConstructorName(Actions.getTypeName(*TemplateId->Name,
1421 TemplateId->TemplateNameLoc,
1422 CurScope,
1423 &SS, false),
1424 TemplateId->TemplateNameLoc,
1425 TemplateId->RAngleLoc);
1426 TemplateId->Destroy();
1427 ConsumeToken();
1428 return false;
1429 }
1430
1431 Result.setConstructorTemplateId(TemplateId);
1432 ConsumeToken();
1433 return false;
1434 }
1435
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001436 // We have already parsed a template-id; consume the annotation token as
1437 // our unqualified-id.
Douglas Gregor0efc2c12010-01-13 17:31:36 +00001438 Result.setTemplateId(TemplateId);
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001439 ConsumeToken();
1440 return false;
1441 }
1442
1443 // unqualified-id:
1444 // operator-function-id
1445 // conversion-function-id
1446 if (Tok.is(tok::kw_operator)) {
Douglas Gregorca1bdd72009-11-04 00:56:37 +00001447 if (ParseUnqualifiedIdOperator(SS, EnteringContext, ObjectType, Result))
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001448 return true;
1449
Sean Hunte6252d12009-11-28 08:58:14 +00001450 // If we have an operator-function-id or a literal-operator-id and the next
1451 // token is a '<', we may have a
Douglas Gregorca1bdd72009-11-04 00:56:37 +00001452 //
1453 // template-id:
1454 // operator-function-id < template-argument-list[opt] >
Sean Hunte6252d12009-11-28 08:58:14 +00001455 if ((Result.getKind() == UnqualifiedId::IK_OperatorFunctionId ||
1456 Result.getKind() == UnqualifiedId::IK_LiteralOperatorId) &&
Douglas Gregor0278e122010-05-05 05:58:24 +00001457 (TemplateSpecified || Tok.is(tok::less)))
Douglas Gregorca1bdd72009-11-04 00:56:37 +00001458 return ParseUnqualifiedIdTemplateId(SS, 0, SourceLocation(),
1459 EnteringContext, ObjectType,
Douglas Gregor0278e122010-05-05 05:58:24 +00001460 Result,
1461 TemplateSpecified, TemplateKWLoc);
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001462
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001463 return false;
1464 }
1465
Douglas Gregorb862b8f2010-01-11 23:29:10 +00001466 if (getLang().CPlusPlus &&
1467 (AllowDestructorName || SS.isSet()) && Tok.is(tok::tilde)) {
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001468 // C++ [expr.unary.op]p10:
1469 // There is an ambiguity in the unary-expression ~X(), where X is a
1470 // class-name. The ambiguity is resolved in favor of treating ~ as a
1471 // unary complement rather than treating ~X as referring to a destructor.
1472
1473 // Parse the '~'.
1474 SourceLocation TildeLoc = ConsumeToken();
1475
1476 // Parse the class-name.
1477 if (Tok.isNot(tok::identifier)) {
Douglas Gregor124b8782010-02-16 19:09:40 +00001478 Diag(Tok, diag::err_destructor_tilde_identifier);
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001479 return true;
1480 }
1481
1482 // Parse the class-name (or template-name in a simple-template-id).
1483 IdentifierInfo *ClassName = Tok.getIdentifierInfo();
1484 SourceLocation ClassNameLoc = ConsumeToken();
1485
Douglas Gregor0278e122010-05-05 05:58:24 +00001486 if (TemplateSpecified || Tok.is(tok::less)) {
Douglas Gregor2d1c2142009-11-03 19:44:04 +00001487 Result.setDestructorName(TildeLoc, 0, ClassNameLoc);
1488 return ParseUnqualifiedIdTemplateId(SS, ClassName, ClassNameLoc,
Douglas Gregor0278e122010-05-05 05:58:24 +00001489 EnteringContext, ObjectType, Result,
1490 TemplateSpecified, TemplateKWLoc);
Douglas Gregor2d1c2142009-11-03 19:44:04 +00001491 }
1492
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001493 // Note that this is a destructor name.
Douglas Gregor124b8782010-02-16 19:09:40 +00001494 Action::TypeTy *Ty = Actions.getDestructorName(TildeLoc, *ClassName,
1495 ClassNameLoc, CurScope,
1496 SS, ObjectType,
1497 EnteringContext);
1498 if (!Ty)
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001499 return true;
Douglas Gregor124b8782010-02-16 19:09:40 +00001500
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001501 Result.setDestructorName(TildeLoc, Ty, ClassNameLoc);
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001502 return false;
1503 }
1504
Douglas Gregor2d1c2142009-11-03 19:44:04 +00001505 Diag(Tok, diag::err_expected_unqualified_id)
1506 << getLang().CPlusPlus;
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001507 return true;
1508}
1509
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001510/// ParseCXXNewExpression - Parse a C++ new-expression. New is used to allocate
1511/// memory in a typesafe manner and call constructors.
Mike Stump1eb44332009-09-09 15:08:12 +00001512///
Chris Lattner59232d32009-01-04 21:25:24 +00001513/// This method is called to parse the new expression after the optional :: has
1514/// been already parsed. If the :: was present, "UseGlobal" is true and "Start"
1515/// is its location. Otherwise, "Start" is the location of the 'new' token.
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001516///
1517/// new-expression:
1518/// '::'[opt] 'new' new-placement[opt] new-type-id
1519/// new-initializer[opt]
1520/// '::'[opt] 'new' new-placement[opt] '(' type-id ')'
1521/// new-initializer[opt]
1522///
1523/// new-placement:
1524/// '(' expression-list ')'
1525///
Sebastian Redlcee63fb2008-12-02 14:43:59 +00001526/// new-type-id:
1527/// type-specifier-seq new-declarator[opt]
1528///
1529/// new-declarator:
1530/// ptr-operator new-declarator[opt]
1531/// direct-new-declarator
1532///
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001533/// new-initializer:
1534/// '(' expression-list[opt] ')'
1535/// [C++0x] braced-init-list [TODO]
1536///
Chris Lattner59232d32009-01-04 21:25:24 +00001537Parser::OwningExprResult
1538Parser::ParseCXXNewExpression(bool UseGlobal, SourceLocation Start) {
1539 assert(Tok.is(tok::kw_new) && "expected 'new' token");
1540 ConsumeToken(); // Consume 'new'
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001541
1542 // A '(' now can be a new-placement or the '(' wrapping the type-id in the
1543 // second form of new-expression. It can't be a new-type-id.
1544
Sebastian Redla55e52c2008-11-25 22:21:31 +00001545 ExprVector PlacementArgs(Actions);
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001546 SourceLocation PlacementLParen, PlacementRParen;
1547
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001548 bool ParenTypeId;
Sebastian Redlcee63fb2008-12-02 14:43:59 +00001549 DeclSpec DS;
1550 Declarator DeclaratorInfo(DS, Declarator::TypeNameContext);
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001551 if (Tok.is(tok::l_paren)) {
1552 // If it turns out to be a placement, we change the type location.
1553 PlacementLParen = ConsumeParen();
Sebastian Redlcee63fb2008-12-02 14:43:59 +00001554 if (ParseExpressionListOrTypeId(PlacementArgs, DeclaratorInfo)) {
1555 SkipUntil(tok::semi, /*StopAtSemi=*/true, /*DontConsume=*/true);
Sebastian Redl20df9b72008-12-11 22:51:44 +00001556 return ExprError();
Sebastian Redlcee63fb2008-12-02 14:43:59 +00001557 }
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001558
1559 PlacementRParen = MatchRHSPunctuation(tok::r_paren, PlacementLParen);
Sebastian Redlcee63fb2008-12-02 14:43:59 +00001560 if (PlacementRParen.isInvalid()) {
1561 SkipUntil(tok::semi, /*StopAtSemi=*/true, /*DontConsume=*/true);
Sebastian Redl20df9b72008-12-11 22:51:44 +00001562 return ExprError();
Sebastian Redlcee63fb2008-12-02 14:43:59 +00001563 }
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001564
Sebastian Redlcee63fb2008-12-02 14:43:59 +00001565 if (PlacementArgs.empty()) {
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001566 // Reset the placement locations. There was no placement.
1567 PlacementLParen = PlacementRParen = SourceLocation();
1568 ParenTypeId = true;
1569 } else {
1570 // We still need the type.
1571 if (Tok.is(tok::l_paren)) {
Sebastian Redlcee63fb2008-12-02 14:43:59 +00001572 SourceLocation LParen = ConsumeParen();
1573 ParseSpecifierQualifierList(DS);
Sebastian Redlab197ba2009-02-09 18:23:29 +00001574 DeclaratorInfo.SetSourceRange(DS.getSourceRange());
Sebastian Redlcee63fb2008-12-02 14:43:59 +00001575 ParseDeclarator(DeclaratorInfo);
1576 MatchRHSPunctuation(tok::r_paren, LParen);
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001577 ParenTypeId = true;
1578 } else {
Sebastian Redlcee63fb2008-12-02 14:43:59 +00001579 if (ParseCXXTypeSpecifierSeq(DS))
1580 DeclaratorInfo.setInvalidType(true);
Sebastian Redlab197ba2009-02-09 18:23:29 +00001581 else {
1582 DeclaratorInfo.SetSourceRange(DS.getSourceRange());
Sebastian Redlcee63fb2008-12-02 14:43:59 +00001583 ParseDeclaratorInternal(DeclaratorInfo,
1584 &Parser::ParseDirectNewDeclarator);
Sebastian Redlab197ba2009-02-09 18:23:29 +00001585 }
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001586 ParenTypeId = false;
1587 }
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001588 }
1589 } else {
Sebastian Redlcee63fb2008-12-02 14:43:59 +00001590 // A new-type-id is a simplified type-id, where essentially the
1591 // direct-declarator is replaced by a direct-new-declarator.
1592 if (ParseCXXTypeSpecifierSeq(DS))
1593 DeclaratorInfo.setInvalidType(true);
Sebastian Redlab197ba2009-02-09 18:23:29 +00001594 else {
1595 DeclaratorInfo.SetSourceRange(DS.getSourceRange());
Sebastian Redlcee63fb2008-12-02 14:43:59 +00001596 ParseDeclaratorInternal(DeclaratorInfo,
1597 &Parser::ParseDirectNewDeclarator);
Sebastian Redlab197ba2009-02-09 18:23:29 +00001598 }
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001599 ParenTypeId = false;
1600 }
Chris Lattnereaaebc72009-04-25 08:06:05 +00001601 if (DeclaratorInfo.isInvalidType()) {
Sebastian Redlcee63fb2008-12-02 14:43:59 +00001602 SkipUntil(tok::semi, /*StopAtSemi=*/true, /*DontConsume=*/true);
Sebastian Redl20df9b72008-12-11 22:51:44 +00001603 return ExprError();
Sebastian Redlcee63fb2008-12-02 14:43:59 +00001604 }
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001605
Sebastian Redla55e52c2008-11-25 22:21:31 +00001606 ExprVector ConstructorArgs(Actions);
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001607 SourceLocation ConstructorLParen, ConstructorRParen;
1608
1609 if (Tok.is(tok::l_paren)) {
1610 ConstructorLParen = ConsumeParen();
1611 if (Tok.isNot(tok::r_paren)) {
1612 CommaLocsTy CommaLocs;
Sebastian Redlcee63fb2008-12-02 14:43:59 +00001613 if (ParseExpressionList(ConstructorArgs, CommaLocs)) {
1614 SkipUntil(tok::semi, /*StopAtSemi=*/true, /*DontConsume=*/true);
Sebastian Redl20df9b72008-12-11 22:51:44 +00001615 return ExprError();
Sebastian Redlcee63fb2008-12-02 14:43:59 +00001616 }
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001617 }
1618 ConstructorRParen = MatchRHSPunctuation(tok::r_paren, ConstructorLParen);
Sebastian Redlcee63fb2008-12-02 14:43:59 +00001619 if (ConstructorRParen.isInvalid()) {
1620 SkipUntil(tok::semi, /*StopAtSemi=*/true, /*DontConsume=*/true);
Sebastian Redl20df9b72008-12-11 22:51:44 +00001621 return ExprError();
Sebastian Redlcee63fb2008-12-02 14:43:59 +00001622 }
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001623 }
1624
Sebastian Redlf53597f2009-03-15 17:47:39 +00001625 return Actions.ActOnCXXNew(Start, UseGlobal, PlacementLParen,
1626 move_arg(PlacementArgs), PlacementRParen,
1627 ParenTypeId, DeclaratorInfo, ConstructorLParen,
1628 move_arg(ConstructorArgs), ConstructorRParen);
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001629}
1630
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001631/// ParseDirectNewDeclarator - Parses a direct-new-declarator. Intended to be
1632/// passed to ParseDeclaratorInternal.
1633///
1634/// direct-new-declarator:
1635/// '[' expression ']'
1636/// direct-new-declarator '[' constant-expression ']'
1637///
Chris Lattner59232d32009-01-04 21:25:24 +00001638void Parser::ParseDirectNewDeclarator(Declarator &D) {
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001639 // Parse the array dimensions.
1640 bool first = true;
1641 while (Tok.is(tok::l_square)) {
1642 SourceLocation LLoc = ConsumeBracket();
Sebastian Redl2f7ece72008-12-11 21:36:32 +00001643 OwningExprResult Size(first ? ParseExpression()
1644 : ParseConstantExpression());
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001645 if (Size.isInvalid()) {
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001646 // Recover
1647 SkipUntil(tok::r_square);
1648 return;
1649 }
1650 first = false;
1651
Sebastian Redlab197ba2009-02-09 18:23:29 +00001652 SourceLocation RLoc = MatchRHSPunctuation(tok::r_square, LLoc);
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001653 D.AddTypeInfo(DeclaratorChunk::getArray(0, /*static=*/false, /*star=*/false,
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +00001654 Size.release(), LLoc, RLoc),
Sebastian Redlab197ba2009-02-09 18:23:29 +00001655 RLoc);
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001656
Sebastian Redlab197ba2009-02-09 18:23:29 +00001657 if (RLoc.isInvalid())
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001658 return;
1659 }
1660}
1661
1662/// ParseExpressionListOrTypeId - Parse either an expression-list or a type-id.
1663/// This ambiguity appears in the syntax of the C++ new operator.
1664///
1665/// new-expression:
1666/// '::'[opt] 'new' new-placement[opt] '(' type-id ')'
1667/// new-initializer[opt]
1668///
1669/// new-placement:
1670/// '(' expression-list ')'
1671///
Sebastian Redlcee63fb2008-12-02 14:43:59 +00001672bool Parser::ParseExpressionListOrTypeId(ExprListTy &PlacementArgs,
Chris Lattner59232d32009-01-04 21:25:24 +00001673 Declarator &D) {
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001674 // The '(' was already consumed.
1675 if (isTypeIdInParens()) {
Sebastian Redlcee63fb2008-12-02 14:43:59 +00001676 ParseSpecifierQualifierList(D.getMutableDeclSpec());
Sebastian Redlab197ba2009-02-09 18:23:29 +00001677 D.SetSourceRange(D.getDeclSpec().getSourceRange());
Sebastian Redlcee63fb2008-12-02 14:43:59 +00001678 ParseDeclarator(D);
Chris Lattnereaaebc72009-04-25 08:06:05 +00001679 return D.isInvalidType();
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001680 }
1681
1682 // It's not a type, it has to be an expression list.
1683 // Discard the comma locations - ActOnCXXNew has enough parameters.
1684 CommaLocsTy CommaLocs;
1685 return ParseExpressionList(PlacementArgs, CommaLocs);
1686}
1687
1688/// ParseCXXDeleteExpression - Parse a C++ delete-expression. Delete is used
1689/// to free memory allocated by new.
1690///
Chris Lattner59232d32009-01-04 21:25:24 +00001691/// This method is called to parse the 'delete' expression after the optional
1692/// '::' has been already parsed. If the '::' was present, "UseGlobal" is true
1693/// and "Start" is its location. Otherwise, "Start" is the location of the
1694/// 'delete' token.
1695///
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001696/// delete-expression:
1697/// '::'[opt] 'delete' cast-expression
1698/// '::'[opt] 'delete' '[' ']' cast-expression
Chris Lattner59232d32009-01-04 21:25:24 +00001699Parser::OwningExprResult
1700Parser::ParseCXXDeleteExpression(bool UseGlobal, SourceLocation Start) {
1701 assert(Tok.is(tok::kw_delete) && "Expected 'delete' keyword");
1702 ConsumeToken(); // Consume 'delete'
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001703
1704 // Array delete?
1705 bool ArrayDelete = false;
1706 if (Tok.is(tok::l_square)) {
1707 ArrayDelete = true;
1708 SourceLocation LHS = ConsumeBracket();
1709 SourceLocation RHS = MatchRHSPunctuation(tok::r_square, LHS);
1710 if (RHS.isInvalid())
Sebastian Redl20df9b72008-12-11 22:51:44 +00001711 return ExprError();
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001712 }
1713
Sebastian Redl2f7ece72008-12-11 21:36:32 +00001714 OwningExprResult Operand(ParseCastExpression(false));
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001715 if (Operand.isInvalid())
Sebastian Redl20df9b72008-12-11 22:51:44 +00001716 return move(Operand);
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001717
Sebastian Redlf53597f2009-03-15 17:47:39 +00001718 return Actions.ActOnCXXDelete(Start, UseGlobal, ArrayDelete, move(Operand));
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001719}
Sebastian Redl64b45f72009-01-05 20:52:13 +00001720
Mike Stump1eb44332009-09-09 15:08:12 +00001721static UnaryTypeTrait UnaryTypeTraitFromTokKind(tok::TokenKind kind) {
Sebastian Redl64b45f72009-01-05 20:52:13 +00001722 switch(kind) {
1723 default: assert(false && "Not a known unary type trait.");
1724 case tok::kw___has_nothrow_assign: return UTT_HasNothrowAssign;
1725 case tok::kw___has_nothrow_copy: return UTT_HasNothrowCopy;
1726 case tok::kw___has_nothrow_constructor: return UTT_HasNothrowConstructor;
1727 case tok::kw___has_trivial_assign: return UTT_HasTrivialAssign;
1728 case tok::kw___has_trivial_copy: return UTT_HasTrivialCopy;
1729 case tok::kw___has_trivial_constructor: return UTT_HasTrivialConstructor;
1730 case tok::kw___has_trivial_destructor: return UTT_HasTrivialDestructor;
1731 case tok::kw___has_virtual_destructor: return UTT_HasVirtualDestructor;
1732 case tok::kw___is_abstract: return UTT_IsAbstract;
1733 case tok::kw___is_class: return UTT_IsClass;
1734 case tok::kw___is_empty: return UTT_IsEmpty;
1735 case tok::kw___is_enum: return UTT_IsEnum;
1736 case tok::kw___is_pod: return UTT_IsPOD;
1737 case tok::kw___is_polymorphic: return UTT_IsPolymorphic;
1738 case tok::kw___is_union: return UTT_IsUnion;
Sebastian Redlccf43502009-12-03 00:13:20 +00001739 case tok::kw___is_literal: return UTT_IsLiteral;
Sebastian Redl64b45f72009-01-05 20:52:13 +00001740 }
1741}
1742
1743/// ParseUnaryTypeTrait - Parse the built-in unary type-trait
1744/// pseudo-functions that allow implementation of the TR1/C++0x type traits
1745/// templates.
1746///
1747/// primary-expression:
1748/// [GNU] unary-type-trait '(' type-id ')'
1749///
Mike Stump1eb44332009-09-09 15:08:12 +00001750Parser::OwningExprResult Parser::ParseUnaryTypeTrait() {
Sebastian Redl64b45f72009-01-05 20:52:13 +00001751 UnaryTypeTrait UTT = UnaryTypeTraitFromTokKind(Tok.getKind());
1752 SourceLocation Loc = ConsumeToken();
1753
1754 SourceLocation LParen = Tok.getLocation();
1755 if (ExpectAndConsume(tok::l_paren, diag::err_expected_lparen))
1756 return ExprError();
1757
1758 // FIXME: Error reporting absolutely sucks! If the this fails to parse a type
1759 // there will be cryptic errors about mismatched parentheses and missing
1760 // specifiers.
Douglas Gregor809070a2009-02-18 17:45:20 +00001761 TypeResult Ty = ParseTypeName();
Sebastian Redl64b45f72009-01-05 20:52:13 +00001762
1763 SourceLocation RParen = MatchRHSPunctuation(tok::r_paren, LParen);
1764
Douglas Gregor809070a2009-02-18 17:45:20 +00001765 if (Ty.isInvalid())
1766 return ExprError();
1767
1768 return Actions.ActOnUnaryTypeTrait(UTT, Loc, LParen, Ty.get(), RParen);
Sebastian Redl64b45f72009-01-05 20:52:13 +00001769}
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00001770
1771/// ParseCXXAmbiguousParenExpression - We have parsed the left paren of a
1772/// parenthesized ambiguous type-id. This uses tentative parsing to disambiguate
1773/// based on the context past the parens.
1774Parser::OwningExprResult
1775Parser::ParseCXXAmbiguousParenExpression(ParenParseOption &ExprType,
1776 TypeTy *&CastTy,
1777 SourceLocation LParenLoc,
1778 SourceLocation &RParenLoc) {
1779 assert(getLang().CPlusPlus && "Should only be called for C++!");
1780 assert(ExprType == CastExpr && "Compound literals are not ambiguous!");
1781 assert(isTypeIdInParens() && "Not a type-id!");
1782
1783 OwningExprResult Result(Actions, true);
1784 CastTy = 0;
1785
1786 // We need to disambiguate a very ugly part of the C++ syntax:
1787 //
1788 // (T())x; - type-id
1789 // (T())*x; - type-id
1790 // (T())/x; - expression
1791 // (T()); - expression
1792 //
1793 // The bad news is that we cannot use the specialized tentative parser, since
1794 // it can only verify that the thing inside the parens can be parsed as
1795 // type-id, it is not useful for determining the context past the parens.
1796 //
1797 // The good news is that the parser can disambiguate this part without
Argyrios Kyrtzidisa558a892009-05-22 15:12:46 +00001798 // making any unnecessary Action calls.
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00001799 //
1800 // It uses a scheme similar to parsing inline methods. The parenthesized
1801 // tokens are cached, the context that follows is determined (possibly by
1802 // parsing a cast-expression), and then we re-introduce the cached tokens
1803 // into the token stream and parse them appropriately.
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00001804
Mike Stump1eb44332009-09-09 15:08:12 +00001805 ParenParseOption ParseAs;
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00001806 CachedTokens Toks;
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00001807
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00001808 // Store the tokens of the parentheses. We will parse them after we determine
1809 // the context that follows them.
Argyrios Kyrtzidis14b91622010-04-23 21:20:12 +00001810 if (!ConsumeAndStoreUntil(tok::r_paren, Toks)) {
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00001811 // We didn't find the ')' we expected.
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00001812 MatchRHSPunctuation(tok::r_paren, LParenLoc);
1813 return ExprError();
1814 }
1815
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00001816 if (Tok.is(tok::l_brace)) {
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00001817 ParseAs = CompoundLiteral;
1818 } else {
1819 bool NotCastExpr;
Eli Friedmanb53f08a2009-05-25 19:41:42 +00001820 // FIXME: Special-case ++ and --: "(S())++;" is not a cast-expression
1821 if (Tok.is(tok::l_paren) && NextToken().is(tok::r_paren)) {
1822 NotCastExpr = true;
1823 } else {
1824 // Try parsing the cast-expression that may follow.
1825 // If it is not a cast-expression, NotCastExpr will be true and no token
1826 // will be consumed.
1827 Result = ParseCastExpression(false/*isUnaryExpression*/,
1828 false/*isAddressofOperand*/,
Nate Begeman2ef13e52009-08-10 23:49:36 +00001829 NotCastExpr, false);
Eli Friedmanb53f08a2009-05-25 19:41:42 +00001830 }
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00001831
1832 // If we parsed a cast-expression, it's really a type-id, otherwise it's
1833 // an expression.
1834 ParseAs = NotCastExpr ? SimpleExpr : CastExpr;
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00001835 }
1836
Mike Stump1eb44332009-09-09 15:08:12 +00001837 // The current token should go after the cached tokens.
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00001838 Toks.push_back(Tok);
1839 // Re-enter the stored parenthesized tokens into the token stream, so we may
1840 // parse them now.
1841 PP.EnterTokenStream(Toks.data(), Toks.size(),
1842 true/*DisableMacroExpansion*/, false/*OwnsTokens*/);
1843 // Drop the current token and bring the first cached one. It's the same token
1844 // as when we entered this function.
1845 ConsumeAnyToken();
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00001846
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00001847 if (ParseAs >= CompoundLiteral) {
1848 TypeResult Ty = ParseTypeName();
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00001849
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00001850 // Match the ')'.
1851 if (Tok.is(tok::r_paren))
1852 RParenLoc = ConsumeParen();
1853 else
1854 MatchRHSPunctuation(tok::r_paren, LParenLoc);
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00001855
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00001856 if (ParseAs == CompoundLiteral) {
1857 ExprType = CompoundLiteral;
1858 return ParseCompoundLiteralExpression(Ty.get(), LParenLoc, RParenLoc);
1859 }
Mike Stump1eb44332009-09-09 15:08:12 +00001860
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00001861 // We parsed '(' type-id ')' and the thing after it wasn't a '{'.
1862 assert(ParseAs == CastExpr);
1863
1864 if (Ty.isInvalid())
1865 return ExprError();
1866
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00001867 CastTy = Ty.get();
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00001868
1869 // Result is what ParseCastExpression returned earlier.
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00001870 if (!Result.isInvalid())
Mike Stump1eb44332009-09-09 15:08:12 +00001871 Result = Actions.ActOnCastExpr(CurScope, LParenLoc, CastTy, RParenLoc,
Nate Begeman2ef13e52009-08-10 23:49:36 +00001872 move(Result));
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00001873 return move(Result);
1874 }
Mike Stump1eb44332009-09-09 15:08:12 +00001875
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00001876 // Not a compound literal, and not followed by a cast-expression.
1877 assert(ParseAs == SimpleExpr);
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00001878
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00001879 ExprType = SimpleExpr;
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00001880 Result = ParseExpression();
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00001881 if (!Result.isInvalid() && Tok.is(tok::r_paren))
1882 Result = Actions.ActOnParenExpr(LParenLoc, Tok.getLocation(), move(Result));
1883
1884 // Match the ')'.
1885 if (Result.isInvalid()) {
1886 SkipUntil(tok::r_paren);
1887 return ExprError();
1888 }
Mike Stump1eb44332009-09-09 15:08:12 +00001889
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00001890 if (Tok.is(tok::r_paren))
1891 RParenLoc = ConsumeParen();
1892 else
1893 MatchRHSPunctuation(tok::r_paren, LParenLoc);
1894
1895 return move(Result);
1896}