blob: 4bb2bf2eba67a370f573f58d5ce143925a7bc88d [file] [log] [blame]
Chris Lattner7ad0fbe2006-11-05 07:46:30 +00001//===--- ParseExpr.cpp - Expression Parsing -------------------------------===//
Chris Lattnerc951dae2006-08-10 04:23:57 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner5b12ab82007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Chris Lattnerc951dae2006-08-10 04:23:57 +00007//
8//===----------------------------------------------------------------------===//
James Dennette37835e2012-06-19 21:02:26 +00009///
James Dennett3d5e4592012-06-17 04:36:28 +000010/// \file
11/// \brief Provides the Expression parsing implementation.
12///
13/// Expressions in C99 basically consist of a bunch of binary operators with
14/// unary operators and other random stuff at the leaves.
15///
16/// In the C99 grammar, these unary operators bind tightest and are represented
17/// as the 'cast-expression' production. Everything else is either a binary
18/// operator (e.g. '/') or a ternary operator ("?:"). The unary leaves are
19/// handled by ParseCastExpression, the higher level pieces are handled by
20/// ParseBinaryExpression.
James Dennette37835e2012-06-19 21:02:26 +000021///
22//===----------------------------------------------------------------------===//
Chris Lattnerc951dae2006-08-10 04:23:57 +000023
24#include "clang/Parse/Parser.h"
Chris Lattner8a9a97a2009-12-10 00:21:05 +000025#include "RAIIObjectsForParser.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000026#include "clang/Basic/PrettyStackTrace.h"
27#include "clang/Sema/DeclSpec.h"
28#include "clang/Sema/ParsedTemplate.h"
29#include "clang/Sema/Scope.h"
30#include "clang/Sema/TypoCorrection.h"
Chris Lattner834618d2006-11-03 07:48:41 +000031#include "llvm/ADT/SmallString.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000032#include "llvm/ADT/SmallVector.h"
Chris Lattnerc951dae2006-08-10 04:23:57 +000033using namespace clang;
34
James Dennett3d5e4592012-06-17 04:36:28 +000035/// \brief Simple precedence-based parser for binary/ternary operators.
Chris Lattnercde626a2006-08-12 08:13:25 +000036///
Chris Lattnerb7f1fc92006-08-12 16:45:01 +000037/// Note: we diverge from the C99 grammar when parsing the assignment-expression
38/// production. C99 specifies that the LHS of an assignment operator should be
39/// parsed as a unary-expression, but consistency dictates that it be a
40/// conditional-expession. In practice, the important thing here is that the
41/// LHS of an assignment has to be an l-value, which productions between
42/// unary-expression and conditional-expression don't produce. Because we want
43/// consistency, we parse the LHS as a conditional-expression, then check for
44/// l-value-ness in semantic analysis stages.
45///
James Dennett3d5e4592012-06-17 04:36:28 +000046/// \verbatim
Sebastian Redl112a97662009-02-07 00:15:38 +000047/// pm-expression: [C++ 5.5]
48/// cast-expression
49/// pm-expression '.*' cast-expression
50/// pm-expression '->*' cast-expression
51///
Chris Lattnercde626a2006-08-12 08:13:25 +000052/// multiplicative-expression: [C99 6.5.5]
Sebastian Redl112a97662009-02-07 00:15:38 +000053/// Note: in C++, apply pm-expression instead of cast-expression
Chris Lattnercde626a2006-08-12 08:13:25 +000054/// cast-expression
55/// multiplicative-expression '*' cast-expression
56/// multiplicative-expression '/' cast-expression
57/// multiplicative-expression '%' cast-expression
58///
59/// additive-expression: [C99 6.5.6]
60/// multiplicative-expression
61/// additive-expression '+' multiplicative-expression
62/// additive-expression '-' multiplicative-expression
63///
64/// shift-expression: [C99 6.5.7]
65/// additive-expression
66/// shift-expression '<<' additive-expression
67/// shift-expression '>>' additive-expression
68///
69/// relational-expression: [C99 6.5.8]
70/// shift-expression
71/// relational-expression '<' shift-expression
72/// relational-expression '>' shift-expression
73/// relational-expression '<=' shift-expression
74/// relational-expression '>=' shift-expression
75///
76/// equality-expression: [C99 6.5.9]
77/// relational-expression
78/// equality-expression '==' relational-expression
79/// equality-expression '!=' relational-expression
80///
81/// AND-expression: [C99 6.5.10]
82/// equality-expression
83/// AND-expression '&' equality-expression
84///
85/// exclusive-OR-expression: [C99 6.5.11]
86/// AND-expression
87/// exclusive-OR-expression '^' AND-expression
88///
89/// inclusive-OR-expression: [C99 6.5.12]
90/// exclusive-OR-expression
91/// inclusive-OR-expression '|' exclusive-OR-expression
92///
93/// logical-AND-expression: [C99 6.5.13]
94/// inclusive-OR-expression
95/// logical-AND-expression '&&' inclusive-OR-expression
96///
97/// logical-OR-expression: [C99 6.5.14]
98/// logical-AND-expression
99/// logical-OR-expression '||' logical-AND-expression
100///
101/// conditional-expression: [C99 6.5.15]
102/// logical-OR-expression
103/// logical-OR-expression '?' expression ':' conditional-expression
104/// [GNU] logical-OR-expression '?' ':' conditional-expression
Sebastian Redl1a99f442009-04-16 17:51:27 +0000105/// [C++] the third operand is an assignment-expression
Chris Lattnercde626a2006-08-12 08:13:25 +0000106///
107/// assignment-expression: [C99 6.5.16]
108/// conditional-expression
109/// unary-expression assignment-operator assignment-expression
Chris Lattnerb7e656b2008-02-26 00:51:44 +0000110/// [C++] throw-expression [C++ 15]
Chris Lattnercde626a2006-08-12 08:13:25 +0000111///
112/// assignment-operator: one of
113/// = *= /= %= += -= <<= >>= &= ^= |=
114///
115/// expression: [C99 6.5.17]
Douglas Gregor968f23a2011-01-03 19:31:53 +0000116/// assignment-expression ...[opt]
117/// expression ',' assignment-expression ...[opt]
James Dennett3d5e4592012-06-17 04:36:28 +0000118/// \endverbatim
Kaelyn Uhrain77e21fc2012-01-25 20:49:08 +0000119ExprResult Parser::ParseExpression(TypeCastState isTypeCast) {
120 ExprResult LHS(ParseAssignmentExpression(isTypeCast));
Benjamin Kramer62b95d82012-08-23 21:35:17 +0000121 return ParseRHSOfBinaryExpression(LHS, prec::Comma);
Chris Lattnercde626a2006-08-12 08:13:25 +0000122}
123
Mike Stump11289f42009-09-09 15:08:12 +0000124/// This routine is called when the '@' is seen and consumed.
Fariborz Jahanian62fd2b42007-09-19 19:14:32 +0000125/// Current token is an Identifier and is not a 'try'. This
James Dennettf44874f2012-06-15 06:52:33 +0000126/// routine is necessary to disambiguate \@try-statement from,
127/// for example, \@encode-expression.
Fariborz Jahanian62fd2b42007-09-19 19:14:32 +0000128///
John McCalldadc5752010-08-24 06:29:42 +0000129ExprResult
Sebastian Redl90893182008-12-11 22:33:27 +0000130Parser::ParseExpressionWithLeadingAt(SourceLocation AtLoc) {
John McCalldadc5752010-08-24 06:29:42 +0000131 ExprResult LHS(ParseObjCAtExpression(AtLoc));
Benjamin Kramer62b95d82012-08-23 21:35:17 +0000132 return ParseRHSOfBinaryExpression(LHS, prec::Comma);
Fariborz Jahanian62fd2b42007-09-19 19:14:32 +0000133}
134
Eli Friedmaneb3a9b02009-01-27 08:43:38 +0000135/// This routine is called when a leading '__extension__' is seen and
136/// consumed. This is necessary because the token gets consumed in the
137/// process of disambiguating between an expression and a declaration.
John McCalldadc5752010-08-24 06:29:42 +0000138ExprResult
Eli Friedmaneb3a9b02009-01-27 08:43:38 +0000139Parser::ParseExpressionWithLeadingExtension(SourceLocation ExtLoc) {
John McCalldadc5752010-08-24 06:29:42 +0000140 ExprResult LHS(true);
Eli Friedman15af3ee2009-05-16 23:40:44 +0000141 {
142 // Silence extension warnings in the sub-expression
143 ExtensionRAIIObject O(Diags);
144
145 LHS = ParseCastExpression(false);
Eli Friedman15af3ee2009-05-16 23:40:44 +0000146 }
Eli Friedmaneb3a9b02009-01-27 08:43:38 +0000147
Douglas Gregor29d907d2010-09-17 22:25:06 +0000148 if (!LHS.isInvalid())
149 LHS = Actions.ActOnUnaryOp(getCurScope(), ExtLoc, tok::kw___extension__,
150 LHS.take());
Eli Friedmaneb3a9b02009-01-27 08:43:38 +0000151
Benjamin Kramer62b95d82012-08-23 21:35:17 +0000152 return ParseRHSOfBinaryExpression(LHS, prec::Comma);
Eli Friedmaneb3a9b02009-01-27 08:43:38 +0000153}
154
James Dennett3d5e4592012-06-17 04:36:28 +0000155/// \brief Parse an expr that doesn't include (top-level) commas.
Kaelyn Uhrain77e21fc2012-01-25 20:49:08 +0000156ExprResult Parser::ParseAssignmentExpression(TypeCastState isTypeCast) {
Douglas Gregor504a6ae2010-01-10 23:08:15 +0000157 if (Tok.is(tok::code_completion)) {
Douglas Gregorda6c89d2011-04-27 06:18:01 +0000158 Actions.CodeCompleteOrdinaryName(getCurScope(), Sema::PCC_Expression);
Argyrios Kyrtzidis5cec2ae2011-09-04 03:32:15 +0000159 cutOffParsing();
160 return ExprError();
Douglas Gregor504a6ae2010-01-10 23:08:15 +0000161 }
162
Douglas Gregorda6c89d2011-04-27 06:18:01 +0000163 if (Tok.is(tok::kw_throw))
Sebastian Redld65cea82008-12-11 22:51:44 +0000164 return ParseThrowExpression();
Chris Lattnerb7e656b2008-02-26 00:51:44 +0000165
Kaelyn Uhrain77e21fc2012-01-25 20:49:08 +0000166 ExprResult LHS = ParseCastExpression(/*isUnaryExpression=*/false,
167 /*isAddressOfOperand=*/false,
168 isTypeCast);
Benjamin Kramer62b95d82012-08-23 21:35:17 +0000169 return ParseRHSOfBinaryExpression(LHS, prec::Assignment);
Chris Lattnerce7e21d2006-08-12 17:22:40 +0000170}
171
James Dennett3d5e4592012-06-17 04:36:28 +0000172/// \brief Parse an assignment expression where part of an Objective-C message
173/// send has already been parsed.
174///
175/// In this case \p LBracLoc indicates the location of the '[' of the message
176/// send, and either \p ReceiverName or \p ReceiverExpr is non-null indicating
177/// the receiver of the message.
Chris Lattnerfd2fe822008-06-02 21:31:07 +0000178///
179/// Since this handles full assignment-expression's, it handles postfix
180/// expressions and other binary operators for these expressions as well.
John McCalldadc5752010-08-24 06:29:42 +0000181ExprResult
Chris Lattnerfd2fe822008-06-02 21:31:07 +0000182Parser::ParseAssignmentExprWithObjCMessageExprStart(SourceLocation LBracLoc,
Douglas Gregor0c78ad92010-04-21 19:57:20 +0000183 SourceLocation SuperLoc,
John McCallba7bf592010-08-24 05:47:05 +0000184 ParsedType ReceiverType,
John McCallb268a282010-08-23 23:25:46 +0000185 Expr *ReceiverExpr) {
John McCalldadc5752010-08-24 06:29:42 +0000186 ExprResult R
John McCallb268a282010-08-23 23:25:46 +0000187 = ParseObjCMessageExpressionBody(LBracLoc, SuperLoc,
188 ReceiverType, ReceiverExpr);
Douglas Gregoreda7e542010-09-18 01:28:11 +0000189 R = ParsePostfixExpressionSuffix(R);
Douglas Gregor29d907d2010-09-17 22:25:06 +0000190 return ParseRHSOfBinaryExpression(R, prec::Assignment);
Chris Lattnerfd2fe822008-06-02 21:31:07 +0000191}
192
193
Kaelyn Uhrain01782002012-02-22 01:03:07 +0000194ExprResult Parser::ParseConstantExpression(TypeCastState isTypeCast) {
Richard Smith764d2fe2011-12-20 02:08:33 +0000195 // C++03 [basic.def.odr]p2:
Mike Stump11289f42009-09-09 15:08:12 +0000196 // An expression is potentially evaluated unless it appears where an
Douglas Gregorc9c02ed2009-06-19 23:52:42 +0000197 // integral constant expression is required (see 5.19) [...].
Richard Smith764d2fe2011-12-20 02:08:33 +0000198 // C++98 and C++11 have no such rule, but this is only a defect in C++98.
Douglas Gregor0b6a6242009-06-22 20:57:11 +0000199 EnterExpressionEvaluationContext Unevaluated(Actions,
Richard Smith764d2fe2011-12-20 02:08:33 +0000200 Sema::ConstantEvaluated);
Mike Stump11289f42009-09-09 15:08:12 +0000201
Kaelyn Uhrain01782002012-02-22 01:03:07 +0000202 ExprResult LHS(ParseCastExpression(false, false, isTypeCast));
Eli Friedmanc6237c62012-02-29 03:16:56 +0000203 ExprResult Res(ParseRHSOfBinaryExpression(LHS, prec::Conditional));
204 return Actions.ActOnConstantExpression(Res);
Chris Lattner3b561a32006-08-13 00:12:11 +0000205}
206
Richard Smith0875c532012-09-18 00:52:05 +0000207bool Parser::isNotExpressionStart() {
208 tok::TokenKind K = Tok.getKind();
209 if (K == tok::l_brace || K == tok::r_brace ||
210 K == tok::kw_for || K == tok::kw_while ||
211 K == tok::kw_if || K == tok::kw_else ||
212 K == tok::kw_goto || K == tok::kw_try)
213 return true;
214 // If this is a decl-specifier, we can't be at the start of an expression.
215 return isKnownToBeDeclarationSpecifier();
216}
217
James Dennett3d5e4592012-06-17 04:36:28 +0000218/// \brief Parse a binary expression that starts with \p LHS and has a
219/// precedence of at least \p MinPrec.
John McCalldadc5752010-08-24 06:29:42 +0000220ExprResult
221Parser::ParseRHSOfBinaryExpression(ExprResult LHS, prec::Level MinPrec) {
Douglas Gregor8d4de672010-04-21 22:36:40 +0000222 prec::Level NextTokPrec = getBinOpPrecedence(Tok.getKind(),
223 GreaterThanIsOperator,
Richard Smith2bf7fdb2013-01-02 11:42:31 +0000224 getLangOpts().CPlusPlus11);
Chris Lattner9b6d4cb2006-08-23 05:17:46 +0000225 SourceLocation ColonLoc;
226
Chris Lattnercde626a2006-08-12 08:13:25 +0000227 while (1) {
228 // If this token has a lower precedence than we are allowed to parse (e.g.
229 // because we are called recursively, or because the token is not a binop),
230 // then we are done!
Sebastian Redl17f2c7d2008-12-09 13:15:23 +0000231 if (NextTokPrec < MinPrec)
Benjamin Kramer62b95d82012-08-23 21:35:17 +0000232 return LHS;
Chris Lattnercde626a2006-08-12 08:13:25 +0000233
234 // Consume the operator, saving the operator token for error reporting.
Chris Lattner146762e2007-07-20 16:59:19 +0000235 Token OpToken = Tok;
Chris Lattnercde626a2006-08-12 08:13:25 +0000236 ConsumeToken();
Sebastian Redl112a97662009-02-07 00:15:38 +0000237
Richard Smith0875c532012-09-18 00:52:05 +0000238 // Bail out when encountering a comma followed by a token which can't
239 // possibly be the start of an expression. For instance:
240 // int f() { return 1, }
241 // We can't do this before consuming the comma, because
242 // isNotExpressionStart() looks at the token stream.
243 if (OpToken.is(tok::comma) && isNotExpressionStart()) {
244 PP.EnterToken(Tok);
245 Tok = OpToken;
246 return LHS;
247 }
248
Chris Lattner96c3deb2006-08-12 17:13:08 +0000249 // Special case handling for the ternary operator.
John McCalldadc5752010-08-24 06:29:42 +0000250 ExprResult TernaryMiddle(true);
Chris Lattner96c3deb2006-08-12 17:13:08 +0000251 if (NextTokPrec == prec::Conditional) {
Chris Lattnerfeb00b62007-10-09 17:41:39 +0000252 if (Tok.isNot(tok::colon)) {
Chris Lattner244b96b2009-12-10 02:02:58 +0000253 // Don't parse FOO:BAR as if it were a typo for FOO::BAR.
254 ColonProtectionRAIIObject X(*this);
255
Chris Lattner96c3deb2006-08-12 17:13:08 +0000256 // Handle this production specially:
257 // logical-OR-expression '?' expression ':' conditional-expression
258 // In particular, the RHS of the '?' is 'expression', not
259 // 'logical-OR-expression' as we might expect.
260 TernaryMiddle = ParseExpression();
Douglas Gregorec06c122010-09-17 22:41:34 +0000261 if (TernaryMiddle.isInvalid()) {
262 LHS = ExprError();
263 TernaryMiddle = 0;
264 }
Chris Lattner96c3deb2006-08-12 17:13:08 +0000265 } else {
266 // Special case handling of "X ? Y : Z" where Y is empty:
267 // logical-OR-expression '?' ':' conditional-expression [GNU]
Sebastian Redlc13f2682008-12-09 20:22:58 +0000268 TernaryMiddle = 0;
Chris Lattner96c3deb2006-08-12 17:13:08 +0000269 Diag(Tok, diag::ext_gnu_conditional_expr);
270 }
Sebastian Redl17f2c7d2008-12-09 13:15:23 +0000271
Chris Lattner0151b7e2010-04-20 21:33:39 +0000272 if (Tok.is(tok::colon)) {
273 // Eat the colon.
274 ColonLoc = ConsumeToken();
275 } else {
Chandler Carruth0b5cf7c2011-07-26 05:19:46 +0000276 // Otherwise, we're missing a ':'. Assume that this was a typo that
277 // the user forgot. If we're not in a macro expansion, we can suggest
278 // a fixit hint. If there were two spaces before the current token,
Chris Lattnerfb585152010-05-24 22:31:37 +0000279 // suggest inserting the colon in between them, otherwise insert ": ".
280 SourceLocation FILoc = Tok.getLocation();
281 const char *FIText = ": ";
Argyrios Kyrtzidis3ea4adb2011-06-24 17:28:29 +0000282 const SourceManager &SM = PP.getSourceManager();
Argyrios Kyrtzidis1b07c342012-01-19 15:59:08 +0000283 if (FILoc.isFileID() || PP.isAtStartOfMacroExpansion(FILoc, &FILoc)) {
284 assert(FILoc.isFileID());
Chris Lattnerfb585152010-05-24 22:31:37 +0000285 bool IsInvalid = false;
286 const char *SourcePtr =
Argyrios Kyrtzidise6e67de2011-09-19 20:40:19 +0000287 SM.getCharacterData(FILoc.getLocWithOffset(-1), &IsInvalid);
Chris Lattnerfb585152010-05-24 22:31:37 +0000288 if (!IsInvalid && *SourcePtr == ' ') {
289 SourcePtr =
Argyrios Kyrtzidise6e67de2011-09-19 20:40:19 +0000290 SM.getCharacterData(FILoc.getLocWithOffset(-2), &IsInvalid);
Chris Lattnerfb585152010-05-24 22:31:37 +0000291 if (!IsInvalid && *SourcePtr == ' ') {
Argyrios Kyrtzidise6e67de2011-09-19 20:40:19 +0000292 FILoc = FILoc.getLocWithOffset(-1);
Chris Lattnerfb585152010-05-24 22:31:37 +0000293 FIText = ":";
294 }
295 }
296 }
297
Ted Kremeneke6013652010-04-12 22:10:35 +0000298 Diag(Tok, diag::err_expected_colon)
Chris Lattnerfb585152010-05-24 22:31:37 +0000299 << FixItHint::CreateInsertion(FILoc, FIText);
Chris Lattner03c40412008-11-23 23:17:07 +0000300 Diag(OpToken, diag::note_matching) << "?";
Chris Lattner0151b7e2010-04-20 21:33:39 +0000301 ColonLoc = Tok.getLocation();
Chris Lattner96c3deb2006-08-12 17:13:08 +0000302 }
Chris Lattnercde626a2006-08-12 08:13:25 +0000303 }
Fariborz Jahanian9a14b842009-10-23 21:01:39 +0000304
Douglas Gregor7aa6b222010-05-30 01:49:25 +0000305 // Code completion for the right-hand side of an assignment expression
306 // goes through a special hook that takes the left-hand side into account.
307 if (Tok.is(tok::code_completion) && NextTokPrec == prec::Assignment) {
Douglas Gregor0be31a22010-07-02 17:43:08 +0000308 Actions.CodeCompleteAssignmentRHS(getCurScope(), LHS.get());
Argyrios Kyrtzidis5cec2ae2011-09-04 03:32:15 +0000309 cutOffParsing();
Douglas Gregor7aa6b222010-05-30 01:49:25 +0000310 return ExprError();
311 }
312
Chris Lattner96c3deb2006-08-12 17:13:08 +0000313 // Parse another leaf here for the RHS of the operator.
Sebastian Redl1a99f442009-04-16 17:51:27 +0000314 // ParseCastExpression works here because all RHS expressions in C have it
315 // as a prefix, at least. However, in C++, an assignment-expression could
316 // be a throw-expression, which is not a valid cast-expression.
317 // Therefore we need some special-casing here.
318 // Also note that the third operand of the conditional operator is
Richard Smith9a6403a2012-02-26 23:40:27 +0000319 // an assignment-expression in C++, and in C++11, we can have a
Richard Smith5e0cac72012-03-01 02:59:17 +0000320 // braced-init-list on the RHS of an assignment. For better diagnostics,
321 // parse as if we were allowed braced-init-lists everywhere, and check that
322 // they only appear on the RHS of assignments later.
John McCalldadc5752010-08-24 06:29:42 +0000323 ExprResult RHS;
Richard Smithebcd2352012-03-01 07:10:06 +0000324 bool RHSIsInitList = false;
Richard Smith2bf7fdb2013-01-02 11:42:31 +0000325 if (getLangOpts().CPlusPlus11 && Tok.is(tok::l_brace)) {
Richard Smith9a6403a2012-02-26 23:40:27 +0000326 RHS = ParseBraceInitializer();
Richard Smithebcd2352012-03-01 07:10:06 +0000327 RHSIsInitList = true;
David Blaikiebbafb8a2012-03-11 07:00:24 +0000328 } else if (getLangOpts().CPlusPlus && NextTokPrec <= prec::Conditional)
Sebastian Redl1a99f442009-04-16 17:51:27 +0000329 RHS = ParseAssignmentExpression();
Richard Smith5e0cac72012-03-01 02:59:17 +0000330 else
Sebastian Redl1a99f442009-04-16 17:51:27 +0000331 RHS = ParseCastExpression(false);
Chris Lattnercde626a2006-08-12 08:13:25 +0000332
Douglas Gregor29d907d2010-09-17 22:25:06 +0000333 if (RHS.isInvalid())
334 LHS = ExprError();
335
Chris Lattnercde626a2006-08-12 08:13:25 +0000336 // Remember the precedence of this operator and get the precedence of the
337 // operator immediately to the right of the RHS.
Douglas Gregor8d4de672010-04-21 22:36:40 +0000338 prec::Level ThisPrec = NextTokPrec;
Douglas Gregorcbb45d02009-02-25 23:02:36 +0000339 NextTokPrec = getBinOpPrecedence(Tok.getKind(), GreaterThanIsOperator,
Richard Smith2bf7fdb2013-01-02 11:42:31 +0000340 getLangOpts().CPlusPlus11);
Chris Lattner89d53752006-08-12 17:18:19 +0000341
342 // Assignment and conditional expressions are right-associative.
Chris Lattnerdcb7cc52007-12-18 06:06:23 +0000343 bool isRightAssoc = ThisPrec == prec::Conditional ||
344 ThisPrec == prec::Assignment;
Chris Lattnercde626a2006-08-12 08:13:25 +0000345
346 // Get the precedence of the operator to the right of the RHS. If it binds
347 // more tightly with RHS than we do, evaluate it completely first.
Chris Lattnercde626a2006-08-12 08:13:25 +0000348 if (ThisPrec < NextTokPrec ||
349 (ThisPrec == NextTokPrec && isRightAssoc)) {
Richard Smithebcd2352012-03-01 07:10:06 +0000350 if (!RHS.isInvalid() && RHSIsInitList) {
351 Diag(Tok, diag::err_init_list_bin_op)
352 << /*LHS*/0 << PP.getSpelling(Tok) << Actions.getExprRange(RHS.get());
353 RHS = ExprError();
Richard Smith5e0cac72012-03-01 02:59:17 +0000354 }
Chris Lattner89d53752006-08-12 17:18:19 +0000355 // If this is left-associative, only parse things on the RHS that bind
356 // more tightly than the current operator. If it is left-associative, it
357 // is okay, to bind exactly as tightly. For example, compile A=B=C=D as
358 // A=(B=(C=D)), where each paren is a level of recursion here.
Sebastian Redl511ed552008-11-25 22:21:31 +0000359 // The function takes ownership of the RHS.
Douglas Gregor29d907d2010-09-17 22:25:06 +0000360 RHS = ParseRHSOfBinaryExpression(RHS,
Douglas Gregor8d4de672010-04-21 22:36:40 +0000361 static_cast<prec::Level>(ThisPrec + !isRightAssoc));
Richard Smithebcd2352012-03-01 07:10:06 +0000362 RHSIsInitList = false;
Douglas Gregor29d907d2010-09-17 22:25:06 +0000363
Sebastian Redl17f2c7d2008-12-09 13:15:23 +0000364 if (RHS.isInvalid())
Douglas Gregor29d907d2010-09-17 22:25:06 +0000365 LHS = ExprError();
Chris Lattnercde626a2006-08-12 08:13:25 +0000366
Douglas Gregorcbb45d02009-02-25 23:02:36 +0000367 NextTokPrec = getBinOpPrecedence(Tok.getKind(), GreaterThanIsOperator,
Richard Smith2bf7fdb2013-01-02 11:42:31 +0000368 getLangOpts().CPlusPlus11);
Chris Lattnercde626a2006-08-12 08:13:25 +0000369 }
370 assert(NextTokPrec <= ThisPrec && "Recursion didn't work!");
Sebastian Redl511ed552008-11-25 22:21:31 +0000371
Richard Smithebcd2352012-03-01 07:10:06 +0000372 if (!RHS.isInvalid() && RHSIsInitList) {
Richard Smith5e0cac72012-03-01 02:59:17 +0000373 if (ThisPrec == prec::Assignment) {
374 Diag(OpToken, diag::warn_cxx98_compat_generalized_initializer_lists)
Richard Smithebcd2352012-03-01 07:10:06 +0000375 << Actions.getExprRange(RHS.get());
Richard Smith5e0cac72012-03-01 02:59:17 +0000376 } else {
377 Diag(OpToken, diag::err_init_list_bin_op)
Richard Smithebcd2352012-03-01 07:10:06 +0000378 << /*RHS*/1 << PP.getSpelling(OpToken)
379 << Actions.getExprRange(RHS.get());
Richard Smith5e0cac72012-03-01 02:59:17 +0000380 LHS = ExprError();
381 }
382 }
383
Sebastian Redl17f2c7d2008-12-09 13:15:23 +0000384 if (!LHS.isInvalid()) {
Chris Lattner319079c2007-08-31 05:01:50 +0000385 // Combine the LHS and RHS into the LHS (e.g. build AST).
Douglas Gregor87f95b02009-02-26 21:00:50 +0000386 if (TernaryMiddle.isInvalid()) {
387 // If we're using '>>' as an operator within a template
388 // argument list (in C++98), suggest the addition of
389 // parentheses so that the code remains well-formed in C++0x.
390 if (!GreaterThanIsOperator && OpToken.is(tok::greatergreater))
391 SuggestParentheses(OpToken.getLocation(),
392 diag::warn_cxx0x_right_shift_in_template_arg,
393 SourceRange(Actions.getExprRange(LHS.get()).getBegin(),
394 Actions.getExprRange(RHS.get()).getEnd()));
395
Douglas Gregor0be31a22010-07-02 17:43:08 +0000396 LHS = Actions.ActOnBinOp(getCurScope(), OpToken.getLocation(),
John McCallb268a282010-08-23 23:25:46 +0000397 OpToken.getKind(), LHS.take(), RHS.take());
Douglas Gregor87f95b02009-02-26 21:00:50 +0000398 } else
Steve Naroff83895f72007-09-16 03:34:24 +0000399 LHS = Actions.ActOnConditionalOp(OpToken.getLocation(), ColonLoc,
John McCallb268a282010-08-23 23:25:46 +0000400 LHS.take(), TernaryMiddle.take(),
401 RHS.take());
Chris Lattner319079c2007-08-31 05:01:50 +0000402 }
Chris Lattnercde626a2006-08-12 08:13:25 +0000403 }
404}
405
James Dennett3d5e4592012-06-17 04:36:28 +0000406/// \brief Parse a cast-expression, or, if \p isUnaryExpression is true,
407/// parse a unary-expression.
408///
409/// \p isAddressOfOperand exists because an id-expression that is the
410/// operand of address-of gets special treatment due to member pointers.
Chris Lattnereaf06592006-08-11 02:02:23 +0000411///
John McCalldadc5752010-08-24 06:29:42 +0000412ExprResult Parser::ParseCastExpression(bool isUnaryExpression,
Douglas Gregor0e7dde52011-04-24 05:37:28 +0000413 bool isAddressOfOperand,
Kaelyn Uhrain77e21fc2012-01-25 20:49:08 +0000414 TypeCastState isTypeCast) {
Argyrios Kyrtzidis12179bc2009-05-22 10:24:42 +0000415 bool NotCastExpr;
John McCalldadc5752010-08-24 06:29:42 +0000416 ExprResult Res = ParseCastExpression(isUnaryExpression,
Douglas Gregor29d907d2010-09-17 22:25:06 +0000417 isAddressOfOperand,
418 NotCastExpr,
Argyrios Kyrtzidis7192a3b2011-07-01 22:22:59 +0000419 isTypeCast);
Argyrios Kyrtzidis12179bc2009-05-22 10:24:42 +0000420 if (NotCastExpr)
421 Diag(Tok, diag::err_expected_expression);
Benjamin Kramer62b95d82012-08-23 21:35:17 +0000422 return Res;
Argyrios Kyrtzidis12179bc2009-05-22 10:24:42 +0000423}
424
Kaelyn Uhrain77e21fc2012-01-25 20:49:08 +0000425namespace {
426class CastExpressionIdValidator : public CorrectionCandidateCallback {
427 public:
428 CastExpressionIdValidator(bool AllowTypes, bool AllowNonTypes)
429 : AllowNonTypes(AllowNonTypes) {
430 WantTypeSpecifiers = AllowTypes;
431 }
432
433 virtual bool ValidateCandidate(const TypoCorrection &candidate) {
434 NamedDecl *ND = candidate.getCorrectionDecl();
435 if (!ND)
436 return candidate.isKeyword();
437
438 if (isa<TypeDecl>(ND))
439 return WantTypeSpecifiers;
440 return AllowNonTypes;
441 }
442
443 private:
444 bool AllowNonTypes;
445};
446}
447
James Dennett3d5e4592012-06-17 04:36:28 +0000448/// \brief Parse a cast-expression, or, if \pisUnaryExpression is true, parse
449/// a unary-expression.
Argyrios Kyrtzidis12179bc2009-05-22 10:24:42 +0000450///
James Dennett3d5e4592012-06-17 04:36:28 +0000451/// \p isAddressOfOperand exists because an id-expression that is the operand
452/// of address-of gets special treatment due to member pointers. NotCastExpr
453/// is set to true if the token is not the start of a cast-expression, and no
454/// diagnostic is emitted in this case.
455///
456/// \verbatim
Chris Lattner4564bc12006-08-10 23:14:52 +0000457/// cast-expression: [C99 6.5.4]
458/// unary-expression
459/// '(' type-name ')' cast-expression
Chris Lattner81b576e2006-08-11 02:13:20 +0000460///
Chris Lattnerc2dd85a2006-08-10 22:57:16 +0000461/// unary-expression: [C99 6.5.3]
462/// postfix-expression
463/// '++' unary-expression
464/// '--' unary-expression
465/// unary-operator cast-expression
466/// 'sizeof' unary-expression
467/// 'sizeof' '(' type-name ')'
Richard Smithd67aea22012-03-06 03:21:47 +0000468/// [C++11] 'sizeof' '...' '(' identifier ')'
Chris Lattnerc2dd85a2006-08-10 22:57:16 +0000469/// [GNU] '__alignof' unary-expression
470/// [GNU] '__alignof' '(' type-name ')'
Jordan Rose58d54722012-06-30 21:33:57 +0000471/// [C11] '_Alignof' '(' type-name ')'
Richard Smithd67aea22012-03-06 03:21:47 +0000472/// [C++11] 'alignof' '(' type-id ')'
Chris Lattnerc2dd85a2006-08-10 22:57:16 +0000473/// [GNU] '&&' identifier
Richard Smithd67aea22012-03-06 03:21:47 +0000474/// [C++11] 'noexcept' '(' expression ')' [C++11 5.3.7]
Sebastian Redlbd150f42008-11-21 19:14:01 +0000475/// [C++] new-expression
476/// [C++] delete-expression
Chris Lattner81b576e2006-08-11 02:13:20 +0000477///
Chris Lattnerc2dd85a2006-08-10 22:57:16 +0000478/// unary-operator: one of
479/// '&' '*' '+' '-' '~' '!'
480/// [GNU] '__extension__' '__real' '__imag'
481///
Chris Lattner52a99e52006-08-10 20:56:00 +0000482/// primary-expression: [C99 6.5.1]
Douglas Gregor11d0c4c2008-11-06 22:13:31 +0000483/// [C99] identifier
Sebastian Redlc4704762008-11-11 11:37:55 +0000484/// [C++] id-expression
Chris Lattnerc5e0d4a2006-08-10 19:06:03 +0000485/// constant
486/// string-literal
Bill Wendling4073ed52007-02-13 01:51:42 +0000487/// [C++] boolean-literal [C++ 2.13.5]
Richard Smithd67aea22012-03-06 03:21:47 +0000488/// [C++11] 'nullptr' [C++11 2.14.7]
489/// [C++11] user-defined-literal
Chris Lattnerc5e0d4a2006-08-10 19:06:03 +0000490/// '(' expression ')'
Benjamin Kramere56f3932011-12-23 17:00:35 +0000491/// [C11] generic-selection
Chris Lattner52a99e52006-08-10 20:56:00 +0000492/// '__func__' [C99 6.4.2.2]
493/// [GNU] '__FUNCTION__'
494/// [GNU] '__PRETTY_FUNCTION__'
495/// [GNU] '(' compound-statement ')'
496/// [GNU] '__builtin_va_arg' '(' assignment-expression ',' type-name ')'
497/// [GNU] '__builtin_offsetof' '(' type-name ',' offsetof-member-designator')'
498/// [GNU] '__builtin_choose_expr' '(' assign-expr ',' assign-expr ','
499/// assign-expr ')'
500/// [GNU] '__builtin_types_compatible_p' '(' type-name ',' type-name ')'
Douglas Gregor3be4b122008-11-29 04:51:27 +0000501/// [GNU] '__null'
Mike Stump11289f42009-09-09 15:08:12 +0000502/// [OBJC] '[' objc-message-expr ']'
James Dennettf44874f2012-06-15 06:52:33 +0000503/// [OBJC] '\@selector' '(' objc-selector-arg ')'
504/// [OBJC] '\@protocol' '(' identifier ')'
505/// [OBJC] '\@encode' '(' type-name ')'
Fariborz Jahanian7db004d2007-09-05 19:52:07 +0000506/// [OBJC] objc-string-literal
Argyrios Kyrtzidis857fcc22008-08-22 15:38:55 +0000507/// [C++] simple-type-specifier '(' expression-list[opt] ')' [C++ 5.2.3]
Richard Smithd67aea22012-03-06 03:21:47 +0000508/// [C++11] simple-type-specifier braced-init-list [C++11 5.2.3]
Douglas Gregor0c78ad92010-04-21 19:57:20 +0000509/// [C++] typename-specifier '(' expression-list[opt] ')' [C++ 5.2.3]
Richard Smithd67aea22012-03-06 03:21:47 +0000510/// [C++11] typename-specifier braced-init-list [C++11 5.2.3]
Bill Wendlinga6930032007-06-29 18:21:34 +0000511/// [C++] 'const_cast' '<' type-name '>' '(' expression ')' [C++ 5.2p1]
512/// [C++] 'dynamic_cast' '<' type-name '>' '(' expression ')' [C++ 5.2p1]
513/// [C++] 'reinterpret_cast' '<' type-name '>' '(' expression ')' [C++ 5.2p1]
514/// [C++] 'static_cast' '<' type-name '>' '(' expression ')' [C++ 5.2p1]
Sebastian Redlc4704762008-11-11 11:37:55 +0000515/// [C++] 'typeid' '(' expression ')' [C++ 5.2p1]
516/// [C++] 'typeid' '(' type-id ')' [C++ 5.2p1]
Argyrios Kyrtzidis16c04102008-07-16 07:23:27 +0000517/// [C++] 'this' [C++ 9.3.2]
Sebastian Redlbaad4e72009-01-05 20:52:13 +0000518/// [G++] unary-type-trait '(' type-id ')'
519/// [G++] binary-type-trait '(' type-id ',' type-id ')' [TODO]
John Wiegley6242b6a2011-04-28 00:16:57 +0000520/// [EMBT] array-type-trait '(' type-id ',' integer ')'
Steve Naroff0ac012832008-08-28 19:20:44 +0000521/// [clang] '^' block-literal
Chris Lattner52a99e52006-08-10 20:56:00 +0000522///
523/// constant: [C99 6.4.4]
524/// integer-constant
525/// floating-constant
526/// enumeration-constant -> identifier
527/// character-constant
Chris Lattner52a99e52006-08-10 20:56:00 +0000528///
Douglas Gregor11d0c4c2008-11-06 22:13:31 +0000529/// id-expression: [C++ 5.1]
530/// unqualified-id
Douglas Gregor0c78ad92010-04-21 19:57:20 +0000531/// qualified-id
Douglas Gregor11d0c4c2008-11-06 22:13:31 +0000532///
533/// unqualified-id: [C++ 5.1]
534/// identifier
535/// operator-function-id
Douglas Gregor0c78ad92010-04-21 19:57:20 +0000536/// conversion-function-id
537/// '~' class-name
538/// template-id
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +0000539///
Sebastian Redlbd150f42008-11-21 19:14:01 +0000540/// new-expression: [C++ 5.3.4]
541/// '::'[opt] 'new' new-placement[opt] new-type-id
542/// new-initializer[opt]
543/// '::'[opt] 'new' new-placement[opt] '(' type-id ')'
544/// new-initializer[opt]
545///
546/// delete-expression: [C++ 5.3.5]
547/// '::'[opt] 'delete' cast-expression
548/// '::'[opt] 'delete' '[' ']' cast-expression
549///
John Wiegley65497cc2011-04-27 23:09:49 +0000550/// [GNU/Embarcadero] unary-type-trait:
551/// '__is_arithmetic'
552/// '__is_floating_point'
553/// '__is_integral'
554/// '__is_lvalue_expr'
555/// '__is_rvalue_expr'
556/// '__is_complete_type'
557/// '__is_void'
558/// '__is_array'
559/// '__is_function'
560/// '__is_reference'
561/// '__is_lvalue_reference'
562/// '__is_rvalue_reference'
563/// '__is_fundamental'
564/// '__is_object'
565/// '__is_scalar'
566/// '__is_compound'
567/// '__is_pointer'
568/// '__is_member_object_pointer'
569/// '__is_member_function_pointer'
570/// '__is_member_pointer'
571/// '__is_const'
572/// '__is_volatile'
573/// '__is_trivial'
574/// '__is_standard_layout'
575/// '__is_signed'
576/// '__is_unsigned'
577///
Sebastian Redlbaad4e72009-01-05 20:52:13 +0000578/// [GNU] unary-type-trait:
Sebastian Redl7dcb1552010-08-31 04:59:00 +0000579/// '__has_nothrow_assign'
580/// '__has_nothrow_copy'
581/// '__has_nothrow_constructor'
Sebastian Redlbaad4e72009-01-05 20:52:13 +0000582/// '__has_trivial_assign' [TODO]
583/// '__has_trivial_copy' [TODO]
Anders Carlssonfe63dc52009-04-16 00:08:20 +0000584/// '__has_trivial_constructor'
Anders Carlsson6dc35752009-04-17 02:34:54 +0000585/// '__has_trivial_destructor'
Sebastian Redlb469afb2010-09-02 23:19:42 +0000586/// '__has_virtual_destructor'
Sebastian Redlbaad4e72009-01-05 20:52:13 +0000587/// '__is_abstract' [TODO]
588/// '__is_class'
589/// '__is_empty' [TODO]
590/// '__is_enum'
Douglas Gregordca70af2011-12-03 18:14:24 +0000591/// '__is_final'
Sebastian Redlbaad4e72009-01-05 20:52:13 +0000592/// '__is_pod'
593/// '__is_polymorphic'
Chandler Carrutha3e1f9a2011-04-23 10:47:28 +0000594/// '__is_trivial'
Sebastian Redlbaad4e72009-01-05 20:52:13 +0000595/// '__is_union'
596///
Alexis Huntd9a5cc12011-05-13 00:31:07 +0000597/// [Clang] unary-type-trait:
598/// '__trivially_copyable'
599///
Douglas Gregor8006e762011-01-27 20:28:01 +0000600/// binary-type-trait:
601/// [GNU] '__is_base_of'
602/// [MS] '__is_convertible_to'
John Wiegley65497cc2011-04-27 23:09:49 +0000603/// '__is_convertible'
604/// '__is_same'
Sebastian Redlbaad4e72009-01-05 20:52:13 +0000605///
John Wiegley6242b6a2011-04-28 00:16:57 +0000606/// [Embarcadero] array-type-trait:
607/// '__array_rank'
608/// '__array_extent'
609///
John Wiegleyf9f65842011-04-25 06:54:41 +0000610/// [Embarcadero] expression-trait:
611/// '__is_lvalue_expr'
612/// '__is_rvalue_expr'
James Dennett3d5e4592012-06-17 04:36:28 +0000613/// \endverbatim
John Wiegleyf9f65842011-04-25 06:54:41 +0000614///
John McCalldadc5752010-08-24 06:29:42 +0000615ExprResult Parser::ParseCastExpression(bool isUnaryExpression,
Sebastian Redl22e3a932010-09-10 20:55:37 +0000616 bool isAddressOfOperand,
617 bool &NotCastExpr,
Kaelyn Uhrain77e21fc2012-01-25 20:49:08 +0000618 TypeCastState isTypeCast) {
John McCalldadc5752010-08-24 06:29:42 +0000619 ExprResult Res;
Chris Lattner0ba3dc42006-10-25 03:38:23 +0000620 tok::TokenKind SavedKind = Tok.getKind();
Argyrios Kyrtzidis12179bc2009-05-22 10:24:42 +0000621 NotCastExpr = false;
Mike Stump11289f42009-09-09 15:08:12 +0000622
Chris Lattner81b576e2006-08-11 02:13:20 +0000623 // This handles all of cast-expression, unary-expression, postfix-expression,
624 // and primary-expression. We handle them together like this for efficiency
625 // and to simplify handling of an expression starting with a '(' token: which
626 // may be one of a parenthesized expression, cast-expression, compound literal
627 // expression, or statement expression.
628 //
629 // If the parsed tokens consist of a primary-expression, the cases below
John McCallb268a282010-08-23 23:25:46 +0000630 // break out of the switch; at the end we call ParsePostfixExpressionSuffix
631 // to handle the postfix expression suffixes. Cases that cannot be followed
632 // by postfix exprs should return without invoking
633 // ParsePostfixExpressionSuffix.
Chris Lattnerae319692006-10-25 03:49:28 +0000634 switch (SavedKind) {
Chris Lattnere550a4e2006-08-24 06:37:51 +0000635 case tok::l_paren: {
Chris Lattner81b576e2006-08-11 02:13:20 +0000636 // If this expression is limited to being a unary-expression, the parent can
637 // not start a cast expression.
638 ParenParseOption ParenExprType =
David Blaikiebbafb8a2012-03-11 07:00:24 +0000639 (isUnaryExpression && !getLangOpts().CPlusPlus)? CompoundLiteral : CastExpr;
John McCallba7bf592010-08-24 05:47:05 +0000640 ParsedType CastTy;
Chris Lattnere550a4e2006-08-24 06:37:51 +0000641 SourceLocation RParenLoc;
Chris Lattner3c674cf2009-12-10 02:08:07 +0000642
643 {
Douglas Gregore9bba4f2010-09-15 14:51:05 +0000644 // The inside of the parens don't need to be a colon protected scope, and
645 // isn't immediately a message send.
Chris Lattner3c674cf2009-12-10 02:08:07 +0000646 ColonProtectionRAIIObject X(*this, false);
Douglas Gregore9bba4f2010-09-15 14:51:05 +0000647
Chris Lattner3c674cf2009-12-10 02:08:07 +0000648 Res = ParseParenExpression(ParenExprType, false/*stopIfCastExr*/,
Kaelyn Uhrain77e21fc2012-01-25 20:49:08 +0000649 isTypeCast == IsTypeCast, CastTy, RParenLoc);
Chris Lattner3c674cf2009-12-10 02:08:07 +0000650 }
Mike Stump11289f42009-09-09 15:08:12 +0000651
Chris Lattner81b576e2006-08-11 02:13:20 +0000652 switch (ParenExprType) {
653 case SimpleExpr: break; // Nothing else to do.
654 case CompoundStmt: break; // Nothing else to do.
655 case CompoundLiteral:
656 // We parsed '(' type-name ')' '{' ... '}'. If any suffixes of
657 // postfix-expression exist, parse them now.
658 break;
659 case CastExpr:
Argyrios Kyrtzidis9a9c0f42009-05-22 10:23:40 +0000660 // We have parsed the cast-expression and no postfix-expr pieces are
661 // following.
Benjamin Kramer62b95d82012-08-23 21:35:17 +0000662 return Res;
Chris Lattner81b576e2006-08-11 02:13:20 +0000663 }
Sebastian Redl17f2c7d2008-12-09 13:15:23 +0000664
John McCallb268a282010-08-23 23:25:46 +0000665 break;
Chris Lattnere550a4e2006-08-24 06:37:51 +0000666 }
Sebastian Redl17f2c7d2008-12-09 13:15:23 +0000667
Chris Lattner52a99e52006-08-10 20:56:00 +0000668 // primary-expression
Chris Lattner9b6d4cb2006-08-23 05:17:46 +0000669 case tok::numeric_constant:
670 // constant: integer-constant
671 // constant: floating-constant
Sebastian Redl59b5e512008-12-11 21:36:32 +0000672
Richard Smithbcc22fc2012-03-09 08:00:36 +0000673 Res = Actions.ActOnNumericConstant(Tok, /*UDLScope*/getCurScope());
Chris Lattner9b6d4cb2006-08-23 05:17:46 +0000674 ConsumeToken();
John McCallb268a282010-08-23 23:25:46 +0000675 break;
Chris Lattner9b6d4cb2006-08-23 05:17:46 +0000676
Bill Wendling4073ed52007-02-13 01:51:42 +0000677 case tok::kw_true:
678 case tok::kw_false:
Sebastian Redld65cea82008-12-11 22:51:44 +0000679 return ParseCXXBoolLiteral();
Ted Kremeneke65b0862012-03-06 20:05:56 +0000680
681 case tok::kw___objc_yes:
682 case tok::kw___objc_no:
683 return ParseObjCBoolLiteral();
Bill Wendling4073ed52007-02-13 01:51:42 +0000684
Sebastian Redl576fd422009-05-10 18:38:11 +0000685 case tok::kw_nullptr:
Richard Smithb15c11c2011-10-17 23:06:20 +0000686 Diag(Tok, diag::warn_cxx98_compat_nullptr);
Sebastian Redl576fd422009-05-10 18:38:11 +0000687 return Actions.ActOnCXXNullPtrLiteral(ConsumeToken());
688
Douglas Gregorda6c89d2011-04-27 06:18:01 +0000689 case tok::annot_primary_expr:
690 assert(Res.get() == 0 && "Stray primary-expression annotation?");
691 Res = getExprAnnotation(Tok);
692 ConsumeToken();
693 break;
694
David Blaikie15a430a2011-12-04 05:04:18 +0000695 case tok::kw_decltype:
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +0000696 case tok::identifier: { // primary-expression: identifier
697 // unqualified-id: identifier
698 // constant: enumeration-constant
Chris Lattnera8a3f732009-01-06 05:06:21 +0000699 // Turn a potentially qualified name into a annot_typename or
Chris Lattner122db262009-01-04 22:52:14 +0000700 // annot_cxxscope if it would be valid. This handles things like x::y, etc.
David Blaikiebbafb8a2012-03-11 07:00:24 +0000701 if (getLangOpts().CPlusPlus) {
John McCall64fe2332010-01-07 19:29:58 +0000702 // Avoid the unnecessary parse-time lookup in the common case
703 // where the syntax forbids a type.
704 const Token &Next = NextToken();
Douglas Gregor8bea83a2012-08-30 20:04:43 +0000705
706 // If this identifier was reverted from a token ID, and the next token
707 // is a parenthesis, this is likely to be a use of a type trait. Check
708 // those tokens.
709 if (Next.is(tok::l_paren) &&
710 Tok.is(tok::identifier) &&
711 Tok.getIdentifierInfo()->hasRevertedTokenIDToIdentifier()) {
712 IdentifierInfo *II = Tok.getIdentifierInfo();
713 // Build up the mapping of revertable type traits, for future use.
714 if (RevertableTypeTraits.empty()) {
Douglas Gregor8bea83a2012-08-30 20:04:43 +0000715#define RTT_JOIN(X,Y) X##Y
716#define REVERTABLE_TYPE_TRAIT(Name) \
717 RevertableTypeTraits[PP.getIdentifierInfo(#Name)] \
718 = RTT_JOIN(tok::kw_,Name)
719
720 REVERTABLE_TYPE_TRAIT(__is_arithmetic);
721 REVERTABLE_TYPE_TRAIT(__is_convertible);
722 REVERTABLE_TYPE_TRAIT(__is_empty);
723 REVERTABLE_TYPE_TRAIT(__is_floating_point);
724 REVERTABLE_TYPE_TRAIT(__is_function);
725 REVERTABLE_TYPE_TRAIT(__is_fundamental);
726 REVERTABLE_TYPE_TRAIT(__is_integral);
727 REVERTABLE_TYPE_TRAIT(__is_member_function_pointer);
728 REVERTABLE_TYPE_TRAIT(__is_member_pointer);
729 REVERTABLE_TYPE_TRAIT(__is_pod);
730 REVERTABLE_TYPE_TRAIT(__is_pointer);
731 REVERTABLE_TYPE_TRAIT(__is_same);
732 REVERTABLE_TYPE_TRAIT(__is_scalar);
733 REVERTABLE_TYPE_TRAIT(__is_signed);
734 REVERTABLE_TYPE_TRAIT(__is_unsigned);
735 REVERTABLE_TYPE_TRAIT(__is_void);
736#undef REVERTABLE_TYPE_TRAIT
Douglas Gregor8bea83a2012-08-30 20:04:43 +0000737#undef RTT_JOIN
738 }
739
740 // If we find that this is in fact the name of a type trait,
741 // update the token kind in place and parse again to treat it as
742 // the appropriate kind of type trait.
743 llvm::SmallDenseMap<IdentifierInfo *, tok::TokenKind>::iterator Known
744 = RevertableTypeTraits.find(II);
745 if (Known != RevertableTypeTraits.end()) {
746 Tok.setKind(Known->second);
747 return ParseCastExpression(isUnaryExpression, isAddressOfOperand,
748 NotCastExpr, isTypeCast);
749 }
750 }
751
John McCall64fe2332010-01-07 19:29:58 +0000752 if (Next.is(tok::coloncolon) ||
753 (!ColonIsSacred && Next.is(tok::colon)) ||
754 Next.is(tok::less) ||
Sebastian Redl867f2282011-12-22 18:58:29 +0000755 Next.is(tok::l_paren) ||
756 Next.is(tok::l_brace)) {
John McCall64fe2332010-01-07 19:29:58 +0000757 // If TryAnnotateTypeOrScopeToken annotates the token, tail recurse.
758 if (TryAnnotateTypeOrScopeToken())
John McCall1f476a12010-02-26 08:45:28 +0000759 return ExprError();
760 if (!Tok.is(tok::identifier))
John McCall64fe2332010-01-07 19:29:58 +0000761 return ParseCastExpression(isUnaryExpression, isAddressOfOperand);
762 }
Chris Lattner9a8968b2009-01-04 23:23:14 +0000763 }
Argyrios Kyrtzidis857fcc22008-08-22 15:38:55 +0000764
Chris Lattner55662902009-10-25 17:04:48 +0000765 // Consume the identifier so that we can see if it is followed by a '(' or
766 // '.'.
767 IdentifierInfo &II = *Tok.getIdentifierInfo();
768 SourceLocation ILoc = ConsumeToken();
Douglas Gregor8bea83a2012-08-30 20:04:43 +0000769
Chris Lattnera36ec422010-04-11 08:28:14 +0000770 // Support 'Class.property' and 'super.property' notation.
David Blaikiebbafb8a2012-03-11 07:00:24 +0000771 if (getLangOpts().ObjC1 && Tok.is(tok::period) &&
Douglas Gregor0be31a22010-07-02 17:43:08 +0000772 (Actions.getTypeName(II, ILoc, getCurScope()) ||
Chris Lattnercd963182010-04-12 06:20:33 +0000773 // Allow the base to be 'super' if in an objc-method.
Douglas Gregor0be31a22010-07-02 17:43:08 +0000774 (&II == Ident_super && getCurScope()->isInObjcMethodScope()))) {
Jeffrey Yasskin8dfa5f12011-01-18 02:00:16 +0000775 ConsumeToken();
Chris Lattner55662902009-10-25 17:04:48 +0000776
Douglas Gregor36107ad2012-02-16 18:19:22 +0000777 // Allow either an identifier or the keyword 'class' (in C++).
778 if (Tok.isNot(tok::identifier) &&
David Blaikiebbafb8a2012-03-11 07:00:24 +0000779 !(getLangOpts().CPlusPlus && Tok.is(tok::kw_class))) {
Chris Lattner55662902009-10-25 17:04:48 +0000780 Diag(Tok, diag::err_expected_property_name);
Steve Naroff9527bbf2009-03-09 21:12:44 +0000781 return ExprError();
782 }
783 IdentifierInfo &PropertyName = *Tok.getIdentifierInfo();
784 SourceLocation PropertyLoc = ConsumeToken();
Chris Lattner55662902009-10-25 17:04:48 +0000785
786 Res = Actions.ActOnClassPropertyRefExpr(II, PropertyName,
787 ILoc, PropertyLoc);
John McCallb268a282010-08-23 23:25:46 +0000788 break;
Steve Naroff9527bbf2009-03-09 21:12:44 +0000789 }
John McCall8d08b9b2010-08-27 09:08:28 +0000790
Douglas Gregor7617c7d2010-09-15 15:09:43 +0000791 // In an Objective-C method, if we have "super" followed by an identifier,
Douglas Gregored0b69d2010-09-15 16:23:04 +0000792 // the token sequence is ill-formed. However, if there's a ':' or ']' after
Douglas Gregor7617c7d2010-09-15 15:09:43 +0000793 // that identifier, this is probably a message send with a missing open
Douglas Gregored0b69d2010-09-15 16:23:04 +0000794 // bracket. Treat it as such.
David Blaikiebbafb8a2012-03-11 07:00:24 +0000795 if (getLangOpts().ObjC1 && &II == Ident_super && !InMessageExpression &&
Douglas Gregor7617c7d2010-09-15 15:09:43 +0000796 getCurScope()->isInObjcMethodScope() &&
Douglas Gregored0b69d2010-09-15 16:23:04 +0000797 ((Tok.is(tok::identifier) &&
798 (NextToken().is(tok::colon) || NextToken().is(tok::r_square))) ||
799 Tok.is(tok::code_completion))) {
Douglas Gregor7617c7d2010-09-15 15:09:43 +0000800 Res = ParseObjCMessageExpressionBody(SourceLocation(), ILoc, ParsedType(),
801 0);
802 break;
803 }
804
Douglas Gregord39ae3e2011-02-15 19:17:31 +0000805 // If we have an Objective-C class name followed by an identifier
806 // and either ':' or ']', this is an Objective-C class message
807 // send that's missing the opening '['. Recovery
808 // appropriately. Also take this path if we're performing code
809 // completion after an Objective-C class name.
David Blaikiebbafb8a2012-03-11 07:00:24 +0000810 if (getLangOpts().ObjC1 &&
Douglas Gregord39ae3e2011-02-15 19:17:31 +0000811 ((Tok.is(tok::identifier) && !InMessageExpression) ||
812 Tok.is(tok::code_completion))) {
Douglas Gregorabf4a3e2010-09-16 01:51:54 +0000813 const Token& Next = NextToken();
Douglas Gregord39ae3e2011-02-15 19:17:31 +0000814 if (Tok.is(tok::code_completion) ||
815 Next.is(tok::colon) || Next.is(tok::r_square))
Gabor Greif433c9e12010-09-17 10:21:45 +0000816 if (ParsedType Typ = Actions.getTypeName(II, ILoc, getCurScope()))
817 if (Typ.get()->isObjCObjectOrInterfaceType()) {
Douglas Gregorabf4a3e2010-09-16 01:51:54 +0000818 // Fake up a Declarator to use with ActOnTypeName.
John McCall084e83d2011-03-24 11:26:52 +0000819 DeclSpec DS(AttrFactory);
Douglas Gregorabf4a3e2010-09-16 01:51:54 +0000820 DS.SetRangeStart(ILoc);
821 DS.SetRangeEnd(ILoc);
822 const char *PrevSpec = 0;
823 unsigned DiagID;
Gabor Greif433c9e12010-09-17 10:21:45 +0000824 DS.SetTypeSpecType(TST_typename, ILoc, PrevSpec, DiagID, Typ);
Douglas Gregorabf4a3e2010-09-16 01:51:54 +0000825
826 Declarator DeclaratorInfo(DS, Declarator::TypeNameContext);
827 TypeResult Ty = Actions.ActOnTypeName(getCurScope(),
828 DeclaratorInfo);
829 if (Ty.isInvalid())
830 break;
831
832 Res = ParseObjCMessageExpressionBody(SourceLocation(),
833 SourceLocation(),
834 Ty.get(), 0);
835 break;
836 }
837 }
838
John McCall8d08b9b2010-08-27 09:08:28 +0000839 // Make sure to pass down the right value for isAddressOfOperand.
840 if (isAddressOfOperand && isPostfixExpressionSuffixStart())
841 isAddressOfOperand = false;
Chris Lattner55662902009-10-25 17:04:48 +0000842
Chris Lattnerac18be92006-11-20 06:49:47 +0000843 // Function designators are allowed to be undeclared (C99 6.5.1p2), so we
844 // need to know whether or not this identifier is a function designator or
845 // not.
Douglas Gregora121b752009-11-03 16:56:39 +0000846 UnqualifiedId Name;
847 CXXScopeSpec ScopeSpec;
Abramo Bagnara7945c982012-01-27 09:46:47 +0000848 SourceLocation TemplateKWLoc;
Kaelyn Uhrain77e21fc2012-01-25 20:49:08 +0000849 CastExpressionIdValidator Validator(isTypeCast != NotTypeCast,
850 isTypeCast != IsTypeCast);
Douglas Gregora121b752009-11-03 16:56:39 +0000851 Name.setIdentifier(&II, ILoc);
Abramo Bagnara7945c982012-01-27 09:46:47 +0000852 Res = Actions.ActOnIdExpression(getCurScope(), ScopeSpec, TemplateKWLoc,
853 Name, Tok.is(tok::l_paren),
854 isAddressOfOperand, &Validator);
John McCallb268a282010-08-23 23:25:46 +0000855 break;
Chris Lattnerac18be92006-11-20 06:49:47 +0000856 }
Chris Lattner52a99e52006-08-10 20:56:00 +0000857 case tok::char_constant: // constant: character-constant
Douglas Gregorfb65e592011-07-27 05:40:30 +0000858 case tok::wide_char_constant:
859 case tok::utf16_char_constant:
860 case tok::utf32_char_constant:
Richard Smithbcc22fc2012-03-09 08:00:36 +0000861 Res = Actions.ActOnCharacterConstant(Tok, /*UDLScope*/getCurScope());
Steve Naroffae4143e2007-04-26 20:39:23 +0000862 ConsumeToken();
John McCallb268a282010-08-23 23:25:46 +0000863 break;
Chris Lattner52a99e52006-08-10 20:56:00 +0000864 case tok::kw___func__: // primary-expression: __func__ [C99 6.4.2.2]
865 case tok::kw___FUNCTION__: // primary-expression: __FUNCTION__ [GNU]
Nico Weber3a691a32012-06-23 02:07:59 +0000866 case tok::kw_L__FUNCTION__: // primary-expression: L__FUNCTION__ [MS]
Chris Lattner52a99e52006-08-10 20:56:00 +0000867 case tok::kw___PRETTY_FUNCTION__: // primary-expression: __P..Y_F..N__ [GNU]
Chris Lattner6307f192008-08-10 01:53:14 +0000868 Res = Actions.ActOnPredefinedExpr(Tok.getLocation(), SavedKind);
Chris Lattner52a99e52006-08-10 20:56:00 +0000869 ConsumeToken();
John McCallb268a282010-08-23 23:25:46 +0000870 break;
Chris Lattner52a99e52006-08-10 20:56:00 +0000871 case tok::string_literal: // primary-expression: string-literal
Chris Lattnerd3e98952006-10-06 05:22:26 +0000872 case tok::wide_string_literal:
Douglas Gregorfb65e592011-07-27 05:40:30 +0000873 case tok::utf8_string_literal:
874 case tok::utf16_string_literal:
875 case tok::utf32_string_literal:
Richard Smithd67aea22012-03-06 03:21:47 +0000876 Res = ParseStringLiteralExpression(true);
John McCallb268a282010-08-23 23:25:46 +0000877 break;
Benjamin Kramere56f3932011-12-23 17:00:35 +0000878 case tok::kw__Generic: // primary-expression: generic-selection [C11 6.5.1]
Peter Collingbourne91147592011-04-15 00:35:48 +0000879 Res = ParseGenericSelectionExpression();
880 break;
Chris Lattnerf8339772006-08-10 22:01:51 +0000881 case tok::kw___builtin_va_arg:
882 case tok::kw___builtin_offsetof:
883 case tok::kw___builtin_choose_expr:
Tanya Lattner55808c12011-06-04 00:47:47 +0000884 case tok::kw___builtin_astype: // primary-expression: [OCL] as_type()
Sebastian Redl90893182008-12-11 22:33:27 +0000885 return ParseBuiltinPrimaryExpression();
Douglas Gregor3be4b122008-11-29 04:51:27 +0000886 case tok::kw___null:
Sebastian Redl6d4256c2009-03-15 17:47:39 +0000887 return Actions.ActOnGNUNullExpr(ConsumeToken());
Chandler Carruth904cb142011-07-08 04:59:44 +0000888
Douglas Gregora49ccfe2010-08-06 14:50:36 +0000889 case tok::plusplus: // unary-expression: '++' unary-expression [C99]
890 case tok::minusminus: { // unary-expression: '--' unary-expression [C99]
891 // C++ [expr.unary] has:
892 // unary-expression:
893 // ++ cast-expression
894 // -- cast-expression
Chris Lattner0ba3dc42006-10-25 03:38:23 +0000895 SourceLocation SavedLoc = ConsumeToken();
David Blaikiebbafb8a2012-03-11 07:00:24 +0000896 Res = ParseCastExpression(!getLangOpts().CPlusPlus);
Sebastian Redl17f2c7d2008-12-09 13:15:23 +0000897 if (!Res.isInvalid())
John McCallb268a282010-08-23 23:25:46 +0000898 Res = Actions.ActOnUnaryOp(getCurScope(), SavedLoc, SavedKind, Res.get());
Benjamin Kramer62b95d82012-08-23 21:35:17 +0000899 return Res;
Chris Lattner0ba3dc42006-10-25 03:38:23 +0000900 }
Sebastian Redl3d3f75a2009-02-03 20:19:35 +0000901 case tok::amp: { // unary-expression: '&' cast-expression
902 // Special treatment because of member pointers
903 SourceLocation SavedLoc = ConsumeToken();
904 Res = ParseCastExpression(false, true);
905 if (!Res.isInvalid())
John McCallb268a282010-08-23 23:25:46 +0000906 Res = Actions.ActOnUnaryOp(getCurScope(), SavedLoc, SavedKind, Res.get());
Benjamin Kramer62b95d82012-08-23 21:35:17 +0000907 return Res;
Sebastian Redl3d3f75a2009-02-03 20:19:35 +0000908 }
909
Chris Lattner81b576e2006-08-11 02:13:20 +0000910 case tok::star: // unary-expression: '*' cast-expression
911 case tok::plus: // unary-expression: '+' cast-expression
912 case tok::minus: // unary-expression: '-' cast-expression
913 case tok::tilde: // unary-expression: '~' cast-expression
914 case tok::exclaim: // unary-expression: '!' cast-expression
915 case tok::kw___real: // unary-expression: '__real' cast-expression [GNU]
Chris Lattnerc43926f2008-02-02 20:20:10 +0000916 case tok::kw___imag: { // unary-expression: '__imag' cast-expression [GNU]
Chris Lattner0ba3dc42006-10-25 03:38:23 +0000917 SourceLocation SavedLoc = ConsumeToken();
Chris Lattner1b926492006-08-23 06:42:10 +0000918 Res = ParseCastExpression(false);
Sebastian Redl17f2c7d2008-12-09 13:15:23 +0000919 if (!Res.isInvalid())
John McCallb268a282010-08-23 23:25:46 +0000920 Res = Actions.ActOnUnaryOp(getCurScope(), SavedLoc, SavedKind, Res.get());
Benjamin Kramer62b95d82012-08-23 21:35:17 +0000921 return Res;
Sebastian Redl17f2c7d2008-12-09 13:15:23 +0000922 }
923
Chris Lattnerc43926f2008-02-02 20:20:10 +0000924 case tok::kw___extension__:{//unary-expression:'__extension__' cast-expr [GNU]
925 // __extension__ silences extension warnings in the subexpression.
Chris Lattnerf02ef3e2008-10-20 06:45:43 +0000926 ExtensionRAIIObject O(Diags); // Use RAII to do this.
Chris Lattnerc43926f2008-02-02 20:20:10 +0000927 SourceLocation SavedLoc = ConsumeToken();
928 Res = ParseCastExpression(false);
Sebastian Redl17f2c7d2008-12-09 13:15:23 +0000929 if (!Res.isInvalid())
John McCallb268a282010-08-23 23:25:46 +0000930 Res = Actions.ActOnUnaryOp(getCurScope(), SavedLoc, SavedKind, Res.get());
Benjamin Kramer62b95d82012-08-23 21:35:17 +0000931 return Res;
Chris Lattner0ba3dc42006-10-25 03:38:23 +0000932 }
Jordan Rose58d54722012-06-30 21:33:57 +0000933 case tok::kw__Alignof: // unary-expression: '_Alignof' '(' type-name ')'
934 if (!getLangOpts().C11)
935 Diag(Tok, diag::ext_c11_alignment) << Tok.getName();
936 // fallthrough
937 case tok::kw_alignof: // unary-expression: 'alignof' '(' type-id ')'
Chris Lattner81b576e2006-08-11 02:13:20 +0000938 case tok::kw___alignof: // unary-expression: '__alignof' unary-expression
939 // unary-expression: '__alignof' '(' type-name ')'
Jordan Rose58d54722012-06-30 21:33:57 +0000940 case tok::kw_sizeof: // unary-expression: 'sizeof' unary-expression
941 // unary-expression: 'sizeof' '(' type-name ')'
Peter Collingbournee190dee2011-03-11 19:24:49 +0000942 case tok::kw_vec_step: // unary-expression: OpenCL 'vec_step' expression
943 return ParseUnaryExprOrTypeTraitExpression();
Chris Lattner0ba3dc42006-10-25 03:38:23 +0000944 case tok::ampamp: { // unary-expression: '&&' identifier
Chris Lattnereefa10e2007-05-28 06:56:27 +0000945 SourceLocation AmpAmpLoc = ConsumeToken();
Sebastian Redl59b5e512008-12-11 21:36:32 +0000946 if (Tok.isNot(tok::identifier))
947 return ExprError(Diag(Tok, diag::err_expected_ident));
Sebastian Redld9f7b1c2008-12-10 00:02:53 +0000948
Chris Lattner9ba479b2011-02-18 21:16:39 +0000949 if (getCurScope()->getFnParent() == 0)
950 return ExprError(Diag(Tok, diag::err_address_of_label_outside_fn));
951
Chris Lattnereefa10e2007-05-28 06:56:27 +0000952 Diag(AmpAmpLoc, diag::ext_gnu_address_of_label);
Chris Lattnerebb5c6c2011-02-18 01:27:55 +0000953 LabelDecl *LD = Actions.LookupOrCreateLabel(Tok.getIdentifierInfo(),
954 Tok.getLocation());
955 Res = Actions.ActOnAddrLabel(AmpAmpLoc, Tok.getLocation(), LD);
Chris Lattner14a1b642006-10-15 22:33:58 +0000956 ConsumeToken();
Benjamin Kramer62b95d82012-08-23 21:35:17 +0000957 return Res;
Chris Lattner0ba3dc42006-10-25 03:38:23 +0000958 }
Chris Lattner29375652006-12-04 18:06:35 +0000959 case tok::kw_const_cast:
960 case tok::kw_dynamic_cast:
961 case tok::kw_reinterpret_cast:
962 case tok::kw_static_cast:
Argyrios Kyrtzidis16d63a72008-08-16 19:45:32 +0000963 Res = ParseCXXCasts();
John McCallb268a282010-08-23 23:25:46 +0000964 break;
Sebastian Redlc4704762008-11-11 11:37:55 +0000965 case tok::kw_typeid:
966 Res = ParseCXXTypeid();
John McCallb268a282010-08-23 23:25:46 +0000967 break;
Francois Pichet9f4f2072010-09-08 12:20:18 +0000968 case tok::kw___uuidof:
969 Res = ParseCXXUuidof();
970 break;
Argyrios Kyrtzidis7bbb20e2008-06-24 22:12:16 +0000971 case tok::kw_this:
Argyrios Kyrtzidis37779ad2008-08-16 19:34:46 +0000972 Res = ParseCXXThis();
John McCallb268a282010-08-23 23:25:46 +0000973 break;
Argyrios Kyrtzidis857fcc22008-08-22 15:38:55 +0000974
Douglas Gregorabf4a3e2010-09-16 01:51:54 +0000975 case tok::annot_typename:
976 if (isStartOfObjCClassMessageMissingOpenBracket()) {
977 ParsedType Type = getTypeAnnotation(Tok);
Alexander Kornienkob98f6e52013-02-01 18:28:04 +0000978
Douglas Gregorabf4a3e2010-09-16 01:51:54 +0000979 // Fake up a Declarator to use with ActOnTypeName.
John McCall084e83d2011-03-24 11:26:52 +0000980 DeclSpec DS(AttrFactory);
Douglas Gregorabf4a3e2010-09-16 01:51:54 +0000981 DS.SetRangeStart(Tok.getLocation());
982 DS.SetRangeEnd(Tok.getLastLoc());
983
984 const char *PrevSpec = 0;
985 unsigned DiagID;
Nico Weber77430342010-11-22 10:30:56 +0000986 DS.SetTypeSpecType(TST_typename, Tok.getAnnotationEndLoc(),
987 PrevSpec, DiagID, Type);
Alexander Kornienkob98f6e52013-02-01 18:28:04 +0000988
Douglas Gregorabf4a3e2010-09-16 01:51:54 +0000989 Declarator DeclaratorInfo(DS, Declarator::TypeNameContext);
990 TypeResult Ty = Actions.ActOnTypeName(getCurScope(), DeclaratorInfo);
991 if (Ty.isInvalid())
992 break;
993
994 ConsumeToken();
995 Res = ParseObjCMessageExpressionBody(SourceLocation(), SourceLocation(),
996 Ty.get(), 0);
997 break;
998 }
999 // Fall through
Alexander Kornienkob98f6e52013-02-01 18:28:04 +00001000
David Blaikie25896afb2012-01-24 05:47:35 +00001001 case tok::annot_decltype:
Argyrios Kyrtzidis857fcc22008-08-22 15:38:55 +00001002 case tok::kw_char:
1003 case tok::kw_wchar_t:
Alisdair Mereditha9ad47d2009-07-14 06:30:34 +00001004 case tok::kw_char16_t:
1005 case tok::kw_char32_t:
Argyrios Kyrtzidis857fcc22008-08-22 15:38:55 +00001006 case tok::kw_bool:
1007 case tok::kw_short:
1008 case tok::kw_int:
1009 case tok::kw_long:
Francois Pichet84133e42011-04-28 01:59:37 +00001010 case tok::kw___int64:
Richard Smithf016bbc2012-04-04 06:24:32 +00001011 case tok::kw___int128:
Argyrios Kyrtzidis857fcc22008-08-22 15:38:55 +00001012 case tok::kw_signed:
1013 case tok::kw_unsigned:
Anton Korobeynikovf0c267e2011-10-14 23:23:15 +00001014 case tok::kw_half:
Argyrios Kyrtzidis857fcc22008-08-22 15:38:55 +00001015 case tok::kw_float:
1016 case tok::kw_double:
1017 case tok::kw_void:
Douglas Gregor333489b2009-03-27 23:10:48 +00001018 case tok::kw_typename:
Chris Lattner8a38aa82009-01-04 22:28:21 +00001019 case tok::kw_typeof:
Guy Benyeid8a08ea2012-12-18 14:38:23 +00001020 case tok::kw___vector:
1021 case tok::kw_image1d_t:
1022 case tok::kw_image1d_array_t:
1023 case tok::kw_image1d_buffer_t:
1024 case tok::kw_image2d_t:
1025 case tok::kw_image2d_array_t:
Alexander Kornienkob98f6e52013-02-01 18:28:04 +00001026 case tok::kw_image3d_t:
Guy Benyei61054192013-02-07 10:55:47 +00001027 case tok::kw_sampler_t:
Alexander Kornienkob98f6e52013-02-01 18:28:04 +00001028 case tok::kw_event_t: {
David Blaikiebbafb8a2012-03-11 07:00:24 +00001029 if (!getLangOpts().CPlusPlus) {
Chris Lattner8a38aa82009-01-04 22:28:21 +00001030 Diag(Tok, diag::err_expected_expression);
1031 return ExprError();
1032 }
Eli Friedman6d692cc2009-06-11 00:33:41 +00001033
1034 if (SavedKind == tok::kw_typename) {
1035 // postfix-expression: typename-specifier '(' expression-list[opt] ')'
Sebastian Redl3da34892011-06-05 12:23:16 +00001036 // typename-specifier braced-init-list
John McCall1f476a12010-02-26 08:45:28 +00001037 if (TryAnnotateTypeOrScopeToken())
Eli Friedman6d692cc2009-06-11 00:33:41 +00001038 return ExprError();
1039 }
1040
Argyrios Kyrtzidis857fcc22008-08-22 15:38:55 +00001041 // postfix-expression: simple-type-specifier '(' expression-list[opt] ')'
Sebastian Redl3da34892011-06-05 12:23:16 +00001042 // simple-type-specifier braced-init-list
Argyrios Kyrtzidis857fcc22008-08-22 15:38:55 +00001043 //
John McCall084e83d2011-03-24 11:26:52 +00001044 DeclSpec DS(AttrFactory);
Argyrios Kyrtzidis857fcc22008-08-22 15:38:55 +00001045 ParseCXXSimpleTypeSpecifier(DS);
Sebastian Redl3da34892011-06-05 12:23:16 +00001046 if (Tok.isNot(tok::l_paren) &&
Richard Smith2bf7fdb2013-01-02 11:42:31 +00001047 (!getLangOpts().CPlusPlus11 || Tok.isNot(tok::l_brace)))
Sebastian Redl59b5e512008-12-11 21:36:32 +00001048 return ExprError(Diag(Tok, diag::err_expected_lparen_after_type)
1049 << DS.getSourceRange());
Argyrios Kyrtzidis857fcc22008-08-22 15:38:55 +00001050
Richard Smith5d164bc2011-10-15 05:09:34 +00001051 if (Tok.is(tok::l_brace))
1052 Diag(Tok, diag::warn_cxx98_compat_generalized_initializer_lists);
1053
Argyrios Kyrtzidis857fcc22008-08-22 15:38:55 +00001054 Res = ParseCXXTypeConstructExpression(DS);
John McCallb268a282010-08-23 23:25:46 +00001055 break;
Argyrios Kyrtzidis857fcc22008-08-22 15:38:55 +00001056 }
1057
Douglas Gregor7df89f52010-02-05 19:11:37 +00001058 case tok::annot_cxxscope: { // [C++] id-expression: qualified-id
Douglas Gregor2c4a7502010-04-23 02:08:13 +00001059 // If TryAnnotateTypeOrScopeToken annotates the token, tail recurse.
1060 // (We can end up in this situation after tentative parsing.)
1061 if (TryAnnotateTypeOrScopeToken())
1062 return ExprError();
1063 if (!Tok.is(tok::annot_cxxscope))
1064 return ParseCastExpression(isUnaryExpression, isAddressOfOperand,
Argyrios Kyrtzidis7192a3b2011-07-01 22:22:59 +00001065 NotCastExpr, isTypeCast);
Douglas Gregor2c4a7502010-04-23 02:08:13 +00001066
Douglas Gregor7df89f52010-02-05 19:11:37 +00001067 Token Next = NextToken();
1068 if (Next.is(tok::annot_template_id)) {
Argyrios Kyrtzidisc0c5dd22011-06-22 06:09:49 +00001069 TemplateIdAnnotation *TemplateId = takeTemplateIdAnnotation(Next);
Douglas Gregor7df89f52010-02-05 19:11:37 +00001070 if (TemplateId->Kind == TNK_Type_template) {
1071 // We have a qualified template-id that we know refers to a
1072 // type, translate it into a type and continue parsing as a
1073 // cast expression.
1074 CXXScopeSpec SS;
Douglas Gregordf593fb2011-11-07 17:33:42 +00001075 ParseOptionalCXXScopeSpecifier(SS, ParsedType(),
1076 /*EnteringContext=*/false);
Douglas Gregore7c20652011-03-02 00:47:37 +00001077 AnnotateTemplateIdTokenAsType();
Douglas Gregor7df89f52010-02-05 19:11:37 +00001078 return ParseCastExpression(isUnaryExpression, isAddressOfOperand,
Argyrios Kyrtzidis7192a3b2011-07-01 22:22:59 +00001079 NotCastExpr, isTypeCast);
Douglas Gregor7df89f52010-02-05 19:11:37 +00001080 }
1081 }
1082
1083 // Parse as an id-expression.
1084 Res = ParseCXXIdExpression(isAddressOfOperand);
John McCallb268a282010-08-23 23:25:46 +00001085 break;
Douglas Gregor7df89f52010-02-05 19:11:37 +00001086 }
1087
1088 case tok::annot_template_id: { // [C++] template-id
Argyrios Kyrtzidisc0c5dd22011-06-22 06:09:49 +00001089 TemplateIdAnnotation *TemplateId = takeTemplateIdAnnotation(Tok);
Douglas Gregor7df89f52010-02-05 19:11:37 +00001090 if (TemplateId->Kind == TNK_Type_template) {
1091 // We have a template-id that we know refers to a type,
1092 // translate it into a type and continue parsing as a cast
1093 // expression.
1094 AnnotateTemplateIdTokenAsType();
1095 return ParseCastExpression(isUnaryExpression, isAddressOfOperand,
Argyrios Kyrtzidis7192a3b2011-07-01 22:22:59 +00001096 NotCastExpr, isTypeCast);
Douglas Gregor7df89f52010-02-05 19:11:37 +00001097 }
1098
1099 // Fall through to treat the template-id as an id-expression.
1100 }
1101
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +00001102 case tok::kw_operator: // [C++] id-expression: operator/conversion-function-id
Sebastian Redl3d3f75a2009-02-03 20:19:35 +00001103 Res = ParseCXXIdExpression(isAddressOfOperand);
John McCallb268a282010-08-23 23:25:46 +00001104 break;
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00001105
Chris Lattner122db262009-01-04 22:52:14 +00001106 case tok::coloncolon: {
Chris Lattner8a7d10d2009-01-05 03:55:46 +00001107 // ::foo::bar -> global qualified name etc. If TryAnnotateTypeOrScopeToken
1108 // annotates the token, tail recurse.
1109 if (TryAnnotateTypeOrScopeToken())
John McCall1f476a12010-02-26 08:45:28 +00001110 return ExprError();
1111 if (!Tok.is(tok::coloncolon))
Sebastian Redl3d3f75a2009-02-03 20:19:35 +00001112 return ParseCastExpression(isUnaryExpression, isAddressOfOperand);
1113
Chris Lattner122db262009-01-04 22:52:14 +00001114 // ::new -> [C++] new-expression
1115 // ::delete -> [C++] delete-expression
Chris Lattner8a7d10d2009-01-05 03:55:46 +00001116 SourceLocation CCLoc = ConsumeToken();
Chris Lattner109faf22009-01-04 21:25:24 +00001117 if (Tok.is(tok::kw_new))
Chris Lattner8a7d10d2009-01-05 03:55:46 +00001118 return ParseCXXNewExpression(true, CCLoc);
Chris Lattner122db262009-01-04 22:52:14 +00001119 if (Tok.is(tok::kw_delete))
Chris Lattner8a7d10d2009-01-05 03:55:46 +00001120 return ParseCXXDeleteExpression(true, CCLoc);
Mike Stump11289f42009-09-09 15:08:12 +00001121
Chris Lattner9a8968b2009-01-04 23:23:14 +00001122 // This is not a type name or scope specifier, it is an invalid expression.
Chris Lattner8a7d10d2009-01-05 03:55:46 +00001123 Diag(CCLoc, diag::err_expected_expression);
Chris Lattner9a8968b2009-01-04 23:23:14 +00001124 return ExprError();
Chris Lattner109faf22009-01-04 21:25:24 +00001125 }
Sebastian Redldb36b9b2008-12-02 16:35:44 +00001126
Sebastian Redlbd150f42008-11-21 19:14:01 +00001127 case tok::kw_new: // [C++] new-expression
Chris Lattner109faf22009-01-04 21:25:24 +00001128 return ParseCXXNewExpression(false, Tok.getLocation());
Sebastian Redlbd150f42008-11-21 19:14:01 +00001129
1130 case tok::kw_delete: // [C++] delete-expression
Chris Lattner109faf22009-01-04 21:25:24 +00001131 return ParseCXXDeleteExpression(false, Tok.getLocation());
Sebastian Redlbd150f42008-11-21 19:14:01 +00001132
Sebastian Redl22e3a932010-09-10 20:55:37 +00001133 case tok::kw_noexcept: { // [C++0x] 'noexcept' '(' expression ')'
Richard Smithb15c11c2011-10-17 23:06:20 +00001134 Diag(Tok, diag::warn_cxx98_compat_noexcept_expr);
Sebastian Redl22e3a932010-09-10 20:55:37 +00001135 SourceLocation KeyLoc = ConsumeToken();
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00001136 BalancedDelimiterTracker T(*this, tok::l_paren);
1137
1138 if (T.expectAndConsume(diag::err_expected_lparen_after, "noexcept"))
Sebastian Redl22e3a932010-09-10 20:55:37 +00001139 return ExprError();
Richard Smith764d2fe2011-12-20 02:08:33 +00001140 // C++11 [expr.unary.noexcept]p1:
Sebastian Redle56be2f72010-09-10 21:57:27 +00001141 // The noexcept operator determines whether the evaluation of its operand,
1142 // which is an unevaluated operand, can throw an exception.
1143 EnterExpressionEvaluationContext Unevaluated(Actions, Sema::Unevaluated);
Sebastian Redl22e3a932010-09-10 20:55:37 +00001144 ExprResult Result = ParseExpression();
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00001145
1146 T.consumeClose();
1147
Sebastian Redl22e3a932010-09-10 20:55:37 +00001148 if (!Result.isInvalid())
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00001149 Result = Actions.ActOnNoexceptExpr(KeyLoc, T.getOpenLocation(),
1150 Result.take(), T.getCloseLocation());
Benjamin Kramer62b95d82012-08-23 21:35:17 +00001151 return Result;
Sebastian Redl22e3a932010-09-10 20:55:37 +00001152 }
1153
Chandler Carruth79803482011-04-23 10:47:20 +00001154 case tok::kw___is_abstract: // [GNU] unary-type-trait
Sebastian Redlbaad4e72009-01-05 20:52:13 +00001155 case tok::kw___is_class:
Eli Friedmanc96d4962009-08-15 21:55:26 +00001156 case tok::kw___is_empty:
Chandler Carruth79803482011-04-23 10:47:20 +00001157 case tok::kw___is_enum:
John McCallbf4a7d72012-09-25 07:32:49 +00001158 case tok::kw___is_interface_class:
Sebastian Redl79eba1c2009-12-03 00:13:20 +00001159 case tok::kw___is_literal:
John Wiegley65497cc2011-04-27 23:09:49 +00001160 case tok::kw___is_arithmetic:
1161 case tok::kw___is_integral:
1162 case tok::kw___is_floating_point:
1163 case tok::kw___is_complete_type:
1164 case tok::kw___is_void:
1165 case tok::kw___is_array:
1166 case tok::kw___is_function:
1167 case tok::kw___is_reference:
1168 case tok::kw___is_lvalue_reference:
1169 case tok::kw___is_rvalue_reference:
1170 case tok::kw___is_fundamental:
1171 case tok::kw___is_object:
1172 case tok::kw___is_scalar:
1173 case tok::kw___is_compound:
1174 case tok::kw___is_pointer:
1175 case tok::kw___is_member_object_pointer:
1176 case tok::kw___is_member_function_pointer:
1177 case tok::kw___is_member_pointer:
1178 case tok::kw___is_const:
1179 case tok::kw___is_volatile:
1180 case tok::kw___is_standard_layout:
1181 case tok::kw___is_signed:
1182 case tok::kw___is_unsigned:
Chandler Carruth65fa1fd2011-04-24 02:49:28 +00001183 case tok::kw___is_literal_type:
Chandler Carruth79803482011-04-23 10:47:20 +00001184 case tok::kw___is_pod:
1185 case tok::kw___is_polymorphic:
Chandler Carrutha3e1f9a2011-04-23 10:47:28 +00001186 case tok::kw___is_trivial:
Alexis Huntd9a5cc12011-05-13 00:31:07 +00001187 case tok::kw___is_trivially_copyable:
Chandler Carruth79803482011-04-23 10:47:20 +00001188 case tok::kw___is_union:
Douglas Gregordca70af2011-12-03 18:14:24 +00001189 case tok::kw___is_final:
Anders Carlssonfe63dc52009-04-16 00:08:20 +00001190 case tok::kw___has_trivial_constructor:
Joao Matosc9523d42013-03-27 01:34:16 +00001191 case tok::kw___has_trivial_move_constructor:
Douglas Gregor79f83ed2009-07-23 23:49:00 +00001192 case tok::kw___has_trivial_copy:
1193 case tok::kw___has_trivial_assign:
Joao Matosc9523d42013-03-27 01:34:16 +00001194 case tok::kw___has_trivial_move_assign:
Anders Carlsson6dc35752009-04-17 02:34:54 +00001195 case tok::kw___has_trivial_destructor:
Sebastian Redl7dcb1552010-08-31 04:59:00 +00001196 case tok::kw___has_nothrow_assign:
Joao Matosc9523d42013-03-27 01:34:16 +00001197 case tok::kw___has_nothrow_move_assign:
Sebastian Redl7dcb1552010-08-31 04:59:00 +00001198 case tok::kw___has_nothrow_copy:
1199 case tok::kw___has_nothrow_constructor:
Sebastian Redlb469afb2010-09-02 23:19:42 +00001200 case tok::kw___has_virtual_destructor:
Sebastian Redlbaad4e72009-01-05 20:52:13 +00001201 return ParseUnaryTypeTrait();
1202
Francois Pichet34b21132010-12-08 22:35:30 +00001203 case tok::kw___builtin_types_compatible_p:
Francois Pichet9dfa3ce2010-12-07 00:08:36 +00001204 case tok::kw___is_base_of:
John Wiegley65497cc2011-04-27 23:09:49 +00001205 case tok::kw___is_same:
1206 case tok::kw___is_convertible:
Douglas Gregor8006e762011-01-27 20:28:01 +00001207 case tok::kw___is_convertible_to:
Douglas Gregor1be329d2012-02-23 07:33:15 +00001208 case tok::kw___is_trivially_assignable:
Francois Pichet9dfa3ce2010-12-07 00:08:36 +00001209 return ParseBinaryTypeTrait();
1210
Douglas Gregor29c42f22012-02-24 07:38:34 +00001211 case tok::kw___is_trivially_constructible:
1212 return ParseTypeTrait();
1213
John Wiegley6242b6a2011-04-28 00:16:57 +00001214 case tok::kw___array_rank:
1215 case tok::kw___array_extent:
1216 return ParseArrayTypeTrait();
1217
John Wiegleyf9f65842011-04-25 06:54:41 +00001218 case tok::kw___is_lvalue_expr:
1219 case tok::kw___is_rvalue_expr:
1220 return ParseExpressionTrait();
1221
Chris Lattner644e1b72007-10-03 22:03:06 +00001222 case tok::at: {
1223 SourceLocation AtLoc = ConsumeToken();
Sebastian Redlcb6e2c62008-12-13 15:32:12 +00001224 return ParseObjCAtExpression(AtLoc);
Chris Lattner644e1b72007-10-03 22:03:06 +00001225 }
Steve Naroff0ac012832008-08-28 19:20:44 +00001226 case tok::caret:
Chandler Carruthc5c3b0a22011-07-08 04:28:55 +00001227 Res = ParseBlockLiteralExpression();
1228 break;
1229 case tok::code_completion: {
John McCallfaf5fb42010-08-26 23:41:50 +00001230 Actions.CodeCompleteOrdinaryName(getCurScope(), Sema::PCC_Expression);
Argyrios Kyrtzidis5cec2ae2011-09-04 03:32:15 +00001231 cutOffParsing();
1232 return ExprError();
Chandler Carruthc5c3b0a22011-07-08 04:28:55 +00001233 }
Chris Lattner6bf1db12008-12-12 19:20:14 +00001234 case tok::l_square:
Richard Smith2bf7fdb2013-01-02 11:42:31 +00001235 if (getLangOpts().CPlusPlus11) {
David Blaikiebbafb8a2012-03-11 07:00:24 +00001236 if (getLangOpts().ObjC1) {
Eli Friedmanc7c97142012-01-04 02:40:39 +00001237 // C++11 lambda expressions and Objective-C message sends both start with a
1238 // square bracket. There are three possibilities here:
1239 // we have a valid lambda expression, we have an invalid lambda
1240 // expression, or we have something that doesn't appear to be a lambda.
1241 // If we're in the last case, we fall back to ParseObjCMessageExpression.
Douglas Gregordb0b9f12011-08-04 15:30:47 +00001242 Res = TryParseLambdaExpression();
Eli Friedmanc7c97142012-01-04 02:40:39 +00001243 if (!Res.isInvalid() && !Res.get())
Douglas Gregordb0b9f12011-08-04 15:30:47 +00001244 Res = ParseObjCMessageExpression();
1245 break;
1246 }
1247 Res = ParseLambdaExpression();
1248 break;
1249 }
David Blaikiebbafb8a2012-03-11 07:00:24 +00001250 if (getLangOpts().ObjC1) {
Chandler Carruthc5c3b0a22011-07-08 04:28:55 +00001251 Res = ParseObjCMessageExpression();
1252 break;
1253 }
1254 // FALL THROUGH.
Chris Lattner52a99e52006-08-10 20:56:00 +00001255 default:
Argyrios Kyrtzidis12179bc2009-05-22 10:24:42 +00001256 NotCastExpr = true;
Sebastian Redl59b5e512008-12-11 21:36:32 +00001257 return ExprError();
Chris Lattnerf8339772006-08-10 22:01:51 +00001258 }
Sebastian Redl59b5e512008-12-11 21:36:32 +00001259
John McCallb268a282010-08-23 23:25:46 +00001260 // These can be followed by postfix-expr pieces.
Douglas Gregoreda7e542010-09-18 01:28:11 +00001261 return ParsePostfixExpressionSuffix(Res);
Chris Lattner20c6a452006-08-12 17:40:43 +00001262}
1263
James Dennett3d5e4592012-06-17 04:36:28 +00001264/// \brief Once the leading part of a postfix-expression is parsed, this
1265/// method parses any suffixes that apply.
Chris Lattner20c6a452006-08-12 17:40:43 +00001266///
James Dennett3d5e4592012-06-17 04:36:28 +00001267/// \verbatim
Chris Lattner20c6a452006-08-12 17:40:43 +00001268/// postfix-expression: [C99 6.5.2]
1269/// primary-expression
1270/// postfix-expression '[' expression ']'
Sebastian Redl3da34892011-06-05 12:23:16 +00001271/// postfix-expression '[' braced-init-list ']'
Chris Lattner20c6a452006-08-12 17:40:43 +00001272/// postfix-expression '(' argument-expression-list[opt] ')'
1273/// postfix-expression '.' identifier
1274/// postfix-expression '->' identifier
1275/// postfix-expression '++'
1276/// postfix-expression '--'
1277/// '(' type-name ')' '{' initializer-list '}'
1278/// '(' type-name ')' '{' initializer-list ',' '}'
1279///
1280/// argument-expression-list: [C99 6.5.2]
Douglas Gregor968f23a2011-01-03 19:31:53 +00001281/// argument-expression ...[opt]
1282/// argument-expression-list ',' assignment-expression ...[opt]
James Dennett3d5e4592012-06-17 04:36:28 +00001283/// \endverbatim
John McCalldadc5752010-08-24 06:29:42 +00001284ExprResult
1285Parser::ParsePostfixExpressionSuffix(ExprResult LHS) {
Chris Lattnerf8339772006-08-10 22:01:51 +00001286 // Now that the primary-expression piece of the postfix-expression has been
1287 // parsed, see if there are any postfix-expression pieces here.
1288 SourceLocation Loc;
1289 while (1) {
1290 switch (Tok.getKind()) {
Douglas Gregored0b69d2010-09-15 16:23:04 +00001291 case tok::code_completion:
1292 if (InMessageExpression)
Benjamin Kramer62b95d82012-08-23 21:35:17 +00001293 return LHS;
Douglas Gregored0b69d2010-09-15 16:23:04 +00001294
Douglas Gregoreda7e542010-09-18 01:28:11 +00001295 Actions.CodeCompletePostfixExpression(getCurScope(), LHS);
Argyrios Kyrtzidis5cec2ae2011-09-04 03:32:15 +00001296 cutOffParsing();
1297 return ExprError();
Douglas Gregored0b69d2010-09-15 16:23:04 +00001298
Douglas Gregore9bba4f2010-09-15 14:51:05 +00001299 case tok::identifier:
1300 // If we see identifier: after an expression, and we're not already in a
1301 // message send, then this is probably a message send with a missing
1302 // opening bracket '['.
David Blaikiebbafb8a2012-03-11 07:00:24 +00001303 if (getLangOpts().ObjC1 && !InMessageExpression &&
Douglas Gregord6d98002010-09-15 14:54:45 +00001304 (NextToken().is(tok::colon) || NextToken().is(tok::r_square))) {
Douglas Gregore9bba4f2010-09-15 14:51:05 +00001305 LHS = ParseObjCMessageExpressionBody(SourceLocation(), SourceLocation(),
1306 ParsedType(), LHS.get());
1307 break;
1308 }
1309
1310 // Fall through; this isn't a message send.
1311
Chris Lattner20c6a452006-08-12 17:40:43 +00001312 default: // Not a postfix-expression suffix.
Benjamin Kramer62b95d82012-08-23 21:35:17 +00001313 return LHS;
Chris Lattner6d28d9b2006-08-24 03:51:22 +00001314 case tok::l_square: { // postfix-expression: p-e '[' expression ']'
Chris Lattner47054fb2010-05-31 18:18:22 +00001315 // If we have a array postfix expression that starts on a new line and
1316 // Objective-C is enabled, it is highly likely that the user forgot a
1317 // semicolon after the base expression and that the array postfix-expr is
1318 // actually another message send. In this case, do some look-ahead to see
1319 // if the contents of the square brackets are obviously not a valid
1320 // expression and recover by pretending there is no suffix.
David Blaikiebbafb8a2012-03-11 07:00:24 +00001321 if (getLangOpts().ObjC1 && Tok.isAtStartOfLine() &&
Chris Lattner47054fb2010-05-31 18:18:22 +00001322 isSimpleObjCMessageExpression())
Benjamin Kramer62b95d82012-08-23 21:35:17 +00001323 return LHS;
Richard Smith7bdcc4a2012-04-10 01:32:12 +00001324
1325 // Reject array indices starting with a lambda-expression. '[[' is
1326 // reserved for attributes.
1327 if (CheckProhibitedCXX11Attribute())
1328 return ExprError();
1329
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00001330 BalancedDelimiterTracker T(*this, tok::l_square);
1331 T.consumeOpen();
1332 Loc = T.getOpenLocation();
Sebastian Redl3da34892011-06-05 12:23:16 +00001333 ExprResult Idx;
Richard Smith2bf7fdb2013-01-02 11:42:31 +00001334 if (getLangOpts().CPlusPlus11 && Tok.is(tok::l_brace)) {
Richard Smith5d164bc2011-10-15 05:09:34 +00001335 Diag(Tok, diag::warn_cxx98_compat_generalized_initializer_lists);
Sebastian Redl3da34892011-06-05 12:23:16 +00001336 Idx = ParseBraceInitializer();
Richard Smith5d164bc2011-10-15 05:09:34 +00001337 } else
Sebastian Redl3da34892011-06-05 12:23:16 +00001338 Idx = ParseExpression();
Sebastian Redl511ed552008-11-25 22:21:31 +00001339
Chris Lattner6d28d9b2006-08-24 03:51:22 +00001340 SourceLocation RLoc = Tok.getLocation();
Sebastian Redl17f2c7d2008-12-09 13:15:23 +00001341
1342 if (!LHS.isInvalid() && !Idx.isInvalid() && Tok.is(tok::r_square)) {
John McCallb268a282010-08-23 23:25:46 +00001343 LHS = Actions.ActOnArraySubscriptExpr(getCurScope(), LHS.take(), Loc,
1344 Idx.take(), RLoc);
Sebastian Redl17f2c7d2008-12-09 13:15:23 +00001345 } else
Sebastian Redl59b5e512008-12-11 21:36:32 +00001346 LHS = ExprError();
Chris Lattner6d28d9b2006-08-24 03:51:22 +00001347
Chris Lattner89c50c62006-08-11 06:41:18 +00001348 // Match the ']'.
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00001349 T.consumeClose();
Chris Lattner89c50c62006-08-11 06:41:18 +00001350 break;
Chris Lattner6d28d9b2006-08-24 03:51:22 +00001351 }
Sebastian Redl17f2c7d2008-12-09 13:15:23 +00001352
Peter Collingbourne5eec5f02011-02-09 21:12:02 +00001353 case tok::l_paren: // p-e: p-e '(' argument-expression-list[opt] ')'
1354 case tok::lesslessless: { // p-e: p-e '<<<' argument-expression-list '>>>'
1355 // '(' argument-expression-list[opt] ')'
1356 tok::TokenKind OpKind = Tok.getKind();
Douglas Gregore9bba4f2010-09-15 14:51:05 +00001357 InMessageExpressionRAIIObject InMessage(*this, false);
1358
Peter Collingbourne5eec5f02011-02-09 21:12:02 +00001359 Expr *ExecConfig = 0;
1360
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00001361 BalancedDelimiterTracker PT(*this, tok::l_paren);
1362
Peter Collingbourne5eec5f02011-02-09 21:12:02 +00001363 if (OpKind == tok::lesslessless) {
Benjamin Kramerf0623432012-08-23 22:51:59 +00001364 ExprVector ExecConfigExprs;
Peter Collingbourne5eec5f02011-02-09 21:12:02 +00001365 CommaLocsTy ExecConfigCommaLocs;
Douglas Gregor0cf55e92012-03-08 01:00:17 +00001366 SourceLocation OpenLoc = ConsumeToken();
Peter Collingbourne5eec5f02011-02-09 21:12:02 +00001367
1368 if (ParseExpressionList(ExecConfigExprs, ExecConfigCommaLocs)) {
1369 LHS = ExprError();
1370 }
1371
Douglas Gregor0cf55e92012-03-08 01:00:17 +00001372 SourceLocation CloseLoc = Tok.getLocation();
1373 if (Tok.is(tok::greatergreatergreater)) {
1374 ConsumeToken();
1375 } else if (LHS.isInvalid()) {
Peter Collingbourne5eec5f02011-02-09 21:12:02 +00001376 SkipUntil(tok::greatergreatergreater);
Douglas Gregor0cf55e92012-03-08 01:00:17 +00001377 } else {
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00001378 // There was an error closing the brackets
Douglas Gregor0cf55e92012-03-08 01:00:17 +00001379 Diag(Tok, diag::err_expected_ggg);
1380 Diag(OpenLoc, diag::note_matching) << "<<<";
1381 SkipUntil(tok::greatergreatergreater);
Peter Collingbourne5eec5f02011-02-09 21:12:02 +00001382 LHS = ExprError();
Peter Collingbourne5eec5f02011-02-09 21:12:02 +00001383 }
1384
1385 if (!LHS.isInvalid()) {
1386 if (ExpectAndConsume(tok::l_paren, diag::err_expected_lparen, ""))
1387 LHS = ExprError();
1388 else
1389 Loc = PrevTokLocation;
1390 }
1391
1392 if (!LHS.isInvalid()) {
1393 ExprResult ECResult = Actions.ActOnCUDAExecConfigExpr(getCurScope(),
Douglas Gregor0cf55e92012-03-08 01:00:17 +00001394 OpenLoc,
Benjamin Kramer62b95d82012-08-23 21:35:17 +00001395 ExecConfigExprs,
Douglas Gregor0cf55e92012-03-08 01:00:17 +00001396 CloseLoc);
Peter Collingbourne5eec5f02011-02-09 21:12:02 +00001397 if (ECResult.isInvalid())
1398 LHS = ExprError();
1399 else
1400 ExecConfig = ECResult.get();
1401 }
1402 } else {
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00001403 PT.consumeOpen();
1404 Loc = PT.getOpenLocation();
Peter Collingbourne5eec5f02011-02-09 21:12:02 +00001405 }
1406
Benjamin Kramerf0623432012-08-23 22:51:59 +00001407 ExprVector ArgExprs;
Argyrios Kyrtzidis69af9ee2008-08-16 20:03:01 +00001408 CommaLocsTy CommaLocs;
Douglas Gregoreda7e542010-09-18 01:28:11 +00001409
Douglas Gregorcabea402009-09-22 15:41:20 +00001410 if (Tok.is(tok::code_completion)) {
Ahmed Charlesb24b9aa2012-02-25 11:00:22 +00001411 Actions.CodeCompleteCall(getCurScope(), LHS.get(),
Dmitri Gribenkof8579502013-01-12 19:30:44 +00001412 ArrayRef<Expr *>());
Argyrios Kyrtzidis5cec2ae2011-09-04 03:32:15 +00001413 cutOffParsing();
1414 return ExprError();
Douglas Gregorcabea402009-09-22 15:41:20 +00001415 }
Peter Collingbourne5eec5f02011-02-09 21:12:02 +00001416
1417 if (OpKind == tok::l_paren || !LHS.isInvalid()) {
1418 if (Tok.isNot(tok::r_paren)) {
1419 if (ParseExpressionList(ArgExprs, CommaLocs, &Sema::CodeCompleteCall,
1420 LHS.get())) {
Peter Collingbourne5eec5f02011-02-09 21:12:02 +00001421 LHS = ExprError();
1422 }
Chris Lattner0c6c0342006-08-12 18:12:45 +00001423 }
Chris Lattner89c50c62006-08-11 06:41:18 +00001424 }
Sebastian Redl59b5e512008-12-11 21:36:32 +00001425
Chris Lattner89c50c62006-08-11 06:41:18 +00001426 // Match the ')'.
Douglas Gregoreda7e542010-09-18 01:28:11 +00001427 if (LHS.isInvalid()) {
1428 SkipUntil(tok::r_paren);
1429 } else if (Tok.isNot(tok::r_paren)) {
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00001430 PT.consumeClose();
Douglas Gregoreda7e542010-09-18 01:28:11 +00001431 LHS = ExprError();
1432 } else {
1433 assert((ArgExprs.size() == 0 ||
1434 ArgExprs.size()-1 == CommaLocs.size())&&
Chris Lattnere165d942006-08-24 04:40:38 +00001435 "Unexpected number of commas!");
John McCallb268a282010-08-23 23:25:46 +00001436 LHS = Actions.ActOnCallExpr(getCurScope(), LHS.take(), Loc,
Benjamin Kramer62b95d82012-08-23 21:35:17 +00001437 ArgExprs, Tok.getLocation(),
Peter Collingbourne5eec5f02011-02-09 21:12:02 +00001438 ExecConfig);
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00001439 PT.consumeClose();
Chris Lattnere165d942006-08-24 04:40:38 +00001440 }
Mike Stump11289f42009-09-09 15:08:12 +00001441
Chris Lattner89c50c62006-08-11 06:41:18 +00001442 break;
Chris Lattner6d28d9b2006-08-24 03:51:22 +00001443 }
Douglas Gregor308047d2009-09-09 00:23:06 +00001444 case tok::arrow:
1445 case tok::period: {
1446 // postfix-expression: p-e '->' template[opt] id-expression
1447 // postfix-expression: p-e '.' template[opt] id-expression
Chris Lattner6d28d9b2006-08-24 03:51:22 +00001448 tok::TokenKind OpKind = Tok.getKind();
Chris Lattneraf635312006-10-16 06:06:51 +00001449 SourceLocation OpLoc = ConsumeToken(); // Eat the "." or "->" token.
Sebastian Redl59b5e512008-12-11 21:36:32 +00001450
Douglas Gregord8061562009-08-06 03:17:00 +00001451 CXXScopeSpec SS;
John McCallba7bf592010-08-24 05:47:05 +00001452 ParsedType ObjectType;
Douglas Gregore610ada2010-02-24 18:44:31 +00001453 bool MayBePseudoDestructor = false;
David Blaikiebbafb8a2012-03-11 07:00:24 +00001454 if (getLangOpts().CPlusPlus && !LHS.isInvalid()) {
John McCallb268a282010-08-23 23:25:46 +00001455 LHS = Actions.ActOnStartCXXMemberReference(getCurScope(), LHS.take(),
Douglas Gregore610ada2010-02-24 18:44:31 +00001456 OpLoc, OpKind, ObjectType,
1457 MayBePseudoDestructor);
Douglas Gregord8061562009-08-06 03:17:00 +00001458 if (LHS.isInvalid())
1459 break;
Douglas Gregore610ada2010-02-24 18:44:31 +00001460
Douglas Gregordf593fb2011-11-07 17:33:42 +00001461 ParseOptionalCXXScopeSpecifier(SS, ObjectType,
1462 /*EnteringContext=*/false,
Douglas Gregore610ada2010-02-24 18:44:31 +00001463 &MayBePseudoDestructor);
Douglas Gregor205a3612010-05-27 15:25:59 +00001464 if (SS.isNotEmpty())
John McCallba7bf592010-08-24 05:47:05 +00001465 ObjectType = ParsedType();
Douglas Gregord8061562009-08-06 03:17:00 +00001466 }
1467
Douglas Gregor2436e712009-09-17 21:32:03 +00001468 if (Tok.is(tok::code_completion)) {
1469 // Code completion for a member access expression.
Douglas Gregor0be31a22010-07-02 17:43:08 +00001470 Actions.CodeCompleteMemberReferenceExpr(getCurScope(), LHS.get(),
Douglas Gregor2436e712009-09-17 21:32:03 +00001471 OpLoc, OpKind == tok::arrow);
1472
Argyrios Kyrtzidis5cec2ae2011-09-04 03:32:15 +00001473 cutOffParsing();
1474 return ExprError();
Douglas Gregor2436e712009-09-17 21:32:03 +00001475 }
1476
John McCallb268a282010-08-23 23:25:46 +00001477 if (MayBePseudoDestructor && !LHS.isInvalid()) {
1478 LHS = ParseCXXPseudoDestructor(LHS.take(), OpLoc, OpKind, SS,
Douglas Gregore610ada2010-02-24 18:44:31 +00001479 ObjectType);
1480 break;
1481 }
1482
1483 // Either the action has told is that this cannot be a
1484 // pseudo-destructor expression (based on the type of base
1485 // expression), or we didn't see a '~' in the right place. We
1486 // can still parse a destructor name here, but in that case it
1487 // names a real destructor.
Francois Pichet64225792011-01-18 05:04:39 +00001488 // Allow explicit constructor calls in Microsoft mode.
1489 // FIXME: Add support for explicit call of template constructor.
Abramo Bagnara7945c982012-01-27 09:46:47 +00001490 SourceLocation TemplateKWLoc;
Douglas Gregor30d60cb2009-11-03 19:44:04 +00001491 UnqualifiedId Name;
David Blaikiebbafb8a2012-03-11 07:00:24 +00001492 if (getLangOpts().ObjC2 && OpKind == tok::period && Tok.is(tok::kw_class)) {
Douglas Gregor36107ad2012-02-16 18:19:22 +00001493 // Objective-C++:
1494 // After a '.' in a member access expression, treat the keyword
1495 // 'class' as if it were an identifier.
1496 //
1497 // This hack allows property access to the 'class' method because it is
1498 // such a common method name. For other C++ keywords that are
1499 // Objective-C method names, one must use the message send syntax.
1500 IdentifierInfo *Id = Tok.getIdentifierInfo();
1501 SourceLocation Loc = ConsumeToken();
1502 Name.setIdentifier(Id, Loc);
1503 } else if (ParseUnqualifiedId(SS,
1504 /*EnteringContext=*/false,
1505 /*AllowDestructorName=*/true,
1506 /*AllowConstructorName=*/
David Blaikiebbafb8a2012-03-11 07:00:24 +00001507 getLangOpts().MicrosoftExt,
Douglas Gregor36107ad2012-02-16 18:19:22 +00001508 ObjectType, TemplateKWLoc, Name))
Douglas Gregoreda7e542010-09-18 01:28:11 +00001509 LHS = ExprError();
Douglas Gregor30d60cb2009-11-03 19:44:04 +00001510
1511 if (!LHS.isInvalid())
John McCallb268a282010-08-23 23:25:46 +00001512 LHS = Actions.ActOnMemberAccessExpr(getCurScope(), LHS.take(), OpLoc,
Abramo Bagnara7945c982012-01-27 09:46:47 +00001513 OpKind, SS, TemplateKWLoc, Name,
Argyrios Kyrtzidisb6c6a582012-02-07 16:50:53 +00001514 CurParsedObjCImpl ? CurParsedObjCImpl->Dcl : 0,
1515 Tok.is(tok::l_paren));
Chris Lattner89c50c62006-08-11 06:41:18 +00001516 break;
Chris Lattner6d28d9b2006-08-24 03:51:22 +00001517 }
Chris Lattner89c50c62006-08-11 06:41:18 +00001518 case tok::plusplus: // postfix-expression: postfix-expression '++'
1519 case tok::minusminus: // postfix-expression: postfix-expression '--'
Sebastian Redl17f2c7d2008-12-09 13:15:23 +00001520 if (!LHS.isInvalid()) {
Douglas Gregor0be31a22010-07-02 17:43:08 +00001521 LHS = Actions.ActOnPostfixUnaryOp(getCurScope(), Tok.getLocation(),
John McCallb268a282010-08-23 23:25:46 +00001522 Tok.getKind(), LHS.take());
Sebastian Redl511ed552008-11-25 22:21:31 +00001523 }
Chris Lattner89c50c62006-08-11 06:41:18 +00001524 ConsumeToken();
1525 break;
Chris Lattnerf8339772006-08-10 22:01:51 +00001526 }
1527 }
Chris Lattner52a99e52006-08-10 20:56:00 +00001528}
1529
Peter Collingbournee190dee2011-03-11 19:24:49 +00001530/// ParseExprAfterUnaryExprOrTypeTrait - We parsed a typeof/sizeof/alignof/
1531/// vec_step and we are at the start of an expression or a parenthesized
1532/// type-id. OpTok is the operand token (typeof/sizeof/alignof). Returns the
1533/// expression (isCastExpr == false) or the type (isCastExpr == true).
Argyrios Kyrtzidis7bd98442009-05-22 10:22:50 +00001534///
James Dennett3d5e4592012-06-17 04:36:28 +00001535/// \verbatim
Argyrios Kyrtzidis7bd98442009-05-22 10:22:50 +00001536/// unary-expression: [C99 6.5.3]
1537/// 'sizeof' unary-expression
1538/// 'sizeof' '(' type-name ')'
1539/// [GNU] '__alignof' unary-expression
1540/// [GNU] '__alignof' '(' type-name ')'
Jordan Rose58d54722012-06-30 21:33:57 +00001541/// [C11] '_Alignof' '(' type-name ')'
Argyrios Kyrtzidis7bd98442009-05-22 10:22:50 +00001542/// [C++0x] 'alignof' '(' type-id ')'
1543///
1544/// [GNU] typeof-specifier:
1545/// typeof ( expressions )
1546/// typeof ( type-name )
1547/// [GNU/C++] typeof unary-expression
1548///
Peter Collingbournee190dee2011-03-11 19:24:49 +00001549/// [OpenCL 1.1 6.11.12] vec_step built-in function:
1550/// vec_step ( expressions )
1551/// vec_step ( type-name )
James Dennett3d5e4592012-06-17 04:36:28 +00001552/// \endverbatim
John McCalldadc5752010-08-24 06:29:42 +00001553ExprResult
Peter Collingbournee190dee2011-03-11 19:24:49 +00001554Parser::ParseExprAfterUnaryExprOrTypeTrait(const Token &OpTok,
1555 bool &isCastExpr,
1556 ParsedType &CastTy,
1557 SourceRange &CastRange) {
Mike Stump11289f42009-09-09 15:08:12 +00001558
1559 assert((OpTok.is(tok::kw_typeof) || OpTok.is(tok::kw_sizeof) ||
Peter Collingbournee190dee2011-03-11 19:24:49 +00001560 OpTok.is(tok::kw___alignof) || OpTok.is(tok::kw_alignof) ||
Jordan Rose58d54722012-06-30 21:33:57 +00001561 OpTok.is(tok::kw__Alignof) || OpTok.is(tok::kw_vec_step)) &&
Peter Collingbournee190dee2011-03-11 19:24:49 +00001562 "Not a typeof/sizeof/alignof/vec_step expression!");
Argyrios Kyrtzidis7bd98442009-05-22 10:22:50 +00001563
John McCalldadc5752010-08-24 06:29:42 +00001564 ExprResult Operand;
Mike Stump11289f42009-09-09 15:08:12 +00001565
Argyrios Kyrtzidis7bd98442009-05-22 10:22:50 +00001566 // If the operand doesn't start with an '(', it must be an expression.
1567 if (Tok.isNot(tok::l_paren)) {
1568 isCastExpr = false;
David Blaikiebbafb8a2012-03-11 07:00:24 +00001569 if (OpTok.is(tok::kw_typeof) && !getLangOpts().CPlusPlus) {
Argyrios Kyrtzidis7bd98442009-05-22 10:22:50 +00001570 Diag(Tok,diag::err_expected_lparen_after_id) << OpTok.getIdentifierInfo();
1571 return ExprError();
1572 }
Mike Stump11289f42009-09-09 15:08:12 +00001573
Argyrios Kyrtzidis7bd98442009-05-22 10:22:50 +00001574 Operand = ParseCastExpression(true/*isUnaryExpression*/);
Argyrios Kyrtzidis7bd98442009-05-22 10:22:50 +00001575 } else {
1576 // If it starts with a '(', we know that it is either a parenthesized
1577 // type-name, or it is a unary-expression that starts with a compound
1578 // literal, or starts with a primary-expression that is a parenthesized
1579 // expression.
1580 ParenParseOption ExprType = CastExpr;
1581 SourceLocation LParenLoc = Tok.getLocation(), RParenLoc;
Mike Stump11289f42009-09-09 15:08:12 +00001582
Fariborz Jahanian906d8712009-11-25 01:26:41 +00001583 Operand = ParseParenExpression(ExprType, true/*stopIfCastExpr*/,
Argyrios Kyrtzidis7192a3b2011-07-01 22:22:59 +00001584 false, CastTy, RParenLoc);
Argyrios Kyrtzidis7bd98442009-05-22 10:22:50 +00001585 CastRange = SourceRange(LParenLoc, RParenLoc);
1586
1587 // If ParseParenExpression parsed a '(typename)' sequence only, then this is
1588 // a type.
1589 if (ExprType == CastExpr) {
1590 isCastExpr = true;
1591 return ExprEmpty();
1592 }
1593
David Blaikiebbafb8a2012-03-11 07:00:24 +00001594 if (getLangOpts().CPlusPlus || OpTok.isNot(tok::kw_typeof)) {
Douglas Gregor5dc05532010-07-28 18:22:12 +00001595 // GNU typeof in C requires the expression to be parenthesized. Not so for
1596 // sizeof/alignof or in C++. Therefore, the parenthesized expression is
1597 // the start of a unary-expression, but doesn't include any postfix
1598 // pieces. Parse these now if present.
John McCall3669c802010-08-24 23:41:43 +00001599 if (!Operand.isInvalid())
1600 Operand = ParsePostfixExpressionSuffix(Operand.get());
Douglas Gregor5dc05532010-07-28 18:22:12 +00001601 }
Argyrios Kyrtzidis7bd98442009-05-22 10:22:50 +00001602 }
1603
1604 // If we get here, the operand to the typeof/sizeof/alignof was an expresion.
1605 isCastExpr = false;
Benjamin Kramer62b95d82012-08-23 21:35:17 +00001606 return Operand;
Argyrios Kyrtzidis7bd98442009-05-22 10:22:50 +00001607}
1608
Chris Lattner20c6a452006-08-12 17:40:43 +00001609
James Dennett3d5e4592012-06-17 04:36:28 +00001610/// \brief Parse a sizeof or alignof expression.
1611///
1612/// \verbatim
Chris Lattner81b576e2006-08-11 02:13:20 +00001613/// unary-expression: [C99 6.5.3]
1614/// 'sizeof' unary-expression
1615/// 'sizeof' '(' type-name ')'
Richard Smith7dd5fe52013-01-29 10:18:18 +00001616/// [C++11] 'sizeof' '...' '(' identifier ')'
Chris Lattner81b576e2006-08-11 02:13:20 +00001617/// [GNU] '__alignof' unary-expression
1618/// [GNU] '__alignof' '(' type-name ')'
Jordan Rose58d54722012-06-30 21:33:57 +00001619/// [C11] '_Alignof' '(' type-name ')'
Richard Smith7dd5fe52013-01-29 10:18:18 +00001620/// [C++11] 'alignof' '(' type-id ')'
James Dennett3d5e4592012-06-17 04:36:28 +00001621/// \endverbatim
Peter Collingbournee190dee2011-03-11 19:24:49 +00001622ExprResult Parser::ParseUnaryExprOrTypeTraitExpression() {
Jordan Rose58d54722012-06-30 21:33:57 +00001623 assert((Tok.is(tok::kw_sizeof) || Tok.is(tok::kw___alignof) ||
1624 Tok.is(tok::kw_alignof) || Tok.is(tok::kw__Alignof) ||
1625 Tok.is(tok::kw_vec_step)) &&
Peter Collingbournee190dee2011-03-11 19:24:49 +00001626 "Not a sizeof/alignof/vec_step expression!");
Chris Lattner146762e2007-07-20 16:59:19 +00001627 Token OpTok = Tok;
Chris Lattner81b576e2006-08-11 02:13:20 +00001628 ConsumeToken();
Mike Stump11289f42009-09-09 15:08:12 +00001629
Richard Smith7dd5fe52013-01-29 10:18:18 +00001630 // [C++11] 'sizeof' '...' '(' identifier ')'
Douglas Gregor820ba7b2011-01-04 17:33:58 +00001631 if (Tok.is(tok::ellipsis) && OpTok.is(tok::kw_sizeof)) {
1632 SourceLocation EllipsisLoc = ConsumeToken();
1633 SourceLocation LParenLoc, RParenLoc;
1634 IdentifierInfo *Name = 0;
1635 SourceLocation NameLoc;
1636 if (Tok.is(tok::l_paren)) {
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00001637 BalancedDelimiterTracker T(*this, tok::l_paren);
1638 T.consumeOpen();
1639 LParenLoc = T.getOpenLocation();
Douglas Gregor820ba7b2011-01-04 17:33:58 +00001640 if (Tok.is(tok::identifier)) {
1641 Name = Tok.getIdentifierInfo();
1642 NameLoc = ConsumeToken();
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00001643 T.consumeClose();
1644 RParenLoc = T.getCloseLocation();
Douglas Gregor820ba7b2011-01-04 17:33:58 +00001645 if (RParenLoc.isInvalid())
1646 RParenLoc = PP.getLocForEndOfToken(NameLoc);
1647 } else {
1648 Diag(Tok, diag::err_expected_parameter_pack);
1649 SkipUntil(tok::r_paren);
1650 }
1651 } else if (Tok.is(tok::identifier)) {
1652 Name = Tok.getIdentifierInfo();
1653 NameLoc = ConsumeToken();
1654 LParenLoc = PP.getLocForEndOfToken(EllipsisLoc);
1655 RParenLoc = PP.getLocForEndOfToken(NameLoc);
1656 Diag(LParenLoc, diag::err_paren_sizeof_parameter_pack)
1657 << Name
1658 << FixItHint::CreateInsertion(LParenLoc, "(")
1659 << FixItHint::CreateInsertion(RParenLoc, ")");
1660 } else {
1661 Diag(Tok, diag::err_sizeof_parameter_pack);
1662 }
1663
1664 if (!Name)
1665 return ExprError();
1666
1667 return Actions.ActOnSizeofParameterPackExpr(getCurScope(),
1668 OpTok.getLocation(),
1669 *Name, NameLoc,
1670 RParenLoc);
1671 }
Richard Smithb15c11c2011-10-17 23:06:20 +00001672
Jordan Rose58d54722012-06-30 21:33:57 +00001673 if (OpTok.is(tok::kw_alignof) || OpTok.is(tok::kw__Alignof))
Richard Smithb15c11c2011-10-17 23:06:20 +00001674 Diag(OpTok, diag::warn_cxx98_compat_alignof);
1675
Eli Friedman15681d62012-09-26 04:34:21 +00001676 EnterExpressionEvaluationContext Unevaluated(Actions, Sema::Unevaluated,
1677 Sema::ReuseLambdaContextDecl);
Eli Friedmane0afc982012-01-21 01:01:51 +00001678
Argyrios Kyrtzidis7bd98442009-05-22 10:22:50 +00001679 bool isCastExpr;
John McCallba7bf592010-08-24 05:47:05 +00001680 ParsedType CastTy;
Argyrios Kyrtzidis7bd98442009-05-22 10:22:50 +00001681 SourceRange CastRange;
Peter Collingbournee190dee2011-03-11 19:24:49 +00001682 ExprResult Operand = ParseExprAfterUnaryExprOrTypeTrait(OpTok,
1683 isCastExpr,
1684 CastTy,
1685 CastRange);
1686
1687 UnaryExprOrTypeTrait ExprKind = UETT_SizeOf;
Jordan Rose58d54722012-06-30 21:33:57 +00001688 if (OpTok.is(tok::kw_alignof) || OpTok.is(tok::kw___alignof) ||
1689 OpTok.is(tok::kw__Alignof))
Peter Collingbournee190dee2011-03-11 19:24:49 +00001690 ExprKind = UETT_AlignOf;
1691 else if (OpTok.is(tok::kw_vec_step))
1692 ExprKind = UETT_VecStep;
Sebastian Redl90893182008-12-11 22:33:27 +00001693
Argyrios Kyrtzidis7bd98442009-05-22 10:22:50 +00001694 if (isCastExpr)
Peter Collingbournee190dee2011-03-11 19:24:49 +00001695 return Actions.ActOnUnaryExprOrTypeTraitExpr(OpTok.getLocation(),
1696 ExprKind,
1697 /*isType=*/true,
1698 CastTy.getAsOpaquePtr(),
1699 CastRange);
Sebastian Redl90893182008-12-11 22:33:27 +00001700
Richard Smith7dd5fe52013-01-29 10:18:18 +00001701 if (OpTok.is(tok::kw_alignof) || OpTok.is(tok::kw__Alignof))
1702 Diag(OpTok, diag::ext_alignof_expr) << OpTok.getIdentifierInfo();
1703
Chris Lattner26115ac2006-08-24 06:10:04 +00001704 // If we get here, the operand to the sizeof/alignof was an expresion.
Sebastian Redl17f2c7d2008-12-09 13:15:23 +00001705 if (!Operand.isInvalid())
Peter Collingbournee190dee2011-03-11 19:24:49 +00001706 Operand = Actions.ActOnUnaryExprOrTypeTraitExpr(OpTok.getLocation(),
1707 ExprKind,
1708 /*isType=*/false,
1709 Operand.release(),
1710 CastRange);
Benjamin Kramer62b95d82012-08-23 21:35:17 +00001711 return Operand;
Chris Lattner81b576e2006-08-11 02:13:20 +00001712}
1713
Chris Lattner11124352006-08-12 19:16:08 +00001714/// ParseBuiltinPrimaryExpression
1715///
James Dennett3d5e4592012-06-17 04:36:28 +00001716/// \verbatim
Chris Lattner11124352006-08-12 19:16:08 +00001717/// primary-expression: [C99 6.5.1]
1718/// [GNU] '__builtin_va_arg' '(' assignment-expression ',' type-name ')'
1719/// [GNU] '__builtin_offsetof' '(' type-name ',' offsetof-member-designator')'
1720/// [GNU] '__builtin_choose_expr' '(' assign-expr ',' assign-expr ','
1721/// assign-expr ')'
1722/// [GNU] '__builtin_types_compatible_p' '(' type-name ',' type-name ')'
Peter Collingbourne62c21982011-11-05 03:47:48 +00001723/// [OCL] '__builtin_astype' '(' assignment-expression ',' type-name ')'
Mike Stump11289f42009-09-09 15:08:12 +00001724///
Chris Lattner11124352006-08-12 19:16:08 +00001725/// [GNU] offsetof-member-designator:
1726/// [GNU] identifier
1727/// [GNU] offsetof-member-designator '.' identifier
1728/// [GNU] offsetof-member-designator '[' expression ']'
James Dennett3d5e4592012-06-17 04:36:28 +00001729/// \endverbatim
John McCalldadc5752010-08-24 06:29:42 +00001730ExprResult Parser::ParseBuiltinPrimaryExpression() {
1731 ExprResult Res;
Chris Lattner11124352006-08-12 19:16:08 +00001732 const IdentifierInfo *BuiltinII = Tok.getIdentifierInfo();
1733
1734 tok::TokenKind T = Tok.getKind();
Chris Lattneraf635312006-10-16 06:06:51 +00001735 SourceLocation StartLoc = ConsumeToken(); // Eat the builtin identifier.
Chris Lattner11124352006-08-12 19:16:08 +00001736
1737 // All of these start with an open paren.
Sebastian Redl90893182008-12-11 22:33:27 +00001738 if (Tok.isNot(tok::l_paren))
1739 return ExprError(Diag(Tok, diag::err_expected_lparen_after_id)
1740 << BuiltinII);
1741
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00001742 BalancedDelimiterTracker PT(*this, tok::l_paren);
1743 PT.consumeOpen();
1744
Chris Lattner6d28d9b2006-08-24 03:51:22 +00001745 // TODO: Build AST.
1746
Chris Lattner11124352006-08-12 19:16:08 +00001747 switch (T) {
David Blaikie83d382b2011-09-23 05:06:16 +00001748 default: llvm_unreachable("Not a builtin primary expression!");
Anders Carlsson7e13ab82007-10-15 20:28:48 +00001749 case tok::kw___builtin_va_arg: {
John McCalldadc5752010-08-24 06:29:42 +00001750 ExprResult Expr(ParseAssignmentExpression());
Chris Lattner0be454e2006-08-12 19:30:51 +00001751
Chris Lattner6d7e6342006-08-15 03:41:14 +00001752 if (ExpectAndConsume(tok::comma, diag::err_expected_comma, "",tok::r_paren))
Douglas Gregoreda7e542010-09-18 01:28:11 +00001753 Expr = ExprError();
Chris Lattner0be454e2006-08-12 19:30:51 +00001754
Douglas Gregor220cac52009-02-18 17:45:20 +00001755 TypeResult Ty = ParseTypeName();
Sebastian Redl17f2c7d2008-12-09 13:15:23 +00001756
Anders Carlsson7e13ab82007-10-15 20:28:48 +00001757 if (Tok.isNot(tok::r_paren)) {
1758 Diag(Tok, diag::err_expected_rparen);
Douglas Gregoreda7e542010-09-18 01:28:11 +00001759 Expr = ExprError();
Anders Carlsson7e13ab82007-10-15 20:28:48 +00001760 }
Douglas Gregoreda7e542010-09-18 01:28:11 +00001761
1762 if (Expr.isInvalid() || Ty.isInvalid())
Douglas Gregor220cac52009-02-18 17:45:20 +00001763 Res = ExprError();
1764 else
John McCallb268a282010-08-23 23:25:46 +00001765 Res = Actions.ActOnVAArg(StartLoc, Expr.take(), Ty.get(), ConsumeParen());
Chris Lattner11124352006-08-12 19:16:08 +00001766 break;
Anders Carlsson7e13ab82007-10-15 20:28:48 +00001767 }
Chris Lattner687d6092007-08-30 15:51:11 +00001768 case tok::kw___builtin_offsetof: {
Chris Lattnere4ee2df2007-08-30 17:08:45 +00001769 SourceLocation TypeLoc = Tok.getLocation();
Douglas Gregor220cac52009-02-18 17:45:20 +00001770 TypeResult Ty = ParseTypeName();
Chris Lattnerf37e09e2009-03-24 17:21:43 +00001771 if (Ty.isInvalid()) {
1772 SkipUntil(tok::r_paren);
1773 return ExprError();
1774 }
Mike Stump11289f42009-09-09 15:08:12 +00001775
Chris Lattner6d7e6342006-08-15 03:41:14 +00001776 if (ExpectAndConsume(tok::comma, diag::err_expected_comma, "",tok::r_paren))
Sebastian Redl90893182008-12-11 22:33:27 +00001777 return ExprError();
1778
Chris Lattner11124352006-08-12 19:16:08 +00001779 // We must have at least one identifier here.
Chris Lattnerfeb00b62007-10-09 17:41:39 +00001780 if (Tok.isNot(tok::identifier)) {
Chris Lattner687d6092007-08-30 15:51:11 +00001781 Diag(Tok, diag::err_expected_ident);
1782 SkipUntil(tok::r_paren);
Sebastian Redl90893182008-12-11 22:33:27 +00001783 return ExprError();
Chris Lattner687d6092007-08-30 15:51:11 +00001784 }
Sebastian Redl90893182008-12-11 22:33:27 +00001785
Chris Lattner687d6092007-08-30 15:51:11 +00001786 // Keep track of the various subcomponents we see.
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001787 SmallVector<Sema::OffsetOfComponent, 4> Comps;
Sebastian Redl90893182008-12-11 22:33:27 +00001788
John McCallfaf5fb42010-08-26 23:41:50 +00001789 Comps.push_back(Sema::OffsetOfComponent());
Chris Lattner687d6092007-08-30 15:51:11 +00001790 Comps.back().isBrackets = false;
1791 Comps.back().U.IdentInfo = Tok.getIdentifierInfo();
1792 Comps.back().LocStart = Comps.back().LocEnd = ConsumeToken();
Chris Lattnerdbb2a462006-08-12 19:26:13 +00001793
Sebastian Redl511ed552008-11-25 22:21:31 +00001794 // FIXME: This loop leaks the index expressions on error.
Chris Lattner11124352006-08-12 19:16:08 +00001795 while (1) {
Chris Lattnerfeb00b62007-10-09 17:41:39 +00001796 if (Tok.is(tok::period)) {
Chris Lattner11124352006-08-12 19:16:08 +00001797 // offsetof-member-designator: offsetof-member-designator '.' identifier
John McCallfaf5fb42010-08-26 23:41:50 +00001798 Comps.push_back(Sema::OffsetOfComponent());
Chris Lattner687d6092007-08-30 15:51:11 +00001799 Comps.back().isBrackets = false;
1800 Comps.back().LocStart = ConsumeToken();
Sebastian Redl90893182008-12-11 22:33:27 +00001801
Chris Lattnerfeb00b62007-10-09 17:41:39 +00001802 if (Tok.isNot(tok::identifier)) {
Chris Lattner687d6092007-08-30 15:51:11 +00001803 Diag(Tok, diag::err_expected_ident);
1804 SkipUntil(tok::r_paren);
Sebastian Redl90893182008-12-11 22:33:27 +00001805 return ExprError();
Chris Lattner687d6092007-08-30 15:51:11 +00001806 }
1807 Comps.back().U.IdentInfo = Tok.getIdentifierInfo();
1808 Comps.back().LocEnd = ConsumeToken();
Sebastian Redl90893182008-12-11 22:33:27 +00001809
Chris Lattnerfeb00b62007-10-09 17:41:39 +00001810 } else if (Tok.is(tok::l_square)) {
Richard Smith7bdcc4a2012-04-10 01:32:12 +00001811 if (CheckProhibitedCXX11Attribute())
1812 return ExprError();
1813
Chris Lattner11124352006-08-12 19:16:08 +00001814 // offsetof-member-designator: offsetof-member-design '[' expression ']'
John McCallfaf5fb42010-08-26 23:41:50 +00001815 Comps.push_back(Sema::OffsetOfComponent());
Chris Lattner687d6092007-08-30 15:51:11 +00001816 Comps.back().isBrackets = true;
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00001817 BalancedDelimiterTracker ST(*this, tok::l_square);
1818 ST.consumeOpen();
1819 Comps.back().LocStart = ST.getOpenLocation();
Chris Lattner11124352006-08-12 19:16:08 +00001820 Res = ParseExpression();
Sebastian Redl17f2c7d2008-12-09 13:15:23 +00001821 if (Res.isInvalid()) {
Chris Lattner11124352006-08-12 19:16:08 +00001822 SkipUntil(tok::r_paren);
Benjamin Kramer62b95d82012-08-23 21:35:17 +00001823 return Res;
Chris Lattner11124352006-08-12 19:16:08 +00001824 }
Sebastian Redld9f7b1c2008-12-10 00:02:53 +00001825 Comps.back().U.E = Res.release();
Chris Lattner11124352006-08-12 19:16:08 +00001826
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00001827 ST.consumeClose();
1828 Comps.back().LocEnd = ST.getCloseLocation();
Eli Friedman5e774b12009-06-27 20:38:33 +00001829 } else {
1830 if (Tok.isNot(tok::r_paren)) {
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00001831 PT.consumeClose();
Douglas Gregor220cac52009-02-18 17:45:20 +00001832 Res = ExprError();
Eli Friedman5e774b12009-06-27 20:38:33 +00001833 } else if (Ty.isInvalid()) {
1834 Res = ExprError();
1835 } else {
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00001836 PT.consumeClose();
Douglas Gregor0be31a22010-07-02 17:43:08 +00001837 Res = Actions.ActOnBuiltinOffsetOf(getCurScope(), StartLoc, TypeLoc,
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00001838 Ty.get(), &Comps[0], Comps.size(),
1839 PT.getCloseLocation());
Eli Friedman5e774b12009-06-27 20:38:33 +00001840 }
Chris Lattner5ad4f462007-08-30 15:52:49 +00001841 break;
Chris Lattner11124352006-08-12 19:16:08 +00001842 }
1843 }
1844 break;
Chris Lattner687d6092007-08-30 15:51:11 +00001845 }
Steve Naroff9efdabc2007-08-03 21:21:27 +00001846 case tok::kw___builtin_choose_expr: {
John McCalldadc5752010-08-24 06:29:42 +00001847 ExprResult Cond(ParseAssignmentExpression());
Sebastian Redl17f2c7d2008-12-09 13:15:23 +00001848 if (Cond.isInvalid()) {
Steve Naroff9efdabc2007-08-03 21:21:27 +00001849 SkipUntil(tok::r_paren);
Benjamin Kramer62b95d82012-08-23 21:35:17 +00001850 return Cond;
Steve Naroff9efdabc2007-08-03 21:21:27 +00001851 }
Chris Lattner6d7e6342006-08-15 03:41:14 +00001852 if (ExpectAndConsume(tok::comma, diag::err_expected_comma, "",tok::r_paren))
Sebastian Redl90893182008-12-11 22:33:27 +00001853 return ExprError();
1854
John McCalldadc5752010-08-24 06:29:42 +00001855 ExprResult Expr1(ParseAssignmentExpression());
Sebastian Redl17f2c7d2008-12-09 13:15:23 +00001856 if (Expr1.isInvalid()) {
Steve Naroff9efdabc2007-08-03 21:21:27 +00001857 SkipUntil(tok::r_paren);
Benjamin Kramer62b95d82012-08-23 21:35:17 +00001858 return Expr1;
Sebastian Redl17f2c7d2008-12-09 13:15:23 +00001859 }
Chris Lattner6d7e6342006-08-15 03:41:14 +00001860 if (ExpectAndConsume(tok::comma, diag::err_expected_comma, "",tok::r_paren))
Sebastian Redl90893182008-12-11 22:33:27 +00001861 return ExprError();
1862
John McCalldadc5752010-08-24 06:29:42 +00001863 ExprResult Expr2(ParseAssignmentExpression());
Sebastian Redl17f2c7d2008-12-09 13:15:23 +00001864 if (Expr2.isInvalid()) {
Steve Naroff9efdabc2007-08-03 21:21:27 +00001865 SkipUntil(tok::r_paren);
Benjamin Kramer62b95d82012-08-23 21:35:17 +00001866 return Expr2;
Sebastian Redl17f2c7d2008-12-09 13:15:23 +00001867 }
Chris Lattnerfeb00b62007-10-09 17:41:39 +00001868 if (Tok.isNot(tok::r_paren)) {
Steve Naroff9efdabc2007-08-03 21:21:27 +00001869 Diag(Tok, diag::err_expected_rparen);
Sebastian Redl90893182008-12-11 22:33:27 +00001870 return ExprError();
Steve Naroff9efdabc2007-08-03 21:21:27 +00001871 }
John McCallb268a282010-08-23 23:25:46 +00001872 Res = Actions.ActOnChooseExpr(StartLoc, Cond.take(), Expr1.take(),
1873 Expr2.take(), ConsumeParen());
Chris Lattner5ad4f462007-08-30 15:52:49 +00001874 break;
Steve Naroff9efdabc2007-08-03 21:21:27 +00001875 }
Tanya Lattner55808c12011-06-04 00:47:47 +00001876 case tok::kw___builtin_astype: {
1877 // The first argument is an expression to be converted, followed by a comma.
1878 ExprResult Expr(ParseAssignmentExpression());
1879 if (Expr.isInvalid()) {
1880 SkipUntil(tok::r_paren);
1881 return ExprError();
1882 }
1883
1884 if (ExpectAndConsume(tok::comma, diag::err_expected_comma, "",
1885 tok::r_paren))
1886 return ExprError();
1887
1888 // Second argument is the type to bitcast to.
1889 TypeResult DestTy = ParseTypeName();
1890 if (DestTy.isInvalid())
1891 return ExprError();
1892
1893 // Attempt to consume the r-paren.
1894 if (Tok.isNot(tok::r_paren)) {
1895 Diag(Tok, diag::err_expected_rparen);
1896 SkipUntil(tok::r_paren);
1897 return ExprError();
1898 }
1899
1900 Res = Actions.ActOnAsTypeExpr(Expr.take(), DestTy.get(), StartLoc,
1901 ConsumeParen());
1902 break;
Sebastian Redl59b5e512008-12-11 21:36:32 +00001903 }
Chandler Carruth904cb142011-07-08 04:59:44 +00001904 }
Sebastian Redl59b5e512008-12-11 21:36:32 +00001905
John McCallb268a282010-08-23 23:25:46 +00001906 if (Res.isInvalid())
1907 return ExprError();
1908
Chris Lattner11124352006-08-12 19:16:08 +00001909 // These can be followed by postfix-expr pieces because they are
1910 // primary-expressions.
John McCallb268a282010-08-23 23:25:46 +00001911 return ParsePostfixExpressionSuffix(Res.take());
Chris Lattner11124352006-08-12 19:16:08 +00001912}
1913
Chris Lattner4add4e62006-08-11 01:33:00 +00001914/// ParseParenExpression - This parses the unit that starts with a '(' token,
1915/// based on what is allowed by ExprType. The actual thing parsed is returned
Argyrios Kyrtzidis9a9c0f42009-05-22 10:23:40 +00001916/// in ExprType. If stopIfCastExpr is true, it will only return the parsed type,
1917/// not the parsed cast-expression.
Chris Lattner4add4e62006-08-11 01:33:00 +00001918///
James Dennett3d5e4592012-06-17 04:36:28 +00001919/// \verbatim
Chris Lattner4add4e62006-08-11 01:33:00 +00001920/// primary-expression: [C99 6.5.1]
Chris Lattnerc951dae2006-08-10 04:23:57 +00001921/// '(' expression ')'
Chris Lattnerf8339772006-08-10 22:01:51 +00001922/// [GNU] '(' compound-statement ')' (if !ParenExprOnly)
1923/// postfix-expression: [C99 6.5.2]
1924/// '(' type-name ')' '{' initializer-list '}'
1925/// '(' type-name ')' '{' initializer-list ',' '}'
Chris Lattner4add4e62006-08-11 01:33:00 +00001926/// cast-expression: [C99 6.5.4]
1927/// '(' type-name ')' cast-expression
John McCall31168b02011-06-15 23:02:42 +00001928/// [ARC] bridged-cast-expression
1929///
1930/// [ARC] bridged-cast-expression:
1931/// (__bridge type-name) cast-expression
1932/// (__bridge_transfer type-name) cast-expression
1933/// (__bridge_retained type-name) cast-expression
James Dennett3d5e4592012-06-17 04:36:28 +00001934/// \endverbatim
John McCalldadc5752010-08-24 06:29:42 +00001935ExprResult
Argyrios Kyrtzidis9a9c0f42009-05-22 10:23:40 +00001936Parser::ParseParenExpression(ParenParseOption &ExprType, bool stopIfCastExpr,
Argyrios Kyrtzidis7192a3b2011-07-01 22:22:59 +00001937 bool isTypeCast, ParsedType &CastTy,
Nate Begeman5ec4b312009-08-10 23:49:36 +00001938 SourceLocation &RParenLoc) {
Chris Lattnerfeb00b62007-10-09 17:41:39 +00001939 assert(Tok.is(tok::l_paren) && "Not a paren expr!");
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00001940 BalancedDelimiterTracker T(*this, tok::l_paren);
1941 if (T.consumeOpen())
1942 return ExprError();
1943 SourceLocation OpenLoc = T.getOpenLocation();
1944
John McCalldadc5752010-08-24 06:29:42 +00001945 ExprResult Result(true);
Argyrios Kyrtzidis12179bc2009-05-22 10:24:42 +00001946 bool isAmbiguousTypeId;
John McCallba7bf592010-08-24 05:47:05 +00001947 CastTy = ParsedType();
Sebastian Redl90893182008-12-11 22:33:27 +00001948
Douglas Gregor5e35d592010-09-14 23:59:36 +00001949 if (Tok.is(tok::code_completion)) {
1950 Actions.CodeCompleteOrdinaryName(getCurScope(),
1951 ExprType >= CompoundLiteral? Sema::PCC_ParenthesizedExpression
1952 : Sema::PCC_Expression);
Argyrios Kyrtzidis5cec2ae2011-09-04 03:32:15 +00001953 cutOffParsing();
Douglas Gregor5e35d592010-09-14 23:59:36 +00001954 return ExprError();
1955 }
John McCallc5e6b972011-04-06 02:35:25 +00001956
Fariborz Jahanian103ae5c2011-12-19 21:06:15 +00001957 // Diagnose use of bridge casts in non-arc mode.
David Blaikiebbafb8a2012-03-11 07:00:24 +00001958 bool BridgeCast = (getLangOpts().ObjC2 &&
Fariborz Jahanian103ae5c2011-12-19 21:06:15 +00001959 (Tok.is(tok::kw___bridge) ||
1960 Tok.is(tok::kw___bridge_transfer) ||
1961 Tok.is(tok::kw___bridge_retained) ||
1962 Tok.is(tok::kw___bridge_retain)));
David Blaikiebbafb8a2012-03-11 07:00:24 +00001963 if (BridgeCast && !getLangOpts().ObjCAutoRefCount) {
Ted Kremenekdd5d0dc2011-12-20 01:03:40 +00001964 StringRef BridgeCastName = Tok.getName();
Fariborz Jahanian103ae5c2011-12-19 21:06:15 +00001965 SourceLocation BridgeKeywordLoc = ConsumeToken();
1966 if (!PP.getSourceManager().isInSystemHeader(BridgeKeywordLoc))
Ted Kremenek084e1b42012-02-18 04:42:38 +00001967 Diag(BridgeKeywordLoc, diag::warn_arc_bridge_cast_nonarc)
Ted Kremenekdd5d0dc2011-12-20 01:03:40 +00001968 << BridgeCastName
1969 << FixItHint::CreateReplacement(BridgeKeywordLoc, "");
Fariborz Jahanian103ae5c2011-12-19 21:06:15 +00001970 BridgeCast = false;
1971 }
1972
John McCallc5e6b972011-04-06 02:35:25 +00001973 // None of these cases should fall through with an invalid Result
1974 // unless they've already reported an error.
Chris Lattnerfeb00b62007-10-09 17:41:39 +00001975 if (ExprType >= CompoundStmt && Tok.is(tok::l_brace)) {
Chris Lattnerf8339772006-08-10 22:01:51 +00001976 Diag(Tok, diag::ext_gnu_statement_expr);
John McCall3abee492012-04-04 01:27:53 +00001977 Actions.ActOnStartStmtExpr();
1978
Richard Smithc202b282012-04-14 00:33:13 +00001979 StmtResult Stmt(ParseCompoundStatement(true));
Chris Lattner4add4e62006-08-11 01:33:00 +00001980 ExprType = CompoundStmt;
Sebastian Redl17f2c7d2008-12-09 13:15:23 +00001981
Chris Lattner366727f2007-07-24 16:58:17 +00001982 // If the substmt parsed correctly, build the AST node.
John McCall3abee492012-04-04 01:27:53 +00001983 if (!Stmt.isInvalid()) {
John McCallb268a282010-08-23 23:25:46 +00001984 Result = Actions.ActOnStmtExpr(OpenLoc, Stmt.take(), Tok.getLocation());
John McCall3abee492012-04-04 01:27:53 +00001985 } else {
1986 Actions.ActOnStmtExprError();
1987 }
Fariborz Jahanian103ae5c2011-12-19 21:06:15 +00001988 } else if (ExprType >= CompoundLiteral && BridgeCast) {
John McCall0c07bee2011-06-17 21:56:12 +00001989 tok::TokenKind tokenKind = Tok.getKind();
1990 SourceLocation BridgeKeywordLoc = ConsumeToken();
1991
John McCall31168b02011-06-15 23:02:42 +00001992 // Parse an Objective-C ARC ownership cast expression.
1993 ObjCBridgeCastKind Kind;
John McCall0c07bee2011-06-17 21:56:12 +00001994 if (tokenKind == tok::kw___bridge)
John McCall31168b02011-06-15 23:02:42 +00001995 Kind = OBC_Bridge;
John McCall0c07bee2011-06-17 21:56:12 +00001996 else if (tokenKind == tok::kw___bridge_transfer)
John McCall31168b02011-06-15 23:02:42 +00001997 Kind = OBC_BridgeTransfer;
John McCall0c07bee2011-06-17 21:56:12 +00001998 else if (tokenKind == tok::kw___bridge_retained)
John McCall31168b02011-06-15 23:02:42 +00001999 Kind = OBC_BridgeRetained;
John McCall0c07bee2011-06-17 21:56:12 +00002000 else {
2001 // As a hopefully temporary workaround, allow __bridge_retain as
2002 // a synonym for __bridge_retained, but only in system headers.
2003 assert(tokenKind == tok::kw___bridge_retain);
2004 Kind = OBC_BridgeRetained;
2005 if (!PP.getSourceManager().isInSystemHeader(BridgeKeywordLoc))
2006 Diag(BridgeKeywordLoc, diag::err_arc_bridge_retain)
2007 << FixItHint::CreateReplacement(BridgeKeywordLoc,
2008 "__bridge_retained");
2009 }
John McCall31168b02011-06-15 23:02:42 +00002010
John McCall31168b02011-06-15 23:02:42 +00002011 TypeResult Ty = ParseTypeName();
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00002012 T.consumeClose();
2013 RParenLoc = T.getCloseLocation();
Argyrios Kyrtzidis7192a3b2011-07-01 22:22:59 +00002014 ExprResult SubExpr = ParseCastExpression(/*isUnaryExpression=*/false);
John McCall31168b02011-06-15 23:02:42 +00002015
2016 if (Ty.isInvalid() || SubExpr.isInvalid())
2017 return ExprError();
2018
2019 return Actions.ActOnObjCBridgedCast(getCurScope(), OpenLoc, Kind,
2020 BridgeKeywordLoc, Ty.get(),
2021 RParenLoc, SubExpr.get());
Argyrios Kyrtzidis12179bc2009-05-22 10:24:42 +00002022 } else if (ExprType >= CompoundLiteral &&
2023 isTypeIdInParens(isAmbiguousTypeId)) {
Mike Stump11289f42009-09-09 15:08:12 +00002024
Chris Lattner6c3f05d2006-08-12 16:54:25 +00002025 // Otherwise, this is a compound literal expression or cast expression.
Mike Stump11289f42009-09-09 15:08:12 +00002026
Argyrios Kyrtzidis12179bc2009-05-22 10:24:42 +00002027 // In C++, if the type-id is ambiguous we disambiguate based on context.
2028 // If stopIfCastExpr is true the context is a typeof/sizeof/alignof
2029 // in which case we should treat it as type-id.
2030 // if stopIfCastExpr is false, we need to determine the context past the
2031 // parens, so we defer to ParseCXXAmbiguousParenExpression for that.
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00002032 if (isAmbiguousTypeId && !stopIfCastExpr) {
2033 ExprResult res = ParseCXXAmbiguousParenExpression(ExprType, CastTy, T);
2034 RParenLoc = T.getCloseLocation();
2035 return res;
2036 }
Mike Stump11289f42009-09-09 15:08:12 +00002037
Argyrios Kyrtzidis7192a3b2011-07-01 22:22:59 +00002038 // Parse the type declarator.
2039 DeclSpec DS(AttrFactory);
2040 ParseSpecifierQualifierList(DS);
2041 Declarator DeclaratorInfo(DS, Declarator::TypeNameContext);
2042 ParseDeclarator(DeclaratorInfo);
Douglas Gregore9bba4f2010-09-15 14:51:05 +00002043
Douglas Gregor3e972002010-09-15 23:19:31 +00002044 // If our type is followed by an identifier and either ':' or ']', then
2045 // this is probably an Objective-C message send where the leading '[' is
2046 // missing. Recover as if that were the case.
Argyrios Kyrtzidis7192a3b2011-07-01 22:22:59 +00002047 if (!DeclaratorInfo.isInvalidType() && Tok.is(tok::identifier) &&
David Blaikiebbafb8a2012-03-11 07:00:24 +00002048 !InMessageExpression && getLangOpts().ObjC1 &&
Argyrios Kyrtzidis7192a3b2011-07-01 22:22:59 +00002049 (NextToken().is(tok::colon) || NextToken().is(tok::r_square))) {
2050 TypeResult Ty;
2051 {
2052 InMessageExpressionRAIIObject InMessage(*this, false);
2053 Ty = Actions.ActOnTypeName(getCurScope(), DeclaratorInfo);
2054 }
Douglas Gregor3e972002010-09-15 23:19:31 +00002055 Result = ParseObjCMessageExpressionBody(SourceLocation(),
2056 SourceLocation(),
2057 Ty.get(), 0);
2058 } else {
2059 // Match the ')'.
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00002060 T.consumeClose();
2061 RParenLoc = T.getCloseLocation();
Douglas Gregor3e972002010-09-15 23:19:31 +00002062 if (Tok.is(tok::l_brace)) {
2063 ExprType = CompoundLiteral;
Argyrios Kyrtzidis7192a3b2011-07-01 22:22:59 +00002064 TypeResult Ty;
2065 {
2066 InMessageExpressionRAIIObject InMessage(*this, false);
2067 Ty = Actions.ActOnTypeName(getCurScope(), DeclaratorInfo);
2068 }
Douglas Gregor3e972002010-09-15 23:19:31 +00002069 return ParseCompoundLiteralExpression(Ty.get(), OpenLoc, RParenLoc);
Chris Lattnera36ec422010-04-11 08:28:14 +00002070 }
Argyrios Kyrtzidis9a9c0f42009-05-22 10:23:40 +00002071
Douglas Gregor3e972002010-09-15 23:19:31 +00002072 if (ExprType == CastExpr) {
2073 // We parsed '(' type-name ')' and the thing after it wasn't a '{'.
Sebastian Redlb5d49352009-01-19 22:31:54 +00002074
Argyrios Kyrtzidis7192a3b2011-07-01 22:22:59 +00002075 if (DeclaratorInfo.isInvalidType())
Douglas Gregor3e972002010-09-15 23:19:31 +00002076 return ExprError();
2077
Douglas Gregor3e972002010-09-15 23:19:31 +00002078 // Note that this doesn't parse the subsequent cast-expression, it just
2079 // returns the parsed type to the callee.
Argyrios Kyrtzidis7192a3b2011-07-01 22:22:59 +00002080 if (stopIfCastExpr) {
2081 TypeResult Ty;
2082 {
2083 InMessageExpressionRAIIObject InMessage(*this, false);
2084 Ty = Actions.ActOnTypeName(getCurScope(), DeclaratorInfo);
2085 }
2086 CastTy = Ty.get();
Douglas Gregor3e972002010-09-15 23:19:31 +00002087 return ExprResult();
Argyrios Kyrtzidis7192a3b2011-07-01 22:22:59 +00002088 }
Douglas Gregor3e972002010-09-15 23:19:31 +00002089
2090 // Reject the cast of super idiom in ObjC.
David Blaikiebbafb8a2012-03-11 07:00:24 +00002091 if (Tok.is(tok::identifier) && getLangOpts().ObjC1 &&
Douglas Gregor3e972002010-09-15 23:19:31 +00002092 Tok.getIdentifierInfo() == Ident_super &&
2093 getCurScope()->isInObjcMethodScope() &&
2094 GetLookAheadToken(1).isNot(tok::period)) {
2095 Diag(Tok.getLocation(), diag::err_illegal_super_cast)
2096 << SourceRange(OpenLoc, RParenLoc);
2097 return ExprError();
2098 }
2099
2100 // Parse the cast-expression that follows it next.
2101 // TODO: For cast expression with CastTy.
Argyrios Kyrtzidis7192a3b2011-07-01 22:22:59 +00002102 Result = ParseCastExpression(/*isUnaryExpression=*/false,
2103 /*isAddressOfOperand=*/false,
Kaelyn Uhrain77e21fc2012-01-25 20:49:08 +00002104 /*isTypeCast=*/IsTypeCast);
Argyrios Kyrtzidis7192a3b2011-07-01 22:22:59 +00002105 if (!Result.isInvalid()) {
2106 Result = Actions.ActOnCastExpr(getCurScope(), OpenLoc,
2107 DeclaratorInfo, CastTy,
Douglas Gregor3e972002010-09-15 23:19:31 +00002108 RParenLoc, Result.take());
Argyrios Kyrtzidis7192a3b2011-07-01 22:22:59 +00002109 }
Benjamin Kramer62b95d82012-08-23 21:35:17 +00002110 return Result;
Douglas Gregor3e972002010-09-15 23:19:31 +00002111 }
2112
2113 Diag(Tok, diag::err_expected_lbrace_in_compound_literal);
2114 return ExprError();
2115 }
Argyrios Kyrtzidis7192a3b2011-07-01 22:22:59 +00002116 } else if (isTypeCast) {
Nate Begeman5ec4b312009-08-10 23:49:36 +00002117 // Parse the expression-list.
Douglas Gregore9bba4f2010-09-15 14:51:05 +00002118 InMessageExpressionRAIIObject InMessage(*this, false);
2119
Benjamin Kramerf0623432012-08-23 22:51:59 +00002120 ExprVector ArgExprs;
Nate Begeman5ec4b312009-08-10 23:49:36 +00002121 CommaLocsTy CommaLocs;
2122
2123 if (!ParseExpressionList(ArgExprs, CommaLocs)) {
2124 ExprType = SimpleExpr;
Sebastian Redla9351792012-02-11 23:51:47 +00002125 Result = Actions.ActOnParenListExpr(OpenLoc, Tok.getLocation(),
Benjamin Kramer62b95d82012-08-23 21:35:17 +00002126 ArgExprs);
Nate Begeman5ec4b312009-08-10 23:49:36 +00002127 }
Chris Lattner4add4e62006-08-11 01:33:00 +00002128 } else {
Douglas Gregore9bba4f2010-09-15 14:51:05 +00002129 InMessageExpressionRAIIObject InMessage(*this, false);
2130
Kaelyn Uhrain77e21fc2012-01-25 20:49:08 +00002131 Result = ParseExpression(MaybeTypeCast);
Chris Lattner4add4e62006-08-11 01:33:00 +00002132 ExprType = SimpleExpr;
John McCallc5e6b972011-04-06 02:35:25 +00002133
2134 // Don't build a paren expression unless we actually match a ')'.
Sebastian Redl17f2c7d2008-12-09 13:15:23 +00002135 if (!Result.isInvalid() && Tok.is(tok::r_paren))
John McCallb268a282010-08-23 23:25:46 +00002136 Result = Actions.ActOnParenExpr(OpenLoc, Tok.getLocation(), Result.take());
Chris Lattnerf8339772006-08-10 22:01:51 +00002137 }
Sebastian Redl90893182008-12-11 22:33:27 +00002138
Chris Lattner4564bc12006-08-10 23:14:52 +00002139 // Match the ')'.
Chris Lattnerd8980502008-12-12 06:00:12 +00002140 if (Result.isInvalid()) {
Chris Lattner89c50c62006-08-11 06:41:18 +00002141 SkipUntil(tok::r_paren);
Chris Lattnerd8980502008-12-12 06:00:12 +00002142 return ExprError();
Chris Lattnere550a4e2006-08-24 06:37:51 +00002143 }
Mike Stump11289f42009-09-09 15:08:12 +00002144
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00002145 T.consumeClose();
2146 RParenLoc = T.getCloseLocation();
Benjamin Kramer62b95d82012-08-23 21:35:17 +00002147 return Result;
Chris Lattnerc951dae2006-08-10 04:23:57 +00002148}
Chris Lattnerd3e98952006-10-06 05:22:26 +00002149
Argyrios Kyrtzidis5da1f082009-05-22 10:24:05 +00002150/// ParseCompoundLiteralExpression - We have parsed the parenthesized type-name
2151/// and we are at the left brace.
2152///
James Dennett3d5e4592012-06-17 04:36:28 +00002153/// \verbatim
Argyrios Kyrtzidis5da1f082009-05-22 10:24:05 +00002154/// postfix-expression: [C99 6.5.2]
2155/// '(' type-name ')' '{' initializer-list '}'
2156/// '(' type-name ')' '{' initializer-list ',' '}'
James Dennett3d5e4592012-06-17 04:36:28 +00002157/// \endverbatim
John McCalldadc5752010-08-24 06:29:42 +00002158ExprResult
John McCallba7bf592010-08-24 05:47:05 +00002159Parser::ParseCompoundLiteralExpression(ParsedType Ty,
Argyrios Kyrtzidis5da1f082009-05-22 10:24:05 +00002160 SourceLocation LParenLoc,
2161 SourceLocation RParenLoc) {
2162 assert(Tok.is(tok::l_brace) && "Not a compound literal!");
David Blaikiebbafb8a2012-03-11 07:00:24 +00002163 if (!getLangOpts().C99) // Compound literals don't exist in C90.
Argyrios Kyrtzidis5da1f082009-05-22 10:24:05 +00002164 Diag(LParenLoc, diag::ext_c99_compound_literal);
John McCalldadc5752010-08-24 06:29:42 +00002165 ExprResult Result = ParseInitializer();
Argyrios Kyrtzidis5da1f082009-05-22 10:24:05 +00002166 if (!Result.isInvalid() && Ty)
John McCallb268a282010-08-23 23:25:46 +00002167 return Actions.ActOnCompoundLiteral(LParenLoc, Ty, RParenLoc, Result.take());
Benjamin Kramer62b95d82012-08-23 21:35:17 +00002168 return Result;
Argyrios Kyrtzidis5da1f082009-05-22 10:24:05 +00002169}
2170
Chris Lattnerd3e98952006-10-06 05:22:26 +00002171/// ParseStringLiteralExpression - This handles the various token types that
2172/// form string literals, and also handles string concatenation [C99 5.1.1.2,
2173/// translation phase #6].
2174///
James Dennett3d5e4592012-06-17 04:36:28 +00002175/// \verbatim
Chris Lattnerd3e98952006-10-06 05:22:26 +00002176/// primary-expression: [C99 6.5.1]
2177/// string-literal
James Dennett3d5e4592012-06-17 04:36:28 +00002178/// \verbatim
Richard Smithd67aea22012-03-06 03:21:47 +00002179ExprResult Parser::ParseStringLiteralExpression(bool AllowUserDefinedLiteral) {
Chris Lattnerd3e98952006-10-06 05:22:26 +00002180 assert(isTokenStringLiteral() && "Not a string literal!");
Sebastian Redld65cea82008-12-11 22:51:44 +00002181
Chris Lattnerd3e98952006-10-06 05:22:26 +00002182 // String concat. Note that keywords like __func__ and __FUNCTION__ are not
2183 // considered to be strings for concatenation purposes.
Chris Lattner0e62c1c2011-07-23 10:55:15 +00002184 SmallVector<Token, 4> StringToks;
Sebastian Redld65cea82008-12-11 22:51:44 +00002185
Chris Lattnerd3e98952006-10-06 05:22:26 +00002186 do {
Chris Lattnerd3e98952006-10-06 05:22:26 +00002187 StringToks.push_back(Tok);
2188 ConsumeStringToken();
2189 } while (isTokenStringLiteral());
Chris Lattner08f27912006-11-09 06:34:47 +00002190
2191 // Pass the set of string tokens, ready for concatenation, to the actions.
Richard Smithbcc22fc2012-03-09 08:00:36 +00002192 return Actions.ActOnStringLiteral(&StringToks[0], StringToks.size(),
2193 AllowUserDefinedLiteral ? getCurScope() : 0);
Chris Lattnerd3e98952006-10-06 05:22:26 +00002194}
Argyrios Kyrtzidis69af9ee2008-08-16 20:03:01 +00002195
Benjamin Kramere56f3932011-12-23 17:00:35 +00002196/// ParseGenericSelectionExpression - Parse a C11 generic-selection
2197/// [C11 6.5.1.1].
Peter Collingbourne91147592011-04-15 00:35:48 +00002198///
James Dennett3d5e4592012-06-17 04:36:28 +00002199/// \verbatim
Peter Collingbourne91147592011-04-15 00:35:48 +00002200/// generic-selection:
2201/// _Generic ( assignment-expression , generic-assoc-list )
2202/// generic-assoc-list:
2203/// generic-association
2204/// generic-assoc-list , generic-association
2205/// generic-association:
2206/// type-name : assignment-expression
2207/// default : assignment-expression
James Dennett3d5e4592012-06-17 04:36:28 +00002208/// \endverbatim
Peter Collingbourne91147592011-04-15 00:35:48 +00002209ExprResult Parser::ParseGenericSelectionExpression() {
2210 assert(Tok.is(tok::kw__Generic) && "_Generic keyword expected");
2211 SourceLocation KeyLoc = ConsumeToken();
2212
David Blaikiebbafb8a2012-03-11 07:00:24 +00002213 if (!getLangOpts().C11)
Benjamin Kramere56f3932011-12-23 17:00:35 +00002214 Diag(KeyLoc, diag::ext_c11_generic_selection);
Peter Collingbourne91147592011-04-15 00:35:48 +00002215
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00002216 BalancedDelimiterTracker T(*this, tok::l_paren);
2217 if (T.expectAndConsume(diag::err_expected_lparen))
Peter Collingbourne91147592011-04-15 00:35:48 +00002218 return ExprError();
2219
2220 ExprResult ControllingExpr;
2221 {
Benjamin Kramere56f3932011-12-23 17:00:35 +00002222 // C11 6.5.1.1p3 "The controlling expression of a generic selection is
Peter Collingbourne91147592011-04-15 00:35:48 +00002223 // not evaluated."
2224 EnterExpressionEvaluationContext Unevaluated(Actions, Sema::Unevaluated);
2225 ControllingExpr = ParseAssignmentExpression();
2226 if (ControllingExpr.isInvalid()) {
2227 SkipUntil(tok::r_paren);
2228 return ExprError();
2229 }
2230 }
2231
2232 if (ExpectAndConsume(tok::comma, diag::err_expected_comma, "")) {
2233 SkipUntil(tok::r_paren);
2234 return ExprError();
2235 }
2236
2237 SourceLocation DefaultLoc;
Benjamin Kramerf0623432012-08-23 22:51:59 +00002238 TypeVector Types;
2239 ExprVector Exprs;
Peter Collingbourne91147592011-04-15 00:35:48 +00002240 while (1) {
2241 ParsedType Ty;
2242 if (Tok.is(tok::kw_default)) {
Benjamin Kramere56f3932011-12-23 17:00:35 +00002243 // C11 6.5.1.1p2 "A generic selection shall have no more than one default
Peter Collingbourne91147592011-04-15 00:35:48 +00002244 // generic association."
2245 if (!DefaultLoc.isInvalid()) {
2246 Diag(Tok, diag::err_duplicate_default_assoc);
2247 Diag(DefaultLoc, diag::note_previous_default_assoc);
2248 SkipUntil(tok::r_paren);
2249 return ExprError();
2250 }
2251 DefaultLoc = ConsumeToken();
2252 Ty = ParsedType();
2253 } else {
2254 ColonProtectionRAIIObject X(*this);
2255 TypeResult TR = ParseTypeName();
2256 if (TR.isInvalid()) {
2257 SkipUntil(tok::r_paren);
2258 return ExprError();
2259 }
2260 Ty = TR.release();
2261 }
2262 Types.push_back(Ty);
2263
2264 if (ExpectAndConsume(tok::colon, diag::err_expected_colon, "")) {
2265 SkipUntil(tok::r_paren);
2266 return ExprError();
2267 }
2268
2269 // FIXME: These expressions should be parsed in a potentially potentially
2270 // evaluated context.
2271 ExprResult ER(ParseAssignmentExpression());
2272 if (ER.isInvalid()) {
2273 SkipUntil(tok::r_paren);
2274 return ExprError();
2275 }
2276 Exprs.push_back(ER.release());
2277
2278 if (Tok.isNot(tok::comma))
2279 break;
2280 ConsumeToken();
2281 }
2282
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00002283 T.consumeClose();
2284 if (T.getCloseLocation().isInvalid())
Peter Collingbourne91147592011-04-15 00:35:48 +00002285 return ExprError();
2286
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00002287 return Actions.ActOnGenericSelectionExpr(KeyLoc, DefaultLoc,
2288 T.getCloseLocation(),
Peter Collingbourne91147592011-04-15 00:35:48 +00002289 ControllingExpr.release(),
Benjamin Kramer62b95d82012-08-23 21:35:17 +00002290 Types, Exprs);
Peter Collingbourne91147592011-04-15 00:35:48 +00002291}
2292
Argyrios Kyrtzidis69af9ee2008-08-16 20:03:01 +00002293/// ParseExpressionList - Used for C/C++ (argument-)expression-list.
2294///
James Dennett3d5e4592012-06-17 04:36:28 +00002295/// \verbatim
Argyrios Kyrtzidis69af9ee2008-08-16 20:03:01 +00002296/// argument-expression-list:
2297/// assignment-expression
2298/// argument-expression-list , assignment-expression
2299///
2300/// [C++] expression-list:
Sebastian Redl3da34892011-06-05 12:23:16 +00002301/// [C++] assignment-expression
2302/// [C++] expression-list , assignment-expression
2303///
2304/// [C++0x] expression-list:
2305/// [C++0x] initializer-list
2306///
2307/// [C++0x] initializer-list
2308/// [C++0x] initializer-clause ...[opt]
2309/// [C++0x] initializer-list , initializer-clause ...[opt]
2310///
2311/// [C++0x] initializer-clause:
2312/// [C++0x] assignment-expression
2313/// [C++0x] braced-init-list
James Dennett3d5e4592012-06-17 04:36:28 +00002314/// \endverbatim
Chris Lattner0e62c1c2011-07-23 10:55:15 +00002315bool Parser::ParseExpressionList(SmallVectorImpl<Expr*> &Exprs,
Dmitri Gribenkof8579502013-01-12 19:30:44 +00002316 SmallVectorImpl<SourceLocation> &CommaLocs,
2317 void (Sema::*Completer)(Scope *S,
2318 Expr *Data,
2319 ArrayRef<Expr *> Args),
John McCall37ad5512010-08-23 06:44:23 +00002320 Expr *Data) {
Argyrios Kyrtzidis69af9ee2008-08-16 20:03:01 +00002321 while (1) {
Douglas Gregorcabea402009-09-22 15:41:20 +00002322 if (Tok.is(tok::code_completion)) {
2323 if (Completer)
Ahmed Charlesb24b9aa2012-02-25 11:00:22 +00002324 (Actions.*Completer)(getCurScope(), Data, Exprs);
Douglas Gregor9c1f1bf2011-02-17 03:09:23 +00002325 else
2326 Actions.CodeCompleteOrdinaryName(getCurScope(), Sema::PCC_Expression);
Argyrios Kyrtzidis5cec2ae2011-09-04 03:32:15 +00002327 cutOffParsing();
2328 return true;
Douglas Gregorcabea402009-09-22 15:41:20 +00002329 }
Sebastian Redl3da34892011-06-05 12:23:16 +00002330
2331 ExprResult Expr;
Richard Smith2bf7fdb2013-01-02 11:42:31 +00002332 if (getLangOpts().CPlusPlus11 && Tok.is(tok::l_brace)) {
Richard Smith5d164bc2011-10-15 05:09:34 +00002333 Diag(Tok, diag::warn_cxx98_compat_generalized_initializer_lists);
Sebastian Redl3da34892011-06-05 12:23:16 +00002334 Expr = ParseBraceInitializer();
Richard Smith5d164bc2011-10-15 05:09:34 +00002335 } else
Sebastian Redl3da34892011-06-05 12:23:16 +00002336 Expr = ParseAssignmentExpression();
2337
Douglas Gregor968f23a2011-01-03 19:31:53 +00002338 if (Tok.is(tok::ellipsis))
2339 Expr = Actions.ActOnPackExpansion(Expr.get(), ConsumeToken());
Sebastian Redl17f2c7d2008-12-09 13:15:23 +00002340 if (Expr.isInvalid())
Argyrios Kyrtzidis69af9ee2008-08-16 20:03:01 +00002341 return true;
Argyrios Kyrtzidis22fc2662008-08-18 22:49:40 +00002342
Sebastian Redld9f7b1c2008-12-10 00:02:53 +00002343 Exprs.push_back(Expr.release());
Argyrios Kyrtzidis69af9ee2008-08-16 20:03:01 +00002344
2345 if (Tok.isNot(tok::comma))
2346 return false;
2347 // Move to the next argument, remember where the comma was.
2348 CommaLocs.push_back(ConsumeToken());
2349 }
2350}
Steve Naroff0ac012832008-08-28 19:20:44 +00002351
Mike Stump82f071f2009-02-04 22:31:32 +00002352/// ParseBlockId - Parse a block-id, which roughly looks like int (int x).
2353///
James Dennett3d5e4592012-06-17 04:36:28 +00002354/// \verbatim
Mike Stump82f071f2009-02-04 22:31:32 +00002355/// [clang] block-id:
2356/// [clang] specifier-qualifier-list block-declarator
James Dennett3d5e4592012-06-17 04:36:28 +00002357/// \endverbatim
Douglas Gregor7efd007c2012-06-15 16:59:29 +00002358void Parser::ParseBlockId(SourceLocation CaretLoc) {
Douglas Gregor643c3302010-10-18 21:34:55 +00002359 if (Tok.is(tok::code_completion)) {
2360 Actions.CodeCompleteOrdinaryName(getCurScope(), Sema::PCC_Type);
Argyrios Kyrtzidis5cec2ae2011-09-04 03:32:15 +00002361 return cutOffParsing();
Douglas Gregor643c3302010-10-18 21:34:55 +00002362 }
2363
Mike Stump82f071f2009-02-04 22:31:32 +00002364 // Parse the specifier-qualifier-list piece.
John McCall084e83d2011-03-24 11:26:52 +00002365 DeclSpec DS(AttrFactory);
Mike Stump82f071f2009-02-04 22:31:32 +00002366 ParseSpecifierQualifierList(DS);
2367
2368 // Parse the block-declarator.
2369 Declarator DeclaratorInfo(DS, Declarator::BlockLiteralContext);
2370 ParseDeclarator(DeclaratorInfo);
Mike Stump88788fe2009-04-29 19:03:13 +00002371
Mike Stump56ed2ea2009-04-29 21:40:37 +00002372 // We do this for: ^ __attribute__((noreturn)) {, as DS has the attributes.
John McCall084e83d2011-03-24 11:26:52 +00002373 DeclaratorInfo.takeAttributes(DS.getAttributes(), SourceLocation());
Mike Stump56ed2ea2009-04-29 21:40:37 +00002374
John McCall53fa7142010-12-24 02:08:15 +00002375 MaybeParseGNUAttributes(DeclaratorInfo);
Mike Stump88788fe2009-04-29 19:03:13 +00002376
Mike Stump82f071f2009-02-04 22:31:32 +00002377 // Inform sema that we are starting a block.
Douglas Gregor7efd007c2012-06-15 16:59:29 +00002378 Actions.ActOnBlockArguments(CaretLoc, DeclaratorInfo, getCurScope());
Mike Stump82f071f2009-02-04 22:31:32 +00002379}
2380
Steve Naroff0ac012832008-08-28 19:20:44 +00002381/// ParseBlockLiteralExpression - Parse a block literal, which roughly looks
Steve Naroff7a147c62008-09-16 23:11:46 +00002382/// like ^(int x){ return x+1; }
Steve Naroff0ac012832008-08-28 19:20:44 +00002383///
James Dennett3d5e4592012-06-17 04:36:28 +00002384/// \verbatim
Steve Naroff0ac012832008-08-28 19:20:44 +00002385/// block-literal:
2386/// [clang] '^' block-args[opt] compound-statement
Mike Stump82f071f2009-02-04 22:31:32 +00002387/// [clang] '^' block-id compound-statement
Steve Naroff0ac012832008-08-28 19:20:44 +00002388/// [clang] block-args:
2389/// [clang] '(' parameter-list ')'
James Dennett3d5e4592012-06-17 04:36:28 +00002390/// \endverbatim
John McCalldadc5752010-08-24 06:29:42 +00002391ExprResult Parser::ParseBlockLiteralExpression() {
Steve Naroff0ac012832008-08-28 19:20:44 +00002392 assert(Tok.is(tok::caret) && "block literal starts with ^");
2393 SourceLocation CaretLoc = ConsumeToken();
Sebastian Redlcb6e2c62008-12-13 15:32:12 +00002394
Chris Lattnerf6801202009-03-05 07:32:12 +00002395 PrettyStackTraceLoc CrashInfo(PP.getSourceManager(), CaretLoc,
2396 "block literal parsing");
2397
Mike Stump11289f42009-09-09 15:08:12 +00002398 // Enter a scope to hold everything within the block. This includes the
Steve Naroff0ac012832008-08-28 19:20:44 +00002399 // argument decls, decls within the compound expression, etc. This also
2400 // allows determining whether a variable reference inside the block is
2401 // within or outside of the block.
Sebastian Redlf6591ca2009-02-09 18:23:29 +00002402 ParseScope BlockScope(this, Scope::BlockScope | Scope::FnScope |
Sebastian Redlf6591ca2009-02-09 18:23:29 +00002403 Scope::DeclScope);
Steve Naroff1d95e5a2008-10-10 01:28:17 +00002404
2405 // Inform sema that we are starting a block.
Douglas Gregor0be31a22010-07-02 17:43:08 +00002406 Actions.ActOnBlockStart(CaretLoc, getCurScope());
Mike Stump11289f42009-09-09 15:08:12 +00002407
Steve Naroff0ac012832008-08-28 19:20:44 +00002408 // Parse the return type if present.
John McCall084e83d2011-03-24 11:26:52 +00002409 DeclSpec DS(AttrFactory);
Mike Stump82f071f2009-02-04 22:31:32 +00002410 Declarator ParamInfo(DS, Declarator::BlockLiteralContext);
Sebastian Redlf6591ca2009-02-09 18:23:29 +00002411 // FIXME: Since the return type isn't actually parsed, it can't be used to
2412 // fill ParamInfo with an initial valid range, so do it manually.
2413 ParamInfo.SetSourceRange(SourceRange(Tok.getLocation(), Tok.getLocation()));
Sebastian Redlcb6e2c62008-12-13 15:32:12 +00002414
Steve Naroff0ac012832008-08-28 19:20:44 +00002415 // If this block has arguments, parse them. There is no ambiguity here with
2416 // the expression case, because the expression case requires a parameter list.
2417 if (Tok.is(tok::l_paren)) {
2418 ParseParenDeclarator(ParamInfo);
2419 // Parse the pieces after the identifier as if we had "int(...)".
Sebastian Redlf6591ca2009-02-09 18:23:29 +00002420 // SetIdentifier sets the source range end, but in this case we're past
2421 // that location.
2422 SourceLocation Tmp = ParamInfo.getSourceRange().getEnd();
Steve Naroff0ac012832008-08-28 19:20:44 +00002423 ParamInfo.SetIdentifier(0, CaretLoc);
Sebastian Redlf6591ca2009-02-09 18:23:29 +00002424 ParamInfo.SetRangeEnd(Tmp);
Chris Lattnerf6d1c9c2009-04-25 08:06:05 +00002425 if (ParamInfo.isInvalidType()) {
Mike Stump82f071f2009-02-04 22:31:32 +00002426 // If there was an error parsing the arguments, they may have
2427 // tried to use ^(x+y) which requires an argument list. Just
2428 // skip the whole block literal.
Douglas Gregor0be31a22010-07-02 17:43:08 +00002429 Actions.ActOnBlockError(CaretLoc, getCurScope());
Sebastian Redlcb6e2c62008-12-13 15:32:12 +00002430 return ExprError();
Steve Naroff0ac012832008-08-28 19:20:44 +00002431 }
Mike Stump88788fe2009-04-29 19:03:13 +00002432
John McCall53fa7142010-12-24 02:08:15 +00002433 MaybeParseGNUAttributes(ParamInfo);
Mike Stump88788fe2009-04-29 19:03:13 +00002434
Mike Stump82f071f2009-02-04 22:31:32 +00002435 // Inform sema that we are starting a block.
Douglas Gregor7efd007c2012-06-15 16:59:29 +00002436 Actions.ActOnBlockArguments(CaretLoc, ParamInfo, getCurScope());
Mike Stumpd73e4412009-04-14 18:24:37 +00002437 } else if (!Tok.is(tok::l_brace)) {
Douglas Gregor7efd007c2012-06-15 16:59:29 +00002438 ParseBlockId(CaretLoc);
Steve Naroff0ac012832008-08-28 19:20:44 +00002439 } else {
2440 // Otherwise, pretend we saw (void).
John McCall084e83d2011-03-24 11:26:52 +00002441 ParsedAttributes attrs(AttrFactory);
Abramo Bagnaraaeeb9892012-10-04 21:42:10 +00002442 SourceLocation NoLoc;
2443 ParamInfo.AddTypeInfo(DeclaratorChunk::getFunction(/*HasProto=*/true,
2444 /*IsAmbiguous=*/false,
2445 /*RParenLoc=*/NoLoc,
2446 /*ArgInfo=*/0,
2447 /*NumArgs=*/0,
2448 /*EllipsisLoc=*/NoLoc,
2449 /*RParenLoc=*/NoLoc,
2450 /*TypeQuals=*/0,
2451 /*RefQualifierIsLvalueRef=*/true,
2452 /*RefQualifierLoc=*/NoLoc,
2453 /*ConstQualifierLoc=*/NoLoc,
2454 /*VolatileQualifierLoc=*/NoLoc,
2455 /*MutableLoc=*/NoLoc,
2456 EST_None,
2457 /*ESpecLoc=*/NoLoc,
2458 /*Exceptions=*/0,
2459 /*ExceptionRanges=*/0,
2460 /*NumExceptions=*/0,
2461 /*NoexceptExpr=*/0,
2462 CaretLoc, CaretLoc,
2463 ParamInfo),
John McCall084e83d2011-03-24 11:26:52 +00002464 attrs, CaretLoc);
Mike Stump88788fe2009-04-29 19:03:13 +00002465
John McCall53fa7142010-12-24 02:08:15 +00002466 MaybeParseGNUAttributes(ParamInfo);
Mike Stump88788fe2009-04-29 19:03:13 +00002467
Mike Stump82f071f2009-02-04 22:31:32 +00002468 // Inform sema that we are starting a block.
Douglas Gregor7efd007c2012-06-15 16:59:29 +00002469 Actions.ActOnBlockArguments(CaretLoc, ParamInfo, getCurScope());
Steve Naroff0ac012832008-08-28 19:20:44 +00002470 }
2471
Sebastian Redlcb6e2c62008-12-13 15:32:12 +00002472
John McCalldadc5752010-08-24 06:29:42 +00002473 ExprResult Result(true);
Chris Lattner9eac9312009-03-27 04:18:06 +00002474 if (!Tok.is(tok::l_brace)) {
Fariborz Jahanianf2a31202009-01-14 19:39:53 +00002475 // Saw something like: ^expr
2476 Diag(Tok, diag::err_expected_expression);
Douglas Gregor0be31a22010-07-02 17:43:08 +00002477 Actions.ActOnBlockError(CaretLoc, getCurScope());
Fariborz Jahanianf2a31202009-01-14 19:39:53 +00002478 return ExprError();
2479 }
Mike Stump11289f42009-09-09 15:08:12 +00002480
John McCalldadc5752010-08-24 06:29:42 +00002481 StmtResult Stmt(ParseCompoundStatementBody());
Douglas Gregora0ff0c32011-03-16 17:05:57 +00002482 BlockScope.Exit();
Chris Lattner9eac9312009-03-27 04:18:06 +00002483 if (!Stmt.isInvalid())
John McCallb268a282010-08-23 23:25:46 +00002484 Result = Actions.ActOnBlockStmtExpr(CaretLoc, Stmt.take(), getCurScope());
Chris Lattner9eac9312009-03-27 04:18:06 +00002485 else
Douglas Gregor0be31a22010-07-02 17:43:08 +00002486 Actions.ActOnBlockError(CaretLoc, getCurScope());
Benjamin Kramer62b95d82012-08-23 21:35:17 +00002487 return Result;
Steve Naroff0ac012832008-08-28 19:20:44 +00002488}
Ted Kremeneke65b0862012-03-06 20:05:56 +00002489
2490/// ParseObjCBoolLiteral - This handles the objective-c Boolean literals.
2491///
2492/// '__objc_yes'
2493/// '__objc_no'
2494ExprResult Parser::ParseObjCBoolLiteral() {
2495 tok::TokenKind Kind = Tok.getKind();
2496 return Actions.ActOnObjCBoolLiteral(ConsumeToken(), Kind);
2497}