Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1 | //===--- ParseExpr.cpp - Expression Parsing -------------------------------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 0bc735f | 2007-12-29 19:59:25 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file implements the Expression parsing implementation. Expressions in |
| 11 | // C99 basically consist of a bunch of binary operators with unary operators and |
| 12 | // other random stuff at the leaves. |
| 13 | // |
| 14 | // In the C99 grammar, these unary operators bind tightest and are represented |
| 15 | // as the 'cast-expression' production. Everything else is either a binary |
| 16 | // operator (e.g. '/') or a ternary operator ("?:"). The unary leaves are |
| 17 | // handled by ParseCastExpression, the higher level pieces are handled by |
| 18 | // ParseBinaryExpression. |
| 19 | // |
| 20 | //===----------------------------------------------------------------------===// |
| 21 | |
| 22 | #include "clang/Parse/Parser.h" |
Argyrios Kyrtzidis | 987a14b | 2008-08-22 15:38:55 +0000 | [diff] [blame] | 23 | #include "clang/Parse/DeclSpec.h" |
Steve Naroff | 296e8d5 | 2008-08-28 19:20:44 +0000 | [diff] [blame] | 24 | #include "clang/Parse/Scope.h" |
Chris Lattner | c46d1a1 | 2008-10-20 06:45:43 +0000 | [diff] [blame] | 25 | #include "ExtensionRAIIObject.h" |
Sebastian Redl | a55e52c | 2008-11-25 22:21:31 +0000 | [diff] [blame] | 26 | #include "AstGuard.h" |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 27 | #include "llvm/ADT/SmallVector.h" |
| 28 | #include "llvm/ADT/SmallString.h" |
| 29 | using namespace clang; |
| 30 | |
| 31 | /// PrecedenceLevels - These are precedences for the binary/ternary operators in |
| 32 | /// the C99 grammar. These have been named to relate with the C99 grammar |
| 33 | /// productions. Low precedences numbers bind more weakly than high numbers. |
| 34 | namespace prec { |
| 35 | enum Level { |
| 36 | Unknown = 0, // Not binary operator. |
| 37 | Comma = 1, // , |
| 38 | Assignment = 2, // =, *=, /=, %=, +=, -=, <<=, >>=, &=, ^=, |= |
| 39 | Conditional = 3, // ? |
| 40 | LogicalOr = 4, // || |
| 41 | LogicalAnd = 5, // && |
| 42 | InclusiveOr = 6, // | |
| 43 | ExclusiveOr = 7, // ^ |
| 44 | And = 8, // & |
| 45 | Equality = 9, // ==, != |
| 46 | Relational = 10, // >=, <=, >, < |
| 47 | Shift = 11, // <<, >> |
| 48 | Additive = 12, // -, + |
| 49 | Multiplicative = 13 // *, /, % |
| 50 | }; |
| 51 | } |
| 52 | |
| 53 | |
| 54 | /// getBinOpPrecedence - Return the precedence of the specified binary operator |
| 55 | /// token. This returns: |
| 56 | /// |
| 57 | static prec::Level getBinOpPrecedence(tok::TokenKind Kind) { |
| 58 | switch (Kind) { |
| 59 | default: return prec::Unknown; |
| 60 | case tok::comma: return prec::Comma; |
| 61 | case tok::equal: |
| 62 | case tok::starequal: |
| 63 | case tok::slashequal: |
| 64 | case tok::percentequal: |
| 65 | case tok::plusequal: |
| 66 | case tok::minusequal: |
| 67 | case tok::lesslessequal: |
| 68 | case tok::greatergreaterequal: |
| 69 | case tok::ampequal: |
| 70 | case tok::caretequal: |
| 71 | case tok::pipeequal: return prec::Assignment; |
| 72 | case tok::question: return prec::Conditional; |
| 73 | case tok::pipepipe: return prec::LogicalOr; |
| 74 | case tok::ampamp: return prec::LogicalAnd; |
| 75 | case tok::pipe: return prec::InclusiveOr; |
| 76 | case tok::caret: return prec::ExclusiveOr; |
| 77 | case tok::amp: return prec::And; |
| 78 | case tok::exclaimequal: |
| 79 | case tok::equalequal: return prec::Equality; |
| 80 | case tok::lessequal: |
| 81 | case tok::less: |
| 82 | case tok::greaterequal: |
| 83 | case tok::greater: return prec::Relational; |
| 84 | case tok::lessless: |
| 85 | case tok::greatergreater: return prec::Shift; |
| 86 | case tok::plus: |
| 87 | case tok::minus: return prec::Additive; |
| 88 | case tok::percent: |
| 89 | case tok::slash: |
| 90 | case tok::star: return prec::Multiplicative; |
| 91 | } |
| 92 | } |
| 93 | |
| 94 | |
| 95 | /// ParseExpression - Simple precedence-based parser for binary/ternary |
| 96 | /// operators. |
| 97 | /// |
| 98 | /// Note: we diverge from the C99 grammar when parsing the assignment-expression |
| 99 | /// production. C99 specifies that the LHS of an assignment operator should be |
| 100 | /// parsed as a unary-expression, but consistency dictates that it be a |
| 101 | /// conditional-expession. In practice, the important thing here is that the |
| 102 | /// LHS of an assignment has to be an l-value, which productions between |
| 103 | /// unary-expression and conditional-expression don't produce. Because we want |
| 104 | /// consistency, we parse the LHS as a conditional-expression, then check for |
| 105 | /// l-value-ness in semantic analysis stages. |
| 106 | /// |
| 107 | /// multiplicative-expression: [C99 6.5.5] |
| 108 | /// cast-expression |
| 109 | /// multiplicative-expression '*' cast-expression |
| 110 | /// multiplicative-expression '/' cast-expression |
| 111 | /// multiplicative-expression '%' cast-expression |
| 112 | /// |
| 113 | /// additive-expression: [C99 6.5.6] |
| 114 | /// multiplicative-expression |
| 115 | /// additive-expression '+' multiplicative-expression |
| 116 | /// additive-expression '-' multiplicative-expression |
| 117 | /// |
| 118 | /// shift-expression: [C99 6.5.7] |
| 119 | /// additive-expression |
| 120 | /// shift-expression '<<' additive-expression |
| 121 | /// shift-expression '>>' additive-expression |
| 122 | /// |
| 123 | /// relational-expression: [C99 6.5.8] |
| 124 | /// shift-expression |
| 125 | /// relational-expression '<' shift-expression |
| 126 | /// relational-expression '>' shift-expression |
| 127 | /// relational-expression '<=' shift-expression |
| 128 | /// relational-expression '>=' shift-expression |
| 129 | /// |
| 130 | /// equality-expression: [C99 6.5.9] |
| 131 | /// relational-expression |
| 132 | /// equality-expression '==' relational-expression |
| 133 | /// equality-expression '!=' relational-expression |
| 134 | /// |
| 135 | /// AND-expression: [C99 6.5.10] |
| 136 | /// equality-expression |
| 137 | /// AND-expression '&' equality-expression |
| 138 | /// |
| 139 | /// exclusive-OR-expression: [C99 6.5.11] |
| 140 | /// AND-expression |
| 141 | /// exclusive-OR-expression '^' AND-expression |
| 142 | /// |
| 143 | /// inclusive-OR-expression: [C99 6.5.12] |
| 144 | /// exclusive-OR-expression |
| 145 | /// inclusive-OR-expression '|' exclusive-OR-expression |
| 146 | /// |
| 147 | /// logical-AND-expression: [C99 6.5.13] |
| 148 | /// inclusive-OR-expression |
| 149 | /// logical-AND-expression '&&' inclusive-OR-expression |
| 150 | /// |
| 151 | /// logical-OR-expression: [C99 6.5.14] |
| 152 | /// logical-AND-expression |
| 153 | /// logical-OR-expression '||' logical-AND-expression |
| 154 | /// |
| 155 | /// conditional-expression: [C99 6.5.15] |
| 156 | /// logical-OR-expression |
| 157 | /// logical-OR-expression '?' expression ':' conditional-expression |
| 158 | /// [GNU] logical-OR-expression '?' ':' conditional-expression |
| 159 | /// |
| 160 | /// assignment-expression: [C99 6.5.16] |
| 161 | /// conditional-expression |
| 162 | /// unary-expression assignment-operator assignment-expression |
Chris Lattner | 50dd289 | 2008-02-26 00:51:44 +0000 | [diff] [blame] | 163 | /// [C++] throw-expression [C++ 15] |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 164 | /// |
| 165 | /// assignment-operator: one of |
| 166 | /// = *= /= %= += -= <<= >>= &= ^= |= |
| 167 | /// |
| 168 | /// expression: [C99 6.5.17] |
| 169 | /// assignment-expression |
| 170 | /// expression ',' assignment-expression |
| 171 | /// |
| 172 | Parser::ExprResult Parser::ParseExpression() { |
Chris Lattner | 50dd289 | 2008-02-26 00:51:44 +0000 | [diff] [blame] | 173 | if (Tok.is(tok::kw_throw)) |
| 174 | return ParseThrowExpression(); |
| 175 | |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 176 | ExprOwner LHS(Actions, ParseCastExpression(false)); |
| 177 | if (LHS.isInvalid()) return LHS.move(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 178 | |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 179 | return ParseRHSOfBinaryExpression(LHS.move(), prec::Comma); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 180 | } |
| 181 | |
Fariborz Jahanian | 397fcc1 | 2007-09-19 19:14:32 +0000 | [diff] [blame] | 182 | /// This routine is called when the '@' is seen and consumed. |
| 183 | /// Current token is an Identifier and is not a 'try'. This |
Chris Lattner | c97c204 | 2007-10-03 22:03:06 +0000 | [diff] [blame] | 184 | /// routine is necessary to disambiguate @try-statement from, |
| 185 | /// for example, @encode-expression. |
Fariborz Jahanian | 397fcc1 | 2007-09-19 19:14:32 +0000 | [diff] [blame] | 186 | /// |
Fariborz Jahanian | b384d32 | 2007-10-04 20:19:06 +0000 | [diff] [blame] | 187 | Parser::ExprResult Parser::ParseExpressionWithLeadingAt(SourceLocation AtLoc) { |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 188 | ExprOwner LHS(Actions, ParseObjCAtExpression(AtLoc)); |
| 189 | if (LHS.isInvalid()) return LHS.move(); |
| 190 | |
| 191 | return ParseRHSOfBinaryExpression(LHS.move(), prec::Comma); |
Fariborz Jahanian | 397fcc1 | 2007-09-19 19:14:32 +0000 | [diff] [blame] | 192 | } |
| 193 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 194 | /// ParseAssignmentExpression - Parse an expr that doesn't include commas. |
| 195 | /// |
| 196 | Parser::ExprResult Parser::ParseAssignmentExpression() { |
Chris Lattner | 50dd289 | 2008-02-26 00:51:44 +0000 | [diff] [blame] | 197 | if (Tok.is(tok::kw_throw)) |
| 198 | return ParseThrowExpression(); |
| 199 | |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 200 | ExprOwner LHS(Actions, ParseCastExpression(false)); |
| 201 | if (LHS.isInvalid()) return LHS.move(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 202 | |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 203 | return ParseRHSOfBinaryExpression(LHS.move(), prec::Assignment); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 204 | } |
| 205 | |
Chris Lattner | b93fb49 | 2008-06-02 21:31:07 +0000 | [diff] [blame] | 206 | /// ParseAssignmentExprWithObjCMessageExprStart - Parse an assignment expression |
| 207 | /// where part of an objc message send has already been parsed. In this case |
| 208 | /// LBracLoc indicates the location of the '[' of the message send, and either |
| 209 | /// ReceiverName or ReceiverExpr is non-null indicating the receiver of the |
| 210 | /// message. |
| 211 | /// |
| 212 | /// Since this handles full assignment-expression's, it handles postfix |
| 213 | /// expressions and other binary operators for these expressions as well. |
| 214 | Parser::ExprResult |
| 215 | Parser::ParseAssignmentExprWithObjCMessageExprStart(SourceLocation LBracLoc, |
Steve Naroff | 5cb93b8 | 2008-11-19 15:54:23 +0000 | [diff] [blame] | 216 | SourceLocation NameLoc, |
Chris Lattner | b93fb49 | 2008-06-02 21:31:07 +0000 | [diff] [blame] | 217 | IdentifierInfo *ReceiverName, |
| 218 | ExprTy *ReceiverExpr) { |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 219 | ExprOwner R(Actions, ParseObjCMessageExpressionBody(LBracLoc, NameLoc, |
| 220 | ReceiverName, |
| 221 | ReceiverExpr)); |
| 222 | if (R.isInvalid()) return R.move(); |
| 223 | R = ParsePostfixExpressionSuffix(R.move()); |
| 224 | if (R.isInvalid()) return R.move(); |
| 225 | return ParseRHSOfBinaryExpression(R.move(), 2); |
Chris Lattner | b93fb49 | 2008-06-02 21:31:07 +0000 | [diff] [blame] | 226 | } |
| 227 | |
| 228 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 229 | Parser::ExprResult Parser::ParseConstantExpression() { |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 230 | ExprOwner LHS(Actions, ParseCastExpression(false)); |
| 231 | if (LHS.isInvalid()) return LHS.move(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 232 | |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 233 | return ParseRHSOfBinaryExpression(LHS.move(), prec::Conditional); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 234 | } |
| 235 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 236 | /// ParseRHSOfBinaryExpression - Parse a binary expression that starts with |
| 237 | /// LHS and has a precedence of at least MinPrec. |
| 238 | Parser::ExprResult |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 239 | Parser::ParseRHSOfBinaryExpression(ExprResult LHSArg, unsigned MinPrec) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 240 | unsigned NextTokPrec = getBinOpPrecedence(Tok.getKind()); |
| 241 | SourceLocation ColonLoc; |
| 242 | |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 243 | ExprOwner LHS(Actions, LHSArg); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 244 | while (1) { |
| 245 | // If this token has a lower precedence than we are allowed to parse (e.g. |
| 246 | // because we are called recursively, or because the token is not a binop), |
| 247 | // then we are done! |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 248 | if (NextTokPrec < MinPrec) |
| 249 | return LHS.move(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 250 | |
| 251 | // Consume the operator, saving the operator token for error reporting. |
Chris Lattner | d217773 | 2007-07-20 16:59:19 +0000 | [diff] [blame] | 252 | Token OpToken = Tok; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 253 | ConsumeToken(); |
| 254 | |
| 255 | // Special case handling for the ternary operator. |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 256 | ExprOwner TernaryMiddle(Actions, true); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 257 | if (NextTokPrec == prec::Conditional) { |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 258 | if (Tok.isNot(tok::colon)) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 259 | // Handle this production specially: |
| 260 | // logical-OR-expression '?' expression ':' conditional-expression |
| 261 | // In particular, the RHS of the '?' is 'expression', not |
| 262 | // 'logical-OR-expression' as we might expect. |
| 263 | TernaryMiddle = ParseExpression(); |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 264 | if (TernaryMiddle.isInvalid()) |
| 265 | return TernaryMiddle.move(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 266 | } else { |
| 267 | // Special case handling of "X ? Y : Z" where Y is empty: |
| 268 | // logical-OR-expression '?' ':' conditional-expression [GNU] |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 269 | TernaryMiddle.reset(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 270 | Diag(Tok, diag::ext_gnu_conditional_expr); |
| 271 | } |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 272 | |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 273 | if (Tok.isNot(tok::colon)) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 274 | Diag(Tok, diag::err_expected_colon); |
Chris Lattner | 28eb7e9 | 2008-11-23 23:17:07 +0000 | [diff] [blame] | 275 | Diag(OpToken, diag::note_matching) << "?"; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 276 | return ExprResult(true); |
| 277 | } |
| 278 | |
| 279 | // Eat the colon. |
| 280 | ColonLoc = ConsumeToken(); |
| 281 | } |
| 282 | |
| 283 | // Parse another leaf here for the RHS of the operator. |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 284 | ExprOwner RHS(Actions, ParseCastExpression(false)); |
| 285 | if (RHS.isInvalid()) |
| 286 | return RHS.move(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 287 | |
| 288 | // Remember the precedence of this operator and get the precedence of the |
| 289 | // operator immediately to the right of the RHS. |
| 290 | unsigned ThisPrec = NextTokPrec; |
| 291 | NextTokPrec = getBinOpPrecedence(Tok.getKind()); |
| 292 | |
| 293 | // Assignment and conditional expressions are right-associative. |
Chris Lattner | d7d860d | 2007-12-18 06:06:23 +0000 | [diff] [blame] | 294 | bool isRightAssoc = ThisPrec == prec::Conditional || |
| 295 | ThisPrec == prec::Assignment; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 296 | |
| 297 | // Get the precedence of the operator to the right of the RHS. If it binds |
| 298 | // more tightly with RHS than we do, evaluate it completely first. |
| 299 | if (ThisPrec < NextTokPrec || |
| 300 | (ThisPrec == NextTokPrec && isRightAssoc)) { |
| 301 | // If this is left-associative, only parse things on the RHS that bind |
| 302 | // more tightly than the current operator. If it is left-associative, it |
| 303 | // is okay, to bind exactly as tightly. For example, compile A=B=C=D as |
| 304 | // A=(B=(C=D)), where each paren is a level of recursion here. |
Sebastian Redl | a55e52c | 2008-11-25 22:21:31 +0000 | [diff] [blame] | 305 | // The function takes ownership of the RHS. |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 306 | RHS = ParseRHSOfBinaryExpression(RHS.move(), ThisPrec + !isRightAssoc); |
| 307 | if (RHS.isInvalid()) |
| 308 | return RHS.move(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 309 | |
| 310 | NextTokPrec = getBinOpPrecedence(Tok.getKind()); |
| 311 | } |
| 312 | assert(NextTokPrec <= ThisPrec && "Recursion didn't work!"); |
Sebastian Redl | a55e52c | 2008-11-25 22:21:31 +0000 | [diff] [blame] | 313 | |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 314 | if (!LHS.isInvalid()) { |
Chris Lattner | d56d6b6 | 2007-08-31 05:01:50 +0000 | [diff] [blame] | 315 | // Combine the LHS and RHS into the LHS (e.g. build AST). |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 316 | if (TernaryMiddle.isInvalid()) |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 317 | LHS = Actions.ActOnBinOp(CurScope, OpToken.getLocation(), |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 318 | OpToken.getKind(), LHS.move(), RHS.move()); |
Chris Lattner | d56d6b6 | 2007-08-31 05:01:50 +0000 | [diff] [blame] | 319 | else |
Steve Naroff | f69936d | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 320 | LHS = Actions.ActOnConditionalOp(OpToken.getLocation(), ColonLoc, |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 321 | LHS.move(), TernaryMiddle.move(), |
| 322 | RHS.move()); |
Chris Lattner | d56d6b6 | 2007-08-31 05:01:50 +0000 | [diff] [blame] | 323 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 324 | } |
| 325 | } |
| 326 | |
| 327 | /// ParseCastExpression - Parse a cast-expression, or, if isUnaryExpression is |
| 328 | /// true, parse a unary-expression. |
| 329 | /// |
| 330 | /// cast-expression: [C99 6.5.4] |
| 331 | /// unary-expression |
| 332 | /// '(' type-name ')' cast-expression |
| 333 | /// |
| 334 | /// unary-expression: [C99 6.5.3] |
| 335 | /// postfix-expression |
| 336 | /// '++' unary-expression |
| 337 | /// '--' unary-expression |
| 338 | /// unary-operator cast-expression |
| 339 | /// 'sizeof' unary-expression |
| 340 | /// 'sizeof' '(' type-name ')' |
| 341 | /// [GNU] '__alignof' unary-expression |
| 342 | /// [GNU] '__alignof' '(' type-name ')' |
Douglas Gregor | 85bb3da | 2008-11-06 15:17:27 +0000 | [diff] [blame] | 343 | /// [C++0x] 'alignof' '(' type-id ')' |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 344 | /// [GNU] '&&' identifier |
Sebastian Redl | 4c5d320 | 2008-11-21 19:14:01 +0000 | [diff] [blame] | 345 | /// [C++] new-expression |
| 346 | /// [C++] delete-expression |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 347 | /// |
| 348 | /// unary-operator: one of |
| 349 | /// '&' '*' '+' '-' '~' '!' |
| 350 | /// [GNU] '__extension__' '__real' '__imag' |
| 351 | /// |
| 352 | /// primary-expression: [C99 6.5.1] |
Douglas Gregor | 1cd1b1e | 2008-11-06 22:13:31 +0000 | [diff] [blame] | 353 | /// [C99] identifier |
Sebastian Redl | c42e118 | 2008-11-11 11:37:55 +0000 | [diff] [blame] | 354 | /// [C++] id-expression |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 355 | /// constant |
| 356 | /// string-literal |
| 357 | /// [C++] boolean-literal [C++ 2.13.5] |
| 358 | /// '(' expression ')' |
| 359 | /// '__func__' [C99 6.4.2.2] |
| 360 | /// [GNU] '__FUNCTION__' |
| 361 | /// [GNU] '__PRETTY_FUNCTION__' |
| 362 | /// [GNU] '(' compound-statement ')' |
| 363 | /// [GNU] '__builtin_va_arg' '(' assignment-expression ',' type-name ')' |
| 364 | /// [GNU] '__builtin_offsetof' '(' type-name ',' offsetof-member-designator')' |
| 365 | /// [GNU] '__builtin_choose_expr' '(' assign-expr ',' assign-expr ',' |
| 366 | /// assign-expr ')' |
| 367 | /// [GNU] '__builtin_types_compatible_p' '(' type-name ',' type-name ')' |
Douglas Gregor | 2d8b273 | 2008-11-29 04:51:27 +0000 | [diff] [blame] | 368 | /// [GNU] '__null' |
Fariborz Jahanian | 095ffca | 2007-09-26 17:03:44 +0000 | [diff] [blame] | 369 | /// [OBJC] '[' objc-message-expr ']' |
Chris Lattner | 5ac87ed | 2008-01-25 18:58:06 +0000 | [diff] [blame] | 370 | /// [OBJC] '@selector' '(' objc-selector-arg ')' |
Fariborz Jahanian | 095ffca | 2007-09-26 17:03:44 +0000 | [diff] [blame] | 371 | /// [OBJC] '@protocol' '(' identifier ')' |
| 372 | /// [OBJC] '@encode' '(' type-name ')' |
Fariborz Jahanian | 0ccb27d | 2007-09-05 19:52:07 +0000 | [diff] [blame] | 373 | /// [OBJC] objc-string-literal |
Argyrios Kyrtzidis | 987a14b | 2008-08-22 15:38:55 +0000 | [diff] [blame] | 374 | /// [C++] simple-type-specifier '(' expression-list[opt] ')' [C++ 5.2.3] |
| 375 | /// [C++] typename-specifier '(' expression-list[opt] ')' [TODO] |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 376 | /// [C++] 'const_cast' '<' type-name '>' '(' expression ')' [C++ 5.2p1] |
| 377 | /// [C++] 'dynamic_cast' '<' type-name '>' '(' expression ')' [C++ 5.2p1] |
| 378 | /// [C++] 'reinterpret_cast' '<' type-name '>' '(' expression ')' [C++ 5.2p1] |
| 379 | /// [C++] 'static_cast' '<' type-name '>' '(' expression ')' [C++ 5.2p1] |
Sebastian Redl | c42e118 | 2008-11-11 11:37:55 +0000 | [diff] [blame] | 380 | /// [C++] 'typeid' '(' expression ')' [C++ 5.2p1] |
| 381 | /// [C++] 'typeid' '(' type-id ')' [C++ 5.2p1] |
Argyrios Kyrtzidis | d7464be | 2008-07-16 07:23:27 +0000 | [diff] [blame] | 382 | /// [C++] 'this' [C++ 9.3.2] |
Steve Naroff | 296e8d5 | 2008-08-28 19:20:44 +0000 | [diff] [blame] | 383 | /// [clang] '^' block-literal |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 384 | /// |
| 385 | /// constant: [C99 6.4.4] |
| 386 | /// integer-constant |
| 387 | /// floating-constant |
| 388 | /// enumeration-constant -> identifier |
| 389 | /// character-constant |
| 390 | /// |
Douglas Gregor | 1cd1b1e | 2008-11-06 22:13:31 +0000 | [diff] [blame] | 391 | /// id-expression: [C++ 5.1] |
| 392 | /// unqualified-id |
| 393 | /// qualified-id [TODO] |
| 394 | /// |
| 395 | /// unqualified-id: [C++ 5.1] |
| 396 | /// identifier |
| 397 | /// operator-function-id |
| 398 | /// conversion-function-id [TODO] |
| 399 | /// '~' class-name [TODO] |
| 400 | /// template-id [TODO] |
Argyrios Kyrtzidis | eb83ecd | 2008-11-08 16:45:02 +0000 | [diff] [blame] | 401 | /// |
Sebastian Redl | 4c5d320 | 2008-11-21 19:14:01 +0000 | [diff] [blame] | 402 | /// new-expression: [C++ 5.3.4] |
| 403 | /// '::'[opt] 'new' new-placement[opt] new-type-id |
| 404 | /// new-initializer[opt] |
| 405 | /// '::'[opt] 'new' new-placement[opt] '(' type-id ')' |
| 406 | /// new-initializer[opt] |
| 407 | /// |
| 408 | /// delete-expression: [C++ 5.3.5] |
| 409 | /// '::'[opt] 'delete' cast-expression |
| 410 | /// '::'[opt] 'delete' '[' ']' cast-expression |
| 411 | /// |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 412 | Parser::ExprResult Parser::ParseCastExpression(bool isUnaryExpression) { |
Argyrios Kyrtzidis | eb83ecd | 2008-11-08 16:45:02 +0000 | [diff] [blame] | 413 | if (getLang().CPlusPlus) { |
| 414 | // Annotate typenames and C++ scope specifiers. |
Argyrios Kyrtzidis | 44802cc | 2008-11-26 21:51:07 +0000 | [diff] [blame] | 415 | // Used only in C++, where the typename can be considered as a functional |
| 416 | // style cast ("int(1)"). |
| 417 | // In C we don't expect identifiers to be treated as typenames; if it's a |
| 418 | // typedef name, let it be handled as an identifier and |
| 419 | // Actions.ActOnIdentifierExpr will emit the proper diagnostic. |
Argyrios Kyrtzidis | eb83ecd | 2008-11-08 16:45:02 +0000 | [diff] [blame] | 420 | TryAnnotateTypeOrScopeToken(); |
| 421 | } |
| 422 | |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 423 | ExprOwner Res(Actions); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 424 | tok::TokenKind SavedKind = Tok.getKind(); |
| 425 | |
| 426 | // This handles all of cast-expression, unary-expression, postfix-expression, |
| 427 | // and primary-expression. We handle them together like this for efficiency |
| 428 | // and to simplify handling of an expression starting with a '(' token: which |
| 429 | // may be one of a parenthesized expression, cast-expression, compound literal |
| 430 | // expression, or statement expression. |
| 431 | // |
| 432 | // If the parsed tokens consist of a primary-expression, the cases below |
| 433 | // call ParsePostfixExpressionSuffix to handle the postfix expression |
| 434 | // suffixes. Cases that cannot be followed by postfix exprs should |
| 435 | // return without invoking ParsePostfixExpressionSuffix. |
| 436 | switch (SavedKind) { |
| 437 | case tok::l_paren: { |
| 438 | // If this expression is limited to being a unary-expression, the parent can |
| 439 | // not start a cast expression. |
| 440 | ParenParseOption ParenExprType = |
| 441 | isUnaryExpression ? CompoundLiteral : CastExpr; |
| 442 | TypeTy *CastTy; |
| 443 | SourceLocation LParenLoc = Tok.getLocation(); |
| 444 | SourceLocation RParenLoc; |
| 445 | Res = ParseParenExpression(ParenExprType, CastTy, RParenLoc); |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 446 | if (Res.isInvalid()) return Res.move(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 447 | |
| 448 | switch (ParenExprType) { |
| 449 | case SimpleExpr: break; // Nothing else to do. |
| 450 | case CompoundStmt: break; // Nothing else to do. |
| 451 | case CompoundLiteral: |
| 452 | // We parsed '(' type-name ')' '{' ... '}'. If any suffixes of |
| 453 | // postfix-expression exist, parse them now. |
| 454 | break; |
| 455 | case CastExpr: |
| 456 | // We parsed '(' type-name ')' and the thing after it wasn't a '{'. Parse |
| 457 | // the cast-expression that follows it next. |
| 458 | // TODO: For cast expression with CastTy. |
| 459 | Res = ParseCastExpression(false); |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 460 | if (!Res.isInvalid()) |
| 461 | Res = Actions.ActOnCastExpr(LParenLoc, CastTy, RParenLoc, Res.move()); |
| 462 | return Res.move(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 463 | } |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 464 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 465 | // These can be followed by postfix-expr pieces. |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 466 | return ParsePostfixExpressionSuffix(Res.move()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 467 | } |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 468 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 469 | // primary-expression |
| 470 | case tok::numeric_constant: |
| 471 | // constant: integer-constant |
| 472 | // constant: floating-constant |
| 473 | |
Steve Naroff | f69936d | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 474 | Res = Actions.ActOnNumericConstant(Tok); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 475 | ConsumeToken(); |
| 476 | |
| 477 | // These can be followed by postfix-expr pieces. |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 478 | return ParsePostfixExpressionSuffix(Res.move()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 479 | |
| 480 | case tok::kw_true: |
| 481 | case tok::kw_false: |
| 482 | return ParseCXXBoolLiteral(); |
| 483 | |
Argyrios Kyrtzidis | eb83ecd | 2008-11-08 16:45:02 +0000 | [diff] [blame] | 484 | case tok::identifier: { // primary-expression: identifier |
| 485 | // unqualified-id: identifier |
| 486 | // constant: enumeration-constant |
Argyrios Kyrtzidis | 987a14b | 2008-08-22 15:38:55 +0000 | [diff] [blame] | 487 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 488 | // Consume the identifier so that we can see if it is followed by a '('. |
| 489 | // Function designators are allowed to be undeclared (C99 6.5.1p2), so we |
| 490 | // need to know whether or not this identifier is a function designator or |
| 491 | // not. |
| 492 | IdentifierInfo &II = *Tok.getIdentifierInfo(); |
| 493 | SourceLocation L = ConsumeToken(); |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 494 | Res = Actions.ActOnIdentifierExpr(CurScope, L, II, Tok.is(tok::l_paren)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 495 | // These can be followed by postfix-expr pieces. |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 496 | return ParsePostfixExpressionSuffix(Res.move()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 497 | } |
| 498 | case tok::char_constant: // constant: character-constant |
Steve Naroff | f69936d | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 499 | Res = Actions.ActOnCharacterConstant(Tok); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 500 | ConsumeToken(); |
| 501 | // These can be followed by postfix-expr pieces. |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 502 | return ParsePostfixExpressionSuffix(Res.move()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 503 | case tok::kw___func__: // primary-expression: __func__ [C99 6.4.2.2] |
| 504 | case tok::kw___FUNCTION__: // primary-expression: __FUNCTION__ [GNU] |
| 505 | case tok::kw___PRETTY_FUNCTION__: // primary-expression: __P..Y_F..N__ [GNU] |
Chris Lattner | d9f6910 | 2008-08-10 01:53:14 +0000 | [diff] [blame] | 506 | Res = Actions.ActOnPredefinedExpr(Tok.getLocation(), SavedKind); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 507 | ConsumeToken(); |
| 508 | // These can be followed by postfix-expr pieces. |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 509 | return ParsePostfixExpressionSuffix(Res.move()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 510 | case tok::string_literal: // primary-expression: string-literal |
| 511 | case tok::wide_string_literal: |
| 512 | Res = ParseStringLiteralExpression(); |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 513 | if (Res.isInvalid()) return Res.move(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 514 | // This can be followed by postfix-expr pieces (e.g. "foo"[1]). |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 515 | return ParsePostfixExpressionSuffix(Res.move()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 516 | case tok::kw___builtin_va_arg: |
| 517 | case tok::kw___builtin_offsetof: |
| 518 | case tok::kw___builtin_choose_expr: |
Nate Begeman | e2ce1d9 | 2008-01-17 17:46:27 +0000 | [diff] [blame] | 519 | case tok::kw___builtin_overload: |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 520 | case tok::kw___builtin_types_compatible_p: |
| 521 | return ParseBuiltinPrimaryExpression(); |
Douglas Gregor | 2d8b273 | 2008-11-29 04:51:27 +0000 | [diff] [blame] | 522 | case tok::kw___null: |
| 523 | return Actions.ActOnGNUNullExpr(ConsumeToken()); |
| 524 | break; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 525 | case tok::plusplus: // unary-expression: '++' unary-expression |
| 526 | case tok::minusminus: { // unary-expression: '--' unary-expression |
| 527 | SourceLocation SavedLoc = ConsumeToken(); |
| 528 | Res = ParseCastExpression(true); |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 529 | if (!Res.isInvalid()) |
| 530 | Res = Actions.ActOnUnaryOp(CurScope, SavedLoc, SavedKind, Res.move()); |
| 531 | return Res.move(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 532 | } |
| 533 | case tok::amp: // unary-expression: '&' cast-expression |
| 534 | case tok::star: // unary-expression: '*' cast-expression |
| 535 | case tok::plus: // unary-expression: '+' cast-expression |
| 536 | case tok::minus: // unary-expression: '-' cast-expression |
| 537 | case tok::tilde: // unary-expression: '~' cast-expression |
| 538 | case tok::exclaim: // unary-expression: '!' cast-expression |
| 539 | case tok::kw___real: // unary-expression: '__real' cast-expression [GNU] |
Chris Lattner | 3508084 | 2008-02-02 20:20:10 +0000 | [diff] [blame] | 540 | case tok::kw___imag: { // unary-expression: '__imag' cast-expression [GNU] |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 541 | SourceLocation SavedLoc = ConsumeToken(); |
| 542 | Res = ParseCastExpression(false); |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 543 | if (!Res.isInvalid()) |
| 544 | Res = Actions.ActOnUnaryOp(CurScope, SavedLoc, SavedKind, Res.move()); |
| 545 | return Res.move(); |
| 546 | } |
| 547 | |
Chris Lattner | 3508084 | 2008-02-02 20:20:10 +0000 | [diff] [blame] | 548 | case tok::kw___extension__:{//unary-expression:'__extension__' cast-expr [GNU] |
| 549 | // __extension__ silences extension warnings in the subexpression. |
Chris Lattner | c46d1a1 | 2008-10-20 06:45:43 +0000 | [diff] [blame] | 550 | ExtensionRAIIObject O(Diags); // Use RAII to do this. |
Chris Lattner | 3508084 | 2008-02-02 20:20:10 +0000 | [diff] [blame] | 551 | SourceLocation SavedLoc = ConsumeToken(); |
| 552 | Res = ParseCastExpression(false); |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 553 | if (!Res.isInvalid()) |
| 554 | Res = Actions.ActOnUnaryOp(CurScope, SavedLoc, SavedKind, Res.move()); |
| 555 | return Res.move(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 556 | } |
| 557 | case tok::kw_sizeof: // unary-expression: 'sizeof' unary-expression |
| 558 | // unary-expression: 'sizeof' '(' type-name ')' |
Douglas Gregor | 85bb3da | 2008-11-06 15:17:27 +0000 | [diff] [blame] | 559 | case tok::kw_alignof: |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 560 | case tok::kw___alignof: // unary-expression: '__alignof' unary-expression |
| 561 | // unary-expression: '__alignof' '(' type-name ')' |
Douglas Gregor | 85bb3da | 2008-11-06 15:17:27 +0000 | [diff] [blame] | 562 | // unary-expression: 'alignof' '(' type-id ')' |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 563 | return ParseSizeofAlignofExpression(); |
| 564 | case tok::ampamp: { // unary-expression: '&&' identifier |
| 565 | SourceLocation AmpAmpLoc = ConsumeToken(); |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 566 | if (Tok.isNot(tok::identifier)) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 567 | Diag(Tok, diag::err_expected_ident); |
| 568 | return ExprResult(true); |
| 569 | } |
| 570 | |
| 571 | Diag(AmpAmpLoc, diag::ext_gnu_address_of_label); |
Steve Naroff | 1b273c4 | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 572 | Res = Actions.ActOnAddrLabel(AmpAmpLoc, Tok.getLocation(), |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 573 | Tok.getIdentifierInfo()); |
| 574 | ConsumeToken(); |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 575 | return Res.move(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 576 | } |
| 577 | case tok::kw_const_cast: |
| 578 | case tok::kw_dynamic_cast: |
| 579 | case tok::kw_reinterpret_cast: |
| 580 | case tok::kw_static_cast: |
Argyrios Kyrtzidis | b348b81 | 2008-08-16 19:45:32 +0000 | [diff] [blame] | 581 | Res = ParseCXXCasts(); |
| 582 | // These can be followed by postfix-expr pieces. |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 583 | return ParsePostfixExpressionSuffix(Res.move()); |
Sebastian Redl | c42e118 | 2008-11-11 11:37:55 +0000 | [diff] [blame] | 584 | case tok::kw_typeid: |
| 585 | Res = ParseCXXTypeid(); |
| 586 | // This can be followed by postfix-expr pieces. |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 587 | return ParsePostfixExpressionSuffix(Res.move()); |
Argyrios Kyrtzidis | 4cc18a4 | 2008-06-24 22:12:16 +0000 | [diff] [blame] | 588 | case tok::kw_this: |
Argyrios Kyrtzidis | 289d773 | 2008-08-16 19:34:46 +0000 | [diff] [blame] | 589 | Res = ParseCXXThis(); |
| 590 | // This can be followed by postfix-expr pieces. |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 591 | return ParsePostfixExpressionSuffix(Res.move()); |
Argyrios Kyrtzidis | 987a14b | 2008-08-22 15:38:55 +0000 | [diff] [blame] | 592 | |
| 593 | case tok::kw_char: |
| 594 | case tok::kw_wchar_t: |
| 595 | case tok::kw_bool: |
| 596 | case tok::kw_short: |
| 597 | case tok::kw_int: |
| 598 | case tok::kw_long: |
| 599 | case tok::kw_signed: |
| 600 | case tok::kw_unsigned: |
| 601 | case tok::kw_float: |
| 602 | case tok::kw_double: |
| 603 | case tok::kw_void: |
| 604 | case tok::kw_typeof: { |
| 605 | if (!getLang().CPlusPlus) |
| 606 | goto UnhandledToken; |
Argyrios Kyrtzidis | eb83ecd | 2008-11-08 16:45:02 +0000 | [diff] [blame] | 607 | case tok::annot_qualtypename: |
| 608 | assert(getLang().CPlusPlus && "Expected C++"); |
Argyrios Kyrtzidis | 987a14b | 2008-08-22 15:38:55 +0000 | [diff] [blame] | 609 | // postfix-expression: simple-type-specifier '(' expression-list[opt] ')' |
| 610 | // |
| 611 | DeclSpec DS; |
| 612 | ParseCXXSimpleTypeSpecifier(DS); |
| 613 | if (Tok.isNot(tok::l_paren)) |
Chris Lattner | 1ab3b96 | 2008-11-18 07:48:38 +0000 | [diff] [blame] | 614 | return Diag(Tok, diag::err_expected_lparen_after_type) |
| 615 | << DS.getSourceRange(); |
Argyrios Kyrtzidis | 987a14b | 2008-08-22 15:38:55 +0000 | [diff] [blame] | 616 | |
| 617 | Res = ParseCXXTypeConstructExpression(DS); |
| 618 | // This can be followed by postfix-expr pieces. |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 619 | return ParsePostfixExpressionSuffix(Res.move()); |
Argyrios Kyrtzidis | 987a14b | 2008-08-22 15:38:55 +0000 | [diff] [blame] | 620 | } |
| 621 | |
Argyrios Kyrtzidis | eb83ecd | 2008-11-08 16:45:02 +0000 | [diff] [blame] | 622 | case tok::annot_cxxscope: // [C++] id-expression: qualified-id |
| 623 | case tok::kw_operator: // [C++] id-expression: operator/conversion-function-id |
| 624 | // template-id |
| 625 | Res = ParseCXXIdExpression(); |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 626 | return ParsePostfixExpressionSuffix(Res.move()); |
Douglas Gregor | 1cd1b1e | 2008-11-06 22:13:31 +0000 | [diff] [blame] | 627 | |
Sebastian Redl | fb4ccd7 | 2008-12-02 16:35:44 +0000 | [diff] [blame] | 628 | case tok::coloncolon: // [C++] new-expression or [C++] delete-expression |
Sebastian Redl | bcf293b | 2008-12-02 17:10:24 +0000 | [diff] [blame] | 629 | // If the next token is neither 'new' nor 'delete', the :: would have been |
| 630 | // parsed as a scope specifier already. |
Sebastian Redl | fb4ccd7 | 2008-12-02 16:35:44 +0000 | [diff] [blame] | 631 | if (NextToken().is(tok::kw_new)) |
| 632 | return ParseCXXNewExpression(); |
| 633 | else |
| 634 | return ParseCXXDeleteExpression(); |
| 635 | |
Sebastian Redl | 4c5d320 | 2008-11-21 19:14:01 +0000 | [diff] [blame] | 636 | case tok::kw_new: // [C++] new-expression |
Sebastian Redl | 4c5d320 | 2008-11-21 19:14:01 +0000 | [diff] [blame] | 637 | return ParseCXXNewExpression(); |
| 638 | |
| 639 | case tok::kw_delete: // [C++] delete-expression |
| 640 | return ParseCXXDeleteExpression(); |
| 641 | |
Chris Lattner | c97c204 | 2007-10-03 22:03:06 +0000 | [diff] [blame] | 642 | case tok::at: { |
| 643 | SourceLocation AtLoc = ConsumeToken(); |
Steve Naroff | a642beb | 2007-10-15 20:55:58 +0000 | [diff] [blame] | 644 | return ParseObjCAtExpression(AtLoc); |
Chris Lattner | c97c204 | 2007-10-03 22:03:06 +0000 | [diff] [blame] | 645 | } |
Fariborz Jahanian | 0ccb27d | 2007-09-05 19:52:07 +0000 | [diff] [blame] | 646 | case tok::l_square: |
Steve Naroff | a642beb | 2007-10-15 20:55:58 +0000 | [diff] [blame] | 647 | // These can be followed by postfix-expr pieces. |
Chris Lattner | 039a642 | 2008-05-09 05:28:21 +0000 | [diff] [blame] | 648 | if (getLang().ObjC1) |
| 649 | return ParsePostfixExpressionSuffix(ParseObjCMessageExpression()); |
| 650 | // FALL THROUGH. |
Steve Naroff | 296e8d5 | 2008-08-28 19:20:44 +0000 | [diff] [blame] | 651 | case tok::caret: |
| 652 | if (getLang().Blocks) |
| 653 | return ParsePostfixExpressionSuffix(ParseBlockLiteralExpression()); |
| 654 | Diag(Tok, diag::err_expected_expression); |
| 655 | return ExprResult(true); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 656 | default: |
Argyrios Kyrtzidis | 987a14b | 2008-08-22 15:38:55 +0000 | [diff] [blame] | 657 | UnhandledToken: |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 658 | Diag(Tok, diag::err_expected_expression); |
| 659 | return ExprResult(true); |
| 660 | } |
| 661 | |
| 662 | // unreachable. |
| 663 | abort(); |
| 664 | } |
| 665 | |
| 666 | /// ParsePostfixExpressionSuffix - Once the leading part of a postfix-expression |
| 667 | /// is parsed, this method parses any suffixes that apply. |
| 668 | /// |
| 669 | /// postfix-expression: [C99 6.5.2] |
| 670 | /// primary-expression |
| 671 | /// postfix-expression '[' expression ']' |
| 672 | /// postfix-expression '(' argument-expression-list[opt] ')' |
| 673 | /// postfix-expression '.' identifier |
| 674 | /// postfix-expression '->' identifier |
| 675 | /// postfix-expression '++' |
| 676 | /// postfix-expression '--' |
| 677 | /// '(' type-name ')' '{' initializer-list '}' |
| 678 | /// '(' type-name ')' '{' initializer-list ',' '}' |
| 679 | /// |
| 680 | /// argument-expression-list: [C99 6.5.2] |
| 681 | /// argument-expression |
| 682 | /// argument-expression-list ',' assignment-expression |
| 683 | /// |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 684 | Parser::ExprResult Parser::ParsePostfixExpressionSuffix(ExprResult LHSArg) { |
| 685 | ExprOwner LHS(Actions, LHSArg); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 686 | // Now that the primary-expression piece of the postfix-expression has been |
| 687 | // parsed, see if there are any postfix-expression pieces here. |
| 688 | SourceLocation Loc; |
| 689 | while (1) { |
| 690 | switch (Tok.getKind()) { |
| 691 | default: // Not a postfix-expression suffix. |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 692 | return LHS.move(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 693 | case tok::l_square: { // postfix-expression: p-e '[' expression ']' |
| 694 | Loc = ConsumeBracket(); |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 695 | ExprOwner Idx(Actions, ParseExpression()); |
Sebastian Redl | a55e52c | 2008-11-25 22:21:31 +0000 | [diff] [blame] | 696 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 697 | SourceLocation RLoc = Tok.getLocation(); |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 698 | |
| 699 | if (!LHS.isInvalid() && !Idx.isInvalid() && Tok.is(tok::r_square)) { |
| 700 | LHS = Actions.ActOnArraySubscriptExpr(CurScope, LHS.move(), Loc, |
| 701 | Idx.move(), RLoc); |
| 702 | } else |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 703 | LHS = ExprResult(true); |
| 704 | |
| 705 | // Match the ']'. |
| 706 | MatchRHSPunctuation(tok::r_square, Loc); |
| 707 | break; |
| 708 | } |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 709 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 710 | case tok::l_paren: { // p-e: p-e '(' argument-expression-list[opt] ')' |
Sebastian Redl | a55e52c | 2008-11-25 22:21:31 +0000 | [diff] [blame] | 711 | ExprVector ArgExprs(Actions); |
Argyrios Kyrtzidis | 0cd5b42 | 2008-08-16 20:03:01 +0000 | [diff] [blame] | 712 | CommaLocsTy CommaLocs; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 713 | |
| 714 | Loc = ConsumeParen(); |
| 715 | |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 716 | if (Tok.isNot(tok::r_paren)) { |
Argyrios Kyrtzidis | 0cd5b42 | 2008-08-16 20:03:01 +0000 | [diff] [blame] | 717 | if (ParseExpressionList(ArgExprs, CommaLocs)) { |
| 718 | SkipUntil(tok::r_paren); |
| 719 | return ExprResult(true); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 720 | } |
| 721 | } |
| 722 | |
| 723 | // Match the ')'. |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 724 | if (!LHS.isInvalid() && Tok.is(tok::r_paren)) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 725 | assert((ArgExprs.size() == 0 || ArgExprs.size()-1 == CommaLocs.size())&& |
| 726 | "Unexpected number of commas!"); |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 727 | LHS = Actions.ActOnCallExpr(CurScope, LHS.move(), Loc, |
Douglas Gregor | 5c37de7 | 2008-12-06 00:22:45 +0000 | [diff] [blame] | 728 | ArgExprs.take(), |
Sebastian Redl | a55e52c | 2008-11-25 22:21:31 +0000 | [diff] [blame] | 729 | ArgExprs.size(), &CommaLocs[0], |
| 730 | Tok.getLocation()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 731 | } |
| 732 | |
Chris Lattner | 2ff5426 | 2007-07-21 05:18:12 +0000 | [diff] [blame] | 733 | MatchRHSPunctuation(tok::r_paren, Loc); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 734 | break; |
| 735 | } |
| 736 | case tok::arrow: // postfix-expression: p-e '->' identifier |
| 737 | case tok::period: { // postfix-expression: p-e '.' identifier |
| 738 | tok::TokenKind OpKind = Tok.getKind(); |
| 739 | SourceLocation OpLoc = ConsumeToken(); // Eat the "." or "->" token. |
| 740 | |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 741 | if (Tok.isNot(tok::identifier)) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 742 | Diag(Tok, diag::err_expected_ident); |
| 743 | return ExprResult(true); |
| 744 | } |
| 745 | |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 746 | if (!LHS.isInvalid()) { |
| 747 | LHS = Actions.ActOnMemberReferenceExpr(LHS.move(), OpLoc, OpKind, |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 748 | Tok.getLocation(), |
| 749 | *Tok.getIdentifierInfo()); |
Sebastian Redl | a55e52c | 2008-11-25 22:21:31 +0000 | [diff] [blame] | 750 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 751 | ConsumeToken(); |
| 752 | break; |
| 753 | } |
| 754 | case tok::plusplus: // postfix-expression: postfix-expression '++' |
| 755 | case tok::minusminus: // postfix-expression: postfix-expression '--' |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 756 | if (!LHS.isInvalid()) { |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 757 | LHS = Actions.ActOnPostfixUnaryOp(CurScope, Tok.getLocation(), |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 758 | Tok.getKind(), LHS.move()); |
Sebastian Redl | a55e52c | 2008-11-25 22:21:31 +0000 | [diff] [blame] | 759 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 760 | ConsumeToken(); |
| 761 | break; |
| 762 | } |
| 763 | } |
| 764 | } |
| 765 | |
| 766 | |
| 767 | /// ParseSizeofAlignofExpression - Parse a sizeof or alignof expression. |
| 768 | /// unary-expression: [C99 6.5.3] |
| 769 | /// 'sizeof' unary-expression |
| 770 | /// 'sizeof' '(' type-name ')' |
| 771 | /// [GNU] '__alignof' unary-expression |
| 772 | /// [GNU] '__alignof' '(' type-name ')' |
Douglas Gregor | 85bb3da | 2008-11-06 15:17:27 +0000 | [diff] [blame] | 773 | /// [C++0x] 'alignof' '(' type-id ')' |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 774 | Parser::ExprResult Parser::ParseSizeofAlignofExpression() { |
Douglas Gregor | 85bb3da | 2008-11-06 15:17:27 +0000 | [diff] [blame] | 775 | assert((Tok.is(tok::kw_sizeof) || Tok.is(tok::kw___alignof) |
| 776 | || Tok.is(tok::kw_alignof)) && |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 777 | "Not a sizeof/alignof expression!"); |
Chris Lattner | d217773 | 2007-07-20 16:59:19 +0000 | [diff] [blame] | 778 | Token OpTok = Tok; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 779 | ConsumeToken(); |
| 780 | |
| 781 | // If the operand doesn't start with an '(', it must be an expression. |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 782 | ExprOwner Operand(Actions); |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 783 | if (Tok.isNot(tok::l_paren)) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 784 | Operand = ParseCastExpression(true); |
| 785 | } else { |
| 786 | // If it starts with a '(', we know that it is either a parenthesized |
| 787 | // type-name, or it is a unary-expression that starts with a compound |
| 788 | // literal, or starts with a primary-expression that is a parenthesized |
| 789 | // expression. |
| 790 | ParenParseOption ExprType = CastExpr; |
| 791 | TypeTy *CastTy; |
| 792 | SourceLocation LParenLoc = Tok.getLocation(), RParenLoc; |
| 793 | Operand = ParseParenExpression(ExprType, CastTy, RParenLoc); |
| 794 | |
| 795 | // If ParseParenExpression parsed a '(typename)' sequence only, the this is |
| 796 | // sizeof/alignof a type. Otherwise, it is sizeof/alignof an expression. |
Chris Lattner | 4c1a2a9 | 2007-11-13 20:50:37 +0000 | [diff] [blame] | 797 | if (ExprType == CastExpr) |
Sebastian Redl | 0518999 | 2008-11-11 17:56:53 +0000 | [diff] [blame] | 798 | return Actions.ActOnSizeOfAlignOfExpr(OpTok.getLocation(), |
| 799 | OpTok.is(tok::kw_sizeof), |
| 800 | /*isType=*/true, CastTy, |
| 801 | SourceRange(LParenLoc, RParenLoc)); |
Chris Lattner | 4c1a2a9 | 2007-11-13 20:50:37 +0000 | [diff] [blame] | 802 | |
| 803 | // If this is a parenthesized expression, it is the start of a |
| 804 | // unary-expression, but doesn't include any postfix pieces. Parse these |
| 805 | // now if present. |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 806 | Operand = ParsePostfixExpressionSuffix(Operand.move()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 807 | } |
| 808 | |
| 809 | // If we get here, the operand to the sizeof/alignof was an expresion. |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 810 | if (!Operand.isInvalid()) |
Sebastian Redl | 0518999 | 2008-11-11 17:56:53 +0000 | [diff] [blame] | 811 | Operand = Actions.ActOnSizeOfAlignOfExpr(OpTok.getLocation(), |
| 812 | OpTok.is(tok::kw_sizeof), |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 813 | /*isType=*/false, Operand.move(), |
Sebastian Redl | 0518999 | 2008-11-11 17:56:53 +0000 | [diff] [blame] | 814 | SourceRange()); |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 815 | return Operand.move(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 816 | } |
| 817 | |
| 818 | /// ParseBuiltinPrimaryExpression |
| 819 | /// |
| 820 | /// primary-expression: [C99 6.5.1] |
| 821 | /// [GNU] '__builtin_va_arg' '(' assignment-expression ',' type-name ')' |
| 822 | /// [GNU] '__builtin_offsetof' '(' type-name ',' offsetof-member-designator')' |
| 823 | /// [GNU] '__builtin_choose_expr' '(' assign-expr ',' assign-expr ',' |
| 824 | /// assign-expr ')' |
| 825 | /// [GNU] '__builtin_types_compatible_p' '(' type-name ',' type-name ')' |
Nate Begeman | e2ce1d9 | 2008-01-17 17:46:27 +0000 | [diff] [blame] | 826 | /// [CLANG] '__builtin_overload' '(' expr (',' expr)* ')' |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 827 | /// |
| 828 | /// [GNU] offsetof-member-designator: |
| 829 | /// [GNU] identifier |
| 830 | /// [GNU] offsetof-member-designator '.' identifier |
| 831 | /// [GNU] offsetof-member-designator '[' expression ']' |
| 832 | /// |
| 833 | Parser::ExprResult Parser::ParseBuiltinPrimaryExpression() { |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 834 | ExprOwner Res(Actions); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 835 | const IdentifierInfo *BuiltinII = Tok.getIdentifierInfo(); |
| 836 | |
| 837 | tok::TokenKind T = Tok.getKind(); |
| 838 | SourceLocation StartLoc = ConsumeToken(); // Eat the builtin identifier. |
| 839 | |
| 840 | // All of these start with an open paren. |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 841 | if (Tok.isNot(tok::l_paren)) { |
Chris Lattner | 08631c5 | 2008-11-23 21:45:46 +0000 | [diff] [blame] | 842 | Diag(Tok, diag::err_expected_lparen_after_id) << BuiltinII; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 843 | return ExprResult(true); |
| 844 | } |
| 845 | |
| 846 | SourceLocation LParenLoc = ConsumeParen(); |
| 847 | // TODO: Build AST. |
| 848 | |
| 849 | switch (T) { |
| 850 | default: assert(0 && "Not a builtin primary expression!"); |
Anders Carlsson | 7c50aca | 2007-10-15 20:28:48 +0000 | [diff] [blame] | 851 | case tok::kw___builtin_va_arg: { |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 852 | ExprOwner Expr(Actions, ParseAssignmentExpression()); |
| 853 | if (Expr.isInvalid()) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 854 | SkipUntil(tok::r_paren); |
Eli Friedman | 0976278 | 2008-08-20 22:07:34 +0000 | [diff] [blame] | 855 | return ExprResult(true); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 856 | } |
| 857 | |
| 858 | if (ExpectAndConsume(tok::comma, diag::err_expected_comma, "",tok::r_paren)) |
| 859 | return ExprResult(true); |
| 860 | |
Anders Carlsson | 7c50aca | 2007-10-15 20:28:48 +0000 | [diff] [blame] | 861 | TypeTy *Ty = ParseTypeName(); |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 862 | |
Anders Carlsson | 7c50aca | 2007-10-15 20:28:48 +0000 | [diff] [blame] | 863 | if (Tok.isNot(tok::r_paren)) { |
| 864 | Diag(Tok, diag::err_expected_rparen); |
| 865 | return ExprResult(true); |
| 866 | } |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 867 | Res = Actions.ActOnVAArg(StartLoc, Expr.move(), Ty, ConsumeParen()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 868 | break; |
Anders Carlsson | 7c50aca | 2007-10-15 20:28:48 +0000 | [diff] [blame] | 869 | } |
Chris Lattner | f9aa3cb | 2007-08-30 15:51:11 +0000 | [diff] [blame] | 870 | case tok::kw___builtin_offsetof: { |
Chris Lattner | 9fddf0a | 2007-08-30 17:08:45 +0000 | [diff] [blame] | 871 | SourceLocation TypeLoc = Tok.getLocation(); |
Chris Lattner | f9aa3cb | 2007-08-30 15:51:11 +0000 | [diff] [blame] | 872 | TypeTy *Ty = ParseTypeName(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 873 | |
| 874 | if (ExpectAndConsume(tok::comma, diag::err_expected_comma, "",tok::r_paren)) |
| 875 | return ExprResult(true); |
| 876 | |
| 877 | // We must have at least one identifier here. |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 878 | if (Tok.isNot(tok::identifier)) { |
Chris Lattner | f9aa3cb | 2007-08-30 15:51:11 +0000 | [diff] [blame] | 879 | Diag(Tok, diag::err_expected_ident); |
| 880 | SkipUntil(tok::r_paren); |
| 881 | return true; |
| 882 | } |
| 883 | |
| 884 | // Keep track of the various subcomponents we see. |
| 885 | llvm::SmallVector<Action::OffsetOfComponent, 4> Comps; |
| 886 | |
| 887 | Comps.push_back(Action::OffsetOfComponent()); |
| 888 | Comps.back().isBrackets = false; |
| 889 | Comps.back().U.IdentInfo = Tok.getIdentifierInfo(); |
| 890 | Comps.back().LocStart = Comps.back().LocEnd = ConsumeToken(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 891 | |
Sebastian Redl | a55e52c | 2008-11-25 22:21:31 +0000 | [diff] [blame] | 892 | // FIXME: This loop leaks the index expressions on error. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 893 | while (1) { |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 894 | if (Tok.is(tok::period)) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 895 | // offsetof-member-designator: offsetof-member-designator '.' identifier |
Chris Lattner | f9aa3cb | 2007-08-30 15:51:11 +0000 | [diff] [blame] | 896 | Comps.push_back(Action::OffsetOfComponent()); |
| 897 | Comps.back().isBrackets = false; |
| 898 | Comps.back().LocStart = ConsumeToken(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 899 | |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 900 | if (Tok.isNot(tok::identifier)) { |
Chris Lattner | f9aa3cb | 2007-08-30 15:51:11 +0000 | [diff] [blame] | 901 | Diag(Tok, diag::err_expected_ident); |
| 902 | SkipUntil(tok::r_paren); |
| 903 | return true; |
| 904 | } |
| 905 | Comps.back().U.IdentInfo = Tok.getIdentifierInfo(); |
| 906 | Comps.back().LocEnd = ConsumeToken(); |
| 907 | |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 908 | } else if (Tok.is(tok::l_square)) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 909 | // offsetof-member-designator: offsetof-member-design '[' expression ']' |
Chris Lattner | f9aa3cb | 2007-08-30 15:51:11 +0000 | [diff] [blame] | 910 | Comps.push_back(Action::OffsetOfComponent()); |
| 911 | Comps.back().isBrackets = true; |
| 912 | Comps.back().LocStart = ConsumeBracket(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 913 | Res = ParseExpression(); |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 914 | if (Res.isInvalid()) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 915 | SkipUntil(tok::r_paren); |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 916 | return Res.move(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 917 | } |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 918 | Comps.back().U.E = Res.move(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 919 | |
Chris Lattner | f9aa3cb | 2007-08-30 15:51:11 +0000 | [diff] [blame] | 920 | Comps.back().LocEnd = |
| 921 | MatchRHSPunctuation(tok::r_square, Comps.back().LocStart); |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 922 | } else if (Tok.is(tok::r_paren)) { |
Steve Naroff | 1b273c4 | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 923 | Res = Actions.ActOnBuiltinOffsetOf(StartLoc, TypeLoc, Ty, &Comps[0], |
Chris Lattner | 6eb2109 | 2007-08-30 15:52:49 +0000 | [diff] [blame] | 924 | Comps.size(), ConsumeParen()); |
| 925 | break; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 926 | } else { |
Chris Lattner | f9aa3cb | 2007-08-30 15:51:11 +0000 | [diff] [blame] | 927 | // Error occurred. |
| 928 | return ExprResult(true); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 929 | } |
| 930 | } |
| 931 | break; |
Chris Lattner | f9aa3cb | 2007-08-30 15:51:11 +0000 | [diff] [blame] | 932 | } |
Steve Naroff | d04fdd5 | 2007-08-03 21:21:27 +0000 | [diff] [blame] | 933 | case tok::kw___builtin_choose_expr: { |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 934 | ExprOwner Cond(Actions, ParseAssignmentExpression()); |
| 935 | if (Cond.isInvalid()) { |
Steve Naroff | d04fdd5 | 2007-08-03 21:21:27 +0000 | [diff] [blame] | 936 | SkipUntil(tok::r_paren); |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 937 | return Cond.move(); |
Steve Naroff | d04fdd5 | 2007-08-03 21:21:27 +0000 | [diff] [blame] | 938 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 939 | if (ExpectAndConsume(tok::comma, diag::err_expected_comma, "",tok::r_paren)) |
| 940 | return ExprResult(true); |
| 941 | |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 942 | ExprOwner Expr1(Actions, ParseAssignmentExpression()); |
| 943 | if (Expr1.isInvalid()) { |
Steve Naroff | d04fdd5 | 2007-08-03 21:21:27 +0000 | [diff] [blame] | 944 | SkipUntil(tok::r_paren); |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 945 | return Expr1.move(); |
| 946 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 947 | if (ExpectAndConsume(tok::comma, diag::err_expected_comma, "",tok::r_paren)) |
| 948 | return ExprResult(true); |
| 949 | |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 950 | ExprOwner Expr2(Actions, ParseAssignmentExpression()); |
| 951 | if (Expr2.isInvalid()) { |
Steve Naroff | d04fdd5 | 2007-08-03 21:21:27 +0000 | [diff] [blame] | 952 | SkipUntil(tok::r_paren); |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 953 | return Expr2.move(); |
| 954 | } |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 955 | if (Tok.isNot(tok::r_paren)) { |
Steve Naroff | d04fdd5 | 2007-08-03 21:21:27 +0000 | [diff] [blame] | 956 | Diag(Tok, diag::err_expected_rparen); |
| 957 | return ExprResult(true); |
| 958 | } |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 959 | Res = Actions.ActOnChooseExpr(StartLoc, Cond.move(), Expr1.move(), |
| 960 | Expr2.move(), ConsumeParen()); |
Chris Lattner | 6eb2109 | 2007-08-30 15:52:49 +0000 | [diff] [blame] | 961 | break; |
Steve Naroff | d04fdd5 | 2007-08-03 21:21:27 +0000 | [diff] [blame] | 962 | } |
Nate Begeman | e2ce1d9 | 2008-01-17 17:46:27 +0000 | [diff] [blame] | 963 | case tok::kw___builtin_overload: { |
Sebastian Redl | a55e52c | 2008-11-25 22:21:31 +0000 | [diff] [blame] | 964 | ExprVector ArgExprs(Actions); |
Nate Begeman | e2ce1d9 | 2008-01-17 17:46:27 +0000 | [diff] [blame] | 965 | llvm::SmallVector<SourceLocation, 8> CommaLocs; |
| 966 | |
| 967 | // For each iteration through the loop look for assign-expr followed by a |
| 968 | // comma. If there is no comma, break and attempt to match r-paren. |
| 969 | if (Tok.isNot(tok::r_paren)) { |
| 970 | while (1) { |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 971 | ExprOwner ArgExpr(Actions, ParseAssignmentExpression()); |
| 972 | if (ArgExpr.isInvalid()) { |
Nate Begeman | e2ce1d9 | 2008-01-17 17:46:27 +0000 | [diff] [blame] | 973 | SkipUntil(tok::r_paren); |
| 974 | return ExprResult(true); |
| 975 | } else |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 976 | ArgExprs.push_back(ArgExpr.move()); |
| 977 | |
Nate Begeman | e2ce1d9 | 2008-01-17 17:46:27 +0000 | [diff] [blame] | 978 | if (Tok.isNot(tok::comma)) |
| 979 | break; |
| 980 | // Move to the next argument, remember where the comma was. |
| 981 | CommaLocs.push_back(ConsumeToken()); |
| 982 | } |
| 983 | } |
| 984 | |
| 985 | // Attempt to consume the r-paren |
| 986 | if (Tok.isNot(tok::r_paren)) { |
| 987 | Diag(Tok, diag::err_expected_rparen); |
| 988 | SkipUntil(tok::r_paren); |
| 989 | return ExprResult(true); |
| 990 | } |
Sebastian Redl | a55e52c | 2008-11-25 22:21:31 +0000 | [diff] [blame] | 991 | Res = Actions.ActOnOverloadExpr(ArgExprs.take(), ArgExprs.size(), |
Nate Begeman | e2ce1d9 | 2008-01-17 17:46:27 +0000 | [diff] [blame] | 992 | &CommaLocs[0], StartLoc, ConsumeParen()); |
| 993 | break; |
| 994 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 995 | case tok::kw___builtin_types_compatible_p: |
Steve Naroff | 363bcff | 2007-08-01 23:45:51 +0000 | [diff] [blame] | 996 | TypeTy *Ty1 = ParseTypeName(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 997 | |
| 998 | if (ExpectAndConsume(tok::comma, diag::err_expected_comma, "",tok::r_paren)) |
| 999 | return ExprResult(true); |
| 1000 | |
Steve Naroff | 363bcff | 2007-08-01 23:45:51 +0000 | [diff] [blame] | 1001 | TypeTy *Ty2 = ParseTypeName(); |
| 1002 | |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 1003 | if (Tok.isNot(tok::r_paren)) { |
Steve Naroff | 363bcff | 2007-08-01 23:45:51 +0000 | [diff] [blame] | 1004 | Diag(Tok, diag::err_expected_rparen); |
| 1005 | return ExprResult(true); |
| 1006 | } |
Steve Naroff | 1b273c4 | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 1007 | Res = Actions.ActOnTypesCompatibleExpr(StartLoc, Ty1, Ty2, ConsumeParen()); |
Chris Lattner | 6eb2109 | 2007-08-30 15:52:49 +0000 | [diff] [blame] | 1008 | break; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1009 | } |
| 1010 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1011 | // These can be followed by postfix-expr pieces because they are |
| 1012 | // primary-expressions. |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 1013 | return ParsePostfixExpressionSuffix(Res.move()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1014 | } |
| 1015 | |
| 1016 | /// ParseParenExpression - This parses the unit that starts with a '(' token, |
| 1017 | /// based on what is allowed by ExprType. The actual thing parsed is returned |
| 1018 | /// in ExprType. |
| 1019 | /// |
| 1020 | /// primary-expression: [C99 6.5.1] |
| 1021 | /// '(' expression ')' |
| 1022 | /// [GNU] '(' compound-statement ')' (if !ParenExprOnly) |
| 1023 | /// postfix-expression: [C99 6.5.2] |
| 1024 | /// '(' type-name ')' '{' initializer-list '}' |
| 1025 | /// '(' type-name ')' '{' initializer-list ',' '}' |
| 1026 | /// cast-expression: [C99 6.5.4] |
| 1027 | /// '(' type-name ')' cast-expression |
| 1028 | /// |
| 1029 | Parser::ExprResult Parser::ParseParenExpression(ParenParseOption &ExprType, |
| 1030 | TypeTy *&CastTy, |
| 1031 | SourceLocation &RParenLoc) { |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 1032 | assert(Tok.is(tok::l_paren) && "Not a paren expr!"); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1033 | SourceLocation OpenLoc = ConsumeParen(); |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 1034 | ExprOwner Result(Actions, true); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1035 | CastTy = 0; |
| 1036 | |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 1037 | if (ExprType >= CompoundStmt && Tok.is(tok::l_brace)) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1038 | Diag(Tok, diag::ext_gnu_statement_expr); |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 1039 | StmtOwner Stmt(Actions, ParseCompoundStatement(true)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1040 | ExprType = CompoundStmt; |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 1041 | |
Chris Lattner | ab18c4c | 2007-07-24 16:58:17 +0000 | [diff] [blame] | 1042 | // If the substmt parsed correctly, build the AST node. |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 1043 | if (!Stmt.isInvalid() && Tok.is(tok::r_paren)) |
| 1044 | Result = Actions.ActOnStmtExpr( |
| 1045 | OpenLoc, Stmt.move(), Tok.getLocation()); |
| 1046 | |
Argyrios Kyrtzidis | 78c8d80 | 2008-10-05 19:56:22 +0000 | [diff] [blame] | 1047 | } else if (ExprType >= CompoundLiteral && isTypeIdInParens()) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1048 | // Otherwise, this is a compound literal expression or cast expression. |
| 1049 | TypeTy *Ty = ParseTypeName(); |
| 1050 | |
| 1051 | // Match the ')'. |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 1052 | if (Tok.is(tok::r_paren)) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1053 | RParenLoc = ConsumeParen(); |
| 1054 | else |
| 1055 | MatchRHSPunctuation(tok::r_paren, OpenLoc); |
| 1056 | |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 1057 | if (Tok.is(tok::l_brace)) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1058 | if (!getLang().C99) // Compound literals don't exist in C90. |
| 1059 | Diag(OpenLoc, diag::ext_c99_compound_literal); |
| 1060 | Result = ParseInitializer(); |
| 1061 | ExprType = CompoundLiteral; |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 1062 | if (!Result.isInvalid()) |
| 1063 | return Actions.ActOnCompoundLiteral(OpenLoc, Ty, RParenLoc, |
| 1064 | Result.take()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1065 | } else if (ExprType == CastExpr) { |
| 1066 | // Note that this doesn't parse the subsequence cast-expression, it just |
| 1067 | // returns the parsed type to the callee. |
| 1068 | ExprType = CastExpr; |
| 1069 | CastTy = Ty; |
| 1070 | return ExprResult(false); |
| 1071 | } else { |
| 1072 | Diag(Tok, diag::err_expected_lbrace_in_compound_literal); |
| 1073 | return ExprResult(true); |
| 1074 | } |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 1075 | return Result.move(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1076 | } else { |
| 1077 | Result = ParseExpression(); |
| 1078 | ExprType = SimpleExpr; |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 1079 | if (!Result.isInvalid() && Tok.is(tok::r_paren)) |
| 1080 | Result = Actions.ActOnParenExpr( |
| 1081 | OpenLoc, Tok.getLocation(), Result.take()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1082 | } |
| 1083 | |
| 1084 | // Match the ')'. |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 1085 | if (Result.isInvalid()) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1086 | SkipUntil(tok::r_paren); |
| 1087 | else { |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 1088 | if (Tok.is(tok::r_paren)) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1089 | RParenLoc = ConsumeParen(); |
| 1090 | else |
| 1091 | MatchRHSPunctuation(tok::r_paren, OpenLoc); |
| 1092 | } |
| 1093 | |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 1094 | return Result.move(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1095 | } |
| 1096 | |
| 1097 | /// ParseStringLiteralExpression - This handles the various token types that |
| 1098 | /// form string literals, and also handles string concatenation [C99 5.1.1.2, |
| 1099 | /// translation phase #6]. |
| 1100 | /// |
| 1101 | /// primary-expression: [C99 6.5.1] |
| 1102 | /// string-literal |
| 1103 | Parser::ExprResult Parser::ParseStringLiteralExpression() { |
| 1104 | assert(isTokenStringLiteral() && "Not a string literal!"); |
| 1105 | |
| 1106 | // String concat. Note that keywords like __func__ and __FUNCTION__ are not |
| 1107 | // considered to be strings for concatenation purposes. |
Chris Lattner | d217773 | 2007-07-20 16:59:19 +0000 | [diff] [blame] | 1108 | llvm::SmallVector<Token, 4> StringToks; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1109 | |
| 1110 | do { |
| 1111 | StringToks.push_back(Tok); |
| 1112 | ConsumeStringToken(); |
| 1113 | } while (isTokenStringLiteral()); |
| 1114 | |
| 1115 | // Pass the set of string tokens, ready for concatenation, to the actions. |
Steve Naroff | f69936d | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 1116 | return Actions.ActOnStringLiteral(&StringToks[0], StringToks.size()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1117 | } |
Argyrios Kyrtzidis | 0cd5b42 | 2008-08-16 20:03:01 +0000 | [diff] [blame] | 1118 | |
| 1119 | /// ParseExpressionList - Used for C/C++ (argument-)expression-list. |
| 1120 | /// |
| 1121 | /// argument-expression-list: |
| 1122 | /// assignment-expression |
| 1123 | /// argument-expression-list , assignment-expression |
| 1124 | /// |
| 1125 | /// [C++] expression-list: |
| 1126 | /// [C++] assignment-expression |
| 1127 | /// [C++] expression-list , assignment-expression |
| 1128 | /// |
| 1129 | bool Parser::ParseExpressionList(ExprListTy &Exprs, CommaLocsTy &CommaLocs) { |
| 1130 | while (1) { |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 1131 | ExprOwner Expr(Actions, ParseAssignmentExpression()); |
| 1132 | if (Expr.isInvalid()) |
Argyrios Kyrtzidis | 0cd5b42 | 2008-08-16 20:03:01 +0000 | [diff] [blame] | 1133 | return true; |
Argyrios Kyrtzidis | 4fdc1ca | 2008-08-18 22:49:40 +0000 | [diff] [blame] | 1134 | |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 1135 | Exprs.push_back(Expr.move()); |
Argyrios Kyrtzidis | 0cd5b42 | 2008-08-16 20:03:01 +0000 | [diff] [blame] | 1136 | |
| 1137 | if (Tok.isNot(tok::comma)) |
| 1138 | return false; |
| 1139 | // Move to the next argument, remember where the comma was. |
| 1140 | CommaLocs.push_back(ConsumeToken()); |
| 1141 | } |
| 1142 | } |
Steve Naroff | 296e8d5 | 2008-08-28 19:20:44 +0000 | [diff] [blame] | 1143 | |
| 1144 | /// ParseBlockLiteralExpression - Parse a block literal, which roughly looks |
Steve Naroff | 17dab4f | 2008-09-16 23:11:46 +0000 | [diff] [blame] | 1145 | /// like ^(int x){ return x+1; } |
Steve Naroff | 296e8d5 | 2008-08-28 19:20:44 +0000 | [diff] [blame] | 1146 | /// |
| 1147 | /// block-literal: |
| 1148 | /// [clang] '^' block-args[opt] compound-statement |
Steve Naroff | 296e8d5 | 2008-08-28 19:20:44 +0000 | [diff] [blame] | 1149 | /// [clang] block-args: |
| 1150 | /// [clang] '(' parameter-list ')' |
| 1151 | /// |
| 1152 | Parser::ExprResult Parser::ParseBlockLiteralExpression() { |
| 1153 | assert(Tok.is(tok::caret) && "block literal starts with ^"); |
| 1154 | SourceLocation CaretLoc = ConsumeToken(); |
| 1155 | |
| 1156 | // Enter a scope to hold everything within the block. This includes the |
| 1157 | // argument decls, decls within the compound expression, etc. This also |
| 1158 | // allows determining whether a variable reference inside the block is |
| 1159 | // within or outside of the block. |
| 1160 | EnterScope(Scope::BlockScope|Scope::FnScope|Scope::BreakScope| |
| 1161 | Scope::ContinueScope|Scope::DeclScope); |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 1162 | |
| 1163 | // Inform sema that we are starting a block. |
| 1164 | Actions.ActOnBlockStart(CaretLoc, CurScope); |
Steve Naroff | 296e8d5 | 2008-08-28 19:20:44 +0000 | [diff] [blame] | 1165 | |
| 1166 | // Parse the return type if present. |
| 1167 | DeclSpec DS; |
| 1168 | Declarator ParamInfo(DS, Declarator::PrototypeContext); |
| 1169 | |
| 1170 | // If this block has arguments, parse them. There is no ambiguity here with |
| 1171 | // the expression case, because the expression case requires a parameter list. |
| 1172 | if (Tok.is(tok::l_paren)) { |
| 1173 | ParseParenDeclarator(ParamInfo); |
| 1174 | // Parse the pieces after the identifier as if we had "int(...)". |
| 1175 | ParamInfo.SetIdentifier(0, CaretLoc); |
| 1176 | if (ParamInfo.getInvalidType()) { |
| 1177 | // If there was an error parsing the arguments, they may have tried to use |
| 1178 | // ^(x+y) which requires an argument list. Just skip the whole block |
| 1179 | // literal. |
| 1180 | ExitScope(); |
| 1181 | return true; |
| 1182 | } |
| 1183 | } else { |
| 1184 | // Otherwise, pretend we saw (void). |
| 1185 | ParamInfo.AddTypeInfo(DeclaratorChunk::getFunction(true, false, |
Argyrios Kyrtzidis | 971c4fa | 2008-10-24 21:46:40 +0000 | [diff] [blame] | 1186 | 0, 0, 0, CaretLoc)); |
Steve Naroff | 296e8d5 | 2008-08-28 19:20:44 +0000 | [diff] [blame] | 1187 | } |
| 1188 | |
| 1189 | // Inform sema that we are starting a block. |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 1190 | Actions.ActOnBlockArguments(ParamInfo); |
Steve Naroff | 296e8d5 | 2008-08-28 19:20:44 +0000 | [diff] [blame] | 1191 | |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 1192 | ExprOwner Result(Actions, true); |
Steve Naroff | 296e8d5 | 2008-08-28 19:20:44 +0000 | [diff] [blame] | 1193 | if (Tok.is(tok::l_brace)) { |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 1194 | StmtOwner Stmt(Actions, ParseCompoundStatementBody()); |
| 1195 | if (!Stmt.isInvalid()) { |
| 1196 | Result = Actions.ActOnBlockStmtExpr(CaretLoc, Stmt.move(), CurScope); |
Steve Naroff | 296e8d5 | 2008-08-28 19:20:44 +0000 | [diff] [blame] | 1197 | } else { |
| 1198 | Actions.ActOnBlockError(CaretLoc, CurScope); |
Steve Naroff | 296e8d5 | 2008-08-28 19:20:44 +0000 | [diff] [blame] | 1199 | } |
| 1200 | } |
Steve Naroff | 296e8d5 | 2008-08-28 19:20:44 +0000 | [diff] [blame] | 1201 | ExitScope(); |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 1202 | return Result.move(); |
Steve Naroff | 296e8d5 | 2008-08-28 19:20:44 +0000 | [diff] [blame] | 1203 | } |
| 1204 | |