blob: e0d527ebf607001e6384cc87a2f51ab0b1808f75 [file] [log] [blame]
Chris Lattner7ad0fbe2006-11-05 07:46:30 +00001//===--- ParseStmt.cpp - Statement and Block Parser -----------------------===//
Chris Lattner0ccd51e2006-08-09 05:47:47 +00002//
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"
Chris Lattner288e86ff12006-11-11 23:03:42 +000017#include "clang/Parse/DeclSpec.h"
Chris Lattner33ad2ca2006-11-05 23:47:55 +000018#include "clang/Parse/Scope.h"
Chris Lattner0ccd51e2006-08-09 05:47:47 +000019using 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
37/// [OBC] objc-throw-statement [TODO]
38/// [OBC] objc-try-catch-statement [TODO]
39/// [OBC] objc-synchronized-statement [TODO]
Chris Lattner0116c472006-08-15 06:03:28 +000040/// [GNU] asm-statement
Chris Lattner0ccd51e2006-08-09 05:47:47 +000041/// [OMP] openmp-construct [TODO]
42///
43/// labeled-statement:
44/// identifier ':' statement
45/// 'case' constant-expression ':' statement
46/// 'default' ':' statement
47///
Chris Lattner0ccd51e2006-08-09 05:47:47 +000048/// selection-statement:
49/// if-statement
50/// switch-statement
51///
52/// iteration-statement:
53/// while-statement
54/// do-statement
55/// for-statement
56///
Chris Lattner9075bd72006-08-10 04:59:57 +000057/// expression-statement:
58/// expression[opt] ';'
59///
Chris Lattner0ccd51e2006-08-09 05:47:47 +000060/// jump-statement:
61/// 'goto' identifier ';'
62/// 'continue' ';'
63/// 'break' ';'
64/// 'return' expression[opt] ';'
Chris Lattner503fadc2006-08-10 05:45:44 +000065/// [GNU] 'goto' '*' expression ';'
Chris Lattner0ccd51e2006-08-09 05:47:47 +000066///
67/// [OBC] objc-throw-statement: [TODO]
68/// [OBC] '@' 'throw' expression ';' [TODO]
69/// [OBC] '@' 'throw' ';' [TODO]
70///
Chris Lattner30f910e2006-10-16 05:52:41 +000071Parser::StmtResult Parser::ParseStatementOrDeclaration(bool OnlyStatement) {
Chris Lattner503fadc2006-08-10 05:45:44 +000072 const char *SemiError = 0;
Chris Lattner30f910e2006-10-16 05:52:41 +000073 Parser::StmtResult Res;
Chris Lattner503fadc2006-08-10 05:45:44 +000074
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.
Chris Lattner0ccd51e2006-08-09 05:47:47 +000078 switch (Tok.getKind()) {
Chris Lattnerf8afb622006-08-10 18:26:31 +000079 case tok::identifier: // C99 6.8.1: labeled-statement
80 // identifier ':' statement
81 // declaration (if !OnlyStatement)
82 // expression[opt] ';'
83 return ParseIdentifierStatement(OnlyStatement);
84
Chris Lattner0ccd51e2006-08-09 05:47:47 +000085 default:
Chris Lattnerf8afb622006-08-10 18:26:31 +000086 if (!OnlyStatement && isDeclarationSpecifier()) {
87 // TODO: warn/disable if declaration is in the middle of a block and !C99.
Steve Naroff2a8ad182007-05-29 22:59:26 +000088 return Actions.ParseDeclStmt(ParseDeclaration(Declarator::BlockContext));
Chris Lattnerf8afb622006-08-10 18:26:31 +000089 } else if (Tok.getKind() == tok::r_brace) {
90 Diag(Tok, diag::err_expected_statement);
Chris Lattner30f910e2006-10-16 05:52:41 +000091 return true;
Chris Lattnerf8afb622006-08-10 18:26:31 +000092 } else {
93 // expression[opt] ';'
Chris Lattner89c50c62006-08-11 06:41:18 +000094 ExprResult Res = ParseExpression();
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);
Chris Lattner30f910e2006-10-16 05:52:41 +0000100 return true;
Chris Lattner89c50c62006-08-11 06:41:18 +0000101 }
Chris Lattner2e550fe2007-06-06 05:26:32 +0000102 // Otherwise, eat the semicolon.
103 ExpectAndConsume(tok::semi, diag::err_expected_semi_after_expr);
Chris Lattnercd68f642007-06-27 01:06:29 +0000104 return Actions.ParseExprStmt(Res.Val);
Chris Lattnerf8afb622006-08-10 18:26:31 +0000105 }
Chris Lattner0ccd51e2006-08-09 05:47:47 +0000106
Chris Lattnerd2685cf2006-08-10 05:59:48 +0000107 case tok::kw_case: // C99 6.8.1: labeled-statement
Chris Lattner30f910e2006-10-16 05:52:41 +0000108 return ParseCaseStatement();
Chris Lattnerd2685cf2006-08-10 05:59:48 +0000109 case tok::kw_default: // C99 6.8.1: labeled-statement
Chris Lattner30f910e2006-10-16 05:52:41 +0000110 return ParseDefaultStatement();
Chris Lattner9075bd72006-08-10 04:59:57 +0000111
112 case tok::l_brace: // C99 6.8.2: compound-statement
Chris Lattner30f910e2006-10-16 05:52:41 +0000113 return ParseCompoundStatement();
Chris Lattner0f203a72007-05-28 01:45:28 +0000114 case tok::semi: // C99 6.8.3p3: expression[opt] ';'
115 return Actions.ParseNullStmt(ConsumeToken());
Chris Lattner503fadc2006-08-10 05:45:44 +0000116
Chris Lattner9075bd72006-08-10 04:59:57 +0000117 case tok::kw_if: // C99 6.8.4.1: if-statement
Chris Lattner30f910e2006-10-16 05:52:41 +0000118 return ParseIfStatement();
Chris Lattner9075bd72006-08-10 04:59:57 +0000119 case tok::kw_switch: // C99 6.8.4.2: switch-statement
Chris Lattner30f910e2006-10-16 05:52:41 +0000120 return ParseSwitchStatement();
Chris Lattner503fadc2006-08-10 05:45:44 +0000121
Chris Lattner9075bd72006-08-10 04:59:57 +0000122 case tok::kw_while: // C99 6.8.5.1: while-statement
Chris Lattner30f910e2006-10-16 05:52:41 +0000123 return ParseWhileStatement();
Chris Lattner9075bd72006-08-10 04:59:57 +0000124 case tok::kw_do: // C99 6.8.5.2: do-statement
Chris Lattner30f910e2006-10-16 05:52:41 +0000125 Res = ParseDoStatement();
Chris Lattner503fadc2006-08-10 05:45:44 +0000126 SemiError = "do/while loop";
Chris Lattner9075bd72006-08-10 04:59:57 +0000127 break;
128 case tok::kw_for: // C99 6.8.5.3: for-statement
Chris Lattner30f910e2006-10-16 05:52:41 +0000129 return ParseForStatement();
Chris Lattner503fadc2006-08-10 05:45:44 +0000130
131 case tok::kw_goto: // C99 6.8.6.1: goto-statement
Chris Lattner30f910e2006-10-16 05:52:41 +0000132 Res = ParseGotoStatement();
Chris Lattner503fadc2006-08-10 05:45:44 +0000133 SemiError = "goto statement";
Chris Lattner9075bd72006-08-10 04:59:57 +0000134 break;
Chris Lattner503fadc2006-08-10 05:45:44 +0000135 case tok::kw_continue: // C99 6.8.6.2: continue-statement
Chris Lattner33ad2ca2006-11-05 23:47:55 +0000136 Res = ParseContinueStatement();
Chris Lattner503fadc2006-08-10 05:45:44 +0000137 SemiError = "continue statement";
138 break;
139 case tok::kw_break: // C99 6.8.6.3: break-statement
Chris Lattner33ad2ca2006-11-05 23:47:55 +0000140 Res = ParseBreakStatement();
Chris Lattner503fadc2006-08-10 05:45:44 +0000141 SemiError = "break statement";
142 break;
143 case tok::kw_return: // C99 6.8.6.4: return-statement
Chris Lattner30f910e2006-10-16 05:52:41 +0000144 Res = ParseReturnStatement();
Chris Lattner503fadc2006-08-10 05:45:44 +0000145 SemiError = "return statement";
146 break;
Chris Lattner0116c472006-08-15 06:03:28 +0000147
148 case tok::kw_asm:
Chris Lattner30f910e2006-10-16 05:52:41 +0000149 Res = ParseAsmStatement();
Chris Lattner0116c472006-08-15 06:03:28 +0000150 SemiError = "asm statement";
151 break;
Chris Lattner0ccd51e2006-08-09 05:47:47 +0000152 }
Chris Lattner503fadc2006-08-10 05:45:44 +0000153
154 // If we reached this code, the statement must end in a semicolon.
155 if (Tok.getKind() == tok::semi) {
156 ConsumeToken();
157 } else {
158 Diag(Tok, diag::err_expected_semi_after, SemiError);
159 SkipUntil(tok::semi);
160 }
Chris Lattner30f910e2006-10-16 05:52:41 +0000161 return Res;
Chris Lattner0ccd51e2006-08-09 05:47:47 +0000162}
163
Chris Lattnerf8afb622006-08-10 18:26:31 +0000164/// ParseIdentifierStatement - Because we don't have two-token lookahead, we
165/// have a bit of a quandry here. Reading the identifier is necessary to see if
166/// there is a ':' after it. If there is, this is a label, regardless of what
167/// else the identifier can mean. If not, this is either part of a declaration
168/// (if the identifier is a type-name) or part of an expression.
Chris Lattner6dfd9782006-08-10 18:31:37 +0000169///
170/// labeled-statement:
171/// identifier ':' statement
Chris Lattnere37e2332006-08-15 04:50:22 +0000172/// [GNU] identifier ':' attributes[opt] statement
Chris Lattner6dfd9782006-08-10 18:31:37 +0000173/// declaration (if !OnlyStatement)
174/// expression[opt] ';'
175///
Chris Lattner30f910e2006-10-16 05:52:41 +0000176Parser::StmtResult Parser::ParseIdentifierStatement(bool OnlyStatement) {
Chris Lattner0663d2a2006-11-05 18:39:59 +0000177 assert(Tok.getKind() == tok::identifier && Tok.getIdentifierInfo() &&
178 "Not an identifier!");
Chris Lattner6dfd9782006-08-10 18:31:37 +0000179
Chris Lattner146762e2007-07-20 16:59:19 +0000180 Token IdentTok = Tok; // Save the whole token.
Chris Lattner6dfd9782006-08-10 18:31:37 +0000181 ConsumeToken(); // eat the identifier.
182
183 // identifier ':' statement
184 if (Tok.getKind() == tok::colon) {
Chris Lattneraf635312006-10-16 06:06:51 +0000185 SourceLocation ColonLoc = ConsumeToken();
Chris Lattnere37e2332006-08-15 04:50:22 +0000186
187 // Read label attributes, if present.
Steve Naroff0f2fe172007-06-01 17:11:19 +0000188 DeclTy *AttrList = 0;
Chris Lattnere37e2332006-08-15 04:50:22 +0000189 if (Tok.getKind() == tok::kw___attribute)
Chris Lattner30f910e2006-10-16 05:52:41 +0000190 // TODO: save these somewhere.
Steve Naroff0f2fe172007-06-01 17:11:19 +0000191 AttrList = ParseAttributes();
Chris Lattnere37e2332006-08-15 04:50:22 +0000192
Chris Lattner30f910e2006-10-16 05:52:41 +0000193 StmtResult SubStmt = ParseStatement();
Chris Lattnerac4471c2007-05-28 05:38:24 +0000194
195 // Broken substmt shouldn't prevent the label from being added to the AST.
196 if (SubStmt.isInvalid)
197 SubStmt = Actions.ParseNullStmt(ColonLoc);
Chris Lattner30f910e2006-10-16 05:52:41 +0000198
Chris Lattner0ba3dc42006-10-25 03:38:23 +0000199 return Actions.ParseLabelStmt(IdentTok.getLocation(),
200 IdentTok.getIdentifierInfo(),
201 ColonLoc, SubStmt.Val);
Chris Lattner6dfd9782006-08-10 18:31:37 +0000202 }
203
Chris Lattner30f910e2006-10-16 05:52:41 +0000204 // Check to see if this is a declaration.
Chris Lattner49252eb2007-01-27 19:04:39 +0000205 void *TypeRep;
Chris Lattner3b4fdda32006-08-14 00:45:39 +0000206 if (!OnlyStatement &&
Chris Lattner49252eb2007-01-27 19:04:39 +0000207 (TypeRep = Actions.isTypeName(*IdentTok.getIdentifierInfo(), CurScope))) {
Chris Lattner6dfd9782006-08-10 18:31:37 +0000208 // Handle this. Warn/disable if in middle of block and !C99.
Chris Lattner2f9980e2006-08-10 18:39:24 +0000209 DeclSpec DS;
210
Chris Lattner49252eb2007-01-27 19:04:39 +0000211 // Add the typedef name to the start of the decl-specs.
212 const char *PrevSpec = 0;
213 int isInvalid = DS.SetTypeSpecType(DeclSpec::TST_typedef,
214 IdentTok.getLocation(), PrevSpec,
215 TypeRep);
216 assert(!isInvalid && "First declspec can't be invalid!");
Chris Lattner0663d2a2006-11-05 18:39:59 +0000217
Chris Lattner2f9980e2006-08-10 18:39:24 +0000218 // ParseDeclarationSpecifiers will continue from there.
219 ParseDeclarationSpecifiers(DS);
220
Chris Lattner0e894622006-08-13 19:58:17 +0000221 // C99 6.7.2.3p6: Handle "struct-or-union identifier;", "enum { X };"
222 // declaration-specifiers init-declarator-list[opt] ';'
223 if (Tok.getKind() == tok::semi) {
224 // TODO: emit error on 'int;' or 'const enum foo;'.
225 // if (!DS.isMissingDeclaratorOk()) Diag(...);
226
227 ConsumeToken();
Chris Lattner30f910e2006-10-16 05:52:41 +0000228 // FIXME: Return this as a type decl.
229 return 0;
Chris Lattner0e894622006-08-13 19:58:17 +0000230 }
231
Chris Lattner2f9980e2006-08-10 18:39:24 +0000232 // Parse all the declarators.
233 Declarator DeclaratorInfo(DS, Declarator::BlockContext);
234 ParseDeclarator(DeclaratorInfo);
235
Chris Lattner436806a2007-07-10 05:03:31 +0000236 DeclTy *Decl = ParseInitDeclaratorListAfterFirstDeclarator(DeclaratorInfo);
237 return Decl ? Actions.ParseDeclStmt(Decl) : 0;
Chris Lattner6dfd9782006-08-10 18:31:37 +0000238 }
239
Chris Lattner0c6c0342006-08-12 18:12:45 +0000240 // Otherwise, this is an expression. Seed it with II and parse it.
241 ExprResult Res = ParseExpressionWithLeadingIdentifier(IdentTok);
Chris Lattner30f910e2006-10-16 05:52:41 +0000242 if (Res.isInvalid) {
Chris Lattner0c6c0342006-08-12 18:12:45 +0000243 SkipUntil(tok::semi);
Chris Lattner30f910e2006-10-16 05:52:41 +0000244 return true;
245 } else if (Tok.getKind() != tok::semi) {
Chris Lattner0c6c0342006-08-12 18:12:45 +0000246 Diag(Tok, diag::err_expected_semi_after, "expression");
247 SkipUntil(tok::semi);
Chris Lattner30f910e2006-10-16 05:52:41 +0000248 return true;
249 } else {
250 ConsumeToken();
Chris Lattnercd68f642007-06-27 01:06:29 +0000251 // Convert expr to a stmt.
252 return Actions.ParseExprStmt(Res.Val);
Chris Lattner0c6c0342006-08-12 18:12:45 +0000253 }
Chris Lattnerf8afb622006-08-10 18:26:31 +0000254}
255
Chris Lattnerd2685cf2006-08-10 05:59:48 +0000256/// ParseCaseStatement
257/// labeled-statement:
258/// 'case' constant-expression ':' statement
Chris Lattner476c3ad2006-08-13 22:09:58 +0000259/// [GNU] 'case' constant-expression '...' constant-expression ':' statement
Chris Lattner8693a512006-08-13 21:54:02 +0000260///
Chris Lattnerd2685cf2006-08-10 05:59:48 +0000261/// Note that this does not parse the 'statement' at the end.
262///
Chris Lattner30f910e2006-10-16 05:52:41 +0000263Parser::StmtResult Parser::ParseCaseStatement() {
Chris Lattnerd2685cf2006-08-10 05:59:48 +0000264 assert(Tok.getKind() == tok::kw_case && "Not a case stmt!");
Chris Lattneraf635312006-10-16 06:06:51 +0000265 SourceLocation CaseLoc = ConsumeToken(); // eat the 'case'.
Chris Lattnerd2685cf2006-08-10 05:59:48 +0000266
Chris Lattner30f910e2006-10-16 05:52:41 +0000267 ExprResult LHS = ParseConstantExpression();
268 if (LHS.isInvalid) {
Chris Lattner476c3ad2006-08-13 22:09:58 +0000269 SkipUntil(tok::colon);
Chris Lattner30f910e2006-10-16 05:52:41 +0000270 return true;
Chris Lattner476c3ad2006-08-13 22:09:58 +0000271 }
272
273 // GNU case range extension.
Chris Lattner30f910e2006-10-16 05:52:41 +0000274 SourceLocation DotDotDotLoc;
275 ExprTy *RHSVal = 0;
Chris Lattner476c3ad2006-08-13 22:09:58 +0000276 if (Tok.getKind() == tok::ellipsis) {
277 Diag(Tok, diag::ext_gnu_case_range);
Chris Lattneraf635312006-10-16 06:06:51 +0000278 DotDotDotLoc = ConsumeToken();
Chris Lattner476c3ad2006-08-13 22:09:58 +0000279
280 ExprResult RHS = ParseConstantExpression();
281 if (RHS.isInvalid) {
282 SkipUntil(tok::colon);
Chris Lattner30f910e2006-10-16 05:52:41 +0000283 return true;
Chris Lattner476c3ad2006-08-13 22:09:58 +0000284 }
Chris Lattner30f910e2006-10-16 05:52:41 +0000285 RHSVal = RHS.Val;
Chris Lattner476c3ad2006-08-13 22:09:58 +0000286 }
Chris Lattnerd2685cf2006-08-10 05:59:48 +0000287
Chris Lattner30f910e2006-10-16 05:52:41 +0000288 if (Tok.getKind() != tok::colon) {
Chris Lattnerd2685cf2006-08-10 05:59:48 +0000289 Diag(Tok, diag::err_expected_colon_after, "'case'");
290 SkipUntil(tok::colon);
Chris Lattner30f910e2006-10-16 05:52:41 +0000291 return true;
Chris Lattnerd2685cf2006-08-10 05:59:48 +0000292 }
Chris Lattner30f910e2006-10-16 05:52:41 +0000293
Chris Lattneraf635312006-10-16 06:06:51 +0000294 SourceLocation ColonLoc = ConsumeToken();
Chris Lattner30f910e2006-10-16 05:52:41 +0000295
296 // Diagnose the common error "switch (X) { case 4: }", which is not valid.
297 if (Tok.getKind() == tok::r_brace) {
298 Diag(Tok, diag::err_label_end_of_compound_statement);
299 return true;
300 }
301
302 StmtResult SubStmt = ParseStatement();
Chris Lattnerac4471c2007-05-28 05:38:24 +0000303
304 // Broken substmt shouldn't prevent the case from being added to the AST.
Chris Lattner30f910e2006-10-16 05:52:41 +0000305 if (SubStmt.isInvalid)
Chris Lattnerac4471c2007-05-28 05:38:24 +0000306 SubStmt = Actions.ParseNullStmt(ColonLoc);
Chris Lattner30f910e2006-10-16 05:52:41 +0000307
308 // TODO: look up enclosing switch stmt.
309 return Actions.ParseCaseStmt(CaseLoc, LHS.Val, DotDotDotLoc, RHSVal, ColonLoc,
310 SubStmt.Val);
Chris Lattnerd2685cf2006-08-10 05:59:48 +0000311}
312
313/// ParseDefaultStatement
314/// labeled-statement:
315/// 'default' ':' statement
316/// Note that this does not parse the 'statement' at the end.
317///
Chris Lattner30f910e2006-10-16 05:52:41 +0000318Parser::StmtResult Parser::ParseDefaultStatement() {
Chris Lattnerd2685cf2006-08-10 05:59:48 +0000319 assert(Tok.getKind() == tok::kw_default && "Not a default stmt!");
Chris Lattneraf635312006-10-16 06:06:51 +0000320 SourceLocation DefaultLoc = ConsumeToken(); // eat the 'default'.
Chris Lattnerd2685cf2006-08-10 05:59:48 +0000321
Chris Lattner30f910e2006-10-16 05:52:41 +0000322 if (Tok.getKind() != tok::colon) {
Chris Lattnerd2685cf2006-08-10 05:59:48 +0000323 Diag(Tok, diag::err_expected_colon_after, "'default'");
324 SkipUntil(tok::colon);
Chris Lattner30f910e2006-10-16 05:52:41 +0000325 return true;
Chris Lattnerd2685cf2006-08-10 05:59:48 +0000326 }
Chris Lattner30f910e2006-10-16 05:52:41 +0000327
Chris Lattneraf635312006-10-16 06:06:51 +0000328 SourceLocation ColonLoc = ConsumeToken();
Chris Lattner30f910e2006-10-16 05:52:41 +0000329
330 // Diagnose the common error "switch (X) {... default: }", which is not valid.
331 if (Tok.getKind() == tok::r_brace) {
332 Diag(Tok, diag::err_label_end_of_compound_statement);
333 return true;
334 }
335
336 StmtResult SubStmt = ParseStatement();
337 if (SubStmt.isInvalid)
338 return true;
339
340 // TODO: look up enclosing switch stmt.
Chris Lattner46eeb222007-07-18 02:28:47 +0000341 return Actions.ParseDefaultStmt(DefaultLoc, ColonLoc, SubStmt.Val, CurScope);
Chris Lattnerd2685cf2006-08-10 05:59:48 +0000342}
343
344
Chris Lattner0ccd51e2006-08-09 05:47:47 +0000345/// ParseCompoundStatement - Parse a "{}" block.
346///
347/// compound-statement: [C99 6.8.2]
348/// { block-item-list[opt] }
349/// [GNU] { label-declarations block-item-list } [TODO]
350///
351/// block-item-list:
352/// block-item
353/// block-item-list block-item
354///
355/// block-item:
356/// declaration
357/// [GNU] '__extension__' declaration [TODO]
358/// statement
359/// [OMP] openmp-directive [TODO]
360///
361/// [GNU] label-declarations:
362/// [GNU] label-declaration
363/// [GNU] label-declarations label-declaration
364///
365/// [GNU] label-declaration:
366/// [GNU] '__label__' identifier-list ';'
367///
368/// [OMP] openmp-directive: [TODO]
369/// [OMP] barrier-directive
370/// [OMP] flush-directive
Chris Lattner30f910e2006-10-16 05:52:41 +0000371///
372Parser::StmtResult Parser::ParseCompoundStatement() {
Chris Lattner0ccd51e2006-08-09 05:47:47 +0000373 assert(Tok.getKind() == tok::l_brace && "Not a compount stmt!");
Chris Lattner0ccd51e2006-08-09 05:47:47 +0000374
Chris Lattner0ba3dc42006-10-25 03:38:23 +0000375 // Enter a scope to hold everything within the compound stmt.
Chris Lattner33ad2ca2006-11-05 23:47:55 +0000376 EnterScope(0);
Chris Lattnerf2978802007-01-21 06:52:16 +0000377
378 // Parse the statements in the body.
379 StmtResult Body = ParseCompoundStatementBody();
380
381 ExitScope();
382 return Body;
383}
384
385
386/// ParseCompoundStatementBody - Parse a sequence of statements and invoke the
387/// ParseCompoundStmt action. This expects the '{' to be the current token, and
388/// consume the '}' at the end of the block. It does not manipulate the scope
389/// stack.
390Parser::StmtResult Parser::ParseCompoundStatementBody() {
391 SourceLocation LBraceLoc = ConsumeBrace(); // eat the '{'.
392
Chris Lattner010015a2007-05-28 07:23:54 +0000393 // TODO: "__label__ X, Y, Z;" is the GNU "Local Label" extension. These are
394 // only allowed at the start of a compound stmt.
395
Chris Lattner23b7eb62007-06-15 23:05:46 +0000396 llvm::SmallVector<StmtTy*, 32> Stmts;
Chris Lattner30f910e2006-10-16 05:52:41 +0000397 while (Tok.getKind() != tok::r_brace && Tok.getKind() != tok::eof) {
398 StmtResult R = ParseStatementOrDeclaration(false);
399 if (!R.isInvalid && R.Val)
400 Stmts.push_back(R.Val);
401 }
Chris Lattner0ccd51e2006-08-09 05:47:47 +0000402
403 // We broke out of the while loop because we found a '}' or EOF.
Chris Lattner30f910e2006-10-16 05:52:41 +0000404 if (Tok.getKind() != tok::r_brace) {
Chris Lattner0ccd51e2006-08-09 05:47:47 +0000405 Diag(Tok, diag::err_expected_rbrace);
Chris Lattner30f910e2006-10-16 05:52:41 +0000406 return 0;
407 }
Chris Lattnerf2978802007-01-21 06:52:16 +0000408
Chris Lattner04132372006-10-16 06:12:55 +0000409 SourceLocation RBraceLoc = ConsumeBrace();
Chris Lattner30f910e2006-10-16 05:52:41 +0000410 return Actions.ParseCompoundStmt(LBraceLoc, RBraceLoc,
411 &Stmts[0], Stmts.size());
Chris Lattner0ccd51e2006-08-09 05:47:47 +0000412}
Chris Lattnerc951dae2006-08-10 04:23:57 +0000413
414/// ParseIfStatement
415/// if-statement: [C99 6.8.4.1]
416/// 'if' '(' expression ')' statement
417/// 'if' '(' expression ')' statement 'else' statement
Chris Lattner30f910e2006-10-16 05:52:41 +0000418///
419Parser::StmtResult Parser::ParseIfStatement() {
Chris Lattnerc951dae2006-08-10 04:23:57 +0000420 assert(Tok.getKind() == tok::kw_if && "Not an if stmt!");
Chris Lattneraf635312006-10-16 06:06:51 +0000421 SourceLocation IfLoc = ConsumeToken(); // eat the 'if'.
Chris Lattnerc951dae2006-08-10 04:23:57 +0000422
423 if (Tok.getKind() != tok::l_paren) {
Chris Lattner9075bd72006-08-10 04:59:57 +0000424 Diag(Tok, diag::err_expected_lparen_after, "if");
Chris Lattnerc951dae2006-08-10 04:23:57 +0000425 SkipUntil(tok::semi);
Chris Lattner30f910e2006-10-16 05:52:41 +0000426 return true;
Chris Lattnerc951dae2006-08-10 04:23:57 +0000427 }
428
429 // Parse the condition.
Chris Lattner30f910e2006-10-16 05:52:41 +0000430 ExprResult CondExp = ParseSimpleParenExpression();
431 if (CondExp.isInvalid) {
432 SkipUntil(tok::semi);
433 return true;
434 }
Chris Lattnerc951dae2006-08-10 04:23:57 +0000435
Chris Lattner8fb26252007-08-22 05:28:50 +0000436 // C99 6.8.4p3 - In C99, the body of the if statement is a scope, even if
Chris Lattner8f44d202007-08-22 05:33:11 +0000437 // there is no compound stmt. C90 does not have this clause. We only do this
438 // if the body isn't a compound statement to avoid push/pop in common cases.
439 bool NeedsInnerScope = getLang().C99 && Tok.getKind() != tok::l_brace;
440 if (NeedsInnerScope) EnterScope(0);
Chris Lattner37e54f42007-08-22 05:16:28 +0000441
Chris Lattnerc951dae2006-08-10 04:23:57 +0000442 // Read the if condition.
Chris Lattner30f910e2006-10-16 05:52:41 +0000443 StmtResult CondStmt = ParseStatement();
Chris Lattnerac4471c2007-05-28 05:38:24 +0000444
445 // Broken substmt shouldn't prevent the label from being added to the AST.
446 if (CondStmt.isInvalid)
447 CondStmt = Actions.ParseNullStmt(Tok.getLocation());
448
Chris Lattner37e54f42007-08-22 05:16:28 +0000449 // Pop the 'if' scope if needed.
Chris Lattner8f44d202007-08-22 05:33:11 +0000450 if (NeedsInnerScope) ExitScope();
Chris Lattnerc951dae2006-08-10 04:23:57 +0000451
452 // If it has an else, parse it.
Chris Lattner30f910e2006-10-16 05:52:41 +0000453 SourceLocation ElseLoc;
454 StmtResult ElseStmt(false);
Chris Lattnerc951dae2006-08-10 04:23:57 +0000455 if (Tok.getKind() == tok::kw_else) {
Chris Lattneraf635312006-10-16 06:06:51 +0000456 ElseLoc = ConsumeToken();
Chris Lattner37e54f42007-08-22 05:16:28 +0000457
Chris Lattner8fb26252007-08-22 05:28:50 +0000458 // C99 6.8.4p3 - In C99, the body of the if statement is a scope, even if
Chris Lattner8f44d202007-08-22 05:33:11 +0000459 // there is no compound stmt. C90 does not have this clause. We only do
460 // this if the body isn't a compound statement to avoid push/pop in common
461 // cases.
462 NeedsInnerScope = getLang().C99 && Tok.getKind() != tok::l_brace;
463 if (NeedsInnerScope) EnterScope(0);
Chris Lattner37e54f42007-08-22 05:16:28 +0000464
Chris Lattner30f910e2006-10-16 05:52:41 +0000465 ElseStmt = ParseStatement();
Chris Lattner37e54f42007-08-22 05:16:28 +0000466
467 // Pop the 'else' scope if needed.
Chris Lattner8f44d202007-08-22 05:33:11 +0000468 if (NeedsInnerScope) ExitScope();
Chris Lattnerac4471c2007-05-28 05:38:24 +0000469
470 if (ElseStmt.isInvalid)
471 ElseStmt = Actions.ParseNullStmt(ElseLoc);
Chris Lattnerc951dae2006-08-10 04:23:57 +0000472 }
Chris Lattner30f910e2006-10-16 05:52:41 +0000473
Chris Lattner30f910e2006-10-16 05:52:41 +0000474 return Actions.ParseIfStmt(IfLoc, CondExp.Val, CondStmt.Val,
475 ElseLoc, ElseStmt.Val);
Chris Lattnerc951dae2006-08-10 04:23:57 +0000476}
477
Chris Lattner9075bd72006-08-10 04:59:57 +0000478/// ParseSwitchStatement
479/// switch-statement:
480/// 'switch' '(' expression ')' statement
Chris Lattner30f910e2006-10-16 05:52:41 +0000481Parser::StmtResult Parser::ParseSwitchStatement() {
Chris Lattner9075bd72006-08-10 04:59:57 +0000482 assert(Tok.getKind() == tok::kw_switch && "Not a switch stmt!");
Chris Lattneraf635312006-10-16 06:06:51 +0000483 SourceLocation SwitchLoc = ConsumeToken(); // eat the 'switch'.
Chris Lattner9075bd72006-08-10 04:59:57 +0000484
485 if (Tok.getKind() != tok::l_paren) {
486 Diag(Tok, diag::err_expected_lparen_after, "switch");
487 SkipUntil(tok::semi);
Chris Lattner30f910e2006-10-16 05:52:41 +0000488 return true;
Chris Lattner9075bd72006-08-10 04:59:57 +0000489 }
490
Chris Lattner33ad2ca2006-11-05 23:47:55 +0000491 // Start the switch scope.
492 EnterScope(Scope::BreakScope);
493
Chris Lattner9075bd72006-08-10 04:59:57 +0000494 // Parse the condition.
Chris Lattner30f910e2006-10-16 05:52:41 +0000495 ExprResult Cond = ParseSimpleParenExpression();
Chris Lattner9075bd72006-08-10 04:59:57 +0000496
Anders Carlsson51873c22007-07-22 07:07:56 +0000497 if (Cond.isInvalid) {
498 ExitScope();
499 return true;
500 }
501
502 StmtResult Switch = Actions.StartSwitchStmt(Cond.Val);
503
Chris Lattner8fb26252007-08-22 05:28:50 +0000504 // C99 6.8.4p3 - In C99, the body of the switch statement is a scope, even if
Chris Lattner8f44d202007-08-22 05:33:11 +0000505 // there is no compound stmt. C90 does not have this clause. We only do this
506 // if the body isn't a compound statement to avoid push/pop in common cases.
507 bool NeedsInnerScope = getLang().C99 && Tok.getKind() != tok::l_brace;
508 if (NeedsInnerScope) EnterScope(0);
Chris Lattner8fb26252007-08-22 05:28:50 +0000509
Chris Lattner9075bd72006-08-10 04:59:57 +0000510 // Read the body statement.
Chris Lattner30f910e2006-10-16 05:52:41 +0000511 StmtResult Body = ParseStatement();
Chris Lattner33ad2ca2006-11-05 23:47:55 +0000512
Chris Lattner8fb26252007-08-22 05:28:50 +0000513 // Pop the body scope if needed.
Chris Lattner8f44d202007-08-22 05:33:11 +0000514 if (NeedsInnerScope) ExitScope();
Chris Lattner8fb26252007-08-22 05:28:50 +0000515
Anders Carlsson51873c22007-07-22 07:07:56 +0000516 if (Body.isInvalid) {
517 Body = Actions.ParseNullStmt(Tok.getLocation());
518 // FIXME: Remove the case statement list from the Switch statement.
519 }
520
Chris Lattner33ad2ca2006-11-05 23:47:55 +0000521 ExitScope();
Chris Lattner30f910e2006-10-16 05:52:41 +0000522
Anders Carlsson51873c22007-07-22 07:07:56 +0000523 return Actions.FinishSwitchStmt(SwitchLoc, Switch.Val, Body.Val);
Chris Lattner9075bd72006-08-10 04:59:57 +0000524}
525
526/// ParseWhileStatement
527/// while-statement: [C99 6.8.5.1]
528/// 'while' '(' expression ')' statement
Chris Lattner30f910e2006-10-16 05:52:41 +0000529Parser::StmtResult Parser::ParseWhileStatement() {
Chris Lattner9075bd72006-08-10 04:59:57 +0000530 assert(Tok.getKind() == tok::kw_while && "Not a while stmt!");
Chris Lattner30f910e2006-10-16 05:52:41 +0000531 SourceLocation WhileLoc = Tok.getLocation();
Chris Lattner9075bd72006-08-10 04:59:57 +0000532 ConsumeToken(); // eat the 'while'.
533
534 if (Tok.getKind() != tok::l_paren) {
535 Diag(Tok, diag::err_expected_lparen_after, "while");
536 SkipUntil(tok::semi);
Chris Lattner30f910e2006-10-16 05:52:41 +0000537 return true;
Chris Lattner9075bd72006-08-10 04:59:57 +0000538 }
539
Chris Lattner33ad2ca2006-11-05 23:47:55 +0000540 // Start the loop scope.
541 EnterScope(Scope::BreakScope | Scope::ContinueScope);
542
Chris Lattner9075bd72006-08-10 04:59:57 +0000543 // Parse the condition.
Chris Lattner30f910e2006-10-16 05:52:41 +0000544 ExprResult Cond = ParseSimpleParenExpression();
Chris Lattner9075bd72006-08-10 04:59:57 +0000545
Chris Lattner8fb26252007-08-22 05:28:50 +0000546 // C99 6.8.5p5 - In C99, the body of the if statement is a scope, even if
Chris Lattner8f44d202007-08-22 05:33:11 +0000547 // there is no compound stmt. C90 does not have this clause. We only do this
548 // if the body isn't a compound statement to avoid push/pop in common cases.
549 bool NeedsInnerScope = getLang().C99 && Tok.getKind() != tok::l_brace;
550 if (NeedsInnerScope) EnterScope(0);
Chris Lattner8fb26252007-08-22 05:28:50 +0000551
Chris Lattner9075bd72006-08-10 04:59:57 +0000552 // Read the body statement.
Chris Lattner30f910e2006-10-16 05:52:41 +0000553 StmtResult Body = ParseStatement();
Chris Lattner33ad2ca2006-11-05 23:47:55 +0000554
Chris Lattner8fb26252007-08-22 05:28:50 +0000555 // Pop the body scope if needed.
Chris Lattner8f44d202007-08-22 05:33:11 +0000556 if (NeedsInnerScope) ExitScope();
Chris Lattner8fb26252007-08-22 05:28:50 +0000557
Chris Lattner33ad2ca2006-11-05 23:47:55 +0000558 ExitScope();
Chris Lattner30f910e2006-10-16 05:52:41 +0000559
560 if (Cond.isInvalid || Body.isInvalid) return true;
561
562 return Actions.ParseWhileStmt(WhileLoc, Cond.Val, Body.Val);
Chris Lattner9075bd72006-08-10 04:59:57 +0000563}
564
565/// ParseDoStatement
566/// do-statement: [C99 6.8.5.2]
567/// 'do' statement 'while' '(' expression ')' ';'
Chris Lattner503fadc2006-08-10 05:45:44 +0000568/// Note: this lets the caller parse the end ';'.
Chris Lattner30f910e2006-10-16 05:52:41 +0000569Parser::StmtResult Parser::ParseDoStatement() {
Chris Lattner9075bd72006-08-10 04:59:57 +0000570 assert(Tok.getKind() == tok::kw_do && "Not a do stmt!");
Chris Lattneraf635312006-10-16 06:06:51 +0000571 SourceLocation DoLoc = ConsumeToken(); // eat the 'do'.
Chris Lattner9075bd72006-08-10 04:59:57 +0000572
Chris Lattner33ad2ca2006-11-05 23:47:55 +0000573 // Start the loop scope.
574 EnterScope(Scope::BreakScope | Scope::ContinueScope);
575
Chris Lattner8fb26252007-08-22 05:28:50 +0000576 // C99 6.8.5p5 - In C99, the body of the if statement is a scope, even if
Chris Lattner8f44d202007-08-22 05:33:11 +0000577 // there is no compound stmt. C90 does not have this clause. We only do this
578 // if the body isn't a compound statement to avoid push/pop in common cases.
579 bool NeedsInnerScope = getLang().C99 && Tok.getKind() != tok::l_brace;
580 if (NeedsInnerScope) EnterScope(0);
Chris Lattner8fb26252007-08-22 05:28:50 +0000581
Chris Lattner9075bd72006-08-10 04:59:57 +0000582 // Read the body statement.
Chris Lattner30f910e2006-10-16 05:52:41 +0000583 StmtResult Body = ParseStatement();
Chris Lattner9075bd72006-08-10 04:59:57 +0000584
Chris Lattner8fb26252007-08-22 05:28:50 +0000585 // Pop the body scope if needed.
Chris Lattner8f44d202007-08-22 05:33:11 +0000586 if (NeedsInnerScope) ExitScope();
Chris Lattner8fb26252007-08-22 05:28:50 +0000587
Chris Lattner9075bd72006-08-10 04:59:57 +0000588 if (Tok.getKind() != tok::kw_while) {
Chris Lattner33ad2ca2006-11-05 23:47:55 +0000589 ExitScope();
Chris Lattner9075bd72006-08-10 04:59:57 +0000590 Diag(Tok, diag::err_expected_while);
Chris Lattnerc2dd85a2006-08-10 22:57:16 +0000591 Diag(DoLoc, diag::err_matching, "do");
Chris Lattner9075bd72006-08-10 04:59:57 +0000592 SkipUntil(tok::semi);
Chris Lattner30f910e2006-10-16 05:52:41 +0000593 return true;
Chris Lattner9075bd72006-08-10 04:59:57 +0000594 }
Chris Lattneraf635312006-10-16 06:06:51 +0000595 SourceLocation WhileLoc = ConsumeToken();
Chris Lattner9075bd72006-08-10 04:59:57 +0000596
597 if (Tok.getKind() != tok::l_paren) {
Chris Lattner33ad2ca2006-11-05 23:47:55 +0000598 ExitScope();
Chris Lattner9075bd72006-08-10 04:59:57 +0000599 Diag(Tok, diag::err_expected_lparen_after, "do/while");
600 SkipUntil(tok::semi);
Chris Lattner30f910e2006-10-16 05:52:41 +0000601 return true;
Chris Lattner9075bd72006-08-10 04:59:57 +0000602 }
603
604 // Parse the condition.
Chris Lattner30f910e2006-10-16 05:52:41 +0000605 ExprResult Cond = ParseSimpleParenExpression();
Chris Lattner33ad2ca2006-11-05 23:47:55 +0000606
607 ExitScope();
608
Chris Lattner30f910e2006-10-16 05:52:41 +0000609 if (Cond.isInvalid || Body.isInvalid) return true;
610
611 return Actions.ParseDoStmt(DoLoc, Body.Val, WhileLoc, Cond.Val);
Chris Lattner9075bd72006-08-10 04:59:57 +0000612}
613
614/// ParseForStatement
615/// for-statement: [C99 6.8.5.3]
616/// 'for' '(' expr[opt] ';' expr[opt] ';' expr[opt] ')' statement
617/// 'for' '(' declaration expr[opt] ';' expr[opt] ')' statement
Chris Lattner30f910e2006-10-16 05:52:41 +0000618Parser::StmtResult Parser::ParseForStatement() {
Chris Lattner9075bd72006-08-10 04:59:57 +0000619 assert(Tok.getKind() == tok::kw_for && "Not a for stmt!");
Chris Lattneraf635312006-10-16 06:06:51 +0000620 SourceLocation ForLoc = ConsumeToken(); // eat the 'for'.
Chris Lattner9075bd72006-08-10 04:59:57 +0000621
622 if (Tok.getKind() != tok::l_paren) {
623 Diag(Tok, diag::err_expected_lparen_after, "for");
624 SkipUntil(tok::semi);
Chris Lattner30f910e2006-10-16 05:52:41 +0000625 return true;
Chris Lattner9075bd72006-08-10 04:59:57 +0000626 }
Chris Lattner33ad2ca2006-11-05 23:47:55 +0000627
628 EnterScope(Scope::BreakScope | Scope::ContinueScope);
Chris Lattner9075bd72006-08-10 04:59:57 +0000629
Chris Lattner04132372006-10-16 06:12:55 +0000630 SourceLocation LParenLoc = ConsumeParen();
Chris Lattner89c50c62006-08-11 06:41:18 +0000631 ExprResult Value;
632
Chris Lattner71e23ce2006-11-04 20:18:38 +0000633 StmtTy *FirstPart = 0;
Chris Lattnercd68f642007-06-27 01:06:29 +0000634 ExprTy *SecondPart = 0;
635 StmtTy *ThirdPart = 0;
Chris Lattner71e23ce2006-11-04 20:18:38 +0000636
Chris Lattner9075bd72006-08-10 04:59:57 +0000637 // Parse the first part of the for specifier.
638 if (Tok.getKind() == tok::semi) { // for (;
Chris Lattner53361ac2006-08-10 05:19:57 +0000639 // no first part, eat the ';'.
640 ConsumeToken();
Chris Lattner9075bd72006-08-10 04:59:57 +0000641 } else if (isDeclarationSpecifier()) { // for (int X = 4;
Chris Lattner53361ac2006-08-10 05:19:57 +0000642 // Parse declaration, which eats the ';'.
Chris Lattnerab1803652006-08-10 05:22:36 +0000643 if (!getLang().C99) // Use of C99-style for loops in C90 mode?
644 Diag(Tok, diag::ext_c99_variable_decl_in_for_loop);
Steve Naroff2a8ad182007-05-29 22:59:26 +0000645 DeclTy *aBlockVarDecl = ParseDeclaration(Declarator::ForContext);
646 StmtResult stmtResult = Actions.ParseDeclStmt(aBlockVarDecl);
647 FirstPart = stmtResult.isInvalid ? 0 : stmtResult.Val;
Chris Lattner9075bd72006-08-10 04:59:57 +0000648 } else {
Chris Lattner89c50c62006-08-11 06:41:18 +0000649 Value = ParseExpression();
Chris Lattner71e23ce2006-11-04 20:18:38 +0000650
Chris Lattnercd68f642007-06-27 01:06:29 +0000651 // Turn the expression into a stmt.
652 if (!Value.isInvalid) {
653 StmtResult R = Actions.ParseExprStmt(Value.Val);
654 if (!R.isInvalid)
655 FirstPart = R.Val;
656 }
Steve Naroff9992bba2007-05-30 16:27:15 +0000657
Chris Lattner53361ac2006-08-10 05:19:57 +0000658 if (Tok.getKind() == tok::semi) {
659 ConsumeToken();
660 } else {
Chris Lattner89c50c62006-08-11 06:41:18 +0000661 if (!Value.isInvalid) Diag(Tok, diag::err_expected_semi_for);
Chris Lattner53361ac2006-08-10 05:19:57 +0000662 SkipUntil(tok::semi);
663 }
Chris Lattner9075bd72006-08-10 04:59:57 +0000664 }
665
666 // Parse the second part of the for specifier.
667 if (Tok.getKind() == tok::semi) { // for (...;;
668 // no second part.
Chris Lattner89c50c62006-08-11 06:41:18 +0000669 Value = ExprResult();
Chris Lattner9075bd72006-08-10 04:59:57 +0000670 } else {
Chris Lattner89c50c62006-08-11 06:41:18 +0000671 Value = ParseExpression();
Chris Lattner71e23ce2006-11-04 20:18:38 +0000672 if (!Value.isInvalid)
673 SecondPart = Value.Val;
Chris Lattner9075bd72006-08-10 04:59:57 +0000674 }
675
676 if (Tok.getKind() == tok::semi) {
677 ConsumeToken();
678 } else {
Chris Lattner89c50c62006-08-11 06:41:18 +0000679 if (!Value.isInvalid) Diag(Tok, diag::err_expected_semi_for);
Chris Lattner9075bd72006-08-10 04:59:57 +0000680 SkipUntil(tok::semi);
681 }
682
683 // Parse the third part of the for specifier.
684 if (Tok.getKind() == tok::r_paren) { // for (...;...;)
685 // no third part.
Chris Lattner89c50c62006-08-11 06:41:18 +0000686 Value = ExprResult();
Chris Lattner9075bd72006-08-10 04:59:57 +0000687 } else {
Chris Lattner89c50c62006-08-11 06:41:18 +0000688 Value = ParseExpression();
Chris Lattnercd68f642007-06-27 01:06:29 +0000689 if (!Value.isInvalid) {
690 // Turn the expression into a stmt.
691 StmtResult R = Actions.ParseExprStmt(Value.Val);
692 if (!R.isInvalid)
693 ThirdPart = R.Val;
694 }
Chris Lattner9075bd72006-08-10 04:59:57 +0000695 }
696
Chris Lattner4564bc12006-08-10 23:14:52 +0000697 // Match the ')'.
Chris Lattner71e23ce2006-11-04 20:18:38 +0000698 SourceLocation RParenLoc = MatchRHSPunctuation(tok::r_paren, LParenLoc);
Chris Lattner9075bd72006-08-10 04:59:57 +0000699
Chris Lattner8fb26252007-08-22 05:28:50 +0000700 // C99 6.8.5p5 - In C99, the body of the if statement is a scope, even if
Chris Lattner8f44d202007-08-22 05:33:11 +0000701 // there is no compound stmt. C90 does not have this clause. We only do this
702 // if the body isn't a compound statement to avoid push/pop in common cases.
703 bool NeedsInnerScope = getLang().C99 && Tok.getKind() != tok::l_brace;
704 if (NeedsInnerScope) EnterScope(0);
Chris Lattner8fb26252007-08-22 05:28:50 +0000705
Chris Lattner9075bd72006-08-10 04:59:57 +0000706 // Read the body statement.
Chris Lattner71e23ce2006-11-04 20:18:38 +0000707 StmtResult Body = ParseStatement();
Chris Lattner33ad2ca2006-11-05 23:47:55 +0000708
Chris Lattner8fb26252007-08-22 05:28:50 +0000709 // Pop the body scope if needed.
Chris Lattner8f44d202007-08-22 05:33:11 +0000710 if (NeedsInnerScope) ExitScope();
Chris Lattner8fb26252007-08-22 05:28:50 +0000711
Chris Lattner33ad2ca2006-11-05 23:47:55 +0000712 // Leave the for-scope.
713 ExitScope();
714
Chris Lattner71e23ce2006-11-04 20:18:38 +0000715 if (Body.isInvalid)
716 return Body;
Chris Lattner30f910e2006-10-16 05:52:41 +0000717
Chris Lattner71e23ce2006-11-04 20:18:38 +0000718 return Actions.ParseForStmt(ForLoc, LParenLoc, FirstPart, SecondPart,
719 ThirdPart, RParenLoc, Body.Val);
Chris Lattner9075bd72006-08-10 04:59:57 +0000720}
Chris Lattnerc951dae2006-08-10 04:23:57 +0000721
Chris Lattner503fadc2006-08-10 05:45:44 +0000722/// ParseGotoStatement
723/// jump-statement:
724/// 'goto' identifier ';'
725/// [GNU] 'goto' '*' expression ';'
726///
727/// Note: this lets the caller parse the end ';'.
728///
Chris Lattner30f910e2006-10-16 05:52:41 +0000729Parser::StmtResult Parser::ParseGotoStatement() {
Chris Lattner503fadc2006-08-10 05:45:44 +0000730 assert(Tok.getKind() == tok::kw_goto && "Not a goto stmt!");
Chris Lattneraf635312006-10-16 06:06:51 +0000731 SourceLocation GotoLoc = ConsumeToken(); // eat the 'goto'.
Chris Lattner503fadc2006-08-10 05:45:44 +0000732
Chris Lattner30f910e2006-10-16 05:52:41 +0000733 StmtResult Res;
Chris Lattner503fadc2006-08-10 05:45:44 +0000734 if (Tok.getKind() == tok::identifier) {
Chris Lattner0ba3dc42006-10-25 03:38:23 +0000735 Res = Actions.ParseGotoStmt(GotoLoc, Tok.getLocation(),
736 Tok.getIdentifierInfo());
Chris Lattner503fadc2006-08-10 05:45:44 +0000737 ConsumeToken();
738 } else if (Tok.getKind() == tok::star && !getLang().NoExtensions) {
739 // GNU indirect goto extension.
740 Diag(Tok, diag::ext_gnu_indirect_goto);
Chris Lattneraf635312006-10-16 06:06:51 +0000741 SourceLocation StarLoc = ConsumeToken();
Chris Lattnera0927ce2006-08-12 16:59:03 +0000742 ExprResult R = ParseExpression();
Chris Lattner30f910e2006-10-16 05:52:41 +0000743 if (R.isInvalid) { // Skip to the semicolon, but don't consume it.
Chris Lattnera0927ce2006-08-12 16:59:03 +0000744 SkipUntil(tok::semi, false, true);
Chris Lattner30f910e2006-10-16 05:52:41 +0000745 return true;
746 }
747 Res = Actions.ParseIndirectGotoStmt(GotoLoc, StarLoc, R.Val);
Chris Lattnere34b2c22007-07-22 04:13:33 +0000748 } else {
749 Diag(Tok, diag::err_expected_ident);
750 return true;
Chris Lattner503fadc2006-08-10 05:45:44 +0000751 }
Chris Lattnere34b2c22007-07-22 04:13:33 +0000752
Chris Lattner30f910e2006-10-16 05:52:41 +0000753 return Res;
Chris Lattner503fadc2006-08-10 05:45:44 +0000754}
755
Chris Lattner33ad2ca2006-11-05 23:47:55 +0000756/// ParseContinueStatement
757/// jump-statement:
758/// 'continue' ';'
759///
760/// Note: this lets the caller parse the end ';'.
761///
762Parser::StmtResult Parser::ParseContinueStatement() {
763 SourceLocation ContinueLoc = ConsumeToken(); // eat the 'continue'.
Chris Lattnereaafe1222006-11-10 05:17:58 +0000764 return Actions.ParseContinueStmt(ContinueLoc, CurScope);
Chris Lattner33ad2ca2006-11-05 23:47:55 +0000765}
766
767/// ParseBreakStatement
768/// jump-statement:
769/// 'break' ';'
770///
771/// Note: this lets the caller parse the end ';'.
772///
773Parser::StmtResult Parser::ParseBreakStatement() {
774 SourceLocation BreakLoc = ConsumeToken(); // eat the 'break'.
Chris Lattnereaafe1222006-11-10 05:17:58 +0000775 return Actions.ParseBreakStmt(BreakLoc, CurScope);
Chris Lattner33ad2ca2006-11-05 23:47:55 +0000776}
777
Chris Lattner503fadc2006-08-10 05:45:44 +0000778/// ParseReturnStatement
779/// jump-statement:
780/// 'return' expression[opt] ';'
Chris Lattner30f910e2006-10-16 05:52:41 +0000781Parser::StmtResult Parser::ParseReturnStatement() {
Chris Lattner503fadc2006-08-10 05:45:44 +0000782 assert(Tok.getKind() == tok::kw_return && "Not a return stmt!");
Chris Lattneraf635312006-10-16 06:06:51 +0000783 SourceLocation ReturnLoc = ConsumeToken(); // eat the 'return'.
Chris Lattner503fadc2006-08-10 05:45:44 +0000784
Chris Lattner30f910e2006-10-16 05:52:41 +0000785 ExprResult R(0);
Chris Lattnera0927ce2006-08-12 16:59:03 +0000786 if (Tok.getKind() != tok::semi) {
Chris Lattner30f910e2006-10-16 05:52:41 +0000787 R = ParseExpression();
788 if (R.isInvalid) { // Skip to the semicolon, but don't consume it.
Chris Lattnera0927ce2006-08-12 16:59:03 +0000789 SkipUntil(tok::semi, false, true);
Chris Lattner30f910e2006-10-16 05:52:41 +0000790 return true;
791 }
Chris Lattnera0927ce2006-08-12 16:59:03 +0000792 }
Chris Lattner30f910e2006-10-16 05:52:41 +0000793 return Actions.ParseReturnStmt(ReturnLoc, R.Val);
Chris Lattner503fadc2006-08-10 05:45:44 +0000794}
Chris Lattner0116c472006-08-15 06:03:28 +0000795
796/// ParseAsmStatement - Parse a GNU extended asm statement.
797/// [GNU] asm-statement:
798/// 'asm' type-qualifier[opt] '(' asm-argument ')' ';'
799///
800/// [GNU] asm-argument:
801/// asm-string-literal
802/// asm-string-literal ':' asm-operands[opt]
803/// asm-string-literal ':' asm-operands[opt] ':' asm-operands[opt]
804/// asm-string-literal ':' asm-operands[opt] ':' asm-operands[opt]
805/// ':' asm-clobbers
806///
807/// [GNU] asm-clobbers:
808/// asm-string-literal
809/// asm-clobbers ',' asm-string-literal
810///
Chris Lattner30f910e2006-10-16 05:52:41 +0000811Parser::StmtResult Parser::ParseAsmStatement() {
Chris Lattner0116c472006-08-15 06:03:28 +0000812 assert(Tok.getKind() == tok::kw_asm && "Not an asm stmt");
813 ConsumeToken();
814
815 DeclSpec DS;
816 SourceLocation Loc = Tok.getLocation();
817 ParseTypeQualifierListOpt(DS);
818
819 // GNU asms accept, but warn, about type-qualifiers other than volatile.
Chris Lattnera925dc62006-11-28 04:33:46 +0000820 if (DS.getTypeQualifiers() & DeclSpec::TQ_const)
Chris Lattner0116c472006-08-15 06:03:28 +0000821 Diag(Loc, diag::w_asm_qualifier_ignored, "const");
Chris Lattnera925dc62006-11-28 04:33:46 +0000822 if (DS.getTypeQualifiers() & DeclSpec::TQ_restrict)
Chris Lattner0116c472006-08-15 06:03:28 +0000823 Diag(Loc, diag::w_asm_qualifier_ignored, "restrict");
824
825 // Remember if this was a volatile asm.
Chris Lattner1f496802006-10-18 04:02:28 +0000826 //bool isVolatile = DS.TypeQualifiers & DeclSpec::TQ_volatile;
Chris Lattner0116c472006-08-15 06:03:28 +0000827
828 if (Tok.getKind() != tok::l_paren) {
829 Diag(Tok, diag::err_expected_lparen_after, "asm");
830 SkipUntil(tok::r_paren);
Chris Lattner30f910e2006-10-16 05:52:41 +0000831 return true;
Chris Lattner0116c472006-08-15 06:03:28 +0000832 }
Chris Lattner04132372006-10-16 06:12:55 +0000833 Loc = ConsumeParen();
Chris Lattner0116c472006-08-15 06:03:28 +0000834
835 ParseAsmStringLiteral();
836
837 // Parse Outputs, if present.
838 ParseAsmOperandsOpt();
839
840 // Parse Inputs, if present.
841 ParseAsmOperandsOpt();
842
843 // Parse the clobbers, if present.
844 if (Tok.getKind() == tok::colon) {
845 ConsumeToken();
846
Chris Lattnerd3e98952006-10-06 05:22:26 +0000847 if (isTokenStringLiteral()) {
Chris Lattner0116c472006-08-15 06:03:28 +0000848 // Parse the asm-string list for clobbers.
849 while (1) {
850 ParseAsmStringLiteral();
851
852 if (Tok.getKind() != tok::comma) break;
853 ConsumeToken();
854 }
855 }
856 }
857
858 MatchRHSPunctuation(tok::r_paren, Loc);
Chris Lattner30f910e2006-10-16 05:52:41 +0000859
860 // FIXME: Implement action for asm parsing.
861 return false;
Chris Lattner0116c472006-08-15 06:03:28 +0000862}
863
864/// ParseAsmOperands - Parse the asm-operands production as used by
865/// asm-statement. We also parse a leading ':' token. If the leading colon is
866/// not present, we do not parse anything.
867///
868/// [GNU] asm-operands:
869/// asm-operand
870/// asm-operands ',' asm-operand
871///
872/// [GNU] asm-operand:
873/// asm-string-literal '(' expression ')'
874/// '[' identifier ']' asm-string-literal '(' expression ')'
875///
876void Parser::ParseAsmOperandsOpt() {
877 // Only do anything if this operand is present.
878 if (Tok.getKind() != tok::colon) return;
879 ConsumeToken();
880
881 // 'asm-operands' isn't present?
Chris Lattnerd3e98952006-10-06 05:22:26 +0000882 if (!isTokenStringLiteral() && Tok.getKind() != tok::l_square)
Chris Lattner0116c472006-08-15 06:03:28 +0000883 return;
884
885 while (1) {
886 // Read the [id] if present.
887 if (Tok.getKind() == tok::l_square) {
Chris Lattner04132372006-10-16 06:12:55 +0000888 SourceLocation Loc = ConsumeBracket();
Chris Lattner0116c472006-08-15 06:03:28 +0000889
890 if (Tok.getKind() != tok::identifier) {
891 Diag(Tok, diag::err_expected_ident);
892 SkipUntil(tok::r_paren);
893 return;
894 }
895 MatchRHSPunctuation(tok::r_square, Loc);
896 }
897
898 ParseAsmStringLiteral();
899
900 if (Tok.getKind() != tok::l_paren) {
901 Diag(Tok, diag::err_expected_lparen_after, "asm operand");
902 SkipUntil(tok::r_paren);
903 return;
904 }
905
906 // Read the parenthesized expression.
Chris Lattnere550a4e2006-08-24 06:37:51 +0000907 ExprResult Res = ParseSimpleParenExpression();
Chris Lattner0116c472006-08-15 06:03:28 +0000908 if (Res.isInvalid) {
909 SkipUntil(tok::r_paren);
910 return;
911 }
912
913 // Eat the comma and continue parsing if it exists.
914 if (Tok.getKind() != tok::comma) return;
915 ConsumeToken();
916 }
917}