blob: 9fd145dc2676f9ebe43881bc837c08224f36ac04 [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 Lattnerd167ca02009-12-10 00:21:05 +000016#include "RAIIObjectsForParser.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000017#include "clang/Parse/DeclSpec.h"
18#include "clang/Parse/Scope.h"
Chris Lattnerae50fa02009-03-05 00:00:31 +000019#include "clang/Basic/Diagnostic.h"
20#include "clang/Basic/PrettyStackTrace.h"
21#include "clang/Basic/SourceManager.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000022using 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
Sebastian Redla0fd8652008-12-21 16:41:36 +000041/// [C++] try-block
Fariborz Jahanianb384d322007-10-04 20:19:06 +000042/// [OBC] objc-throw-statement
43/// [OBC] objc-try-catch-statement
Fariborz Jahanianc385c902008-01-29 18:21:32 +000044/// [OBC] objc-synchronized-statement
Reid Spencer5f016e22007-07-11 17:01:13 +000045/// [GNU] asm-statement
46/// [OMP] openmp-construct [TODO]
47///
48/// labeled-statement:
49/// identifier ':' statement
50/// 'case' constant-expression ':' statement
51/// 'default' ':' statement
52///
53/// selection-statement:
54/// if-statement
55/// switch-statement
56///
57/// iteration-statement:
58/// while-statement
59/// do-statement
60/// for-statement
61///
62/// expression-statement:
63/// expression[opt] ';'
64///
65/// jump-statement:
66/// 'goto' identifier ';'
67/// 'continue' ';'
68/// 'break' ';'
69/// 'return' expression[opt] ';'
70/// [GNU] 'goto' '*' expression ';'
71///
Fariborz Jahanianb384d322007-10-04 20:19:06 +000072/// [OBC] objc-throw-statement:
73/// [OBC] '@' 'throw' expression ';'
Mike Stump1eb44332009-09-09 15:08:12 +000074/// [OBC] '@' 'throw' ';'
75///
Sebastian Redl61364dd2008-12-11 19:30:53 +000076Parser::OwningStmtResult
77Parser::ParseStatementOrDeclaration(bool OnlyStatement) {
Reid Spencer5f016e22007-07-11 17:01:13 +000078 const char *SemiError = 0;
Sebastian Redl15faa7f2008-12-09 20:22:58 +000079 OwningStmtResult Res(Actions);
Sebastian Redl0e9eabc2008-12-09 13:15:23 +000080
Sean Huntbbd37c62009-11-21 08:43:09 +000081 CXX0XAttributeList Attr;
82 if (getLang().CPlusPlus0x && isCXX0XAttributeSpecifier())
83 Attr = ParseCXX0XAttributes();
Ted Kremenek1e377652010-02-11 02:19:13 +000084 llvm::OwningPtr<AttributeList> AttrList(Attr.AttrList);
Sean Huntbbd37c62009-11-21 08:43:09 +000085
Reid Spencer5f016e22007-07-11 17:01:13 +000086 // Cases in this switch statement should fall through if the parser expects
87 // the token to end in a semicolon (in which case SemiError should be set),
88 // or they directly 'return;' if not.
Fariborz Jahanian397fcc12007-09-19 19:14:32 +000089 tok::TokenKind Kind = Tok.getKind();
90 SourceLocation AtLoc;
91 switch (Kind) {
Fariborz Jahanian397fcc12007-09-19 19:14:32 +000092 case tok::at: // May be a @try or @throw statement
93 {
94 AtLoc = ConsumeToken(); // consume @
Sebastian Redl43bc2a02008-12-11 20:12:42 +000095 return ParseObjCAtStatement(AtLoc);
Fariborz Jahanian397fcc12007-09-19 19:14:32 +000096 }
Fariborz Jahanian397fcc12007-09-19 19:14:32 +000097
Douglas Gregor791215b2009-09-21 20:51:25 +000098 case tok::code_completion:
Douglas Gregor01dfea02010-01-10 23:08:15 +000099 Actions.CodeCompleteOrdinaryName(CurScope, Action::CCC_Statement);
Douglas Gregor791215b2009-09-21 20:51:25 +0000100 ConsumeToken();
101 return ParseStatementOrDeclaration(OnlyStatement);
102
Argyrios Kyrtzidisb9f930d2008-07-12 21:04:42 +0000103 case tok::identifier:
104 if (NextToken().is(tok::colon)) { // C99 6.8.1: labeled-statement
105 // identifier ':' statement
Ted Kremenek1e377652010-02-11 02:19:13 +0000106 return ParseLabeledStatement(AttrList.take());
Argyrios Kyrtzidisb9f930d2008-07-12 21:04:42 +0000107 }
108 // PASS THROUGH.
109
Chris Lattnerf919bfe2009-03-24 17:04:48 +0000110 default: {
Argyrios Kyrtzidis5404a152008-10-05 00:06:24 +0000111 if ((getLang().CPlusPlus || !OnlyStatement) && isDeclarationStatement()) {
Chris Lattner97144fc2009-04-02 04:16:50 +0000112 SourceLocation DeclStart = Tok.getLocation(), DeclEnd;
Ted Kremenek1e377652010-02-11 02:19:13 +0000113 AttrList.take(); //Passing 'Attr' to ParseDeclaration transfers ownership.
Sean Huntbbd37c62009-11-21 08:43:09 +0000114 DeclGroupPtrTy Decl = ParseDeclaration(Declarator::BlockContext, DeclEnd,
115 Attr);
Chris Lattner97144fc2009-04-02 04:16:50 +0000116 return Actions.ActOnDeclStmt(Decl, DeclStart, DeclEnd);
Chris Lattnerf919bfe2009-03-24 17:04:48 +0000117 }
118
119 if (Tok.is(tok::r_brace)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000120 Diag(Tok, diag::err_expected_statement);
Sebastian Redl61364dd2008-12-11 19:30:53 +0000121 return StmtError();
Reid Spencer5f016e22007-07-11 17:01:13 +0000122 }
Mike Stump1eb44332009-09-09 15:08:12 +0000123
Sean Huntbbd37c62009-11-21 08:43:09 +0000124 // FIXME: Use the attributes
Chris Lattnerf919bfe2009-03-24 17:04:48 +0000125 // expression[opt] ';'
126 OwningExprResult Expr(ParseExpression());
127 if (Expr.isInvalid()) {
128 // If the expression is invalid, skip ahead to the next semicolon. Not
129 // doing this opens us up to the possibility of infinite loops if
130 // ParseExpression does not consume any tokens.
131 SkipUntil(tok::semi);
132 return StmtError();
133 }
134 // Otherwise, eat the semicolon.
135 ExpectAndConsume(tok::semi, diag::err_expected_semi_after_expr);
Anders Carlsson5ee56e92009-12-16 02:09:40 +0000136 return Actions.ActOnExprStmt(Actions.MakeFullExpr(Expr));
Chris Lattnerf919bfe2009-03-24 17:04:48 +0000137 }
Sebastian Redl61364dd2008-12-11 19:30:53 +0000138
Reid Spencer5f016e22007-07-11 17:01:13 +0000139 case tok::kw_case: // C99 6.8.1: labeled-statement
Ted Kremenek1e377652010-02-11 02:19:13 +0000140 return ParseCaseStatement(AttrList.take());
Reid Spencer5f016e22007-07-11 17:01:13 +0000141 case tok::kw_default: // C99 6.8.1: labeled-statement
Ted Kremenek1e377652010-02-11 02:19:13 +0000142 return ParseDefaultStatement(AttrList.take());
Sebastian Redl61364dd2008-12-11 19:30:53 +0000143
Reid Spencer5f016e22007-07-11 17:01:13 +0000144 case tok::l_brace: // C99 6.8.2: compound-statement
Ted Kremenek1e377652010-02-11 02:19:13 +0000145 return ParseCompoundStatement(AttrList.take());
Reid Spencer5f016e22007-07-11 17:01:13 +0000146 case tok::semi: // C99 6.8.3p3: expression[opt] ';'
Sebastian Redla60528c2008-12-21 12:04:03 +0000147 return Actions.ActOnNullStmt(ConsumeToken());
Sebastian Redl61364dd2008-12-11 19:30:53 +0000148
Reid Spencer5f016e22007-07-11 17:01:13 +0000149 case tok::kw_if: // C99 6.8.4.1: if-statement
Ted Kremenek1e377652010-02-11 02:19:13 +0000150 return ParseIfStatement(AttrList.take());
Reid Spencer5f016e22007-07-11 17:01:13 +0000151 case tok::kw_switch: // C99 6.8.4.2: switch-statement
Ted Kremenek1e377652010-02-11 02:19:13 +0000152 return ParseSwitchStatement(AttrList.take());
Sebastian Redl61364dd2008-12-11 19:30:53 +0000153
Reid Spencer5f016e22007-07-11 17:01:13 +0000154 case tok::kw_while: // C99 6.8.5.1: while-statement
Ted Kremenek1e377652010-02-11 02:19:13 +0000155 return ParseWhileStatement(AttrList.take());
Reid Spencer5f016e22007-07-11 17:01:13 +0000156 case tok::kw_do: // C99 6.8.5.2: do-statement
Ted Kremenek1e377652010-02-11 02:19:13 +0000157 Res = ParseDoStatement(AttrList.take());
Chris Lattner6869d8e2009-06-14 00:07:48 +0000158 SemiError = "do/while";
Reid Spencer5f016e22007-07-11 17:01:13 +0000159 break;
160 case tok::kw_for: // C99 6.8.5.3: for-statement
Ted Kremenek1e377652010-02-11 02:19:13 +0000161 return ParseForStatement(AttrList.take());
Reid Spencer5f016e22007-07-11 17:01:13 +0000162
163 case tok::kw_goto: // C99 6.8.6.1: goto-statement
Ted Kremenek1e377652010-02-11 02:19:13 +0000164 Res = ParseGotoStatement(AttrList.take());
Chris Lattner6869d8e2009-06-14 00:07:48 +0000165 SemiError = "goto";
Reid Spencer5f016e22007-07-11 17:01:13 +0000166 break;
167 case tok::kw_continue: // C99 6.8.6.2: continue-statement
Ted Kremenek1e377652010-02-11 02:19:13 +0000168 Res = ParseContinueStatement(AttrList.take());
Chris Lattner6869d8e2009-06-14 00:07:48 +0000169 SemiError = "continue";
Reid Spencer5f016e22007-07-11 17:01:13 +0000170 break;
171 case tok::kw_break: // C99 6.8.6.3: break-statement
Ted Kremenek1e377652010-02-11 02:19:13 +0000172 Res = ParseBreakStatement(AttrList.take());
Chris Lattner6869d8e2009-06-14 00:07:48 +0000173 SemiError = "break";
Reid Spencer5f016e22007-07-11 17:01:13 +0000174 break;
175 case tok::kw_return: // C99 6.8.6.4: return-statement
Ted Kremenek1e377652010-02-11 02:19:13 +0000176 Res = ParseReturnStatement(AttrList.take());
Chris Lattner6869d8e2009-06-14 00:07:48 +0000177 SemiError = "return";
Reid Spencer5f016e22007-07-11 17:01:13 +0000178 break;
Sebastian Redl61364dd2008-12-11 19:30:53 +0000179
Sebastian Redla0fd8652008-12-21 16:41:36 +0000180 case tok::kw_asm: {
Sean Huntbbd37c62009-11-21 08:43:09 +0000181 if (Attr.HasAttr)
182 Diag(Attr.Range.getBegin(), diag::err_attributes_not_allowed)
183 << Attr.Range;
Steve Naroffd62701b2008-02-07 03:50:06 +0000184 bool msAsm = false;
185 Res = ParseAsmStatement(msAsm);
Sebastian Redl61364dd2008-12-11 19:30:53 +0000186 if (msAsm) return move(Res);
Chris Lattner6869d8e2009-06-14 00:07:48 +0000187 SemiError = "asm";
Reid Spencer5f016e22007-07-11 17:01:13 +0000188 break;
189 }
Sebastian Redl61364dd2008-12-11 19:30:53 +0000190
Sebastian Redla0fd8652008-12-21 16:41:36 +0000191 case tok::kw_try: // C++ 15: try-block
Ted Kremenek1e377652010-02-11 02:19:13 +0000192 return ParseCXXTryBlock(AttrList.take());
Sebastian Redla0fd8652008-12-21 16:41:36 +0000193 }
194
Reid Spencer5f016e22007-07-11 17:01:13 +0000195 // If we reached this code, the statement must end in a semicolon.
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000196 if (Tok.is(tok::semi)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000197 ConsumeToken();
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000198 } else if (!Res.isInvalid()) {
Chris Lattner7b3684a2009-06-14 00:23:56 +0000199 // If the result was valid, then we do want to diagnose this. Use
200 // ExpectAndConsume to emit the diagnostic, even though we know it won't
201 // succeed.
202 ExpectAndConsume(tok::semi, diag::err_expected_semi_after_stmt, SemiError);
Chris Lattner19504402008-11-13 18:52:53 +0000203 // Skip until we see a } or ;, but don't eat it.
204 SkipUntil(tok::r_brace, true, true);
Reid Spencer5f016e22007-07-11 17:01:13 +0000205 }
Mike Stump1eb44332009-09-09 15:08:12 +0000206
Sebastian Redl61364dd2008-12-11 19:30:53 +0000207 return move(Res);
Reid Spencer5f016e22007-07-11 17:01:13 +0000208}
209
Argyrios Kyrtzidisf7da7262008-07-09 22:53:07 +0000210/// ParseLabeledStatement - We have an identifier and a ':' after it.
Reid Spencer5f016e22007-07-11 17:01:13 +0000211///
212/// labeled-statement:
213/// identifier ':' statement
214/// [GNU] identifier ':' attributes[opt] statement
Argyrios Kyrtzidisf7da7262008-07-09 22:53:07 +0000215///
Sean Huntbbd37c62009-11-21 08:43:09 +0000216Parser::OwningStmtResult Parser::ParseLabeledStatement(AttributeList *Attr) {
Argyrios Kyrtzidisf7da7262008-07-09 22:53:07 +0000217 assert(Tok.is(tok::identifier) && Tok.getIdentifierInfo() &&
218 "Not an identifier!");
219
Ted Kremenek1e377652010-02-11 02:19:13 +0000220 llvm::OwningPtr<AttributeList> AttrList(Attr);
Argyrios Kyrtzidisf7da7262008-07-09 22:53:07 +0000221 Token IdentTok = Tok; // Save the whole token.
222 ConsumeToken(); // eat the identifier.
223
224 assert(Tok.is(tok::colon) && "Not a label!");
Sebastian Redl61364dd2008-12-11 19:30:53 +0000225
Argyrios Kyrtzidisf7da7262008-07-09 22:53:07 +0000226 // identifier ':' statement
227 SourceLocation ColonLoc = ConsumeToken();
228
229 // Read label attributes, if present.
Argyrios Kyrtzidisf7da7262008-07-09 22:53:07 +0000230 if (Tok.is(tok::kw___attribute))
Ted Kremenek1e377652010-02-11 02:19:13 +0000231 AttrList.reset(addAttributeLists(AttrList.take(), ParseGNUAttributes()));
Argyrios Kyrtzidisf7da7262008-07-09 22:53:07 +0000232
Sebastian Redl61364dd2008-12-11 19:30:53 +0000233 OwningStmtResult SubStmt(ParseStatement());
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000234
Argyrios Kyrtzidisf7da7262008-07-09 22:53:07 +0000235 // Broken substmt shouldn't prevent the label from being added to the AST.
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000236 if (SubStmt.isInvalid())
Argyrios Kyrtzidisf7da7262008-07-09 22:53:07 +0000237 SubStmt = Actions.ActOnNullStmt(ColonLoc);
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000238
Ted Kremenek1e377652010-02-11 02:19:13 +0000239 // FIXME: use attributes?
Sebastian Redlde307472009-01-11 00:38:46 +0000240 return Actions.ActOnLabelStmt(IdentTok.getLocation(),
241 IdentTok.getIdentifierInfo(),
Sebastian Redl76ad2e82009-02-05 15:02:23 +0000242 ColonLoc, move(SubStmt));
Argyrios Kyrtzidisf7da7262008-07-09 22:53:07 +0000243}
Reid Spencer5f016e22007-07-11 17:01:13 +0000244
245/// ParseCaseStatement
246/// labeled-statement:
247/// 'case' constant-expression ':' statement
248/// [GNU] 'case' constant-expression '...' constant-expression ':' statement
249///
Sean Huntbbd37c62009-11-21 08:43:09 +0000250Parser::OwningStmtResult Parser::ParseCaseStatement(AttributeList *Attr) {
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000251 assert(Tok.is(tok::kw_case) && "Not a case stmt!");
Sean Huntbbd37c62009-11-21 08:43:09 +0000252 // FIXME: Use attributes?
Ted Kremenek1e377652010-02-11 02:19:13 +0000253 delete Attr;
Mike Stump1eb44332009-09-09 15:08:12 +0000254
Chris Lattner24e1e702009-03-04 04:23:07 +0000255 // It is very very common for code to contain many case statements recursively
256 // nested, as in (but usually without indentation):
257 // case 1:
258 // case 2:
259 // case 3:
260 // case 4:
261 // case 5: etc.
262 //
263 // Parsing this naively works, but is both inefficient and can cause us to run
264 // out of stack space in our recursive descent parser. As a special case,
Chris Lattner26140c62009-03-04 18:24:58 +0000265 // flatten this recursion into an iterative loop. This is complex and gross,
Chris Lattner24e1e702009-03-04 04:23:07 +0000266 // but all the grossness is constrained to ParseCaseStatement (and some
267 // wierdness in the actions), so this is just local grossness :).
Mike Stump1eb44332009-09-09 15:08:12 +0000268
Chris Lattner24e1e702009-03-04 04:23:07 +0000269 // TopLevelCase - This is the highest level we have parsed. 'case 1' in the
270 // example above.
271 OwningStmtResult TopLevelCase(Actions, true);
Mike Stump1eb44332009-09-09 15:08:12 +0000272
Chris Lattner24e1e702009-03-04 04:23:07 +0000273 // DeepestParsedCaseStmt - This is the deepest statement we have parsed, which
274 // gets updated each time a new case is parsed, and whose body is unset so
275 // far. When parsing 'case 4', this is the 'case 3' node.
276 StmtTy *DeepestParsedCaseStmt = 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000277
Chris Lattner24e1e702009-03-04 04:23:07 +0000278 // While we have case statements, eat and stack them.
279 do {
280 SourceLocation CaseLoc = ConsumeToken(); // eat the 'case'.
Mike Stump1eb44332009-09-09 15:08:12 +0000281
Douglas Gregor3e1005f2009-09-21 18:10:23 +0000282 if (Tok.is(tok::code_completion)) {
283 Actions.CodeCompleteCase(CurScope);
284 ConsumeToken();
285 }
286
Chris Lattner6fb09c82009-12-10 00:38:54 +0000287 /// We don't want to treat 'case x : y' as a potential typo for 'case x::y'.
288 /// Disable this form of error recovery while we're parsing the case
289 /// expression.
290 ColonProtectionRAIIObject ColonProtection(*this);
291
Chris Lattner24e1e702009-03-04 04:23:07 +0000292 OwningExprResult LHS(ParseConstantExpression());
293 if (LHS.isInvalid()) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000294 SkipUntil(tok::colon);
Sebastian Redl61364dd2008-12-11 19:30:53 +0000295 return StmtError();
Reid Spencer5f016e22007-07-11 17:01:13 +0000296 }
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000297
Chris Lattner24e1e702009-03-04 04:23:07 +0000298 // GNU case range extension.
299 SourceLocation DotDotDotLoc;
300 OwningExprResult RHS(Actions);
301 if (Tok.is(tok::ellipsis)) {
302 Diag(Tok, diag::ext_gnu_case_range);
303 DotDotDotLoc = ConsumeToken();
Sebastian Redl61364dd2008-12-11 19:30:53 +0000304
Chris Lattner24e1e702009-03-04 04:23:07 +0000305 RHS = ParseConstantExpression();
306 if (RHS.isInvalid()) {
307 SkipUntil(tok::colon);
308 return StmtError();
309 }
310 }
Chris Lattner6fb09c82009-12-10 00:38:54 +0000311
312 ColonProtection.restore();
Sebastian Redl61364dd2008-12-11 19:30:53 +0000313
Chris Lattner24e1e702009-03-04 04:23:07 +0000314 if (Tok.isNot(tok::colon)) {
315 Diag(Tok, diag::err_expected_colon_after) << "'case'";
316 SkipUntil(tok::colon);
317 return StmtError();
318 }
319
320 SourceLocation ColonLoc = ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +0000321
Chris Lattner24e1e702009-03-04 04:23:07 +0000322 OwningStmtResult Case =
323 Actions.ActOnCaseStmt(CaseLoc, move(LHS), DotDotDotLoc,
324 move(RHS), ColonLoc);
Mike Stump1eb44332009-09-09 15:08:12 +0000325
Chris Lattner24e1e702009-03-04 04:23:07 +0000326 // If we had a sema error parsing this case, then just ignore it and
327 // continue parsing the sub-stmt.
328 if (Case.isInvalid()) {
329 if (TopLevelCase.isInvalid()) // No parsed case stmts.
330 return ParseStatement();
331 // Otherwise, just don't add it as a nested case.
332 } else {
333 // If this is the first case statement we parsed, it becomes TopLevelCase.
334 // Otherwise we link it into the current chain.
335 StmtTy *NextDeepest = Case.get();
336 if (TopLevelCase.isInvalid())
337 TopLevelCase = move(Case);
338 else
339 Actions.ActOnCaseStmtBody(DeepestParsedCaseStmt, move(Case));
340 DeepestParsedCaseStmt = NextDeepest;
341 }
Mike Stump1eb44332009-09-09 15:08:12 +0000342
Chris Lattner24e1e702009-03-04 04:23:07 +0000343 // Handle all case statements.
344 } while (Tok.is(tok::kw_case));
Mike Stump1eb44332009-09-09 15:08:12 +0000345
Chris Lattner24e1e702009-03-04 04:23:07 +0000346 assert(!TopLevelCase.isInvalid() && "Should have parsed at least one case!");
Mike Stump1eb44332009-09-09 15:08:12 +0000347
Chris Lattner24e1e702009-03-04 04:23:07 +0000348 // If we found a non-case statement, start by parsing it.
349 OwningStmtResult SubStmt(Actions);
Mike Stump1eb44332009-09-09 15:08:12 +0000350
Chris Lattner24e1e702009-03-04 04:23:07 +0000351 if (Tok.isNot(tok::r_brace)) {
352 SubStmt = ParseStatement();
353 } else {
354 // Nicely diagnose the common error "switch (X) { case 4: }", which is
355 // not valid.
356 // FIXME: add insertion hint.
Reid Spencer5f016e22007-07-11 17:01:13 +0000357 Diag(Tok, diag::err_label_end_of_compound_statement);
Chris Lattner24e1e702009-03-04 04:23:07 +0000358 SubStmt = true;
Reid Spencer5f016e22007-07-11 17:01:13 +0000359 }
Mike Stump1eb44332009-09-09 15:08:12 +0000360
Chris Lattner24e1e702009-03-04 04:23:07 +0000361 // Broken sub-stmt shouldn't prevent forming the case statement properly.
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000362 if (SubStmt.isInvalid())
Chris Lattner24e1e702009-03-04 04:23:07 +0000363 SubStmt = Actions.ActOnNullStmt(SourceLocation());
Mike Stump1eb44332009-09-09 15:08:12 +0000364
Chris Lattner24e1e702009-03-04 04:23:07 +0000365 // Install the body into the most deeply-nested case.
366 Actions.ActOnCaseStmtBody(DeepestParsedCaseStmt, move(SubStmt));
Sebastian Redl61364dd2008-12-11 19:30:53 +0000367
Chris Lattner24e1e702009-03-04 04:23:07 +0000368 // Return the top level parsed statement tree.
Chris Lattner26140c62009-03-04 18:24:58 +0000369 return move(TopLevelCase);
Reid Spencer5f016e22007-07-11 17:01:13 +0000370}
371
372/// ParseDefaultStatement
373/// labeled-statement:
374/// 'default' ':' statement
375/// Note that this does not parse the 'statement' at the end.
376///
Sean Huntbbd37c62009-11-21 08:43:09 +0000377Parser::OwningStmtResult Parser::ParseDefaultStatement(AttributeList *Attr) {
378 //FIXME: Use attributes?
Ted Kremenek1e377652010-02-11 02:19:13 +0000379 delete Attr;
380
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000381 assert(Tok.is(tok::kw_default) && "Not a default stmt!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000382 SourceLocation DefaultLoc = ConsumeToken(); // eat the 'default'.
383
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000384 if (Tok.isNot(tok::colon)) {
Chris Lattner1ab3b962008-11-18 07:48:38 +0000385 Diag(Tok, diag::err_expected_colon_after) << "'default'";
Reid Spencer5f016e22007-07-11 17:01:13 +0000386 SkipUntil(tok::colon);
Sebastian Redl61364dd2008-12-11 19:30:53 +0000387 return StmtError();
Reid Spencer5f016e22007-07-11 17:01:13 +0000388 }
Sebastian Redl61364dd2008-12-11 19:30:53 +0000389
Reid Spencer5f016e22007-07-11 17:01:13 +0000390 SourceLocation ColonLoc = ConsumeToken();
Sebastian Redl61364dd2008-12-11 19:30:53 +0000391
Reid Spencer5f016e22007-07-11 17:01:13 +0000392 // Diagnose the common error "switch (X) {... default: }", which is not valid.
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000393 if (Tok.is(tok::r_brace)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000394 Diag(Tok, diag::err_label_end_of_compound_statement);
Sebastian Redl61364dd2008-12-11 19:30:53 +0000395 return StmtError();
Reid Spencer5f016e22007-07-11 17:01:13 +0000396 }
397
Sebastian Redl61364dd2008-12-11 19:30:53 +0000398 OwningStmtResult SubStmt(ParseStatement());
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000399 if (SubStmt.isInvalid())
Sebastian Redl61364dd2008-12-11 19:30:53 +0000400 return StmtError();
401
Sebastian Redl117054a2008-12-28 16:13:43 +0000402 return Actions.ActOnDefaultStmt(DefaultLoc, ColonLoc,
Sebastian Redl76ad2e82009-02-05 15:02:23 +0000403 move(SubStmt), CurScope);
Reid Spencer5f016e22007-07-11 17:01:13 +0000404}
405
406
407/// ParseCompoundStatement - Parse a "{}" block.
408///
409/// compound-statement: [C99 6.8.2]
410/// { block-item-list[opt] }
411/// [GNU] { label-declarations block-item-list } [TODO]
412///
413/// block-item-list:
414/// block-item
415/// block-item-list block-item
416///
417/// block-item:
418/// declaration
Chris Lattner45a566c2007-08-27 01:01:57 +0000419/// [GNU] '__extension__' declaration
Reid Spencer5f016e22007-07-11 17:01:13 +0000420/// statement
421/// [OMP] openmp-directive [TODO]
422///
423/// [GNU] label-declarations:
424/// [GNU] label-declaration
425/// [GNU] label-declarations label-declaration
426///
427/// [GNU] label-declaration:
428/// [GNU] '__label__' identifier-list ';'
429///
430/// [OMP] openmp-directive: [TODO]
431/// [OMP] barrier-directive
432/// [OMP] flush-directive
433///
Sean Huntbbd37c62009-11-21 08:43:09 +0000434Parser::OwningStmtResult Parser::ParseCompoundStatement(AttributeList *Attr,
435 bool isStmtExpr) {
436 //FIXME: Use attributes?
Ted Kremenek1e377652010-02-11 02:19:13 +0000437 delete Attr;
438
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000439 assert(Tok.is(tok::l_brace) && "Not a compount stmt!");
Sebastian Redl61364dd2008-12-11 19:30:53 +0000440
Chris Lattner31e05722007-08-26 06:24:45 +0000441 // Enter a scope to hold everything within the compound stmt. Compound
442 // statements can always hold declarations.
Douglas Gregor8935b8b2008-12-10 06:34:36 +0000443 ParseScope CompoundScope(this, Scope::DeclScope);
Reid Spencer5f016e22007-07-11 17:01:13 +0000444
445 // Parse the statements in the body.
Sebastian Redl61364dd2008-12-11 19:30:53 +0000446 return ParseCompoundStatementBody(isStmtExpr);
Reid Spencer5f016e22007-07-11 17:01:13 +0000447}
448
449
450/// ParseCompoundStatementBody - Parse a sequence of statements and invoke the
Steve Naroff1b273c42007-09-16 14:56:35 +0000451/// ActOnCompoundStmt action. This expects the '{' to be the current token, and
Reid Spencer5f016e22007-07-11 17:01:13 +0000452/// consume the '}' at the end of the block. It does not manipulate the scope
453/// stack.
Sebastian Redl61364dd2008-12-11 19:30:53 +0000454Parser::OwningStmtResult Parser::ParseCompoundStatementBody(bool isStmtExpr) {
Mike Stump1eb44332009-09-09 15:08:12 +0000455 PrettyStackTraceLoc CrashInfo(PP.getSourceManager(),
Chris Lattnerae50fa02009-03-05 00:00:31 +0000456 Tok.getLocation(),
457 "in compound statement ('{}')");
Mike Stump1eb44332009-09-09 15:08:12 +0000458
Reid Spencer5f016e22007-07-11 17:01:13 +0000459 SourceLocation LBraceLoc = ConsumeBrace(); // eat the '{'.
460
461 // TODO: "__label__ X, Y, Z;" is the GNU "Local Label" extension. These are
Chris Lattner45a566c2007-08-27 01:01:57 +0000462 // only allowed at the start of a compound stmt regardless of the language.
Sebastian Redla55e52c2008-11-25 22:21:31 +0000463
464 typedef StmtVector StmtsTy;
465 StmtsTy Stmts(Actions);
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000466 while (Tok.isNot(tok::r_brace) && Tok.isNot(tok::eof)) {
Sebastian Redl15faa7f2008-12-09 20:22:58 +0000467 OwningStmtResult R(Actions);
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000468 if (Tok.isNot(tok::kw___extension__)) {
Chris Lattner45a566c2007-08-27 01:01:57 +0000469 R = ParseStatementOrDeclaration(false);
470 } else {
471 // __extension__ can start declarations and it can also be a unary
472 // operator for expressions. Consume multiple __extension__ markers here
473 // until we can determine which is which.
Eli Friedmanadf077f2009-01-27 08:43:38 +0000474 // FIXME: This loses extension expressions in the AST!
Chris Lattner45a566c2007-08-27 01:01:57 +0000475 SourceLocation ExtLoc = ConsumeToken();
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000476 while (Tok.is(tok::kw___extension__))
Chris Lattner45a566c2007-08-27 01:01:57 +0000477 ConsumeToken();
Chris Lattner39146d62008-10-20 06:51:33 +0000478
Sean Huntbbd37c62009-11-21 08:43:09 +0000479 CXX0XAttributeList Attr;
480 if (getLang().CPlusPlus0x && isCXX0XAttributeSpecifier())
481 Attr = ParseCXX0XAttributes();
482
Chris Lattner45a566c2007-08-27 01:01:57 +0000483 // If this is the start of a declaration, parse it as such.
Argyrios Kyrtzidis5404a152008-10-05 00:06:24 +0000484 if (isDeclarationStatement()) {
Eli Friedmanbc6c8482009-05-16 23:40:44 +0000485 // __extension__ silences extension warnings in the subdeclaration.
Chris Lattner97144fc2009-04-02 04:16:50 +0000486 // FIXME: Save the __extension__ on the decl as a node somehow?
Eli Friedmanbc6c8482009-05-16 23:40:44 +0000487 ExtensionRAIIObject O(Diags);
488
Chris Lattner97144fc2009-04-02 04:16:50 +0000489 SourceLocation DeclStart = Tok.getLocation(), DeclEnd;
Sean Huntbbd37c62009-11-21 08:43:09 +0000490 DeclGroupPtrTy Res = ParseDeclaration(Declarator::BlockContext, DeclEnd,
491 Attr);
Chris Lattner97144fc2009-04-02 04:16:50 +0000492 R = Actions.ActOnDeclStmt(Res, DeclStart, DeclEnd);
Chris Lattner45a566c2007-08-27 01:01:57 +0000493 } else {
Eli Friedmanadf077f2009-01-27 08:43:38 +0000494 // Otherwise this was a unary __extension__ marker.
495 OwningExprResult Res(ParseExpressionWithLeadingExtension(ExtLoc));
Chris Lattner043a0b52008-03-13 06:32:11 +0000496
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000497 if (Res.isInvalid()) {
Chris Lattner45a566c2007-08-27 01:01:57 +0000498 SkipUntil(tok::semi);
499 continue;
500 }
Sebastian Redlf512e822009-01-18 18:03:53 +0000501
Sean Huntbbd37c62009-11-21 08:43:09 +0000502 // FIXME: Use attributes?
Chris Lattner39146d62008-10-20 06:51:33 +0000503 // Eat the semicolon at the end of stmt and convert the expr into a
504 // statement.
Chris Lattner45a566c2007-08-27 01:01:57 +0000505 ExpectAndConsume(tok::semi, diag::err_expected_semi_after_expr);
Anders Carlsson5ee56e92009-12-16 02:09:40 +0000506 R = Actions.ActOnExprStmt(Actions.MakeFullExpr(Res));
Chris Lattner45a566c2007-08-27 01:01:57 +0000507 }
508 }
Sebastian Redl61364dd2008-12-11 19:30:53 +0000509
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000510 if (R.isUsable())
Sebastian Redleffa8d12008-12-10 00:02:53 +0000511 Stmts.push_back(R.release());
Reid Spencer5f016e22007-07-11 17:01:13 +0000512 }
Sebastian Redl61364dd2008-12-11 19:30:53 +0000513
Reid Spencer5f016e22007-07-11 17:01:13 +0000514 // We broke out of the while loop because we found a '}' or EOF.
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000515 if (Tok.isNot(tok::r_brace)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000516 Diag(Tok, diag::err_expected_rbrace);
Sebastian Redl61364dd2008-12-11 19:30:53 +0000517 return StmtError();
Reid Spencer5f016e22007-07-11 17:01:13 +0000518 }
Sebastian Redl61364dd2008-12-11 19:30:53 +0000519
Reid Spencer5f016e22007-07-11 17:01:13 +0000520 SourceLocation RBraceLoc = ConsumeBrace();
Sebastian Redlf512e822009-01-18 18:03:53 +0000521 return Actions.ActOnCompoundStmt(LBraceLoc, RBraceLoc, move_arg(Stmts),
Sebastian Redla60528c2008-12-21 12:04:03 +0000522 isStmtExpr);
Reid Spencer5f016e22007-07-11 17:01:13 +0000523}
524
Chris Lattner15ff1112008-12-12 06:31:07 +0000525/// ParseParenExprOrCondition:
526/// [C ] '(' expression ')'
Chris Lattnerff871fb2008-12-12 06:35:28 +0000527/// [C++] '(' condition ')' [not allowed if OnlyAllowCondition=true]
Chris Lattner15ff1112008-12-12 06:31:07 +0000528///
529/// This function parses and performs error recovery on the specified condition
530/// or expression (depending on whether we're in C++ or C mode). This function
531/// goes out of its way to recover well. It returns true if there was a parser
532/// error (the right paren couldn't be found), which indicates that the caller
533/// should try to recover harder. It returns false if the condition is
534/// successfully parsed. Note that a successful parse can still have semantic
535/// errors in the condition.
Douglas Gregor99e9b4d2009-11-25 00:27:52 +0000536bool Parser::ParseParenExprOrCondition(OwningExprResult &ExprResult,
537 DeclPtrTy &DeclResult) {
538 bool ParseError = false;
539
Chris Lattner15ff1112008-12-12 06:31:07 +0000540 SourceLocation LParenLoc = ConsumeParen();
Douglas Gregor99e9b4d2009-11-25 00:27:52 +0000541 if (getLang().CPlusPlus)
542 ParseError = ParseCXXCondition(ExprResult, DeclResult);
543 else {
544 ExprResult = ParseExpression();
545 DeclResult = DeclPtrTy();
546 }
Mike Stump1eb44332009-09-09 15:08:12 +0000547
Chris Lattner15ff1112008-12-12 06:31:07 +0000548 // If the parser was confused by the condition and we don't have a ')', try to
549 // recover by skipping ahead to a semi and bailing out. If condexp is
550 // semantically invalid but we have well formed code, keep going.
Douglas Gregor99e9b4d2009-11-25 00:27:52 +0000551 if (ExprResult.isInvalid() && !DeclResult.get() && Tok.isNot(tok::r_paren)) {
Chris Lattner15ff1112008-12-12 06:31:07 +0000552 SkipUntil(tok::semi);
553 // Skipping may have stopped if it found the containing ')'. If so, we can
554 // continue parsing the if statement.
555 if (Tok.isNot(tok::r_paren))
556 return true;
557 }
Mike Stump1eb44332009-09-09 15:08:12 +0000558
Chris Lattner15ff1112008-12-12 06:31:07 +0000559 // Otherwise the condition is valid or the rparen is present.
Douglas Gregor99e9b4d2009-11-25 00:27:52 +0000560 MatchRHSPunctuation(tok::r_paren, LParenLoc);
Chris Lattner15ff1112008-12-12 06:31:07 +0000561 return false;
562}
563
564
Reid Spencer5f016e22007-07-11 17:01:13 +0000565/// ParseIfStatement
566/// if-statement: [C99 6.8.4.1]
567/// 'if' '(' expression ')' statement
568/// 'if' '(' expression ')' statement 'else' statement
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +0000569/// [C++] 'if' '(' condition ')' statement
570/// [C++] 'if' '(' condition ')' statement 'else' statement
Reid Spencer5f016e22007-07-11 17:01:13 +0000571///
Sean Huntbbd37c62009-11-21 08:43:09 +0000572Parser::OwningStmtResult Parser::ParseIfStatement(AttributeList *Attr) {
573 // FIXME: Use attributes?
Ted Kremenek1e377652010-02-11 02:19:13 +0000574 delete Attr;
575
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000576 assert(Tok.is(tok::kw_if) && "Not an if stmt!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000577 SourceLocation IfLoc = ConsumeToken(); // eat the 'if'.
578
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000579 if (Tok.isNot(tok::l_paren)) {
Chris Lattner1ab3b962008-11-18 07:48:38 +0000580 Diag(Tok, diag::err_expected_lparen_after) << "if";
Reid Spencer5f016e22007-07-11 17:01:13 +0000581 SkipUntil(tok::semi);
Sebastian Redl61364dd2008-12-11 19:30:53 +0000582 return StmtError();
Reid Spencer5f016e22007-07-11 17:01:13 +0000583 }
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +0000584
Argyrios Kyrtzidis488d37e2008-09-11 03:06:46 +0000585 bool C99orCXX = getLang().C99 || getLang().CPlusPlus;
586
Chris Lattner22153252007-08-26 23:08:06 +0000587 // C99 6.8.4p3 - In C99, the if statement is a block. This is not
588 // the case for C90.
Argyrios Kyrtzidis488d37e2008-09-11 03:06:46 +0000589 //
590 // C++ 6.4p3:
591 // A name introduced by a declaration in a condition is in scope from its
592 // point of declaration until the end of the substatements controlled by the
593 // condition.
Argyrios Kyrtzidis14d08c02008-09-11 23:08:39 +0000594 // C++ 3.3.2p4:
595 // Names declared in the for-init-statement, and in the condition of if,
596 // while, for, and switch statements are local to the if, while, for, or
597 // switch statement (including the controlled statement).
Argyrios Kyrtzidis488d37e2008-09-11 03:06:46 +0000598 //
Douglas Gregor8935b8b2008-12-10 06:34:36 +0000599 ParseScope IfScope(this, Scope::DeclScope | Scope::ControlScope, C99orCXX);
Chris Lattner22153252007-08-26 23:08:06 +0000600
Reid Spencer5f016e22007-07-11 17:01:13 +0000601 // Parse the condition.
Sebastian Redl15faa7f2008-12-09 20:22:58 +0000602 OwningExprResult CondExp(Actions);
Douglas Gregor99e9b4d2009-11-25 00:27:52 +0000603 DeclPtrTy CondVar;
604 if (ParseParenExprOrCondition(CondExp, CondVar))
Chris Lattner15ff1112008-12-12 06:31:07 +0000605 return StmtError();
Chris Lattner18914bc2008-12-12 06:19:11 +0000606
Anders Carlsson5ee56e92009-12-16 02:09:40 +0000607 FullExprArg FullCondExp(Actions.MakeFullExpr(CondExp));
Mike Stump1eb44332009-09-09 15:08:12 +0000608
Chris Lattner0ecea032007-08-22 05:28:50 +0000609 // C99 6.8.4p3 - In C99, the body of the if statement is a scope, even if
Chris Lattner38484402007-08-22 05:33:11 +0000610 // there is no compound stmt. C90 does not have this clause. We only do this
611 // if the body isn't a compound statement to avoid push/pop in common cases.
Argyrios Kyrtzidis488d37e2008-09-11 03:06:46 +0000612 //
613 // C++ 6.4p1:
614 // The substatement in a selection-statement (each substatement, in the else
615 // form of the if statement) implicitly defines a local scope.
616 //
617 // For C++ we create a scope for the condition and a new scope for
618 // substatements because:
619 // -When the 'then' scope exits, we want the condition declaration to still be
620 // active for the 'else' scope too.
621 // -Sema will detect name clashes by considering declarations of a
622 // 'ControlScope' as part of its direct subscope.
623 // -If we wanted the condition and substatement to be in the same scope, we
624 // would have to notify ParseStatement not to create a new scope. It's
625 // simpler to let it create a new scope.
626 //
Mike Stump1eb44332009-09-09 15:08:12 +0000627 ParseScope InnerScope(this, Scope::DeclScope,
Douglas Gregor8935b8b2008-12-10 06:34:36 +0000628 C99orCXX && Tok.isNot(tok::l_brace));
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +0000629
Chris Lattnerb96728d2007-10-29 05:08:52 +0000630 // Read the 'then' stmt.
631 SourceLocation ThenStmtLoc = Tok.getLocation();
Sebastian Redl61364dd2008-12-11 19:30:53 +0000632 OwningStmtResult ThenStmt(ParseStatement());
Reid Spencer5f016e22007-07-11 17:01:13 +0000633
Chris Lattnera36ce712007-08-22 05:16:28 +0000634 // Pop the 'if' scope if needed.
Douglas Gregor8935b8b2008-12-10 06:34:36 +0000635 InnerScope.Exit();
Sebastian Redl61364dd2008-12-11 19:30:53 +0000636
Reid Spencer5f016e22007-07-11 17:01:13 +0000637 // If it has an else, parse it.
638 SourceLocation ElseLoc;
Chris Lattnerb96728d2007-10-29 05:08:52 +0000639 SourceLocation ElseStmtLoc;
Sebastian Redl15faa7f2008-12-09 20:22:58 +0000640 OwningStmtResult ElseStmt(Actions);
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000641
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000642 if (Tok.is(tok::kw_else)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000643 ElseLoc = ConsumeToken();
Sebastian Redl61364dd2008-12-11 19:30:53 +0000644
Chris Lattner0ecea032007-08-22 05:28:50 +0000645 // C99 6.8.4p3 - In C99, the body of the if statement is a scope, even if
Chris Lattner38484402007-08-22 05:33:11 +0000646 // there is no compound stmt. C90 does not have this clause. We only do
647 // this if the body isn't a compound statement to avoid push/pop in common
648 // cases.
Argyrios Kyrtzidis488d37e2008-09-11 03:06:46 +0000649 //
650 // C++ 6.4p1:
651 // The substatement in a selection-statement (each substatement, in the else
652 // form of the if statement) implicitly defines a local scope.
653 //
Sebastian Redl61364dd2008-12-11 19:30:53 +0000654 ParseScope InnerScope(this, Scope::DeclScope,
Douglas Gregor8935b8b2008-12-10 06:34:36 +0000655 C99orCXX && Tok.isNot(tok::l_brace));
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000656
Douglas Gregorcaaf29a2008-12-10 23:01:14 +0000657 bool WithinElse = CurScope->isWithinElse();
658 CurScope->setWithinElse(true);
Chris Lattnerb96728d2007-10-29 05:08:52 +0000659 ElseStmtLoc = Tok.getLocation();
Reid Spencer5f016e22007-07-11 17:01:13 +0000660 ElseStmt = ParseStatement();
Douglas Gregorcaaf29a2008-12-10 23:01:14 +0000661 CurScope->setWithinElse(WithinElse);
Chris Lattnera36ce712007-08-22 05:16:28 +0000662
663 // Pop the 'else' scope if needed.
Douglas Gregor8935b8b2008-12-10 06:34:36 +0000664 InnerScope.Exit();
Reid Spencer5f016e22007-07-11 17:01:13 +0000665 }
Sebastian Redl61364dd2008-12-11 19:30:53 +0000666
Douglas Gregor8935b8b2008-12-10 06:34:36 +0000667 IfScope.Exit();
Mike Stump1eb44332009-09-09 15:08:12 +0000668
Chris Lattner18914bc2008-12-12 06:19:11 +0000669 // If the condition was invalid, discard the if statement. We could recover
670 // better by replacing it with a valid expr, but don't do that yet.
Douglas Gregor99e9b4d2009-11-25 00:27:52 +0000671 if (CondExp.isInvalid() && !CondVar.get())
Chris Lattner18914bc2008-12-12 06:19:11 +0000672 return StmtError();
Chris Lattner22153252007-08-26 23:08:06 +0000673
Chris Lattnerb96728d2007-10-29 05:08:52 +0000674 // If the then or else stmt is invalid and the other is valid (and present),
Mike Stump1eb44332009-09-09 15:08:12 +0000675 // make turn the invalid one into a null stmt to avoid dropping the other
Chris Lattnerb96728d2007-10-29 05:08:52 +0000676 // part. If both are invalid, return error.
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000677 if ((ThenStmt.isInvalid() && ElseStmt.isInvalid()) ||
678 (ThenStmt.isInvalid() && ElseStmt.get() == 0) ||
679 (ThenStmt.get() == 0 && ElseStmt.isInvalid())) {
Sebastian Redla55e52c2008-11-25 22:21:31 +0000680 // Both invalid, or one is invalid and other is non-present: return error.
Sebastian Redl61364dd2008-12-11 19:30:53 +0000681 return StmtError();
Chris Lattnerb96728d2007-10-29 05:08:52 +0000682 }
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000683
Chris Lattnerb96728d2007-10-29 05:08:52 +0000684 // Now if either are invalid, replace with a ';'.
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000685 if (ThenStmt.isInvalid())
Chris Lattnerb96728d2007-10-29 05:08:52 +0000686 ThenStmt = Actions.ActOnNullStmt(ThenStmtLoc);
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000687 if (ElseStmt.isInvalid())
Chris Lattnerb96728d2007-10-29 05:08:52 +0000688 ElseStmt = Actions.ActOnNullStmt(ElseStmtLoc);
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000689
Douglas Gregor99e9b4d2009-11-25 00:27:52 +0000690 return Actions.ActOnIfStmt(IfLoc, FullCondExp, CondVar, move(ThenStmt),
Sebastian Redl76ad2e82009-02-05 15:02:23 +0000691 ElseLoc, move(ElseStmt));
Reid Spencer5f016e22007-07-11 17:01:13 +0000692}
693
694/// ParseSwitchStatement
695/// switch-statement:
696/// 'switch' '(' expression ')' statement
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +0000697/// [C++] 'switch' '(' condition ')' statement
Sean Huntbbd37c62009-11-21 08:43:09 +0000698Parser::OwningStmtResult Parser::ParseSwitchStatement(AttributeList *Attr) {
699 // FIXME: Use attributes?
Ted Kremenek1e377652010-02-11 02:19:13 +0000700 delete Attr;
701
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000702 assert(Tok.is(tok::kw_switch) && "Not a switch stmt!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000703 SourceLocation SwitchLoc = ConsumeToken(); // eat the 'switch'.
704
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000705 if (Tok.isNot(tok::l_paren)) {
Chris Lattner1ab3b962008-11-18 07:48:38 +0000706 Diag(Tok, diag::err_expected_lparen_after) << "switch";
Reid Spencer5f016e22007-07-11 17:01:13 +0000707 SkipUntil(tok::semi);
Sebastian Redl9a920342008-12-11 19:48:14 +0000708 return StmtError();
Reid Spencer5f016e22007-07-11 17:01:13 +0000709 }
Chris Lattner22153252007-08-26 23:08:06 +0000710
Argyrios Kyrtzidis488d37e2008-09-11 03:06:46 +0000711 bool C99orCXX = getLang().C99 || getLang().CPlusPlus;
712
Chris Lattner22153252007-08-26 23:08:06 +0000713 // C99 6.8.4p3 - In C99, the switch statement is a block. This is
714 // not the case for C90. Start the switch scope.
Argyrios Kyrtzidis488d37e2008-09-11 03:06:46 +0000715 //
716 // C++ 6.4p3:
717 // A name introduced by a declaration in a condition is in scope from its
718 // point of declaration until the end of the substatements controlled by the
719 // condition.
Argyrios Kyrtzidis14d08c02008-09-11 23:08:39 +0000720 // C++ 3.3.2p4:
721 // Names declared in the for-init-statement, and in the condition of if,
722 // while, for, and switch statements are local to the if, while, for, or
723 // switch statement (including the controlled statement).
Argyrios Kyrtzidis488d37e2008-09-11 03:06:46 +0000724 //
Chris Lattner15ff1112008-12-12 06:31:07 +0000725 unsigned ScopeFlags = Scope::BreakScope;
726 if (C99orCXX)
727 ScopeFlags |= Scope::DeclScope | Scope::ControlScope;
Douglas Gregor8935b8b2008-12-10 06:34:36 +0000728 ParseScope SwitchScope(this, ScopeFlags);
Reid Spencer5f016e22007-07-11 17:01:13 +0000729
730 // Parse the condition.
Sebastian Redl15faa7f2008-12-09 20:22:58 +0000731 OwningExprResult Cond(Actions);
Douglas Gregor99e9b4d2009-11-25 00:27:52 +0000732 DeclPtrTy CondVar;
733 if (ParseParenExprOrCondition(Cond, CondVar))
Sebastian Redl9a920342008-12-11 19:48:14 +0000734 return StmtError();
Eli Friedman2342ef72008-12-17 22:19:57 +0000735
Anders Carlsson5ee56e92009-12-16 02:09:40 +0000736 FullExprArg FullCond(Actions.MakeFullExpr(Cond));
Douglas Gregor99e9b4d2009-11-25 00:27:52 +0000737
Douglas Gregorbe724ba2009-11-25 06:20:02 +0000738 OwningStmtResult Switch = Actions.ActOnStartOfSwitchStmt(FullCond, CondVar);
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000739
Chris Lattner0ecea032007-08-22 05:28:50 +0000740 // C99 6.8.4p3 - In C99, the body of the switch 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 Kyrtzidis488d37e2008-09-11 03:06:46 +0000743 //
744 // C++ 6.4p1:
745 // The substatement in a selection-statement (each substatement, in the else
746 // form of the if statement) implicitly defines a local scope.
747 //
748 // See comments in ParseIfStatement for why we create a scope for the
749 // condition and a new scope for substatement in C++.
750 //
Mike Stump1eb44332009-09-09 15:08:12 +0000751 ParseScope InnerScope(this, Scope::DeclScope,
Douglas Gregor8935b8b2008-12-10 06:34:36 +0000752 C99orCXX && Tok.isNot(tok::l_brace));
Sebastian Redl61364dd2008-12-11 19:30:53 +0000753
Reid Spencer5f016e22007-07-11 17:01:13 +0000754 // Read the body statement.
Sebastian Redl61364dd2008-12-11 19:30:53 +0000755 OwningStmtResult Body(ParseStatement());
Reid Spencer5f016e22007-07-11 17:01:13 +0000756
Chris Lattner7e52de42010-01-24 01:50:29 +0000757 // Pop the scopes.
Douglas Gregor8935b8b2008-12-10 06:34:36 +0000758 InnerScope.Exit();
Douglas Gregor8935b8b2008-12-10 06:34:36 +0000759 SwitchScope.Exit();
Sebastian Redl61364dd2008-12-11 19:30:53 +0000760
Chris Lattner7e52de42010-01-24 01:50:29 +0000761 if (Cond.isInvalid() && !CondVar.get()) {
762 Actions.ActOnSwitchBodyError(SwitchLoc, move(Switch), move(Body));
Chris Lattner15ff1112008-12-12 06:31:07 +0000763 return StmtError();
Chris Lattner7e52de42010-01-24 01:50:29 +0000764 }
Sebastian Redlde307472009-01-11 00:38:46 +0000765
Chris Lattner7e52de42010-01-24 01:50:29 +0000766 if (Body.isInvalid())
767 // FIXME: Remove the case statement list from the Switch statement.
768 Body = Actions.ActOnNullStmt(Tok.getLocation());
769
Sebastian Redl76ad2e82009-02-05 15:02:23 +0000770 return Actions.ActOnFinishSwitchStmt(SwitchLoc, move(Switch), move(Body));
Reid Spencer5f016e22007-07-11 17:01:13 +0000771}
772
773/// ParseWhileStatement
774/// while-statement: [C99 6.8.5.1]
775/// 'while' '(' expression ')' statement
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +0000776/// [C++] 'while' '(' condition ')' statement
Sean Huntbbd37c62009-11-21 08:43:09 +0000777Parser::OwningStmtResult Parser::ParseWhileStatement(AttributeList *Attr) {
778 // FIXME: Use attributes?
Ted Kremenek1e377652010-02-11 02:19:13 +0000779 delete Attr;
780
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000781 assert(Tok.is(tok::kw_while) && "Not a while stmt!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000782 SourceLocation WhileLoc = Tok.getLocation();
783 ConsumeToken(); // eat the 'while'.
Sebastian Redl9a920342008-12-11 19:48:14 +0000784
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000785 if (Tok.isNot(tok::l_paren)) {
Chris Lattner1ab3b962008-11-18 07:48:38 +0000786 Diag(Tok, diag::err_expected_lparen_after) << "while";
Reid Spencer5f016e22007-07-11 17:01:13 +0000787 SkipUntil(tok::semi);
Sebastian Redl9a920342008-12-11 19:48:14 +0000788 return StmtError();
Reid Spencer5f016e22007-07-11 17:01:13 +0000789 }
Sebastian Redl9a920342008-12-11 19:48:14 +0000790
Argyrios Kyrtzidis488d37e2008-09-11 03:06:46 +0000791 bool C99orCXX = getLang().C99 || getLang().CPlusPlus;
792
Chris Lattner22153252007-08-26 23:08:06 +0000793 // C99 6.8.5p5 - In C99, the while statement is a block. This is not
794 // the case for C90. Start the loop scope.
Argyrios Kyrtzidis488d37e2008-09-11 03:06:46 +0000795 //
796 // C++ 6.4p3:
797 // A name introduced by a declaration in a condition is in scope from its
798 // point of declaration until the end of the substatements controlled by the
799 // condition.
Argyrios Kyrtzidis14d08c02008-09-11 23:08:39 +0000800 // C++ 3.3.2p4:
801 // Names declared in the for-init-statement, and in the condition of if,
802 // while, for, and switch statements are local to the if, while, for, or
803 // switch statement (including the controlled statement).
Argyrios Kyrtzidis488d37e2008-09-11 03:06:46 +0000804 //
Douglas Gregor8935b8b2008-12-10 06:34:36 +0000805 unsigned ScopeFlags;
Argyrios Kyrtzidis488d37e2008-09-11 03:06:46 +0000806 if (C99orCXX)
Douglas Gregor8935b8b2008-12-10 06:34:36 +0000807 ScopeFlags = Scope::BreakScope | Scope::ContinueScope |
808 Scope::DeclScope | Scope::ControlScope;
Chris Lattner22153252007-08-26 23:08:06 +0000809 else
Douglas Gregor8935b8b2008-12-10 06:34:36 +0000810 ScopeFlags = Scope::BreakScope | Scope::ContinueScope;
811 ParseScope WhileScope(this, ScopeFlags);
Reid Spencer5f016e22007-07-11 17:01:13 +0000812
813 // Parse the condition.
Sebastian Redl15faa7f2008-12-09 20:22:58 +0000814 OwningExprResult Cond(Actions);
Douglas Gregor99e9b4d2009-11-25 00:27:52 +0000815 DeclPtrTy CondVar;
816 if (ParseParenExprOrCondition(Cond, CondVar))
Chris Lattner15ff1112008-12-12 06:31:07 +0000817 return StmtError();
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000818
Anders Carlsson5ee56e92009-12-16 02:09:40 +0000819 FullExprArg FullCond(Actions.MakeFullExpr(Cond));
Mike Stump1eb44332009-09-09 15:08:12 +0000820
Chris Lattner0ecea032007-08-22 05:28:50 +0000821 // C99 6.8.5p5 - In C99, the body of the if statement is a scope, even if
Chris Lattner38484402007-08-22 05:33:11 +0000822 // there is no compound stmt. C90 does not have this clause. We only do this
823 // if the body isn't a compound statement to avoid push/pop in common cases.
Argyrios Kyrtzidis488d37e2008-09-11 03:06:46 +0000824 //
825 // C++ 6.5p2:
826 // The substatement in an iteration-statement implicitly defines a local scope
827 // which is entered and exited each time through the loop.
828 //
829 // See comments in ParseIfStatement for why we create a scope for the
830 // condition and a new scope for substatement in C++.
831 //
Mike Stump1eb44332009-09-09 15:08:12 +0000832 ParseScope InnerScope(this, Scope::DeclScope,
Douglas Gregor8935b8b2008-12-10 06:34:36 +0000833 C99orCXX && Tok.isNot(tok::l_brace));
Sebastian Redl9a920342008-12-11 19:48:14 +0000834
Reid Spencer5f016e22007-07-11 17:01:13 +0000835 // Read the body statement.
Sebastian Redl61364dd2008-12-11 19:30:53 +0000836 OwningStmtResult Body(ParseStatement());
Reid Spencer5f016e22007-07-11 17:01:13 +0000837
Chris Lattner0ecea032007-08-22 05:28:50 +0000838 // Pop the body scope if needed.
Douglas Gregor8935b8b2008-12-10 06:34:36 +0000839 InnerScope.Exit();
840 WhileScope.Exit();
Sebastian Redl9a920342008-12-11 19:48:14 +0000841
Douglas Gregor99e9b4d2009-11-25 00:27:52 +0000842 if ((Cond.isInvalid() && !CondVar.get()) || Body.isInvalid())
Sebastian Redl9a920342008-12-11 19:48:14 +0000843 return StmtError();
844
Douglas Gregor99e9b4d2009-11-25 00:27:52 +0000845 return Actions.ActOnWhileStmt(WhileLoc, FullCond, CondVar, move(Body));
Reid Spencer5f016e22007-07-11 17:01:13 +0000846}
847
848/// ParseDoStatement
849/// do-statement: [C99 6.8.5.2]
850/// 'do' statement 'while' '(' expression ')' ';'
851/// Note: this lets the caller parse the end ';'.
Sean Huntbbd37c62009-11-21 08:43:09 +0000852Parser::OwningStmtResult Parser::ParseDoStatement(AttributeList *Attr) {
853 // FIXME: Use attributes?
Ted Kremenek1e377652010-02-11 02:19:13 +0000854 delete Attr;
855
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000856 assert(Tok.is(tok::kw_do) && "Not a do stmt!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000857 SourceLocation DoLoc = ConsumeToken(); // eat the 'do'.
Sebastian Redl9a920342008-12-11 19:48:14 +0000858
Chris Lattner22153252007-08-26 23:08:06 +0000859 // C99 6.8.5p5 - In C99, the do statement is a block. This is not
860 // the case for C90. Start the loop scope.
Douglas Gregor8935b8b2008-12-10 06:34:36 +0000861 unsigned ScopeFlags;
Chris Lattner22153252007-08-26 23:08:06 +0000862 if (getLang().C99)
Douglas Gregor8935b8b2008-12-10 06:34:36 +0000863 ScopeFlags = Scope::BreakScope | Scope::ContinueScope | Scope::DeclScope;
Chris Lattner22153252007-08-26 23:08:06 +0000864 else
Douglas Gregor8935b8b2008-12-10 06:34:36 +0000865 ScopeFlags = Scope::BreakScope | Scope::ContinueScope;
Sebastian Redl9a920342008-12-11 19:48:14 +0000866
Douglas Gregor8935b8b2008-12-10 06:34:36 +0000867 ParseScope DoScope(this, ScopeFlags);
Reid Spencer5f016e22007-07-11 17:01:13 +0000868
Chris Lattner0ecea032007-08-22 05:28:50 +0000869 // C99 6.8.5p5 - In C99, the body of the if statement is a scope, even if
Chris Lattner38484402007-08-22 05:33:11 +0000870 // there is no compound stmt. C90 does not have this clause. We only do this
871 // if the body isn't a compound statement to avoid push/pop in common cases.
Argyrios Kyrtzidis143db712008-09-11 04:46:46 +0000872 //
873 // C++ 6.5p2:
874 // The substatement in an iteration-statement implicitly defines a local scope
875 // which is entered and exited each time through the loop.
876 //
Douglas Gregor8935b8b2008-12-10 06:34:36 +0000877 ParseScope InnerScope(this, Scope::DeclScope,
Mike Stump1eb44332009-09-09 15:08:12 +0000878 (getLang().C99 || getLang().CPlusPlus) &&
Douglas Gregor8935b8b2008-12-10 06:34:36 +0000879 Tok.isNot(tok::l_brace));
Sebastian Redl9a920342008-12-11 19:48:14 +0000880
Reid Spencer5f016e22007-07-11 17:01:13 +0000881 // Read the body statement.
Sebastian Redl61364dd2008-12-11 19:30:53 +0000882 OwningStmtResult Body(ParseStatement());
Reid Spencer5f016e22007-07-11 17:01:13 +0000883
Chris Lattner0ecea032007-08-22 05:28:50 +0000884 // Pop the body scope if needed.
Douglas Gregor8935b8b2008-12-10 06:34:36 +0000885 InnerScope.Exit();
Chris Lattner0ecea032007-08-22 05:28:50 +0000886
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000887 if (Tok.isNot(tok::kw_while)) {
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000888 if (!Body.isInvalid()) {
Chris Lattner19504402008-11-13 18:52:53 +0000889 Diag(Tok, diag::err_expected_while);
Chris Lattner28eb7e92008-11-23 23:17:07 +0000890 Diag(DoLoc, diag::note_matching) << "do";
Chris Lattner19504402008-11-13 18:52:53 +0000891 SkipUntil(tok::semi, false, true);
892 }
Sebastian Redl9a920342008-12-11 19:48:14 +0000893 return StmtError();
Reid Spencer5f016e22007-07-11 17:01:13 +0000894 }
895 SourceLocation WhileLoc = ConsumeToken();
Sebastian Redl9a920342008-12-11 19:48:14 +0000896
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000897 if (Tok.isNot(tok::l_paren)) {
Chris Lattner1ab3b962008-11-18 07:48:38 +0000898 Diag(Tok, diag::err_expected_lparen_after) << "do/while";
Chris Lattner19504402008-11-13 18:52:53 +0000899 SkipUntil(tok::semi, false, true);
Sebastian Redl9a920342008-12-11 19:48:14 +0000900 return StmtError();
Reid Spencer5f016e22007-07-11 17:01:13 +0000901 }
Sebastian Redl9a920342008-12-11 19:48:14 +0000902
Chris Lattnerff871fb2008-12-12 06:35:28 +0000903 // Parse the parenthesized condition.
Douglas Gregor04895d32009-11-24 21:34:32 +0000904 SourceLocation LPLoc = ConsumeParen();
905 OwningExprResult Cond = ParseExpression();
906 SourceLocation RPLoc = MatchRHSPunctuation(tok::r_paren, LPLoc);
Douglas Gregor8935b8b2008-12-10 06:34:36 +0000907 DoScope.Exit();
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000908
Sebastian Redl9a920342008-12-11 19:48:14 +0000909 if (Cond.isInvalid() || Body.isInvalid())
910 return StmtError();
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000911
Chris Lattner98913592009-06-12 23:04:47 +0000912 return Actions.ActOnDoStmt(DoLoc, move(Body), WhileLoc, LPLoc,
913 move(Cond), RPLoc);
Reid Spencer5f016e22007-07-11 17:01:13 +0000914}
915
916/// ParseForStatement
917/// for-statement: [C99 6.8.5.3]
918/// 'for' '(' expr[opt] ';' expr[opt] ';' expr[opt] ')' statement
919/// 'for' '(' declaration expr[opt] ';' expr[opt] ')' statement
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +0000920/// [C++] 'for' '(' for-init-statement condition[opt] ';' expression[opt] ')'
921/// [C++] statement
Fariborz Jahanian3ba5a0f2008-01-03 17:55:25 +0000922/// [OBJC2] 'for' '(' declaration 'in' expr ')' statement
923/// [OBJC2] 'for' '(' expr 'in' expr ')' statement
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +0000924///
925/// [C++] for-init-statement:
926/// [C++] expression-statement
927/// [C++] simple-declaration
928///
Sean Huntbbd37c62009-11-21 08:43:09 +0000929Parser::OwningStmtResult Parser::ParseForStatement(AttributeList *Attr) {
930 // FIXME: Use attributes?
Ted Kremenek1e377652010-02-11 02:19:13 +0000931 delete Attr;
932
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000933 assert(Tok.is(tok::kw_for) && "Not a for stmt!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000934 SourceLocation ForLoc = ConsumeToken(); // eat the 'for'.
Sebastian Redl9a920342008-12-11 19:48:14 +0000935
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000936 if (Tok.isNot(tok::l_paren)) {
Chris Lattner1ab3b962008-11-18 07:48:38 +0000937 Diag(Tok, diag::err_expected_lparen_after) << "for";
Reid Spencer5f016e22007-07-11 17:01:13 +0000938 SkipUntil(tok::semi);
Sebastian Redl9a920342008-12-11 19:48:14 +0000939 return StmtError();
Reid Spencer5f016e22007-07-11 17:01:13 +0000940 }
Sebastian Redl9a920342008-12-11 19:48:14 +0000941
Chris Lattner4d00f2a2009-04-22 00:54:41 +0000942 bool C99orCXXorObjC = getLang().C99 || getLang().CPlusPlus || getLang().ObjC1;
Argyrios Kyrtzidis488d37e2008-09-11 03:06:46 +0000943
Chris Lattner22153252007-08-26 23:08:06 +0000944 // C99 6.8.5p5 - In C99, the for statement is a block. This is not
945 // the case for C90. Start the loop scope.
Argyrios Kyrtzidis488d37e2008-09-11 03:06:46 +0000946 //
947 // C++ 6.4p3:
948 // A name introduced by a declaration in a condition is in scope from its
949 // point of declaration until the end of the substatements controlled by the
950 // condition.
Argyrios Kyrtzidis14d08c02008-09-11 23:08:39 +0000951 // C++ 3.3.2p4:
952 // Names declared in the for-init-statement, and in the condition of if,
953 // while, for, and switch statements are local to the if, while, for, or
954 // switch statement (including the controlled statement).
Argyrios Kyrtzidis488d37e2008-09-11 03:06:46 +0000955 // C++ 6.5.3p1:
956 // Names declared in the for-init-statement are in the same declarative-region
957 // as those declared in the condition.
958 //
Douglas Gregor8935b8b2008-12-10 06:34:36 +0000959 unsigned ScopeFlags;
Chris Lattner4d00f2a2009-04-22 00:54:41 +0000960 if (C99orCXXorObjC)
Douglas Gregor8935b8b2008-12-10 06:34:36 +0000961 ScopeFlags = Scope::BreakScope | Scope::ContinueScope |
962 Scope::DeclScope | Scope::ControlScope;
Chris Lattner22153252007-08-26 23:08:06 +0000963 else
Douglas Gregor8935b8b2008-12-10 06:34:36 +0000964 ScopeFlags = Scope::BreakScope | Scope::ContinueScope;
965
966 ParseScope ForScope(this, ScopeFlags);
Reid Spencer5f016e22007-07-11 17:01:13 +0000967
968 SourceLocation LParenLoc = ConsumeParen();
Sebastian Redl15faa7f2008-12-09 20:22:58 +0000969 OwningExprResult Value(Actions);
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000970
Fariborz Jahanianbdd15f72008-01-04 23:23:46 +0000971 bool ForEach = false;
Sebastian Redlf05b1522009-01-16 23:28:06 +0000972 OwningStmtResult FirstPart(Actions);
973 OwningExprResult SecondPart(Actions), ThirdPart(Actions);
Douglas Gregor99e9b4d2009-11-25 00:27:52 +0000974 DeclPtrTy SecondVar;
975
Douglas Gregor791215b2009-09-21 20:51:25 +0000976 if (Tok.is(tok::code_completion)) {
Douglas Gregor01dfea02010-01-10 23:08:15 +0000977 Actions.CodeCompleteOrdinaryName(CurScope,
978 C99orCXXorObjC? Action::CCC_ForInit
979 : Action::CCC_Expression);
Douglas Gregor791215b2009-09-21 20:51:25 +0000980 ConsumeToken();
981 }
982
Reid Spencer5f016e22007-07-11 17:01:13 +0000983 // Parse the first part of the for specifier.
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000984 if (Tok.is(tok::semi)) { // for (;
Reid Spencer5f016e22007-07-11 17:01:13 +0000985 // no first part, eat the ';'.
986 ConsumeToken();
Argyrios Kyrtzidisbbc70c02008-10-05 15:50:46 +0000987 } else if (isSimpleDeclaration()) { // for (int X = 4;
Reid Spencer5f016e22007-07-11 17:01:13 +0000988 // Parse declaration, which eats the ';'.
Chris Lattner4d00f2a2009-04-22 00:54:41 +0000989 if (!C99orCXXorObjC) // Use of C99-style for loops in C90 mode?
Reid Spencer5f016e22007-07-11 17:01:13 +0000990 Diag(Tok, diag::ext_c99_variable_decl_in_for_loop);
Sebastian Redl9a920342008-12-11 19:48:14 +0000991
Sean Huntbbd37c62009-11-21 08:43:09 +0000992 AttributeList *AttrList = 0;
993 if (getLang().CPlusPlus0x && isCXX0XAttributeSpecifier())
994 AttrList = ParseCXX0XAttributes().AttrList;
995
Chris Lattner97144fc2009-04-02 04:16:50 +0000996 SourceLocation DeclStart = Tok.getLocation(), DeclEnd;
Sean Huntbbd37c62009-11-21 08:43:09 +0000997 DeclGroupPtrTy DG = ParseSimpleDeclaration(Declarator::ForContext, DeclEnd,
998 AttrList);
Chris Lattnercd147752009-03-29 17:27:48 +0000999 FirstPart = Actions.ActOnDeclStmt(DG, DeclStart, Tok.getLocation());
Mike Stump1eb44332009-09-09 15:08:12 +00001000
Chris Lattnercd147752009-03-29 17:27:48 +00001001 if (Tok.is(tok::semi)) { // for (int x = 4;
1002 ConsumeToken();
1003 } else if ((ForEach = isTokIdentifier_in())) {
Fariborz Jahaniana7cf23a2009-11-19 22:12:37 +00001004 Actions.ActOnForEachDeclStmt(DG);
Mike Stump1eb44332009-09-09 15:08:12 +00001005 // ObjC: for (id x in expr)
Fariborz Jahanian3ba5a0f2008-01-03 17:55:25 +00001006 ConsumeToken(); // consume 'in'
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001007 SecondPart = ParseExpression();
Chris Lattnercd147752009-03-29 17:27:48 +00001008 } else {
1009 Diag(Tok, diag::err_expected_semi_for);
1010 SkipUntil(tok::semi);
Fariborz Jahanian3ba5a0f2008-01-03 17:55:25 +00001011 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001012 } else {
1013 Value = ParseExpression();
1014
1015 // Turn the expression into a stmt.
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001016 if (!Value.isInvalid())
Anders Carlsson5ee56e92009-12-16 02:09:40 +00001017 FirstPart = Actions.ActOnExprStmt(Actions.MakeFullExpr(Value));
Sebastian Redleffa8d12008-12-10 00:02:53 +00001018
Chris Lattner4e1d99a2007-10-09 17:41:39 +00001019 if (Tok.is(tok::semi)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001020 ConsumeToken();
Chris Lattner682bf922009-03-29 16:50:03 +00001021 } else if ((ForEach = isTokIdentifier_in())) {
Fariborz Jahanian3ba5a0f2008-01-03 17:55:25 +00001022 ConsumeToken(); // consume 'in'
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001023 SecondPart = ParseExpression();
Chris Lattner682bf922009-03-29 16:50:03 +00001024 } else {
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001025 if (!Value.isInvalid()) Diag(Tok, diag::err_expected_semi_for);
Reid Spencer5f016e22007-07-11 17:01:13 +00001026 SkipUntil(tok::semi);
1027 }
1028 }
Fariborz Jahanianbdd15f72008-01-04 23:23:46 +00001029 if (!ForEach) {
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001030 assert(!SecondPart.get() && "Shouldn't have a second expression yet.");
Fariborz Jahanian3ba5a0f2008-01-03 17:55:25 +00001031 // Parse the second part of the for specifier.
1032 if (Tok.is(tok::semi)) { // for (...;;
1033 // no second part.
Fariborz Jahanian3ba5a0f2008-01-03 17:55:25 +00001034 } else {
Douglas Gregor99e9b4d2009-11-25 00:27:52 +00001035 if (getLang().CPlusPlus)
1036 ParseCXXCondition(SecondPart, SecondVar);
1037 else
1038 SecondPart = ParseExpression();
Fariborz Jahanian3ba5a0f2008-01-03 17:55:25 +00001039 }
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001040
Fariborz Jahanian3ba5a0f2008-01-03 17:55:25 +00001041 if (Tok.is(tok::semi)) {
1042 ConsumeToken();
1043 } else {
Douglas Gregor99e9b4d2009-11-25 00:27:52 +00001044 if (!SecondPart.isInvalid() || SecondVar.get())
1045 Diag(Tok, diag::err_expected_semi_for);
Fariborz Jahanian3ba5a0f2008-01-03 17:55:25 +00001046 SkipUntil(tok::semi);
1047 }
Sebastian Redl9a920342008-12-11 19:48:14 +00001048
Fariborz Jahanian3ba5a0f2008-01-03 17:55:25 +00001049 // Parse the third part of the for specifier.
Chris Lattner4dca69b2009-03-29 17:29:28 +00001050 if (Tok.isNot(tok::r_paren)) // for (...;...;)
Sebastian Redlf05b1522009-01-16 23:28:06 +00001051 ThirdPart = ParseExpression();
Reid Spencer5f016e22007-07-11 17:01:13 +00001052 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001053 // Match the ')'.
1054 SourceLocation RParenLoc = MatchRHSPunctuation(tok::r_paren, LParenLoc);
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001055
Chris Lattner0ecea032007-08-22 05:28:50 +00001056 // C99 6.8.5p5 - In C99, the body of the if statement is a scope, even if
Chris Lattner38484402007-08-22 05:33:11 +00001057 // there is no compound stmt. C90 does not have this clause. We only do this
1058 // if the body isn't a compound statement to avoid push/pop in common cases.
Argyrios Kyrtzidis488d37e2008-09-11 03:06:46 +00001059 //
1060 // C++ 6.5p2:
1061 // The substatement in an iteration-statement implicitly defines a local scope
1062 // which is entered and exited each time through the loop.
1063 //
1064 // See comments in ParseIfStatement for why we create a scope for
1065 // for-init-statement/condition and a new scope for substatement in C++.
1066 //
Mike Stump1eb44332009-09-09 15:08:12 +00001067 ParseScope InnerScope(this, Scope::DeclScope,
Chris Lattner4d00f2a2009-04-22 00:54:41 +00001068 C99orCXXorObjC && Tok.isNot(tok::l_brace));
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001069
Reid Spencer5f016e22007-07-11 17:01:13 +00001070 // Read the body statement.
Sebastian Redl61364dd2008-12-11 19:30:53 +00001071 OwningStmtResult Body(ParseStatement());
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001072
Chris Lattner0ecea032007-08-22 05:28:50 +00001073 // Pop the body scope if needed.
Douglas Gregor8935b8b2008-12-10 06:34:36 +00001074 InnerScope.Exit();
Chris Lattner0ecea032007-08-22 05:28:50 +00001075
Reid Spencer5f016e22007-07-11 17:01:13 +00001076 // Leave the for-scope.
Douglas Gregor8935b8b2008-12-10 06:34:36 +00001077 ForScope.Exit();
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001078
1079 if (Body.isInvalid())
Sebastian Redl9a920342008-12-11 19:48:14 +00001080 return StmtError();
Sebastian Redleffa8d12008-12-10 00:02:53 +00001081
1082 if (!ForEach)
Sebastian Redl76ad2e82009-02-05 15:02:23 +00001083 return Actions.ActOnForStmt(ForLoc, LParenLoc, move(FirstPart),
Anders Carlsson5ee56e92009-12-16 02:09:40 +00001084 Actions.MakeFullExpr(SecondPart), SecondVar,
1085 Actions.MakeFullExpr(ThirdPart), RParenLoc,
Douglas Gregor99e9b4d2009-11-25 00:27:52 +00001086 move(Body));
Mike Stump1eb44332009-09-09 15:08:12 +00001087
Chris Lattner682bf922009-03-29 16:50:03 +00001088 return Actions.ActOnObjCForCollectionStmt(ForLoc, LParenLoc,
1089 move(FirstPart),
1090 move(SecondPart),
1091 RParenLoc, move(Body));
Reid Spencer5f016e22007-07-11 17:01:13 +00001092}
1093
1094/// ParseGotoStatement
1095/// jump-statement:
1096/// 'goto' identifier ';'
1097/// [GNU] 'goto' '*' expression ';'
1098///
1099/// Note: this lets the caller parse the end ';'.
1100///
Sean Huntbbd37c62009-11-21 08:43:09 +00001101Parser::OwningStmtResult Parser::ParseGotoStatement(AttributeList *Attr) {
1102 // FIXME: Use attributes?
Ted Kremenek1e377652010-02-11 02:19:13 +00001103 delete Attr;
1104
Chris Lattner4e1d99a2007-10-09 17:41:39 +00001105 assert(Tok.is(tok::kw_goto) && "Not a goto stmt!");
Reid Spencer5f016e22007-07-11 17:01:13 +00001106 SourceLocation GotoLoc = ConsumeToken(); // eat the 'goto'.
Sebastian Redl9a920342008-12-11 19:48:14 +00001107
Sebastian Redl15faa7f2008-12-09 20:22:58 +00001108 OwningStmtResult Res(Actions);
Chris Lattner4e1d99a2007-10-09 17:41:39 +00001109 if (Tok.is(tok::identifier)) {
Steve Naroff1b273c42007-09-16 14:56:35 +00001110 Res = Actions.ActOnGotoStmt(GotoLoc, Tok.getLocation(),
Reid Spencer5f016e22007-07-11 17:01:13 +00001111 Tok.getIdentifierInfo());
1112 ConsumeToken();
Eli Friedmanf01fdff2009-04-28 00:51:18 +00001113 } else if (Tok.is(tok::star)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001114 // GNU indirect goto extension.
1115 Diag(Tok, diag::ext_gnu_indirect_goto);
1116 SourceLocation StarLoc = ConsumeToken();
Sebastian Redl2f7ece72008-12-11 21:36:32 +00001117 OwningExprResult R(ParseExpression());
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001118 if (R.isInvalid()) { // Skip to the semicolon, but don't consume it.
Reid Spencer5f016e22007-07-11 17:01:13 +00001119 SkipUntil(tok::semi, false, true);
Sebastian Redl9a920342008-12-11 19:48:14 +00001120 return StmtError();
Reid Spencer5f016e22007-07-11 17:01:13 +00001121 }
Sebastian Redl76ad2e82009-02-05 15:02:23 +00001122 Res = Actions.ActOnIndirectGotoStmt(GotoLoc, StarLoc, move(R));
Chris Lattner95cfb852007-07-22 04:13:33 +00001123 } else {
1124 Diag(Tok, diag::err_expected_ident);
Sebastian Redl9a920342008-12-11 19:48:14 +00001125 return StmtError();
Reid Spencer5f016e22007-07-11 17:01:13 +00001126 }
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001127
Sebastian Redl9a920342008-12-11 19:48:14 +00001128 return move(Res);
Reid Spencer5f016e22007-07-11 17:01:13 +00001129}
1130
1131/// ParseContinueStatement
1132/// jump-statement:
1133/// 'continue' ';'
1134///
1135/// Note: this lets the caller parse the end ';'.
1136///
Sean Huntbbd37c62009-11-21 08:43:09 +00001137Parser::OwningStmtResult Parser::ParseContinueStatement(AttributeList *Attr) {
1138 // FIXME: Use attributes?
Ted Kremenek1e377652010-02-11 02:19:13 +00001139 delete Attr;
1140
Reid Spencer5f016e22007-07-11 17:01:13 +00001141 SourceLocation ContinueLoc = ConsumeToken(); // eat the 'continue'.
Sebastian Redl4cffe2f2009-01-18 13:19:59 +00001142 return Actions.ActOnContinueStmt(ContinueLoc, CurScope);
Reid Spencer5f016e22007-07-11 17:01:13 +00001143}
1144
1145/// ParseBreakStatement
1146/// jump-statement:
1147/// 'break' ';'
1148///
1149/// Note: this lets the caller parse the end ';'.
1150///
Sean Huntbbd37c62009-11-21 08:43:09 +00001151Parser::OwningStmtResult Parser::ParseBreakStatement(AttributeList *Attr) {
1152 // FIXME: Use attributes?
Ted Kremenek1e377652010-02-11 02:19:13 +00001153 delete Attr;
1154
Reid Spencer5f016e22007-07-11 17:01:13 +00001155 SourceLocation BreakLoc = ConsumeToken(); // eat the 'break'.
Sebastian Redl4cffe2f2009-01-18 13:19:59 +00001156 return Actions.ActOnBreakStmt(BreakLoc, CurScope);
Reid Spencer5f016e22007-07-11 17:01:13 +00001157}
1158
1159/// ParseReturnStatement
1160/// jump-statement:
1161/// 'return' expression[opt] ';'
Sean Huntbbd37c62009-11-21 08:43:09 +00001162Parser::OwningStmtResult Parser::ParseReturnStatement(AttributeList *Attr) {
1163 // FIXME: Use attributes?
Ted Kremenek1e377652010-02-11 02:19:13 +00001164 delete Attr;
1165
Chris Lattner4e1d99a2007-10-09 17:41:39 +00001166 assert(Tok.is(tok::kw_return) && "Not a return stmt!");
Reid Spencer5f016e22007-07-11 17:01:13 +00001167 SourceLocation ReturnLoc = ConsumeToken(); // eat the 'return'.
Sebastian Redl9a920342008-12-11 19:48:14 +00001168
Sebastian Redl15faa7f2008-12-09 20:22:58 +00001169 OwningExprResult R(Actions);
Chris Lattner4e1d99a2007-10-09 17:41:39 +00001170 if (Tok.isNot(tok::semi)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001171 R = ParseExpression();
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001172 if (R.isInvalid()) { // Skip to the semicolon, but don't consume it.
Reid Spencer5f016e22007-07-11 17:01:13 +00001173 SkipUntil(tok::semi, false, true);
Sebastian Redl9a920342008-12-11 19:48:14 +00001174 return StmtError();
Reid Spencer5f016e22007-07-11 17:01:13 +00001175 }
1176 }
Anders Carlssonf53b4432009-08-18 16:11:00 +00001177 return Actions.ActOnReturnStmt(ReturnLoc, move(R));
Reid Spencer5f016e22007-07-11 17:01:13 +00001178}
1179
Steve Naroff5f8aa692008-02-11 23:15:56 +00001180/// FuzzyParseMicrosoftAsmStatement. When -fms-extensions is enabled, this
1181/// routine is called to skip/ignore tokens that comprise the MS asm statement.
Sebastian Redl9a920342008-12-11 19:48:14 +00001182Parser::OwningStmtResult Parser::FuzzyParseMicrosoftAsmStatement() {
Steve Naroffb746ce82008-02-07 23:24:32 +00001183 if (Tok.is(tok::l_brace)) {
1184 unsigned short savedBraceCount = BraceCount;
1185 do {
1186 ConsumeAnyToken();
1187 } while (BraceCount > savedBraceCount && Tok.isNot(tok::eof));
Mike Stump1eb44332009-09-09 15:08:12 +00001188 } else {
Steve Naroffb746ce82008-02-07 23:24:32 +00001189 // From the MS website: If used without braces, the __asm keyword means
1190 // that the rest of the line is an assembly-language statement.
1191 SourceManager &SrcMgr = PP.getSourceManager();
Steve Naroff03d6bc62008-02-08 03:36:19 +00001192 SourceLocation TokLoc = Tok.getLocation();
Chris Lattnerf7cf85b2009-01-16 07:36:28 +00001193 unsigned LineNo = SrcMgr.getInstantiationLineNumber(TokLoc);
Steve Naroff36280972008-02-08 18:01:27 +00001194 do {
1195 ConsumeAnyToken();
1196 TokLoc = Tok.getLocation();
Mike Stump1eb44332009-09-09 15:08:12 +00001197 } while ((SrcMgr.getInstantiationLineNumber(TokLoc) == LineNo) &&
1198 Tok.isNot(tok::r_brace) && Tok.isNot(tok::semi) &&
Steve Naroff36280972008-02-08 18:01:27 +00001199 Tok.isNot(tok::eof));
Steve Naroffb746ce82008-02-07 23:24:32 +00001200 }
Mike Stump95059b52009-12-11 00:04:56 +00001201 Token t;
1202 t.setKind(tok::string_literal);
1203 t.setLiteralData("\"FIXME: not done\"");
1204 t.clearFlag(Token::NeedsCleaning);
1205 t.setLength(17);
1206 OwningExprResult AsmString(Actions.ActOnStringLiteral(&t, 1));
1207 ExprVector Constraints(Actions);
1208 ExprVector Exprs(Actions);
1209 ExprVector Clobbers(Actions);
Anders Carlssonff93dbd2010-01-30 22:25:16 +00001210 return Actions.ActOnAsmStmt(Tok.getLocation(), true, true, 0, 0, 0,
Mike Stump95059b52009-12-11 00:04:56 +00001211 move_arg(Constraints), move_arg(Exprs),
1212 move(AsmString), move_arg(Clobbers),
Mike Stump3b11fd32010-01-04 22:37:17 +00001213 Tok.getLocation(), true);
Steve Naroffd62701b2008-02-07 03:50:06 +00001214}
1215
Reid Spencer5f016e22007-07-11 17:01:13 +00001216/// ParseAsmStatement - Parse a GNU extended asm statement.
Steve Naroff5f8aa692008-02-11 23:15:56 +00001217/// asm-statement:
1218/// gnu-asm-statement
1219/// ms-asm-statement
1220///
1221/// [GNU] gnu-asm-statement:
Reid Spencer5f016e22007-07-11 17:01:13 +00001222/// 'asm' type-qualifier[opt] '(' asm-argument ')' ';'
1223///
1224/// [GNU] asm-argument:
1225/// asm-string-literal
1226/// asm-string-literal ':' asm-operands[opt]
1227/// asm-string-literal ':' asm-operands[opt] ':' asm-operands[opt]
1228/// asm-string-literal ':' asm-operands[opt] ':' asm-operands[opt]
1229/// ':' asm-clobbers
1230///
1231/// [GNU] asm-clobbers:
1232/// asm-string-literal
1233/// asm-clobbers ',' asm-string-literal
1234///
Steve Naroff5f8aa692008-02-11 23:15:56 +00001235/// [MS] ms-asm-statement:
1236/// '__asm' assembly-instruction ';'[opt]
1237/// '__asm' '{' assembly-instruction-list '}' ';'[opt]
1238///
1239/// [MS] assembly-instruction-list:
1240/// assembly-instruction ';'[opt]
1241/// assembly-instruction-list ';' assembly-instruction ';'[opt]
1242///
Sebastian Redl9a920342008-12-11 19:48:14 +00001243Parser::OwningStmtResult Parser::ParseAsmStatement(bool &msAsm) {
Chris Lattner4e1d99a2007-10-09 17:41:39 +00001244 assert(Tok.is(tok::kw_asm) && "Not an asm stmt");
Chris Lattnerfe795952007-10-29 04:04:16 +00001245 SourceLocation AsmLoc = ConsumeToken();
Sebastian Redl9a920342008-12-11 19:48:14 +00001246
Steve Naroff5f8aa692008-02-11 23:15:56 +00001247 if (getLang().Microsoft && Tok.isNot(tok::l_paren) && !isTypeQualifier()) {
Steve Naroffd62701b2008-02-07 03:50:06 +00001248 msAsm = true;
1249 return FuzzyParseMicrosoftAsmStatement();
1250 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001251 DeclSpec DS;
1252 SourceLocation Loc = Tok.getLocation();
Sean Huntbbd37c62009-11-21 08:43:09 +00001253 ParseTypeQualifierListOpt(DS, true, false);
Sebastian Redl9a920342008-12-11 19:48:14 +00001254
Reid Spencer5f016e22007-07-11 17:01:13 +00001255 // GNU asms accept, but warn, about type-qualifiers other than volatile.
1256 if (DS.getTypeQualifiers() & DeclSpec::TQ_const)
Chris Lattner1ab3b962008-11-18 07:48:38 +00001257 Diag(Loc, diag::w_asm_qualifier_ignored) << "const";
Reid Spencer5f016e22007-07-11 17:01:13 +00001258 if (DS.getTypeQualifiers() & DeclSpec::TQ_restrict)
Chris Lattner1ab3b962008-11-18 07:48:38 +00001259 Diag(Loc, diag::w_asm_qualifier_ignored) << "restrict";
Sebastian Redl9a920342008-12-11 19:48:14 +00001260
Reid Spencer5f016e22007-07-11 17:01:13 +00001261 // Remember if this was a volatile asm.
Anders Carlsson39c47b52007-11-23 23:12:25 +00001262 bool isVolatile = DS.getTypeQualifiers() & DeclSpec::TQ_volatile;
Chris Lattner4e1d99a2007-10-09 17:41:39 +00001263 if (Tok.isNot(tok::l_paren)) {
Chris Lattner1ab3b962008-11-18 07:48:38 +00001264 Diag(Tok, diag::err_expected_lparen_after) << "asm";
Reid Spencer5f016e22007-07-11 17:01:13 +00001265 SkipUntil(tok::r_paren);
Sebastian Redl9a920342008-12-11 19:48:14 +00001266 return StmtError();
Reid Spencer5f016e22007-07-11 17:01:13 +00001267 }
1268 Loc = ConsumeParen();
Sebastian Redl9a920342008-12-11 19:48:14 +00001269
Sebastian Redleffa8d12008-12-10 00:02:53 +00001270 OwningExprResult AsmString(ParseAsmStringLiteral());
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001271 if (AsmString.isInvalid())
Sebastian Redl9a920342008-12-11 19:48:14 +00001272 return StmtError();
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001273
Anders Carlssonff93dbd2010-01-30 22:25:16 +00001274 llvm::SmallVector<IdentifierInfo *, 4> Names;
Sebastian Redla55e52c2008-11-25 22:21:31 +00001275 ExprVector Constraints(Actions);
1276 ExprVector Exprs(Actions);
1277 ExprVector Clobbers(Actions);
Reid Spencer5f016e22007-07-11 17:01:13 +00001278
Anders Carlssondfab34a2008-02-05 23:03:50 +00001279 if (Tok.is(tok::r_paren)) {
Chris Lattner64cb4752009-12-20 23:00:41 +00001280 // We have a simple asm expression like 'asm("foo")'.
1281 SourceLocation RParenLoc = ConsumeParen();
1282 return Actions.ActOnAsmStmt(AsmLoc, /*isSimple*/ true, isVolatile,
1283 /*NumOutputs*/ 0, /*NumInputs*/ 0, 0,
1284 move_arg(Constraints), move_arg(Exprs),
1285 move(AsmString), move_arg(Clobbers),
1286 RParenLoc);
Reid Spencer5f016e22007-07-11 17:01:13 +00001287 }
Sebastian Redleffa8d12008-12-10 00:02:53 +00001288
Chris Lattner64cb4752009-12-20 23:00:41 +00001289 // Parse Outputs, if present.
Chris Lattner64056462009-12-20 23:08:04 +00001290 bool AteExtraColon = false;
1291 if (Tok.is(tok::colon) || Tok.is(tok::coloncolon)) {
1292 // In C++ mode, parse "::" like ": :".
1293 AteExtraColon = Tok.is(tok::coloncolon);
Chris Lattner64cb4752009-12-20 23:00:41 +00001294 ConsumeToken();
1295
Chris Lattner64056462009-12-20 23:08:04 +00001296 if (!AteExtraColon &&
1297 ParseAsmOperandsOpt(Names, Constraints, Exprs))
Chris Lattner64cb4752009-12-20 23:00:41 +00001298 return StmtError();
1299 }
Chris Lattner64056462009-12-20 23:08:04 +00001300
Chris Lattner64cb4752009-12-20 23:00:41 +00001301 unsigned NumOutputs = Names.size();
1302
1303 // Parse Inputs, if present.
Chris Lattner64056462009-12-20 23:08:04 +00001304 if (AteExtraColon ||
1305 Tok.is(tok::colon) || Tok.is(tok::coloncolon)) {
1306 // In C++ mode, parse "::" like ": :".
1307 if (AteExtraColon)
1308 AteExtraColon = false;
1309 else {
1310 AteExtraColon = Tok.is(tok::coloncolon);
1311 ConsumeToken();
1312 }
1313
1314 if (!AteExtraColon &&
1315 ParseAsmOperandsOpt(Names, Constraints, Exprs))
Chris Lattner64cb4752009-12-20 23:00:41 +00001316 return StmtError();
1317 }
1318
1319 assert(Names.size() == Constraints.size() &&
1320 Constraints.size() == Exprs.size() &&
1321 "Input operand size mismatch!");
1322
1323 unsigned NumInputs = Names.size() - NumOutputs;
1324
1325 // Parse the clobbers, if present.
Chris Lattner64056462009-12-20 23:08:04 +00001326 if (AteExtraColon || Tok.is(tok::colon)) {
1327 if (!AteExtraColon)
1328 ConsumeToken();
Chris Lattner64cb4752009-12-20 23:00:41 +00001329
1330 // Parse the asm-string list for clobbers.
1331 while (1) {
1332 OwningExprResult Clobber(ParseAsmStringLiteral());
1333
1334 if (Clobber.isInvalid())
1335 break;
1336
1337 Clobbers.push_back(Clobber.release());
1338
1339 if (Tok.isNot(tok::comma)) break;
1340 ConsumeToken();
1341 }
1342 }
1343
1344 SourceLocation RParenLoc = MatchRHSPunctuation(tok::r_paren, Loc);
1345 return Actions.ActOnAsmStmt(AsmLoc, false, isVolatile,
Jay Foadbeaaccd2009-05-21 09:52:38 +00001346 NumOutputs, NumInputs, Names.data(),
Sebastian Redlf512e822009-01-18 18:03:53 +00001347 move_arg(Constraints), move_arg(Exprs),
Sebastian Redl76ad2e82009-02-05 15:02:23 +00001348 move(AsmString), move_arg(Clobbers),
Sebastian Redl3037ed02009-01-18 16:53:17 +00001349 RParenLoc);
Reid Spencer5f016e22007-07-11 17:01:13 +00001350}
1351
1352/// ParseAsmOperands - Parse the asm-operands production as used by
Chris Lattner64cb4752009-12-20 23:00:41 +00001353/// asm-statement, assuming the leading ':' token was eaten.
Reid Spencer5f016e22007-07-11 17:01:13 +00001354///
1355/// [GNU] asm-operands:
1356/// asm-operand
1357/// asm-operands ',' asm-operand
1358///
1359/// [GNU] asm-operand:
1360/// asm-string-literal '(' expression ')'
1361/// '[' identifier ']' asm-string-literal '(' expression ')'
1362///
Daniel Dunbar5ffe14c2009-10-18 20:26:27 +00001363//
1364// FIXME: Avoid unnecessary std::string trashing.
Anders Carlssonff93dbd2010-01-30 22:25:16 +00001365bool Parser::ParseAsmOperandsOpt(llvm::SmallVectorImpl<IdentifierInfo *> &Names,
1366 llvm::SmallVectorImpl<ExprTy *> &Constraints,
1367 llvm::SmallVectorImpl<ExprTy *> &Exprs) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001368 // 'asm-operands' isn't present?
Chris Lattner4e1d99a2007-10-09 17:41:39 +00001369 if (!isTokenStringLiteral() && Tok.isNot(tok::l_square))
Anders Carlsson8bd36fc2008-02-09 19:57:29 +00001370 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00001371
1372 while (1) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001373 // Read the [id] if present.
Chris Lattner4e1d99a2007-10-09 17:41:39 +00001374 if (Tok.is(tok::l_square)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001375 SourceLocation Loc = ConsumeBracket();
Mike Stump1eb44332009-09-09 15:08:12 +00001376
Chris Lattner4e1d99a2007-10-09 17:41:39 +00001377 if (Tok.isNot(tok::identifier)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001378 Diag(Tok, diag::err_expected_ident);
1379 SkipUntil(tok::r_paren);
Anders Carlsson8bd36fc2008-02-09 19:57:29 +00001380 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +00001381 }
Mike Stump1eb44332009-09-09 15:08:12 +00001382
Anders Carlssonb235fc22007-11-22 01:36:19 +00001383 IdentifierInfo *II = Tok.getIdentifierInfo();
Chris Lattner69efba72007-10-29 04:06:22 +00001384 ConsumeToken();
Anders Carlssonb235fc22007-11-22 01:36:19 +00001385
Anders Carlssonff93dbd2010-01-30 22:25:16 +00001386 Names.push_back(II);
Reid Spencer5f016e22007-07-11 17:01:13 +00001387 MatchRHSPunctuation(tok::r_square, Loc);
Anders Carlssonb235fc22007-11-22 01:36:19 +00001388 } else
Anders Carlssonff93dbd2010-01-30 22:25:16 +00001389 Names.push_back(0);
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001390
Sebastian Redleffa8d12008-12-10 00:02:53 +00001391 OwningExprResult Constraint(ParseAsmStringLiteral());
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001392 if (Constraint.isInvalid()) {
Anders Carlssonb235fc22007-11-22 01:36:19 +00001393 SkipUntil(tok::r_paren);
Anders Carlsson8bd36fc2008-02-09 19:57:29 +00001394 return true;
Anders Carlssonb235fc22007-11-22 01:36:19 +00001395 }
Sebastian Redleffa8d12008-12-10 00:02:53 +00001396 Constraints.push_back(Constraint.release());
Reid Spencer5f016e22007-07-11 17:01:13 +00001397
Chris Lattner4e1d99a2007-10-09 17:41:39 +00001398 if (Tok.isNot(tok::l_paren)) {
Chris Lattner1ab3b962008-11-18 07:48:38 +00001399 Diag(Tok, diag::err_expected_lparen_after) << "asm operand";
Reid Spencer5f016e22007-07-11 17:01:13 +00001400 SkipUntil(tok::r_paren);
Anders Carlsson8bd36fc2008-02-09 19:57:29 +00001401 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +00001402 }
Sebastian Redleffa8d12008-12-10 00:02:53 +00001403
Reid Spencer5f016e22007-07-11 17:01:13 +00001404 // Read the parenthesized expression.
Eli Friedman72056a22009-05-03 07:49:42 +00001405 SourceLocation OpenLoc = ConsumeParen();
1406 OwningExprResult Res(ParseExpression());
1407 MatchRHSPunctuation(tok::r_paren, OpenLoc);
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001408 if (Res.isInvalid()) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001409 SkipUntil(tok::r_paren);
Anders Carlsson8bd36fc2008-02-09 19:57:29 +00001410 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +00001411 }
Sebastian Redleffa8d12008-12-10 00:02:53 +00001412 Exprs.push_back(Res.release());
Reid Spencer5f016e22007-07-11 17:01:13 +00001413 // Eat the comma and continue parsing if it exists.
Anders Carlsson8bd36fc2008-02-09 19:57:29 +00001414 if (Tok.isNot(tok::comma)) return false;
Reid Spencer5f016e22007-07-11 17:01:13 +00001415 ConsumeToken();
1416 }
Anders Carlsson8bd36fc2008-02-09 19:57:29 +00001417
1418 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +00001419}
Fariborz Jahanianf9ed3152007-11-08 19:01:26 +00001420
Chris Lattnerb28317a2009-03-28 19:18:32 +00001421Parser::DeclPtrTy Parser::ParseFunctionStatementBody(DeclPtrTy Decl) {
Chris Lattner40e9bc82009-03-05 00:49:17 +00001422 assert(Tok.is(tok::l_brace));
1423 SourceLocation LBraceLoc = Tok.getLocation();
Sebastian Redld3a413d2009-04-26 20:35:05 +00001424
Chris Lattner49f28ca2009-03-05 08:00:35 +00001425 PrettyStackTraceActionsDecl CrashInfo(Decl, LBraceLoc, Actions,
1426 PP.getSourceManager(),
1427 "parsing function body");
Mike Stump1eb44332009-09-09 15:08:12 +00001428
Fariborz Jahanianf9ed3152007-11-08 19:01:26 +00001429 // Do not enter a scope for the brace, as the arguments are in the same scope
1430 // (the function body) as the body itself. Instead, just read the statement
1431 // list and put it into a CompoundStmt for safe keeping.
Sebastian Redl61364dd2008-12-11 19:30:53 +00001432 OwningStmtResult FnBody(ParseCompoundStatementBody());
1433
Fariborz Jahanianf9ed3152007-11-08 19:01:26 +00001434 // If the function body could not be parsed, make a bogus compoundstmt.
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001435 if (FnBody.isInvalid())
Mike Stump1eb44332009-09-09 15:08:12 +00001436 FnBody = Actions.ActOnCompoundStmt(LBraceLoc, LBraceLoc,
Chris Lattner40e9bc82009-03-05 00:49:17 +00001437 MultiStmtArg(Actions), false);
Sebastian Redl61364dd2008-12-11 19:30:53 +00001438
Sebastian Redl76ad2e82009-02-05 15:02:23 +00001439 return Actions.ActOnFinishFunctionBody(Decl, move(FnBody));
Seo Sanghyeoncd5af4b2007-12-01 08:06:07 +00001440}
Sebastian Redla0fd8652008-12-21 16:41:36 +00001441
Sebastian Redld3a413d2009-04-26 20:35:05 +00001442/// ParseFunctionTryBlock - Parse a C++ function-try-block.
1443///
1444/// function-try-block:
1445/// 'try' ctor-initializer[opt] compound-statement handler-seq
1446///
1447Parser::DeclPtrTy Parser::ParseFunctionTryBlock(DeclPtrTy Decl) {
1448 assert(Tok.is(tok::kw_try) && "Expected 'try'");
1449 SourceLocation TryLoc = ConsumeToken();
1450
1451 PrettyStackTraceActionsDecl CrashInfo(Decl, TryLoc, Actions,
1452 PP.getSourceManager(),
1453 "parsing function try block");
1454
1455 // Constructor initializer list?
1456 if (Tok.is(tok::colon))
1457 ParseConstructorInitializer(Decl);
1458
Sebastian Redlde1b60a2009-04-26 21:08:36 +00001459 SourceLocation LBraceLoc = Tok.getLocation();
Sebastian Redld3a413d2009-04-26 20:35:05 +00001460 OwningStmtResult FnBody(ParseCXXTryBlockCommon(TryLoc));
1461 // If we failed to parse the try-catch, we just give the function an empty
1462 // compound statement as the body.
1463 if (FnBody.isInvalid())
Sebastian Redlde1b60a2009-04-26 21:08:36 +00001464 FnBody = Actions.ActOnCompoundStmt(LBraceLoc, LBraceLoc,
Sebastian Redld3a413d2009-04-26 20:35:05 +00001465 MultiStmtArg(Actions), false);
1466
1467 return Actions.ActOnFinishFunctionBody(Decl, move(FnBody));
1468}
1469
Sebastian Redla0fd8652008-12-21 16:41:36 +00001470/// ParseCXXTryBlock - Parse a C++ try-block.
1471///
1472/// try-block:
1473/// 'try' compound-statement handler-seq
1474///
Sean Huntbbd37c62009-11-21 08:43:09 +00001475Parser::OwningStmtResult Parser::ParseCXXTryBlock(AttributeList* Attr) {
1476 // FIXME: Add attributes?
Ted Kremenek1e377652010-02-11 02:19:13 +00001477 delete Attr;
1478
Sebastian Redla0fd8652008-12-21 16:41:36 +00001479 assert(Tok.is(tok::kw_try) && "Expected 'try'");
1480
1481 SourceLocation TryLoc = ConsumeToken();
Sebastian Redld3a413d2009-04-26 20:35:05 +00001482 return ParseCXXTryBlockCommon(TryLoc);
1483}
1484
1485/// ParseCXXTryBlockCommon - Parse the common part of try-block and
1486/// function-try-block.
1487///
1488/// try-block:
1489/// 'try' compound-statement handler-seq
1490///
1491/// function-try-block:
1492/// 'try' ctor-initializer[opt] compound-statement handler-seq
1493///
1494/// handler-seq:
1495/// handler handler-seq[opt]
1496///
1497Parser::OwningStmtResult Parser::ParseCXXTryBlockCommon(SourceLocation TryLoc) {
Sebastian Redla0fd8652008-12-21 16:41:36 +00001498 if (Tok.isNot(tok::l_brace))
1499 return StmtError(Diag(Tok, diag::err_expected_lbrace));
Sean Huntbbd37c62009-11-21 08:43:09 +00001500 // FIXME: Possible draft standard bug: attribute-specifier should be allowed?
1501 OwningStmtResult TryBlock(ParseCompoundStatement(0));
Sebastian Redla0fd8652008-12-21 16:41:36 +00001502 if (TryBlock.isInvalid())
1503 return move(TryBlock);
1504
1505 StmtVector Handlers(Actions);
Sean Huntbbd37c62009-11-21 08:43:09 +00001506 if (getLang().CPlusPlus0x && isCXX0XAttributeSpecifier()) {
1507 CXX0XAttributeList Attr = ParseCXX0XAttributes();
1508 Diag(Attr.Range.getBegin(), diag::err_attributes_not_allowed)
1509 << Attr.Range;
1510 }
Sebastian Redla0fd8652008-12-21 16:41:36 +00001511 if (Tok.isNot(tok::kw_catch))
1512 return StmtError(Diag(Tok, diag::err_expected_catch));
1513 while (Tok.is(tok::kw_catch)) {
1514 OwningStmtResult Handler(ParseCXXCatchBlock());
1515 if (!Handler.isInvalid())
1516 Handlers.push_back(Handler.release());
1517 }
1518 // Don't bother creating the full statement if we don't have any usable
1519 // handlers.
1520 if (Handlers.empty())
1521 return StmtError();
1522
Sebastian Redl76ad2e82009-02-05 15:02:23 +00001523 return Actions.ActOnCXXTryBlock(TryLoc, move(TryBlock), move_arg(Handlers));
Sebastian Redla0fd8652008-12-21 16:41:36 +00001524}
1525
1526/// ParseCXXCatchBlock - Parse a C++ catch block, called handler in the standard
1527///
1528/// handler:
1529/// 'catch' '(' exception-declaration ')' compound-statement
1530///
1531/// exception-declaration:
1532/// type-specifier-seq declarator
1533/// type-specifier-seq abstract-declarator
1534/// type-specifier-seq
1535/// '...'
1536///
1537Parser::OwningStmtResult Parser::ParseCXXCatchBlock() {
1538 assert(Tok.is(tok::kw_catch) && "Expected 'catch'");
1539
1540 SourceLocation CatchLoc = ConsumeToken();
1541
1542 SourceLocation LParenLoc = Tok.getLocation();
1543 if (ExpectAndConsume(tok::l_paren, diag::err_expected_lparen))
1544 return StmtError();
1545
1546 // C++ 3.3.2p3:
1547 // The name in a catch exception-declaration is local to the handler and
1548 // shall not be redeclared in the outermost block of the handler.
1549 ParseScope CatchScope(this, Scope::DeclScope | Scope::ControlScope);
1550
1551 // exception-declaration is equivalent to '...' or a parameter-declaration
1552 // without default arguments.
Chris Lattnerb28317a2009-03-28 19:18:32 +00001553 DeclPtrTy ExceptionDecl;
Sebastian Redla0fd8652008-12-21 16:41:36 +00001554 if (Tok.isNot(tok::ellipsis)) {
1555 DeclSpec DS;
Sebastian Redl4b07b292008-12-22 19:15:10 +00001556 if (ParseCXXTypeSpecifierSeq(DS))
1557 return StmtError();
Sebastian Redla0fd8652008-12-21 16:41:36 +00001558 Declarator ExDecl(DS, Declarator::CXXCatchContext);
1559 ParseDeclarator(ExDecl);
1560 ExceptionDecl = Actions.ActOnExceptionDeclarator(CurScope, ExDecl);
1561 } else
1562 ConsumeToken();
1563
1564 if (MatchRHSPunctuation(tok::r_paren, LParenLoc).isInvalid())
1565 return StmtError();
1566
1567 if (Tok.isNot(tok::l_brace))
1568 return StmtError(Diag(Tok, diag::err_expected_lbrace));
1569
Sean Huntbbd37c62009-11-21 08:43:09 +00001570 // FIXME: Possible draft standard bug: attribute-specifier should be allowed?
1571 OwningStmtResult Block(ParseCompoundStatement(0));
Sebastian Redla0fd8652008-12-21 16:41:36 +00001572 if (Block.isInvalid())
1573 return move(Block);
1574
Sebastian Redl76ad2e82009-02-05 15:02:23 +00001575 return Actions.ActOnCXXCatchBlock(CatchLoc, ExceptionDecl, move(Block));
Sebastian Redla0fd8652008-12-21 16:41:36 +00001576}