blob: 68781c1be4c9961488e8da8e400896c52efa61d4 [file] [log] [blame]
Reid Spencer5f016e22007-07-11 17:01:13 +00001//===--- 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"
19using 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 Jahanianb384d322007-10-04 20:19:06 +000037/// [OBC] objc-throw-statement
38/// [OBC] objc-try-catch-statement
Reid Spencer5f016e22007-07-11 17:01:13 +000039/// [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 Jahanianb384d322007-10-04 20:19:06 +000067/// [OBC] objc-throw-statement:
68/// [OBC] '@' 'throw' expression ';'
69/// [OBC] '@' 'throw' ';'
Reid Spencer5f016e22007-07-11 17:01:13 +000070///
71Parser::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 Jahanian397fcc12007-09-19 19:14:32 +000078 tok::TokenKind Kind = Tok.getKind();
79 SourceLocation AtLoc;
80 switch (Kind) {
Reid Spencer5f016e22007-07-11 17:01:13 +000081 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 Jahanian397fcc12007-09-19 19:14:32 +000087 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 Jahanianb384d322007-10-04 20:19:06 +000094 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 Jahanian397fcc12007-09-19 19:14:32 +0000105 }
Fariborz Jahanian397fcc12007-09-19 19:14:32 +0000106
Reid Spencer5f016e22007-07-11 17:01:13 +0000107 default:
Fariborz Jahanianb384d322007-10-04 20:19:06 +0000108 if (!OnlyStatement && isDeclarationSpecifier()) {
Steve Naroff1b273c42007-09-16 14:56:35 +0000109 return Actions.ActOnDeclStmt(ParseDeclaration(Declarator::BlockContext));
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000110 } else if (Tok.is(tok::r_brace)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000111 Diag(Tok, diag::err_expected_statement);
112 return true;
113 } else {
114 // expression[opt] ';'
Fariborz Jahanianb384d322007-10-04 20:19:06 +0000115 ExprResult Res = ParseExpression();
Reid Spencer5f016e22007-07-11 17:01:13 +0000116 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 Naroff1b273c42007-09-16 14:56:35 +0000125 return Actions.ActOnExprStmt(Res.Val);
Reid Spencer5f016e22007-07-11 17:01:13 +0000126 }
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 Naroff1b273c42007-09-16 14:56:35 +0000136 return Actions.ActOnNullStmt(ConsumeToken());
Reid Spencer5f016e22007-07-11 17:01:13 +0000137
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 Lattner4e1d99a2007-10-09 17:41:39 +0000176 if (Tok.is(tok::semi)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000177 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///
197Parser::StmtResult Parser::ParseIdentifierStatement(bool OnlyStatement) {
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000198 assert(Tok.is(tok::identifier) && Tok.getIdentifierInfo() &&
Reid Spencer5f016e22007-07-11 17:01:13 +0000199 "Not an identifier!");
200
Chris Lattnerd2177732007-07-20 16:59:19 +0000201 Token IdentTok = Tok; // Save the whole token.
Reid Spencer5f016e22007-07-11 17:01:13 +0000202 ConsumeToken(); // eat the identifier.
203
204 // identifier ':' statement
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000205 if (Tok.is(tok::colon)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000206 SourceLocation ColonLoc = ConsumeToken();
207
208 // Read label attributes, if present.
209 DeclTy *AttrList = 0;
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000210 if (Tok.is(tok::kw___attribute))
Reid Spencer5f016e22007-07-11 17:01:13 +0000211 // 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 Naroff1b273c42007-09-16 14:56:35 +0000218 SubStmt = Actions.ActOnNullStmt(ColonLoc);
Reid Spencer5f016e22007-07-11 17:01:13 +0000219
Steve Naroff1b273c42007-09-16 14:56:35 +0000220 return Actions.ActOnLabelStmt(IdentTok.getLocation(),
Reid Spencer5f016e22007-07-11 17:01:13 +0000221 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!");
Fariborz Jahaniandfbcce22007-10-11 18:08:47 +0000238 if (Tok.is(tok::less)) {
239 llvm::SmallVector<IdentifierInfo *, 8> ProtocolRefs;
240 ParseObjCProtocolReferences(ProtocolRefs);
241 llvm::SmallVector<DeclTy *, 8> *ProtocolDecl =
242 new llvm::SmallVector<DeclTy *, 8>;
243 DS.setProtocolQualifiers(ProtocolDecl);
244 Actions.FindProtocolDeclaration(IdentTok.getLocation(),
245 &ProtocolRefs[0], ProtocolRefs.size(),
246 *ProtocolDecl);
247 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000248
249 // ParseDeclarationSpecifiers will continue from there.
250 ParseDeclarationSpecifiers(DS);
251
252 // C99 6.7.2.3p6: Handle "struct-or-union identifier;", "enum { X };"
253 // declaration-specifiers init-declarator-list[opt] ';'
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000254 if (Tok.is(tok::semi)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000255 // TODO: emit error on 'int;' or 'const enum foo;'.
256 // if (!DS.isMissingDeclaratorOk()) Diag(...);
257
258 ConsumeToken();
259 // FIXME: Return this as a type decl.
260 return 0;
261 }
262
263 // Parse all the declarators.
264 Declarator DeclaratorInfo(DS, Declarator::BlockContext);
265 ParseDeclarator(DeclaratorInfo);
266
267 DeclTy *Decl = ParseInitDeclaratorListAfterFirstDeclarator(DeclaratorInfo);
Steve Naroff1b273c42007-09-16 14:56:35 +0000268 return Decl ? Actions.ActOnDeclStmt(Decl) : 0;
Reid Spencer5f016e22007-07-11 17:01:13 +0000269 }
270
271 // Otherwise, this is an expression. Seed it with II and parse it.
272 ExprResult Res = ParseExpressionWithLeadingIdentifier(IdentTok);
273 if (Res.isInvalid) {
274 SkipUntil(tok::semi);
275 return true;
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000276 } else if (Tok.isNot(tok::semi)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000277 Diag(Tok, diag::err_expected_semi_after, "expression");
278 SkipUntil(tok::semi);
279 return true;
280 } else {
281 ConsumeToken();
282 // Convert expr to a stmt.
Steve Naroff1b273c42007-09-16 14:56:35 +0000283 return Actions.ActOnExprStmt(Res.Val);
Reid Spencer5f016e22007-07-11 17:01:13 +0000284 }
285}
286
287/// ParseCaseStatement
288/// labeled-statement:
289/// 'case' constant-expression ':' statement
290/// [GNU] 'case' constant-expression '...' constant-expression ':' statement
291///
292/// Note that this does not parse the 'statement' at the end.
293///
294Parser::StmtResult Parser::ParseCaseStatement() {
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000295 assert(Tok.is(tok::kw_case) && "Not a case stmt!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000296 SourceLocation CaseLoc = ConsumeToken(); // eat the 'case'.
297
298 ExprResult LHS = ParseConstantExpression();
299 if (LHS.isInvalid) {
300 SkipUntil(tok::colon);
301 return true;
302 }
303
304 // GNU case range extension.
305 SourceLocation DotDotDotLoc;
306 ExprTy *RHSVal = 0;
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000307 if (Tok.is(tok::ellipsis)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000308 Diag(Tok, diag::ext_gnu_case_range);
309 DotDotDotLoc = ConsumeToken();
310
311 ExprResult RHS = ParseConstantExpression();
312 if (RHS.isInvalid) {
313 SkipUntil(tok::colon);
314 return true;
315 }
316 RHSVal = RHS.Val;
317 }
318
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000319 if (Tok.isNot(tok::colon)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000320 Diag(Tok, diag::err_expected_colon_after, "'case'");
321 SkipUntil(tok::colon);
322 return true;
323 }
324
325 SourceLocation ColonLoc = ConsumeToken();
326
327 // Diagnose the common error "switch (X) { case 4: }", which is not valid.
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000328 if (Tok.is(tok::r_brace)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000329 Diag(Tok, diag::err_label_end_of_compound_statement);
330 return true;
331 }
332
333 StmtResult SubStmt = ParseStatement();
334
335 // Broken substmt shouldn't prevent the case from being added to the AST.
336 if (SubStmt.isInvalid)
Steve Naroff1b273c42007-09-16 14:56:35 +0000337 SubStmt = Actions.ActOnNullStmt(ColonLoc);
Reid Spencer5f016e22007-07-11 17:01:13 +0000338
Steve Naroff1b273c42007-09-16 14:56:35 +0000339 return Actions.ActOnCaseStmt(CaseLoc, LHS.Val, DotDotDotLoc, RHSVal, ColonLoc,
Reid Spencer5f016e22007-07-11 17:01:13 +0000340 SubStmt.Val);
341}
342
343/// ParseDefaultStatement
344/// labeled-statement:
345/// 'default' ':' statement
346/// Note that this does not parse the 'statement' at the end.
347///
348Parser::StmtResult Parser::ParseDefaultStatement() {
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000349 assert(Tok.is(tok::kw_default) && "Not a default stmt!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000350 SourceLocation DefaultLoc = ConsumeToken(); // eat the 'default'.
351
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000352 if (Tok.isNot(tok::colon)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000353 Diag(Tok, diag::err_expected_colon_after, "'default'");
354 SkipUntil(tok::colon);
355 return true;
356 }
357
358 SourceLocation ColonLoc = ConsumeToken();
359
360 // Diagnose the common error "switch (X) {... default: }", which is not valid.
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000361 if (Tok.is(tok::r_brace)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000362 Diag(Tok, diag::err_label_end_of_compound_statement);
363 return true;
364 }
365
366 StmtResult SubStmt = ParseStatement();
367 if (SubStmt.isInvalid)
368 return true;
369
Steve Naroff1b273c42007-09-16 14:56:35 +0000370 return Actions.ActOnDefaultStmt(DefaultLoc, ColonLoc, SubStmt.Val, CurScope);
Reid Spencer5f016e22007-07-11 17:01:13 +0000371}
372
373
374/// ParseCompoundStatement - Parse a "{}" block.
375///
376/// compound-statement: [C99 6.8.2]
377/// { block-item-list[opt] }
378/// [GNU] { label-declarations block-item-list } [TODO]
379///
380/// block-item-list:
381/// block-item
382/// block-item-list block-item
383///
384/// block-item:
385/// declaration
Chris Lattner45a566c2007-08-27 01:01:57 +0000386/// [GNU] '__extension__' declaration
Reid Spencer5f016e22007-07-11 17:01:13 +0000387/// statement
388/// [OMP] openmp-directive [TODO]
389///
390/// [GNU] label-declarations:
391/// [GNU] label-declaration
392/// [GNU] label-declarations label-declaration
393///
394/// [GNU] label-declaration:
395/// [GNU] '__label__' identifier-list ';'
396///
397/// [OMP] openmp-directive: [TODO]
398/// [OMP] barrier-directive
399/// [OMP] flush-directive
400///
Chris Lattner98414c12007-08-31 21:49:55 +0000401Parser::StmtResult Parser::ParseCompoundStatement(bool isStmtExpr) {
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000402 assert(Tok.is(tok::l_brace) && "Not a compount stmt!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000403
Chris Lattner31e05722007-08-26 06:24:45 +0000404 // Enter a scope to hold everything within the compound stmt. Compound
405 // statements can always hold declarations.
406 EnterScope(Scope::DeclScope);
Reid Spencer5f016e22007-07-11 17:01:13 +0000407
408 // Parse the statements in the body.
Chris Lattner98414c12007-08-31 21:49:55 +0000409 StmtResult Body = ParseCompoundStatementBody(isStmtExpr);
Reid Spencer5f016e22007-07-11 17:01:13 +0000410
411 ExitScope();
412 return Body;
413}
414
415
416/// ParseCompoundStatementBody - Parse a sequence of statements and invoke the
Steve Naroff1b273c42007-09-16 14:56:35 +0000417/// ActOnCompoundStmt action. This expects the '{' to be the current token, and
Reid Spencer5f016e22007-07-11 17:01:13 +0000418/// consume the '}' at the end of the block. It does not manipulate the scope
419/// stack.
Chris Lattner98414c12007-08-31 21:49:55 +0000420Parser::StmtResult Parser::ParseCompoundStatementBody(bool isStmtExpr) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000421 SourceLocation LBraceLoc = ConsumeBrace(); // eat the '{'.
422
423 // TODO: "__label__ X, Y, Z;" is the GNU "Local Label" extension. These are
Chris Lattner45a566c2007-08-27 01:01:57 +0000424 // only allowed at the start of a compound stmt regardless of the language.
Reid Spencer5f016e22007-07-11 17:01:13 +0000425
426 llvm::SmallVector<StmtTy*, 32> Stmts;
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000427 while (Tok.isNot(tok::r_brace) && Tok.isNot(tok::eof)) {
Chris Lattner45a566c2007-08-27 01:01:57 +0000428 StmtResult R;
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000429 if (Tok.isNot(tok::kw___extension__)) {
Chris Lattner45a566c2007-08-27 01:01:57 +0000430 R = ParseStatementOrDeclaration(false);
431 } else {
432 // __extension__ can start declarations and it can also be a unary
433 // operator for expressions. Consume multiple __extension__ markers here
434 // until we can determine which is which.
435 SourceLocation ExtLoc = ConsumeToken();
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000436 while (Tok.is(tok::kw___extension__))
Chris Lattner45a566c2007-08-27 01:01:57 +0000437 ConsumeToken();
438
439 // If this is the start of a declaration, parse it as such.
440 if (isDeclarationSpecifier()) {
441 // FIXME: Save the __extension__ on the decl as a node somehow.
442 // FIXME: disable extwarns.
Steve Naroff1b273c42007-09-16 14:56:35 +0000443 R = Actions.ActOnDeclStmt(ParseDeclaration(Declarator::BlockContext));
Chris Lattner45a566c2007-08-27 01:01:57 +0000444 } else {
445 // Otherwise this was a unary __extension__ marker. Parse the
446 // subexpression and add the __extension__ unary op.
447 // FIXME: disable extwarns.
448 ExprResult Res = ParseCastExpression(false);
449 if (Res.isInvalid) {
450 SkipUntil(tok::semi);
451 continue;
452 }
453
454 // Add the __extension__ node to the AST.
Steve Narofff69936d2007-09-16 03:34:24 +0000455 Res = Actions.ActOnUnaryOp(ExtLoc, tok::kw___extension__, Res.Val);
Chris Lattner45a566c2007-08-27 01:01:57 +0000456 if (Res.isInvalid)
457 continue;
458
459 // Eat the semicolon at the end of stmt and convert the expr into a stmt.
460 ExpectAndConsume(tok::semi, diag::err_expected_semi_after_expr);
Steve Naroff1b273c42007-09-16 14:56:35 +0000461 R = Actions.ActOnExprStmt(Res.Val);
Chris Lattner45a566c2007-08-27 01:01:57 +0000462 }
463 }
464
Reid Spencer5f016e22007-07-11 17:01:13 +0000465 if (!R.isInvalid && R.Val)
466 Stmts.push_back(R.Val);
467 }
468
469 // We broke out of the while loop because we found a '}' or EOF.
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000470 if (Tok.isNot(tok::r_brace)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000471 Diag(Tok, diag::err_expected_rbrace);
472 return 0;
473 }
474
475 SourceLocation RBraceLoc = ConsumeBrace();
Steve Naroff1b273c42007-09-16 14:56:35 +0000476 return Actions.ActOnCompoundStmt(LBraceLoc, RBraceLoc,
Chris Lattner98414c12007-08-31 21:49:55 +0000477 &Stmts[0], Stmts.size(), isStmtExpr);
Reid Spencer5f016e22007-07-11 17:01:13 +0000478}
479
480/// ParseIfStatement
481/// if-statement: [C99 6.8.4.1]
482/// 'if' '(' expression ')' statement
483/// 'if' '(' expression ')' statement 'else' statement
484///
485Parser::StmtResult Parser::ParseIfStatement() {
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000486 assert(Tok.is(tok::kw_if) && "Not an if stmt!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000487 SourceLocation IfLoc = ConsumeToken(); // eat the 'if'.
488
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000489 if (Tok.isNot(tok::l_paren)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000490 Diag(Tok, diag::err_expected_lparen_after, "if");
491 SkipUntil(tok::semi);
492 return true;
493 }
494
Chris Lattner22153252007-08-26 23:08:06 +0000495 // C99 6.8.4p3 - In C99, the if statement is a block. This is not
496 // the case for C90.
497 if (getLang().C99)
498 EnterScope(Scope::DeclScope);
499
Reid Spencer5f016e22007-07-11 17:01:13 +0000500 // Parse the condition.
501 ExprResult CondExp = ParseSimpleParenExpression();
502 if (CondExp.isInvalid) {
503 SkipUntil(tok::semi);
Chris Lattner22153252007-08-26 23:08:06 +0000504 if (getLang().C99)
505 ExitScope();
Reid Spencer5f016e22007-07-11 17:01:13 +0000506 return true;
507 }
508
Chris Lattner0ecea032007-08-22 05:28:50 +0000509 // C99 6.8.4p3 - In C99, the body of the if statement is a scope, even if
Chris Lattner38484402007-08-22 05:33:11 +0000510 // there is no compound stmt. C90 does not have this clause. We only do this
511 // if the body isn't a compound statement to avoid push/pop in common cases.
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000512 bool NeedsInnerScope = getLang().C99 && Tok.isNot(tok::l_brace);
Chris Lattner31e05722007-08-26 06:24:45 +0000513 if (NeedsInnerScope) EnterScope(Scope::DeclScope);
Chris Lattnera36ce712007-08-22 05:16:28 +0000514
Reid Spencer5f016e22007-07-11 17:01:13 +0000515 // Read the if condition.
516 StmtResult CondStmt = ParseStatement();
517
518 // Broken substmt shouldn't prevent the label from being added to the AST.
519 if (CondStmt.isInvalid)
Steve Naroff1b273c42007-09-16 14:56:35 +0000520 CondStmt = Actions.ActOnNullStmt(Tok.getLocation());
Reid Spencer5f016e22007-07-11 17:01:13 +0000521
Chris Lattnera36ce712007-08-22 05:16:28 +0000522 // Pop the 'if' scope if needed.
Chris Lattner38484402007-08-22 05:33:11 +0000523 if (NeedsInnerScope) ExitScope();
Reid Spencer5f016e22007-07-11 17:01:13 +0000524
525 // If it has an else, parse it.
526 SourceLocation ElseLoc;
527 StmtResult ElseStmt(false);
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000528 if (Tok.is(tok::kw_else)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000529 ElseLoc = ConsumeToken();
Chris Lattnera36ce712007-08-22 05:16:28 +0000530
Chris Lattner0ecea032007-08-22 05:28:50 +0000531 // C99 6.8.4p3 - In C99, the body of the if statement is a scope, even if
Chris Lattner38484402007-08-22 05:33:11 +0000532 // 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 Lattner4e1d99a2007-10-09 17:41:39 +0000535 NeedsInnerScope = getLang().C99 && Tok.isNot(tok::l_brace);
Chris Lattner31e05722007-08-26 06:24:45 +0000536 if (NeedsInnerScope) EnterScope(Scope::DeclScope);
Chris Lattnera36ce712007-08-22 05:16:28 +0000537
Reid Spencer5f016e22007-07-11 17:01:13 +0000538 ElseStmt = ParseStatement();
Chris Lattnera36ce712007-08-22 05:16:28 +0000539
540 // Pop the 'else' scope if needed.
Chris Lattner38484402007-08-22 05:33:11 +0000541 if (NeedsInnerScope) ExitScope();
Reid Spencer5f016e22007-07-11 17:01:13 +0000542
543 if (ElseStmt.isInvalid)
Steve Naroff1b273c42007-09-16 14:56:35 +0000544 ElseStmt = Actions.ActOnNullStmt(ElseLoc);
Reid Spencer5f016e22007-07-11 17:01:13 +0000545 }
546
Chris Lattner22153252007-08-26 23:08:06 +0000547 if (getLang().C99)
548 ExitScope();
549
Steve Naroff1b273c42007-09-16 14:56:35 +0000550 return Actions.ActOnIfStmt(IfLoc, CondExp.Val, CondStmt.Val,
Reid Spencer5f016e22007-07-11 17:01:13 +0000551 ElseLoc, ElseStmt.Val);
552}
553
554/// ParseSwitchStatement
555/// switch-statement:
556/// 'switch' '(' expression ')' statement
557Parser::StmtResult Parser::ParseSwitchStatement() {
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000558 assert(Tok.is(tok::kw_switch) && "Not a switch stmt!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000559 SourceLocation SwitchLoc = ConsumeToken(); // eat the 'switch'.
560
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000561 if (Tok.isNot(tok::l_paren)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000562 Diag(Tok, diag::err_expected_lparen_after, "switch");
563 SkipUntil(tok::semi);
564 return true;
565 }
Chris Lattner22153252007-08-26 23:08:06 +0000566
567 // C99 6.8.4p3 - In C99, the switch statement is a block. This is
568 // not the case for C90. Start the switch scope.
569 if (getLang().C99)
570 EnterScope(Scope::BreakScope|Scope::DeclScope);
571 else
572 EnterScope(Scope::BreakScope);
Reid Spencer5f016e22007-07-11 17:01:13 +0000573
574 // Parse the condition.
575 ExprResult Cond = ParseSimpleParenExpression();
576
Anders Carlssonc1fcb772007-07-22 07:07:56 +0000577 if (Cond.isInvalid) {
578 ExitScope();
579 return true;
580 }
581
Steve Naroff1b273c42007-09-16 14:56:35 +0000582 StmtResult Switch = Actions.ActOnStartOfSwitchStmt(Cond.Val);
Anders Carlssonc1fcb772007-07-22 07:07:56 +0000583
Chris Lattner0ecea032007-08-22 05:28:50 +0000584 // C99 6.8.4p3 - In C99, the body of the switch statement is a scope, even if
Chris Lattner38484402007-08-22 05:33:11 +0000585 // there is no compound stmt. C90 does not have this clause. We only do this
586 // if the body isn't a compound statement to avoid push/pop in common cases.
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000587 bool NeedsInnerScope = getLang().C99 && Tok.isNot(tok::l_brace);
Chris Lattner31e05722007-08-26 06:24:45 +0000588 if (NeedsInnerScope) EnterScope(Scope::DeclScope);
Chris Lattner0ecea032007-08-22 05:28:50 +0000589
Reid Spencer5f016e22007-07-11 17:01:13 +0000590 // Read the body statement.
591 StmtResult Body = ParseStatement();
592
Chris Lattner0ecea032007-08-22 05:28:50 +0000593 // Pop the body scope if needed.
Chris Lattner38484402007-08-22 05:33:11 +0000594 if (NeedsInnerScope) ExitScope();
Chris Lattner0ecea032007-08-22 05:28:50 +0000595
Anders Carlssonc1fcb772007-07-22 07:07:56 +0000596 if (Body.isInvalid) {
Steve Naroff1b273c42007-09-16 14:56:35 +0000597 Body = Actions.ActOnNullStmt(Tok.getLocation());
Anders Carlssonc1fcb772007-07-22 07:07:56 +0000598 // FIXME: Remove the case statement list from the Switch statement.
599 }
600
Reid Spencer5f016e22007-07-11 17:01:13 +0000601 ExitScope();
602
Steve Naroff1b273c42007-09-16 14:56:35 +0000603 return Actions.ActOnFinishSwitchStmt(SwitchLoc, Switch.Val, Body.Val);
Reid Spencer5f016e22007-07-11 17:01:13 +0000604}
605
606/// ParseWhileStatement
607/// while-statement: [C99 6.8.5.1]
608/// 'while' '(' expression ')' statement
609Parser::StmtResult Parser::ParseWhileStatement() {
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000610 assert(Tok.is(tok::kw_while) && "Not a while stmt!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000611 SourceLocation WhileLoc = Tok.getLocation();
612 ConsumeToken(); // eat the 'while'.
613
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000614 if (Tok.isNot(tok::l_paren)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000615 Diag(Tok, diag::err_expected_lparen_after, "while");
616 SkipUntil(tok::semi);
617 return true;
618 }
619
Chris Lattner22153252007-08-26 23:08:06 +0000620 // C99 6.8.5p5 - In C99, the while statement is a block. This is not
621 // the case for C90. Start the loop scope.
622 if (getLang().C99)
623 EnterScope(Scope::BreakScope | Scope::ContinueScope | Scope::DeclScope);
624 else
625 EnterScope(Scope::BreakScope | Scope::ContinueScope);
Reid Spencer5f016e22007-07-11 17:01:13 +0000626
627 // Parse the condition.
628 ExprResult Cond = ParseSimpleParenExpression();
629
Chris Lattner0ecea032007-08-22 05:28:50 +0000630 // C99 6.8.5p5 - In C99, the body of the if statement is a scope, even if
Chris Lattner38484402007-08-22 05:33:11 +0000631 // there is no compound stmt. C90 does not have this clause. We only do this
632 // if the body isn't a compound statement to avoid push/pop in common cases.
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000633 bool NeedsInnerScope = getLang().C99 && Tok.isNot(tok::l_brace);
Chris Lattner31e05722007-08-26 06:24:45 +0000634 if (NeedsInnerScope) EnterScope(Scope::DeclScope);
Chris Lattner0ecea032007-08-22 05:28:50 +0000635
Reid Spencer5f016e22007-07-11 17:01:13 +0000636 // Read the body statement.
637 StmtResult Body = ParseStatement();
638
Chris Lattner0ecea032007-08-22 05:28:50 +0000639 // Pop the body scope if needed.
Chris Lattner38484402007-08-22 05:33:11 +0000640 if (NeedsInnerScope) ExitScope();
Chris Lattner0ecea032007-08-22 05:28:50 +0000641
Reid Spencer5f016e22007-07-11 17:01:13 +0000642 ExitScope();
643
644 if (Cond.isInvalid || Body.isInvalid) return true;
645
Steve Naroff1b273c42007-09-16 14:56:35 +0000646 return Actions.ActOnWhileStmt(WhileLoc, Cond.Val, Body.Val);
Reid Spencer5f016e22007-07-11 17:01:13 +0000647}
648
649/// ParseDoStatement
650/// do-statement: [C99 6.8.5.2]
651/// 'do' statement 'while' '(' expression ')' ';'
652/// Note: this lets the caller parse the end ';'.
653Parser::StmtResult Parser::ParseDoStatement() {
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000654 assert(Tok.is(tok::kw_do) && "Not a do stmt!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000655 SourceLocation DoLoc = ConsumeToken(); // eat the 'do'.
656
Chris Lattner22153252007-08-26 23:08:06 +0000657 // C99 6.8.5p5 - In C99, the do statement is a block. This is not
658 // the case for C90. Start the loop scope.
659 if (getLang().C99)
660 EnterScope(Scope::BreakScope | Scope::ContinueScope | Scope::DeclScope);
661 else
662 EnterScope(Scope::BreakScope | Scope::ContinueScope);
Reid Spencer5f016e22007-07-11 17:01:13 +0000663
Chris Lattner0ecea032007-08-22 05:28:50 +0000664 // C99 6.8.5p5 - In C99, the body of the if statement is a scope, even if
Chris Lattner38484402007-08-22 05:33:11 +0000665 // there is no compound stmt. C90 does not have this clause. We only do this
666 // if the body isn't a compound statement to avoid push/pop in common cases.
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000667 bool NeedsInnerScope = getLang().C99 && Tok.isNot(tok::l_brace);
Chris Lattner31e05722007-08-26 06:24:45 +0000668 if (NeedsInnerScope) EnterScope(Scope::DeclScope);
Chris Lattner0ecea032007-08-22 05:28:50 +0000669
Reid Spencer5f016e22007-07-11 17:01:13 +0000670 // Read the body statement.
671 StmtResult Body = ParseStatement();
672
Chris Lattner0ecea032007-08-22 05:28:50 +0000673 // Pop the body scope if needed.
Chris Lattner38484402007-08-22 05:33:11 +0000674 if (NeedsInnerScope) ExitScope();
Chris Lattner0ecea032007-08-22 05:28:50 +0000675
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000676 if (Tok.isNot(tok::kw_while)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000677 ExitScope();
678 Diag(Tok, diag::err_expected_while);
679 Diag(DoLoc, diag::err_matching, "do");
680 SkipUntil(tok::semi);
681 return true;
682 }
683 SourceLocation WhileLoc = ConsumeToken();
684
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000685 if (Tok.isNot(tok::l_paren)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000686 ExitScope();
687 Diag(Tok, diag::err_expected_lparen_after, "do/while");
688 SkipUntil(tok::semi);
689 return true;
690 }
691
692 // Parse the condition.
693 ExprResult Cond = ParseSimpleParenExpression();
694
695 ExitScope();
696
697 if (Cond.isInvalid || Body.isInvalid) return true;
698
Steve Naroff1b273c42007-09-16 14:56:35 +0000699 return Actions.ActOnDoStmt(DoLoc, Body.Val, WhileLoc, Cond.Val);
Reid Spencer5f016e22007-07-11 17:01:13 +0000700}
701
702/// ParseForStatement
703/// for-statement: [C99 6.8.5.3]
704/// 'for' '(' expr[opt] ';' expr[opt] ';' expr[opt] ')' statement
705/// 'for' '(' declaration expr[opt] ';' expr[opt] ')' statement
706Parser::StmtResult Parser::ParseForStatement() {
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000707 assert(Tok.is(tok::kw_for) && "Not a for stmt!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000708 SourceLocation ForLoc = ConsumeToken(); // eat the 'for'.
709
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000710 if (Tok.isNot(tok::l_paren)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000711 Diag(Tok, diag::err_expected_lparen_after, "for");
712 SkipUntil(tok::semi);
713 return true;
714 }
715
Chris Lattner22153252007-08-26 23:08:06 +0000716 // C99 6.8.5p5 - In C99, the for statement is a block. This is not
717 // the case for C90. Start the loop scope.
718 if (getLang().C99)
719 EnterScope(Scope::BreakScope | Scope::ContinueScope | Scope::DeclScope);
720 else
721 EnterScope(Scope::BreakScope | Scope::ContinueScope);
Reid Spencer5f016e22007-07-11 17:01:13 +0000722
723 SourceLocation LParenLoc = ConsumeParen();
724 ExprResult Value;
725
726 StmtTy *FirstPart = 0;
727 ExprTy *SecondPart = 0;
728 StmtTy *ThirdPart = 0;
729
730 // Parse the first part of the for specifier.
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000731 if (Tok.is(tok::semi)) { // for (;
Reid Spencer5f016e22007-07-11 17:01:13 +0000732 // no first part, eat the ';'.
733 ConsumeToken();
734 } else if (isDeclarationSpecifier()) { // for (int X = 4;
735 // Parse declaration, which eats the ';'.
736 if (!getLang().C99) // Use of C99-style for loops in C90 mode?
737 Diag(Tok, diag::ext_c99_variable_decl_in_for_loop);
738 DeclTy *aBlockVarDecl = ParseDeclaration(Declarator::ForContext);
Steve Naroff1b273c42007-09-16 14:56:35 +0000739 StmtResult stmtResult = Actions.ActOnDeclStmt(aBlockVarDecl);
Reid Spencer5f016e22007-07-11 17:01:13 +0000740 FirstPart = stmtResult.isInvalid ? 0 : stmtResult.Val;
741 } else {
742 Value = ParseExpression();
743
744 // Turn the expression into a stmt.
745 if (!Value.isInvalid) {
Steve Naroff1b273c42007-09-16 14:56:35 +0000746 StmtResult R = Actions.ActOnExprStmt(Value.Val);
Reid Spencer5f016e22007-07-11 17:01:13 +0000747 if (!R.isInvalid)
748 FirstPart = R.Val;
749 }
750
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000751 if (Tok.is(tok::semi)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000752 ConsumeToken();
753 } else {
754 if (!Value.isInvalid) Diag(Tok, diag::err_expected_semi_for);
755 SkipUntil(tok::semi);
756 }
757 }
758
759 // Parse the second part of the for specifier.
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000760 if (Tok.is(tok::semi)) { // for (...;;
Reid Spencer5f016e22007-07-11 17:01:13 +0000761 // no second part.
762 Value = ExprResult();
763 } else {
764 Value = ParseExpression();
765 if (!Value.isInvalid)
766 SecondPart = Value.Val;
767 }
768
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000769 if (Tok.is(tok::semi)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000770 ConsumeToken();
771 } else {
772 if (!Value.isInvalid) Diag(Tok, diag::err_expected_semi_for);
773 SkipUntil(tok::semi);
774 }
775
776 // Parse the third part of the for specifier.
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000777 if (Tok.is(tok::r_paren)) { // for (...;...;)
Reid Spencer5f016e22007-07-11 17:01:13 +0000778 // no third part.
779 Value = ExprResult();
780 } else {
781 Value = ParseExpression();
782 if (!Value.isInvalid) {
783 // Turn the expression into a stmt.
Steve Naroff1b273c42007-09-16 14:56:35 +0000784 StmtResult R = Actions.ActOnExprStmt(Value.Val);
Reid Spencer5f016e22007-07-11 17:01:13 +0000785 if (!R.isInvalid)
786 ThirdPart = R.Val;
787 }
788 }
789
790 // Match the ')'.
791 SourceLocation RParenLoc = MatchRHSPunctuation(tok::r_paren, LParenLoc);
792
Chris Lattner0ecea032007-08-22 05:28:50 +0000793 // C99 6.8.5p5 - In C99, the body of the if statement is a scope, even if
Chris Lattner38484402007-08-22 05:33:11 +0000794 // there is no compound stmt. C90 does not have this clause. We only do this
795 // if the body isn't a compound statement to avoid push/pop in common cases.
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000796 bool NeedsInnerScope = getLang().C99 && Tok.isNot(tok::l_brace);
Chris Lattner31e05722007-08-26 06:24:45 +0000797 if (NeedsInnerScope) EnterScope(Scope::DeclScope);
Chris Lattner0ecea032007-08-22 05:28:50 +0000798
Reid Spencer5f016e22007-07-11 17:01:13 +0000799 // Read the body statement.
800 StmtResult Body = ParseStatement();
801
Chris Lattner0ecea032007-08-22 05:28:50 +0000802 // Pop the body scope if needed.
Chris Lattner38484402007-08-22 05:33:11 +0000803 if (NeedsInnerScope) ExitScope();
Chris Lattner0ecea032007-08-22 05:28:50 +0000804
Reid Spencer5f016e22007-07-11 17:01:13 +0000805 // Leave the for-scope.
806 ExitScope();
807
808 if (Body.isInvalid)
809 return Body;
810
Steve Naroff1b273c42007-09-16 14:56:35 +0000811 return Actions.ActOnForStmt(ForLoc, LParenLoc, FirstPart, SecondPart,
Reid Spencer5f016e22007-07-11 17:01:13 +0000812 ThirdPart, RParenLoc, Body.Val);
813}
814
815/// ParseGotoStatement
816/// jump-statement:
817/// 'goto' identifier ';'
818/// [GNU] 'goto' '*' expression ';'
819///
820/// Note: this lets the caller parse the end ';'.
821///
822Parser::StmtResult Parser::ParseGotoStatement() {
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000823 assert(Tok.is(tok::kw_goto) && "Not a goto stmt!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000824 SourceLocation GotoLoc = ConsumeToken(); // eat the 'goto'.
825
826 StmtResult Res;
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000827 if (Tok.is(tok::identifier)) {
Steve Naroff1b273c42007-09-16 14:56:35 +0000828 Res = Actions.ActOnGotoStmt(GotoLoc, Tok.getLocation(),
Reid Spencer5f016e22007-07-11 17:01:13 +0000829 Tok.getIdentifierInfo());
830 ConsumeToken();
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000831 } else if (Tok.is(tok::star) && !getLang().NoExtensions) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000832 // GNU indirect goto extension.
833 Diag(Tok, diag::ext_gnu_indirect_goto);
834 SourceLocation StarLoc = ConsumeToken();
835 ExprResult R = ParseExpression();
836 if (R.isInvalid) { // Skip to the semicolon, but don't consume it.
837 SkipUntil(tok::semi, false, true);
838 return true;
839 }
Steve Naroff1b273c42007-09-16 14:56:35 +0000840 Res = Actions.ActOnIndirectGotoStmt(GotoLoc, StarLoc, R.Val);
Chris Lattner95cfb852007-07-22 04:13:33 +0000841 } else {
842 Diag(Tok, diag::err_expected_ident);
843 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +0000844 }
Chris Lattner95cfb852007-07-22 04:13:33 +0000845
Reid Spencer5f016e22007-07-11 17:01:13 +0000846 return Res;
847}
848
849/// ParseContinueStatement
850/// jump-statement:
851/// 'continue' ';'
852///
853/// Note: this lets the caller parse the end ';'.
854///
855Parser::StmtResult Parser::ParseContinueStatement() {
856 SourceLocation ContinueLoc = ConsumeToken(); // eat the 'continue'.
Steve Naroff1b273c42007-09-16 14:56:35 +0000857 return Actions.ActOnContinueStmt(ContinueLoc, CurScope);
Reid Spencer5f016e22007-07-11 17:01:13 +0000858}
859
860/// ParseBreakStatement
861/// jump-statement:
862/// 'break' ';'
863///
864/// Note: this lets the caller parse the end ';'.
865///
866Parser::StmtResult Parser::ParseBreakStatement() {
867 SourceLocation BreakLoc = ConsumeToken(); // eat the 'break'.
Steve Naroff1b273c42007-09-16 14:56:35 +0000868 return Actions.ActOnBreakStmt(BreakLoc, CurScope);
Reid Spencer5f016e22007-07-11 17:01:13 +0000869}
870
871/// ParseReturnStatement
872/// jump-statement:
873/// 'return' expression[opt] ';'
874Parser::StmtResult Parser::ParseReturnStatement() {
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000875 assert(Tok.is(tok::kw_return) && "Not a return stmt!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000876 SourceLocation ReturnLoc = ConsumeToken(); // eat the 'return'.
877
878 ExprResult R(0);
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000879 if (Tok.isNot(tok::semi)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000880 R = ParseExpression();
881 if (R.isInvalid) { // Skip to the semicolon, but don't consume it.
882 SkipUntil(tok::semi, false, true);
883 return true;
884 }
885 }
Steve Naroff1b273c42007-09-16 14:56:35 +0000886 return Actions.ActOnReturnStmt(ReturnLoc, R.Val);
Reid Spencer5f016e22007-07-11 17:01:13 +0000887}
888
889/// ParseAsmStatement - Parse a GNU extended asm statement.
890/// [GNU] asm-statement:
891/// 'asm' type-qualifier[opt] '(' asm-argument ')' ';'
892///
893/// [GNU] asm-argument:
894/// asm-string-literal
895/// asm-string-literal ':' asm-operands[opt]
896/// asm-string-literal ':' asm-operands[opt] ':' asm-operands[opt]
897/// asm-string-literal ':' asm-operands[opt] ':' asm-operands[opt]
898/// ':' asm-clobbers
899///
900/// [GNU] asm-clobbers:
901/// asm-string-literal
902/// asm-clobbers ',' asm-string-literal
903///
904Parser::StmtResult Parser::ParseAsmStatement() {
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000905 assert(Tok.is(tok::kw_asm) && "Not an asm stmt");
Chris Lattnerfe795952007-10-29 04:04:16 +0000906 SourceLocation AsmLoc = ConsumeToken();
Reid Spencer5f016e22007-07-11 17:01:13 +0000907
908 DeclSpec DS;
909 SourceLocation Loc = Tok.getLocation();
910 ParseTypeQualifierListOpt(DS);
911
912 // GNU asms accept, but warn, about type-qualifiers other than volatile.
913 if (DS.getTypeQualifiers() & DeclSpec::TQ_const)
914 Diag(Loc, diag::w_asm_qualifier_ignored, "const");
915 if (DS.getTypeQualifiers() & DeclSpec::TQ_restrict)
916 Diag(Loc, diag::w_asm_qualifier_ignored, "restrict");
917
918 // Remember if this was a volatile asm.
919 //bool isVolatile = DS.TypeQualifiers & DeclSpec::TQ_volatile;
920
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000921 if (Tok.isNot(tok::l_paren)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000922 Diag(Tok, diag::err_expected_lparen_after, "asm");
923 SkipUntil(tok::r_paren);
924 return true;
925 }
926 Loc = ConsumeParen();
927
928 ParseAsmStringLiteral();
929
930 // Parse Outputs, if present.
931 ParseAsmOperandsOpt();
932
933 // Parse Inputs, if present.
934 ParseAsmOperandsOpt();
935
936 // Parse the clobbers, if present.
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000937 if (Tok.is(tok::colon)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000938 ConsumeToken();
939
940 if (isTokenStringLiteral()) {
941 // Parse the asm-string list for clobbers.
942 while (1) {
943 ParseAsmStringLiteral();
944
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000945 if (Tok.isNot(tok::comma)) break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000946 ConsumeToken();
947 }
948 }
949 }
950
Chris Lattnerfe795952007-10-29 04:04:16 +0000951 SourceLocation RParenLoc = MatchRHSPunctuation(tok::r_paren, Loc);
Reid Spencer5f016e22007-07-11 17:01:13 +0000952
Chris Lattnerfe795952007-10-29 04:04:16 +0000953 // FIXME: Pass all the details down to the action.
954 return Actions.ActOnAsmStmt(AsmLoc, RParenLoc);
Reid Spencer5f016e22007-07-11 17:01:13 +0000955}
956
957/// ParseAsmOperands - Parse the asm-operands production as used by
958/// asm-statement. We also parse a leading ':' token. If the leading colon is
959/// not present, we do not parse anything.
960///
961/// [GNU] asm-operands:
962/// asm-operand
963/// asm-operands ',' asm-operand
964///
965/// [GNU] asm-operand:
966/// asm-string-literal '(' expression ')'
967/// '[' identifier ']' asm-string-literal '(' expression ')'
968///
969void Parser::ParseAsmOperandsOpt() {
970 // Only do anything if this operand is present.
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000971 if (Tok.isNot(tok::colon)) return;
Reid Spencer5f016e22007-07-11 17:01:13 +0000972 ConsumeToken();
973
974 // 'asm-operands' isn't present?
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000975 if (!isTokenStringLiteral() && Tok.isNot(tok::l_square))
Reid Spencer5f016e22007-07-11 17:01:13 +0000976 return;
977
978 while (1) {
979 // Read the [id] if present.
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000980 if (Tok.is(tok::l_square)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000981 SourceLocation Loc = ConsumeBracket();
982
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000983 if (Tok.isNot(tok::identifier)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000984 Diag(Tok, diag::err_expected_ident);
985 SkipUntil(tok::r_paren);
986 return;
987 }
988 MatchRHSPunctuation(tok::r_square, Loc);
989 }
990
991 ParseAsmStringLiteral();
992
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000993 if (Tok.isNot(tok::l_paren)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000994 Diag(Tok, diag::err_expected_lparen_after, "asm operand");
995 SkipUntil(tok::r_paren);
996 return;
997 }
998
999 // Read the parenthesized expression.
1000 ExprResult Res = ParseSimpleParenExpression();
1001 if (Res.isInvalid) {
1002 SkipUntil(tok::r_paren);
1003 return;
1004 }
1005
1006 // Eat the comma and continue parsing if it exists.
Chris Lattner4e1d99a2007-10-09 17:41:39 +00001007 if (Tok.isNot(tok::comma)) return;
Reid Spencer5f016e22007-07-11 17:01:13 +00001008 ConsumeToken();
1009 }
1010}