blob: d22fbb7044648d281f00c62ca043dd4b82c7cd05 [file] [log] [blame]
Reid Spencer5f016e22007-07-11 17:01:13 +00001//===--- ParseStmt.cpp - Statement and Block Parser -----------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner0bc735f2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Reid Spencer5f016e22007-07-11 17:01:13 +00007//
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"
Chris Lattner39146d62008-10-20 06:51:33 +000016#include "ExtensionRAIIObject.h"
Sebastian Redla55e52c2008-11-25 22:21:31 +000017#include "AstGuard.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000018#include "clang/Basic/Diagnostic.h"
Steve Naroffb746ce82008-02-07 23:24:32 +000019#include "clang/Basic/SourceManager.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000020#include "clang/Parse/DeclSpec.h"
21#include "clang/Parse/Scope.h"
22using namespace clang;
23
24//===----------------------------------------------------------------------===//
25// C99 6.8: Statements and Blocks.
26//===----------------------------------------------------------------------===//
27
28/// ParseStatementOrDeclaration - Read 'statement' or 'declaration'.
29/// StatementOrDeclaration:
30/// statement
31/// declaration
32///
33/// statement:
34/// labeled-statement
35/// compound-statement
36/// expression-statement
37/// selection-statement
38/// iteration-statement
39/// jump-statement
Argyrios Kyrtzidisdcdd55f2008-09-07 18:58:01 +000040/// [C++] declaration-statement
Fariborz Jahanianb384d322007-10-04 20:19:06 +000041/// [OBC] objc-throw-statement
42/// [OBC] objc-try-catch-statement
Fariborz Jahanianc385c902008-01-29 18:21:32 +000043/// [OBC] objc-synchronized-statement
Reid Spencer5f016e22007-07-11 17:01:13 +000044/// [GNU] asm-statement
45/// [OMP] openmp-construct [TODO]
46///
47/// labeled-statement:
48/// identifier ':' statement
49/// 'case' constant-expression ':' statement
50/// 'default' ':' statement
51///
52/// selection-statement:
53/// if-statement
54/// switch-statement
55///
56/// iteration-statement:
57/// while-statement
58/// do-statement
59/// for-statement
60///
61/// expression-statement:
62/// expression[opt] ';'
63///
64/// jump-statement:
65/// 'goto' identifier ';'
66/// 'continue' ';'
67/// 'break' ';'
68/// 'return' expression[opt] ';'
69/// [GNU] 'goto' '*' expression ';'
70///
Fariborz Jahanianb384d322007-10-04 20:19:06 +000071/// [OBC] objc-throw-statement:
72/// [OBC] '@' 'throw' expression ';'
73/// [OBC] '@' 'throw' ';'
Reid Spencer5f016e22007-07-11 17:01:13 +000074///
Sebastian Redl61364dd2008-12-11 19:30:53 +000075Parser::OwningStmtResult
76Parser::ParseStatementOrDeclaration(bool OnlyStatement) {
Reid Spencer5f016e22007-07-11 17:01:13 +000077 const char *SemiError = 0;
Sebastian Redl15faa7f2008-12-09 20:22:58 +000078 OwningStmtResult Res(Actions);
Sebastian Redl0e9eabc2008-12-09 13:15:23 +000079
Reid Spencer5f016e22007-07-11 17:01:13 +000080 // Cases in this switch statement should fall through if the parser expects
81 // the token to end in a semicolon (in which case SemiError should be set),
82 // or they directly 'return;' if not.
Fariborz Jahanian397fcc12007-09-19 19:14:32 +000083 tok::TokenKind Kind = Tok.getKind();
84 SourceLocation AtLoc;
85 switch (Kind) {
Fariborz Jahanian397fcc12007-09-19 19:14:32 +000086 case tok::at: // May be a @try or @throw statement
87 {
88 AtLoc = ConsumeToken(); // consume @
Sebastian Redl43bc2a02008-12-11 20:12:42 +000089 return ParseObjCAtStatement(AtLoc);
Fariborz Jahanian397fcc12007-09-19 19:14:32 +000090 }
Fariborz Jahanian397fcc12007-09-19 19:14:32 +000091
Argyrios Kyrtzidisb9f930d2008-07-12 21:04:42 +000092 case tok::identifier:
93 if (NextToken().is(tok::colon)) { // C99 6.8.1: labeled-statement
94 // identifier ':' statement
95 return ParseLabeledStatement();
96 }
97 // PASS THROUGH.
98
Reid Spencer5f016e22007-07-11 17:01:13 +000099 default:
Argyrios Kyrtzidis5404a152008-10-05 00:06:24 +0000100 if ((getLang().CPlusPlus || !OnlyStatement) && isDeclarationStatement()) {
Chris Lattner81c018d2008-03-13 06:29:04 +0000101 SourceLocation DeclStart = Tok.getLocation();
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000102 DeclTy *Decl = ParseDeclaration(Declarator::BlockContext);
Chris Lattner81c018d2008-03-13 06:29:04 +0000103 // FIXME: Pass in the right location for the end of the declstmt.
Sebastian Redl61364dd2008-12-11 19:30:53 +0000104 return Owned(Actions.ActOnDeclStmt(Decl, DeclStart, DeclStart));
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000105 } else if (Tok.is(tok::r_brace)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000106 Diag(Tok, diag::err_expected_statement);
Sebastian Redl61364dd2008-12-11 19:30:53 +0000107 return StmtError();
Reid Spencer5f016e22007-07-11 17:01:13 +0000108 } else {
109 // expression[opt] ';'
Sebastian Redl2f7ece72008-12-11 21:36:32 +0000110 OwningExprResult Expr(ParseExpression());
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000111 if (Expr.isInvalid()) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000112 // If the expression is invalid, skip ahead to the next semicolon. Not
113 // doing this opens us up to the possibility of infinite loops if
114 // ParseExpression does not consume any tokens.
115 SkipUntil(tok::semi);
Sebastian Redl61364dd2008-12-11 19:30:53 +0000116 return StmtError();
Reid Spencer5f016e22007-07-11 17:01:13 +0000117 }
118 // Otherwise, eat the semicolon.
119 ExpectAndConsume(tok::semi, diag::err_expected_semi_after_expr);
Sebastian Redl61364dd2008-12-11 19:30:53 +0000120 return Owned(Actions.ActOnExprStmt(Expr.release()));
Reid Spencer5f016e22007-07-11 17:01:13 +0000121 }
Sebastian Redl61364dd2008-12-11 19:30:53 +0000122
Reid Spencer5f016e22007-07-11 17:01:13 +0000123 case tok::kw_case: // C99 6.8.1: labeled-statement
124 return ParseCaseStatement();
125 case tok::kw_default: // C99 6.8.1: labeled-statement
126 return ParseDefaultStatement();
Sebastian Redl61364dd2008-12-11 19:30:53 +0000127
Reid Spencer5f016e22007-07-11 17:01:13 +0000128 case tok::l_brace: // C99 6.8.2: compound-statement
129 return ParseCompoundStatement();
130 case tok::semi: // C99 6.8.3p3: expression[opt] ';'
Sebastian Redl61364dd2008-12-11 19:30:53 +0000131 return Owned(Actions.ActOnNullStmt(ConsumeToken()));
132
Reid Spencer5f016e22007-07-11 17:01:13 +0000133 case tok::kw_if: // C99 6.8.4.1: if-statement
134 return ParseIfStatement();
135 case tok::kw_switch: // C99 6.8.4.2: switch-statement
Sebastian Redl9a920342008-12-11 19:48:14 +0000136 return ParseSwitchStatement();
Sebastian Redl61364dd2008-12-11 19:30:53 +0000137
Reid Spencer5f016e22007-07-11 17:01:13 +0000138 case tok::kw_while: // C99 6.8.5.1: while-statement
Sebastian Redl9a920342008-12-11 19:48:14 +0000139 return ParseWhileStatement();
Reid Spencer5f016e22007-07-11 17:01:13 +0000140 case tok::kw_do: // C99 6.8.5.2: do-statement
141 Res = ParseDoStatement();
142 SemiError = "do/while loop";
143 break;
144 case tok::kw_for: // C99 6.8.5.3: for-statement
Sebastian Redl9a920342008-12-11 19:48:14 +0000145 return ParseForStatement();
Reid Spencer5f016e22007-07-11 17:01:13 +0000146
147 case tok::kw_goto: // C99 6.8.6.1: goto-statement
148 Res = ParseGotoStatement();
149 SemiError = "goto statement";
150 break;
151 case tok::kw_continue: // C99 6.8.6.2: continue-statement
152 Res = ParseContinueStatement();
153 SemiError = "continue statement";
154 break;
155 case tok::kw_break: // C99 6.8.6.3: break-statement
156 Res = ParseBreakStatement();
157 SemiError = "break statement";
158 break;
159 case tok::kw_return: // C99 6.8.6.4: return-statement
160 Res = ParseReturnStatement();
161 SemiError = "return statement";
162 break;
Sebastian Redl61364dd2008-12-11 19:30:53 +0000163
Reid Spencer5f016e22007-07-11 17:01:13 +0000164 case tok::kw_asm:
Steve Naroffd62701b2008-02-07 03:50:06 +0000165 bool msAsm = false;
166 Res = ParseAsmStatement(msAsm);
Sebastian Redl61364dd2008-12-11 19:30:53 +0000167 if (msAsm) return move(Res);
Reid Spencer5f016e22007-07-11 17:01:13 +0000168 SemiError = "asm statement";
169 break;
170 }
Sebastian Redl61364dd2008-12-11 19:30:53 +0000171
Reid Spencer5f016e22007-07-11 17:01:13 +0000172 // If we reached this code, the statement must end in a semicolon.
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000173 if (Tok.is(tok::semi)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000174 ConsumeToken();
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000175 } else if (!Res.isInvalid()) {
Chris Lattner1ab3b962008-11-18 07:48:38 +0000176 Diag(Tok, diag::err_expected_semi_after) << SemiError;
Chris Lattner19504402008-11-13 18:52:53 +0000177 // Skip until we see a } or ;, but don't eat it.
178 SkipUntil(tok::r_brace, true, true);
Reid Spencer5f016e22007-07-11 17:01:13 +0000179 }
Sebastian Redl61364dd2008-12-11 19:30:53 +0000180 return move(Res);
Reid Spencer5f016e22007-07-11 17:01:13 +0000181}
182
Argyrios Kyrtzidisf7da7262008-07-09 22:53:07 +0000183/// ParseLabeledStatement - We have an identifier and a ':' after it.
Reid Spencer5f016e22007-07-11 17:01:13 +0000184///
185/// labeled-statement:
186/// identifier ':' statement
187/// [GNU] identifier ':' attributes[opt] statement
Argyrios Kyrtzidisf7da7262008-07-09 22:53:07 +0000188///
Sebastian Redl61364dd2008-12-11 19:30:53 +0000189Parser::OwningStmtResult Parser::ParseLabeledStatement() {
Argyrios Kyrtzidisf7da7262008-07-09 22:53:07 +0000190 assert(Tok.is(tok::identifier) && Tok.getIdentifierInfo() &&
191 "Not an identifier!");
192
193 Token IdentTok = Tok; // Save the whole token.
194 ConsumeToken(); // eat the identifier.
195
196 assert(Tok.is(tok::colon) && "Not a label!");
Sebastian Redl61364dd2008-12-11 19:30:53 +0000197
Argyrios Kyrtzidisf7da7262008-07-09 22:53:07 +0000198 // identifier ':' statement
199 SourceLocation ColonLoc = ConsumeToken();
200
201 // Read label attributes, if present.
202 DeclTy *AttrList = 0;
203 if (Tok.is(tok::kw___attribute))
204 // TODO: save these somewhere.
205 AttrList = ParseAttributes();
206
Sebastian Redl61364dd2008-12-11 19:30:53 +0000207 OwningStmtResult SubStmt(ParseStatement());
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000208
Argyrios Kyrtzidisf7da7262008-07-09 22:53:07 +0000209 // Broken substmt shouldn't prevent the label from being added to the AST.
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000210 if (SubStmt.isInvalid())
Argyrios Kyrtzidisf7da7262008-07-09 22:53:07 +0000211 SubStmt = Actions.ActOnNullStmt(ColonLoc);
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000212
Sebastian Redl61364dd2008-12-11 19:30:53 +0000213 return Owned(Actions.ActOnLabelStmt(IdentTok.getLocation(),
214 IdentTok.getIdentifierInfo(),
215 ColonLoc, SubStmt.release()));
Argyrios Kyrtzidisf7da7262008-07-09 22:53:07 +0000216}
Reid Spencer5f016e22007-07-11 17:01:13 +0000217
218/// ParseCaseStatement
219/// labeled-statement:
220/// 'case' constant-expression ':' statement
221/// [GNU] 'case' constant-expression '...' constant-expression ':' statement
222///
223/// Note that this does not parse the 'statement' at the end.
224///
Sebastian Redl61364dd2008-12-11 19:30:53 +0000225Parser::OwningStmtResult Parser::ParseCaseStatement() {
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000226 assert(Tok.is(tok::kw_case) && "Not a case stmt!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000227 SourceLocation CaseLoc = ConsumeToken(); // eat the 'case'.
228
Sebastian Redl2f7ece72008-12-11 21:36:32 +0000229 OwningExprResult LHS(ParseConstantExpression());
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000230 if (LHS.isInvalid()) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000231 SkipUntil(tok::colon);
Sebastian Redl61364dd2008-12-11 19:30:53 +0000232 return StmtError();
Reid Spencer5f016e22007-07-11 17:01:13 +0000233 }
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000234
Reid Spencer5f016e22007-07-11 17:01:13 +0000235 // GNU case range extension.
236 SourceLocation DotDotDotLoc;
Sebastian Redl15faa7f2008-12-09 20:22:58 +0000237 OwningExprResult RHS(Actions);
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000238 if (Tok.is(tok::ellipsis)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000239 Diag(Tok, diag::ext_gnu_case_range);
240 DotDotDotLoc = ConsumeToken();
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000241
242 RHS = ParseConstantExpression();
243 if (RHS.isInvalid()) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000244 SkipUntil(tok::colon);
Sebastian Redl61364dd2008-12-11 19:30:53 +0000245 return StmtError();
Reid Spencer5f016e22007-07-11 17:01:13 +0000246 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000247 }
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000248
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000249 if (Tok.isNot(tok::colon)) {
Chris Lattner1ab3b962008-11-18 07:48:38 +0000250 Diag(Tok, diag::err_expected_colon_after) << "'case'";
Reid Spencer5f016e22007-07-11 17:01:13 +0000251 SkipUntil(tok::colon);
Sebastian Redl61364dd2008-12-11 19:30:53 +0000252 return StmtError();
Reid Spencer5f016e22007-07-11 17:01:13 +0000253 }
Sebastian Redl61364dd2008-12-11 19:30:53 +0000254
Reid Spencer5f016e22007-07-11 17:01:13 +0000255 SourceLocation ColonLoc = ConsumeToken();
Sebastian Redl61364dd2008-12-11 19:30:53 +0000256
Reid Spencer5f016e22007-07-11 17:01:13 +0000257 // Diagnose the common error "switch (X) { case 4: }", which is not valid.
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000258 if (Tok.is(tok::r_brace)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000259 Diag(Tok, diag::err_label_end_of_compound_statement);
Sebastian Redl61364dd2008-12-11 19:30:53 +0000260 return StmtError();
Reid Spencer5f016e22007-07-11 17:01:13 +0000261 }
Sebastian Redl61364dd2008-12-11 19:30:53 +0000262
263 OwningStmtResult SubStmt(ParseStatement());
Reid Spencer5f016e22007-07-11 17:01:13 +0000264
265 // Broken substmt shouldn't prevent the case from being added to the AST.
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000266 if (SubStmt.isInvalid())
Steve Naroff1b273c42007-09-16 14:56:35 +0000267 SubStmt = Actions.ActOnNullStmt(ColonLoc);
Sebastian Redl61364dd2008-12-11 19:30:53 +0000268
269 return Owned(Actions.ActOnCaseStmt(CaseLoc, LHS.release(), DotDotDotLoc,
270 RHS.release(), ColonLoc,
271 SubStmt.release()));
Reid Spencer5f016e22007-07-11 17:01:13 +0000272}
273
274/// ParseDefaultStatement
275/// labeled-statement:
276/// 'default' ':' statement
277/// Note that this does not parse the 'statement' at the end.
278///
Sebastian Redl61364dd2008-12-11 19:30:53 +0000279Parser::OwningStmtResult Parser::ParseDefaultStatement() {
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000280 assert(Tok.is(tok::kw_default) && "Not a default stmt!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000281 SourceLocation DefaultLoc = ConsumeToken(); // eat the 'default'.
282
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000283 if (Tok.isNot(tok::colon)) {
Chris Lattner1ab3b962008-11-18 07:48:38 +0000284 Diag(Tok, diag::err_expected_colon_after) << "'default'";
Reid Spencer5f016e22007-07-11 17:01:13 +0000285 SkipUntil(tok::colon);
Sebastian Redl61364dd2008-12-11 19:30:53 +0000286 return StmtError();
Reid Spencer5f016e22007-07-11 17:01:13 +0000287 }
Sebastian Redl61364dd2008-12-11 19:30:53 +0000288
Reid Spencer5f016e22007-07-11 17:01:13 +0000289 SourceLocation ColonLoc = ConsumeToken();
Sebastian Redl61364dd2008-12-11 19:30:53 +0000290
Reid Spencer5f016e22007-07-11 17:01:13 +0000291 // Diagnose the common error "switch (X) {... default: }", which is not valid.
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000292 if (Tok.is(tok::r_brace)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000293 Diag(Tok, diag::err_label_end_of_compound_statement);
Sebastian Redl61364dd2008-12-11 19:30:53 +0000294 return StmtError();
Reid Spencer5f016e22007-07-11 17:01:13 +0000295 }
296
Sebastian Redl61364dd2008-12-11 19:30:53 +0000297 OwningStmtResult SubStmt(ParseStatement());
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000298 if (SubStmt.isInvalid())
Sebastian Redl61364dd2008-12-11 19:30:53 +0000299 return StmtError();
300
301 return Owned(Actions.ActOnDefaultStmt(DefaultLoc, ColonLoc,
302 SubStmt.release(), CurScope));
Reid Spencer5f016e22007-07-11 17:01:13 +0000303}
304
305
306/// ParseCompoundStatement - Parse a "{}" block.
307///
308/// compound-statement: [C99 6.8.2]
309/// { block-item-list[opt] }
310/// [GNU] { label-declarations block-item-list } [TODO]
311///
312/// block-item-list:
313/// block-item
314/// block-item-list block-item
315///
316/// block-item:
317/// declaration
Chris Lattner45a566c2007-08-27 01:01:57 +0000318/// [GNU] '__extension__' declaration
Reid Spencer5f016e22007-07-11 17:01:13 +0000319/// statement
320/// [OMP] openmp-directive [TODO]
321///
322/// [GNU] label-declarations:
323/// [GNU] label-declaration
324/// [GNU] label-declarations label-declaration
325///
326/// [GNU] label-declaration:
327/// [GNU] '__label__' identifier-list ';'
328///
329/// [OMP] openmp-directive: [TODO]
330/// [OMP] barrier-directive
331/// [OMP] flush-directive
332///
Sebastian Redl61364dd2008-12-11 19:30:53 +0000333Parser::OwningStmtResult Parser::ParseCompoundStatement(bool isStmtExpr) {
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000334 assert(Tok.is(tok::l_brace) && "Not a compount stmt!");
Sebastian Redl61364dd2008-12-11 19:30:53 +0000335
Chris Lattner31e05722007-08-26 06:24:45 +0000336 // Enter a scope to hold everything within the compound stmt. Compound
337 // statements can always hold declarations.
Douglas Gregor8935b8b2008-12-10 06:34:36 +0000338 ParseScope CompoundScope(this, Scope::DeclScope);
Reid Spencer5f016e22007-07-11 17:01:13 +0000339
340 // Parse the statements in the body.
Sebastian Redl61364dd2008-12-11 19:30:53 +0000341 return ParseCompoundStatementBody(isStmtExpr);
Reid Spencer5f016e22007-07-11 17:01:13 +0000342}
343
344
345/// ParseCompoundStatementBody - Parse a sequence of statements and invoke the
Steve Naroff1b273c42007-09-16 14:56:35 +0000346/// ActOnCompoundStmt action. This expects the '{' to be the current token, and
Reid Spencer5f016e22007-07-11 17:01:13 +0000347/// consume the '}' at the end of the block. It does not manipulate the scope
348/// stack.
Sebastian Redl61364dd2008-12-11 19:30:53 +0000349Parser::OwningStmtResult Parser::ParseCompoundStatementBody(bool isStmtExpr) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000350 SourceLocation LBraceLoc = ConsumeBrace(); // eat the '{'.
351
352 // TODO: "__label__ X, Y, Z;" is the GNU "Local Label" extension. These are
Chris Lattner45a566c2007-08-27 01:01:57 +0000353 // only allowed at the start of a compound stmt regardless of the language.
Sebastian Redla55e52c2008-11-25 22:21:31 +0000354
355 typedef StmtVector StmtsTy;
356 StmtsTy Stmts(Actions);
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000357 while (Tok.isNot(tok::r_brace) && Tok.isNot(tok::eof)) {
Sebastian Redl15faa7f2008-12-09 20:22:58 +0000358 OwningStmtResult R(Actions);
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000359 if (Tok.isNot(tok::kw___extension__)) {
Chris Lattner45a566c2007-08-27 01:01:57 +0000360 R = ParseStatementOrDeclaration(false);
361 } else {
362 // __extension__ can start declarations and it can also be a unary
363 // operator for expressions. Consume multiple __extension__ markers here
364 // until we can determine which is which.
365 SourceLocation ExtLoc = ConsumeToken();
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000366 while (Tok.is(tok::kw___extension__))
Chris Lattner45a566c2007-08-27 01:01:57 +0000367 ConsumeToken();
368
Chris Lattner043a0b52008-03-13 06:32:11 +0000369 // __extension__ silences extension warnings in the subexpression.
Chris Lattner39146d62008-10-20 06:51:33 +0000370 ExtensionRAIIObject O(Diags); // Use RAII to do this.
371
Chris Lattner45a566c2007-08-27 01:01:57 +0000372 // If this is the start of a declaration, parse it as such.
Argyrios Kyrtzidis5404a152008-10-05 00:06:24 +0000373 if (isDeclarationStatement()) {
Chris Lattner45a566c2007-08-27 01:01:57 +0000374 // FIXME: Save the __extension__ on the decl as a node somehow.
Chris Lattner81c018d2008-03-13 06:29:04 +0000375 SourceLocation DeclStart = Tok.getLocation();
376 DeclTy *Res = ParseDeclaration(Declarator::BlockContext);
377 // FIXME: Pass in the right location for the end of the declstmt.
Chris Lattner691a38b2008-03-13 06:29:54 +0000378 R = Actions.ActOnDeclStmt(Res, DeclStart, DeclStart);
Chris Lattner45a566c2007-08-27 01:01:57 +0000379 } else {
380 // Otherwise this was a unary __extension__ marker. Parse the
381 // subexpression and add the __extension__ unary op.
Sebastian Redl2f7ece72008-12-11 21:36:32 +0000382 OwningExprResult Res(ParseCastExpression(false));
Chris Lattner043a0b52008-03-13 06:32:11 +0000383
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000384 if (Res.isInvalid()) {
Chris Lattner45a566c2007-08-27 01:01:57 +0000385 SkipUntil(tok::semi);
386 continue;
387 }
388
389 // Add the __extension__ node to the AST.
Douglas Gregor74253732008-11-19 15:42:04 +0000390 Res = Actions.ActOnUnaryOp(CurScope, ExtLoc, tok::kw___extension__,
Sebastian Redleffa8d12008-12-10 00:02:53 +0000391 Res.release());
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000392 if (Res.isInvalid())
Chris Lattner45a566c2007-08-27 01:01:57 +0000393 continue;
394
Chris Lattner39146d62008-10-20 06:51:33 +0000395 // Eat the semicolon at the end of stmt and convert the expr into a
396 // statement.
Chris Lattner45a566c2007-08-27 01:01:57 +0000397 ExpectAndConsume(tok::semi, diag::err_expected_semi_after_expr);
Sebastian Redleffa8d12008-12-10 00:02:53 +0000398 R = Actions.ActOnExprStmt(Res.release());
Chris Lattner45a566c2007-08-27 01:01:57 +0000399 }
400 }
Sebastian Redl61364dd2008-12-11 19:30:53 +0000401
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000402 if (R.isUsable())
Sebastian Redleffa8d12008-12-10 00:02:53 +0000403 Stmts.push_back(R.release());
Reid Spencer5f016e22007-07-11 17:01:13 +0000404 }
Sebastian Redl61364dd2008-12-11 19:30:53 +0000405
Reid Spencer5f016e22007-07-11 17:01:13 +0000406 // We broke out of the while loop because we found a '}' or EOF.
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000407 if (Tok.isNot(tok::r_brace)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000408 Diag(Tok, diag::err_expected_rbrace);
Sebastian Redl61364dd2008-12-11 19:30:53 +0000409 return StmtError();
Reid Spencer5f016e22007-07-11 17:01:13 +0000410 }
Sebastian Redl61364dd2008-12-11 19:30:53 +0000411
Reid Spencer5f016e22007-07-11 17:01:13 +0000412 SourceLocation RBraceLoc = ConsumeBrace();
Sebastian Redl61364dd2008-12-11 19:30:53 +0000413 return Owned(Actions.ActOnCompoundStmt(LBraceLoc, RBraceLoc, Stmts.take(),
414 Stmts.size(), isStmtExpr));
Reid Spencer5f016e22007-07-11 17:01:13 +0000415}
416
Chris Lattner15ff1112008-12-12 06:31:07 +0000417/// ParseParenExprOrCondition:
418/// [C ] '(' expression ')'
Chris Lattnerff871fb2008-12-12 06:35:28 +0000419/// [C++] '(' condition ')' [not allowed if OnlyAllowCondition=true]
Chris Lattner15ff1112008-12-12 06:31:07 +0000420///
421/// This function parses and performs error recovery on the specified condition
422/// or expression (depending on whether we're in C++ or C mode). This function
423/// goes out of its way to recover well. It returns true if there was a parser
424/// error (the right paren couldn't be found), which indicates that the caller
425/// should try to recover harder. It returns false if the condition is
426/// successfully parsed. Note that a successful parse can still have semantic
427/// errors in the condition.
Chris Lattnerff871fb2008-12-12 06:35:28 +0000428bool Parser::ParseParenExprOrCondition(OwningExprResult &CondExp,
429 bool OnlyAllowCondition) {
Chris Lattner15ff1112008-12-12 06:31:07 +0000430 SourceLocation LParenLoc = ConsumeParen();
431
432 if (getLang().CPlusPlus)
433 CondExp = ParseCXXCondition();
434 else
435 CondExp = ParseExpression();
436
437 // If the parser was confused by the condition and we don't have a ')', try to
438 // recover by skipping ahead to a semi and bailing out. If condexp is
439 // semantically invalid but we have well formed code, keep going.
440 if (CondExp.isInvalid() && Tok.isNot(tok::r_paren)) {
441 SkipUntil(tok::semi);
442 // Skipping may have stopped if it found the containing ')'. If so, we can
443 // continue parsing the if statement.
444 if (Tok.isNot(tok::r_paren))
445 return true;
446 }
447
448 // Otherwise the condition is valid or the rparen is present.
449 MatchRHSPunctuation(tok::r_paren, LParenLoc);
450 return false;
451}
452
453
Reid Spencer5f016e22007-07-11 17:01:13 +0000454/// ParseIfStatement
455/// if-statement: [C99 6.8.4.1]
456/// 'if' '(' expression ')' statement
457/// 'if' '(' expression ')' statement 'else' statement
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +0000458/// [C++] 'if' '(' condition ')' statement
459/// [C++] 'if' '(' condition ')' statement 'else' statement
Reid Spencer5f016e22007-07-11 17:01:13 +0000460///
Sebastian Redl61364dd2008-12-11 19:30:53 +0000461Parser::OwningStmtResult Parser::ParseIfStatement() {
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000462 assert(Tok.is(tok::kw_if) && "Not an if stmt!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000463 SourceLocation IfLoc = ConsumeToken(); // eat the 'if'.
464
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000465 if (Tok.isNot(tok::l_paren)) {
Chris Lattner1ab3b962008-11-18 07:48:38 +0000466 Diag(Tok, diag::err_expected_lparen_after) << "if";
Reid Spencer5f016e22007-07-11 17:01:13 +0000467 SkipUntil(tok::semi);
Sebastian Redl61364dd2008-12-11 19:30:53 +0000468 return StmtError();
Reid Spencer5f016e22007-07-11 17:01:13 +0000469 }
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +0000470
Argyrios Kyrtzidis488d37e2008-09-11 03:06:46 +0000471 bool C99orCXX = getLang().C99 || getLang().CPlusPlus;
472
Chris Lattner22153252007-08-26 23:08:06 +0000473 // C99 6.8.4p3 - In C99, the if statement is a block. This is not
474 // the case for C90.
Argyrios Kyrtzidis488d37e2008-09-11 03:06:46 +0000475 //
476 // C++ 6.4p3:
477 // A name introduced by a declaration in a condition is in scope from its
478 // point of declaration until the end of the substatements controlled by the
479 // condition.
Argyrios Kyrtzidis14d08c02008-09-11 23:08:39 +0000480 // C++ 3.3.2p4:
481 // Names declared in the for-init-statement, and in the condition of if,
482 // while, for, and switch statements are local to the if, while, for, or
483 // switch statement (including the controlled statement).
Argyrios Kyrtzidis488d37e2008-09-11 03:06:46 +0000484 //
Douglas Gregor8935b8b2008-12-10 06:34:36 +0000485 ParseScope IfScope(this, Scope::DeclScope | Scope::ControlScope, C99orCXX);
Chris Lattner22153252007-08-26 23:08:06 +0000486
Reid Spencer5f016e22007-07-11 17:01:13 +0000487 // Parse the condition.
Sebastian Redl15faa7f2008-12-09 20:22:58 +0000488 OwningExprResult CondExp(Actions);
Chris Lattner15ff1112008-12-12 06:31:07 +0000489 if (ParseParenExprOrCondition(CondExp))
490 return StmtError();
Chris Lattner18914bc2008-12-12 06:19:11 +0000491
Chris Lattner0ecea032007-08-22 05:28:50 +0000492 // C99 6.8.4p3 - In C99, the body of the if statement is a scope, even if
Chris Lattner38484402007-08-22 05:33:11 +0000493 // there is no compound stmt. C90 does not have this clause. We only do this
494 // if the body isn't a compound statement to avoid push/pop in common cases.
Argyrios Kyrtzidis488d37e2008-09-11 03:06:46 +0000495 //
496 // C++ 6.4p1:
497 // The substatement in a selection-statement (each substatement, in the else
498 // form of the if statement) implicitly defines a local scope.
499 //
500 // For C++ we create a scope for the condition and a new scope for
501 // substatements because:
502 // -When the 'then' scope exits, we want the condition declaration to still be
503 // active for the 'else' scope too.
504 // -Sema will detect name clashes by considering declarations of a
505 // 'ControlScope' as part of its direct subscope.
506 // -If we wanted the condition and substatement to be in the same scope, we
507 // would have to notify ParseStatement not to create a new scope. It's
508 // simpler to let it create a new scope.
509 //
Douglas Gregor8935b8b2008-12-10 06:34:36 +0000510 ParseScope InnerScope(this, Scope::DeclScope,
511 C99orCXX && Tok.isNot(tok::l_brace));
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +0000512
Chris Lattnerb96728d2007-10-29 05:08:52 +0000513 // Read the 'then' stmt.
514 SourceLocation ThenStmtLoc = Tok.getLocation();
Sebastian Redl61364dd2008-12-11 19:30:53 +0000515 OwningStmtResult ThenStmt(ParseStatement());
Reid Spencer5f016e22007-07-11 17:01:13 +0000516
Chris Lattnera36ce712007-08-22 05:16:28 +0000517 // Pop the 'if' scope if needed.
Douglas Gregor8935b8b2008-12-10 06:34:36 +0000518 InnerScope.Exit();
Sebastian Redl61364dd2008-12-11 19:30:53 +0000519
Reid Spencer5f016e22007-07-11 17:01:13 +0000520 // If it has an else, parse it.
521 SourceLocation ElseLoc;
Chris Lattnerb96728d2007-10-29 05:08:52 +0000522 SourceLocation ElseStmtLoc;
Sebastian Redl15faa7f2008-12-09 20:22:58 +0000523 OwningStmtResult ElseStmt(Actions);
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000524
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000525 if (Tok.is(tok::kw_else)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000526 ElseLoc = ConsumeToken();
Sebastian Redl61364dd2008-12-11 19:30:53 +0000527
Chris Lattner0ecea032007-08-22 05:28:50 +0000528 // C99 6.8.4p3 - In C99, the body of the if statement is a scope, even if
Chris Lattner38484402007-08-22 05:33:11 +0000529 // there is no compound stmt. C90 does not have this clause. We only do
530 // this if the body isn't a compound statement to avoid push/pop in common
531 // cases.
Argyrios Kyrtzidis488d37e2008-09-11 03:06:46 +0000532 //
533 // C++ 6.4p1:
534 // The substatement in a selection-statement (each substatement, in the else
535 // form of the if statement) implicitly defines a local scope.
536 //
Sebastian Redl61364dd2008-12-11 19:30:53 +0000537 ParseScope InnerScope(this, Scope::DeclScope,
Douglas Gregor8935b8b2008-12-10 06:34:36 +0000538 C99orCXX && Tok.isNot(tok::l_brace));
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000539
Douglas Gregorcaaf29a2008-12-10 23:01:14 +0000540 bool WithinElse = CurScope->isWithinElse();
541 CurScope->setWithinElse(true);
Chris Lattnerb96728d2007-10-29 05:08:52 +0000542 ElseStmtLoc = Tok.getLocation();
Reid Spencer5f016e22007-07-11 17:01:13 +0000543 ElseStmt = ParseStatement();
Douglas Gregorcaaf29a2008-12-10 23:01:14 +0000544 CurScope->setWithinElse(WithinElse);
Chris Lattnera36ce712007-08-22 05:16:28 +0000545
546 // Pop the 'else' scope if needed.
Douglas Gregor8935b8b2008-12-10 06:34:36 +0000547 InnerScope.Exit();
Reid Spencer5f016e22007-07-11 17:01:13 +0000548 }
Sebastian Redl61364dd2008-12-11 19:30:53 +0000549
Douglas Gregor8935b8b2008-12-10 06:34:36 +0000550 IfScope.Exit();
Chris Lattner18914bc2008-12-12 06:19:11 +0000551
552 // If the condition was invalid, discard the if statement. We could recover
553 // better by replacing it with a valid expr, but don't do that yet.
554 if (CondExp.isInvalid())
555 return StmtError();
Chris Lattner22153252007-08-26 23:08:06 +0000556
Chris Lattnerb96728d2007-10-29 05:08:52 +0000557 // If the then or else stmt is invalid and the other is valid (and present),
558 // make turn the invalid one into a null stmt to avoid dropping the other
559 // part. If both are invalid, return error.
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000560 if ((ThenStmt.isInvalid() && ElseStmt.isInvalid()) ||
561 (ThenStmt.isInvalid() && ElseStmt.get() == 0) ||
562 (ThenStmt.get() == 0 && ElseStmt.isInvalid())) {
Sebastian Redla55e52c2008-11-25 22:21:31 +0000563 // Both invalid, or one is invalid and other is non-present: return error.
Sebastian Redl61364dd2008-12-11 19:30:53 +0000564 return StmtError();
Chris Lattnerb96728d2007-10-29 05:08:52 +0000565 }
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000566
Chris Lattnerb96728d2007-10-29 05:08:52 +0000567 // Now if either are invalid, replace with a ';'.
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000568 if (ThenStmt.isInvalid())
Chris Lattnerb96728d2007-10-29 05:08:52 +0000569 ThenStmt = Actions.ActOnNullStmt(ThenStmtLoc);
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000570 if (ElseStmt.isInvalid())
Chris Lattnerb96728d2007-10-29 05:08:52 +0000571 ElseStmt = Actions.ActOnNullStmt(ElseStmtLoc);
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000572
Sebastian Redl61364dd2008-12-11 19:30:53 +0000573 return Owned(Actions.ActOnIfStmt(IfLoc, CondExp.release(), ThenStmt.release(),
574 ElseLoc, ElseStmt.release()));
Reid Spencer5f016e22007-07-11 17:01:13 +0000575}
576
577/// ParseSwitchStatement
578/// switch-statement:
579/// 'switch' '(' expression ')' statement
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +0000580/// [C++] 'switch' '(' condition ')' statement
Sebastian Redl9a920342008-12-11 19:48:14 +0000581Parser::OwningStmtResult Parser::ParseSwitchStatement() {
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000582 assert(Tok.is(tok::kw_switch) && "Not a switch stmt!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000583 SourceLocation SwitchLoc = ConsumeToken(); // eat the 'switch'.
584
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000585 if (Tok.isNot(tok::l_paren)) {
Chris Lattner1ab3b962008-11-18 07:48:38 +0000586 Diag(Tok, diag::err_expected_lparen_after) << "switch";
Reid Spencer5f016e22007-07-11 17:01:13 +0000587 SkipUntil(tok::semi);
Sebastian Redl9a920342008-12-11 19:48:14 +0000588 return StmtError();
Reid Spencer5f016e22007-07-11 17:01:13 +0000589 }
Chris Lattner22153252007-08-26 23:08:06 +0000590
Argyrios Kyrtzidis488d37e2008-09-11 03:06:46 +0000591 bool C99orCXX = getLang().C99 || getLang().CPlusPlus;
592
Chris Lattner22153252007-08-26 23:08:06 +0000593 // C99 6.8.4p3 - In C99, the switch statement is a block. This is
594 // not the case for C90. Start the switch scope.
Argyrios Kyrtzidis488d37e2008-09-11 03:06:46 +0000595 //
596 // C++ 6.4p3:
597 // A name introduced by a declaration in a condition is in scope from its
598 // point of declaration until the end of the substatements controlled by the
599 // condition.
Argyrios Kyrtzidis14d08c02008-09-11 23:08:39 +0000600 // C++ 3.3.2p4:
601 // Names declared in the for-init-statement, and in the condition of if,
602 // while, for, and switch statements are local to the if, while, for, or
603 // switch statement (including the controlled statement).
Argyrios Kyrtzidis488d37e2008-09-11 03:06:46 +0000604 //
Chris Lattner15ff1112008-12-12 06:31:07 +0000605 unsigned ScopeFlags = Scope::BreakScope;
606 if (C99orCXX)
607 ScopeFlags |= Scope::DeclScope | Scope::ControlScope;
Douglas Gregor8935b8b2008-12-10 06:34:36 +0000608 ParseScope SwitchScope(this, ScopeFlags);
Reid Spencer5f016e22007-07-11 17:01:13 +0000609
610 // Parse the condition.
Sebastian Redl15faa7f2008-12-09 20:22:58 +0000611 OwningExprResult Cond(Actions);
Chris Lattner15ff1112008-12-12 06:31:07 +0000612 if (ParseParenExprOrCondition(Cond))
Sebastian Redl9a920342008-12-11 19:48:14 +0000613 return StmtError();
Eli Friedman2342ef72008-12-17 22:19:57 +0000614
615 OwningStmtResult Switch(Actions);
616 if (!Cond.isInvalid())
617 Switch = Actions.ActOnStartOfSwitchStmt(Cond.release());
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000618
Chris Lattner0ecea032007-08-22 05:28:50 +0000619 // C99 6.8.4p3 - In C99, the body of the switch statement is a scope, even if
Chris Lattner38484402007-08-22 05:33:11 +0000620 // there is no compound stmt. C90 does not have this clause. We only do this
621 // if the body isn't a compound statement to avoid push/pop in common cases.
Argyrios Kyrtzidis488d37e2008-09-11 03:06:46 +0000622 //
623 // C++ 6.4p1:
624 // The substatement in a selection-statement (each substatement, in the else
625 // form of the if statement) implicitly defines a local scope.
626 //
627 // See comments in ParseIfStatement for why we create a scope for the
628 // condition and a new scope for substatement in C++.
629 //
Douglas Gregor8935b8b2008-12-10 06:34:36 +0000630 ParseScope InnerScope(this, Scope::DeclScope,
631 C99orCXX && Tok.isNot(tok::l_brace));
Sebastian Redl61364dd2008-12-11 19:30:53 +0000632
Reid Spencer5f016e22007-07-11 17:01:13 +0000633 // Read the body statement.
Sebastian Redl61364dd2008-12-11 19:30:53 +0000634 OwningStmtResult Body(ParseStatement());
Reid Spencer5f016e22007-07-11 17:01:13 +0000635
Chris Lattner0ecea032007-08-22 05:28:50 +0000636 // Pop the body scope if needed.
Douglas Gregor8935b8b2008-12-10 06:34:36 +0000637 InnerScope.Exit();
Sebastian Redl9a920342008-12-11 19:48:14 +0000638
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000639 if (Body.isInvalid()) {
Steve Naroff1b273c42007-09-16 14:56:35 +0000640 Body = Actions.ActOnNullStmt(Tok.getLocation());
Anders Carlssonc1fcb772007-07-22 07:07:56 +0000641 // FIXME: Remove the case statement list from the Switch statement.
642 }
Douglas Gregor8935b8b2008-12-10 06:34:36 +0000643
644 SwitchScope.Exit();
Sebastian Redl61364dd2008-12-11 19:30:53 +0000645
Chris Lattner15ff1112008-12-12 06:31:07 +0000646 if (Cond.isInvalid())
647 return StmtError();
648
Sebastian Redl9a920342008-12-11 19:48:14 +0000649 return Owned(Actions.ActOnFinishSwitchStmt(SwitchLoc, Switch.release(),
650 Body.release()));
Reid Spencer5f016e22007-07-11 17:01:13 +0000651}
652
653/// ParseWhileStatement
654/// while-statement: [C99 6.8.5.1]
655/// 'while' '(' expression ')' statement
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +0000656/// [C++] 'while' '(' condition ')' statement
Sebastian Redl9a920342008-12-11 19:48:14 +0000657Parser::OwningStmtResult Parser::ParseWhileStatement() {
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000658 assert(Tok.is(tok::kw_while) && "Not a while stmt!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000659 SourceLocation WhileLoc = Tok.getLocation();
660 ConsumeToken(); // eat the 'while'.
Sebastian Redl9a920342008-12-11 19:48:14 +0000661
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000662 if (Tok.isNot(tok::l_paren)) {
Chris Lattner1ab3b962008-11-18 07:48:38 +0000663 Diag(Tok, diag::err_expected_lparen_after) << "while";
Reid Spencer5f016e22007-07-11 17:01:13 +0000664 SkipUntil(tok::semi);
Sebastian Redl9a920342008-12-11 19:48:14 +0000665 return StmtError();
Reid Spencer5f016e22007-07-11 17:01:13 +0000666 }
Sebastian Redl9a920342008-12-11 19:48:14 +0000667
Argyrios Kyrtzidis488d37e2008-09-11 03:06:46 +0000668 bool C99orCXX = getLang().C99 || getLang().CPlusPlus;
669
Chris Lattner22153252007-08-26 23:08:06 +0000670 // C99 6.8.5p5 - In C99, the while statement is a block. This is not
671 // the case for C90. Start the loop scope.
Argyrios Kyrtzidis488d37e2008-09-11 03:06:46 +0000672 //
673 // C++ 6.4p3:
674 // A name introduced by a declaration in a condition is in scope from its
675 // point of declaration until the end of the substatements controlled by the
676 // condition.
Argyrios Kyrtzidis14d08c02008-09-11 23:08:39 +0000677 // C++ 3.3.2p4:
678 // Names declared in the for-init-statement, and in the condition of if,
679 // while, for, and switch statements are local to the if, while, for, or
680 // switch statement (including the controlled statement).
Argyrios Kyrtzidis488d37e2008-09-11 03:06:46 +0000681 //
Douglas Gregor8935b8b2008-12-10 06:34:36 +0000682 unsigned ScopeFlags;
Argyrios Kyrtzidis488d37e2008-09-11 03:06:46 +0000683 if (C99orCXX)
Douglas Gregor8935b8b2008-12-10 06:34:36 +0000684 ScopeFlags = Scope::BreakScope | Scope::ContinueScope |
685 Scope::DeclScope | Scope::ControlScope;
Chris Lattner22153252007-08-26 23:08:06 +0000686 else
Douglas Gregor8935b8b2008-12-10 06:34:36 +0000687 ScopeFlags = Scope::BreakScope | Scope::ContinueScope;
688 ParseScope WhileScope(this, ScopeFlags);
Reid Spencer5f016e22007-07-11 17:01:13 +0000689
690 // Parse the condition.
Sebastian Redl15faa7f2008-12-09 20:22:58 +0000691 OwningExprResult Cond(Actions);
Chris Lattner15ff1112008-12-12 06:31:07 +0000692 if (ParseParenExprOrCondition(Cond))
693 return StmtError();
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000694
Chris Lattner0ecea032007-08-22 05:28:50 +0000695 // C99 6.8.5p5 - In C99, the body of the if statement is a scope, even if
Chris Lattner38484402007-08-22 05:33:11 +0000696 // there is no compound stmt. C90 does not have this clause. We only do this
697 // if the body isn't a compound statement to avoid push/pop in common cases.
Argyrios Kyrtzidis488d37e2008-09-11 03:06:46 +0000698 //
699 // C++ 6.5p2:
700 // The substatement in an iteration-statement implicitly defines a local scope
701 // which is entered and exited each time through the loop.
702 //
703 // See comments in ParseIfStatement for why we create a scope for the
704 // condition and a new scope for substatement in C++.
705 //
Douglas Gregor8935b8b2008-12-10 06:34:36 +0000706 ParseScope InnerScope(this, Scope::DeclScope,
707 C99orCXX && Tok.isNot(tok::l_brace));
Sebastian Redl9a920342008-12-11 19:48:14 +0000708
Reid Spencer5f016e22007-07-11 17:01:13 +0000709 // Read the body statement.
Sebastian Redl61364dd2008-12-11 19:30:53 +0000710 OwningStmtResult Body(ParseStatement());
Reid Spencer5f016e22007-07-11 17:01:13 +0000711
Chris Lattner0ecea032007-08-22 05:28:50 +0000712 // Pop the body scope if needed.
Douglas Gregor8935b8b2008-12-10 06:34:36 +0000713 InnerScope.Exit();
714 WhileScope.Exit();
Sebastian Redl9a920342008-12-11 19:48:14 +0000715
716 if (Cond.isInvalid() || Body.isInvalid())
717 return StmtError();
718
719 return Owned(Actions.ActOnWhileStmt(WhileLoc, Cond.release(),Body.release()));
Reid Spencer5f016e22007-07-11 17:01:13 +0000720}
721
722/// ParseDoStatement
723/// do-statement: [C99 6.8.5.2]
724/// 'do' statement 'while' '(' expression ')' ';'
725/// Note: this lets the caller parse the end ';'.
Sebastian Redl9a920342008-12-11 19:48:14 +0000726Parser::OwningStmtResult Parser::ParseDoStatement() {
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000727 assert(Tok.is(tok::kw_do) && "Not a do stmt!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000728 SourceLocation DoLoc = ConsumeToken(); // eat the 'do'.
Sebastian Redl9a920342008-12-11 19:48:14 +0000729
Chris Lattner22153252007-08-26 23:08:06 +0000730 // C99 6.8.5p5 - In C99, the do statement is a block. This is not
731 // the case for C90. Start the loop scope.
Douglas Gregor8935b8b2008-12-10 06:34:36 +0000732 unsigned ScopeFlags;
Chris Lattner22153252007-08-26 23:08:06 +0000733 if (getLang().C99)
Douglas Gregor8935b8b2008-12-10 06:34:36 +0000734 ScopeFlags = Scope::BreakScope | Scope::ContinueScope | Scope::DeclScope;
Chris Lattner22153252007-08-26 23:08:06 +0000735 else
Douglas Gregor8935b8b2008-12-10 06:34:36 +0000736 ScopeFlags = Scope::BreakScope | Scope::ContinueScope;
Sebastian Redl9a920342008-12-11 19:48:14 +0000737
Douglas Gregor8935b8b2008-12-10 06:34:36 +0000738 ParseScope DoScope(this, ScopeFlags);
Reid Spencer5f016e22007-07-11 17:01:13 +0000739
Chris Lattner0ecea032007-08-22 05:28:50 +0000740 // C99 6.8.5p5 - In C99, the body of the if statement is a scope, even if
Chris Lattner38484402007-08-22 05:33:11 +0000741 // there is no compound stmt. C90 does not have this clause. We only do this
742 // if the body isn't a compound statement to avoid push/pop in common cases.
Argyrios Kyrtzidis143db712008-09-11 04:46:46 +0000743 //
744 // C++ 6.5p2:
745 // The substatement in an iteration-statement implicitly defines a local scope
746 // which is entered and exited each time through the loop.
747 //
Douglas Gregor8935b8b2008-12-10 06:34:36 +0000748 ParseScope InnerScope(this, Scope::DeclScope,
749 (getLang().C99 || getLang().CPlusPlus) &&
750 Tok.isNot(tok::l_brace));
Sebastian Redl9a920342008-12-11 19:48:14 +0000751
Reid Spencer5f016e22007-07-11 17:01:13 +0000752 // Read the body statement.
Sebastian Redl61364dd2008-12-11 19:30:53 +0000753 OwningStmtResult Body(ParseStatement());
Reid Spencer5f016e22007-07-11 17:01:13 +0000754
Chris Lattner0ecea032007-08-22 05:28:50 +0000755 // Pop the body scope if needed.
Douglas Gregor8935b8b2008-12-10 06:34:36 +0000756 InnerScope.Exit();
Chris Lattner0ecea032007-08-22 05:28:50 +0000757
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000758 if (Tok.isNot(tok::kw_while)) {
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000759 if (!Body.isInvalid()) {
Chris Lattner19504402008-11-13 18:52:53 +0000760 Diag(Tok, diag::err_expected_while);
Chris Lattner28eb7e92008-11-23 23:17:07 +0000761 Diag(DoLoc, diag::note_matching) << "do";
Chris Lattner19504402008-11-13 18:52:53 +0000762 SkipUntil(tok::semi, false, true);
763 }
Sebastian Redl9a920342008-12-11 19:48:14 +0000764 return StmtError();
Reid Spencer5f016e22007-07-11 17:01:13 +0000765 }
766 SourceLocation WhileLoc = ConsumeToken();
Sebastian Redl9a920342008-12-11 19:48:14 +0000767
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000768 if (Tok.isNot(tok::l_paren)) {
Chris Lattner1ab3b962008-11-18 07:48:38 +0000769 Diag(Tok, diag::err_expected_lparen_after) << "do/while";
Chris Lattner19504402008-11-13 18:52:53 +0000770 SkipUntil(tok::semi, false, true);
Sebastian Redl9a920342008-12-11 19:48:14 +0000771 return StmtError();
Reid Spencer5f016e22007-07-11 17:01:13 +0000772 }
Sebastian Redl9a920342008-12-11 19:48:14 +0000773
Chris Lattnerff871fb2008-12-12 06:35:28 +0000774 // Parse the parenthesized condition.
775 OwningExprResult Cond(Actions);
776 ParseParenExprOrCondition(Cond, true);
777
Douglas Gregor8935b8b2008-12-10 06:34:36 +0000778 DoScope.Exit();
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000779
Sebastian Redl9a920342008-12-11 19:48:14 +0000780 if (Cond.isInvalid() || Body.isInvalid())
781 return StmtError();
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000782
Sebastian Redl9a920342008-12-11 19:48:14 +0000783 return Owned(Actions.ActOnDoStmt(DoLoc, Body.release(), WhileLoc,
784 Cond.release()));
Reid Spencer5f016e22007-07-11 17:01:13 +0000785}
786
787/// ParseForStatement
788/// for-statement: [C99 6.8.5.3]
789/// 'for' '(' expr[opt] ';' expr[opt] ';' expr[opt] ')' statement
790/// 'for' '(' declaration expr[opt] ';' expr[opt] ')' statement
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +0000791/// [C++] 'for' '(' for-init-statement condition[opt] ';' expression[opt] ')'
792/// [C++] statement
Fariborz Jahanian3ba5a0f2008-01-03 17:55:25 +0000793/// [OBJC2] 'for' '(' declaration 'in' expr ')' statement
794/// [OBJC2] 'for' '(' expr 'in' expr ')' statement
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +0000795///
796/// [C++] for-init-statement:
797/// [C++] expression-statement
798/// [C++] simple-declaration
799///
Sebastian Redl9a920342008-12-11 19:48:14 +0000800Parser::OwningStmtResult Parser::ParseForStatement() {
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000801 assert(Tok.is(tok::kw_for) && "Not a for stmt!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000802 SourceLocation ForLoc = ConsumeToken(); // eat the 'for'.
Sebastian Redl9a920342008-12-11 19:48:14 +0000803
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000804 if (Tok.isNot(tok::l_paren)) {
Chris Lattner1ab3b962008-11-18 07:48:38 +0000805 Diag(Tok, diag::err_expected_lparen_after) << "for";
Reid Spencer5f016e22007-07-11 17:01:13 +0000806 SkipUntil(tok::semi);
Sebastian Redl9a920342008-12-11 19:48:14 +0000807 return StmtError();
Reid Spencer5f016e22007-07-11 17:01:13 +0000808 }
Sebastian Redl9a920342008-12-11 19:48:14 +0000809
Argyrios Kyrtzidis488d37e2008-09-11 03:06:46 +0000810 bool C99orCXX = getLang().C99 || getLang().CPlusPlus;
811
Chris Lattner22153252007-08-26 23:08:06 +0000812 // C99 6.8.5p5 - In C99, the for statement is a block. This is not
813 // the case for C90. Start the loop scope.
Argyrios Kyrtzidis488d37e2008-09-11 03:06:46 +0000814 //
815 // C++ 6.4p3:
816 // A name introduced by a declaration in a condition is in scope from its
817 // point of declaration until the end of the substatements controlled by the
818 // condition.
Argyrios Kyrtzidis14d08c02008-09-11 23:08:39 +0000819 // C++ 3.3.2p4:
820 // Names declared in the for-init-statement, and in the condition of if,
821 // while, for, and switch statements are local to the if, while, for, or
822 // switch statement (including the controlled statement).
Argyrios Kyrtzidis488d37e2008-09-11 03:06:46 +0000823 // C++ 6.5.3p1:
824 // Names declared in the for-init-statement are in the same declarative-region
825 // as those declared in the condition.
826 //
Douglas Gregor8935b8b2008-12-10 06:34:36 +0000827 unsigned ScopeFlags;
Argyrios Kyrtzidis488d37e2008-09-11 03:06:46 +0000828 if (C99orCXX)
Douglas Gregor8935b8b2008-12-10 06:34:36 +0000829 ScopeFlags = Scope::BreakScope | Scope::ContinueScope |
830 Scope::DeclScope | Scope::ControlScope;
Chris Lattner22153252007-08-26 23:08:06 +0000831 else
Douglas Gregor8935b8b2008-12-10 06:34:36 +0000832 ScopeFlags = Scope::BreakScope | Scope::ContinueScope;
833
834 ParseScope ForScope(this, ScopeFlags);
Reid Spencer5f016e22007-07-11 17:01:13 +0000835
836 SourceLocation LParenLoc = ConsumeParen();
Sebastian Redl15faa7f2008-12-09 20:22:58 +0000837 OwningExprResult Value(Actions);
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000838
Fariborz Jahanianbdd15f72008-01-04 23:23:46 +0000839 bool ForEach = false;
Sebastian Redl15faa7f2008-12-09 20:22:58 +0000840 OwningStmtResult FirstPart(Actions), ThirdPart(Actions);
841 OwningExprResult SecondPart(Actions);
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000842
Reid Spencer5f016e22007-07-11 17:01:13 +0000843 // Parse the first part of the for specifier.
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000844 if (Tok.is(tok::semi)) { // for (;
Reid Spencer5f016e22007-07-11 17:01:13 +0000845 // no first part, eat the ';'.
846 ConsumeToken();
Argyrios Kyrtzidisbbc70c02008-10-05 15:50:46 +0000847 } else if (isSimpleDeclaration()) { // for (int X = 4;
Reid Spencer5f016e22007-07-11 17:01:13 +0000848 // Parse declaration, which eats the ';'.
Argyrios Kyrtzidis488d37e2008-09-11 03:06:46 +0000849 if (!C99orCXX) // Use of C99-style for loops in C90 mode?
Reid Spencer5f016e22007-07-11 17:01:13 +0000850 Diag(Tok, diag::ext_c99_variable_decl_in_for_loop);
Sebastian Redl9a920342008-12-11 19:48:14 +0000851
Chris Lattner81c018d2008-03-13 06:29:04 +0000852 SourceLocation DeclStart = Tok.getLocation();
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +0000853 DeclTy *aBlockVarDecl = ParseSimpleDeclaration(Declarator::ForContext);
Chris Lattner81c018d2008-03-13 06:29:04 +0000854 // FIXME: Pass in the right location for the end of the declstmt.
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000855 FirstPart = Actions.ActOnDeclStmt(aBlockVarDecl, DeclStart,
856 DeclStart);
Fariborz Jahanianbdd15f72008-01-04 23:23:46 +0000857 if ((ForEach = isTokIdentifier_in())) {
Fariborz Jahanian3ba5a0f2008-01-03 17:55:25 +0000858 ConsumeToken(); // consume 'in'
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000859 SecondPart = ParseExpression();
Fariborz Jahanian3ba5a0f2008-01-03 17:55:25 +0000860 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000861 } else {
862 Value = ParseExpression();
863
864 // Turn the expression into a stmt.
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000865 if (!Value.isInvalid())
Sebastian Redleffa8d12008-12-10 00:02:53 +0000866 FirstPart = Actions.ActOnExprStmt(Value.release());
867
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000868 if (Tok.is(tok::semi)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000869 ConsumeToken();
Fariborz Jahanian3ba5a0f2008-01-03 17:55:25 +0000870 }
Fariborz Jahanianbdd15f72008-01-04 23:23:46 +0000871 else if ((ForEach = isTokIdentifier_in())) {
Fariborz Jahanian3ba5a0f2008-01-03 17:55:25 +0000872 ConsumeToken(); // consume 'in'
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000873 SecondPart = ParseExpression();
Fariborz Jahanian3ba5a0f2008-01-03 17:55:25 +0000874 }
875 else {
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000876 if (!Value.isInvalid()) Diag(Tok, diag::err_expected_semi_for);
Reid Spencer5f016e22007-07-11 17:01:13 +0000877 SkipUntil(tok::semi);
878 }
879 }
Fariborz Jahanianbdd15f72008-01-04 23:23:46 +0000880 if (!ForEach) {
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000881 assert(!SecondPart.get() && "Shouldn't have a second expression yet.");
Fariborz Jahanian3ba5a0f2008-01-03 17:55:25 +0000882 // Parse the second part of the for specifier.
883 if (Tok.is(tok::semi)) { // for (...;;
884 // no second part.
Fariborz Jahanian3ba5a0f2008-01-03 17:55:25 +0000885 } else {
Chris Lattner15ff1112008-12-12 06:31:07 +0000886 SecondPart =getLang().CPlusPlus ? ParseCXXCondition() : ParseExpression();
Fariborz Jahanian3ba5a0f2008-01-03 17:55:25 +0000887 }
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000888
Fariborz Jahanian3ba5a0f2008-01-03 17:55:25 +0000889 if (Tok.is(tok::semi)) {
890 ConsumeToken();
891 } else {
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000892 if (!SecondPart.isInvalid()) Diag(Tok, diag::err_expected_semi_for);
Fariborz Jahanian3ba5a0f2008-01-03 17:55:25 +0000893 SkipUntil(tok::semi);
894 }
Sebastian Redl9a920342008-12-11 19:48:14 +0000895
Fariborz Jahanian3ba5a0f2008-01-03 17:55:25 +0000896 // Parse the third part of the for specifier.
897 if (Tok.is(tok::r_paren)) { // for (...;...;)
898 // no third part.
Fariborz Jahanian3ba5a0f2008-01-03 17:55:25 +0000899 } else {
900 Value = ParseExpression();
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000901 if (!Value.isInvalid()) {
Fariborz Jahanian3ba5a0f2008-01-03 17:55:25 +0000902 // Turn the expression into a stmt.
Sebastian Redleffa8d12008-12-10 00:02:53 +0000903 ThirdPart = Actions.ActOnExprStmt(Value.release());
Fariborz Jahanian3ba5a0f2008-01-03 17:55:25 +0000904 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000905 }
906 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000907 // Match the ')'.
908 SourceLocation RParenLoc = MatchRHSPunctuation(tok::r_paren, LParenLoc);
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000909
Chris Lattner0ecea032007-08-22 05:28:50 +0000910 // C99 6.8.5p5 - In C99, the body of the if statement is a scope, even if
Chris Lattner38484402007-08-22 05:33:11 +0000911 // there is no compound stmt. C90 does not have this clause. We only do this
912 // if the body isn't a compound statement to avoid push/pop in common cases.
Argyrios Kyrtzidis488d37e2008-09-11 03:06:46 +0000913 //
914 // C++ 6.5p2:
915 // The substatement in an iteration-statement implicitly defines a local scope
916 // which is entered and exited each time through the loop.
917 //
918 // See comments in ParseIfStatement for why we create a scope for
919 // for-init-statement/condition and a new scope for substatement in C++.
920 //
Douglas Gregor8935b8b2008-12-10 06:34:36 +0000921 ParseScope InnerScope(this, Scope::DeclScope,
922 C99orCXX && Tok.isNot(tok::l_brace));
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000923
Reid Spencer5f016e22007-07-11 17:01:13 +0000924 // Read the body statement.
Sebastian Redl61364dd2008-12-11 19:30:53 +0000925 OwningStmtResult Body(ParseStatement());
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000926
Chris Lattner0ecea032007-08-22 05:28:50 +0000927 // Pop the body scope if needed.
Douglas Gregor8935b8b2008-12-10 06:34:36 +0000928 InnerScope.Exit();
Chris Lattner0ecea032007-08-22 05:28:50 +0000929
Reid Spencer5f016e22007-07-11 17:01:13 +0000930 // Leave the for-scope.
Douglas Gregor8935b8b2008-12-10 06:34:36 +0000931 ForScope.Exit();
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000932
933 if (Body.isInvalid())
Sebastian Redl9a920342008-12-11 19:48:14 +0000934 return StmtError();
Sebastian Redleffa8d12008-12-10 00:02:53 +0000935
936 if (!ForEach)
Sebastian Redl9a920342008-12-11 19:48:14 +0000937 return Owned(Actions.ActOnForStmt(ForLoc, LParenLoc, FirstPart.release(),
938 SecondPart.release(), ThirdPart.release(),
939 RParenLoc, Body.release()));
Fariborz Jahanianbdd15f72008-01-04 23:23:46 +0000940 else
Sebastian Redl9a920342008-12-11 19:48:14 +0000941 return Owned(Actions.ActOnObjCForCollectionStmt(ForLoc, LParenLoc,
942 FirstPart.release(),
943 SecondPart.release(),
944 RParenLoc, Body.release()));
Reid Spencer5f016e22007-07-11 17:01:13 +0000945}
946
947/// ParseGotoStatement
948/// jump-statement:
949/// 'goto' identifier ';'
950/// [GNU] 'goto' '*' expression ';'
951///
952/// Note: this lets the caller parse the end ';'.
953///
Sebastian Redl9a920342008-12-11 19:48:14 +0000954Parser::OwningStmtResult Parser::ParseGotoStatement() {
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000955 assert(Tok.is(tok::kw_goto) && "Not a goto stmt!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000956 SourceLocation GotoLoc = ConsumeToken(); // eat the 'goto'.
Sebastian Redl9a920342008-12-11 19:48:14 +0000957
Sebastian Redl15faa7f2008-12-09 20:22:58 +0000958 OwningStmtResult Res(Actions);
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000959 if (Tok.is(tok::identifier)) {
Steve Naroff1b273c42007-09-16 14:56:35 +0000960 Res = Actions.ActOnGotoStmt(GotoLoc, Tok.getLocation(),
Reid Spencer5f016e22007-07-11 17:01:13 +0000961 Tok.getIdentifierInfo());
962 ConsumeToken();
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000963 } else if (Tok.is(tok::star) && !getLang().NoExtensions) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000964 // GNU indirect goto extension.
965 Diag(Tok, diag::ext_gnu_indirect_goto);
966 SourceLocation StarLoc = ConsumeToken();
Sebastian Redl2f7ece72008-12-11 21:36:32 +0000967 OwningExprResult R(ParseExpression());
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000968 if (R.isInvalid()) { // Skip to the semicolon, but don't consume it.
Reid Spencer5f016e22007-07-11 17:01:13 +0000969 SkipUntil(tok::semi, false, true);
Sebastian Redl9a920342008-12-11 19:48:14 +0000970 return StmtError();
Reid Spencer5f016e22007-07-11 17:01:13 +0000971 }
Sebastian Redleffa8d12008-12-10 00:02:53 +0000972 Res = Actions.ActOnIndirectGotoStmt(GotoLoc, StarLoc, R.release());
Chris Lattner95cfb852007-07-22 04:13:33 +0000973 } else {
974 Diag(Tok, diag::err_expected_ident);
Sebastian Redl9a920342008-12-11 19:48:14 +0000975 return StmtError();
Reid Spencer5f016e22007-07-11 17:01:13 +0000976 }
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000977
Sebastian Redl9a920342008-12-11 19:48:14 +0000978 return move(Res);
Reid Spencer5f016e22007-07-11 17:01:13 +0000979}
980
981/// ParseContinueStatement
982/// jump-statement:
983/// 'continue' ';'
984///
985/// Note: this lets the caller parse the end ';'.
986///
Sebastian Redl9a920342008-12-11 19:48:14 +0000987Parser::OwningStmtResult Parser::ParseContinueStatement() {
Reid Spencer5f016e22007-07-11 17:01:13 +0000988 SourceLocation ContinueLoc = ConsumeToken(); // eat the 'continue'.
Sebastian Redl9a920342008-12-11 19:48:14 +0000989 return Owned(Actions.ActOnContinueStmt(ContinueLoc, CurScope));
Reid Spencer5f016e22007-07-11 17:01:13 +0000990}
991
992/// ParseBreakStatement
993/// jump-statement:
994/// 'break' ';'
995///
996/// Note: this lets the caller parse the end ';'.
997///
Sebastian Redl9a920342008-12-11 19:48:14 +0000998Parser::OwningStmtResult Parser::ParseBreakStatement() {
Reid Spencer5f016e22007-07-11 17:01:13 +0000999 SourceLocation BreakLoc = ConsumeToken(); // eat the 'break'.
Sebastian Redl9a920342008-12-11 19:48:14 +00001000 return Owned(Actions.ActOnBreakStmt(BreakLoc, CurScope));
Reid Spencer5f016e22007-07-11 17:01:13 +00001001}
1002
1003/// ParseReturnStatement
1004/// jump-statement:
1005/// 'return' expression[opt] ';'
Sebastian Redl9a920342008-12-11 19:48:14 +00001006Parser::OwningStmtResult Parser::ParseReturnStatement() {
Chris Lattner4e1d99a2007-10-09 17:41:39 +00001007 assert(Tok.is(tok::kw_return) && "Not a return stmt!");
Reid Spencer5f016e22007-07-11 17:01:13 +00001008 SourceLocation ReturnLoc = ConsumeToken(); // eat the 'return'.
Sebastian Redl9a920342008-12-11 19:48:14 +00001009
Sebastian Redl15faa7f2008-12-09 20:22:58 +00001010 OwningExprResult R(Actions);
Chris Lattner4e1d99a2007-10-09 17:41:39 +00001011 if (Tok.isNot(tok::semi)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001012 R = ParseExpression();
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001013 if (R.isInvalid()) { // Skip to the semicolon, but don't consume it.
Reid Spencer5f016e22007-07-11 17:01:13 +00001014 SkipUntil(tok::semi, false, true);
Sebastian Redl9a920342008-12-11 19:48:14 +00001015 return StmtError();
Reid Spencer5f016e22007-07-11 17:01:13 +00001016 }
1017 }
Sebastian Redl9a920342008-12-11 19:48:14 +00001018 return Owned(Actions.ActOnReturnStmt(ReturnLoc, R.release()));
Reid Spencer5f016e22007-07-11 17:01:13 +00001019}
1020
Steve Naroff5f8aa692008-02-11 23:15:56 +00001021/// FuzzyParseMicrosoftAsmStatement. When -fms-extensions is enabled, this
1022/// routine is called to skip/ignore tokens that comprise the MS asm statement.
Sebastian Redl9a920342008-12-11 19:48:14 +00001023Parser::OwningStmtResult Parser::FuzzyParseMicrosoftAsmStatement() {
Steve Naroffb746ce82008-02-07 23:24:32 +00001024 if (Tok.is(tok::l_brace)) {
1025 unsigned short savedBraceCount = BraceCount;
1026 do {
1027 ConsumeAnyToken();
1028 } while (BraceCount > savedBraceCount && Tok.isNot(tok::eof));
1029 } else {
1030 // From the MS website: If used without braces, the __asm keyword means
1031 // that the rest of the line is an assembly-language statement.
1032 SourceManager &SrcMgr = PP.getSourceManager();
Steve Naroff03d6bc62008-02-08 03:36:19 +00001033 SourceLocation TokLoc = Tok.getLocation();
Steve Naroff36280972008-02-08 18:01:27 +00001034 unsigned lineNo = SrcMgr.getLogicalLineNumber(TokLoc);
1035 do {
1036 ConsumeAnyToken();
1037 TokLoc = Tok.getLocation();
1038 } while ((SrcMgr.getLogicalLineNumber(TokLoc) == lineNo) &&
1039 Tok.isNot(tok::r_brace) && Tok.isNot(tok::semi) &&
1040 Tok.isNot(tok::eof));
Steve Naroffb746ce82008-02-07 23:24:32 +00001041 }
Sebastian Redl9a920342008-12-11 19:48:14 +00001042 return Owned(Actions.ActOnNullStmt(Tok.getLocation()));
Steve Naroffd62701b2008-02-07 03:50:06 +00001043}
1044
Reid Spencer5f016e22007-07-11 17:01:13 +00001045/// ParseAsmStatement - Parse a GNU extended asm statement.
Steve Naroff5f8aa692008-02-11 23:15:56 +00001046/// asm-statement:
1047/// gnu-asm-statement
1048/// ms-asm-statement
1049///
1050/// [GNU] gnu-asm-statement:
Reid Spencer5f016e22007-07-11 17:01:13 +00001051/// 'asm' type-qualifier[opt] '(' asm-argument ')' ';'
1052///
1053/// [GNU] asm-argument:
1054/// asm-string-literal
1055/// asm-string-literal ':' asm-operands[opt]
1056/// asm-string-literal ':' asm-operands[opt] ':' asm-operands[opt]
1057/// asm-string-literal ':' asm-operands[opt] ':' asm-operands[opt]
1058/// ':' asm-clobbers
1059///
1060/// [GNU] asm-clobbers:
1061/// asm-string-literal
1062/// asm-clobbers ',' asm-string-literal
1063///
Steve Naroff5f8aa692008-02-11 23:15:56 +00001064/// [MS] ms-asm-statement:
1065/// '__asm' assembly-instruction ';'[opt]
1066/// '__asm' '{' assembly-instruction-list '}' ';'[opt]
1067///
1068/// [MS] assembly-instruction-list:
1069/// assembly-instruction ';'[opt]
1070/// assembly-instruction-list ';' assembly-instruction ';'[opt]
1071///
Sebastian Redl9a920342008-12-11 19:48:14 +00001072Parser::OwningStmtResult Parser::ParseAsmStatement(bool &msAsm) {
Chris Lattner4e1d99a2007-10-09 17:41:39 +00001073 assert(Tok.is(tok::kw_asm) && "Not an asm stmt");
Chris Lattnerfe795952007-10-29 04:04:16 +00001074 SourceLocation AsmLoc = ConsumeToken();
Sebastian Redl9a920342008-12-11 19:48:14 +00001075
Steve Naroff5f8aa692008-02-11 23:15:56 +00001076 if (getLang().Microsoft && Tok.isNot(tok::l_paren) && !isTypeQualifier()) {
Steve Naroffd62701b2008-02-07 03:50:06 +00001077 msAsm = true;
1078 return FuzzyParseMicrosoftAsmStatement();
1079 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001080 DeclSpec DS;
1081 SourceLocation Loc = Tok.getLocation();
1082 ParseTypeQualifierListOpt(DS);
Sebastian Redl9a920342008-12-11 19:48:14 +00001083
Reid Spencer5f016e22007-07-11 17:01:13 +00001084 // GNU asms accept, but warn, about type-qualifiers other than volatile.
1085 if (DS.getTypeQualifiers() & DeclSpec::TQ_const)
Chris Lattner1ab3b962008-11-18 07:48:38 +00001086 Diag(Loc, diag::w_asm_qualifier_ignored) << "const";
Reid Spencer5f016e22007-07-11 17:01:13 +00001087 if (DS.getTypeQualifiers() & DeclSpec::TQ_restrict)
Chris Lattner1ab3b962008-11-18 07:48:38 +00001088 Diag(Loc, diag::w_asm_qualifier_ignored) << "restrict";
Sebastian Redl9a920342008-12-11 19:48:14 +00001089
Reid Spencer5f016e22007-07-11 17:01:13 +00001090 // Remember if this was a volatile asm.
Anders Carlsson39c47b52007-11-23 23:12:25 +00001091 bool isVolatile = DS.getTypeQualifiers() & DeclSpec::TQ_volatile;
Anders Carlssondfab34a2008-02-05 23:03:50 +00001092 bool isSimple = false;
Chris Lattner4e1d99a2007-10-09 17:41:39 +00001093 if (Tok.isNot(tok::l_paren)) {
Chris Lattner1ab3b962008-11-18 07:48:38 +00001094 Diag(Tok, diag::err_expected_lparen_after) << "asm";
Reid Spencer5f016e22007-07-11 17:01:13 +00001095 SkipUntil(tok::r_paren);
Sebastian Redl9a920342008-12-11 19:48:14 +00001096 return StmtError();
Reid Spencer5f016e22007-07-11 17:01:13 +00001097 }
1098 Loc = ConsumeParen();
Sebastian Redl9a920342008-12-11 19:48:14 +00001099
Sebastian Redleffa8d12008-12-10 00:02:53 +00001100 OwningExprResult AsmString(ParseAsmStringLiteral());
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001101 if (AsmString.isInvalid())
Sebastian Redl9a920342008-12-11 19:48:14 +00001102 return StmtError();
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001103
Anders Carlssonb235fc22007-11-22 01:36:19 +00001104 llvm::SmallVector<std::string, 4> Names;
Sebastian Redla55e52c2008-11-25 22:21:31 +00001105 ExprVector Constraints(Actions);
1106 ExprVector Exprs(Actions);
1107 ExprVector Clobbers(Actions);
Reid Spencer5f016e22007-07-11 17:01:13 +00001108
Anders Carlssondfab34a2008-02-05 23:03:50 +00001109 unsigned NumInputs = 0, NumOutputs = 0;
Sebastian Redl9a920342008-12-11 19:48:14 +00001110
Anders Carlssondfab34a2008-02-05 23:03:50 +00001111 SourceLocation RParenLoc;
1112 if (Tok.is(tok::r_paren)) {
1113 // We have a simple asm expression
1114 isSimple = true;
Sebastian Redl9a920342008-12-11 19:48:14 +00001115
Anders Carlssondfab34a2008-02-05 23:03:50 +00001116 RParenLoc = ConsumeParen();
1117 } else {
Sebastian Redla55e52c2008-11-25 22:21:31 +00001118 // Parse Outputs, if present.
Anders Carlsson8bd36fc2008-02-09 19:57:29 +00001119 if (ParseAsmOperandsOpt(Names, Constraints, Exprs))
Sebastian Redl9a920342008-12-11 19:48:14 +00001120 return StmtError();
1121
Anders Carlssondfab34a2008-02-05 23:03:50 +00001122 NumOutputs = Names.size();
Sebastian Redl9a920342008-12-11 19:48:14 +00001123
Anders Carlssondfab34a2008-02-05 23:03:50 +00001124 // Parse Inputs, if present.
Anders Carlsson8bd36fc2008-02-09 19:57:29 +00001125 if (ParseAsmOperandsOpt(Names, Constraints, Exprs))
Sebastian Redl9a920342008-12-11 19:48:14 +00001126 return StmtError();
Sebastian Redleffa8d12008-12-10 00:02:53 +00001127
Anders Carlssondfab34a2008-02-05 23:03:50 +00001128 assert(Names.size() == Constraints.size() &&
1129 Constraints.size() == Exprs.size()
1130 && "Input operand size mismatch!");
1131
1132 NumInputs = Names.size() - NumOutputs;
Sebastian Redleffa8d12008-12-10 00:02:53 +00001133
Anders Carlssondfab34a2008-02-05 23:03:50 +00001134 // Parse the clobbers, if present.
1135 if (Tok.is(tok::colon)) {
Anders Carlssoneecf8472007-11-21 23:27:34 +00001136 ConsumeToken();
Sebastian Redleffa8d12008-12-10 00:02:53 +00001137
Anders Carlssondfab34a2008-02-05 23:03:50 +00001138 // Parse the asm-string list for clobbers.
1139 while (1) {
Sebastian Redleffa8d12008-12-10 00:02:53 +00001140 OwningExprResult Clobber(ParseAsmStringLiteral());
Anders Carlssondfab34a2008-02-05 23:03:50 +00001141
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001142 if (Clobber.isInvalid())
Anders Carlssondfab34a2008-02-05 23:03:50 +00001143 break;
Sebastian Redleffa8d12008-12-10 00:02:53 +00001144
1145 Clobbers.push_back(Clobber.release());
1146
Anders Carlssondfab34a2008-02-05 23:03:50 +00001147 if (Tok.isNot(tok::comma)) break;
1148 ConsumeToken();
1149 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001150 }
Sebastian Redleffa8d12008-12-10 00:02:53 +00001151
Anders Carlssondfab34a2008-02-05 23:03:50 +00001152 RParenLoc = MatchRHSPunctuation(tok::r_paren, Loc);
Reid Spencer5f016e22007-07-11 17:01:13 +00001153 }
Sebastian Redleffa8d12008-12-10 00:02:53 +00001154
Sebastian Redl9a920342008-12-11 19:48:14 +00001155 return Owned(Actions.ActOnAsmStmt(AsmLoc, isSimple, isVolatile,
1156 NumOutputs, NumInputs,
1157 &Names[0], Constraints.take(),
1158 Exprs.take(), AsmString.release(),
1159 Clobbers.size(), Clobbers.take(),
1160 RParenLoc));
Reid Spencer5f016e22007-07-11 17:01:13 +00001161}
1162
1163/// ParseAsmOperands - Parse the asm-operands production as used by
1164/// asm-statement. We also parse a leading ':' token. If the leading colon is
1165/// not present, we do not parse anything.
1166///
1167/// [GNU] asm-operands:
1168/// asm-operand
1169/// asm-operands ',' asm-operand
1170///
1171/// [GNU] asm-operand:
1172/// asm-string-literal '(' expression ')'
1173/// '[' identifier ']' asm-string-literal '(' expression ')'
1174///
Anders Carlsson8bd36fc2008-02-09 19:57:29 +00001175bool Parser::ParseAsmOperandsOpt(llvm::SmallVectorImpl<std::string> &Names,
Anders Carlssonb235fc22007-11-22 01:36:19 +00001176 llvm::SmallVectorImpl<ExprTy*> &Constraints,
1177 llvm::SmallVectorImpl<ExprTy*> &Exprs) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001178 // Only do anything if this operand is present.
Anders Carlsson8bd36fc2008-02-09 19:57:29 +00001179 if (Tok.isNot(tok::colon)) return false;
Reid Spencer5f016e22007-07-11 17:01:13 +00001180 ConsumeToken();
1181
1182 // 'asm-operands' isn't present?
Chris Lattner4e1d99a2007-10-09 17:41:39 +00001183 if (!isTokenStringLiteral() && Tok.isNot(tok::l_square))
Anders Carlsson8bd36fc2008-02-09 19:57:29 +00001184 return false;
Reid Spencer5f016e22007-07-11 17:01:13 +00001185
Anders Carlssonb235fc22007-11-22 01:36:19 +00001186 while (1) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001187 // Read the [id] if present.
Chris Lattner4e1d99a2007-10-09 17:41:39 +00001188 if (Tok.is(tok::l_square)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001189 SourceLocation Loc = ConsumeBracket();
1190
Chris Lattner4e1d99a2007-10-09 17:41:39 +00001191 if (Tok.isNot(tok::identifier)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001192 Diag(Tok, diag::err_expected_ident);
1193 SkipUntil(tok::r_paren);
Anders Carlsson8bd36fc2008-02-09 19:57:29 +00001194 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +00001195 }
Chris Lattner69efba72007-10-29 04:06:22 +00001196
Anders Carlssonb235fc22007-11-22 01:36:19 +00001197 IdentifierInfo *II = Tok.getIdentifierInfo();
Chris Lattner69efba72007-10-29 04:06:22 +00001198 ConsumeToken();
Anders Carlssonb235fc22007-11-22 01:36:19 +00001199
1200 Names.push_back(std::string(II->getName(), II->getLength()));
Reid Spencer5f016e22007-07-11 17:01:13 +00001201 MatchRHSPunctuation(tok::r_square, Loc);
Anders Carlssonb235fc22007-11-22 01:36:19 +00001202 } else
1203 Names.push_back(std::string());
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001204
Sebastian Redleffa8d12008-12-10 00:02:53 +00001205 OwningExprResult Constraint(ParseAsmStringLiteral());
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001206 if (Constraint.isInvalid()) {
Anders Carlssonb235fc22007-11-22 01:36:19 +00001207 SkipUntil(tok::r_paren);
Anders Carlsson8bd36fc2008-02-09 19:57:29 +00001208 return true;
Anders Carlssonb235fc22007-11-22 01:36:19 +00001209 }
Sebastian Redleffa8d12008-12-10 00:02:53 +00001210 Constraints.push_back(Constraint.release());
Reid Spencer5f016e22007-07-11 17:01:13 +00001211
Chris Lattner4e1d99a2007-10-09 17:41:39 +00001212 if (Tok.isNot(tok::l_paren)) {
Chris Lattner1ab3b962008-11-18 07:48:38 +00001213 Diag(Tok, diag::err_expected_lparen_after) << "asm operand";
Reid Spencer5f016e22007-07-11 17:01:13 +00001214 SkipUntil(tok::r_paren);
Anders Carlsson8bd36fc2008-02-09 19:57:29 +00001215 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +00001216 }
Sebastian Redleffa8d12008-12-10 00:02:53 +00001217
Reid Spencer5f016e22007-07-11 17:01:13 +00001218 // Read the parenthesized expression.
Sebastian Redld8c4e152008-12-11 22:33:27 +00001219 OwningExprResult Res(ParseSimpleParenExpression());
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001220 if (Res.isInvalid()) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001221 SkipUntil(tok::r_paren);
Anders Carlsson8bd36fc2008-02-09 19:57:29 +00001222 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +00001223 }
Sebastian Redleffa8d12008-12-10 00:02:53 +00001224 Exprs.push_back(Res.release());
Reid Spencer5f016e22007-07-11 17:01:13 +00001225 // Eat the comma and continue parsing if it exists.
Anders Carlsson8bd36fc2008-02-09 19:57:29 +00001226 if (Tok.isNot(tok::comma)) return false;
Reid Spencer5f016e22007-07-11 17:01:13 +00001227 ConsumeToken();
1228 }
Anders Carlsson8bd36fc2008-02-09 19:57:29 +00001229
1230 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +00001231}
Fariborz Jahanianf9ed3152007-11-08 19:01:26 +00001232
1233Parser::DeclTy *Parser::ParseFunctionStatementBody(DeclTy *Decl,
1234 SourceLocation L, SourceLocation R) {
1235 // Do not enter a scope for the brace, as the arguments are in the same scope
1236 // (the function body) as the body itself. Instead, just read the statement
1237 // list and put it into a CompoundStmt for safe keeping.
Sebastian Redl61364dd2008-12-11 19:30:53 +00001238 OwningStmtResult FnBody(ParseCompoundStatementBody());
1239
Fariborz Jahanianf9ed3152007-11-08 19:01:26 +00001240 // If the function body could not be parsed, make a bogus compoundstmt.
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001241 if (FnBody.isInvalid())
Sebastian Redl61364dd2008-12-11 19:30:53 +00001242 FnBody = Owned(Actions.ActOnCompoundStmt(L, R, 0, 0, false));
1243
Sebastian Redl798d1192008-12-13 16:23:55 +00001244 return Actions.ActOnFinishFunctionBody(Decl, move_convert(FnBody));
Seo Sanghyeoncd5af4b2007-12-01 08:06:07 +00001245}