blob: 07de34dcb523f01aece2438e342b2d78b738e30e [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///
Douglas Gregor2dd078a2009-09-02 22:59:36 +000058/// \returns true if a scope specifier was parsed.
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();
Argyrios Kyrtzidis4bdd91c2008-11-26 21:41:52 +000070 return true;
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)
171 break;
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))
Chris Lattnerc8e27cc2009-06-26 04:27:47 +0000174 break;
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;
191 return HasScopeSpecifier;
192 }
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 Gregorb10cd042010-02-21 18:36:56 +0000215 CCLoc,
Douglas Gregord4dca082010-02-24 18:44:31 +0000216 false));
Douglas Gregor31a19b62009-04-01 21:51:26 +0000217 else
218 SS.setScopeRep(0);
Douglas Gregor39a8de12009-02-25 19:37:18 +0000219 SS.setEndLoc(CCLoc);
220 continue;
Chris Lattner67b9e832009-06-26 03:45:46 +0000221 }
Mike Stump1eb44332009-09-09 15:08:12 +0000222
Chris Lattner67b9e832009-06-26 03:45:46 +0000223 assert(false && "FIXME: Only type template names supported here");
Douglas Gregor39a8de12009-02-25 19:37:18 +0000224 }
225
Chris Lattner5c7f7862009-06-26 03:52:38 +0000226
227 // The rest of the nested-name-specifier possibilities start with
228 // tok::identifier.
229 if (Tok.isNot(tok::identifier))
230 break;
231
232 IdentifierInfo &II = *Tok.getIdentifierInfo();
233
234 // nested-name-specifier:
235 // type-name '::'
236 // namespace-name '::'
237 // nested-name-specifier identifier '::'
238 Token Next = NextToken();
Chris Lattner46646492009-12-07 01:36:53 +0000239
240 // If we get foo:bar, this is almost certainly a typo for foo::bar. Recover
241 // and emit a fixit hint for it.
Douglas Gregorb10cd042010-02-21 18:36:56 +0000242 if (Next.is(tok::colon) && !ColonIsSacred) {
Douglas Gregord4dca082010-02-24 18:44:31 +0000243 if (CheckForDestructor && GetLookAheadToken(2).is(tok::tilde)) {
244 *MayBePseudoDestructor = true;
245 return HasScopeSpecifier;
246 }
247
Douglas Gregorb10cd042010-02-21 18:36:56 +0000248 if (Actions.IsInvalidUnlessNestedName(CurScope, SS, II,
Douglas Gregord4dca082010-02-24 18:44:31 +0000249 false, ObjectType,
Douglas Gregorb10cd042010-02-21 18:36:56 +0000250 EnteringContext) &&
251 // If the token after the colon isn't an identifier, it's still an
252 // error, but they probably meant something else strange so don't
253 // recover like this.
254 PP.LookAhead(1).is(tok::identifier)) {
255 Diag(Next, diag::err_unexected_colon_in_nested_name_spec)
256 << CodeModificationHint::CreateReplacement(Next.getLocation(), "::");
257
258 // Recover as if the user wrote '::'.
259 Next.setKind(tok::coloncolon);
260 }
Chris Lattner46646492009-12-07 01:36:53 +0000261 }
262
Chris Lattner5c7f7862009-06-26 03:52:38 +0000263 if (Next.is(tok::coloncolon)) {
Douglas Gregord4dca082010-02-24 18:44:31 +0000264 if (CheckForDestructor && GetLookAheadToken(2).is(tok::tilde)) {
265 *MayBePseudoDestructor = true;
266 return HasScopeSpecifier;
267 }
268
Chris Lattner5c7f7862009-06-26 03:52:38 +0000269 // We have an identifier followed by a '::'. Lookup this name
270 // as the name in a nested-name-specifier.
271 SourceLocation IdLoc = ConsumeToken();
Chris Lattner46646492009-12-07 01:36:53 +0000272 assert((Tok.is(tok::coloncolon) || Tok.is(tok::colon)) &&
273 "NextToken() not working properly!");
Chris Lattner5c7f7862009-06-26 03:52:38 +0000274 SourceLocation CCLoc = ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +0000275
Chris Lattner5c7f7862009-06-26 03:52:38 +0000276 if (!HasScopeSpecifier) {
277 SS.setBeginLoc(IdLoc);
278 HasScopeSpecifier = true;
279 }
Mike Stump1eb44332009-09-09 15:08:12 +0000280
Chris Lattner5c7f7862009-06-26 03:52:38 +0000281 if (SS.isInvalid())
282 continue;
Mike Stump1eb44332009-09-09 15:08:12 +0000283
Chris Lattner5c7f7862009-06-26 03:52:38 +0000284 SS.setScopeRep(
Douglas Gregor495c35d2009-08-25 22:51:20 +0000285 Actions.ActOnCXXNestedNameSpecifier(CurScope, SS, IdLoc, CCLoc, II,
Douglas Gregord4dca082010-02-24 18:44:31 +0000286 false, ObjectType,
Douglas Gregorb10cd042010-02-21 18:36:56 +0000287 EnteringContext));
Chris Lattner5c7f7862009-06-26 03:52:38 +0000288 SS.setEndLoc(CCLoc);
289 continue;
290 }
Mike Stump1eb44332009-09-09 15:08:12 +0000291
Chris Lattner5c7f7862009-06-26 03:52:38 +0000292 // nested-name-specifier:
293 // type-name '<'
294 if (Next.is(tok::less)) {
295 TemplateTy Template;
Douglas Gregor014e88d2009-11-03 23:16:33 +0000296 UnqualifiedId TemplateName;
297 TemplateName.setIdentifier(&II, Tok.getLocation());
298 if (TemplateNameKind TNK = Actions.isTemplateName(CurScope, SS,
299 TemplateName,
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000300 ObjectType,
Douglas Gregor495c35d2009-08-25 22:51:20 +0000301 EnteringContext,
302 Template)) {
Chris Lattner5c7f7862009-06-26 03:52:38 +0000303 // We have found a template name, so annotate this this token
304 // with a template-id annotation. We do not permit the
305 // template-id to be translated into a type annotation,
306 // because some clients (e.g., the parsing of class template
307 // specializations) still want to see the original template-id
308 // token.
Douglas Gregorca1bdd72009-11-04 00:56:37 +0000309 ConsumeToken();
310 if (AnnotateTemplateIdToken(Template, TNK, &SS, TemplateName,
311 SourceLocation(), false))
Chris Lattnerc8e27cc2009-06-26 04:27:47 +0000312 break;
Chris Lattner5c7f7862009-06-26 03:52:38 +0000313 continue;
314 }
315 }
316
Douglas Gregor39a8de12009-02-25 19:37:18 +0000317 // We don't have any tokens that form the beginning of a
318 // nested-name-specifier, so we're done.
319 break;
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000320 }
Mike Stump1eb44332009-09-09 15:08:12 +0000321
Douglas Gregord4dca082010-02-24 18:44:31 +0000322 // Even if we didn't see any pieces of a nested-name-specifier, we
323 // still check whether there is a tilde in this position, which
324 // indicates a potential pseudo-destructor.
325 if (CheckForDestructor && Tok.is(tok::tilde))
326 *MayBePseudoDestructor = true;
327
Douglas Gregor39a8de12009-02-25 19:37:18 +0000328 return HasScopeSpecifier;
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000329}
330
331/// ParseCXXIdExpression - Handle id-expression.
332///
333/// id-expression:
334/// unqualified-id
335/// qualified-id
336///
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000337/// qualified-id:
338/// '::'[opt] nested-name-specifier 'template'[opt] unqualified-id
339/// '::' identifier
340/// '::' operator-function-id
Douglas Gregoredce4dd2009-06-30 22:34:41 +0000341/// '::' template-id
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000342///
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000343/// NOTE: The standard specifies that, for qualified-id, the parser does not
344/// expect:
345///
346/// '::' conversion-function-id
347/// '::' '~' class-name
348///
349/// This may cause a slight inconsistency on diagnostics:
350///
351/// class C {};
352/// namespace A {}
353/// void f() {
354/// :: A :: ~ C(); // Some Sema error about using destructor with a
355/// // namespace.
356/// :: ~ C(); // Some Parser error like 'unexpected ~'.
357/// }
358///
359/// We simplify the parser a bit and make it work like:
360///
361/// qualified-id:
362/// '::'[opt] nested-name-specifier 'template'[opt] unqualified-id
363/// '::' unqualified-id
364///
365/// That way Sema can handle and report similar errors for namespaces and the
366/// global scope.
367///
Sebastian Redlebc07d52009-02-03 20:19:35 +0000368/// The isAddressOfOperand parameter indicates that this id-expression is a
369/// direct operand of the address-of operator. This is, besides member contexts,
370/// the only place where a qualified-id naming a non-static class member may
371/// appear.
372///
373Parser::OwningExprResult Parser::ParseCXXIdExpression(bool isAddressOfOperand) {
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000374 // qualified-id:
375 // '::'[opt] nested-name-specifier 'template'[opt] unqualified-id
376 // '::' unqualified-id
377 //
378 CXXScopeSpec SS;
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000379 ParseOptionalCXXScopeSpecifier(SS, /*ObjectType=*/0, false);
Douglas Gregor02a24ee2009-11-03 16:56:39 +0000380
381 UnqualifiedId Name;
382 if (ParseUnqualifiedId(SS,
383 /*EnteringContext=*/false,
384 /*AllowDestructorName=*/false,
385 /*AllowConstructorName=*/false,
Douglas Gregor2d1c2142009-11-03 19:44:04 +0000386 /*ObjectType=*/0,
Douglas Gregor02a24ee2009-11-03 16:56:39 +0000387 Name))
388 return ExprError();
John McCallb681b612009-11-22 02:49:43 +0000389
390 // This is only the direct operand of an & operator if it is not
391 // followed by a postfix-expression suffix.
392 if (isAddressOfOperand) {
393 switch (Tok.getKind()) {
394 case tok::l_square:
395 case tok::l_paren:
396 case tok::arrow:
397 case tok::period:
398 case tok::plusplus:
399 case tok::minusminus:
400 isAddressOfOperand = false;
401 break;
402
403 default:
404 break;
405 }
406 }
Douglas Gregor02a24ee2009-11-03 16:56:39 +0000407
408 return Actions.ActOnIdExpression(CurScope, SS, Name, Tok.is(tok::l_paren),
409 isAddressOfOperand);
410
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000411}
412
Reid Spencer5f016e22007-07-11 17:01:13 +0000413/// ParseCXXCasts - This handles the various ways to cast expressions to another
414/// type.
415///
416/// postfix-expression: [C++ 5.2p1]
417/// 'dynamic_cast' '<' type-name '>' '(' expression ')'
418/// 'static_cast' '<' type-name '>' '(' expression ')'
419/// 'reinterpret_cast' '<' type-name '>' '(' expression ')'
420/// 'const_cast' '<' type-name '>' '(' expression ')'
421///
Sebastian Redl20df9b72008-12-11 22:51:44 +0000422Parser::OwningExprResult Parser::ParseCXXCasts() {
Reid Spencer5f016e22007-07-11 17:01:13 +0000423 tok::TokenKind Kind = Tok.getKind();
424 const char *CastName = 0; // For error messages
425
426 switch (Kind) {
427 default: assert(0 && "Unknown C++ cast!"); abort();
428 case tok::kw_const_cast: CastName = "const_cast"; break;
429 case tok::kw_dynamic_cast: CastName = "dynamic_cast"; break;
430 case tok::kw_reinterpret_cast: CastName = "reinterpret_cast"; break;
431 case tok::kw_static_cast: CastName = "static_cast"; break;
432 }
433
434 SourceLocation OpLoc = ConsumeToken();
435 SourceLocation LAngleBracketLoc = Tok.getLocation();
436
437 if (ExpectAndConsume(tok::less, diag::err_expected_less_after, CastName))
Sebastian Redl20df9b72008-12-11 22:51:44 +0000438 return ExprError();
Reid Spencer5f016e22007-07-11 17:01:13 +0000439
Douglas Gregor809070a2009-02-18 17:45:20 +0000440 TypeResult CastTy = ParseTypeName();
Reid Spencer5f016e22007-07-11 17:01:13 +0000441 SourceLocation RAngleBracketLoc = Tok.getLocation();
442
Chris Lattner1ab3b962008-11-18 07:48:38 +0000443 if (ExpectAndConsume(tok::greater, diag::err_expected_greater))
Sebastian Redl20df9b72008-12-11 22:51:44 +0000444 return ExprError(Diag(LAngleBracketLoc, diag::note_matching) << "<");
Reid Spencer5f016e22007-07-11 17:01:13 +0000445
446 SourceLocation LParenLoc = Tok.getLocation(), RParenLoc;
447
Argyrios Kyrtzidis21e7ad22009-05-22 10:23:16 +0000448 if (ExpectAndConsume(tok::l_paren, diag::err_expected_lparen_after, CastName))
449 return ExprError();
Reid Spencer5f016e22007-07-11 17:01:13 +0000450
Argyrios Kyrtzidis21e7ad22009-05-22 10:23:16 +0000451 OwningExprResult Result = ParseExpression();
Mike Stump1eb44332009-09-09 15:08:12 +0000452
Argyrios Kyrtzidis21e7ad22009-05-22 10:23:16 +0000453 // Match the ')'.
Douglas Gregor27591ff2009-11-06 05:48:00 +0000454 RParenLoc = MatchRHSPunctuation(tok::r_paren, LParenLoc);
Reid Spencer5f016e22007-07-11 17:01:13 +0000455
Douglas Gregor809070a2009-02-18 17:45:20 +0000456 if (!Result.isInvalid() && !CastTy.isInvalid())
Douglas Gregor49badde2008-10-27 19:41:14 +0000457 Result = Actions.ActOnCXXNamedCast(OpLoc, Kind,
Sebastian Redlf53597f2009-03-15 17:47:39 +0000458 LAngleBracketLoc, CastTy.get(),
Douglas Gregor809070a2009-02-18 17:45:20 +0000459 RAngleBracketLoc,
Sebastian Redlf53597f2009-03-15 17:47:39 +0000460 LParenLoc, move(Result), RParenLoc);
Reid Spencer5f016e22007-07-11 17:01:13 +0000461
Sebastian Redl20df9b72008-12-11 22:51:44 +0000462 return move(Result);
Reid Spencer5f016e22007-07-11 17:01:13 +0000463}
464
Sebastian Redlc42e1182008-11-11 11:37:55 +0000465/// ParseCXXTypeid - This handles the C++ typeid expression.
466///
467/// postfix-expression: [C++ 5.2p1]
468/// 'typeid' '(' expression ')'
469/// 'typeid' '(' type-id ')'
470///
Sebastian Redl20df9b72008-12-11 22:51:44 +0000471Parser::OwningExprResult Parser::ParseCXXTypeid() {
Sebastian Redlc42e1182008-11-11 11:37:55 +0000472 assert(Tok.is(tok::kw_typeid) && "Not 'typeid'!");
473
474 SourceLocation OpLoc = ConsumeToken();
475 SourceLocation LParenLoc = Tok.getLocation();
476 SourceLocation RParenLoc;
477
478 // typeid expressions are always parenthesized.
479 if (ExpectAndConsume(tok::l_paren, diag::err_expected_lparen_after,
480 "typeid"))
Sebastian Redl20df9b72008-12-11 22:51:44 +0000481 return ExprError();
Sebastian Redlc42e1182008-11-11 11:37:55 +0000482
Sebastian Redl15faa7f2008-12-09 20:22:58 +0000483 OwningExprResult Result(Actions);
Sebastian Redlc42e1182008-11-11 11:37:55 +0000484
485 if (isTypeIdInParens()) {
Douglas Gregor809070a2009-02-18 17:45:20 +0000486 TypeResult Ty = ParseTypeName();
Sebastian Redlc42e1182008-11-11 11:37:55 +0000487
488 // Match the ')'.
489 MatchRHSPunctuation(tok::r_paren, LParenLoc);
490
Douglas Gregor809070a2009-02-18 17:45:20 +0000491 if (Ty.isInvalid())
Sebastian Redl20df9b72008-12-11 22:51:44 +0000492 return ExprError();
Sebastian Redlc42e1182008-11-11 11:37:55 +0000493
494 Result = Actions.ActOnCXXTypeid(OpLoc, LParenLoc, /*isType=*/true,
Douglas Gregor809070a2009-02-18 17:45:20 +0000495 Ty.get(), RParenLoc);
Sebastian Redlc42e1182008-11-11 11:37:55 +0000496 } else {
Douglas Gregore0762c92009-06-19 23:52:42 +0000497 // C++0x [expr.typeid]p3:
Mike Stump1eb44332009-09-09 15:08:12 +0000498 // When typeid is applied to an expression other than an lvalue of a
499 // polymorphic class type [...] The expression is an unevaluated
Douglas Gregore0762c92009-06-19 23:52:42 +0000500 // operand (Clause 5).
501 //
Mike Stump1eb44332009-09-09 15:08:12 +0000502 // Note that we can't tell whether the expression is an lvalue of a
Douglas Gregore0762c92009-06-19 23:52:42 +0000503 // polymorphic class type until after we've parsed the expression, so
Douglas Gregorac7610d2009-06-22 20:57:11 +0000504 // we the expression is potentially potentially evaluated.
505 EnterExpressionEvaluationContext Unevaluated(Actions,
506 Action::PotentiallyPotentiallyEvaluated);
Sebastian Redlc42e1182008-11-11 11:37:55 +0000507 Result = ParseExpression();
508
509 // Match the ')'.
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000510 if (Result.isInvalid())
Sebastian Redlc42e1182008-11-11 11:37:55 +0000511 SkipUntil(tok::r_paren);
512 else {
513 MatchRHSPunctuation(tok::r_paren, LParenLoc);
514
515 Result = Actions.ActOnCXXTypeid(OpLoc, LParenLoc, /*isType=*/false,
Sebastian Redleffa8d12008-12-10 00:02:53 +0000516 Result.release(), RParenLoc);
Sebastian Redlc42e1182008-11-11 11:37:55 +0000517 }
518 }
519
Sebastian Redl20df9b72008-12-11 22:51:44 +0000520 return move(Result);
Sebastian Redlc42e1182008-11-11 11:37:55 +0000521}
522
Douglas Gregord4dca082010-02-24 18:44:31 +0000523/// \brief Parse a C++ pseudo-destructor expression after the base,
524/// . or -> operator, and nested-name-specifier have already been
525/// parsed.
526///
527/// postfix-expression: [C++ 5.2]
528/// postfix-expression . pseudo-destructor-name
529/// postfix-expression -> pseudo-destructor-name
530///
531/// pseudo-destructor-name:
532/// ::[opt] nested-name-specifier[opt] type-name :: ~type-name
533/// ::[opt] nested-name-specifier template simple-template-id ::
534/// ~type-name
535/// ::[opt] nested-name-specifier[opt] ~type-name
536///
537Parser::OwningExprResult
538Parser::ParseCXXPseudoDestructor(ExprArg Base, SourceLocation OpLoc,
539 tok::TokenKind OpKind,
540 CXXScopeSpec &SS,
541 Action::TypeTy *ObjectType) {
542 // We're parsing either a pseudo-destructor-name or a dependent
543 // member access that has the same form as a
544 // pseudo-destructor-name. We parse both in the same way and let
545 // the action model sort them out.
546 //
547 // Note that the ::[opt] nested-name-specifier[opt] has already
548 // been parsed, and if there was a simple-template-id, it has
549 // been coalesced into a template-id annotation token.
550 UnqualifiedId FirstTypeName;
551 SourceLocation CCLoc;
552 if (Tok.is(tok::identifier)) {
553 FirstTypeName.setIdentifier(Tok.getIdentifierInfo(), Tok.getLocation());
554 ConsumeToken();
555 assert(Tok.is(tok::coloncolon) &&"ParseOptionalCXXScopeSpecifier fail");
556 CCLoc = ConsumeToken();
557 } else if (Tok.is(tok::annot_template_id)) {
558 FirstTypeName.setTemplateId(
559 (TemplateIdAnnotation *)Tok.getAnnotationValue());
560 ConsumeToken();
561 assert(Tok.is(tok::coloncolon) &&"ParseOptionalCXXScopeSpecifier fail");
562 CCLoc = ConsumeToken();
563 } else {
564 FirstTypeName.setIdentifier(0, SourceLocation());
565 }
566
567 // Parse the tilde.
568 assert(Tok.is(tok::tilde) && "ParseOptionalCXXScopeSpecifier fail");
569 SourceLocation TildeLoc = ConsumeToken();
570 if (!Tok.is(tok::identifier)) {
571 Diag(Tok, diag::err_destructor_tilde_identifier);
572 return ExprError();
573 }
574
575 // Parse the second type.
576 UnqualifiedId SecondTypeName;
577 IdentifierInfo *Name = Tok.getIdentifierInfo();
578 SourceLocation NameLoc = ConsumeToken();
579 SecondTypeName.setIdentifier(Name, NameLoc);
580
581 // If there is a '<', the second type name is a template-id. Parse
582 // it as such.
583 if (Tok.is(tok::less) &&
584 ParseUnqualifiedIdTemplateId(SS, Name, NameLoc, false, ObjectType,
585 SecondTypeName, /*AssumeTemplateName=*/true))
586 return ExprError();
587
588 return Actions.ActOnPseudoDestructorExpr(CurScope, move(Base), OpLoc, OpKind,
589 SS, FirstTypeName, CCLoc,
590 TildeLoc, SecondTypeName,
591 Tok.is(tok::l_paren));
592}
593
Reid Spencer5f016e22007-07-11 17:01:13 +0000594/// ParseCXXBoolLiteral - This handles the C++ Boolean literals.
595///
596/// boolean-literal: [C++ 2.13.5]
597/// 'true'
598/// 'false'
Sebastian Redl20df9b72008-12-11 22:51:44 +0000599Parser::OwningExprResult Parser::ParseCXXBoolLiteral() {
Reid Spencer5f016e22007-07-11 17:01:13 +0000600 tok::TokenKind Kind = Tok.getKind();
Sebastian Redlf53597f2009-03-15 17:47:39 +0000601 return Actions.ActOnCXXBoolLiteral(ConsumeToken(), Kind);
Reid Spencer5f016e22007-07-11 17:01:13 +0000602}
Chris Lattner50dd2892008-02-26 00:51:44 +0000603
604/// ParseThrowExpression - This handles the C++ throw expression.
605///
606/// throw-expression: [C++ 15]
607/// 'throw' assignment-expression[opt]
Sebastian Redl20df9b72008-12-11 22:51:44 +0000608Parser::OwningExprResult Parser::ParseThrowExpression() {
Chris Lattner50dd2892008-02-26 00:51:44 +0000609 assert(Tok.is(tok::kw_throw) && "Not throw!");
Chris Lattner50dd2892008-02-26 00:51:44 +0000610 SourceLocation ThrowLoc = ConsumeToken(); // Eat the throw token.
Sebastian Redl20df9b72008-12-11 22:51:44 +0000611
Chris Lattner2a2819a2008-04-06 06:02:23 +0000612 // If the current token isn't the start of an assignment-expression,
613 // then the expression is not present. This handles things like:
614 // "C ? throw : (void)42", which is crazy but legal.
615 switch (Tok.getKind()) { // FIXME: move this predicate somewhere common.
616 case tok::semi:
617 case tok::r_paren:
618 case tok::r_square:
619 case tok::r_brace:
620 case tok::colon:
621 case tok::comma:
Sebastian Redlf53597f2009-03-15 17:47:39 +0000622 return Actions.ActOnCXXThrow(ThrowLoc, ExprArg(Actions));
Chris Lattner50dd2892008-02-26 00:51:44 +0000623
Chris Lattner2a2819a2008-04-06 06:02:23 +0000624 default:
Sebastian Redl2f7ece72008-12-11 21:36:32 +0000625 OwningExprResult Expr(ParseAssignmentExpression());
Sebastian Redl20df9b72008-12-11 22:51:44 +0000626 if (Expr.isInvalid()) return move(Expr);
Sebastian Redlf53597f2009-03-15 17:47:39 +0000627 return Actions.ActOnCXXThrow(ThrowLoc, move(Expr));
Chris Lattner2a2819a2008-04-06 06:02:23 +0000628 }
Chris Lattner50dd2892008-02-26 00:51:44 +0000629}
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +0000630
631/// ParseCXXThis - This handles the C++ 'this' pointer.
632///
633/// C++ 9.3.2: In the body of a non-static member function, the keyword this is
634/// a non-lvalue expression whose value is the address of the object for which
635/// the function is called.
Sebastian Redl20df9b72008-12-11 22:51:44 +0000636Parser::OwningExprResult Parser::ParseCXXThis() {
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +0000637 assert(Tok.is(tok::kw_this) && "Not 'this'!");
638 SourceLocation ThisLoc = ConsumeToken();
Sebastian Redlf53597f2009-03-15 17:47:39 +0000639 return Actions.ActOnCXXThis(ThisLoc);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +0000640}
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000641
642/// ParseCXXTypeConstructExpression - Parse construction of a specified type.
643/// Can be interpreted either as function-style casting ("int(x)")
644/// or class type construction ("ClassType(x,y,z)")
645/// or creation of a value-initialized type ("int()").
646///
647/// postfix-expression: [C++ 5.2p1]
648/// simple-type-specifier '(' expression-list[opt] ')' [C++ 5.2.3]
649/// typename-specifier '(' expression-list[opt] ')' [TODO]
650///
Sebastian Redl20df9b72008-12-11 22:51:44 +0000651Parser::OwningExprResult
652Parser::ParseCXXTypeConstructExpression(const DeclSpec &DS) {
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000653 Declarator DeclaratorInfo(DS, Declarator::TypeNameContext);
Douglas Gregor5ac8aff2009-01-26 22:44:13 +0000654 TypeTy *TypeRep = Actions.ActOnTypeName(CurScope, DeclaratorInfo).get();
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000655
656 assert(Tok.is(tok::l_paren) && "Expected '('!");
657 SourceLocation LParenLoc = ConsumeParen();
658
Sebastian Redla55e52c2008-11-25 22:21:31 +0000659 ExprVector Exprs(Actions);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000660 CommaLocsTy CommaLocs;
661
662 if (Tok.isNot(tok::r_paren)) {
663 if (ParseExpressionList(Exprs, CommaLocs)) {
664 SkipUntil(tok::r_paren);
Sebastian Redl20df9b72008-12-11 22:51:44 +0000665 return ExprError();
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000666 }
667 }
668
669 // Match the ')'.
670 SourceLocation RParenLoc = MatchRHSPunctuation(tok::r_paren, LParenLoc);
671
Sebastian Redlef0cb8e2009-07-29 13:50:23 +0000672 // TypeRep could be null, if it references an invalid typedef.
673 if (!TypeRep)
674 return ExprError();
675
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000676 assert((Exprs.size() == 0 || Exprs.size()-1 == CommaLocs.size())&&
677 "Unexpected number of commas!");
Sebastian Redlf53597f2009-03-15 17:47:39 +0000678 return Actions.ActOnCXXTypeConstructExpr(DS.getSourceRange(), TypeRep,
679 LParenLoc, move_arg(Exprs),
Jay Foadbeaaccd2009-05-21 09:52:38 +0000680 CommaLocs.data(), RParenLoc);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000681}
682
Douglas Gregor99e9b4d2009-11-25 00:27:52 +0000683/// ParseCXXCondition - if/switch/while condition expression.
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +0000684///
685/// condition:
686/// expression
687/// type-specifier-seq declarator '=' assignment-expression
688/// [GNU] type-specifier-seq declarator simple-asm-expr[opt] attributes[opt]
689/// '=' assignment-expression
690///
Douglas Gregor99e9b4d2009-11-25 00:27:52 +0000691/// \param ExprResult if the condition was parsed as an expression, the
692/// parsed expression.
693///
694/// \param DeclResult if the condition was parsed as a declaration, the
695/// parsed declaration.
696///
697/// \returns true if there was a parsing, false otherwise.
698bool Parser::ParseCXXCondition(OwningExprResult &ExprResult,
699 DeclPtrTy &DeclResult) {
Douglas Gregor01dfea02010-01-10 23:08:15 +0000700 if (Tok.is(tok::code_completion)) {
701 Actions.CodeCompleteOrdinaryName(CurScope, Action::CCC_Condition);
702 ConsumeToken();
703 }
704
Douglas Gregor99e9b4d2009-11-25 00:27:52 +0000705 if (!isCXXConditionDeclaration()) {
706 ExprResult = ParseExpression(); // expression
707 DeclResult = DeclPtrTy();
708 return ExprResult.isInvalid();
709 }
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +0000710
711 // type-specifier-seq
712 DeclSpec DS;
713 ParseSpecifierQualifierList(DS);
714
715 // declarator
716 Declarator DeclaratorInfo(DS, Declarator::ConditionContext);
717 ParseDeclarator(DeclaratorInfo);
718
719 // simple-asm-expr[opt]
720 if (Tok.is(tok::kw_asm)) {
Sebastian Redlab197ba2009-02-09 18:23:29 +0000721 SourceLocation Loc;
722 OwningExprResult AsmLabel(ParseSimpleAsm(&Loc));
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000723 if (AsmLabel.isInvalid()) {
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +0000724 SkipUntil(tok::semi);
Douglas Gregor99e9b4d2009-11-25 00:27:52 +0000725 return true;
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +0000726 }
Sebastian Redleffa8d12008-12-10 00:02:53 +0000727 DeclaratorInfo.setAsmLabel(AsmLabel.release());
Sebastian Redlab197ba2009-02-09 18:23:29 +0000728 DeclaratorInfo.SetRangeEnd(Loc);
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +0000729 }
730
731 // If attributes are present, parse them.
Sebastian Redlab197ba2009-02-09 18:23:29 +0000732 if (Tok.is(tok::kw___attribute)) {
733 SourceLocation Loc;
Sean Huntbbd37c62009-11-21 08:43:09 +0000734 AttributeList *AttrList = ParseGNUAttributes(&Loc);
Sebastian Redlab197ba2009-02-09 18:23:29 +0000735 DeclaratorInfo.AddAttributes(AttrList, Loc);
736 }
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +0000737
Douglas Gregor99e9b4d2009-11-25 00:27:52 +0000738 // Type-check the declaration itself.
739 Action::DeclResult Dcl = Actions.ActOnCXXConditionDeclaration(CurScope,
740 DeclaratorInfo);
741 DeclResult = Dcl.get();
742 ExprResult = ExprError();
743
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +0000744 // '=' assignment-expression
Douglas Gregor99e9b4d2009-11-25 00:27:52 +0000745 if (Tok.is(tok::equal)) {
746 SourceLocation EqualLoc = ConsumeToken();
747 OwningExprResult AssignExpr(ParseAssignmentExpression());
748 if (!AssignExpr.isInvalid())
749 Actions.AddInitializerToDecl(DeclResult, move(AssignExpr));
750 } else {
751 // FIXME: C++0x allows a braced-init-list
752 Diag(Tok, diag::err_expected_equal_after_declarator);
753 }
754
755 return false;
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +0000756}
757
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000758/// ParseCXXSimpleTypeSpecifier - [C++ 7.1.5.2] Simple type specifiers.
759/// This should only be called when the current token is known to be part of
760/// simple-type-specifier.
761///
762/// simple-type-specifier:
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000763/// '::'[opt] nested-name-specifier[opt] type-name
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000764/// '::'[opt] nested-name-specifier 'template' simple-template-id [TODO]
765/// char
766/// wchar_t
767/// bool
768/// short
769/// int
770/// long
771/// signed
772/// unsigned
773/// float
774/// double
775/// void
776/// [GNU] typeof-specifier
777/// [C++0x] auto [TODO]
778///
779/// type-name:
780/// class-name
781/// enum-name
782/// typedef-name
783///
784void Parser::ParseCXXSimpleTypeSpecifier(DeclSpec &DS) {
785 DS.SetRangeStart(Tok.getLocation());
786 const char *PrevSpec;
John McCallfec54012009-08-03 20:12:06 +0000787 unsigned DiagID;
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000788 SourceLocation Loc = Tok.getLocation();
Mike Stump1eb44332009-09-09 15:08:12 +0000789
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000790 switch (Tok.getKind()) {
Chris Lattner55a7cef2009-01-05 00:13:00 +0000791 case tok::identifier: // foo::bar
792 case tok::coloncolon: // ::foo::bar
793 assert(0 && "Annotation token should already be formed!");
Mike Stump1eb44332009-09-09 15:08:12 +0000794 default:
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000795 assert(0 && "Not a simple-type-specifier token!");
796 abort();
Chris Lattner55a7cef2009-01-05 00:13:00 +0000797
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000798 // type-name
Chris Lattnerb31757b2009-01-06 05:06:21 +0000799 case tok::annot_typename: {
John McCallfec54012009-08-03 20:12:06 +0000800 DS.SetTypeSpecType(DeclSpec::TST_typename, Loc, PrevSpec, DiagID,
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000801 Tok.getAnnotationValue());
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000802 break;
803 }
Mike Stump1eb44332009-09-09 15:08:12 +0000804
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000805 // builtin types
806 case tok::kw_short:
John McCallfec54012009-08-03 20:12:06 +0000807 DS.SetTypeSpecWidth(DeclSpec::TSW_short, Loc, PrevSpec, DiagID);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000808 break;
809 case tok::kw_long:
John McCallfec54012009-08-03 20:12:06 +0000810 DS.SetTypeSpecWidth(DeclSpec::TSW_long, Loc, PrevSpec, DiagID);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000811 break;
812 case tok::kw_signed:
John McCallfec54012009-08-03 20:12:06 +0000813 DS.SetTypeSpecSign(DeclSpec::TSS_signed, Loc, PrevSpec, DiagID);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000814 break;
815 case tok::kw_unsigned:
John McCallfec54012009-08-03 20:12:06 +0000816 DS.SetTypeSpecSign(DeclSpec::TSS_unsigned, Loc, PrevSpec, DiagID);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000817 break;
818 case tok::kw_void:
John McCallfec54012009-08-03 20:12:06 +0000819 DS.SetTypeSpecType(DeclSpec::TST_void, Loc, PrevSpec, DiagID);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000820 break;
821 case tok::kw_char:
John McCallfec54012009-08-03 20:12:06 +0000822 DS.SetTypeSpecType(DeclSpec::TST_char, Loc, PrevSpec, DiagID);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000823 break;
824 case tok::kw_int:
John McCallfec54012009-08-03 20:12:06 +0000825 DS.SetTypeSpecType(DeclSpec::TST_int, Loc, PrevSpec, DiagID);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000826 break;
827 case tok::kw_float:
John McCallfec54012009-08-03 20:12:06 +0000828 DS.SetTypeSpecType(DeclSpec::TST_float, Loc, PrevSpec, DiagID);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000829 break;
830 case tok::kw_double:
John McCallfec54012009-08-03 20:12:06 +0000831 DS.SetTypeSpecType(DeclSpec::TST_double, Loc, PrevSpec, DiagID);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000832 break;
833 case tok::kw_wchar_t:
John McCallfec54012009-08-03 20:12:06 +0000834 DS.SetTypeSpecType(DeclSpec::TST_wchar, Loc, PrevSpec, DiagID);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000835 break;
Alisdair Meredithf5c209d2009-07-14 06:30:34 +0000836 case tok::kw_char16_t:
John McCallfec54012009-08-03 20:12:06 +0000837 DS.SetTypeSpecType(DeclSpec::TST_char16, Loc, PrevSpec, DiagID);
Alisdair Meredithf5c209d2009-07-14 06:30:34 +0000838 break;
839 case tok::kw_char32_t:
John McCallfec54012009-08-03 20:12:06 +0000840 DS.SetTypeSpecType(DeclSpec::TST_char32, Loc, PrevSpec, DiagID);
Alisdair Meredithf5c209d2009-07-14 06:30:34 +0000841 break;
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000842 case tok::kw_bool:
John McCallfec54012009-08-03 20:12:06 +0000843 DS.SetTypeSpecType(DeclSpec::TST_bool, Loc, PrevSpec, DiagID);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000844 break;
Mike Stump1eb44332009-09-09 15:08:12 +0000845
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000846 // GNU typeof support.
847 case tok::kw_typeof:
848 ParseTypeofSpecifier(DS);
Douglas Gregor9b3064b2009-04-01 22:41:11 +0000849 DS.Finish(Diags, PP);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000850 return;
851 }
Chris Lattnerb31757b2009-01-06 05:06:21 +0000852 if (Tok.is(tok::annot_typename))
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000853 DS.SetRangeEnd(Tok.getAnnotationEndLoc());
854 else
855 DS.SetRangeEnd(Tok.getLocation());
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000856 ConsumeToken();
Douglas Gregor9b3064b2009-04-01 22:41:11 +0000857 DS.Finish(Diags, PP);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000858}
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +0000859
Douglas Gregor2f1bc522008-11-07 20:08:42 +0000860/// ParseCXXTypeSpecifierSeq - Parse a C++ type-specifier-seq (C++
861/// [dcl.name]), which is a non-empty sequence of type-specifiers,
862/// e.g., "const short int". Note that the DeclSpec is *not* finished
863/// by parsing the type-specifier-seq, because these sequences are
864/// typically followed by some form of declarator. Returns true and
865/// emits diagnostics if this is not a type-specifier-seq, false
866/// otherwise.
867///
868/// type-specifier-seq: [C++ 8.1]
869/// type-specifier type-specifier-seq[opt]
870///
871bool Parser::ParseCXXTypeSpecifierSeq(DeclSpec &DS) {
872 DS.SetRangeStart(Tok.getLocation());
873 const char *PrevSpec = 0;
John McCallfec54012009-08-03 20:12:06 +0000874 unsigned DiagID;
875 bool isInvalid = 0;
Douglas Gregor2f1bc522008-11-07 20:08:42 +0000876
877 // Parse one or more of the type specifiers.
Sebastian Redld9bafa72010-02-03 21:21:43 +0000878 if (!ParseOptionalTypeSpecifier(DS, isInvalid, PrevSpec, DiagID,
879 ParsedTemplateInfo(), /*SuppressDeclarations*/true)) {
Chris Lattner1ab3b962008-11-18 07:48:38 +0000880 Diag(Tok, diag::err_operator_missing_type_specifier);
Douglas Gregor2f1bc522008-11-07 20:08:42 +0000881 return true;
882 }
Mike Stump1eb44332009-09-09 15:08:12 +0000883
Sebastian Redld9bafa72010-02-03 21:21:43 +0000884 while (ParseOptionalTypeSpecifier(DS, isInvalid, PrevSpec, DiagID,
885 ParsedTemplateInfo(), /*SuppressDeclarations*/true))
886 {}
Douglas Gregor2f1bc522008-11-07 20:08:42 +0000887
888 return false;
889}
890
Douglas Gregor3f9a0562009-11-03 01:35:08 +0000891/// \brief Finish parsing a C++ unqualified-id that is a template-id of
892/// some form.
893///
894/// This routine is invoked when a '<' is encountered after an identifier or
895/// operator-function-id is parsed by \c ParseUnqualifiedId() to determine
896/// whether the unqualified-id is actually a template-id. This routine will
897/// then parse the template arguments and form the appropriate template-id to
898/// return to the caller.
899///
900/// \param SS the nested-name-specifier that precedes this template-id, if
901/// we're actually parsing a qualified-id.
902///
903/// \param Name for constructor and destructor names, this is the actual
904/// identifier that may be a template-name.
905///
906/// \param NameLoc the location of the class-name in a constructor or
907/// destructor.
908///
909/// \param EnteringContext whether we're entering the scope of the
910/// nested-name-specifier.
911///
Douglas Gregor46df8cc2009-11-03 21:24:04 +0000912/// \param ObjectType if this unqualified-id occurs within a member access
913/// expression, the type of the base object whose member is being accessed.
914///
Douglas Gregor3f9a0562009-11-03 01:35:08 +0000915/// \param Id as input, describes the template-name or operator-function-id
916/// that precedes the '<'. If template arguments were parsed successfully,
917/// will be updated with the template-id.
918///
Douglas Gregord4dca082010-02-24 18:44:31 +0000919/// \param AssumeTemplateId When true, this routine will assume that the name
920/// refers to a template without performing name lookup to verify.
921///
Douglas Gregor3f9a0562009-11-03 01:35:08 +0000922/// \returns true if a parse error occurred, false otherwise.
923bool Parser::ParseUnqualifiedIdTemplateId(CXXScopeSpec &SS,
924 IdentifierInfo *Name,
925 SourceLocation NameLoc,
926 bool EnteringContext,
Douglas Gregor2d1c2142009-11-03 19:44:04 +0000927 TypeTy *ObjectType,
Douglas Gregord4dca082010-02-24 18:44:31 +0000928 UnqualifiedId &Id,
929 bool AssumeTemplateId) {
Douglas Gregor3f9a0562009-11-03 01:35:08 +0000930 assert(Tok.is(tok::less) && "Expected '<' to finish parsing a template-id");
931
932 TemplateTy Template;
933 TemplateNameKind TNK = TNK_Non_template;
934 switch (Id.getKind()) {
935 case UnqualifiedId::IK_Identifier:
Douglas Gregor014e88d2009-11-03 23:16:33 +0000936 case UnqualifiedId::IK_OperatorFunctionId:
Sean Hunte6252d12009-11-28 08:58:14 +0000937 case UnqualifiedId::IK_LiteralOperatorId:
Douglas Gregord4dca082010-02-24 18:44:31 +0000938 if (AssumeTemplateId) {
939 Template = Actions.ActOnDependentTemplateName(SourceLocation(), SS,
940 Id, ObjectType,
941 EnteringContext);
942 TNK = TNK_Dependent_template_name;
943 if (!Template.get())
944 return true;
945 } else
946 TNK = Actions.isTemplateName(CurScope, SS, Id, ObjectType,
947 EnteringContext, Template);
Douglas Gregor3f9a0562009-11-03 01:35:08 +0000948 break;
949
Douglas Gregor014e88d2009-11-03 23:16:33 +0000950 case UnqualifiedId::IK_ConstructorName: {
951 UnqualifiedId TemplateName;
952 TemplateName.setIdentifier(Name, NameLoc);
953 TNK = Actions.isTemplateName(CurScope, SS, TemplateName, ObjectType,
954 EnteringContext, Template);
Douglas Gregor3f9a0562009-11-03 01:35:08 +0000955 break;
956 }
957
Douglas Gregor014e88d2009-11-03 23:16:33 +0000958 case UnqualifiedId::IK_DestructorName: {
959 UnqualifiedId TemplateName;
960 TemplateName.setIdentifier(Name, NameLoc);
Douglas Gregor2d1c2142009-11-03 19:44:04 +0000961 if (ObjectType) {
Douglas Gregor014e88d2009-11-03 23:16:33 +0000962 Template = Actions.ActOnDependentTemplateName(SourceLocation(), SS,
Douglas Gregora481edb2009-11-20 23:39:24 +0000963 TemplateName, ObjectType,
964 EnteringContext);
Douglas Gregor2d1c2142009-11-03 19:44:04 +0000965 TNK = TNK_Dependent_template_name;
966 if (!Template.get())
967 return true;
968 } else {
Douglas Gregor014e88d2009-11-03 23:16:33 +0000969 TNK = Actions.isTemplateName(CurScope, SS, TemplateName, ObjectType,
Douglas Gregor2d1c2142009-11-03 19:44:04 +0000970 EnteringContext, Template);
971
972 if (TNK == TNK_Non_template && Id.DestructorName == 0) {
Douglas Gregor124b8782010-02-16 19:09:40 +0000973 Diag(NameLoc, diag::err_destructor_template_id)
974 << Name << SS.getRange();
Douglas Gregor2d1c2142009-11-03 19:44:04 +0000975 return true;
976 }
977 }
Douglas Gregor3f9a0562009-11-03 01:35:08 +0000978 break;
Douglas Gregor014e88d2009-11-03 23:16:33 +0000979 }
Douglas Gregor3f9a0562009-11-03 01:35:08 +0000980
981 default:
982 return false;
983 }
984
985 if (TNK == TNK_Non_template)
986 return false;
987
988 // Parse the enclosed template argument list.
989 SourceLocation LAngleLoc, RAngleLoc;
990 TemplateArgList TemplateArgs;
Douglas Gregor3f9a0562009-11-03 01:35:08 +0000991 if (ParseTemplateIdAfterTemplateName(Template, Id.StartLocation,
992 &SS, true, LAngleLoc,
993 TemplateArgs,
Douglas Gregor3f9a0562009-11-03 01:35:08 +0000994 RAngleLoc))
995 return true;
996
997 if (Id.getKind() == UnqualifiedId::IK_Identifier ||
Sean Hunte6252d12009-11-28 08:58:14 +0000998 Id.getKind() == UnqualifiedId::IK_OperatorFunctionId ||
999 Id.getKind() == UnqualifiedId::IK_LiteralOperatorId) {
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001000 // Form a parsed representation of the template-id to be stored in the
1001 // UnqualifiedId.
1002 TemplateIdAnnotation *TemplateId
1003 = TemplateIdAnnotation::Allocate(TemplateArgs.size());
1004
1005 if (Id.getKind() == UnqualifiedId::IK_Identifier) {
1006 TemplateId->Name = Id.Identifier;
Douglas Gregor014e88d2009-11-03 23:16:33 +00001007 TemplateId->Operator = OO_None;
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001008 TemplateId->TemplateNameLoc = Id.StartLocation;
1009 } else {
Douglas Gregor014e88d2009-11-03 23:16:33 +00001010 TemplateId->Name = 0;
1011 TemplateId->Operator = Id.OperatorFunctionId.Operator;
1012 TemplateId->TemplateNameLoc = Id.StartLocation;
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001013 }
1014
1015 TemplateId->Template = Template.getAs<void*>();
1016 TemplateId->Kind = TNK;
1017 TemplateId->LAngleLoc = LAngleLoc;
1018 TemplateId->RAngleLoc = RAngleLoc;
Douglas Gregor314b97f2009-11-10 19:49:08 +00001019 ParsedTemplateArgument *Args = TemplateId->getTemplateArgs();
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001020 for (unsigned Arg = 0, ArgEnd = TemplateArgs.size();
Douglas Gregor314b97f2009-11-10 19:49:08 +00001021 Arg != ArgEnd; ++Arg)
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001022 Args[Arg] = TemplateArgs[Arg];
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001023
1024 Id.setTemplateId(TemplateId);
1025 return false;
1026 }
1027
1028 // Bundle the template arguments together.
1029 ASTTemplateArgsPtr TemplateArgsPtr(Actions, TemplateArgs.data(),
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001030 TemplateArgs.size());
1031
1032 // Constructor and destructor names.
1033 Action::TypeResult Type
1034 = Actions.ActOnTemplateIdType(Template, NameLoc,
1035 LAngleLoc, TemplateArgsPtr,
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001036 RAngleLoc);
1037 if (Type.isInvalid())
1038 return true;
1039
1040 if (Id.getKind() == UnqualifiedId::IK_ConstructorName)
1041 Id.setConstructorName(Type.get(), NameLoc, RAngleLoc);
1042 else
1043 Id.setDestructorName(Id.StartLocation, Type.get(), RAngleLoc);
1044
1045 return false;
1046}
1047
Douglas Gregorca1bdd72009-11-04 00:56:37 +00001048/// \brief Parse an operator-function-id or conversion-function-id as part
1049/// of a C++ unqualified-id.
1050///
1051/// This routine is responsible only for parsing the operator-function-id or
1052/// conversion-function-id; it does not handle template arguments in any way.
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001053///
1054/// \code
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001055/// operator-function-id: [C++ 13.5]
1056/// 'operator' operator
1057///
Douglas Gregorca1bdd72009-11-04 00:56:37 +00001058/// operator: one of
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001059/// new delete new[] delete[]
1060/// + - * / % ^ & | ~
1061/// ! = < > += -= *= /= %=
1062/// ^= &= |= << >> >>= <<= == !=
1063/// <= >= && || ++ -- , ->* ->
1064/// () []
1065///
1066/// conversion-function-id: [C++ 12.3.2]
1067/// operator conversion-type-id
1068///
1069/// conversion-type-id:
1070/// type-specifier-seq conversion-declarator[opt]
1071///
1072/// conversion-declarator:
1073/// ptr-operator conversion-declarator[opt]
1074/// \endcode
1075///
1076/// \param The nested-name-specifier that preceded this unqualified-id. If
1077/// non-empty, then we are parsing the unqualified-id of a qualified-id.
1078///
1079/// \param EnteringContext whether we are entering the scope of the
1080/// nested-name-specifier.
1081///
Douglas Gregorca1bdd72009-11-04 00:56:37 +00001082/// \param ObjectType if this unqualified-id occurs within a member access
1083/// expression, the type of the base object whose member is being accessed.
1084///
1085/// \param Result on a successful parse, contains the parsed unqualified-id.
1086///
1087/// \returns true if parsing fails, false otherwise.
1088bool Parser::ParseUnqualifiedIdOperator(CXXScopeSpec &SS, bool EnteringContext,
1089 TypeTy *ObjectType,
1090 UnqualifiedId &Result) {
1091 assert(Tok.is(tok::kw_operator) && "Expected 'operator' keyword");
1092
1093 // Consume the 'operator' keyword.
1094 SourceLocation KeywordLoc = ConsumeToken();
1095
1096 // Determine what kind of operator name we have.
1097 unsigned SymbolIdx = 0;
1098 SourceLocation SymbolLocations[3];
1099 OverloadedOperatorKind Op = OO_None;
1100 switch (Tok.getKind()) {
1101 case tok::kw_new:
1102 case tok::kw_delete: {
1103 bool isNew = Tok.getKind() == tok::kw_new;
1104 // Consume the 'new' or 'delete'.
1105 SymbolLocations[SymbolIdx++] = ConsumeToken();
1106 if (Tok.is(tok::l_square)) {
1107 // Consume the '['.
1108 SourceLocation LBracketLoc = ConsumeBracket();
1109 // Consume the ']'.
1110 SourceLocation RBracketLoc = MatchRHSPunctuation(tok::r_square,
1111 LBracketLoc);
1112 if (RBracketLoc.isInvalid())
1113 return true;
1114
1115 SymbolLocations[SymbolIdx++] = LBracketLoc;
1116 SymbolLocations[SymbolIdx++] = RBracketLoc;
1117 Op = isNew? OO_Array_New : OO_Array_Delete;
1118 } else {
1119 Op = isNew? OO_New : OO_Delete;
1120 }
1121 break;
1122 }
1123
1124#define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \
1125 case tok::Token: \
1126 SymbolLocations[SymbolIdx++] = ConsumeToken(); \
1127 Op = OO_##Name; \
1128 break;
1129#define OVERLOADED_OPERATOR_MULTI(Name,Spelling,Unary,Binary,MemberOnly)
1130#include "clang/Basic/OperatorKinds.def"
1131
1132 case tok::l_paren: {
1133 // Consume the '('.
1134 SourceLocation LParenLoc = ConsumeParen();
1135 // Consume the ')'.
1136 SourceLocation RParenLoc = MatchRHSPunctuation(tok::r_paren,
1137 LParenLoc);
1138 if (RParenLoc.isInvalid())
1139 return true;
1140
1141 SymbolLocations[SymbolIdx++] = LParenLoc;
1142 SymbolLocations[SymbolIdx++] = RParenLoc;
1143 Op = OO_Call;
1144 break;
1145 }
1146
1147 case tok::l_square: {
1148 // Consume the '['.
1149 SourceLocation LBracketLoc = ConsumeBracket();
1150 // Consume the ']'.
1151 SourceLocation RBracketLoc = MatchRHSPunctuation(tok::r_square,
1152 LBracketLoc);
1153 if (RBracketLoc.isInvalid())
1154 return true;
1155
1156 SymbolLocations[SymbolIdx++] = LBracketLoc;
1157 SymbolLocations[SymbolIdx++] = RBracketLoc;
1158 Op = OO_Subscript;
1159 break;
1160 }
1161
1162 case tok::code_completion: {
1163 // Code completion for the operator name.
1164 Actions.CodeCompleteOperatorName(CurScope);
1165
1166 // Consume the operator token.
1167 ConsumeToken();
1168
1169 // Don't try to parse any further.
1170 return true;
1171 }
1172
1173 default:
1174 break;
1175 }
1176
1177 if (Op != OO_None) {
1178 // We have parsed an operator-function-id.
1179 Result.setOperatorFunctionId(KeywordLoc, Op, SymbolLocations);
1180 return false;
1181 }
Sean Hunt0486d742009-11-28 04:44:28 +00001182
1183 // Parse a literal-operator-id.
1184 //
1185 // literal-operator-id: [C++0x 13.5.8]
1186 // operator "" identifier
1187
1188 if (getLang().CPlusPlus0x && Tok.is(tok::string_literal)) {
1189 if (Tok.getLength() != 2)
1190 Diag(Tok.getLocation(), diag::err_operator_string_not_empty);
1191 ConsumeStringToken();
1192
1193 if (Tok.isNot(tok::identifier)) {
1194 Diag(Tok.getLocation(), diag::err_expected_ident);
1195 return true;
1196 }
1197
1198 IdentifierInfo *II = Tok.getIdentifierInfo();
1199 Result.setLiteralOperatorId(II, KeywordLoc, ConsumeToken());
Sean Hunt3e518bd2009-11-29 07:34:05 +00001200 return false;
Sean Hunt0486d742009-11-28 04:44:28 +00001201 }
Douglas Gregorca1bdd72009-11-04 00:56:37 +00001202
1203 // Parse a conversion-function-id.
1204 //
1205 // conversion-function-id: [C++ 12.3.2]
1206 // operator conversion-type-id
1207 //
1208 // conversion-type-id:
1209 // type-specifier-seq conversion-declarator[opt]
1210 //
1211 // conversion-declarator:
1212 // ptr-operator conversion-declarator[opt]
1213
1214 // Parse the type-specifier-seq.
1215 DeclSpec DS;
Douglas Gregorf6e6fc82009-11-20 22:03:38 +00001216 if (ParseCXXTypeSpecifierSeq(DS)) // FIXME: ObjectType?
Douglas Gregorca1bdd72009-11-04 00:56:37 +00001217 return true;
1218
1219 // Parse the conversion-declarator, which is merely a sequence of
1220 // ptr-operators.
1221 Declarator D(DS, Declarator::TypeNameContext);
1222 ParseDeclaratorInternal(D, /*DirectDeclParser=*/0);
1223
1224 // Finish up the type.
1225 Action::TypeResult Ty = Actions.ActOnTypeName(CurScope, D);
1226 if (Ty.isInvalid())
1227 return true;
1228
1229 // Note that this is a conversion-function-id.
1230 Result.setConversionFunctionId(KeywordLoc, Ty.get(),
1231 D.getSourceRange().getEnd());
1232 return false;
1233}
1234
1235/// \brief Parse a C++ unqualified-id (or a C identifier), which describes the
1236/// name of an entity.
1237///
1238/// \code
1239/// unqualified-id: [C++ expr.prim.general]
1240/// identifier
1241/// operator-function-id
1242/// conversion-function-id
1243/// [C++0x] literal-operator-id [TODO]
1244/// ~ class-name
1245/// template-id
1246///
1247/// \endcode
1248///
1249/// \param The nested-name-specifier that preceded this unqualified-id. If
1250/// non-empty, then we are parsing the unqualified-id of a qualified-id.
1251///
1252/// \param EnteringContext whether we are entering the scope of the
1253/// nested-name-specifier.
1254///
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001255/// \param AllowDestructorName whether we allow parsing of a destructor name.
1256///
1257/// \param AllowConstructorName whether we allow parsing a constructor name.
1258///
Douglas Gregor46df8cc2009-11-03 21:24:04 +00001259/// \param ObjectType if this unqualified-id occurs within a member access
1260/// expression, the type of the base object whose member is being accessed.
1261///
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001262/// \param Result on a successful parse, contains the parsed unqualified-id.
1263///
1264/// \returns true if parsing fails, false otherwise.
1265bool Parser::ParseUnqualifiedId(CXXScopeSpec &SS, bool EnteringContext,
1266 bool AllowDestructorName,
1267 bool AllowConstructorName,
Douglas Gregor2d1c2142009-11-03 19:44:04 +00001268 TypeTy *ObjectType,
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001269 UnqualifiedId &Result) {
1270 // unqualified-id:
1271 // identifier
1272 // template-id (when it hasn't already been annotated)
1273 if (Tok.is(tok::identifier)) {
1274 // Consume the identifier.
1275 IdentifierInfo *Id = Tok.getIdentifierInfo();
1276 SourceLocation IdLoc = ConsumeToken();
1277
Douglas Gregorb862b8f2010-01-11 23:29:10 +00001278 if (!getLang().CPlusPlus) {
1279 // If we're not in C++, only identifiers matter. Record the
1280 // identifier and return.
1281 Result.setIdentifier(Id, IdLoc);
1282 return false;
1283 }
1284
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001285 if (AllowConstructorName &&
1286 Actions.isCurrentClassName(*Id, CurScope, &SS)) {
1287 // We have parsed a constructor name.
1288 Result.setConstructorName(Actions.getTypeName(*Id, IdLoc, CurScope,
1289 &SS, false),
1290 IdLoc, IdLoc);
1291 } else {
1292 // We have parsed an identifier.
1293 Result.setIdentifier(Id, IdLoc);
1294 }
1295
1296 // If the next token is a '<', we may have a template.
1297 if (Tok.is(tok::less))
1298 return ParseUnqualifiedIdTemplateId(SS, Id, IdLoc, EnteringContext,
Douglas Gregor2d1c2142009-11-03 19:44:04 +00001299 ObjectType, Result);
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001300
1301 return false;
1302 }
1303
1304 // unqualified-id:
1305 // template-id (already parsed and annotated)
1306 if (Tok.is(tok::annot_template_id)) {
Douglas Gregor0efc2c12010-01-13 17:31:36 +00001307 TemplateIdAnnotation *TemplateId
1308 = static_cast<TemplateIdAnnotation*>(Tok.getAnnotationValue());
1309
1310 // If the template-name names the current class, then this is a constructor
1311 if (AllowConstructorName && TemplateId->Name &&
1312 Actions.isCurrentClassName(*TemplateId->Name, CurScope, &SS)) {
1313 if (SS.isSet()) {
1314 // C++ [class.qual]p2 specifies that a qualified template-name
1315 // is taken as the constructor name where a constructor can be
1316 // declared. Thus, the template arguments are extraneous, so
1317 // complain about them and remove them entirely.
1318 Diag(TemplateId->TemplateNameLoc,
1319 diag::err_out_of_line_constructor_template_id)
1320 << TemplateId->Name
1321 << CodeModificationHint::CreateRemoval(
1322 SourceRange(TemplateId->LAngleLoc, TemplateId->RAngleLoc));
1323 Result.setConstructorName(Actions.getTypeName(*TemplateId->Name,
1324 TemplateId->TemplateNameLoc,
1325 CurScope,
1326 &SS, false),
1327 TemplateId->TemplateNameLoc,
1328 TemplateId->RAngleLoc);
1329 TemplateId->Destroy();
1330 ConsumeToken();
1331 return false;
1332 }
1333
1334 Result.setConstructorTemplateId(TemplateId);
1335 ConsumeToken();
1336 return false;
1337 }
1338
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001339 // We have already parsed a template-id; consume the annotation token as
1340 // our unqualified-id.
Douglas Gregor0efc2c12010-01-13 17:31:36 +00001341 Result.setTemplateId(TemplateId);
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001342 ConsumeToken();
1343 return false;
1344 }
1345
1346 // unqualified-id:
1347 // operator-function-id
1348 // conversion-function-id
1349 if (Tok.is(tok::kw_operator)) {
Douglas Gregorca1bdd72009-11-04 00:56:37 +00001350 if (ParseUnqualifiedIdOperator(SS, EnteringContext, ObjectType, Result))
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001351 return true;
1352
Sean Hunte6252d12009-11-28 08:58:14 +00001353 // If we have an operator-function-id or a literal-operator-id and the next
1354 // token is a '<', we may have a
Douglas Gregorca1bdd72009-11-04 00:56:37 +00001355 //
1356 // template-id:
1357 // operator-function-id < template-argument-list[opt] >
Sean Hunte6252d12009-11-28 08:58:14 +00001358 if ((Result.getKind() == UnqualifiedId::IK_OperatorFunctionId ||
1359 Result.getKind() == UnqualifiedId::IK_LiteralOperatorId) &&
Douglas Gregorca1bdd72009-11-04 00:56:37 +00001360 Tok.is(tok::less))
1361 return ParseUnqualifiedIdTemplateId(SS, 0, SourceLocation(),
1362 EnteringContext, ObjectType,
1363 Result);
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001364
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001365 return false;
1366 }
1367
Douglas Gregorb862b8f2010-01-11 23:29:10 +00001368 if (getLang().CPlusPlus &&
1369 (AllowDestructorName || SS.isSet()) && Tok.is(tok::tilde)) {
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001370 // C++ [expr.unary.op]p10:
1371 // There is an ambiguity in the unary-expression ~X(), where X is a
1372 // class-name. The ambiguity is resolved in favor of treating ~ as a
1373 // unary complement rather than treating ~X as referring to a destructor.
1374
1375 // Parse the '~'.
1376 SourceLocation TildeLoc = ConsumeToken();
1377
1378 // Parse the class-name.
1379 if (Tok.isNot(tok::identifier)) {
Douglas Gregor124b8782010-02-16 19:09:40 +00001380 Diag(Tok, diag::err_destructor_tilde_identifier);
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001381 return true;
1382 }
1383
1384 // Parse the class-name (or template-name in a simple-template-id).
1385 IdentifierInfo *ClassName = Tok.getIdentifierInfo();
1386 SourceLocation ClassNameLoc = ConsumeToken();
1387
Douglas Gregor2d1c2142009-11-03 19:44:04 +00001388 if (Tok.is(tok::less)) {
1389 Result.setDestructorName(TildeLoc, 0, ClassNameLoc);
1390 return ParseUnqualifiedIdTemplateId(SS, ClassName, ClassNameLoc,
1391 EnteringContext, ObjectType, Result);
1392 }
1393
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001394 // Note that this is a destructor name.
Douglas Gregor124b8782010-02-16 19:09:40 +00001395 Action::TypeTy *Ty = Actions.getDestructorName(TildeLoc, *ClassName,
1396 ClassNameLoc, CurScope,
1397 SS, ObjectType,
1398 EnteringContext);
1399 if (!Ty)
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001400 return true;
Douglas Gregor124b8782010-02-16 19:09:40 +00001401
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001402 Result.setDestructorName(TildeLoc, Ty, ClassNameLoc);
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001403 return false;
1404 }
1405
Douglas Gregor2d1c2142009-11-03 19:44:04 +00001406 Diag(Tok, diag::err_expected_unqualified_id)
1407 << getLang().CPlusPlus;
Douglas Gregor3f9a0562009-11-03 01:35:08 +00001408 return true;
1409}
1410
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001411/// ParseCXXNewExpression - Parse a C++ new-expression. New is used to allocate
1412/// memory in a typesafe manner and call constructors.
Mike Stump1eb44332009-09-09 15:08:12 +00001413///
Chris Lattner59232d32009-01-04 21:25:24 +00001414/// This method is called to parse the new expression after the optional :: has
1415/// been already parsed. If the :: was present, "UseGlobal" is true and "Start"
1416/// is its location. Otherwise, "Start" is the location of the 'new' token.
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001417///
1418/// new-expression:
1419/// '::'[opt] 'new' new-placement[opt] new-type-id
1420/// new-initializer[opt]
1421/// '::'[opt] 'new' new-placement[opt] '(' type-id ')'
1422/// new-initializer[opt]
1423///
1424/// new-placement:
1425/// '(' expression-list ')'
1426///
Sebastian Redlcee63fb2008-12-02 14:43:59 +00001427/// new-type-id:
1428/// type-specifier-seq new-declarator[opt]
1429///
1430/// new-declarator:
1431/// ptr-operator new-declarator[opt]
1432/// direct-new-declarator
1433///
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001434/// new-initializer:
1435/// '(' expression-list[opt] ')'
1436/// [C++0x] braced-init-list [TODO]
1437///
Chris Lattner59232d32009-01-04 21:25:24 +00001438Parser::OwningExprResult
1439Parser::ParseCXXNewExpression(bool UseGlobal, SourceLocation Start) {
1440 assert(Tok.is(tok::kw_new) && "expected 'new' token");
1441 ConsumeToken(); // Consume 'new'
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001442
1443 // A '(' now can be a new-placement or the '(' wrapping the type-id in the
1444 // second form of new-expression. It can't be a new-type-id.
1445
Sebastian Redla55e52c2008-11-25 22:21:31 +00001446 ExprVector PlacementArgs(Actions);
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001447 SourceLocation PlacementLParen, PlacementRParen;
1448
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001449 bool ParenTypeId;
Sebastian Redlcee63fb2008-12-02 14:43:59 +00001450 DeclSpec DS;
1451 Declarator DeclaratorInfo(DS, Declarator::TypeNameContext);
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001452 if (Tok.is(tok::l_paren)) {
1453 // If it turns out to be a placement, we change the type location.
1454 PlacementLParen = ConsumeParen();
Sebastian Redlcee63fb2008-12-02 14:43:59 +00001455 if (ParseExpressionListOrTypeId(PlacementArgs, DeclaratorInfo)) {
1456 SkipUntil(tok::semi, /*StopAtSemi=*/true, /*DontConsume=*/true);
Sebastian Redl20df9b72008-12-11 22:51:44 +00001457 return ExprError();
Sebastian Redlcee63fb2008-12-02 14:43:59 +00001458 }
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001459
1460 PlacementRParen = MatchRHSPunctuation(tok::r_paren, PlacementLParen);
Sebastian Redlcee63fb2008-12-02 14:43:59 +00001461 if (PlacementRParen.isInvalid()) {
1462 SkipUntil(tok::semi, /*StopAtSemi=*/true, /*DontConsume=*/true);
Sebastian Redl20df9b72008-12-11 22:51:44 +00001463 return ExprError();
Sebastian Redlcee63fb2008-12-02 14:43:59 +00001464 }
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001465
Sebastian Redlcee63fb2008-12-02 14:43:59 +00001466 if (PlacementArgs.empty()) {
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001467 // Reset the placement locations. There was no placement.
1468 PlacementLParen = PlacementRParen = SourceLocation();
1469 ParenTypeId = true;
1470 } else {
1471 // We still need the type.
1472 if (Tok.is(tok::l_paren)) {
Sebastian Redlcee63fb2008-12-02 14:43:59 +00001473 SourceLocation LParen = ConsumeParen();
1474 ParseSpecifierQualifierList(DS);
Sebastian Redlab197ba2009-02-09 18:23:29 +00001475 DeclaratorInfo.SetSourceRange(DS.getSourceRange());
Sebastian Redlcee63fb2008-12-02 14:43:59 +00001476 ParseDeclarator(DeclaratorInfo);
1477 MatchRHSPunctuation(tok::r_paren, LParen);
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001478 ParenTypeId = true;
1479 } else {
Sebastian Redlcee63fb2008-12-02 14:43:59 +00001480 if (ParseCXXTypeSpecifierSeq(DS))
1481 DeclaratorInfo.setInvalidType(true);
Sebastian Redlab197ba2009-02-09 18:23:29 +00001482 else {
1483 DeclaratorInfo.SetSourceRange(DS.getSourceRange());
Sebastian Redlcee63fb2008-12-02 14:43:59 +00001484 ParseDeclaratorInternal(DeclaratorInfo,
1485 &Parser::ParseDirectNewDeclarator);
Sebastian Redlab197ba2009-02-09 18:23:29 +00001486 }
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001487 ParenTypeId = false;
1488 }
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001489 }
1490 } else {
Sebastian Redlcee63fb2008-12-02 14:43:59 +00001491 // A new-type-id is a simplified type-id, where essentially the
1492 // direct-declarator is replaced by a direct-new-declarator.
1493 if (ParseCXXTypeSpecifierSeq(DS))
1494 DeclaratorInfo.setInvalidType(true);
Sebastian Redlab197ba2009-02-09 18:23:29 +00001495 else {
1496 DeclaratorInfo.SetSourceRange(DS.getSourceRange());
Sebastian Redlcee63fb2008-12-02 14:43:59 +00001497 ParseDeclaratorInternal(DeclaratorInfo,
1498 &Parser::ParseDirectNewDeclarator);
Sebastian Redlab197ba2009-02-09 18:23:29 +00001499 }
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001500 ParenTypeId = false;
1501 }
Chris Lattnereaaebc72009-04-25 08:06:05 +00001502 if (DeclaratorInfo.isInvalidType()) {
Sebastian Redlcee63fb2008-12-02 14:43:59 +00001503 SkipUntil(tok::semi, /*StopAtSemi=*/true, /*DontConsume=*/true);
Sebastian Redl20df9b72008-12-11 22:51:44 +00001504 return ExprError();
Sebastian Redlcee63fb2008-12-02 14:43:59 +00001505 }
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001506
Sebastian Redla55e52c2008-11-25 22:21:31 +00001507 ExprVector ConstructorArgs(Actions);
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001508 SourceLocation ConstructorLParen, ConstructorRParen;
1509
1510 if (Tok.is(tok::l_paren)) {
1511 ConstructorLParen = ConsumeParen();
1512 if (Tok.isNot(tok::r_paren)) {
1513 CommaLocsTy CommaLocs;
Sebastian Redlcee63fb2008-12-02 14:43:59 +00001514 if (ParseExpressionList(ConstructorArgs, CommaLocs)) {
1515 SkipUntil(tok::semi, /*StopAtSemi=*/true, /*DontConsume=*/true);
Sebastian Redl20df9b72008-12-11 22:51:44 +00001516 return ExprError();
Sebastian Redlcee63fb2008-12-02 14:43:59 +00001517 }
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001518 }
1519 ConstructorRParen = MatchRHSPunctuation(tok::r_paren, ConstructorLParen);
Sebastian Redlcee63fb2008-12-02 14:43:59 +00001520 if (ConstructorRParen.isInvalid()) {
1521 SkipUntil(tok::semi, /*StopAtSemi=*/true, /*DontConsume=*/true);
Sebastian Redl20df9b72008-12-11 22:51:44 +00001522 return ExprError();
Sebastian Redlcee63fb2008-12-02 14:43:59 +00001523 }
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001524 }
1525
Sebastian Redlf53597f2009-03-15 17:47:39 +00001526 return Actions.ActOnCXXNew(Start, UseGlobal, PlacementLParen,
1527 move_arg(PlacementArgs), PlacementRParen,
1528 ParenTypeId, DeclaratorInfo, ConstructorLParen,
1529 move_arg(ConstructorArgs), ConstructorRParen);
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001530}
1531
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001532/// ParseDirectNewDeclarator - Parses a direct-new-declarator. Intended to be
1533/// passed to ParseDeclaratorInternal.
1534///
1535/// direct-new-declarator:
1536/// '[' expression ']'
1537/// direct-new-declarator '[' constant-expression ']'
1538///
Chris Lattner59232d32009-01-04 21:25:24 +00001539void Parser::ParseDirectNewDeclarator(Declarator &D) {
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001540 // Parse the array dimensions.
1541 bool first = true;
1542 while (Tok.is(tok::l_square)) {
1543 SourceLocation LLoc = ConsumeBracket();
Sebastian Redl2f7ece72008-12-11 21:36:32 +00001544 OwningExprResult Size(first ? ParseExpression()
1545 : ParseConstantExpression());
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001546 if (Size.isInvalid()) {
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001547 // Recover
1548 SkipUntil(tok::r_square);
1549 return;
1550 }
1551 first = false;
1552
Sebastian Redlab197ba2009-02-09 18:23:29 +00001553 SourceLocation RLoc = MatchRHSPunctuation(tok::r_square, LLoc);
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001554 D.AddTypeInfo(DeclaratorChunk::getArray(0, /*static=*/false, /*star=*/false,
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +00001555 Size.release(), LLoc, RLoc),
Sebastian Redlab197ba2009-02-09 18:23:29 +00001556 RLoc);
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001557
Sebastian Redlab197ba2009-02-09 18:23:29 +00001558 if (RLoc.isInvalid())
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001559 return;
1560 }
1561}
1562
1563/// ParseExpressionListOrTypeId - Parse either an expression-list or a type-id.
1564/// This ambiguity appears in the syntax of the C++ new operator.
1565///
1566/// new-expression:
1567/// '::'[opt] 'new' new-placement[opt] '(' type-id ')'
1568/// new-initializer[opt]
1569///
1570/// new-placement:
1571/// '(' expression-list ')'
1572///
Sebastian Redlcee63fb2008-12-02 14:43:59 +00001573bool Parser::ParseExpressionListOrTypeId(ExprListTy &PlacementArgs,
Chris Lattner59232d32009-01-04 21:25:24 +00001574 Declarator &D) {
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001575 // The '(' was already consumed.
1576 if (isTypeIdInParens()) {
Sebastian Redlcee63fb2008-12-02 14:43:59 +00001577 ParseSpecifierQualifierList(D.getMutableDeclSpec());
Sebastian Redlab197ba2009-02-09 18:23:29 +00001578 D.SetSourceRange(D.getDeclSpec().getSourceRange());
Sebastian Redlcee63fb2008-12-02 14:43:59 +00001579 ParseDeclarator(D);
Chris Lattnereaaebc72009-04-25 08:06:05 +00001580 return D.isInvalidType();
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001581 }
1582
1583 // It's not a type, it has to be an expression list.
1584 // Discard the comma locations - ActOnCXXNew has enough parameters.
1585 CommaLocsTy CommaLocs;
1586 return ParseExpressionList(PlacementArgs, CommaLocs);
1587}
1588
1589/// ParseCXXDeleteExpression - Parse a C++ delete-expression. Delete is used
1590/// to free memory allocated by new.
1591///
Chris Lattner59232d32009-01-04 21:25:24 +00001592/// This method is called to parse the 'delete' expression after the optional
1593/// '::' has been already parsed. If the '::' was present, "UseGlobal" is true
1594/// and "Start" is its location. Otherwise, "Start" is the location of the
1595/// 'delete' token.
1596///
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001597/// delete-expression:
1598/// '::'[opt] 'delete' cast-expression
1599/// '::'[opt] 'delete' '[' ']' cast-expression
Chris Lattner59232d32009-01-04 21:25:24 +00001600Parser::OwningExprResult
1601Parser::ParseCXXDeleteExpression(bool UseGlobal, SourceLocation Start) {
1602 assert(Tok.is(tok::kw_delete) && "Expected 'delete' keyword");
1603 ConsumeToken(); // Consume 'delete'
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001604
1605 // Array delete?
1606 bool ArrayDelete = false;
1607 if (Tok.is(tok::l_square)) {
1608 ArrayDelete = true;
1609 SourceLocation LHS = ConsumeBracket();
1610 SourceLocation RHS = MatchRHSPunctuation(tok::r_square, LHS);
1611 if (RHS.isInvalid())
Sebastian Redl20df9b72008-12-11 22:51:44 +00001612 return ExprError();
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001613 }
1614
Sebastian Redl2f7ece72008-12-11 21:36:32 +00001615 OwningExprResult Operand(ParseCastExpression(false));
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001616 if (Operand.isInvalid())
Sebastian Redl20df9b72008-12-11 22:51:44 +00001617 return move(Operand);
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001618
Sebastian Redlf53597f2009-03-15 17:47:39 +00001619 return Actions.ActOnCXXDelete(Start, UseGlobal, ArrayDelete, move(Operand));
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001620}
Sebastian Redl64b45f72009-01-05 20:52:13 +00001621
Mike Stump1eb44332009-09-09 15:08:12 +00001622static UnaryTypeTrait UnaryTypeTraitFromTokKind(tok::TokenKind kind) {
Sebastian Redl64b45f72009-01-05 20:52:13 +00001623 switch(kind) {
1624 default: assert(false && "Not a known unary type trait.");
1625 case tok::kw___has_nothrow_assign: return UTT_HasNothrowAssign;
1626 case tok::kw___has_nothrow_copy: return UTT_HasNothrowCopy;
1627 case tok::kw___has_nothrow_constructor: return UTT_HasNothrowConstructor;
1628 case tok::kw___has_trivial_assign: return UTT_HasTrivialAssign;
1629 case tok::kw___has_trivial_copy: return UTT_HasTrivialCopy;
1630 case tok::kw___has_trivial_constructor: return UTT_HasTrivialConstructor;
1631 case tok::kw___has_trivial_destructor: return UTT_HasTrivialDestructor;
1632 case tok::kw___has_virtual_destructor: return UTT_HasVirtualDestructor;
1633 case tok::kw___is_abstract: return UTT_IsAbstract;
1634 case tok::kw___is_class: return UTT_IsClass;
1635 case tok::kw___is_empty: return UTT_IsEmpty;
1636 case tok::kw___is_enum: return UTT_IsEnum;
1637 case tok::kw___is_pod: return UTT_IsPOD;
1638 case tok::kw___is_polymorphic: return UTT_IsPolymorphic;
1639 case tok::kw___is_union: return UTT_IsUnion;
Sebastian Redlccf43502009-12-03 00:13:20 +00001640 case tok::kw___is_literal: return UTT_IsLiteral;
Sebastian Redl64b45f72009-01-05 20:52:13 +00001641 }
1642}
1643
1644/// ParseUnaryTypeTrait - Parse the built-in unary type-trait
1645/// pseudo-functions that allow implementation of the TR1/C++0x type traits
1646/// templates.
1647///
1648/// primary-expression:
1649/// [GNU] unary-type-trait '(' type-id ')'
1650///
Mike Stump1eb44332009-09-09 15:08:12 +00001651Parser::OwningExprResult Parser::ParseUnaryTypeTrait() {
Sebastian Redl64b45f72009-01-05 20:52:13 +00001652 UnaryTypeTrait UTT = UnaryTypeTraitFromTokKind(Tok.getKind());
1653 SourceLocation Loc = ConsumeToken();
1654
1655 SourceLocation LParen = Tok.getLocation();
1656 if (ExpectAndConsume(tok::l_paren, diag::err_expected_lparen))
1657 return ExprError();
1658
1659 // FIXME: Error reporting absolutely sucks! If the this fails to parse a type
1660 // there will be cryptic errors about mismatched parentheses and missing
1661 // specifiers.
Douglas Gregor809070a2009-02-18 17:45:20 +00001662 TypeResult Ty = ParseTypeName();
Sebastian Redl64b45f72009-01-05 20:52:13 +00001663
1664 SourceLocation RParen = MatchRHSPunctuation(tok::r_paren, LParen);
1665
Douglas Gregor809070a2009-02-18 17:45:20 +00001666 if (Ty.isInvalid())
1667 return ExprError();
1668
1669 return Actions.ActOnUnaryTypeTrait(UTT, Loc, LParen, Ty.get(), RParen);
Sebastian Redl64b45f72009-01-05 20:52:13 +00001670}
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00001671
1672/// ParseCXXAmbiguousParenExpression - We have parsed the left paren of a
1673/// parenthesized ambiguous type-id. This uses tentative parsing to disambiguate
1674/// based on the context past the parens.
1675Parser::OwningExprResult
1676Parser::ParseCXXAmbiguousParenExpression(ParenParseOption &ExprType,
1677 TypeTy *&CastTy,
1678 SourceLocation LParenLoc,
1679 SourceLocation &RParenLoc) {
1680 assert(getLang().CPlusPlus && "Should only be called for C++!");
1681 assert(ExprType == CastExpr && "Compound literals are not ambiguous!");
1682 assert(isTypeIdInParens() && "Not a type-id!");
1683
1684 OwningExprResult Result(Actions, true);
1685 CastTy = 0;
1686
1687 // We need to disambiguate a very ugly part of the C++ syntax:
1688 //
1689 // (T())x; - type-id
1690 // (T())*x; - type-id
1691 // (T())/x; - expression
1692 // (T()); - expression
1693 //
1694 // The bad news is that we cannot use the specialized tentative parser, since
1695 // it can only verify that the thing inside the parens can be parsed as
1696 // type-id, it is not useful for determining the context past the parens.
1697 //
1698 // The good news is that the parser can disambiguate this part without
Argyrios Kyrtzidisa558a892009-05-22 15:12:46 +00001699 // making any unnecessary Action calls.
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00001700 //
1701 // It uses a scheme similar to parsing inline methods. The parenthesized
1702 // tokens are cached, the context that follows is determined (possibly by
1703 // parsing a cast-expression), and then we re-introduce the cached tokens
1704 // into the token stream and parse them appropriately.
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00001705
Mike Stump1eb44332009-09-09 15:08:12 +00001706 ParenParseOption ParseAs;
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00001707 CachedTokens Toks;
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00001708
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00001709 // Store the tokens of the parentheses. We will parse them after we determine
1710 // the context that follows them.
1711 if (!ConsumeAndStoreUntil(tok::r_paren, tok::unknown, Toks, tok::semi)) {
1712 // We didn't find the ')' we expected.
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00001713 MatchRHSPunctuation(tok::r_paren, LParenLoc);
1714 return ExprError();
1715 }
1716
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00001717 if (Tok.is(tok::l_brace)) {
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00001718 ParseAs = CompoundLiteral;
1719 } else {
1720 bool NotCastExpr;
Eli Friedmanb53f08a2009-05-25 19:41:42 +00001721 // FIXME: Special-case ++ and --: "(S())++;" is not a cast-expression
1722 if (Tok.is(tok::l_paren) && NextToken().is(tok::r_paren)) {
1723 NotCastExpr = true;
1724 } else {
1725 // Try parsing the cast-expression that may follow.
1726 // If it is not a cast-expression, NotCastExpr will be true and no token
1727 // will be consumed.
1728 Result = ParseCastExpression(false/*isUnaryExpression*/,
1729 false/*isAddressofOperand*/,
Nate Begeman2ef13e52009-08-10 23:49:36 +00001730 NotCastExpr, false);
Eli Friedmanb53f08a2009-05-25 19:41:42 +00001731 }
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00001732
1733 // If we parsed a cast-expression, it's really a type-id, otherwise it's
1734 // an expression.
1735 ParseAs = NotCastExpr ? SimpleExpr : CastExpr;
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00001736 }
1737
Mike Stump1eb44332009-09-09 15:08:12 +00001738 // The current token should go after the cached tokens.
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00001739 Toks.push_back(Tok);
1740 // Re-enter the stored parenthesized tokens into the token stream, so we may
1741 // parse them now.
1742 PP.EnterTokenStream(Toks.data(), Toks.size(),
1743 true/*DisableMacroExpansion*/, false/*OwnsTokens*/);
1744 // Drop the current token and bring the first cached one. It's the same token
1745 // as when we entered this function.
1746 ConsumeAnyToken();
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00001747
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00001748 if (ParseAs >= CompoundLiteral) {
1749 TypeResult Ty = ParseTypeName();
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00001750
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00001751 // Match the ')'.
1752 if (Tok.is(tok::r_paren))
1753 RParenLoc = ConsumeParen();
1754 else
1755 MatchRHSPunctuation(tok::r_paren, LParenLoc);
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00001756
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00001757 if (ParseAs == CompoundLiteral) {
1758 ExprType = CompoundLiteral;
1759 return ParseCompoundLiteralExpression(Ty.get(), LParenLoc, RParenLoc);
1760 }
Mike Stump1eb44332009-09-09 15:08:12 +00001761
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00001762 // We parsed '(' type-id ')' and the thing after it wasn't a '{'.
1763 assert(ParseAs == CastExpr);
1764
1765 if (Ty.isInvalid())
1766 return ExprError();
1767
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00001768 CastTy = Ty.get();
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00001769
1770 // Result is what ParseCastExpression returned earlier.
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00001771 if (!Result.isInvalid())
Mike Stump1eb44332009-09-09 15:08:12 +00001772 Result = Actions.ActOnCastExpr(CurScope, LParenLoc, CastTy, RParenLoc,
Nate Begeman2ef13e52009-08-10 23:49:36 +00001773 move(Result));
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00001774 return move(Result);
1775 }
Mike Stump1eb44332009-09-09 15:08:12 +00001776
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00001777 // Not a compound literal, and not followed by a cast-expression.
1778 assert(ParseAs == SimpleExpr);
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00001779
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00001780 ExprType = SimpleExpr;
Argyrios Kyrtzidisf40882a2009-05-22 21:09:47 +00001781 Result = ParseExpression();
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00001782 if (!Result.isInvalid() && Tok.is(tok::r_paren))
1783 Result = Actions.ActOnParenExpr(LParenLoc, Tok.getLocation(), move(Result));
1784
1785 // Match the ')'.
1786 if (Result.isInvalid()) {
1787 SkipUntil(tok::r_paren);
1788 return ExprError();
1789 }
Mike Stump1eb44332009-09-09 15:08:12 +00001790
Argyrios Kyrtzidisf58f45e2009-05-22 10:24:42 +00001791 if (Tok.is(tok::r_paren))
1792 RParenLoc = ConsumeParen();
1793 else
1794 MatchRHSPunctuation(tok::r_paren, LParenLoc);
1795
1796 return move(Result);
1797}