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