blob: c99d8efd1101d7ccf1cb8d01b589b65c3abe9e3e [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///
75Parser::StmtResult Parser::ParseStatementOrDeclaration(bool OnlyStatement) {
76 const char *SemiError = 0;
Sebastian Redl15faa7f2008-12-09 20:22:58 +000077 OwningStmtResult Res(Actions);
Sebastian Redl0e9eabc2008-12-09 13:15:23 +000078
Reid Spencer5f016e22007-07-11 17:01:13 +000079 // Cases in this switch statement should fall through if the parser expects
80 // the token to end in a semicolon (in which case SemiError should be set),
81 // or they directly 'return;' if not.
Fariborz Jahanian397fcc12007-09-19 19:14:32 +000082 tok::TokenKind Kind = Tok.getKind();
83 SourceLocation AtLoc;
84 switch (Kind) {
Fariborz Jahanian397fcc12007-09-19 19:14:32 +000085 case tok::at: // May be a @try or @throw statement
86 {
87 AtLoc = ConsumeToken(); // consume @
Steve Naroff64515f32008-02-05 21:27:35 +000088 return ParseObjCAtStatement(AtLoc);
Fariborz Jahanian397fcc12007-09-19 19:14:32 +000089 }
Fariborz Jahanian397fcc12007-09-19 19:14:32 +000090
Argyrios Kyrtzidisb9f930d2008-07-12 21:04:42 +000091 case tok::identifier:
92 if (NextToken().is(tok::colon)) { // C99 6.8.1: labeled-statement
93 // identifier ':' statement
94 return ParseLabeledStatement();
95 }
96 // PASS THROUGH.
97
Reid Spencer5f016e22007-07-11 17:01:13 +000098 default:
Argyrios Kyrtzidis5404a152008-10-05 00:06:24 +000099 if ((getLang().CPlusPlus || !OnlyStatement) && isDeclarationStatement()) {
Chris Lattner81c018d2008-03-13 06:29:04 +0000100 SourceLocation DeclStart = Tok.getLocation();
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000101 DeclTy *Decl = ParseDeclaration(Declarator::BlockContext);
Chris Lattner81c018d2008-03-13 06:29:04 +0000102 // FIXME: Pass in the right location for the end of the declstmt.
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000103 return Actions.ActOnDeclStmt(Decl, DeclStart, DeclStart);
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000104 } else if (Tok.is(tok::r_brace)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000105 Diag(Tok, diag::err_expected_statement);
106 return true;
107 } else {
108 // expression[opt] ';'
Sebastian Redl15faa7f2008-12-09 20:22:58 +0000109 OwningExprResult Expr(Actions, ParseExpression());
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000110 if (Expr.isInvalid()) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000111 // If the expression is invalid, skip ahead to the next semicolon. Not
112 // doing this opens us up to the possibility of infinite loops if
113 // ParseExpression does not consume any tokens.
114 SkipUntil(tok::semi);
115 return true;
116 }
117 // Otherwise, eat the semicolon.
118 ExpectAndConsume(tok::semi, diag::err_expected_semi_after_expr);
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000119 return Actions.ActOnExprStmt(Expr.move());
Reid Spencer5f016e22007-07-11 17:01:13 +0000120 }
121
122 case tok::kw_case: // C99 6.8.1: labeled-statement
123 return ParseCaseStatement();
124 case tok::kw_default: // C99 6.8.1: labeled-statement
125 return ParseDefaultStatement();
126
127 case tok::l_brace: // C99 6.8.2: compound-statement
128 return ParseCompoundStatement();
129 case tok::semi: // C99 6.8.3p3: expression[opt] ';'
Steve Naroff1b273c42007-09-16 14:56:35 +0000130 return Actions.ActOnNullStmt(ConsumeToken());
Reid Spencer5f016e22007-07-11 17:01:13 +0000131
132 case tok::kw_if: // C99 6.8.4.1: if-statement
133 return ParseIfStatement();
134 case tok::kw_switch: // C99 6.8.4.2: switch-statement
135 return ParseSwitchStatement();
136
137 case tok::kw_while: // C99 6.8.5.1: while-statement
138 return ParseWhileStatement();
139 case tok::kw_do: // C99 6.8.5.2: do-statement
140 Res = ParseDoStatement();
141 SemiError = "do/while loop";
142 break;
143 case tok::kw_for: // C99 6.8.5.3: for-statement
144 return ParseForStatement();
145
146 case tok::kw_goto: // C99 6.8.6.1: goto-statement
147 Res = ParseGotoStatement();
148 SemiError = "goto statement";
149 break;
150 case tok::kw_continue: // C99 6.8.6.2: continue-statement
151 Res = ParseContinueStatement();
152 SemiError = "continue statement";
153 break;
154 case tok::kw_break: // C99 6.8.6.3: break-statement
155 Res = ParseBreakStatement();
156 SemiError = "break statement";
157 break;
158 case tok::kw_return: // C99 6.8.6.4: return-statement
159 Res = ParseReturnStatement();
160 SemiError = "return statement";
161 break;
162
163 case tok::kw_asm:
Steve Naroffd62701b2008-02-07 03:50:06 +0000164 bool msAsm = false;
165 Res = ParseAsmStatement(msAsm);
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000166 if (msAsm) return Res.move();
Reid Spencer5f016e22007-07-11 17:01:13 +0000167 SemiError = "asm statement";
168 break;
169 }
170
171 // If we reached this code, the statement must end in a semicolon.
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000172 if (Tok.is(tok::semi)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000173 ConsumeToken();
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000174 } else if (!Res.isInvalid()) {
Chris Lattner1ab3b962008-11-18 07:48:38 +0000175 Diag(Tok, diag::err_expected_semi_after) << SemiError;
Chris Lattner19504402008-11-13 18:52:53 +0000176 // Skip until we see a } or ;, but don't eat it.
177 SkipUntil(tok::r_brace, true, true);
Reid Spencer5f016e22007-07-11 17:01:13 +0000178 }
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000179 return Res.move();
Reid Spencer5f016e22007-07-11 17:01:13 +0000180}
181
Argyrios Kyrtzidisf7da7262008-07-09 22:53:07 +0000182/// ParseLabeledStatement - We have an identifier and a ':' after it.
Reid Spencer5f016e22007-07-11 17:01:13 +0000183///
184/// labeled-statement:
185/// identifier ':' statement
186/// [GNU] identifier ':' attributes[opt] statement
Argyrios Kyrtzidisf7da7262008-07-09 22:53:07 +0000187///
188Parser::StmtResult Parser::ParseLabeledStatement() {
189 assert(Tok.is(tok::identifier) && Tok.getIdentifierInfo() &&
190 "Not an identifier!");
191
192 Token IdentTok = Tok; // Save the whole token.
193 ConsumeToken(); // eat the identifier.
194
195 assert(Tok.is(tok::colon) && "Not a label!");
196
197 // identifier ':' statement
198 SourceLocation ColonLoc = ConsumeToken();
199
200 // Read label attributes, if present.
201 DeclTy *AttrList = 0;
202 if (Tok.is(tok::kw___attribute))
203 // TODO: save these somewhere.
204 AttrList = ParseAttributes();
205
Sebastian Redl15faa7f2008-12-09 20:22:58 +0000206 OwningStmtResult SubStmt(Actions, ParseStatement());
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000207
Argyrios Kyrtzidisf7da7262008-07-09 22:53:07 +0000208 // Broken substmt shouldn't prevent the label from being added to the AST.
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000209 if (SubStmt.isInvalid())
Argyrios Kyrtzidisf7da7262008-07-09 22:53:07 +0000210 SubStmt = Actions.ActOnNullStmt(ColonLoc);
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000211
Argyrios Kyrtzidisf7da7262008-07-09 22:53:07 +0000212 return Actions.ActOnLabelStmt(IdentTok.getLocation(),
213 IdentTok.getIdentifierInfo(),
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000214 ColonLoc, SubStmt.move());
Argyrios Kyrtzidisf7da7262008-07-09 22:53:07 +0000215}
Reid Spencer5f016e22007-07-11 17:01:13 +0000216
217/// ParseCaseStatement
218/// labeled-statement:
219/// 'case' constant-expression ':' statement
220/// [GNU] 'case' constant-expression '...' constant-expression ':' statement
221///
222/// Note that this does not parse the 'statement' at the end.
223///
224Parser::StmtResult Parser::ParseCaseStatement() {
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000225 assert(Tok.is(tok::kw_case) && "Not a case stmt!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000226 SourceLocation CaseLoc = ConsumeToken(); // eat the 'case'.
227
Sebastian Redl15faa7f2008-12-09 20:22:58 +0000228 OwningExprResult LHS(Actions, ParseConstantExpression());
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000229 if (LHS.isInvalid()) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000230 SkipUntil(tok::colon);
231 return true;
232 }
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000233
Reid Spencer5f016e22007-07-11 17:01:13 +0000234 // GNU case range extension.
235 SourceLocation DotDotDotLoc;
Sebastian Redl15faa7f2008-12-09 20:22:58 +0000236 OwningExprResult RHS(Actions);
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000237 if (Tok.is(tok::ellipsis)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000238 Diag(Tok, diag::ext_gnu_case_range);
239 DotDotDotLoc = ConsumeToken();
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000240
241 RHS = ParseConstantExpression();
242 if (RHS.isInvalid()) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000243 SkipUntil(tok::colon);
244 return true;
245 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000246 }
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000247
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000248 if (Tok.isNot(tok::colon)) {
Chris Lattner1ab3b962008-11-18 07:48:38 +0000249 Diag(Tok, diag::err_expected_colon_after) << "'case'";
Reid Spencer5f016e22007-07-11 17:01:13 +0000250 SkipUntil(tok::colon);
251 return true;
252 }
253
254 SourceLocation ColonLoc = ConsumeToken();
255
256 // Diagnose the common error "switch (X) { case 4: }", which is not valid.
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000257 if (Tok.is(tok::r_brace)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000258 Diag(Tok, diag::err_label_end_of_compound_statement);
259 return true;
260 }
261
Sebastian Redl15faa7f2008-12-09 20:22:58 +0000262 OwningStmtResult SubStmt(Actions, ParseStatement());
Reid Spencer5f016e22007-07-11 17:01:13 +0000263
264 // Broken substmt shouldn't prevent the case from being added to the AST.
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000265 if (SubStmt.isInvalid())
Steve Naroff1b273c42007-09-16 14:56:35 +0000266 SubStmt = Actions.ActOnNullStmt(ColonLoc);
Reid Spencer5f016e22007-07-11 17:01:13 +0000267
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000268 return Actions.ActOnCaseStmt(CaseLoc, LHS.move(), DotDotDotLoc,
269 RHS.move(), ColonLoc, SubStmt.move());
Reid Spencer5f016e22007-07-11 17:01:13 +0000270}
271
272/// ParseDefaultStatement
273/// labeled-statement:
274/// 'default' ':' statement
275/// Note that this does not parse the 'statement' at the end.
276///
277Parser::StmtResult Parser::ParseDefaultStatement() {
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000278 assert(Tok.is(tok::kw_default) && "Not a default stmt!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000279 SourceLocation DefaultLoc = ConsumeToken(); // eat the 'default'.
280
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000281 if (Tok.isNot(tok::colon)) {
Chris Lattner1ab3b962008-11-18 07:48:38 +0000282 Diag(Tok, diag::err_expected_colon_after) << "'default'";
Reid Spencer5f016e22007-07-11 17:01:13 +0000283 SkipUntil(tok::colon);
284 return true;
285 }
286
287 SourceLocation ColonLoc = ConsumeToken();
288
289 // Diagnose the common error "switch (X) {... default: }", which is not valid.
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000290 if (Tok.is(tok::r_brace)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000291 Diag(Tok, diag::err_label_end_of_compound_statement);
292 return true;
293 }
294
Sebastian Redl15faa7f2008-12-09 20:22:58 +0000295 OwningStmtResult SubStmt(Actions, ParseStatement());
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000296 if (SubStmt.isInvalid())
Reid Spencer5f016e22007-07-11 17:01:13 +0000297 return true;
298
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000299 return Actions.ActOnDefaultStmt(DefaultLoc, ColonLoc,
300 SubStmt.move(), CurScope);
Reid Spencer5f016e22007-07-11 17:01:13 +0000301}
302
303
304/// ParseCompoundStatement - Parse a "{}" block.
305///
306/// compound-statement: [C99 6.8.2]
307/// { block-item-list[opt] }
308/// [GNU] { label-declarations block-item-list } [TODO]
309///
310/// block-item-list:
311/// block-item
312/// block-item-list block-item
313///
314/// block-item:
315/// declaration
Chris Lattner45a566c2007-08-27 01:01:57 +0000316/// [GNU] '__extension__' declaration
Reid Spencer5f016e22007-07-11 17:01:13 +0000317/// statement
318/// [OMP] openmp-directive [TODO]
319///
320/// [GNU] label-declarations:
321/// [GNU] label-declaration
322/// [GNU] label-declarations label-declaration
323///
324/// [GNU] label-declaration:
325/// [GNU] '__label__' identifier-list ';'
326///
327/// [OMP] openmp-directive: [TODO]
328/// [OMP] barrier-directive
329/// [OMP] flush-directive
330///
Chris Lattner98414c12007-08-31 21:49:55 +0000331Parser::StmtResult Parser::ParseCompoundStatement(bool isStmtExpr) {
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000332 assert(Tok.is(tok::l_brace) && "Not a compount stmt!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000333
Chris Lattner31e05722007-08-26 06:24:45 +0000334 // Enter a scope to hold everything within the compound stmt. Compound
335 // statements can always hold declarations.
336 EnterScope(Scope::DeclScope);
Reid Spencer5f016e22007-07-11 17:01:13 +0000337
338 // Parse the statements in the body.
Sebastian Redl15faa7f2008-12-09 20:22:58 +0000339 OwningStmtResult Body(Actions, ParseCompoundStatementBody(isStmtExpr));
Reid Spencer5f016e22007-07-11 17:01:13 +0000340
341 ExitScope();
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000342 return Body.move();
Reid Spencer5f016e22007-07-11 17:01:13 +0000343}
344
345
346/// ParseCompoundStatementBody - Parse a sequence of statements and invoke the
Steve Naroff1b273c42007-09-16 14:56:35 +0000347/// ActOnCompoundStmt action. This expects the '{' to be the current token, and
Reid Spencer5f016e22007-07-11 17:01:13 +0000348/// consume the '}' at the end of the block. It does not manipulate the scope
349/// stack.
Chris Lattner98414c12007-08-31 21:49:55 +0000350Parser::StmtResult Parser::ParseCompoundStatementBody(bool isStmtExpr) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000351 SourceLocation LBraceLoc = ConsumeBrace(); // eat the '{'.
352
353 // TODO: "__label__ X, Y, Z;" is the GNU "Local Label" extension. These are
Chris Lattner45a566c2007-08-27 01:01:57 +0000354 // only allowed at the start of a compound stmt regardless of the language.
Sebastian Redla55e52c2008-11-25 22:21:31 +0000355
356 typedef StmtVector StmtsTy;
357 StmtsTy Stmts(Actions);
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000358 while (Tok.isNot(tok::r_brace) && Tok.isNot(tok::eof)) {
Sebastian Redl15faa7f2008-12-09 20:22:58 +0000359 OwningStmtResult R(Actions);
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000360 if (Tok.isNot(tok::kw___extension__)) {
Chris Lattner45a566c2007-08-27 01:01:57 +0000361 R = ParseStatementOrDeclaration(false);
362 } else {
363 // __extension__ can start declarations and it can also be a unary
364 // operator for expressions. Consume multiple __extension__ markers here
365 // until we can determine which is which.
366 SourceLocation ExtLoc = ConsumeToken();
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000367 while (Tok.is(tok::kw___extension__))
Chris Lattner45a566c2007-08-27 01:01:57 +0000368 ConsumeToken();
369
Chris Lattner043a0b52008-03-13 06:32:11 +0000370 // __extension__ silences extension warnings in the subexpression.
Chris Lattner39146d62008-10-20 06:51:33 +0000371 ExtensionRAIIObject O(Diags); // Use RAII to do this.
372
Chris Lattner45a566c2007-08-27 01:01:57 +0000373 // If this is the start of a declaration, parse it as such.
Argyrios Kyrtzidis5404a152008-10-05 00:06:24 +0000374 if (isDeclarationStatement()) {
Chris Lattner45a566c2007-08-27 01:01:57 +0000375 // FIXME: Save the __extension__ on the decl as a node somehow.
Chris Lattner81c018d2008-03-13 06:29:04 +0000376 SourceLocation DeclStart = Tok.getLocation();
377 DeclTy *Res = ParseDeclaration(Declarator::BlockContext);
378 // FIXME: Pass in the right location for the end of the declstmt.
Chris Lattner691a38b2008-03-13 06:29:54 +0000379 R = Actions.ActOnDeclStmt(Res, DeclStart, DeclStart);
Chris Lattner45a566c2007-08-27 01:01:57 +0000380 } else {
381 // Otherwise this was a unary __extension__ marker. Parse the
382 // subexpression and add the __extension__ unary op.
Sebastian Redl15faa7f2008-12-09 20:22:58 +0000383 OwningExprResult Res(Actions, ParseCastExpression(false));
Chris Lattner043a0b52008-03-13 06:32:11 +0000384
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000385 if (Res.isInvalid()) {
Chris Lattner45a566c2007-08-27 01:01:57 +0000386 SkipUntil(tok::semi);
387 continue;
388 }
389
390 // Add the __extension__ node to the AST.
Douglas Gregor74253732008-11-19 15:42:04 +0000391 Res = Actions.ActOnUnaryOp(CurScope, ExtLoc, tok::kw___extension__,
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000392 Res.move());
393 if (Res.isInvalid())
Chris Lattner45a566c2007-08-27 01:01:57 +0000394 continue;
395
Chris Lattner39146d62008-10-20 06:51:33 +0000396 // Eat the semicolon at the end of stmt and convert the expr into a
397 // statement.
Chris Lattner45a566c2007-08-27 01:01:57 +0000398 ExpectAndConsume(tok::semi, diag::err_expected_semi_after_expr);
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000399 R = Actions.ActOnExprStmt(Res.move());
Chris Lattner45a566c2007-08-27 01:01:57 +0000400 }
401 }
402
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000403 if (R.isUsable())
404 Stmts.push_back(R.move());
Reid Spencer5f016e22007-07-11 17:01:13 +0000405 }
406
407 // We broke out of the while loop because we found a '}' or EOF.
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000408 if (Tok.isNot(tok::r_brace)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000409 Diag(Tok, diag::err_expected_rbrace);
Steve Naroffd1a7cf82008-01-31 18:29:10 +0000410 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +0000411 }
412
413 SourceLocation RBraceLoc = ConsumeBrace();
Steve Naroff1b273c42007-09-16 14:56:35 +0000414 return Actions.ActOnCompoundStmt(LBraceLoc, RBraceLoc,
Sebastian Redla55e52c2008-11-25 22:21:31 +0000415 Stmts.take(), Stmts.size(), isStmtExpr);
Reid Spencer5f016e22007-07-11 17:01:13 +0000416}
417
418/// ParseIfStatement
419/// if-statement: [C99 6.8.4.1]
420/// 'if' '(' expression ')' statement
421/// 'if' '(' expression ')' statement 'else' statement
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +0000422/// [C++] 'if' '(' condition ')' statement
423/// [C++] 'if' '(' condition ')' statement 'else' statement
Reid Spencer5f016e22007-07-11 17:01:13 +0000424///
425Parser::StmtResult Parser::ParseIfStatement() {
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000426 assert(Tok.is(tok::kw_if) && "Not an if stmt!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000427 SourceLocation IfLoc = ConsumeToken(); // eat the 'if'.
428
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000429 if (Tok.isNot(tok::l_paren)) {
Chris Lattner1ab3b962008-11-18 07:48:38 +0000430 Diag(Tok, diag::err_expected_lparen_after) << "if";
Reid Spencer5f016e22007-07-11 17:01:13 +0000431 SkipUntil(tok::semi);
432 return true;
433 }
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +0000434
Argyrios Kyrtzidis488d37e2008-09-11 03:06:46 +0000435 bool C99orCXX = getLang().C99 || getLang().CPlusPlus;
436
Chris Lattner22153252007-08-26 23:08:06 +0000437 // C99 6.8.4p3 - In C99, the if statement is a block. This is not
438 // the case for C90.
Argyrios Kyrtzidis488d37e2008-09-11 03:06:46 +0000439 //
440 // C++ 6.4p3:
441 // A name introduced by a declaration in a condition is in scope from its
442 // point of declaration until the end of the substatements controlled by the
443 // condition.
Argyrios Kyrtzidis14d08c02008-09-11 23:08:39 +0000444 // C++ 3.3.2p4:
445 // Names declared in the for-init-statement, and in the condition of if,
446 // while, for, and switch statements are local to the if, while, for, or
447 // switch statement (including the controlled statement).
Argyrios Kyrtzidis488d37e2008-09-11 03:06:46 +0000448 //
449 if (C99orCXX)
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +0000450 EnterScope(Scope::DeclScope | Scope::ControlScope);
Chris Lattner22153252007-08-26 23:08:06 +0000451
Reid Spencer5f016e22007-07-11 17:01:13 +0000452 // Parse the condition.
Sebastian Redl15faa7f2008-12-09 20:22:58 +0000453 OwningExprResult CondExp(Actions);
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +0000454 if (getLang().CPlusPlus) {
455 SourceLocation LParenLoc = ConsumeParen();
456 CondExp = ParseCXXCondition();
457 MatchRHSPunctuation(tok::r_paren, LParenLoc);
458 } else {
459 CondExp = ParseSimpleParenExpression();
460 }
461
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000462 if (CondExp.isInvalid()) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000463 SkipUntil(tok::semi);
Argyrios Kyrtzidis488d37e2008-09-11 03:06:46 +0000464 if (C99orCXX)
Chris Lattner22153252007-08-26 23:08:06 +0000465 ExitScope();
Reid Spencer5f016e22007-07-11 17:01:13 +0000466 return true;
467 }
468
Chris Lattner0ecea032007-08-22 05:28:50 +0000469 // C99 6.8.4p3 - In C99, the body of the if statement is a scope, even if
Chris Lattner38484402007-08-22 05:33:11 +0000470 // there is no compound stmt. C90 does not have this clause. We only do this
471 // if the body isn't a compound statement to avoid push/pop in common cases.
Argyrios Kyrtzidis488d37e2008-09-11 03:06:46 +0000472 //
473 // C++ 6.4p1:
474 // The substatement in a selection-statement (each substatement, in the else
475 // form of the if statement) implicitly defines a local scope.
476 //
477 // For C++ we create a scope for the condition and a new scope for
478 // substatements because:
479 // -When the 'then' scope exits, we want the condition declaration to still be
480 // active for the 'else' scope too.
481 // -Sema will detect name clashes by considering declarations of a
482 // 'ControlScope' as part of its direct subscope.
483 // -If we wanted the condition and substatement to be in the same scope, we
484 // would have to notify ParseStatement not to create a new scope. It's
485 // simpler to let it create a new scope.
486 //
487 bool NeedsInnerScope = C99orCXX && Tok.isNot(tok::l_brace);
Chris Lattner31e05722007-08-26 06:24:45 +0000488 if (NeedsInnerScope) EnterScope(Scope::DeclScope);
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +0000489
Chris Lattnerb96728d2007-10-29 05:08:52 +0000490 // Read the 'then' stmt.
491 SourceLocation ThenStmtLoc = Tok.getLocation();
Sebastian Redl15faa7f2008-12-09 20:22:58 +0000492 OwningStmtResult ThenStmt(Actions, ParseStatement());
Reid Spencer5f016e22007-07-11 17:01:13 +0000493
Chris Lattnera36ce712007-08-22 05:16:28 +0000494 // Pop the 'if' scope if needed.
Chris Lattner38484402007-08-22 05:33:11 +0000495 if (NeedsInnerScope) ExitScope();
Reid Spencer5f016e22007-07-11 17:01:13 +0000496
497 // If it has an else, parse it.
498 SourceLocation ElseLoc;
Chris Lattnerb96728d2007-10-29 05:08:52 +0000499 SourceLocation ElseStmtLoc;
Sebastian Redl15faa7f2008-12-09 20:22:58 +0000500 OwningStmtResult ElseStmt(Actions);
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000501
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000502 if (Tok.is(tok::kw_else)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000503 ElseLoc = ConsumeToken();
Chris Lattnera36ce712007-08-22 05:16:28 +0000504
Chris Lattner0ecea032007-08-22 05:28:50 +0000505 // C99 6.8.4p3 - In C99, the body of the if statement is a scope, even if
Chris Lattner38484402007-08-22 05:33:11 +0000506 // there is no compound stmt. C90 does not have this clause. We only do
507 // this if the body isn't a compound statement to avoid push/pop in common
508 // cases.
Argyrios Kyrtzidis488d37e2008-09-11 03:06:46 +0000509 //
510 // C++ 6.4p1:
511 // The substatement in a selection-statement (each substatement, in the else
512 // form of the if statement) implicitly defines a local scope.
513 //
514 NeedsInnerScope = C99orCXX && Tok.isNot(tok::l_brace);
Chris Lattner31e05722007-08-26 06:24:45 +0000515 if (NeedsInnerScope) EnterScope(Scope::DeclScope);
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000516
Chris Lattnerb96728d2007-10-29 05:08:52 +0000517 ElseStmtLoc = Tok.getLocation();
Reid Spencer5f016e22007-07-11 17:01:13 +0000518 ElseStmt = ParseStatement();
Chris Lattnera36ce712007-08-22 05:16:28 +0000519
520 // Pop the 'else' scope if needed.
Chris Lattner38484402007-08-22 05:33:11 +0000521 if (NeedsInnerScope) ExitScope();
Reid Spencer5f016e22007-07-11 17:01:13 +0000522 }
523
Argyrios Kyrtzidis488d37e2008-09-11 03:06:46 +0000524 if (C99orCXX)
Chris Lattner22153252007-08-26 23:08:06 +0000525 ExitScope();
526
Chris Lattnerb96728d2007-10-29 05:08:52 +0000527 // If the then or else stmt is invalid and the other is valid (and present),
528 // make turn the invalid one into a null stmt to avoid dropping the other
529 // part. If both are invalid, return error.
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000530 if ((ThenStmt.isInvalid() && ElseStmt.isInvalid()) ||
531 (ThenStmt.isInvalid() && ElseStmt.get() == 0) ||
532 (ThenStmt.get() == 0 && ElseStmt.isInvalid())) {
Sebastian Redla55e52c2008-11-25 22:21:31 +0000533 // Both invalid, or one is invalid and other is non-present: return error.
Chris Lattnerb96728d2007-10-29 05:08:52 +0000534 return true;
535 }
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000536
Chris Lattnerb96728d2007-10-29 05:08:52 +0000537 // Now if either are invalid, replace with a ';'.
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000538 if (ThenStmt.isInvalid())
Chris Lattnerb96728d2007-10-29 05:08:52 +0000539 ThenStmt = Actions.ActOnNullStmt(ThenStmtLoc);
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000540 if (ElseStmt.isInvalid())
Chris Lattnerb96728d2007-10-29 05:08:52 +0000541 ElseStmt = Actions.ActOnNullStmt(ElseStmtLoc);
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000542
543 return Actions.ActOnIfStmt(IfLoc, CondExp.move(), ThenStmt.move(),
544 ElseLoc, ElseStmt.move());
Reid Spencer5f016e22007-07-11 17:01:13 +0000545}
546
547/// ParseSwitchStatement
548/// switch-statement:
549/// 'switch' '(' expression ')' statement
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +0000550/// [C++] 'switch' '(' condition ')' statement
Reid Spencer5f016e22007-07-11 17:01:13 +0000551Parser::StmtResult Parser::ParseSwitchStatement() {
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000552 assert(Tok.is(tok::kw_switch) && "Not a switch stmt!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000553 SourceLocation SwitchLoc = ConsumeToken(); // eat the 'switch'.
554
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000555 if (Tok.isNot(tok::l_paren)) {
Chris Lattner1ab3b962008-11-18 07:48:38 +0000556 Diag(Tok, diag::err_expected_lparen_after) << "switch";
Reid Spencer5f016e22007-07-11 17:01:13 +0000557 SkipUntil(tok::semi);
558 return true;
559 }
Chris Lattner22153252007-08-26 23:08:06 +0000560
Argyrios Kyrtzidis488d37e2008-09-11 03:06:46 +0000561 bool C99orCXX = getLang().C99 || getLang().CPlusPlus;
562
Chris Lattner22153252007-08-26 23:08:06 +0000563 // C99 6.8.4p3 - In C99, the switch statement is a block. This is
564 // not the case for C90. Start the switch scope.
Argyrios Kyrtzidis488d37e2008-09-11 03:06:46 +0000565 //
566 // C++ 6.4p3:
567 // A name introduced by a declaration in a condition is in scope from its
568 // point of declaration until the end of the substatements controlled by the
569 // condition.
Argyrios Kyrtzidis14d08c02008-09-11 23:08:39 +0000570 // C++ 3.3.2p4:
571 // Names declared in the for-init-statement, and in the condition of if,
572 // while, for, and switch statements are local to the if, while, for, or
573 // switch statement (including the controlled statement).
Argyrios Kyrtzidis488d37e2008-09-11 03:06:46 +0000574 //
575 if (C99orCXX)
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +0000576 EnterScope(Scope::BreakScope | Scope::DeclScope | Scope::ControlScope);
Chris Lattner22153252007-08-26 23:08:06 +0000577 else
578 EnterScope(Scope::BreakScope);
Reid Spencer5f016e22007-07-11 17:01:13 +0000579
580 // Parse the condition.
Sebastian Redl15faa7f2008-12-09 20:22:58 +0000581 OwningExprResult Cond(Actions);
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +0000582 if (getLang().CPlusPlus) {
583 SourceLocation LParenLoc = ConsumeParen();
584 Cond = ParseCXXCondition();
585 MatchRHSPunctuation(tok::r_paren, LParenLoc);
586 } else {
587 Cond = ParseSimpleParenExpression();
588 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000589
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000590 if (Cond.isInvalid()) {
Anders Carlssonc1fcb772007-07-22 07:07:56 +0000591 ExitScope();
592 return true;
593 }
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000594
Sebastian Redl15faa7f2008-12-09 20:22:58 +0000595 OwningStmtResult Switch(Actions, Actions.ActOnStartOfSwitchStmt(Cond.move()));
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000596
Chris Lattner0ecea032007-08-22 05:28:50 +0000597 // C99 6.8.4p3 - In C99, the body of the switch statement is a scope, even if
Chris Lattner38484402007-08-22 05:33:11 +0000598 // there is no compound stmt. C90 does not have this clause. We only do this
599 // if the body isn't a compound statement to avoid push/pop in common cases.
Argyrios Kyrtzidis488d37e2008-09-11 03:06:46 +0000600 //
601 // C++ 6.4p1:
602 // The substatement in a selection-statement (each substatement, in the else
603 // form of the if statement) implicitly defines a local scope.
604 //
605 // See comments in ParseIfStatement for why we create a scope for the
606 // condition and a new scope for substatement in C++.
607 //
608 bool NeedsInnerScope = C99orCXX && Tok.isNot(tok::l_brace);
Chris Lattner31e05722007-08-26 06:24:45 +0000609 if (NeedsInnerScope) EnterScope(Scope::DeclScope);
Chris Lattner0ecea032007-08-22 05:28:50 +0000610
Reid Spencer5f016e22007-07-11 17:01:13 +0000611 // Read the body statement.
Sebastian Redl15faa7f2008-12-09 20:22:58 +0000612 OwningStmtResult Body(Actions, ParseStatement());
Reid Spencer5f016e22007-07-11 17:01:13 +0000613
Chris Lattner0ecea032007-08-22 05:28:50 +0000614 // Pop the body scope if needed.
Chris Lattner38484402007-08-22 05:33:11 +0000615 if (NeedsInnerScope) ExitScope();
Chris Lattner0ecea032007-08-22 05:28:50 +0000616
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000617 if (Body.isInvalid()) {
Steve Naroff1b273c42007-09-16 14:56:35 +0000618 Body = Actions.ActOnNullStmt(Tok.getLocation());
Anders Carlssonc1fcb772007-07-22 07:07:56 +0000619 // FIXME: Remove the case statement list from the Switch statement.
620 }
621
Reid Spencer5f016e22007-07-11 17:01:13 +0000622 ExitScope();
623
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000624 return Actions.ActOnFinishSwitchStmt(SwitchLoc, Switch.move(), Body.move());
Reid Spencer5f016e22007-07-11 17:01:13 +0000625}
626
627/// ParseWhileStatement
628/// while-statement: [C99 6.8.5.1]
629/// 'while' '(' expression ')' statement
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +0000630/// [C++] 'while' '(' condition ')' statement
Reid Spencer5f016e22007-07-11 17:01:13 +0000631Parser::StmtResult Parser::ParseWhileStatement() {
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000632 assert(Tok.is(tok::kw_while) && "Not a while stmt!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000633 SourceLocation WhileLoc = Tok.getLocation();
634 ConsumeToken(); // eat the 'while'.
635
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000636 if (Tok.isNot(tok::l_paren)) {
Chris Lattner1ab3b962008-11-18 07:48:38 +0000637 Diag(Tok, diag::err_expected_lparen_after) << "while";
Reid Spencer5f016e22007-07-11 17:01:13 +0000638 SkipUntil(tok::semi);
639 return true;
640 }
641
Argyrios Kyrtzidis488d37e2008-09-11 03:06:46 +0000642 bool C99orCXX = getLang().C99 || getLang().CPlusPlus;
643
Chris Lattner22153252007-08-26 23:08:06 +0000644 // C99 6.8.5p5 - In C99, the while statement is a block. This is not
645 // the case for C90. Start the loop scope.
Argyrios Kyrtzidis488d37e2008-09-11 03:06:46 +0000646 //
647 // C++ 6.4p3:
648 // A name introduced by a declaration in a condition is in scope from its
649 // point of declaration until the end of the substatements controlled by the
650 // condition.
Argyrios Kyrtzidis14d08c02008-09-11 23:08:39 +0000651 // C++ 3.3.2p4:
652 // Names declared in the for-init-statement, and in the condition of if,
653 // while, for, and switch statements are local to the if, while, for, or
654 // switch statement (including the controlled statement).
Argyrios Kyrtzidis488d37e2008-09-11 03:06:46 +0000655 //
656 if (C99orCXX)
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +0000657 EnterScope(Scope::BreakScope | Scope::ContinueScope |
658 Scope::DeclScope | Scope::ControlScope);
Chris Lattner22153252007-08-26 23:08:06 +0000659 else
660 EnterScope(Scope::BreakScope | Scope::ContinueScope);
Reid Spencer5f016e22007-07-11 17:01:13 +0000661
662 // Parse the condition.
Sebastian Redl15faa7f2008-12-09 20:22:58 +0000663 OwningExprResult Cond(Actions);
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +0000664 if (getLang().CPlusPlus) {
665 SourceLocation LParenLoc = ConsumeParen();
666 Cond = ParseCXXCondition();
667 MatchRHSPunctuation(tok::r_paren, LParenLoc);
668 } else {
669 Cond = ParseSimpleParenExpression();
670 }
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000671
Chris Lattner0ecea032007-08-22 05:28:50 +0000672 // C99 6.8.5p5 - In C99, the body of the if statement is a scope, even if
Chris Lattner38484402007-08-22 05:33:11 +0000673 // there is no compound stmt. C90 does not have this clause. We only do this
674 // if the body isn't a compound statement to avoid push/pop in common cases.
Argyrios Kyrtzidis488d37e2008-09-11 03:06:46 +0000675 //
676 // C++ 6.5p2:
677 // The substatement in an iteration-statement implicitly defines a local scope
678 // which is entered and exited each time through the loop.
679 //
680 // See comments in ParseIfStatement for why we create a scope for the
681 // condition and a new scope for substatement in C++.
682 //
683 bool NeedsInnerScope = C99orCXX && Tok.isNot(tok::l_brace);
Chris Lattner31e05722007-08-26 06:24:45 +0000684 if (NeedsInnerScope) EnterScope(Scope::DeclScope);
Chris Lattner0ecea032007-08-22 05:28:50 +0000685
Reid Spencer5f016e22007-07-11 17:01:13 +0000686 // Read the body statement.
Sebastian Redl15faa7f2008-12-09 20:22:58 +0000687 OwningStmtResult Body(Actions, ParseStatement());
Reid Spencer5f016e22007-07-11 17:01:13 +0000688
Chris Lattner0ecea032007-08-22 05:28:50 +0000689 // Pop the body scope if needed.
Chris Lattner38484402007-08-22 05:33:11 +0000690 if (NeedsInnerScope) ExitScope();
Chris Lattner0ecea032007-08-22 05:28:50 +0000691
Reid Spencer5f016e22007-07-11 17:01:13 +0000692 ExitScope();
693
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000694 if (Cond.isInvalid() || Body.isInvalid()) return true;
Reid Spencer5f016e22007-07-11 17:01:13 +0000695
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000696 return Actions.ActOnWhileStmt(WhileLoc, Cond.move(), Body.move());
Reid Spencer5f016e22007-07-11 17:01:13 +0000697}
698
699/// ParseDoStatement
700/// do-statement: [C99 6.8.5.2]
701/// 'do' statement 'while' '(' expression ')' ';'
702/// Note: this lets the caller parse the end ';'.
703Parser::StmtResult Parser::ParseDoStatement() {
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000704 assert(Tok.is(tok::kw_do) && "Not a do stmt!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000705 SourceLocation DoLoc = ConsumeToken(); // eat the 'do'.
706
Chris Lattner22153252007-08-26 23:08:06 +0000707 // C99 6.8.5p5 - In C99, the do statement is a block. This is not
708 // the case for C90. Start the loop scope.
709 if (getLang().C99)
710 EnterScope(Scope::BreakScope | Scope::ContinueScope | Scope::DeclScope);
711 else
712 EnterScope(Scope::BreakScope | Scope::ContinueScope);
Reid Spencer5f016e22007-07-11 17:01:13 +0000713
Chris Lattner0ecea032007-08-22 05:28:50 +0000714 // C99 6.8.5p5 - In C99, the body of the if statement is a scope, even if
Chris Lattner38484402007-08-22 05:33:11 +0000715 // there is no compound stmt. C90 does not have this clause. We only do this
716 // if the body isn't a compound statement to avoid push/pop in common cases.
Argyrios Kyrtzidis143db712008-09-11 04:46:46 +0000717 //
718 // C++ 6.5p2:
719 // The substatement in an iteration-statement implicitly defines a local scope
720 // which is entered and exited each time through the loop.
721 //
Chris Lattner19504402008-11-13 18:52:53 +0000722 bool NeedsInnerScope =
723 (getLang().C99 || getLang().CPlusPlus) && Tok.isNot(tok::l_brace);
Chris Lattner31e05722007-08-26 06:24:45 +0000724 if (NeedsInnerScope) EnterScope(Scope::DeclScope);
Chris Lattner0ecea032007-08-22 05:28:50 +0000725
Reid Spencer5f016e22007-07-11 17:01:13 +0000726 // Read the body statement.
Sebastian Redl15faa7f2008-12-09 20:22:58 +0000727 OwningStmtResult Body(Actions, ParseStatement());
Reid Spencer5f016e22007-07-11 17:01:13 +0000728
Chris Lattner0ecea032007-08-22 05:28:50 +0000729 // Pop the body scope if needed.
Chris Lattner38484402007-08-22 05:33:11 +0000730 if (NeedsInnerScope) ExitScope();
Chris Lattner0ecea032007-08-22 05:28:50 +0000731
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000732 if (Tok.isNot(tok::kw_while)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000733 ExitScope();
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000734 if (!Body.isInvalid()) {
Chris Lattner19504402008-11-13 18:52:53 +0000735 Diag(Tok, diag::err_expected_while);
Chris Lattner28eb7e92008-11-23 23:17:07 +0000736 Diag(DoLoc, diag::note_matching) << "do";
Chris Lattner19504402008-11-13 18:52:53 +0000737 SkipUntil(tok::semi, false, true);
738 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000739 return true;
740 }
741 SourceLocation WhileLoc = ConsumeToken();
742
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000743 if (Tok.isNot(tok::l_paren)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000744 ExitScope();
Chris Lattner1ab3b962008-11-18 07:48:38 +0000745 Diag(Tok, diag::err_expected_lparen_after) << "do/while";
Chris Lattner19504402008-11-13 18:52:53 +0000746 SkipUntil(tok::semi, false, true);
Reid Spencer5f016e22007-07-11 17:01:13 +0000747 return true;
748 }
749
750 // Parse the condition.
Sebastian Redl15faa7f2008-12-09 20:22:58 +0000751 OwningExprResult Cond(Actions, ParseSimpleParenExpression());
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000752
Reid Spencer5f016e22007-07-11 17:01:13 +0000753 ExitScope();
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000754
755 if (Cond.isInvalid() || Body.isInvalid()) return true;
756
757 return Actions.ActOnDoStmt(DoLoc, Body.move(), WhileLoc, Cond.move());
Reid Spencer5f016e22007-07-11 17:01:13 +0000758}
759
760/// ParseForStatement
761/// for-statement: [C99 6.8.5.3]
762/// 'for' '(' expr[opt] ';' expr[opt] ';' expr[opt] ')' statement
763/// 'for' '(' declaration expr[opt] ';' expr[opt] ')' statement
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +0000764/// [C++] 'for' '(' for-init-statement condition[opt] ';' expression[opt] ')'
765/// [C++] statement
Fariborz Jahanian3ba5a0f2008-01-03 17:55:25 +0000766/// [OBJC2] 'for' '(' declaration 'in' expr ')' statement
767/// [OBJC2] 'for' '(' expr 'in' expr ')' statement
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +0000768///
769/// [C++] for-init-statement:
770/// [C++] expression-statement
771/// [C++] simple-declaration
772///
Reid Spencer5f016e22007-07-11 17:01:13 +0000773Parser::StmtResult Parser::ParseForStatement() {
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000774 assert(Tok.is(tok::kw_for) && "Not a for stmt!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000775 SourceLocation ForLoc = ConsumeToken(); // eat the 'for'.
776
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000777 if (Tok.isNot(tok::l_paren)) {
Chris Lattner1ab3b962008-11-18 07:48:38 +0000778 Diag(Tok, diag::err_expected_lparen_after) << "for";
Reid Spencer5f016e22007-07-11 17:01:13 +0000779 SkipUntil(tok::semi);
780 return true;
781 }
782
Argyrios Kyrtzidis488d37e2008-09-11 03:06:46 +0000783 bool C99orCXX = getLang().C99 || getLang().CPlusPlus;
784
Chris Lattner22153252007-08-26 23:08:06 +0000785 // C99 6.8.5p5 - In C99, the for statement is a block. This is not
786 // the case for C90. Start the loop scope.
Argyrios Kyrtzidis488d37e2008-09-11 03:06:46 +0000787 //
788 // C++ 6.4p3:
789 // A name introduced by a declaration in a condition is in scope from its
790 // point of declaration until the end of the substatements controlled by the
791 // condition.
Argyrios Kyrtzidis14d08c02008-09-11 23:08:39 +0000792 // C++ 3.3.2p4:
793 // Names declared in the for-init-statement, and in the condition of if,
794 // while, for, and switch statements are local to the if, while, for, or
795 // switch statement (including the controlled statement).
Argyrios Kyrtzidis488d37e2008-09-11 03:06:46 +0000796 // C++ 6.5.3p1:
797 // Names declared in the for-init-statement are in the same declarative-region
798 // as those declared in the condition.
799 //
800 if (C99orCXX)
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +0000801 EnterScope(Scope::BreakScope | Scope::ContinueScope |
802 Scope::DeclScope | Scope::ControlScope);
Chris Lattner22153252007-08-26 23:08:06 +0000803 else
804 EnterScope(Scope::BreakScope | Scope::ContinueScope);
Reid Spencer5f016e22007-07-11 17:01:13 +0000805
806 SourceLocation LParenLoc = ConsumeParen();
Sebastian Redl15faa7f2008-12-09 20:22:58 +0000807 OwningExprResult Value(Actions);
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000808
Fariborz Jahanianbdd15f72008-01-04 23:23:46 +0000809 bool ForEach = false;
Sebastian Redl15faa7f2008-12-09 20:22:58 +0000810 OwningStmtResult FirstPart(Actions), ThirdPart(Actions);
811 OwningExprResult SecondPart(Actions);
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000812
Reid Spencer5f016e22007-07-11 17:01:13 +0000813 // Parse the first part of the for specifier.
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000814 if (Tok.is(tok::semi)) { // for (;
Reid Spencer5f016e22007-07-11 17:01:13 +0000815 // no first part, eat the ';'.
816 ConsumeToken();
Argyrios Kyrtzidisbbc70c02008-10-05 15:50:46 +0000817 } else if (isSimpleDeclaration()) { // for (int X = 4;
Reid Spencer5f016e22007-07-11 17:01:13 +0000818 // Parse declaration, which eats the ';'.
Argyrios Kyrtzidis488d37e2008-09-11 03:06:46 +0000819 if (!C99orCXX) // Use of C99-style for loops in C90 mode?
Reid Spencer5f016e22007-07-11 17:01:13 +0000820 Diag(Tok, diag::ext_c99_variable_decl_in_for_loop);
Chris Lattner81c018d2008-03-13 06:29:04 +0000821
822 SourceLocation DeclStart = Tok.getLocation();
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +0000823 DeclTy *aBlockVarDecl = ParseSimpleDeclaration(Declarator::ForContext);
Chris Lattner81c018d2008-03-13 06:29:04 +0000824 // FIXME: Pass in the right location for the end of the declstmt.
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000825 FirstPart = Actions.ActOnDeclStmt(aBlockVarDecl, DeclStart,
826 DeclStart);
Fariborz Jahanianbdd15f72008-01-04 23:23:46 +0000827 if ((ForEach = isTokIdentifier_in())) {
Fariborz Jahanian3ba5a0f2008-01-03 17:55:25 +0000828 ConsumeToken(); // consume 'in'
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000829 SecondPart = ParseExpression();
Fariborz Jahanian3ba5a0f2008-01-03 17:55:25 +0000830 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000831 } else {
832 Value = ParseExpression();
833
834 // Turn the expression into a stmt.
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000835 if (!Value.isInvalid())
836 FirstPart = Actions.ActOnExprStmt(Value.move());
Reid Spencer5f016e22007-07-11 17:01:13 +0000837
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000838 if (Tok.is(tok::semi)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000839 ConsumeToken();
Fariborz Jahanian3ba5a0f2008-01-03 17:55:25 +0000840 }
Fariborz Jahanianbdd15f72008-01-04 23:23:46 +0000841 else if ((ForEach = isTokIdentifier_in())) {
Fariborz Jahanian3ba5a0f2008-01-03 17:55:25 +0000842 ConsumeToken(); // consume 'in'
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000843 SecondPart = ParseExpression();
Fariborz Jahanian3ba5a0f2008-01-03 17:55:25 +0000844 }
845 else {
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000846 if (!Value.isInvalid()) Diag(Tok, diag::err_expected_semi_for);
Reid Spencer5f016e22007-07-11 17:01:13 +0000847 SkipUntil(tok::semi);
848 }
849 }
Fariborz Jahanianbdd15f72008-01-04 23:23:46 +0000850 if (!ForEach) {
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000851 assert(!SecondPart.get() && "Shouldn't have a second expression yet.");
Fariborz Jahanian3ba5a0f2008-01-03 17:55:25 +0000852 // Parse the second part of the for specifier.
853 if (Tok.is(tok::semi)) { // for (...;;
854 // no second part.
Fariborz Jahanian3ba5a0f2008-01-03 17:55:25 +0000855 } else {
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000856 SecondPart = getLang().CPlusPlus ? ParseCXXCondition()
857 : ParseExpression();
Fariborz Jahanian3ba5a0f2008-01-03 17:55:25 +0000858 }
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000859
Fariborz Jahanian3ba5a0f2008-01-03 17:55:25 +0000860 if (Tok.is(tok::semi)) {
861 ConsumeToken();
862 } else {
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000863 if (!SecondPart.isInvalid()) Diag(Tok, diag::err_expected_semi_for);
Fariborz Jahanian3ba5a0f2008-01-03 17:55:25 +0000864 SkipUntil(tok::semi);
865 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000866
Fariborz Jahanian3ba5a0f2008-01-03 17:55:25 +0000867 // Parse the third part of the for specifier.
868 if (Tok.is(tok::r_paren)) { // for (...;...;)
869 // no third part.
Fariborz Jahanian3ba5a0f2008-01-03 17:55:25 +0000870 } else {
871 Value = ParseExpression();
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000872 if (!Value.isInvalid()) {
Fariborz Jahanian3ba5a0f2008-01-03 17:55:25 +0000873 // Turn the expression into a stmt.
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000874 ThirdPart = Actions.ActOnExprStmt(Value.move());
Fariborz Jahanian3ba5a0f2008-01-03 17:55:25 +0000875 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000876 }
877 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000878 // Match the ')'.
879 SourceLocation RParenLoc = MatchRHSPunctuation(tok::r_paren, LParenLoc);
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000880
Chris Lattner0ecea032007-08-22 05:28:50 +0000881 // C99 6.8.5p5 - In C99, the body of the if statement is a scope, even if
Chris Lattner38484402007-08-22 05:33:11 +0000882 // there is no compound stmt. C90 does not have this clause. We only do this
883 // if the body isn't a compound statement to avoid push/pop in common cases.
Argyrios Kyrtzidis488d37e2008-09-11 03:06:46 +0000884 //
885 // C++ 6.5p2:
886 // The substatement in an iteration-statement implicitly defines a local scope
887 // which is entered and exited each time through the loop.
888 //
889 // See comments in ParseIfStatement for why we create a scope for
890 // for-init-statement/condition and a new scope for substatement in C++.
891 //
892 bool NeedsInnerScope = C99orCXX && Tok.isNot(tok::l_brace);
Chris Lattner31e05722007-08-26 06:24:45 +0000893 if (NeedsInnerScope) EnterScope(Scope::DeclScope);
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000894
Reid Spencer5f016e22007-07-11 17:01:13 +0000895 // Read the body statement.
Sebastian Redl15faa7f2008-12-09 20:22:58 +0000896 OwningStmtResult Body(Actions, ParseStatement());
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000897
Chris Lattner0ecea032007-08-22 05:28:50 +0000898 // Pop the body scope if needed.
Chris Lattner38484402007-08-22 05:33:11 +0000899 if (NeedsInnerScope) ExitScope();
Chris Lattner0ecea032007-08-22 05:28:50 +0000900
Reid Spencer5f016e22007-07-11 17:01:13 +0000901 // Leave the for-scope.
902 ExitScope();
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000903
904 if (Body.isInvalid())
905 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +0000906
Fariborz Jahanianbdd15f72008-01-04 23:23:46 +0000907 if (!ForEach)
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000908 return Actions.ActOnForStmt(ForLoc, LParenLoc, FirstPart.move(),
909 SecondPart.move(), ThirdPart.move(), RParenLoc,
910 Body.move());
Fariborz Jahanianbdd15f72008-01-04 23:23:46 +0000911 else
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000912 return Actions.ActOnObjCForCollectionStmt(ForLoc, LParenLoc,
913 FirstPart.move(),
914 SecondPart.move(),
915 RParenLoc, Body.move());
Reid Spencer5f016e22007-07-11 17:01:13 +0000916}
917
918/// ParseGotoStatement
919/// jump-statement:
920/// 'goto' identifier ';'
921/// [GNU] 'goto' '*' expression ';'
922///
923/// Note: this lets the caller parse the end ';'.
924///
925Parser::StmtResult Parser::ParseGotoStatement() {
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000926 assert(Tok.is(tok::kw_goto) && "Not a goto stmt!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000927 SourceLocation GotoLoc = ConsumeToken(); // eat the 'goto'.
928
Sebastian Redl15faa7f2008-12-09 20:22:58 +0000929 OwningStmtResult Res(Actions);
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000930 if (Tok.is(tok::identifier)) {
Steve Naroff1b273c42007-09-16 14:56:35 +0000931 Res = Actions.ActOnGotoStmt(GotoLoc, Tok.getLocation(),
Reid Spencer5f016e22007-07-11 17:01:13 +0000932 Tok.getIdentifierInfo());
933 ConsumeToken();
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000934 } else if (Tok.is(tok::star) && !getLang().NoExtensions) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000935 // GNU indirect goto extension.
936 Diag(Tok, diag::ext_gnu_indirect_goto);
937 SourceLocation StarLoc = ConsumeToken();
Sebastian Redl15faa7f2008-12-09 20:22:58 +0000938 OwningExprResult R(Actions, ParseExpression());
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000939 if (R.isInvalid()) { // Skip to the semicolon, but don't consume it.
Reid Spencer5f016e22007-07-11 17:01:13 +0000940 SkipUntil(tok::semi, false, true);
941 return true;
942 }
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000943 Res = Actions.ActOnIndirectGotoStmt(GotoLoc, StarLoc, R.move());
Chris Lattner95cfb852007-07-22 04:13:33 +0000944 } else {
945 Diag(Tok, diag::err_expected_ident);
946 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +0000947 }
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000948
949 return Res.move();
Reid Spencer5f016e22007-07-11 17:01:13 +0000950}
951
952/// ParseContinueStatement
953/// jump-statement:
954/// 'continue' ';'
955///
956/// Note: this lets the caller parse the end ';'.
957///
958Parser::StmtResult Parser::ParseContinueStatement() {
959 SourceLocation ContinueLoc = ConsumeToken(); // eat the 'continue'.
Steve Naroff1b273c42007-09-16 14:56:35 +0000960 return Actions.ActOnContinueStmt(ContinueLoc, CurScope);
Reid Spencer5f016e22007-07-11 17:01:13 +0000961}
962
963/// ParseBreakStatement
964/// jump-statement:
965/// 'break' ';'
966///
967/// Note: this lets the caller parse the end ';'.
968///
969Parser::StmtResult Parser::ParseBreakStatement() {
970 SourceLocation BreakLoc = ConsumeToken(); // eat the 'break'.
Steve Naroff1b273c42007-09-16 14:56:35 +0000971 return Actions.ActOnBreakStmt(BreakLoc, CurScope);
Reid Spencer5f016e22007-07-11 17:01:13 +0000972}
973
974/// ParseReturnStatement
975/// jump-statement:
976/// 'return' expression[opt] ';'
977Parser::StmtResult Parser::ParseReturnStatement() {
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000978 assert(Tok.is(tok::kw_return) && "Not a return stmt!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000979 SourceLocation ReturnLoc = ConsumeToken(); // eat the 'return'.
980
Sebastian Redl15faa7f2008-12-09 20:22:58 +0000981 OwningExprResult R(Actions);
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000982 if (Tok.isNot(tok::semi)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000983 R = ParseExpression();
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000984 if (R.isInvalid()) { // Skip to the semicolon, but don't consume it.
Reid Spencer5f016e22007-07-11 17:01:13 +0000985 SkipUntil(tok::semi, false, true);
986 return true;
987 }
988 }
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000989 return Actions.ActOnReturnStmt(ReturnLoc, R.move());
Reid Spencer5f016e22007-07-11 17:01:13 +0000990}
991
Steve Naroff5f8aa692008-02-11 23:15:56 +0000992/// FuzzyParseMicrosoftAsmStatement. When -fms-extensions is enabled, this
993/// routine is called to skip/ignore tokens that comprise the MS asm statement.
Steve Naroffd62701b2008-02-07 03:50:06 +0000994Parser::StmtResult Parser::FuzzyParseMicrosoftAsmStatement() {
Steve Naroffb746ce82008-02-07 23:24:32 +0000995 if (Tok.is(tok::l_brace)) {
996 unsigned short savedBraceCount = BraceCount;
997 do {
998 ConsumeAnyToken();
999 } while (BraceCount > savedBraceCount && Tok.isNot(tok::eof));
1000 } else {
1001 // From the MS website: If used without braces, the __asm keyword means
1002 // that the rest of the line is an assembly-language statement.
1003 SourceManager &SrcMgr = PP.getSourceManager();
Steve Naroff03d6bc62008-02-08 03:36:19 +00001004 SourceLocation TokLoc = Tok.getLocation();
Steve Naroff36280972008-02-08 18:01:27 +00001005 unsigned lineNo = SrcMgr.getLogicalLineNumber(TokLoc);
1006 do {
1007 ConsumeAnyToken();
1008 TokLoc = Tok.getLocation();
1009 } while ((SrcMgr.getLogicalLineNumber(TokLoc) == lineNo) &&
1010 Tok.isNot(tok::r_brace) && Tok.isNot(tok::semi) &&
1011 Tok.isNot(tok::eof));
Steve Naroffb746ce82008-02-07 23:24:32 +00001012 }
Steve Naroffd77bc282008-04-07 21:06:54 +00001013 return Actions.ActOnNullStmt(Tok.getLocation());
Steve Naroffd62701b2008-02-07 03:50:06 +00001014}
1015
Reid Spencer5f016e22007-07-11 17:01:13 +00001016/// ParseAsmStatement - Parse a GNU extended asm statement.
Steve Naroff5f8aa692008-02-11 23:15:56 +00001017/// asm-statement:
1018/// gnu-asm-statement
1019/// ms-asm-statement
1020///
1021/// [GNU] gnu-asm-statement:
Reid Spencer5f016e22007-07-11 17:01:13 +00001022/// 'asm' type-qualifier[opt] '(' asm-argument ')' ';'
1023///
1024/// [GNU] asm-argument:
1025/// asm-string-literal
1026/// asm-string-literal ':' asm-operands[opt]
1027/// asm-string-literal ':' asm-operands[opt] ':' asm-operands[opt]
1028/// asm-string-literal ':' asm-operands[opt] ':' asm-operands[opt]
1029/// ':' asm-clobbers
1030///
1031/// [GNU] asm-clobbers:
1032/// asm-string-literal
1033/// asm-clobbers ',' asm-string-literal
1034///
Steve Naroff5f8aa692008-02-11 23:15:56 +00001035/// [MS] ms-asm-statement:
1036/// '__asm' assembly-instruction ';'[opt]
1037/// '__asm' '{' assembly-instruction-list '}' ';'[opt]
1038///
1039/// [MS] assembly-instruction-list:
1040/// assembly-instruction ';'[opt]
1041/// assembly-instruction-list ';' assembly-instruction ';'[opt]
1042///
Steve Naroffd62701b2008-02-07 03:50:06 +00001043Parser::StmtResult Parser::ParseAsmStatement(bool &msAsm) {
Chris Lattner4e1d99a2007-10-09 17:41:39 +00001044 assert(Tok.is(tok::kw_asm) && "Not an asm stmt");
Chris Lattnerfe795952007-10-29 04:04:16 +00001045 SourceLocation AsmLoc = ConsumeToken();
Reid Spencer5f016e22007-07-11 17:01:13 +00001046
Steve Naroff5f8aa692008-02-11 23:15:56 +00001047 if (getLang().Microsoft && Tok.isNot(tok::l_paren) && !isTypeQualifier()) {
Steve Naroffd62701b2008-02-07 03:50:06 +00001048 msAsm = true;
1049 return FuzzyParseMicrosoftAsmStatement();
1050 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001051 DeclSpec DS;
1052 SourceLocation Loc = Tok.getLocation();
1053 ParseTypeQualifierListOpt(DS);
1054
1055 // GNU asms accept, but warn, about type-qualifiers other than volatile.
1056 if (DS.getTypeQualifiers() & DeclSpec::TQ_const)
Chris Lattner1ab3b962008-11-18 07:48:38 +00001057 Diag(Loc, diag::w_asm_qualifier_ignored) << "const";
Reid Spencer5f016e22007-07-11 17:01:13 +00001058 if (DS.getTypeQualifiers() & DeclSpec::TQ_restrict)
Chris Lattner1ab3b962008-11-18 07:48:38 +00001059 Diag(Loc, diag::w_asm_qualifier_ignored) << "restrict";
Reid Spencer5f016e22007-07-11 17:01:13 +00001060
1061 // Remember if this was a volatile asm.
Anders Carlsson39c47b52007-11-23 23:12:25 +00001062 bool isVolatile = DS.getTypeQualifiers() & DeclSpec::TQ_volatile;
Anders Carlssondfab34a2008-02-05 23:03:50 +00001063 bool isSimple = false;
Chris Lattner4e1d99a2007-10-09 17:41:39 +00001064 if (Tok.isNot(tok::l_paren)) {
Chris Lattner1ab3b962008-11-18 07:48:38 +00001065 Diag(Tok, diag::err_expected_lparen_after) << "asm";
Reid Spencer5f016e22007-07-11 17:01:13 +00001066 SkipUntil(tok::r_paren);
1067 return true;
1068 }
1069 Loc = ConsumeParen();
1070
Sebastian Redl15faa7f2008-12-09 20:22:58 +00001071 OwningExprResult AsmString(Actions, ParseAsmStringLiteral());
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001072 if (AsmString.isInvalid())
Anders Carlsson6a0ef4b2007-11-20 19:21:03 +00001073 return true;
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001074
Anders Carlssonb235fc22007-11-22 01:36:19 +00001075 llvm::SmallVector<std::string, 4> Names;
Sebastian Redla55e52c2008-11-25 22:21:31 +00001076 ExprVector Constraints(Actions);
1077 ExprVector Exprs(Actions);
1078 ExprVector Clobbers(Actions);
Reid Spencer5f016e22007-07-11 17:01:13 +00001079
Anders Carlssondfab34a2008-02-05 23:03:50 +00001080 unsigned NumInputs = 0, NumOutputs = 0;
1081
1082 SourceLocation RParenLoc;
1083 if (Tok.is(tok::r_paren)) {
1084 // We have a simple asm expression
1085 isSimple = true;
1086
1087 RParenLoc = ConsumeParen();
1088 } else {
Sebastian Redla55e52c2008-11-25 22:21:31 +00001089 // Parse Outputs, if present.
Anders Carlsson8bd36fc2008-02-09 19:57:29 +00001090 if (ParseAsmOperandsOpt(Names, Constraints, Exprs))
1091 return true;
Anders Carlssondfab34a2008-02-05 23:03:50 +00001092
1093 NumOutputs = Names.size();
1094
1095 // Parse Inputs, if present.
Anders Carlsson8bd36fc2008-02-09 19:57:29 +00001096 if (ParseAsmOperandsOpt(Names, Constraints, Exprs))
1097 return true;
1098
Anders Carlssondfab34a2008-02-05 23:03:50 +00001099 assert(Names.size() == Constraints.size() &&
1100 Constraints.size() == Exprs.size()
1101 && "Input operand size mismatch!");
1102
1103 NumInputs = Names.size() - NumOutputs;
1104
1105 // Parse the clobbers, if present.
1106 if (Tok.is(tok::colon)) {
Anders Carlssoneecf8472007-11-21 23:27:34 +00001107 ConsumeToken();
Anders Carlssondfab34a2008-02-05 23:03:50 +00001108
1109 // Parse the asm-string list for clobbers.
1110 while (1) {
Sebastian Redl15faa7f2008-12-09 20:22:58 +00001111 OwningExprResult Clobber(Actions, ParseAsmStringLiteral());
Anders Carlssondfab34a2008-02-05 23:03:50 +00001112
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001113 if (Clobber.isInvalid())
Anders Carlssondfab34a2008-02-05 23:03:50 +00001114 break;
1115
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001116 Clobbers.push_back(Clobber.move());
Anders Carlssondfab34a2008-02-05 23:03:50 +00001117
1118 if (Tok.isNot(tok::comma)) break;
1119 ConsumeToken();
1120 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001121 }
Anders Carlssondfab34a2008-02-05 23:03:50 +00001122
1123 RParenLoc = MatchRHSPunctuation(tok::r_paren, Loc);
Reid Spencer5f016e22007-07-11 17:01:13 +00001124 }
1125
Anders Carlssondfab34a2008-02-05 23:03:50 +00001126 return Actions.ActOnAsmStmt(AsmLoc, isSimple, isVolatile,
1127 NumOutputs, NumInputs,
Sebastian Redla55e52c2008-11-25 22:21:31 +00001128 &Names[0], Constraints.take(),
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001129 Exprs.take(), AsmString.move(),
Sebastian Redla55e52c2008-11-25 22:21:31 +00001130 Clobbers.size(), Clobbers.take(),
Anders Carlssonb235fc22007-11-22 01:36:19 +00001131 RParenLoc);
Reid Spencer5f016e22007-07-11 17:01:13 +00001132}
1133
1134/// ParseAsmOperands - Parse the asm-operands production as used by
1135/// asm-statement. We also parse a leading ':' token. If the leading colon is
1136/// not present, we do not parse anything.
1137///
1138/// [GNU] asm-operands:
1139/// asm-operand
1140/// asm-operands ',' asm-operand
1141///
1142/// [GNU] asm-operand:
1143/// asm-string-literal '(' expression ')'
1144/// '[' identifier ']' asm-string-literal '(' expression ')'
1145///
Anders Carlsson8bd36fc2008-02-09 19:57:29 +00001146bool Parser::ParseAsmOperandsOpt(llvm::SmallVectorImpl<std::string> &Names,
Anders Carlssonb235fc22007-11-22 01:36:19 +00001147 llvm::SmallVectorImpl<ExprTy*> &Constraints,
1148 llvm::SmallVectorImpl<ExprTy*> &Exprs) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001149 // Only do anything if this operand is present.
Anders Carlsson8bd36fc2008-02-09 19:57:29 +00001150 if (Tok.isNot(tok::colon)) return false;
Reid Spencer5f016e22007-07-11 17:01:13 +00001151 ConsumeToken();
1152
1153 // 'asm-operands' isn't present?
Chris Lattner4e1d99a2007-10-09 17:41:39 +00001154 if (!isTokenStringLiteral() && Tok.isNot(tok::l_square))
Anders Carlsson8bd36fc2008-02-09 19:57:29 +00001155 return false;
Reid Spencer5f016e22007-07-11 17:01:13 +00001156
Anders Carlssonb235fc22007-11-22 01:36:19 +00001157 while (1) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001158 // Read the [id] if present.
Chris Lattner4e1d99a2007-10-09 17:41:39 +00001159 if (Tok.is(tok::l_square)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001160 SourceLocation Loc = ConsumeBracket();
1161
Chris Lattner4e1d99a2007-10-09 17:41:39 +00001162 if (Tok.isNot(tok::identifier)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001163 Diag(Tok, diag::err_expected_ident);
1164 SkipUntil(tok::r_paren);
Anders Carlsson8bd36fc2008-02-09 19:57:29 +00001165 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +00001166 }
Chris Lattner69efba72007-10-29 04:06:22 +00001167
Anders Carlssonb235fc22007-11-22 01:36:19 +00001168 IdentifierInfo *II = Tok.getIdentifierInfo();
Chris Lattner69efba72007-10-29 04:06:22 +00001169 ConsumeToken();
Anders Carlssonb235fc22007-11-22 01:36:19 +00001170
1171 Names.push_back(std::string(II->getName(), II->getLength()));
Reid Spencer5f016e22007-07-11 17:01:13 +00001172 MatchRHSPunctuation(tok::r_square, Loc);
Anders Carlssonb235fc22007-11-22 01:36:19 +00001173 } else
1174 Names.push_back(std::string());
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001175
Sebastian Redl15faa7f2008-12-09 20:22:58 +00001176 OwningExprResult Constraint(Actions, ParseAsmStringLiteral());
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001177 if (Constraint.isInvalid()) {
Anders Carlssonb235fc22007-11-22 01:36:19 +00001178 SkipUntil(tok::r_paren);
Anders Carlsson8bd36fc2008-02-09 19:57:29 +00001179 return true;
Anders Carlssonb235fc22007-11-22 01:36:19 +00001180 }
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001181 Constraints.push_back(Constraint.move());
Reid Spencer5f016e22007-07-11 17:01:13 +00001182
Chris Lattner4e1d99a2007-10-09 17:41:39 +00001183 if (Tok.isNot(tok::l_paren)) {
Chris Lattner1ab3b962008-11-18 07:48:38 +00001184 Diag(Tok, diag::err_expected_lparen_after) << "asm operand";
Reid Spencer5f016e22007-07-11 17:01:13 +00001185 SkipUntil(tok::r_paren);
Anders Carlsson8bd36fc2008-02-09 19:57:29 +00001186 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +00001187 }
1188
1189 // Read the parenthesized expression.
Sebastian Redl15faa7f2008-12-09 20:22:58 +00001190 OwningExprResult Res(Actions, ParseSimpleParenExpression());
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001191 if (Res.isInvalid()) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001192 SkipUntil(tok::r_paren);
Anders Carlsson8bd36fc2008-02-09 19:57:29 +00001193 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +00001194 }
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001195 Exprs.push_back(Res.move());
Reid Spencer5f016e22007-07-11 17:01:13 +00001196 // Eat the comma and continue parsing if it exists.
Anders Carlsson8bd36fc2008-02-09 19:57:29 +00001197 if (Tok.isNot(tok::comma)) return false;
Reid Spencer5f016e22007-07-11 17:01:13 +00001198 ConsumeToken();
1199 }
Anders Carlsson8bd36fc2008-02-09 19:57:29 +00001200
1201 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +00001202}
Fariborz Jahanianf9ed3152007-11-08 19:01:26 +00001203
1204Parser::DeclTy *Parser::ParseFunctionStatementBody(DeclTy *Decl,
1205 SourceLocation L, SourceLocation R) {
1206 // Do not enter a scope for the brace, as the arguments are in the same scope
1207 // (the function body) as the body itself. Instead, just read the statement
1208 // list and put it into a CompoundStmt for safe keeping.
Sebastian Redl15faa7f2008-12-09 20:22:58 +00001209 OwningStmtResult FnBody(Actions, ParseCompoundStatementBody());
Fariborz Jahanianf9ed3152007-11-08 19:01:26 +00001210
1211 // If the function body could not be parsed, make a bogus compoundstmt.
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001212 if (FnBody.isInvalid())
Fariborz Jahanianf9ed3152007-11-08 19:01:26 +00001213 FnBody = Actions.ActOnCompoundStmt(L, R, 0, 0, false);
1214
1215 // Leave the function body scope.
1216 ExitScope();
1217
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001218 return Actions.ActOnFinishFunctionBody(Decl, FnBody.move());
Seo Sanghyeoncd5af4b2007-12-01 08:06:07 +00001219}