Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1 | //===--- ParseStmt.cpp - Statement and Block Parser -----------------------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file was developed by Chris Lattner and is distributed under |
| 6 | // the University of Illinois Open Source License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file implements the Statement and Block portions of the Parser |
| 11 | // interface. |
| 12 | // |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | |
| 15 | #include "clang/Parse/Parser.h" |
| 16 | #include "clang/Basic/Diagnostic.h" |
| 17 | #include "clang/Parse/DeclSpec.h" |
| 18 | #include "clang/Parse/Scope.h" |
| 19 | using namespace clang; |
| 20 | |
| 21 | //===----------------------------------------------------------------------===// |
| 22 | // C99 6.8: Statements and Blocks. |
| 23 | //===----------------------------------------------------------------------===// |
| 24 | |
| 25 | /// ParseStatementOrDeclaration - Read 'statement' or 'declaration'. |
| 26 | /// StatementOrDeclaration: |
| 27 | /// statement |
| 28 | /// declaration |
| 29 | /// |
| 30 | /// statement: |
| 31 | /// labeled-statement |
| 32 | /// compound-statement |
| 33 | /// expression-statement |
| 34 | /// selection-statement |
| 35 | /// iteration-statement |
| 36 | /// jump-statement |
Fariborz Jahanian | b384d32 | 2007-10-04 20:19:06 +0000 | [diff] [blame] | 37 | /// [OBC] objc-throw-statement |
| 38 | /// [OBC] objc-try-catch-statement |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 39 | /// [OBC] objc-synchronized-statement [TODO] |
| 40 | /// [GNU] asm-statement |
| 41 | /// [OMP] openmp-construct [TODO] |
| 42 | /// |
| 43 | /// labeled-statement: |
| 44 | /// identifier ':' statement |
| 45 | /// 'case' constant-expression ':' statement |
| 46 | /// 'default' ':' statement |
| 47 | /// |
| 48 | /// selection-statement: |
| 49 | /// if-statement |
| 50 | /// switch-statement |
| 51 | /// |
| 52 | /// iteration-statement: |
| 53 | /// while-statement |
| 54 | /// do-statement |
| 55 | /// for-statement |
| 56 | /// |
| 57 | /// expression-statement: |
| 58 | /// expression[opt] ';' |
| 59 | /// |
| 60 | /// jump-statement: |
| 61 | /// 'goto' identifier ';' |
| 62 | /// 'continue' ';' |
| 63 | /// 'break' ';' |
| 64 | /// 'return' expression[opt] ';' |
| 65 | /// [GNU] 'goto' '*' expression ';' |
| 66 | /// |
Fariborz Jahanian | b384d32 | 2007-10-04 20:19:06 +0000 | [diff] [blame] | 67 | /// [OBC] objc-throw-statement: |
| 68 | /// [OBC] '@' 'throw' expression ';' |
| 69 | /// [OBC] '@' 'throw' ';' |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 70 | /// |
| 71 | Parser::StmtResult Parser::ParseStatementOrDeclaration(bool OnlyStatement) { |
| 72 | const char *SemiError = 0; |
| 73 | Parser::StmtResult Res; |
| 74 | |
| 75 | // Cases in this switch statement should fall through if the parser expects |
| 76 | // the token to end in a semicolon (in which case SemiError should be set), |
| 77 | // or they directly 'return;' if not. |
Fariborz Jahanian | 397fcc1 | 2007-09-19 19:14:32 +0000 | [diff] [blame] | 78 | tok::TokenKind Kind = Tok.getKind(); |
| 79 | SourceLocation AtLoc; |
| 80 | switch (Kind) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 81 | case tok::identifier: // C99 6.8.1: labeled-statement |
| 82 | // identifier ':' statement |
| 83 | // declaration (if !OnlyStatement) |
| 84 | // expression[opt] ';' |
| 85 | return ParseIdentifierStatement(OnlyStatement); |
| 86 | |
Fariborz Jahanian | 397fcc1 | 2007-09-19 19:14:32 +0000 | [diff] [blame] | 87 | case tok::at: // May be a @try or @throw statement |
| 88 | { |
| 89 | AtLoc = ConsumeToken(); // consume @ |
| 90 | if (Tok.getIdentifierInfo()->getObjCKeywordID() == tok::objc_try) |
| 91 | return ParseObjCTryStmt(AtLoc); |
| 92 | else if (Tok.getIdentifierInfo()->getObjCKeywordID() == tok::objc_throw) |
| 93 | return ParseObjCThrowStmt(AtLoc); |
Fariborz Jahanian | b384d32 | 2007-10-04 20:19:06 +0000 | [diff] [blame] | 94 | ExprResult Res = ParseExpressionWithLeadingAt(AtLoc); |
| 95 | if (Res.isInvalid) { |
| 96 | // If the expression is invalid, skip ahead to the next semicolon. Not |
| 97 | // doing this opens us up to the possibility of infinite loops if |
| 98 | // ParseExpression does not consume any tokens. |
| 99 | SkipUntil(tok::semi); |
| 100 | return true; |
| 101 | } |
| 102 | // Otherwise, eat the semicolon. |
| 103 | ExpectAndConsume(tok::semi, diag::err_expected_semi_after_expr); |
| 104 | return Actions.ActOnExprStmt(Res.Val); |
Fariborz Jahanian | 397fcc1 | 2007-09-19 19:14:32 +0000 | [diff] [blame] | 105 | } |
Fariborz Jahanian | 397fcc1 | 2007-09-19 19:14:32 +0000 | [diff] [blame] | 106 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 107 | default: |
Fariborz Jahanian | b384d32 | 2007-10-04 20:19:06 +0000 | [diff] [blame] | 108 | if (!OnlyStatement && isDeclarationSpecifier()) { |
Steve Naroff | 1b273c4 | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 109 | return Actions.ActOnDeclStmt(ParseDeclaration(Declarator::BlockContext)); |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 110 | } else if (Tok.is(tok::r_brace)) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 111 | Diag(Tok, diag::err_expected_statement); |
| 112 | return true; |
| 113 | } else { |
| 114 | // expression[opt] ';' |
Fariborz Jahanian | b384d32 | 2007-10-04 20:19:06 +0000 | [diff] [blame] | 115 | ExprResult Res = ParseExpression(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 116 | if (Res.isInvalid) { |
| 117 | // If the expression is invalid, skip ahead to the next semicolon. Not |
| 118 | // doing this opens us up to the possibility of infinite loops if |
| 119 | // ParseExpression does not consume any tokens. |
| 120 | SkipUntil(tok::semi); |
| 121 | return true; |
| 122 | } |
| 123 | // Otherwise, eat the semicolon. |
| 124 | ExpectAndConsume(tok::semi, diag::err_expected_semi_after_expr); |
Steve Naroff | 1b273c4 | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 125 | return Actions.ActOnExprStmt(Res.Val); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 126 | } |
| 127 | |
| 128 | case tok::kw_case: // C99 6.8.1: labeled-statement |
| 129 | return ParseCaseStatement(); |
| 130 | case tok::kw_default: // C99 6.8.1: labeled-statement |
| 131 | return ParseDefaultStatement(); |
| 132 | |
| 133 | case tok::l_brace: // C99 6.8.2: compound-statement |
| 134 | return ParseCompoundStatement(); |
| 135 | case tok::semi: // C99 6.8.3p3: expression[opt] ';' |
Steve Naroff | 1b273c4 | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 136 | return Actions.ActOnNullStmt(ConsumeToken()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 137 | |
| 138 | case tok::kw_if: // C99 6.8.4.1: if-statement |
| 139 | return ParseIfStatement(); |
| 140 | case tok::kw_switch: // C99 6.8.4.2: switch-statement |
| 141 | return ParseSwitchStatement(); |
| 142 | |
| 143 | case tok::kw_while: // C99 6.8.5.1: while-statement |
| 144 | return ParseWhileStatement(); |
| 145 | case tok::kw_do: // C99 6.8.5.2: do-statement |
| 146 | Res = ParseDoStatement(); |
| 147 | SemiError = "do/while loop"; |
| 148 | break; |
| 149 | case tok::kw_for: // C99 6.8.5.3: for-statement |
| 150 | return ParseForStatement(); |
| 151 | |
| 152 | case tok::kw_goto: // C99 6.8.6.1: goto-statement |
| 153 | Res = ParseGotoStatement(); |
| 154 | SemiError = "goto statement"; |
| 155 | break; |
| 156 | case tok::kw_continue: // C99 6.8.6.2: continue-statement |
| 157 | Res = ParseContinueStatement(); |
| 158 | SemiError = "continue statement"; |
| 159 | break; |
| 160 | case tok::kw_break: // C99 6.8.6.3: break-statement |
| 161 | Res = ParseBreakStatement(); |
| 162 | SemiError = "break statement"; |
| 163 | break; |
| 164 | case tok::kw_return: // C99 6.8.6.4: return-statement |
| 165 | Res = ParseReturnStatement(); |
| 166 | SemiError = "return statement"; |
| 167 | break; |
| 168 | |
| 169 | case tok::kw_asm: |
| 170 | Res = ParseAsmStatement(); |
| 171 | SemiError = "asm statement"; |
| 172 | break; |
| 173 | } |
| 174 | |
| 175 | // If we reached this code, the statement must end in a semicolon. |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 176 | if (Tok.is(tok::semi)) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 177 | ConsumeToken(); |
| 178 | } else { |
| 179 | Diag(Tok, diag::err_expected_semi_after, SemiError); |
| 180 | SkipUntil(tok::semi); |
| 181 | } |
| 182 | return Res; |
| 183 | } |
| 184 | |
| 185 | /// ParseIdentifierStatement - Because we don't have two-token lookahead, we |
| 186 | /// have a bit of a quandry here. Reading the identifier is necessary to see if |
| 187 | /// there is a ':' after it. If there is, this is a label, regardless of what |
| 188 | /// else the identifier can mean. If not, this is either part of a declaration |
| 189 | /// (if the identifier is a type-name) or part of an expression. |
| 190 | /// |
| 191 | /// labeled-statement: |
| 192 | /// identifier ':' statement |
| 193 | /// [GNU] identifier ':' attributes[opt] statement |
| 194 | /// declaration (if !OnlyStatement) |
| 195 | /// expression[opt] ';' |
| 196 | /// |
| 197 | Parser::StmtResult Parser::ParseIdentifierStatement(bool OnlyStatement) { |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 198 | assert(Tok.is(tok::identifier) && Tok.getIdentifierInfo() && |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 199 | "Not an identifier!"); |
| 200 | |
Chris Lattner | d217773 | 2007-07-20 16:59:19 +0000 | [diff] [blame] | 201 | Token IdentTok = Tok; // Save the whole token. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 202 | ConsumeToken(); // eat the identifier. |
| 203 | |
| 204 | // identifier ':' statement |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 205 | if (Tok.is(tok::colon)) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 206 | SourceLocation ColonLoc = ConsumeToken(); |
| 207 | |
| 208 | // Read label attributes, if present. |
| 209 | DeclTy *AttrList = 0; |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 210 | if (Tok.is(tok::kw___attribute)) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 211 | // TODO: save these somewhere. |
| 212 | AttrList = ParseAttributes(); |
| 213 | |
| 214 | StmtResult SubStmt = ParseStatement(); |
| 215 | |
| 216 | // Broken substmt shouldn't prevent the label from being added to the AST. |
| 217 | if (SubStmt.isInvalid) |
Steve Naroff | 1b273c4 | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 218 | SubStmt = Actions.ActOnNullStmt(ColonLoc); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 219 | |
Steve Naroff | 1b273c4 | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 220 | return Actions.ActOnLabelStmt(IdentTok.getLocation(), |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 221 | IdentTok.getIdentifierInfo(), |
| 222 | ColonLoc, SubStmt.Val); |
| 223 | } |
| 224 | |
| 225 | // Check to see if this is a declaration. |
| 226 | void *TypeRep; |
| 227 | if (!OnlyStatement && |
| 228 | (TypeRep = Actions.isTypeName(*IdentTok.getIdentifierInfo(), CurScope))) { |
| 229 | // Handle this. Warn/disable if in middle of block and !C99. |
| 230 | DeclSpec DS; |
| 231 | |
| 232 | // Add the typedef name to the start of the decl-specs. |
| 233 | const char *PrevSpec = 0; |
| 234 | int isInvalid = DS.SetTypeSpecType(DeclSpec::TST_typedef, |
| 235 | IdentTok.getLocation(), PrevSpec, |
| 236 | TypeRep); |
| 237 | assert(!isInvalid && "First declspec can't be invalid!"); |
Steve Naroff | f908a87 | 2007-10-30 02:23:23 +0000 | [diff] [blame] | 238 | SourceLocation endProtoLoc; |
Fariborz Jahanian | dfbcce2 | 2007-10-11 18:08:47 +0000 | [diff] [blame] | 239 | if (Tok.is(tok::less)) { |
| 240 | llvm::SmallVector<IdentifierInfo *, 8> ProtocolRefs; |
Steve Naroff | f908a87 | 2007-10-30 02:23:23 +0000 | [diff] [blame] | 241 | ParseObjCProtocolReferences(ProtocolRefs, endProtoLoc); |
Fariborz Jahanian | dfbcce2 | 2007-10-11 18:08:47 +0000 | [diff] [blame] | 242 | llvm::SmallVector<DeclTy *, 8> *ProtocolDecl = |
| 243 | new llvm::SmallVector<DeclTy *, 8>; |
| 244 | DS.setProtocolQualifiers(ProtocolDecl); |
| 245 | Actions.FindProtocolDeclaration(IdentTok.getLocation(), |
| 246 | &ProtocolRefs[0], ProtocolRefs.size(), |
| 247 | *ProtocolDecl); |
| 248 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 249 | |
| 250 | // ParseDeclarationSpecifiers will continue from there. |
| 251 | ParseDeclarationSpecifiers(DS); |
| 252 | |
| 253 | // C99 6.7.2.3p6: Handle "struct-or-union identifier;", "enum { X };" |
| 254 | // declaration-specifiers init-declarator-list[opt] ';' |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 255 | if (Tok.is(tok::semi)) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 256 | // TODO: emit error on 'int;' or 'const enum foo;'. |
| 257 | // if (!DS.isMissingDeclaratorOk()) Diag(...); |
| 258 | |
| 259 | ConsumeToken(); |
| 260 | // FIXME: Return this as a type decl. |
| 261 | return 0; |
| 262 | } |
| 263 | |
| 264 | // Parse all the declarators. |
| 265 | Declarator DeclaratorInfo(DS, Declarator::BlockContext); |
| 266 | ParseDeclarator(DeclaratorInfo); |
| 267 | |
| 268 | DeclTy *Decl = ParseInitDeclaratorListAfterFirstDeclarator(DeclaratorInfo); |
Steve Naroff | 1b273c4 | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 269 | return Decl ? Actions.ActOnDeclStmt(Decl) : 0; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 270 | } |
| 271 | |
| 272 | // Otherwise, this is an expression. Seed it with II and parse it. |
| 273 | ExprResult Res = ParseExpressionWithLeadingIdentifier(IdentTok); |
| 274 | if (Res.isInvalid) { |
| 275 | SkipUntil(tok::semi); |
| 276 | return true; |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 277 | } else if (Tok.isNot(tok::semi)) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 278 | Diag(Tok, diag::err_expected_semi_after, "expression"); |
| 279 | SkipUntil(tok::semi); |
| 280 | return true; |
| 281 | } else { |
| 282 | ConsumeToken(); |
| 283 | // Convert expr to a stmt. |
Steve Naroff | 1b273c4 | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 284 | return Actions.ActOnExprStmt(Res.Val); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 285 | } |
| 286 | } |
| 287 | |
| 288 | /// ParseCaseStatement |
| 289 | /// labeled-statement: |
| 290 | /// 'case' constant-expression ':' statement |
| 291 | /// [GNU] 'case' constant-expression '...' constant-expression ':' statement |
| 292 | /// |
| 293 | /// Note that this does not parse the 'statement' at the end. |
| 294 | /// |
| 295 | Parser::StmtResult Parser::ParseCaseStatement() { |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 296 | assert(Tok.is(tok::kw_case) && "Not a case stmt!"); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 297 | SourceLocation CaseLoc = ConsumeToken(); // eat the 'case'. |
| 298 | |
| 299 | ExprResult LHS = ParseConstantExpression(); |
| 300 | if (LHS.isInvalid) { |
| 301 | SkipUntil(tok::colon); |
| 302 | return true; |
| 303 | } |
| 304 | |
| 305 | // GNU case range extension. |
| 306 | SourceLocation DotDotDotLoc; |
| 307 | ExprTy *RHSVal = 0; |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 308 | if (Tok.is(tok::ellipsis)) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 309 | Diag(Tok, diag::ext_gnu_case_range); |
| 310 | DotDotDotLoc = ConsumeToken(); |
| 311 | |
| 312 | ExprResult RHS = ParseConstantExpression(); |
| 313 | if (RHS.isInvalid) { |
| 314 | SkipUntil(tok::colon); |
| 315 | return true; |
| 316 | } |
| 317 | RHSVal = RHS.Val; |
| 318 | } |
| 319 | |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 320 | if (Tok.isNot(tok::colon)) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 321 | Diag(Tok, diag::err_expected_colon_after, "'case'"); |
| 322 | SkipUntil(tok::colon); |
| 323 | return true; |
| 324 | } |
| 325 | |
| 326 | SourceLocation ColonLoc = ConsumeToken(); |
| 327 | |
| 328 | // Diagnose the common error "switch (X) { case 4: }", which is not valid. |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 329 | if (Tok.is(tok::r_brace)) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 330 | Diag(Tok, diag::err_label_end_of_compound_statement); |
| 331 | return true; |
| 332 | } |
| 333 | |
| 334 | StmtResult SubStmt = ParseStatement(); |
| 335 | |
| 336 | // Broken substmt shouldn't prevent the case from being added to the AST. |
| 337 | if (SubStmt.isInvalid) |
Steve Naroff | 1b273c4 | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 338 | SubStmt = Actions.ActOnNullStmt(ColonLoc); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 339 | |
Steve Naroff | 1b273c4 | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 340 | return Actions.ActOnCaseStmt(CaseLoc, LHS.Val, DotDotDotLoc, RHSVal, ColonLoc, |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 341 | SubStmt.Val); |
| 342 | } |
| 343 | |
| 344 | /// ParseDefaultStatement |
| 345 | /// labeled-statement: |
| 346 | /// 'default' ':' statement |
| 347 | /// Note that this does not parse the 'statement' at the end. |
| 348 | /// |
| 349 | Parser::StmtResult Parser::ParseDefaultStatement() { |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 350 | assert(Tok.is(tok::kw_default) && "Not a default stmt!"); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 351 | SourceLocation DefaultLoc = ConsumeToken(); // eat the 'default'. |
| 352 | |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 353 | if (Tok.isNot(tok::colon)) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 354 | Diag(Tok, diag::err_expected_colon_after, "'default'"); |
| 355 | SkipUntil(tok::colon); |
| 356 | return true; |
| 357 | } |
| 358 | |
| 359 | SourceLocation ColonLoc = ConsumeToken(); |
| 360 | |
| 361 | // Diagnose the common error "switch (X) {... default: }", which is not valid. |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 362 | if (Tok.is(tok::r_brace)) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 363 | Diag(Tok, diag::err_label_end_of_compound_statement); |
| 364 | return true; |
| 365 | } |
| 366 | |
| 367 | StmtResult SubStmt = ParseStatement(); |
| 368 | if (SubStmt.isInvalid) |
| 369 | return true; |
| 370 | |
Steve Naroff | 1b273c4 | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 371 | return Actions.ActOnDefaultStmt(DefaultLoc, ColonLoc, SubStmt.Val, CurScope); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 372 | } |
| 373 | |
| 374 | |
| 375 | /// ParseCompoundStatement - Parse a "{}" block. |
| 376 | /// |
| 377 | /// compound-statement: [C99 6.8.2] |
| 378 | /// { block-item-list[opt] } |
| 379 | /// [GNU] { label-declarations block-item-list } [TODO] |
| 380 | /// |
| 381 | /// block-item-list: |
| 382 | /// block-item |
| 383 | /// block-item-list block-item |
| 384 | /// |
| 385 | /// block-item: |
| 386 | /// declaration |
Chris Lattner | 45a566c | 2007-08-27 01:01:57 +0000 | [diff] [blame] | 387 | /// [GNU] '__extension__' declaration |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 388 | /// statement |
| 389 | /// [OMP] openmp-directive [TODO] |
| 390 | /// |
| 391 | /// [GNU] label-declarations: |
| 392 | /// [GNU] label-declaration |
| 393 | /// [GNU] label-declarations label-declaration |
| 394 | /// |
| 395 | /// [GNU] label-declaration: |
| 396 | /// [GNU] '__label__' identifier-list ';' |
| 397 | /// |
| 398 | /// [OMP] openmp-directive: [TODO] |
| 399 | /// [OMP] barrier-directive |
| 400 | /// [OMP] flush-directive |
| 401 | /// |
Chris Lattner | 98414c1 | 2007-08-31 21:49:55 +0000 | [diff] [blame] | 402 | Parser::StmtResult Parser::ParseCompoundStatement(bool isStmtExpr) { |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 403 | assert(Tok.is(tok::l_brace) && "Not a compount stmt!"); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 404 | |
Chris Lattner | 31e0572 | 2007-08-26 06:24:45 +0000 | [diff] [blame] | 405 | // Enter a scope to hold everything within the compound stmt. Compound |
| 406 | // statements can always hold declarations. |
| 407 | EnterScope(Scope::DeclScope); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 408 | |
| 409 | // Parse the statements in the body. |
Chris Lattner | 98414c1 | 2007-08-31 21:49:55 +0000 | [diff] [blame] | 410 | StmtResult Body = ParseCompoundStatementBody(isStmtExpr); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 411 | |
| 412 | ExitScope(); |
| 413 | return Body; |
| 414 | } |
| 415 | |
| 416 | |
| 417 | /// ParseCompoundStatementBody - Parse a sequence of statements and invoke the |
Steve Naroff | 1b273c4 | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 418 | /// ActOnCompoundStmt action. This expects the '{' to be the current token, and |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 419 | /// consume the '}' at the end of the block. It does not manipulate the scope |
| 420 | /// stack. |
Chris Lattner | 98414c1 | 2007-08-31 21:49:55 +0000 | [diff] [blame] | 421 | Parser::StmtResult Parser::ParseCompoundStatementBody(bool isStmtExpr) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 422 | SourceLocation LBraceLoc = ConsumeBrace(); // eat the '{'. |
| 423 | |
| 424 | // TODO: "__label__ X, Y, Z;" is the GNU "Local Label" extension. These are |
Chris Lattner | 45a566c | 2007-08-27 01:01:57 +0000 | [diff] [blame] | 425 | // only allowed at the start of a compound stmt regardless of the language. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 426 | |
| 427 | llvm::SmallVector<StmtTy*, 32> Stmts; |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 428 | while (Tok.isNot(tok::r_brace) && Tok.isNot(tok::eof)) { |
Chris Lattner | 45a566c | 2007-08-27 01:01:57 +0000 | [diff] [blame] | 429 | StmtResult R; |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 430 | if (Tok.isNot(tok::kw___extension__)) { |
Chris Lattner | 45a566c | 2007-08-27 01:01:57 +0000 | [diff] [blame] | 431 | R = ParseStatementOrDeclaration(false); |
| 432 | } else { |
| 433 | // __extension__ can start declarations and it can also be a unary |
| 434 | // operator for expressions. Consume multiple __extension__ markers here |
| 435 | // until we can determine which is which. |
| 436 | SourceLocation ExtLoc = ConsumeToken(); |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 437 | while (Tok.is(tok::kw___extension__)) |
Chris Lattner | 45a566c | 2007-08-27 01:01:57 +0000 | [diff] [blame] | 438 | ConsumeToken(); |
| 439 | |
| 440 | // If this is the start of a declaration, parse it as such. |
| 441 | if (isDeclarationSpecifier()) { |
| 442 | // FIXME: Save the __extension__ on the decl as a node somehow. |
| 443 | // FIXME: disable extwarns. |
Steve Naroff | 1b273c4 | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 444 | R = Actions.ActOnDeclStmt(ParseDeclaration(Declarator::BlockContext)); |
Chris Lattner | 45a566c | 2007-08-27 01:01:57 +0000 | [diff] [blame] | 445 | } else { |
| 446 | // Otherwise this was a unary __extension__ marker. Parse the |
| 447 | // subexpression and add the __extension__ unary op. |
| 448 | // FIXME: disable extwarns. |
| 449 | ExprResult Res = ParseCastExpression(false); |
| 450 | if (Res.isInvalid) { |
| 451 | SkipUntil(tok::semi); |
| 452 | continue; |
| 453 | } |
| 454 | |
| 455 | // Add the __extension__ node to the AST. |
Steve Naroff | f69936d | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 456 | Res = Actions.ActOnUnaryOp(ExtLoc, tok::kw___extension__, Res.Val); |
Chris Lattner | 45a566c | 2007-08-27 01:01:57 +0000 | [diff] [blame] | 457 | if (Res.isInvalid) |
| 458 | continue; |
| 459 | |
| 460 | // Eat the semicolon at the end of stmt and convert the expr into a stmt. |
| 461 | ExpectAndConsume(tok::semi, diag::err_expected_semi_after_expr); |
Steve Naroff | 1b273c4 | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 462 | R = Actions.ActOnExprStmt(Res.Val); |
Chris Lattner | 45a566c | 2007-08-27 01:01:57 +0000 | [diff] [blame] | 463 | } |
| 464 | } |
| 465 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 466 | if (!R.isInvalid && R.Val) |
| 467 | Stmts.push_back(R.Val); |
| 468 | } |
| 469 | |
| 470 | // We broke out of the while loop because we found a '}' or EOF. |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 471 | if (Tok.isNot(tok::r_brace)) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 472 | Diag(Tok, diag::err_expected_rbrace); |
| 473 | return 0; |
| 474 | } |
| 475 | |
| 476 | SourceLocation RBraceLoc = ConsumeBrace(); |
Steve Naroff | 1b273c4 | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 477 | return Actions.ActOnCompoundStmt(LBraceLoc, RBraceLoc, |
Chris Lattner | 98414c1 | 2007-08-31 21:49:55 +0000 | [diff] [blame] | 478 | &Stmts[0], Stmts.size(), isStmtExpr); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 479 | } |
| 480 | |
| 481 | /// ParseIfStatement |
| 482 | /// if-statement: [C99 6.8.4.1] |
| 483 | /// 'if' '(' expression ')' statement |
| 484 | /// 'if' '(' expression ')' statement 'else' statement |
| 485 | /// |
| 486 | Parser::StmtResult Parser::ParseIfStatement() { |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 487 | assert(Tok.is(tok::kw_if) && "Not an if stmt!"); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 488 | SourceLocation IfLoc = ConsumeToken(); // eat the 'if'. |
| 489 | |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 490 | if (Tok.isNot(tok::l_paren)) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 491 | Diag(Tok, diag::err_expected_lparen_after, "if"); |
| 492 | SkipUntil(tok::semi); |
| 493 | return true; |
| 494 | } |
| 495 | |
Chris Lattner | 2215325 | 2007-08-26 23:08:06 +0000 | [diff] [blame] | 496 | // C99 6.8.4p3 - In C99, the if statement is a block. This is not |
| 497 | // the case for C90. |
| 498 | if (getLang().C99) |
| 499 | EnterScope(Scope::DeclScope); |
| 500 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 501 | // Parse the condition. |
| 502 | ExprResult CondExp = ParseSimpleParenExpression(); |
| 503 | if (CondExp.isInvalid) { |
| 504 | SkipUntil(tok::semi); |
Chris Lattner | 2215325 | 2007-08-26 23:08:06 +0000 | [diff] [blame] | 505 | if (getLang().C99) |
| 506 | ExitScope(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 507 | return true; |
| 508 | } |
| 509 | |
Chris Lattner | 0ecea03 | 2007-08-22 05:28:50 +0000 | [diff] [blame] | 510 | // C99 6.8.4p3 - In C99, the body of the if statement is a scope, even if |
Chris Lattner | 3848440 | 2007-08-22 05:33:11 +0000 | [diff] [blame] | 511 | // there is no compound stmt. C90 does not have this clause. We only do this |
| 512 | // if the body isn't a compound statement to avoid push/pop in common cases. |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 513 | bool NeedsInnerScope = getLang().C99 && Tok.isNot(tok::l_brace); |
Chris Lattner | 31e0572 | 2007-08-26 06:24:45 +0000 | [diff] [blame] | 514 | if (NeedsInnerScope) EnterScope(Scope::DeclScope); |
Chris Lattner | a36ce71 | 2007-08-22 05:16:28 +0000 | [diff] [blame] | 515 | |
Chris Lattner | b96728d | 2007-10-29 05:08:52 +0000 | [diff] [blame] | 516 | // Read the 'then' stmt. |
| 517 | SourceLocation ThenStmtLoc = Tok.getLocation(); |
| 518 | StmtResult ThenStmt = ParseStatement(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 519 | |
Chris Lattner | a36ce71 | 2007-08-22 05:16:28 +0000 | [diff] [blame] | 520 | // Pop the 'if' scope if needed. |
Chris Lattner | 3848440 | 2007-08-22 05:33:11 +0000 | [diff] [blame] | 521 | if (NeedsInnerScope) ExitScope(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 522 | |
| 523 | // If it has an else, parse it. |
| 524 | SourceLocation ElseLoc; |
Chris Lattner | b96728d | 2007-10-29 05:08:52 +0000 | [diff] [blame] | 525 | SourceLocation ElseStmtLoc; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 526 | StmtResult ElseStmt(false); |
Chris Lattner | b96728d | 2007-10-29 05:08:52 +0000 | [diff] [blame] | 527 | |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 528 | if (Tok.is(tok::kw_else)) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 529 | ElseLoc = ConsumeToken(); |
Chris Lattner | a36ce71 | 2007-08-22 05:16:28 +0000 | [diff] [blame] | 530 | |
Chris Lattner | 0ecea03 | 2007-08-22 05:28:50 +0000 | [diff] [blame] | 531 | // C99 6.8.4p3 - In C99, the body of the if statement is a scope, even if |
Chris Lattner | 3848440 | 2007-08-22 05:33:11 +0000 | [diff] [blame] | 532 | // there is no compound stmt. C90 does not have this clause. We only do |
| 533 | // this if the body isn't a compound statement to avoid push/pop in common |
| 534 | // cases. |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 535 | NeedsInnerScope = getLang().C99 && Tok.isNot(tok::l_brace); |
Chris Lattner | 31e0572 | 2007-08-26 06:24:45 +0000 | [diff] [blame] | 536 | if (NeedsInnerScope) EnterScope(Scope::DeclScope); |
Chris Lattner | a36ce71 | 2007-08-22 05:16:28 +0000 | [diff] [blame] | 537 | |
Chris Lattner | b96728d | 2007-10-29 05:08:52 +0000 | [diff] [blame] | 538 | ElseStmtLoc = Tok.getLocation(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 539 | ElseStmt = ParseStatement(); |
Chris Lattner | a36ce71 | 2007-08-22 05:16:28 +0000 | [diff] [blame] | 540 | |
| 541 | // Pop the 'else' scope if needed. |
Chris Lattner | 3848440 | 2007-08-22 05:33:11 +0000 | [diff] [blame] | 542 | if (NeedsInnerScope) ExitScope(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 543 | } |
| 544 | |
Chris Lattner | 2215325 | 2007-08-26 23:08:06 +0000 | [diff] [blame] | 545 | if (getLang().C99) |
| 546 | ExitScope(); |
| 547 | |
Chris Lattner | b96728d | 2007-10-29 05:08:52 +0000 | [diff] [blame] | 548 | // If the then or else stmt is invalid and the other is valid (and present), |
| 549 | // make turn the invalid one into a null stmt to avoid dropping the other |
| 550 | // part. If both are invalid, return error. |
| 551 | if ((ThenStmt.isInvalid && ElseStmt.isInvalid) || |
| 552 | (ThenStmt.isInvalid && ElseStmt.Val == 0) || |
| 553 | (ThenStmt.Val == 0 && ElseStmt.isInvalid)) { |
| 554 | // Both invalid, or one is invalid and other is non-present: delete cond and |
| 555 | // return error. |
| 556 | Actions.DeleteExpr(CondExp.Val); |
| 557 | return true; |
| 558 | } |
| 559 | |
| 560 | // Now if either are invalid, replace with a ';'. |
| 561 | if (ThenStmt.isInvalid) |
| 562 | ThenStmt = Actions.ActOnNullStmt(ThenStmtLoc); |
| 563 | if (ElseStmt.isInvalid) |
| 564 | ElseStmt = Actions.ActOnNullStmt(ElseStmtLoc); |
| 565 | |
| 566 | |
| 567 | |
| 568 | return Actions.ActOnIfStmt(IfLoc, CondExp.Val, ThenStmt.Val, |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 569 | ElseLoc, ElseStmt.Val); |
| 570 | } |
| 571 | |
| 572 | /// ParseSwitchStatement |
| 573 | /// switch-statement: |
| 574 | /// 'switch' '(' expression ')' statement |
| 575 | Parser::StmtResult Parser::ParseSwitchStatement() { |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 576 | assert(Tok.is(tok::kw_switch) && "Not a switch stmt!"); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 577 | SourceLocation SwitchLoc = ConsumeToken(); // eat the 'switch'. |
| 578 | |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 579 | if (Tok.isNot(tok::l_paren)) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 580 | Diag(Tok, diag::err_expected_lparen_after, "switch"); |
| 581 | SkipUntil(tok::semi); |
| 582 | return true; |
| 583 | } |
Chris Lattner | 2215325 | 2007-08-26 23:08:06 +0000 | [diff] [blame] | 584 | |
| 585 | // C99 6.8.4p3 - In C99, the switch statement is a block. This is |
| 586 | // not the case for C90. Start the switch scope. |
| 587 | if (getLang().C99) |
| 588 | EnterScope(Scope::BreakScope|Scope::DeclScope); |
| 589 | else |
| 590 | EnterScope(Scope::BreakScope); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 591 | |
| 592 | // Parse the condition. |
| 593 | ExprResult Cond = ParseSimpleParenExpression(); |
| 594 | |
Anders Carlsson | c1fcb77 | 2007-07-22 07:07:56 +0000 | [diff] [blame] | 595 | if (Cond.isInvalid) { |
| 596 | ExitScope(); |
| 597 | return true; |
| 598 | } |
| 599 | |
Steve Naroff | 1b273c4 | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 600 | StmtResult Switch = Actions.ActOnStartOfSwitchStmt(Cond.Val); |
Anders Carlsson | c1fcb77 | 2007-07-22 07:07:56 +0000 | [diff] [blame] | 601 | |
Chris Lattner | 0ecea03 | 2007-08-22 05:28:50 +0000 | [diff] [blame] | 602 | // C99 6.8.4p3 - In C99, the body of the switch statement is a scope, even if |
Chris Lattner | 3848440 | 2007-08-22 05:33:11 +0000 | [diff] [blame] | 603 | // there is no compound stmt. C90 does not have this clause. We only do this |
| 604 | // if the body isn't a compound statement to avoid push/pop in common cases. |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 605 | bool NeedsInnerScope = getLang().C99 && Tok.isNot(tok::l_brace); |
Chris Lattner | 31e0572 | 2007-08-26 06:24:45 +0000 | [diff] [blame] | 606 | if (NeedsInnerScope) EnterScope(Scope::DeclScope); |
Chris Lattner | 0ecea03 | 2007-08-22 05:28:50 +0000 | [diff] [blame] | 607 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 608 | // Read the body statement. |
| 609 | StmtResult Body = ParseStatement(); |
| 610 | |
Chris Lattner | 0ecea03 | 2007-08-22 05:28:50 +0000 | [diff] [blame] | 611 | // Pop the body scope if needed. |
Chris Lattner | 3848440 | 2007-08-22 05:33:11 +0000 | [diff] [blame] | 612 | if (NeedsInnerScope) ExitScope(); |
Chris Lattner | 0ecea03 | 2007-08-22 05:28:50 +0000 | [diff] [blame] | 613 | |
Anders Carlsson | c1fcb77 | 2007-07-22 07:07:56 +0000 | [diff] [blame] | 614 | if (Body.isInvalid) { |
Steve Naroff | 1b273c4 | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 615 | Body = Actions.ActOnNullStmt(Tok.getLocation()); |
Anders Carlsson | c1fcb77 | 2007-07-22 07:07:56 +0000 | [diff] [blame] | 616 | // FIXME: Remove the case statement list from the Switch statement. |
| 617 | } |
| 618 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 619 | ExitScope(); |
| 620 | |
Steve Naroff | 1b273c4 | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 621 | return Actions.ActOnFinishSwitchStmt(SwitchLoc, Switch.Val, Body.Val); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 622 | } |
| 623 | |
| 624 | /// ParseWhileStatement |
| 625 | /// while-statement: [C99 6.8.5.1] |
| 626 | /// 'while' '(' expression ')' statement |
| 627 | Parser::StmtResult Parser::ParseWhileStatement() { |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 628 | assert(Tok.is(tok::kw_while) && "Not a while stmt!"); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 629 | SourceLocation WhileLoc = Tok.getLocation(); |
| 630 | ConsumeToken(); // eat the 'while'. |
| 631 | |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 632 | if (Tok.isNot(tok::l_paren)) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 633 | Diag(Tok, diag::err_expected_lparen_after, "while"); |
| 634 | SkipUntil(tok::semi); |
| 635 | return true; |
| 636 | } |
| 637 | |
Chris Lattner | 2215325 | 2007-08-26 23:08:06 +0000 | [diff] [blame] | 638 | // C99 6.8.5p5 - In C99, the while statement is a block. This is not |
| 639 | // the case for C90. Start the loop scope. |
| 640 | if (getLang().C99) |
| 641 | EnterScope(Scope::BreakScope | Scope::ContinueScope | Scope::DeclScope); |
| 642 | else |
| 643 | EnterScope(Scope::BreakScope | Scope::ContinueScope); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 644 | |
| 645 | // Parse the condition. |
| 646 | ExprResult Cond = ParseSimpleParenExpression(); |
| 647 | |
Chris Lattner | 0ecea03 | 2007-08-22 05:28:50 +0000 | [diff] [blame] | 648 | // C99 6.8.5p5 - In C99, the body of the if statement is a scope, even if |
Chris Lattner | 3848440 | 2007-08-22 05:33:11 +0000 | [diff] [blame] | 649 | // there is no compound stmt. C90 does not have this clause. We only do this |
| 650 | // if the body isn't a compound statement to avoid push/pop in common cases. |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 651 | bool NeedsInnerScope = getLang().C99 && Tok.isNot(tok::l_brace); |
Chris Lattner | 31e0572 | 2007-08-26 06:24:45 +0000 | [diff] [blame] | 652 | if (NeedsInnerScope) EnterScope(Scope::DeclScope); |
Chris Lattner | 0ecea03 | 2007-08-22 05:28:50 +0000 | [diff] [blame] | 653 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 654 | // Read the body statement. |
| 655 | StmtResult Body = ParseStatement(); |
| 656 | |
Chris Lattner | 0ecea03 | 2007-08-22 05:28:50 +0000 | [diff] [blame] | 657 | // Pop the body scope if needed. |
Chris Lattner | 3848440 | 2007-08-22 05:33:11 +0000 | [diff] [blame] | 658 | if (NeedsInnerScope) ExitScope(); |
Chris Lattner | 0ecea03 | 2007-08-22 05:28:50 +0000 | [diff] [blame] | 659 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 660 | ExitScope(); |
| 661 | |
| 662 | if (Cond.isInvalid || Body.isInvalid) return true; |
| 663 | |
Steve Naroff | 1b273c4 | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 664 | return Actions.ActOnWhileStmt(WhileLoc, Cond.Val, Body.Val); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 665 | } |
| 666 | |
| 667 | /// ParseDoStatement |
| 668 | /// do-statement: [C99 6.8.5.2] |
| 669 | /// 'do' statement 'while' '(' expression ')' ';' |
| 670 | /// Note: this lets the caller parse the end ';'. |
| 671 | Parser::StmtResult Parser::ParseDoStatement() { |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 672 | assert(Tok.is(tok::kw_do) && "Not a do stmt!"); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 673 | SourceLocation DoLoc = ConsumeToken(); // eat the 'do'. |
| 674 | |
Chris Lattner | 2215325 | 2007-08-26 23:08:06 +0000 | [diff] [blame] | 675 | // C99 6.8.5p5 - In C99, the do statement is a block. This is not |
| 676 | // the case for C90. Start the loop scope. |
| 677 | if (getLang().C99) |
| 678 | EnterScope(Scope::BreakScope | Scope::ContinueScope | Scope::DeclScope); |
| 679 | else |
| 680 | EnterScope(Scope::BreakScope | Scope::ContinueScope); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 681 | |
Chris Lattner | 0ecea03 | 2007-08-22 05:28:50 +0000 | [diff] [blame] | 682 | // C99 6.8.5p5 - In C99, the body of the if statement is a scope, even if |
Chris Lattner | 3848440 | 2007-08-22 05:33:11 +0000 | [diff] [blame] | 683 | // there is no compound stmt. C90 does not have this clause. We only do this |
| 684 | // if the body isn't a compound statement to avoid push/pop in common cases. |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 685 | bool NeedsInnerScope = getLang().C99 && Tok.isNot(tok::l_brace); |
Chris Lattner | 31e0572 | 2007-08-26 06:24:45 +0000 | [diff] [blame] | 686 | if (NeedsInnerScope) EnterScope(Scope::DeclScope); |
Chris Lattner | 0ecea03 | 2007-08-22 05:28:50 +0000 | [diff] [blame] | 687 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 688 | // Read the body statement. |
| 689 | StmtResult Body = ParseStatement(); |
| 690 | |
Chris Lattner | 0ecea03 | 2007-08-22 05:28:50 +0000 | [diff] [blame] | 691 | // Pop the body scope if needed. |
Chris Lattner | 3848440 | 2007-08-22 05:33:11 +0000 | [diff] [blame] | 692 | if (NeedsInnerScope) ExitScope(); |
Chris Lattner | 0ecea03 | 2007-08-22 05:28:50 +0000 | [diff] [blame] | 693 | |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 694 | if (Tok.isNot(tok::kw_while)) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 695 | ExitScope(); |
| 696 | Diag(Tok, diag::err_expected_while); |
| 697 | Diag(DoLoc, diag::err_matching, "do"); |
| 698 | SkipUntil(tok::semi); |
| 699 | return true; |
| 700 | } |
| 701 | SourceLocation WhileLoc = ConsumeToken(); |
| 702 | |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 703 | if (Tok.isNot(tok::l_paren)) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 704 | ExitScope(); |
| 705 | Diag(Tok, diag::err_expected_lparen_after, "do/while"); |
| 706 | SkipUntil(tok::semi); |
| 707 | return true; |
| 708 | } |
| 709 | |
| 710 | // Parse the condition. |
| 711 | ExprResult Cond = ParseSimpleParenExpression(); |
| 712 | |
| 713 | ExitScope(); |
| 714 | |
| 715 | if (Cond.isInvalid || Body.isInvalid) return true; |
| 716 | |
Steve Naroff | 1b273c4 | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 717 | return Actions.ActOnDoStmt(DoLoc, Body.Val, WhileLoc, Cond.Val); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 718 | } |
| 719 | |
| 720 | /// ParseForStatement |
| 721 | /// for-statement: [C99 6.8.5.3] |
| 722 | /// 'for' '(' expr[opt] ';' expr[opt] ';' expr[opt] ')' statement |
| 723 | /// 'for' '(' declaration expr[opt] ';' expr[opt] ')' statement |
| 724 | Parser::StmtResult Parser::ParseForStatement() { |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 725 | assert(Tok.is(tok::kw_for) && "Not a for stmt!"); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 726 | SourceLocation ForLoc = ConsumeToken(); // eat the 'for'. |
| 727 | |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 728 | if (Tok.isNot(tok::l_paren)) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 729 | Diag(Tok, diag::err_expected_lparen_after, "for"); |
| 730 | SkipUntil(tok::semi); |
| 731 | return true; |
| 732 | } |
| 733 | |
Chris Lattner | 2215325 | 2007-08-26 23:08:06 +0000 | [diff] [blame] | 734 | // C99 6.8.5p5 - In C99, the for statement is a block. This is not |
| 735 | // the case for C90. Start the loop scope. |
| 736 | if (getLang().C99) |
| 737 | EnterScope(Scope::BreakScope | Scope::ContinueScope | Scope::DeclScope); |
| 738 | else |
| 739 | EnterScope(Scope::BreakScope | Scope::ContinueScope); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 740 | |
| 741 | SourceLocation LParenLoc = ConsumeParen(); |
| 742 | ExprResult Value; |
| 743 | |
| 744 | StmtTy *FirstPart = 0; |
| 745 | ExprTy *SecondPart = 0; |
| 746 | StmtTy *ThirdPart = 0; |
| 747 | |
| 748 | // Parse the first part of the for specifier. |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 749 | if (Tok.is(tok::semi)) { // for (; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 750 | // no first part, eat the ';'. |
| 751 | ConsumeToken(); |
| 752 | } else if (isDeclarationSpecifier()) { // for (int X = 4; |
| 753 | // Parse declaration, which eats the ';'. |
| 754 | if (!getLang().C99) // Use of C99-style for loops in C90 mode? |
| 755 | Diag(Tok, diag::ext_c99_variable_decl_in_for_loop); |
| 756 | DeclTy *aBlockVarDecl = ParseDeclaration(Declarator::ForContext); |
Steve Naroff | 1b273c4 | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 757 | StmtResult stmtResult = Actions.ActOnDeclStmt(aBlockVarDecl); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 758 | FirstPart = stmtResult.isInvalid ? 0 : stmtResult.Val; |
| 759 | } else { |
| 760 | Value = ParseExpression(); |
| 761 | |
| 762 | // Turn the expression into a stmt. |
| 763 | if (!Value.isInvalid) { |
Steve Naroff | 1b273c4 | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 764 | StmtResult R = Actions.ActOnExprStmt(Value.Val); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 765 | if (!R.isInvalid) |
| 766 | FirstPart = R.Val; |
| 767 | } |
| 768 | |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 769 | if (Tok.is(tok::semi)) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 770 | ConsumeToken(); |
| 771 | } else { |
| 772 | if (!Value.isInvalid) Diag(Tok, diag::err_expected_semi_for); |
| 773 | SkipUntil(tok::semi); |
| 774 | } |
| 775 | } |
| 776 | |
| 777 | // Parse the second part of the for specifier. |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 778 | if (Tok.is(tok::semi)) { // for (...;; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 779 | // no second part. |
| 780 | Value = ExprResult(); |
| 781 | } else { |
| 782 | Value = ParseExpression(); |
| 783 | if (!Value.isInvalid) |
| 784 | SecondPart = Value.Val; |
| 785 | } |
| 786 | |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 787 | if (Tok.is(tok::semi)) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 788 | ConsumeToken(); |
| 789 | } else { |
| 790 | if (!Value.isInvalid) Diag(Tok, diag::err_expected_semi_for); |
| 791 | SkipUntil(tok::semi); |
| 792 | } |
| 793 | |
| 794 | // Parse the third part of the for specifier. |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 795 | if (Tok.is(tok::r_paren)) { // for (...;...;) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 796 | // no third part. |
| 797 | Value = ExprResult(); |
| 798 | } else { |
| 799 | Value = ParseExpression(); |
| 800 | if (!Value.isInvalid) { |
| 801 | // Turn the expression into a stmt. |
Steve Naroff | 1b273c4 | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 802 | StmtResult R = Actions.ActOnExprStmt(Value.Val); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 803 | if (!R.isInvalid) |
| 804 | ThirdPart = R.Val; |
| 805 | } |
| 806 | } |
| 807 | |
| 808 | // Match the ')'. |
| 809 | SourceLocation RParenLoc = MatchRHSPunctuation(tok::r_paren, LParenLoc); |
| 810 | |
Chris Lattner | 0ecea03 | 2007-08-22 05:28:50 +0000 | [diff] [blame] | 811 | // C99 6.8.5p5 - In C99, the body of the if statement is a scope, even if |
Chris Lattner | 3848440 | 2007-08-22 05:33:11 +0000 | [diff] [blame] | 812 | // there is no compound stmt. C90 does not have this clause. We only do this |
| 813 | // if the body isn't a compound statement to avoid push/pop in common cases. |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 814 | bool NeedsInnerScope = getLang().C99 && Tok.isNot(tok::l_brace); |
Chris Lattner | 31e0572 | 2007-08-26 06:24:45 +0000 | [diff] [blame] | 815 | if (NeedsInnerScope) EnterScope(Scope::DeclScope); |
Chris Lattner | 0ecea03 | 2007-08-22 05:28:50 +0000 | [diff] [blame] | 816 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 817 | // Read the body statement. |
| 818 | StmtResult Body = ParseStatement(); |
| 819 | |
Chris Lattner | 0ecea03 | 2007-08-22 05:28:50 +0000 | [diff] [blame] | 820 | // Pop the body scope if needed. |
Chris Lattner | 3848440 | 2007-08-22 05:33:11 +0000 | [diff] [blame] | 821 | if (NeedsInnerScope) ExitScope(); |
Chris Lattner | 0ecea03 | 2007-08-22 05:28:50 +0000 | [diff] [blame] | 822 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 823 | // Leave the for-scope. |
| 824 | ExitScope(); |
| 825 | |
| 826 | if (Body.isInvalid) |
| 827 | return Body; |
| 828 | |
Steve Naroff | 1b273c4 | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 829 | return Actions.ActOnForStmt(ForLoc, LParenLoc, FirstPart, SecondPart, |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 830 | ThirdPart, RParenLoc, Body.Val); |
| 831 | } |
| 832 | |
| 833 | /// ParseGotoStatement |
| 834 | /// jump-statement: |
| 835 | /// 'goto' identifier ';' |
| 836 | /// [GNU] 'goto' '*' expression ';' |
| 837 | /// |
| 838 | /// Note: this lets the caller parse the end ';'. |
| 839 | /// |
| 840 | Parser::StmtResult Parser::ParseGotoStatement() { |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 841 | assert(Tok.is(tok::kw_goto) && "Not a goto stmt!"); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 842 | SourceLocation GotoLoc = ConsumeToken(); // eat the 'goto'. |
| 843 | |
| 844 | StmtResult Res; |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 845 | if (Tok.is(tok::identifier)) { |
Steve Naroff | 1b273c4 | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 846 | Res = Actions.ActOnGotoStmt(GotoLoc, Tok.getLocation(), |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 847 | Tok.getIdentifierInfo()); |
| 848 | ConsumeToken(); |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 849 | } else if (Tok.is(tok::star) && !getLang().NoExtensions) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 850 | // GNU indirect goto extension. |
| 851 | Diag(Tok, diag::ext_gnu_indirect_goto); |
| 852 | SourceLocation StarLoc = ConsumeToken(); |
| 853 | ExprResult R = ParseExpression(); |
| 854 | if (R.isInvalid) { // Skip to the semicolon, but don't consume it. |
| 855 | SkipUntil(tok::semi, false, true); |
| 856 | return true; |
| 857 | } |
Steve Naroff | 1b273c4 | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 858 | Res = Actions.ActOnIndirectGotoStmt(GotoLoc, StarLoc, R.Val); |
Chris Lattner | 95cfb85 | 2007-07-22 04:13:33 +0000 | [diff] [blame] | 859 | } else { |
| 860 | Diag(Tok, diag::err_expected_ident); |
| 861 | return true; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 862 | } |
Chris Lattner | 95cfb85 | 2007-07-22 04:13:33 +0000 | [diff] [blame] | 863 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 864 | return Res; |
| 865 | } |
| 866 | |
| 867 | /// ParseContinueStatement |
| 868 | /// jump-statement: |
| 869 | /// 'continue' ';' |
| 870 | /// |
| 871 | /// Note: this lets the caller parse the end ';'. |
| 872 | /// |
| 873 | Parser::StmtResult Parser::ParseContinueStatement() { |
| 874 | SourceLocation ContinueLoc = ConsumeToken(); // eat the 'continue'. |
Steve Naroff | 1b273c4 | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 875 | return Actions.ActOnContinueStmt(ContinueLoc, CurScope); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 876 | } |
| 877 | |
| 878 | /// ParseBreakStatement |
| 879 | /// jump-statement: |
| 880 | /// 'break' ';' |
| 881 | /// |
| 882 | /// Note: this lets the caller parse the end ';'. |
| 883 | /// |
| 884 | Parser::StmtResult Parser::ParseBreakStatement() { |
| 885 | SourceLocation BreakLoc = ConsumeToken(); // eat the 'break'. |
Steve Naroff | 1b273c4 | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 886 | return Actions.ActOnBreakStmt(BreakLoc, CurScope); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 887 | } |
| 888 | |
| 889 | /// ParseReturnStatement |
| 890 | /// jump-statement: |
| 891 | /// 'return' expression[opt] ';' |
| 892 | Parser::StmtResult Parser::ParseReturnStatement() { |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 893 | assert(Tok.is(tok::kw_return) && "Not a return stmt!"); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 894 | SourceLocation ReturnLoc = ConsumeToken(); // eat the 'return'. |
| 895 | |
| 896 | ExprResult R(0); |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 897 | if (Tok.isNot(tok::semi)) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 898 | R = ParseExpression(); |
| 899 | if (R.isInvalid) { // Skip to the semicolon, but don't consume it. |
| 900 | SkipUntil(tok::semi, false, true); |
| 901 | return true; |
| 902 | } |
| 903 | } |
Steve Naroff | 1b273c4 | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 904 | return Actions.ActOnReturnStmt(ReturnLoc, R.Val); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 905 | } |
| 906 | |
| 907 | /// ParseAsmStatement - Parse a GNU extended asm statement. |
| 908 | /// [GNU] asm-statement: |
| 909 | /// 'asm' type-qualifier[opt] '(' asm-argument ')' ';' |
| 910 | /// |
| 911 | /// [GNU] asm-argument: |
| 912 | /// asm-string-literal |
| 913 | /// asm-string-literal ':' asm-operands[opt] |
| 914 | /// asm-string-literal ':' asm-operands[opt] ':' asm-operands[opt] |
| 915 | /// asm-string-literal ':' asm-operands[opt] ':' asm-operands[opt] |
| 916 | /// ':' asm-clobbers |
| 917 | /// |
| 918 | /// [GNU] asm-clobbers: |
| 919 | /// asm-string-literal |
| 920 | /// asm-clobbers ',' asm-string-literal |
| 921 | /// |
| 922 | Parser::StmtResult Parser::ParseAsmStatement() { |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 923 | assert(Tok.is(tok::kw_asm) && "Not an asm stmt"); |
Chris Lattner | fe79595 | 2007-10-29 04:04:16 +0000 | [diff] [blame] | 924 | SourceLocation AsmLoc = ConsumeToken(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 925 | |
| 926 | DeclSpec DS; |
| 927 | SourceLocation Loc = Tok.getLocation(); |
| 928 | ParseTypeQualifierListOpt(DS); |
| 929 | |
| 930 | // GNU asms accept, but warn, about type-qualifiers other than volatile. |
| 931 | if (DS.getTypeQualifiers() & DeclSpec::TQ_const) |
| 932 | Diag(Loc, diag::w_asm_qualifier_ignored, "const"); |
| 933 | if (DS.getTypeQualifiers() & DeclSpec::TQ_restrict) |
| 934 | Diag(Loc, diag::w_asm_qualifier_ignored, "restrict"); |
| 935 | |
| 936 | // Remember if this was a volatile asm. |
| 937 | //bool isVolatile = DS.TypeQualifiers & DeclSpec::TQ_volatile; |
| 938 | |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 939 | if (Tok.isNot(tok::l_paren)) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 940 | Diag(Tok, diag::err_expected_lparen_after, "asm"); |
| 941 | SkipUntil(tok::r_paren); |
| 942 | return true; |
| 943 | } |
| 944 | Loc = ConsumeParen(); |
| 945 | |
Anders Carlsson | 6a0ef4b | 2007-11-20 19:21:03 +0000 | [diff] [blame^] | 946 | ExprResult AsmString = ParseAsmStringLiteral(); |
| 947 | if (AsmString.isInvalid) |
| 948 | return true; |
| 949 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 950 | // Parse Outputs, if present. |
| 951 | ParseAsmOperandsOpt(); |
| 952 | |
| 953 | // Parse Inputs, if present. |
| 954 | ParseAsmOperandsOpt(); |
| 955 | |
| 956 | // Parse the clobbers, if present. |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 957 | if (Tok.is(tok::colon)) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 958 | ConsumeToken(); |
| 959 | |
| 960 | if (isTokenStringLiteral()) { |
| 961 | // Parse the asm-string list for clobbers. |
| 962 | while (1) { |
| 963 | ParseAsmStringLiteral(); |
| 964 | |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 965 | if (Tok.isNot(tok::comma)) break; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 966 | ConsumeToken(); |
| 967 | } |
| 968 | } |
| 969 | } |
| 970 | |
Chris Lattner | fe79595 | 2007-10-29 04:04:16 +0000 | [diff] [blame] | 971 | SourceLocation RParenLoc = MatchRHSPunctuation(tok::r_paren, Loc); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 972 | |
Chris Lattner | fe79595 | 2007-10-29 04:04:16 +0000 | [diff] [blame] | 973 | // FIXME: Pass all the details down to the action. |
Anders Carlsson | 6a0ef4b | 2007-11-20 19:21:03 +0000 | [diff] [blame^] | 974 | return Actions.ActOnAsmStmt(AsmLoc, AsmString.Val, RParenLoc); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 975 | } |
| 976 | |
| 977 | /// ParseAsmOperands - Parse the asm-operands production as used by |
| 978 | /// asm-statement. We also parse a leading ':' token. If the leading colon is |
| 979 | /// not present, we do not parse anything. |
| 980 | /// |
| 981 | /// [GNU] asm-operands: |
| 982 | /// asm-operand |
| 983 | /// asm-operands ',' asm-operand |
| 984 | /// |
| 985 | /// [GNU] asm-operand: |
| 986 | /// asm-string-literal '(' expression ')' |
| 987 | /// '[' identifier ']' asm-string-literal '(' expression ')' |
| 988 | /// |
| 989 | void Parser::ParseAsmOperandsOpt() { |
| 990 | // Only do anything if this operand is present. |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 991 | if (Tok.isNot(tok::colon)) return; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 992 | ConsumeToken(); |
| 993 | |
| 994 | // 'asm-operands' isn't present? |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 995 | if (!isTokenStringLiteral() && Tok.isNot(tok::l_square)) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 996 | return; |
| 997 | |
| 998 | while (1) { |
| 999 | // Read the [id] if present. |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 1000 | if (Tok.is(tok::l_square)) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1001 | SourceLocation Loc = ConsumeBracket(); |
| 1002 | |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 1003 | if (Tok.isNot(tok::identifier)) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1004 | Diag(Tok, diag::err_expected_ident); |
| 1005 | SkipUntil(tok::r_paren); |
| 1006 | return; |
| 1007 | } |
Chris Lattner | 69efba7 | 2007-10-29 04:06:22 +0000 | [diff] [blame] | 1008 | |
| 1009 | // Eat the identifier, FIXME: capture it. |
| 1010 | ConsumeToken(); |
| 1011 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1012 | MatchRHSPunctuation(tok::r_square, Loc); |
| 1013 | } |
| 1014 | |
| 1015 | ParseAsmStringLiteral(); |
| 1016 | |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 1017 | if (Tok.isNot(tok::l_paren)) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1018 | Diag(Tok, diag::err_expected_lparen_after, "asm operand"); |
| 1019 | SkipUntil(tok::r_paren); |
| 1020 | return; |
| 1021 | } |
| 1022 | |
| 1023 | // Read the parenthesized expression. |
| 1024 | ExprResult Res = ParseSimpleParenExpression(); |
| 1025 | if (Res.isInvalid) { |
| 1026 | SkipUntil(tok::r_paren); |
| 1027 | return; |
| 1028 | } |
| 1029 | |
| 1030 | // Eat the comma and continue parsing if it exists. |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 1031 | if (Tok.isNot(tok::comma)) return; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1032 | ConsumeToken(); |
| 1033 | } |
| 1034 | } |
Fariborz Jahanian | f9ed315 | 2007-11-08 19:01:26 +0000 | [diff] [blame] | 1035 | |
| 1036 | Parser::DeclTy *Parser::ParseFunctionStatementBody(DeclTy *Decl, |
| 1037 | SourceLocation L, SourceLocation R) { |
| 1038 | // Do not enter a scope for the brace, as the arguments are in the same scope |
| 1039 | // (the function body) as the body itself. Instead, just read the statement |
| 1040 | // list and put it into a CompoundStmt for safe keeping. |
| 1041 | StmtResult FnBody = ParseCompoundStatementBody(); |
| 1042 | |
| 1043 | // If the function body could not be parsed, make a bogus compoundstmt. |
| 1044 | if (FnBody.isInvalid) |
| 1045 | FnBody = Actions.ActOnCompoundStmt(L, R, 0, 0, false); |
| 1046 | |
| 1047 | // Leave the function body scope. |
| 1048 | ExitScope(); |
| 1049 | |
| 1050 | // TODO: Pass argument information. |
Steve Naroff | d6d054d | 2007-11-11 23:20:51 +0000 | [diff] [blame] | 1051 | return Actions.ActOnFinishFunctionBody(Decl, FnBody.Val); |
Fariborz Jahanian | f9ed315 | 2007-11-08 19:01:26 +0000 | [diff] [blame] | 1052 | } |