blob: da0e865862cc4de9b6e886f078f245d5ef5835b8 [file] [log] [blame]
Chris Lattner7ad0fbe2006-11-05 07:46:30 +00001//===--- ParseStmt.cpp - Statement and Block Parser -----------------------===//
Chris Lattner0ccd51e2006-08-09 05:47:47 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner5b12ab82007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Chris Lattner0ccd51e2006-08-09 05:47:47 +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 Lattner8a9a97a2009-12-10 00:21:05 +000016#include "RAIIObjectsForParser.h"
John McCall8b0666c2010-08-20 18:27:03 +000017#include "clang/Sema/DeclSpec.h"
John McCallfaf5fb42010-08-26 23:41:50 +000018#include "clang/Sema/PrettyDeclStackTrace.h"
John McCall8b0666c2010-08-20 18:27:03 +000019#include "clang/Sema/Scope.h"
Chris Lattnerbd61a952009-03-05 00:00:31 +000020#include "clang/Basic/Diagnostic.h"
21#include "clang/Basic/PrettyStackTrace.h"
22#include "clang/Basic/SourceManager.h"
Chris Lattner0ccd51e2006-08-09 05:47:47 +000023using namespace clang;
24
25//===----------------------------------------------------------------------===//
26// C99 6.8: Statements and Blocks.
27//===----------------------------------------------------------------------===//
28
29/// ParseStatementOrDeclaration - Read 'statement' or 'declaration'.
30/// StatementOrDeclaration:
31/// statement
32/// declaration
33///
34/// statement:
35/// labeled-statement
36/// compound-statement
37/// expression-statement
38/// selection-statement
39/// iteration-statement
40/// jump-statement
Argyrios Kyrtzidisdee82912008-09-07 18:58:01 +000041/// [C++] declaration-statement
Sebastian Redlb219c902008-12-21 16:41:36 +000042/// [C++] try-block
John Wiegley1c0675e2011-04-28 01:08:34 +000043/// [MS] seh-try-block
Fariborz Jahanian90814572007-10-04 20:19:06 +000044/// [OBC] objc-throw-statement
45/// [OBC] objc-try-catch-statement
Fariborz Jahanianf89ca382008-01-29 18:21:32 +000046/// [OBC] objc-synchronized-statement
Chris Lattner0116c472006-08-15 06:03:28 +000047/// [GNU] asm-statement
Chris Lattner0ccd51e2006-08-09 05:47:47 +000048/// [OMP] openmp-construct [TODO]
49///
50/// labeled-statement:
51/// identifier ':' statement
52/// 'case' constant-expression ':' statement
53/// 'default' ':' statement
54///
Chris Lattner0ccd51e2006-08-09 05:47:47 +000055/// selection-statement:
56/// if-statement
57/// switch-statement
58///
59/// iteration-statement:
60/// while-statement
61/// do-statement
62/// for-statement
63///
Chris Lattner9075bd72006-08-10 04:59:57 +000064/// expression-statement:
65/// expression[opt] ';'
66///
Chris Lattner0ccd51e2006-08-09 05:47:47 +000067/// jump-statement:
68/// 'goto' identifier ';'
69/// 'continue' ';'
70/// 'break' ';'
71/// 'return' expression[opt] ';'
Chris Lattner503fadc2006-08-10 05:45:44 +000072/// [GNU] 'goto' '*' expression ';'
Chris Lattner0ccd51e2006-08-09 05:47:47 +000073///
Fariborz Jahanian90814572007-10-04 20:19:06 +000074/// [OBC] objc-throw-statement:
75/// [OBC] '@' 'throw' expression ';'
Mike Stump11289f42009-09-09 15:08:12 +000076/// [OBC] '@' 'throw' ';'
77///
John McCalldadc5752010-08-24 06:29:42 +000078StmtResult
Fariborz Jahanian1db5c942010-09-28 20:42:35 +000079Parser::ParseStatementOrDeclaration(StmtVector &Stmts, bool OnlyStatement) {
Chris Lattner503fadc2006-08-10 05:45:44 +000080 const char *SemiError = 0;
John McCalldadc5752010-08-24 06:29:42 +000081 StmtResult Res;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +000082
Argyrios Kyrtzidis355094e2010-06-17 10:52:18 +000083 ParenBraceBracketBalancer BalancerRAIIObj(*this);
Sebastian Redl17f2c7d2008-12-09 13:15:23 +000084
John McCall084e83d2011-03-24 11:26:52 +000085 ParsedAttributesWithRange attrs(AttrFactory);
John McCall53fa7142010-12-24 02:08:15 +000086 MaybeParseCXX0XAttributes(attrs);
Alexis Hunt96d5c762009-11-21 08:43:09 +000087
Chris Lattner503fadc2006-08-10 05:45:44 +000088 // Cases in this switch statement should fall through if the parser expects
89 // the token to end in a semicolon (in which case SemiError should be set),
90 // or they directly 'return;' if not.
Douglas Gregor0e7dde52011-04-24 05:37:28 +000091Retry:
Fariborz Jahanian62fd2b42007-09-19 19:14:32 +000092 tok::TokenKind Kind = Tok.getKind();
93 SourceLocation AtLoc;
94 switch (Kind) {
Fariborz Jahanian62fd2b42007-09-19 19:14:32 +000095 case tok::at: // May be a @try or @throw statement
96 {
97 AtLoc = ConsumeToken(); // consume @
Sebastian Redlbab9a4b2008-12-11 20:12:42 +000098 return ParseObjCAtStatement(AtLoc);
Fariborz Jahanian62fd2b42007-09-19 19:14:32 +000099 }
Fariborz Jahanian62fd2b42007-09-19 19:14:32 +0000100
Douglas Gregor9d64c5e2009-09-21 20:51:25 +0000101 case tok::code_completion:
John McCallfaf5fb42010-08-26 23:41:50 +0000102 Actions.CodeCompleteOrdinaryName(getCurScope(), Sema::PCC_Statement);
Argyrios Kyrtzidis5cec2ae2011-09-04 03:32:15 +0000103 cutOffParsing();
104 return StmtError();
NAKAMURA Takumi82a35112011-10-08 11:31:46 +0000105
Douglas Gregor0e7dde52011-04-24 05:37:28 +0000106 case tok::identifier: {
107 Token Next = NextToken();
108 if (Next.is(tok::colon)) { // C99 6.8.1: labeled-statement
Argyrios Kyrtzidis07b8b632008-07-12 21:04:42 +0000109 // identifier ':' statement
John McCall53fa7142010-12-24 02:08:15 +0000110 return ParseLabeledStatement(attrs);
Argyrios Kyrtzidis07b8b632008-07-12 21:04:42 +0000111 }
NAKAMURA Takumi82a35112011-10-08 11:31:46 +0000112
Douglas Gregor8b02cd02011-04-27 04:48:22 +0000113 if (Next.isNot(tok::coloncolon)) {
Douglas Gregor0e7dde52011-04-24 05:37:28 +0000114 CXXScopeSpec SS;
115 IdentifierInfo *Name = Tok.getIdentifierInfo();
116 SourceLocation NameLoc = Tok.getLocation();
Richard Trieu01fc0012011-09-19 19:01:00 +0000117
118 if (getLang().CPlusPlus)
119 CheckForTemplateAndDigraph(Next, ParsedType(),
120 /*EnteringContext=*/false, *Name, SS);
121
Douglas Gregor0e7dde52011-04-24 05:37:28 +0000122 Sema::NameClassification Classification
123 = Actions.ClassifyName(getCurScope(), SS, Name, NameLoc, Next);
124 switch (Classification.getKind()) {
125 case Sema::NC_Keyword:
126 // The identifier was corrected to a keyword. Update the token
127 // to this keyword, and try again.
128 if (Name->getTokenID() != tok::identifier) {
129 Tok.setIdentifierInfo(Name);
130 Tok.setKind(Name->getTokenID());
131 goto Retry;
132 }
NAKAMURA Takumi82a35112011-10-08 11:31:46 +0000133
Douglas Gregor0e7dde52011-04-24 05:37:28 +0000134 // Fall through via the normal error path.
135 // FIXME: This seems like it could only happen for context-sensitive
136 // keywords.
NAKAMURA Takumi82a35112011-10-08 11:31:46 +0000137
Douglas Gregor0e7dde52011-04-24 05:37:28 +0000138 case Sema::NC_Error:
139 // Handle errors here by skipping up to the next semicolon or '}', and
140 // eat the semicolon if that's what stopped us.
141 SkipUntil(tok::r_brace, /*StopAtSemi=*/true, /*DontConsume=*/true);
142 if (Tok.is(tok::semi))
143 ConsumeToken();
144 return StmtError();
NAKAMURA Takumi82a35112011-10-08 11:31:46 +0000145
Douglas Gregor0e7dde52011-04-24 05:37:28 +0000146 case Sema::NC_Unknown:
147 // Either we don't know anything about this identifier, or we know that
NAKAMURA Takumi82a35112011-10-08 11:31:46 +0000148 // we're in a syntactic context we haven't handled yet.
149 break;
150
Douglas Gregor19b7acf2011-04-27 05:41:15 +0000151 case Sema::NC_Type:
Douglas Gregor8b02cd02011-04-27 04:48:22 +0000152 Tok.setKind(tok::annot_typename);
153 setTypeAnnotation(Tok, Classification.getType());
154 Tok.setAnnotationEndLoc(NameLoc);
Douglas Gregor8b02cd02011-04-27 04:48:22 +0000155 PP.AnnotateCachedTokens(Tok);
Douglas Gregor0e7dde52011-04-24 05:37:28 +0000156 break;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +0000157
Douglas Gregor0e7dde52011-04-24 05:37:28 +0000158 case Sema::NC_Expression:
Douglas Gregorda6c89d2011-04-27 06:18:01 +0000159 Tok.setKind(tok::annot_primary_expr);
160 setExprAnnotation(Tok, Classification.getExpression());
161 Tok.setAnnotationEndLoc(NameLoc);
162 PP.AnnotateCachedTokens(Tok);
163 break;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +0000164
Douglas Gregor0e7dde52011-04-24 05:37:28 +0000165 case Sema::NC_TypeTemplate:
166 case Sema::NC_FunctionTemplate: {
167 ConsumeToken(); // the identifier
168 UnqualifiedId Id;
169 Id.setIdentifier(Name, NameLoc);
170 if (AnnotateTemplateIdToken(
NAKAMURA Takumi82a35112011-10-08 11:31:46 +0000171 TemplateTy::make(Classification.getTemplateName()),
Douglas Gregor0e7dde52011-04-24 05:37:28 +0000172 Classification.getTemplateNameKind(),
Douglas Gregor8b02cd02011-04-27 04:48:22 +0000173 SS, Id, SourceLocation(),
174 /*AllowTypeAnnotation=*/false)) {
175 // Handle errors here by skipping up to the next semicolon or '}', and
176 // eat the semicolon if that's what stopped us.
177 SkipUntil(tok::r_brace, /*StopAtSemi=*/true, /*DontConsume=*/true);
178 if (Tok.is(tok::semi))
179 ConsumeToken();
NAKAMURA Takumi82a35112011-10-08 11:31:46 +0000180 return StmtError();
Douglas Gregor8b02cd02011-04-27 04:48:22 +0000181 }
NAKAMURA Takumi82a35112011-10-08 11:31:46 +0000182
183 // If the next token is '::', jump right into parsing a
Douglas Gregor8b02cd02011-04-27 04:48:22 +0000184 // nested-name-specifier. We don't want to leave the template-id
185 // hanging.
186 if (NextToken().is(tok::coloncolon) && TryAnnotateCXXScopeToken(false)){
Douglas Gregor0e7dde52011-04-24 05:37:28 +0000187 // Handle errors here by skipping up to the next semicolon or '}', and
188 // eat the semicolon if that's what stopped us.
189 SkipUntil(tok::r_brace, /*StopAtSemi=*/true, /*DontConsume=*/true);
190 if (Tok.is(tok::semi))
191 ConsumeToken();
NAKAMURA Takumi82a35112011-10-08 11:31:46 +0000192 return StmtError();
Douglas Gregor0e7dde52011-04-24 05:37:28 +0000193 }
NAKAMURA Takumi82a35112011-10-08 11:31:46 +0000194
Douglas Gregor0e7dde52011-04-24 05:37:28 +0000195 // We've annotated a template-id, so try again now.
196 goto Retry;
197 }
NAKAMURA Takumi82a35112011-10-08 11:31:46 +0000198
Douglas Gregor0e7dde52011-04-24 05:37:28 +0000199 case Sema::NC_NestedNameSpecifier:
200 // FIXME: Implement this!
201 break;
202 }
203 }
NAKAMURA Takumi82a35112011-10-08 11:31:46 +0000204
Douglas Gregor0e7dde52011-04-24 05:37:28 +0000205 // Fall through
206 }
NAKAMURA Takumi82a35112011-10-08 11:31:46 +0000207
Chris Lattner803802d2009-03-24 17:04:48 +0000208 default: {
Argyrios Kyrtzidis2c7137d2008-10-05 00:06:24 +0000209 if ((getLang().CPlusPlus || !OnlyStatement) && isDeclarationStatement()) {
Chris Lattner49836b42009-04-02 04:16:50 +0000210 SourceLocation DeclStart = Tok.getLocation(), DeclEnd;
Ted Kremenek5eec2b02010-11-10 05:59:39 +0000211 DeclGroupPtrTy Decl = ParseDeclaration(Stmts, Declarator::BlockContext,
John McCall53fa7142010-12-24 02:08:15 +0000212 DeclEnd, attrs);
Chris Lattner49836b42009-04-02 04:16:50 +0000213 return Actions.ActOnDeclStmt(Decl, DeclStart, DeclEnd);
Chris Lattner803802d2009-03-24 17:04:48 +0000214 }
215
216 if (Tok.is(tok::r_brace)) {
Chris Lattnerf8afb622006-08-10 18:26:31 +0000217 Diag(Tok, diag::err_expected_statement);
Sebastian Redl042ad952008-12-11 19:30:53 +0000218 return StmtError();
Chris Lattnerf8afb622006-08-10 18:26:31 +0000219 }
Mike Stump11289f42009-09-09 15:08:12 +0000220
Douglas Gregorda6c89d2011-04-27 06:18:01 +0000221 return ParseExprStatement(attrs);
Chris Lattner803802d2009-03-24 17:04:48 +0000222 }
Sebastian Redl042ad952008-12-11 19:30:53 +0000223
Chris Lattnerd2685cf2006-08-10 05:59:48 +0000224 case tok::kw_case: // C99 6.8.1: labeled-statement
John McCall53fa7142010-12-24 02:08:15 +0000225 return ParseCaseStatement(attrs);
Chris Lattnerd2685cf2006-08-10 05:59:48 +0000226 case tok::kw_default: // C99 6.8.1: labeled-statement
John McCall53fa7142010-12-24 02:08:15 +0000227 return ParseDefaultStatement(attrs);
Sebastian Redl042ad952008-12-11 19:30:53 +0000228
Chris Lattner9075bd72006-08-10 04:59:57 +0000229 case tok::l_brace: // C99 6.8.2: compound-statement
John McCall53fa7142010-12-24 02:08:15 +0000230 return ParseCompoundStatement(attrs);
Argyrios Kyrtzidisde2bdf62010-11-20 02:04:01 +0000231 case tok::semi: { // C99 6.8.3p3: expression[opt] ';'
Argyrios Kyrtzidis43ea78b2011-09-01 21:53:45 +0000232 bool HasLeadingEmptyMacro = Tok.hasLeadingEmptyMacro();
233 return Actions.ActOnNullStmt(ConsumeToken(), HasLeadingEmptyMacro);
Argyrios Kyrtzidisde2bdf62010-11-20 02:04:01 +0000234 }
Sebastian Redl042ad952008-12-11 19:30:53 +0000235
Chris Lattner9075bd72006-08-10 04:59:57 +0000236 case tok::kw_if: // C99 6.8.4.1: if-statement
John McCall53fa7142010-12-24 02:08:15 +0000237 return ParseIfStatement(attrs);
Chris Lattner9075bd72006-08-10 04:59:57 +0000238 case tok::kw_switch: // C99 6.8.4.2: switch-statement
John McCall53fa7142010-12-24 02:08:15 +0000239 return ParseSwitchStatement(attrs);
Sebastian Redl042ad952008-12-11 19:30:53 +0000240
Chris Lattner9075bd72006-08-10 04:59:57 +0000241 case tok::kw_while: // C99 6.8.5.1: while-statement
John McCall53fa7142010-12-24 02:08:15 +0000242 return ParseWhileStatement(attrs);
Chris Lattner9075bd72006-08-10 04:59:57 +0000243 case tok::kw_do: // C99 6.8.5.2: do-statement
John McCall53fa7142010-12-24 02:08:15 +0000244 Res = ParseDoStatement(attrs);
Chris Lattner34a95662009-06-14 00:07:48 +0000245 SemiError = "do/while";
Chris Lattner9075bd72006-08-10 04:59:57 +0000246 break;
247 case tok::kw_for: // C99 6.8.5.3: for-statement
John McCall53fa7142010-12-24 02:08:15 +0000248 return ParseForStatement(attrs);
Chris Lattner503fadc2006-08-10 05:45:44 +0000249
250 case tok::kw_goto: // C99 6.8.6.1: goto-statement
John McCall53fa7142010-12-24 02:08:15 +0000251 Res = ParseGotoStatement(attrs);
Chris Lattner34a95662009-06-14 00:07:48 +0000252 SemiError = "goto";
Chris Lattner9075bd72006-08-10 04:59:57 +0000253 break;
Chris Lattner503fadc2006-08-10 05:45:44 +0000254 case tok::kw_continue: // C99 6.8.6.2: continue-statement
John McCall53fa7142010-12-24 02:08:15 +0000255 Res = ParseContinueStatement(attrs);
Chris Lattner34a95662009-06-14 00:07:48 +0000256 SemiError = "continue";
Chris Lattner503fadc2006-08-10 05:45:44 +0000257 break;
258 case tok::kw_break: // C99 6.8.6.3: break-statement
John McCall53fa7142010-12-24 02:08:15 +0000259 Res = ParseBreakStatement(attrs);
Chris Lattner34a95662009-06-14 00:07:48 +0000260 SemiError = "break";
Chris Lattner503fadc2006-08-10 05:45:44 +0000261 break;
262 case tok::kw_return: // C99 6.8.6.4: return-statement
John McCall53fa7142010-12-24 02:08:15 +0000263 Res = ParseReturnStatement(attrs);
Chris Lattner34a95662009-06-14 00:07:48 +0000264 SemiError = "return";
Chris Lattner503fadc2006-08-10 05:45:44 +0000265 break;
Sebastian Redl042ad952008-12-11 19:30:53 +0000266
Sebastian Redlb219c902008-12-21 16:41:36 +0000267 case tok::kw_asm: {
John McCall53fa7142010-12-24 02:08:15 +0000268 ProhibitAttributes(attrs);
Steve Naroffb2c80c72008-02-07 03:50:06 +0000269 bool msAsm = false;
270 Res = ParseAsmStatement(msAsm);
Argyrios Kyrtzidis3050d9b2010-11-02 02:33:08 +0000271 Res = Actions.ActOnFinishFullStmt(Res.get());
Sebastian Redl042ad952008-12-11 19:30:53 +0000272 if (msAsm) return move(Res);
Chris Lattner34a95662009-06-14 00:07:48 +0000273 SemiError = "asm";
Chris Lattner0116c472006-08-15 06:03:28 +0000274 break;
Chris Lattner0ccd51e2006-08-09 05:47:47 +0000275 }
Sebastian Redl042ad952008-12-11 19:30:53 +0000276
Sebastian Redlb219c902008-12-21 16:41:36 +0000277 case tok::kw_try: // C++ 15: try-block
John McCall53fa7142010-12-24 02:08:15 +0000278 return ParseCXXTryBlock(attrs);
John Wiegley1c0675e2011-04-28 01:08:34 +0000279
280 case tok::kw___try:
281 return ParseSEHTryBlock(attrs);
Sebastian Redlb219c902008-12-21 16:41:36 +0000282 }
283
Chris Lattner503fadc2006-08-10 05:45:44 +0000284 // If we reached this code, the statement must end in a semicolon.
Chris Lattnerfeb00b62007-10-09 17:41:39 +0000285 if (Tok.is(tok::semi)) {
Chris Lattner503fadc2006-08-10 05:45:44 +0000286 ConsumeToken();
Sebastian Redl17f2c7d2008-12-09 13:15:23 +0000287 } else if (!Res.isInvalid()) {
Chris Lattner8e3eed02009-06-14 00:23:56 +0000288 // If the result was valid, then we do want to diagnose this. Use
289 // ExpectAndConsume to emit the diagnostic, even though we know it won't
290 // succeed.
291 ExpectAndConsume(tok::semi, diag::err_expected_semi_after_stmt, SemiError);
Chris Lattner0046de12008-11-13 18:52:53 +0000292 // Skip until we see a } or ;, but don't eat it.
293 SkipUntil(tok::r_brace, true, true);
Chris Lattner503fadc2006-08-10 05:45:44 +0000294 }
Mike Stump11289f42009-09-09 15:08:12 +0000295
Sebastian Redl042ad952008-12-11 19:30:53 +0000296 return move(Res);
Chris Lattner0ccd51e2006-08-09 05:47:47 +0000297}
298
Douglas Gregor0e7dde52011-04-24 05:37:28 +0000299/// \brief Parse an expression statement.
Douglas Gregorda6c89d2011-04-27 06:18:01 +0000300StmtResult Parser::ParseExprStatement(ParsedAttributes &Attrs) {
Douglas Gregor0e7dde52011-04-24 05:37:28 +0000301 // If a case keyword is missing, this is where it should be inserted.
302 Token OldToken = Tok;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +0000303
Douglas Gregor0e7dde52011-04-24 05:37:28 +0000304 // FIXME: Use the attributes
305 // expression[opt] ';'
Douglas Gregorda6c89d2011-04-27 06:18:01 +0000306 ExprResult Expr(ParseExpression());
Douglas Gregor0e7dde52011-04-24 05:37:28 +0000307 if (Expr.isInvalid()) {
308 // If the expression is invalid, skip ahead to the next semicolon or '}'.
309 // Not doing this opens us up to the possibility of infinite loops if
310 // ParseExpression does not consume any tokens.
311 SkipUntil(tok::r_brace, /*StopAtSemi=*/true, /*DontConsume=*/true);
312 if (Tok.is(tok::semi))
313 ConsumeToken();
314 return StmtError();
315 }
NAKAMURA Takumi82a35112011-10-08 11:31:46 +0000316
Douglas Gregor0e7dde52011-04-24 05:37:28 +0000317 if (Tok.is(tok::colon) && getCurScope()->isSwitchScope() &&
318 Actions.CheckCaseExpression(Expr.get())) {
319 // If a constant expression is followed by a colon inside a switch block,
320 // suggest a missing case keyword.
321 Diag(OldToken, diag::err_expected_case_before_expression)
322 << FixItHint::CreateInsertion(OldToken.getLocation(), "case ");
NAKAMURA Takumi82a35112011-10-08 11:31:46 +0000323
Douglas Gregor0e7dde52011-04-24 05:37:28 +0000324 // Recover parsing as a case statement.
325 return ParseCaseStatement(Attrs, /*MissingCase=*/true, Expr);
326 }
NAKAMURA Takumi82a35112011-10-08 11:31:46 +0000327
Douglas Gregor0e7dde52011-04-24 05:37:28 +0000328 // Otherwise, eat the semicolon.
329 ExpectAndConsumeSemi(diag::err_expected_semi_after_expr);
330 return Actions.ActOnExprStmt(Actions.MakeFullExpr(Expr.get()));
John Wiegley1c0675e2011-04-28 01:08:34 +0000331}
Douglas Gregor0e7dde52011-04-24 05:37:28 +0000332
John Wiegley1c0675e2011-04-28 01:08:34 +0000333StmtResult Parser::ParseSEHTryBlock(ParsedAttributes & Attrs) {
334 assert(Tok.is(tok::kw___try) && "Expected '__try'");
335 SourceLocation Loc = ConsumeToken();
336 return ParseSEHTryBlockCommon(Loc);
337}
338
339/// ParseSEHTryBlockCommon
340///
341/// seh-try-block:
342/// '__try' compound-statement seh-handler
343///
344/// seh-handler:
345/// seh-except-block
346/// seh-finally-block
347///
348StmtResult Parser::ParseSEHTryBlockCommon(SourceLocation TryLoc) {
349 if(Tok.isNot(tok::l_brace))
350 return StmtError(Diag(Tok,diag::err_expected_lbrace));
351
352 ParsedAttributesWithRange attrs(AttrFactory);
353 StmtResult TryBlock(ParseCompoundStatement(attrs));
354 if(TryBlock.isInvalid())
355 return move(TryBlock);
356
357 StmtResult Handler;
Douglas Gregor60060d62011-10-21 03:57:52 +0000358 if (Tok.is(tok::identifier) &&
359 Tok.getIdentifierInfo() == getSEHExceptKeyword()) {
John Wiegley1c0675e2011-04-28 01:08:34 +0000360 SourceLocation Loc = ConsumeToken();
361 Handler = ParseSEHExceptBlock(Loc);
362 } else if (Tok.is(tok::kw___finally)) {
363 SourceLocation Loc = ConsumeToken();
364 Handler = ParseSEHFinallyBlock(Loc);
365 } else {
366 return StmtError(Diag(Tok,diag::err_seh_expected_handler));
367 }
368
369 if(Handler.isInvalid())
370 return move(Handler);
371
372 return Actions.ActOnSEHTryBlock(false /* IsCXXTry */,
373 TryLoc,
374 TryBlock.take(),
375 Handler.take());
376}
377
378/// ParseSEHExceptBlock - Handle __except
379///
380/// seh-except-block:
381/// '__except' '(' seh-filter-expression ')' compound-statement
382///
383StmtResult Parser::ParseSEHExceptBlock(SourceLocation ExceptLoc) {
384 PoisonIdentifierRAIIObject raii(Ident__exception_code, false),
385 raii2(Ident___exception_code, false),
386 raii3(Ident_GetExceptionCode, false);
387
388 if(ExpectAndConsume(tok::l_paren,diag::err_expected_lparen))
389 return StmtError();
390
391 ParseScope ExpectScope(this, Scope::DeclScope | Scope::ControlScope);
392
Francois Pichetbfaf4772011-04-28 03:14:31 +0000393 if (getLang().Borland) {
394 Ident__exception_info->setIsPoisoned(false);
395 Ident___exception_info->setIsPoisoned(false);
396 Ident_GetExceptionInfo->setIsPoisoned(false);
397 }
John Wiegley1c0675e2011-04-28 01:08:34 +0000398 ExprResult FilterExpr(ParseExpression());
Francois Pichetbfaf4772011-04-28 03:14:31 +0000399
400 if (getLang().Borland) {
401 Ident__exception_info->setIsPoisoned(true);
402 Ident___exception_info->setIsPoisoned(true);
403 Ident_GetExceptionInfo->setIsPoisoned(true);
404 }
John Wiegley1c0675e2011-04-28 01:08:34 +0000405
406 if(FilterExpr.isInvalid())
407 return StmtError();
408
409 if(ExpectAndConsume(tok::r_paren,diag::err_expected_rparen))
410 return StmtError();
411
412 ParsedAttributesWithRange attrs(AttrFactory);
413 StmtResult Block(ParseCompoundStatement(attrs));
414
415 if(Block.isInvalid())
416 return move(Block);
417
418 return Actions.ActOnSEHExceptBlock(ExceptLoc, FilterExpr.take(), Block.take());
419}
420
421/// ParseSEHFinallyBlock - Handle __finally
422///
423/// seh-finally-block:
424/// '__finally' compound-statement
425///
426StmtResult Parser::ParseSEHFinallyBlock(SourceLocation FinallyBlock) {
427 PoisonIdentifierRAIIObject raii(Ident__abnormal_termination, false),
428 raii2(Ident___abnormal_termination, false),
429 raii3(Ident_AbnormalTermination, false);
430
431 ParsedAttributesWithRange attrs(AttrFactory);
432 StmtResult Block(ParseCompoundStatement(attrs));
433 if(Block.isInvalid())
434 return move(Block);
435
436 return Actions.ActOnSEHFinallyBlock(FinallyBlock,Block.take());
Douglas Gregor0e7dde52011-04-24 05:37:28 +0000437}
438
Argyrios Kyrtzidis832e8982008-07-09 22:53:07 +0000439/// ParseLabeledStatement - We have an identifier and a ':' after it.
Chris Lattner6dfd9782006-08-10 18:31:37 +0000440///
441/// labeled-statement:
442/// identifier ':' statement
Chris Lattnere37e2332006-08-15 04:50:22 +0000443/// [GNU] identifier ':' attributes[opt] statement
Argyrios Kyrtzidis832e8982008-07-09 22:53:07 +0000444///
John McCall53fa7142010-12-24 02:08:15 +0000445StmtResult Parser::ParseLabeledStatement(ParsedAttributes &attrs) {
Argyrios Kyrtzidis832e8982008-07-09 22:53:07 +0000446 assert(Tok.is(tok::identifier) && Tok.getIdentifierInfo() &&
447 "Not an identifier!");
448
449 Token IdentTok = Tok; // Save the whole token.
450 ConsumeToken(); // eat the identifier.
451
452 assert(Tok.is(tok::colon) && "Not a label!");
Sebastian Redl042ad952008-12-11 19:30:53 +0000453
Argyrios Kyrtzidis832e8982008-07-09 22:53:07 +0000454 // identifier ':' statement
455 SourceLocation ColonLoc = ConsumeToken();
456
457 // Read label attributes, if present.
John McCall53fa7142010-12-24 02:08:15 +0000458 MaybeParseGNUAttributes(attrs);
Argyrios Kyrtzidis832e8982008-07-09 22:53:07 +0000459
John McCalldadc5752010-08-24 06:29:42 +0000460 StmtResult SubStmt(ParseStatement());
Sebastian Redl17f2c7d2008-12-09 13:15:23 +0000461
Argyrios Kyrtzidis832e8982008-07-09 22:53:07 +0000462 // Broken substmt shouldn't prevent the label from being added to the AST.
Sebastian Redl17f2c7d2008-12-09 13:15:23 +0000463 if (SubStmt.isInvalid())
Argyrios Kyrtzidis832e8982008-07-09 22:53:07 +0000464 SubStmt = Actions.ActOnNullStmt(ColonLoc);
NAKAMURA Takumi82a35112011-10-08 11:31:46 +0000465
Chris Lattnerebb5c6c2011-02-18 01:27:55 +0000466 LabelDecl *LD = Actions.LookupOrCreateLabel(IdentTok.getIdentifierInfo(),
467 IdentTok.getLocation());
468 if (AttributeList *Attrs = attrs.getList())
469 Actions.ProcessDeclAttributeList(Actions.CurScope, LD, Attrs);
NAKAMURA Takumi82a35112011-10-08 11:31:46 +0000470
Chris Lattnerebb5c6c2011-02-18 01:27:55 +0000471 return Actions.ActOnLabelStmt(IdentTok.getLocation(), LD, ColonLoc,
472 SubStmt.get());
Argyrios Kyrtzidis832e8982008-07-09 22:53:07 +0000473}
Chris Lattnerf8afb622006-08-10 18:26:31 +0000474
Chris Lattnerd2685cf2006-08-10 05:59:48 +0000475/// ParseCaseStatement
476/// labeled-statement:
477/// 'case' constant-expression ':' statement
Chris Lattner476c3ad2006-08-13 22:09:58 +0000478/// [GNU] 'case' constant-expression '...' constant-expression ':' statement
Chris Lattner8693a512006-08-13 21:54:02 +0000479///
Richard Trieu2c850c02011-04-21 21:44:26 +0000480StmtResult Parser::ParseCaseStatement(ParsedAttributes &attrs, bool MissingCase,
481 ExprResult Expr) {
Richard Smithd4257d82011-04-21 22:48:40 +0000482 assert((MissingCase || Tok.is(tok::kw_case)) && "Not a case stmt!");
Alexis Hunt96d5c762009-11-21 08:43:09 +0000483 // FIXME: Use attributes?
Mike Stump11289f42009-09-09 15:08:12 +0000484
Chris Lattner34a22092009-03-04 04:23:07 +0000485 // It is very very common for code to contain many case statements recursively
486 // nested, as in (but usually without indentation):
487 // case 1:
488 // case 2:
489 // case 3:
490 // case 4:
491 // case 5: etc.
492 //
493 // Parsing this naively works, but is both inefficient and can cause us to run
494 // out of stack space in our recursive descent parser. As a special case,
Chris Lattner2b19a6582009-03-04 18:24:58 +0000495 // flatten this recursion into an iterative loop. This is complex and gross,
Chris Lattner34a22092009-03-04 04:23:07 +0000496 // but all the grossness is constrained to ParseCaseStatement (and some
497 // wierdness in the actions), so this is just local grossness :).
Mike Stump11289f42009-09-09 15:08:12 +0000498
Chris Lattner34a22092009-03-04 04:23:07 +0000499 // TopLevelCase - This is the highest level we have parsed. 'case 1' in the
500 // example above.
John McCalldadc5752010-08-24 06:29:42 +0000501 StmtResult TopLevelCase(true);
Mike Stump11289f42009-09-09 15:08:12 +0000502
Chris Lattner34a22092009-03-04 04:23:07 +0000503 // DeepestParsedCaseStmt - This is the deepest statement we have parsed, which
504 // gets updated each time a new case is parsed, and whose body is unset so
505 // far. When parsing 'case 4', this is the 'case 3' node.
Richard Trieu3481fcd2011-09-09 02:16:15 +0000506 Stmt *DeepestParsedCaseStmt = 0;
Mike Stump11289f42009-09-09 15:08:12 +0000507
Chris Lattner34a22092009-03-04 04:23:07 +0000508 // While we have case statements, eat and stack them.
David Majnemer0ac67fa2011-06-13 05:50:12 +0000509 SourceLocation ColonLoc;
Chris Lattner34a22092009-03-04 04:23:07 +0000510 do {
Richard Trieu2c850c02011-04-21 21:44:26 +0000511 SourceLocation CaseLoc = MissingCase ? Expr.get()->getExprLoc() :
512 ConsumeToken(); // eat the 'case'.
Mike Stump11289f42009-09-09 15:08:12 +0000513
Douglas Gregord328d572009-09-21 18:10:23 +0000514 if (Tok.is(tok::code_completion)) {
Douglas Gregor0be31a22010-07-02 17:43:08 +0000515 Actions.CodeCompleteCase(getCurScope());
Argyrios Kyrtzidis5cec2ae2011-09-04 03:32:15 +0000516 cutOffParsing();
517 return StmtError();
Douglas Gregord328d572009-09-21 18:10:23 +0000518 }
NAKAMURA Takumi82a35112011-10-08 11:31:46 +0000519
Chris Lattner125c0ee2009-12-10 00:38:54 +0000520 /// We don't want to treat 'case x : y' as a potential typo for 'case x::y'.
521 /// Disable this form of error recovery while we're parsing the case
522 /// expression.
523 ColonProtectionRAIIObject ColonProtection(*this);
NAKAMURA Takumi82a35112011-10-08 11:31:46 +0000524
Richard Trieu2c850c02011-04-21 21:44:26 +0000525 ExprResult LHS(MissingCase ? Expr : ParseConstantExpression());
526 MissingCase = false;
Chris Lattner34a22092009-03-04 04:23:07 +0000527 if (LHS.isInvalid()) {
Chris Lattner476c3ad2006-08-13 22:09:58 +0000528 SkipUntil(tok::colon);
Sebastian Redl042ad952008-12-11 19:30:53 +0000529 return StmtError();
Chris Lattner476c3ad2006-08-13 22:09:58 +0000530 }
Sebastian Redl17f2c7d2008-12-09 13:15:23 +0000531
Chris Lattner34a22092009-03-04 04:23:07 +0000532 // GNU case range extension.
533 SourceLocation DotDotDotLoc;
John McCalldadc5752010-08-24 06:29:42 +0000534 ExprResult RHS;
Chris Lattner34a22092009-03-04 04:23:07 +0000535 if (Tok.is(tok::ellipsis)) {
536 Diag(Tok, diag::ext_gnu_case_range);
537 DotDotDotLoc = ConsumeToken();
Sebastian Redl042ad952008-12-11 19:30:53 +0000538
Chris Lattner34a22092009-03-04 04:23:07 +0000539 RHS = ParseConstantExpression();
540 if (RHS.isInvalid()) {
541 SkipUntil(tok::colon);
542 return StmtError();
543 }
544 }
NAKAMURA Takumi82a35112011-10-08 11:31:46 +0000545
Chris Lattner125c0ee2009-12-10 00:38:54 +0000546 ColonProtection.restore();
Sebastian Redl042ad952008-12-11 19:30:53 +0000547
John McCall0140bfe2011-01-22 09:28:32 +0000548 if (Tok.is(tok::colon)) {
549 ColonLoc = ConsumeToken();
550
551 // Treat "case blah;" as a typo for "case blah:".
552 } else if (Tok.is(tok::semi)) {
553 ColonLoc = ConsumeToken();
554 Diag(ColonLoc, diag::err_expected_colon_after) << "'case'"
555 << FixItHint::CreateReplacement(ColonLoc, ":");
556 } else {
Douglas Gregor0d0a9652010-12-23 22:56:40 +0000557 SourceLocation ExpectedLoc = PP.getLocForEndOfToken(PrevTokLocation);
558 Diag(ExpectedLoc, diag::err_expected_colon_after) << "'case'"
559 << FixItHint::CreateInsertion(ExpectedLoc, ":");
560 ColonLoc = ExpectedLoc;
Chris Lattner34a22092009-03-04 04:23:07 +0000561 }
NAKAMURA Takumi82a35112011-10-08 11:31:46 +0000562
John McCalldadc5752010-08-24 06:29:42 +0000563 StmtResult Case =
John McCallb268a282010-08-23 23:25:46 +0000564 Actions.ActOnCaseStmt(CaseLoc, LHS.get(), DotDotDotLoc,
565 RHS.get(), ColonLoc);
Mike Stump11289f42009-09-09 15:08:12 +0000566
Chris Lattner34a22092009-03-04 04:23:07 +0000567 // If we had a sema error parsing this case, then just ignore it and
568 // continue parsing the sub-stmt.
569 if (Case.isInvalid()) {
570 if (TopLevelCase.isInvalid()) // No parsed case stmts.
571 return ParseStatement();
572 // Otherwise, just don't add it as a nested case.
573 } else {
574 // If this is the first case statement we parsed, it becomes TopLevelCase.
575 // Otherwise we link it into the current chain.
John McCall37ad5512010-08-23 06:44:23 +0000576 Stmt *NextDeepest = Case.get();
Chris Lattner34a22092009-03-04 04:23:07 +0000577 if (TopLevelCase.isInvalid())
578 TopLevelCase = move(Case);
579 else
John McCallb268a282010-08-23 23:25:46 +0000580 Actions.ActOnCaseStmtBody(DeepestParsedCaseStmt, Case.get());
Chris Lattner34a22092009-03-04 04:23:07 +0000581 DeepestParsedCaseStmt = NextDeepest;
582 }
Mike Stump11289f42009-09-09 15:08:12 +0000583
Chris Lattner34a22092009-03-04 04:23:07 +0000584 // Handle all case statements.
585 } while (Tok.is(tok::kw_case));
Mike Stump11289f42009-09-09 15:08:12 +0000586
Chris Lattner34a22092009-03-04 04:23:07 +0000587 assert(!TopLevelCase.isInvalid() && "Should have parsed at least one case!");
Mike Stump11289f42009-09-09 15:08:12 +0000588
Chris Lattner34a22092009-03-04 04:23:07 +0000589 // If we found a non-case statement, start by parsing it.
John McCalldadc5752010-08-24 06:29:42 +0000590 StmtResult SubStmt;
Mike Stump11289f42009-09-09 15:08:12 +0000591
Chris Lattner34a22092009-03-04 04:23:07 +0000592 if (Tok.isNot(tok::r_brace)) {
593 SubStmt = ParseStatement();
594 } else {
595 // Nicely diagnose the common error "switch (X) { case 4: }", which is
596 // not valid.
David Majnemerc6a99872011-06-14 15:24:38 +0000597 SourceLocation AfterColonLoc = PP.getLocForEndOfToken(ColonLoc);
598 Diag(AfterColonLoc, diag::err_label_end_of_compound_statement);
Chris Lattner34a22092009-03-04 04:23:07 +0000599 SubStmt = true;
Chris Lattner30f910e2006-10-16 05:52:41 +0000600 }
Mike Stump11289f42009-09-09 15:08:12 +0000601
Chris Lattner34a22092009-03-04 04:23:07 +0000602 // Broken sub-stmt shouldn't prevent forming the case statement properly.
Sebastian Redl17f2c7d2008-12-09 13:15:23 +0000603 if (SubStmt.isInvalid())
Chris Lattner34a22092009-03-04 04:23:07 +0000604 SubStmt = Actions.ActOnNullStmt(SourceLocation());
Mike Stump11289f42009-09-09 15:08:12 +0000605
Chris Lattner34a22092009-03-04 04:23:07 +0000606 // Install the body into the most deeply-nested case.
John McCallb268a282010-08-23 23:25:46 +0000607 Actions.ActOnCaseStmtBody(DeepestParsedCaseStmt, SubStmt.get());
Sebastian Redl042ad952008-12-11 19:30:53 +0000608
Chris Lattner34a22092009-03-04 04:23:07 +0000609 // Return the top level parsed statement tree.
Chris Lattner2b19a6582009-03-04 18:24:58 +0000610 return move(TopLevelCase);
Chris Lattnerd2685cf2006-08-10 05:59:48 +0000611}
612
613/// ParseDefaultStatement
614/// labeled-statement:
615/// 'default' ':' statement
616/// Note that this does not parse the 'statement' at the end.
617///
John McCall53fa7142010-12-24 02:08:15 +0000618StmtResult Parser::ParseDefaultStatement(ParsedAttributes &attrs) {
Alexis Hunt96d5c762009-11-21 08:43:09 +0000619 //FIXME: Use attributes?
Ted Kremenekc162e8e2010-02-11 02:19:13 +0000620
Chris Lattnerfeb00b62007-10-09 17:41:39 +0000621 assert(Tok.is(tok::kw_default) && "Not a default stmt!");
Chris Lattneraf635312006-10-16 06:06:51 +0000622 SourceLocation DefaultLoc = ConsumeToken(); // eat the 'default'.
Chris Lattnerd2685cf2006-08-10 05:59:48 +0000623
Douglas Gregor0d0a9652010-12-23 22:56:40 +0000624 SourceLocation ColonLoc;
John McCall0140bfe2011-01-22 09:28:32 +0000625 if (Tok.is(tok::colon)) {
626 ColonLoc = ConsumeToken();
627
628 // Treat "default;" as a typo for "default:".
629 } else if (Tok.is(tok::semi)) {
630 ColonLoc = ConsumeToken();
631 Diag(ColonLoc, diag::err_expected_colon_after) << "'default'"
632 << FixItHint::CreateReplacement(ColonLoc, ":");
633 } else {
Douglas Gregor0d0a9652010-12-23 22:56:40 +0000634 SourceLocation ExpectedLoc = PP.getLocForEndOfToken(PrevTokLocation);
635 Diag(ExpectedLoc, diag::err_expected_colon_after) << "'default'"
636 << FixItHint::CreateInsertion(ExpectedLoc, ":");
637 ColonLoc = ExpectedLoc;
Chris Lattnerd2685cf2006-08-10 05:59:48 +0000638 }
NAKAMURA Takumi82a35112011-10-08 11:31:46 +0000639
Chris Lattner30f910e2006-10-16 05:52:41 +0000640 // Diagnose the common error "switch (X) {... default: }", which is not valid.
Chris Lattnerfeb00b62007-10-09 17:41:39 +0000641 if (Tok.is(tok::r_brace)) {
David Majnemerc6a99872011-06-14 15:24:38 +0000642 SourceLocation AfterColonLoc = PP.getLocForEndOfToken(ColonLoc);
643 Diag(AfterColonLoc, diag::err_label_end_of_compound_statement);
Sebastian Redl042ad952008-12-11 19:30:53 +0000644 return StmtError();
Chris Lattner30f910e2006-10-16 05:52:41 +0000645 }
646
John McCalldadc5752010-08-24 06:29:42 +0000647 StmtResult SubStmt(ParseStatement());
Sebastian Redl17f2c7d2008-12-09 13:15:23 +0000648 if (SubStmt.isInvalid())
Sebastian Redl042ad952008-12-11 19:30:53 +0000649 return StmtError();
650
Sebastian Redl1cbb59182008-12-28 16:13:43 +0000651 return Actions.ActOnDefaultStmt(DefaultLoc, ColonLoc,
John McCallb268a282010-08-23 23:25:46 +0000652 SubStmt.get(), getCurScope());
Chris Lattnerd2685cf2006-08-10 05:59:48 +0000653}
654
Douglas Gregor53e191ed2011-07-06 22:04:06 +0000655StmtResult Parser::ParseCompoundStatement(ParsedAttributes &Attr,
656 bool isStmtExpr) {
657 return ParseCompoundStatement(Attr, isStmtExpr, Scope::DeclScope);
658}
Chris Lattnerd2685cf2006-08-10 05:59:48 +0000659
Chris Lattner0ccd51e2006-08-09 05:47:47 +0000660/// ParseCompoundStatement - Parse a "{}" block.
661///
662/// compound-statement: [C99 6.8.2]
663/// { block-item-list[opt] }
664/// [GNU] { label-declarations block-item-list } [TODO]
665///
666/// block-item-list:
667/// block-item
668/// block-item-list block-item
669///
670/// block-item:
671/// declaration
Chris Lattnerdfaf9f82007-08-27 01:01:57 +0000672/// [GNU] '__extension__' declaration
Chris Lattner0ccd51e2006-08-09 05:47:47 +0000673/// statement
674/// [OMP] openmp-directive [TODO]
675///
676/// [GNU] label-declarations:
677/// [GNU] label-declaration
678/// [GNU] label-declarations label-declaration
679///
680/// [GNU] label-declaration:
681/// [GNU] '__label__' identifier-list ';'
682///
683/// [OMP] openmp-directive: [TODO]
684/// [OMP] barrier-directive
685/// [OMP] flush-directive
Chris Lattner30f910e2006-10-16 05:52:41 +0000686///
John McCall53fa7142010-12-24 02:08:15 +0000687StmtResult Parser::ParseCompoundStatement(ParsedAttributes &attrs,
Douglas Gregor53e191ed2011-07-06 22:04:06 +0000688 bool isStmtExpr,
689 unsigned ScopeFlags) {
Alexis Hunt96d5c762009-11-21 08:43:09 +0000690 //FIXME: Use attributes?
Ted Kremenekc162e8e2010-02-11 02:19:13 +0000691
Chris Lattnerfeb00b62007-10-09 17:41:39 +0000692 assert(Tok.is(tok::l_brace) && "Not a compount stmt!");
Sebastian Redl042ad952008-12-11 19:30:53 +0000693
Chris Lattner1a76a3c2007-08-26 06:24:45 +0000694 // Enter a scope to hold everything within the compound stmt. Compound
695 // statements can always hold declarations.
Douglas Gregor53e191ed2011-07-06 22:04:06 +0000696 ParseScope CompoundScope(this, ScopeFlags);
Chris Lattnerf2978802007-01-21 06:52:16 +0000697
698 // Parse the statements in the body.
Sebastian Redl042ad952008-12-11 19:30:53 +0000699 return ParseCompoundStatementBody(isStmtExpr);
Chris Lattnerf2978802007-01-21 06:52:16 +0000700}
701
702
703/// ParseCompoundStatementBody - Parse a sequence of statements and invoke the
Steve Naroff66356bd2007-09-16 14:56:35 +0000704/// ActOnCompoundStmt action. This expects the '{' to be the current token, and
Chris Lattnerf2978802007-01-21 06:52:16 +0000705/// consume the '}' at the end of the block. It does not manipulate the scope
706/// stack.
John McCalldadc5752010-08-24 06:29:42 +0000707StmtResult Parser::ParseCompoundStatementBody(bool isStmtExpr) {
Mike Stump11289f42009-09-09 15:08:12 +0000708 PrettyStackTraceLoc CrashInfo(PP.getSourceManager(),
Chris Lattnerbd61a952009-03-05 00:00:31 +0000709 Tok.getLocation(),
710 "in compound statement ('{}')");
Douglas Gregore9bba4f2010-09-15 14:51:05 +0000711 InMessageExpressionRAIIObject InMessage(*this, false);
Douglas Gregore7a8e3b2011-10-12 16:37:45 +0000712 BalancedDelimiterTracker T(*this, tok::l_brace);
713 if (T.consumeOpen())
714 return StmtError();
Chris Lattnerf2978802007-01-21 06:52:16 +0000715
Fariborz Jahanian1db5c942010-09-28 20:42:35 +0000716 StmtVector Stmts(Actions);
Argyrios Kyrtzidisee569622011-01-17 18:58:44 +0000717
Chris Lattner43e7f312011-02-18 02:08:43 +0000718 // "__label__ X, Y, Z;" is the GNU "Local Label" extension. These are
719 // only allowed at the start of a compound stmt regardless of the language.
720 while (Tok.is(tok::kw___label__)) {
721 SourceLocation LabelLoc = ConsumeToken();
722 Diag(LabelLoc, diag::ext_gnu_local_label);
NAKAMURA Takumi82a35112011-10-08 11:31:46 +0000723
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000724 SmallVector<Decl *, 8> DeclsInGroup;
Chris Lattner43e7f312011-02-18 02:08:43 +0000725 while (1) {
726 if (Tok.isNot(tok::identifier)) {
727 Diag(Tok, diag::err_expected_ident);
728 break;
729 }
NAKAMURA Takumi82a35112011-10-08 11:31:46 +0000730
Chris Lattner43e7f312011-02-18 02:08:43 +0000731 IdentifierInfo *II = Tok.getIdentifierInfo();
732 SourceLocation IdLoc = ConsumeToken();
Abramo Bagnara1c3af962011-03-05 18:21:20 +0000733 DeclsInGroup.push_back(Actions.LookupOrCreateLabel(II, IdLoc, LabelLoc));
NAKAMURA Takumi82a35112011-10-08 11:31:46 +0000734
Chris Lattner43e7f312011-02-18 02:08:43 +0000735 if (!Tok.is(tok::comma))
736 break;
737 ConsumeToken();
738 }
NAKAMURA Takumi82a35112011-10-08 11:31:46 +0000739
John McCall084e83d2011-03-24 11:26:52 +0000740 DeclSpec DS(AttrFactory);
Chris Lattner43e7f312011-02-18 02:08:43 +0000741 DeclGroupPtrTy Res = Actions.FinalizeDeclaratorGroup(getCurScope(), DS,
742 DeclsInGroup.data(), DeclsInGroup.size());
743 StmtResult R = Actions.ActOnDeclStmt(Res, LabelLoc, Tok.getLocation());
NAKAMURA Takumi82a35112011-10-08 11:31:46 +0000744
Chris Lattner43e7f312011-02-18 02:08:43 +0000745 ExpectAndConsume(tok::semi, diag::err_expected_semi_declaration);
746 if (R.isUsable())
747 Stmts.push_back(R.release());
748 }
NAKAMURA Takumi82a35112011-10-08 11:31:46 +0000749
Chris Lattner43e7f312011-02-18 02:08:43 +0000750 while (Tok.isNot(tok::r_brace) && Tok.isNot(tok::eof)) {
Argyrios Kyrtzidisee569622011-01-17 18:58:44 +0000751 if (Tok.is(tok::annot_pragma_unused)) {
752 HandlePragmaUnused();
753 continue;
754 }
755
Francois Pichet0706d202011-09-17 17:15:52 +0000756 if (getLang().MicrosoftExt && (Tok.is(tok::kw___if_exists) ||
Francois Pichet4a7de3e2011-05-06 20:48:22 +0000757 Tok.is(tok::kw___if_not_exists))) {
758 ParseMicrosoftIfExistsStatement(Stmts);
759 continue;
760 }
761
John McCalldadc5752010-08-24 06:29:42 +0000762 StmtResult R;
Chris Lattnerfeb00b62007-10-09 17:41:39 +0000763 if (Tok.isNot(tok::kw___extension__)) {
Fariborz Jahanian1db5c942010-09-28 20:42:35 +0000764 R = ParseStatementOrDeclaration(Stmts, false);
Chris Lattnerdfaf9f82007-08-27 01:01:57 +0000765 } else {
766 // __extension__ can start declarations and it can also be a unary
767 // operator for expressions. Consume multiple __extension__ markers here
768 // until we can determine which is which.
Eli Friedmaneb3a9b02009-01-27 08:43:38 +0000769 // FIXME: This loses extension expressions in the AST!
Chris Lattnerdfaf9f82007-08-27 01:01:57 +0000770 SourceLocation ExtLoc = ConsumeToken();
Chris Lattnerfeb00b62007-10-09 17:41:39 +0000771 while (Tok.is(tok::kw___extension__))
Chris Lattnerdfaf9f82007-08-27 01:01:57 +0000772 ConsumeToken();
Chris Lattner1ff6e732008-10-20 06:51:33 +0000773
John McCall084e83d2011-03-24 11:26:52 +0000774 ParsedAttributesWithRange attrs(AttrFactory);
John McCall53fa7142010-12-24 02:08:15 +0000775 MaybeParseCXX0XAttributes(attrs);
Alexis Hunt96d5c762009-11-21 08:43:09 +0000776
Chris Lattnerdfaf9f82007-08-27 01:01:57 +0000777 // If this is the start of a declaration, parse it as such.
Argyrios Kyrtzidis2c7137d2008-10-05 00:06:24 +0000778 if (isDeclarationStatement()) {
Eli Friedman15af3ee2009-05-16 23:40:44 +0000779 // __extension__ silences extension warnings in the subdeclaration.
Chris Lattner49836b42009-04-02 04:16:50 +0000780 // FIXME: Save the __extension__ on the decl as a node somehow?
Eli Friedman15af3ee2009-05-16 23:40:44 +0000781 ExtensionRAIIObject O(Diags);
782
Chris Lattner49836b42009-04-02 04:16:50 +0000783 SourceLocation DeclStart = Tok.getLocation(), DeclEnd;
Fariborz Jahanian1db5c942010-09-28 20:42:35 +0000784 DeclGroupPtrTy Res = ParseDeclaration(Stmts,
785 Declarator::BlockContext, DeclEnd,
John McCall53fa7142010-12-24 02:08:15 +0000786 attrs);
Chris Lattner49836b42009-04-02 04:16:50 +0000787 R = Actions.ActOnDeclStmt(Res, DeclStart, DeclEnd);
Chris Lattnerdfaf9f82007-08-27 01:01:57 +0000788 } else {
Eli Friedmaneb3a9b02009-01-27 08:43:38 +0000789 // Otherwise this was a unary __extension__ marker.
John McCalldadc5752010-08-24 06:29:42 +0000790 ExprResult Res(ParseExpressionWithLeadingExtension(ExtLoc));
Chris Lattnerfdc07482008-03-13 06:32:11 +0000791
Sebastian Redl17f2c7d2008-12-09 13:15:23 +0000792 if (Res.isInvalid()) {
Chris Lattnerdfaf9f82007-08-27 01:01:57 +0000793 SkipUntil(tok::semi);
794 continue;
795 }
Sebastian Redlc2edafb2009-01-18 18:03:53 +0000796
Alexis Hunt96d5c762009-11-21 08:43:09 +0000797 // FIXME: Use attributes?
Chris Lattner1ff6e732008-10-20 06:51:33 +0000798 // Eat the semicolon at the end of stmt and convert the expr into a
799 // statement.
Douglas Gregor45d6bdf2010-09-07 15:23:11 +0000800 ExpectAndConsumeSemi(diag::err_expected_semi_after_expr);
John McCallb268a282010-08-23 23:25:46 +0000801 R = Actions.ActOnExprStmt(Actions.MakeFullExpr(Res.get()));
Chris Lattnerdfaf9f82007-08-27 01:01:57 +0000802 }
803 }
Sebastian Redl042ad952008-12-11 19:30:53 +0000804
Sebastian Redl17f2c7d2008-12-09 13:15:23 +0000805 if (R.isUsable())
Sebastian Redld9f7b1c2008-12-10 00:02:53 +0000806 Stmts.push_back(R.release());
Chris Lattner30f910e2006-10-16 05:52:41 +0000807 }
Sebastian Redl042ad952008-12-11 19:30:53 +0000808
Chris Lattner0ccd51e2006-08-09 05:47:47 +0000809 // We broke out of the while loop because we found a '}' or EOF.
Chris Lattnerfeb00b62007-10-09 17:41:39 +0000810 if (Tok.isNot(tok::r_brace)) {
Chris Lattner0ccd51e2006-08-09 05:47:47 +0000811 Diag(Tok, diag::err_expected_rbrace);
Douglas Gregore7a8e3b2011-10-12 16:37:45 +0000812 Diag(T.getOpenLocation(), diag::note_matching) << "{";
Sebastian Redl042ad952008-12-11 19:30:53 +0000813 return StmtError();
Chris Lattner30f910e2006-10-16 05:52:41 +0000814 }
Sebastian Redl042ad952008-12-11 19:30:53 +0000815
Douglas Gregore7a8e3b2011-10-12 16:37:45 +0000816 if (T.consumeClose())
817 return StmtError();
818
819 return Actions.ActOnCompoundStmt(T.getOpenLocation(), T.getCloseLocation(),
820 move_arg(Stmts), isStmtExpr);
Chris Lattner0ccd51e2006-08-09 05:47:47 +0000821}
Chris Lattnerc951dae2006-08-10 04:23:57 +0000822
Chris Lattnerc0081db2008-12-12 06:31:07 +0000823/// ParseParenExprOrCondition:
824/// [C ] '(' expression ')'
Chris Lattner10da53c2008-12-12 06:35:28 +0000825/// [C++] '(' condition ')' [not allowed if OnlyAllowCondition=true]
Chris Lattnerc0081db2008-12-12 06:31:07 +0000826///
827/// This function parses and performs error recovery on the specified condition
828/// or expression (depending on whether we're in C++ or C mode). This function
829/// goes out of its way to recover well. It returns true if there was a parser
830/// error (the right paren couldn't be found), which indicates that the caller
831/// should try to recover harder. It returns false if the condition is
832/// successfully parsed. Note that a successful parse can still have semantic
833/// errors in the condition.
John McCalldadc5752010-08-24 06:29:42 +0000834bool Parser::ParseParenExprOrCondition(ExprResult &ExprResult,
John McCall48871652010-08-21 09:40:31 +0000835 Decl *&DeclResult,
Douglas Gregore60e41a2010-05-06 17:25:47 +0000836 SourceLocation Loc,
Argyrios Kyrtzidisde2bdf62010-11-20 02:04:01 +0000837 bool ConvertToBoolean) {
Douglas Gregore7a8e3b2011-10-12 16:37:45 +0000838 BalancedDelimiterTracker T(*this, tok::l_paren);
839 T.consumeOpen();
840
NAKAMURA Takumi82a35112011-10-08 11:31:46 +0000841 if (getLang().CPlusPlus)
Jeffrey Yasskin8dfa5f12011-01-18 02:00:16 +0000842 ParseCXXCondition(ExprResult, DeclResult, Loc, ConvertToBoolean);
Douglas Gregor7bab5ff2009-11-25 00:27:52 +0000843 else {
844 ExprResult = ParseExpression();
John McCall48871652010-08-21 09:40:31 +0000845 DeclResult = 0;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +0000846
Douglas Gregore60e41a2010-05-06 17:25:47 +0000847 // If required, convert to a boolean value.
848 if (!ExprResult.isInvalid() && ConvertToBoolean)
849 ExprResult
John McCallb268a282010-08-23 23:25:46 +0000850 = Actions.ActOnBooleanCondition(getCurScope(), Loc, ExprResult.get());
Douglas Gregor7bab5ff2009-11-25 00:27:52 +0000851 }
Mike Stump11289f42009-09-09 15:08:12 +0000852
Chris Lattnerc0081db2008-12-12 06:31:07 +0000853 // If the parser was confused by the condition and we don't have a ')', try to
854 // recover by skipping ahead to a semi and bailing out. If condexp is
855 // semantically invalid but we have well formed code, keep going.
John McCall48871652010-08-21 09:40:31 +0000856 if (ExprResult.isInvalid() && !DeclResult && Tok.isNot(tok::r_paren)) {
Chris Lattnerc0081db2008-12-12 06:31:07 +0000857 SkipUntil(tok::semi);
858 // Skipping may have stopped if it found the containing ')'. If so, we can
859 // continue parsing the if statement.
860 if (Tok.isNot(tok::r_paren))
861 return true;
862 }
Mike Stump11289f42009-09-09 15:08:12 +0000863
Chris Lattnerc0081db2008-12-12 06:31:07 +0000864 // Otherwise the condition is valid or the rparen is present.
Douglas Gregore7a8e3b2011-10-12 16:37:45 +0000865 T.consumeClose();
Chris Lattnerc0081db2008-12-12 06:31:07 +0000866 return false;
867}
868
869
Chris Lattnerc951dae2006-08-10 04:23:57 +0000870/// ParseIfStatement
871/// if-statement: [C99 6.8.4.1]
872/// 'if' '(' expression ')' statement
873/// 'if' '(' expression ')' statement 'else' statement
Argyrios Kyrtzidis2b4072f2008-09-09 20:38:47 +0000874/// [C++] 'if' '(' condition ')' statement
875/// [C++] 'if' '(' condition ')' statement 'else' statement
Chris Lattner30f910e2006-10-16 05:52:41 +0000876///
John McCall53fa7142010-12-24 02:08:15 +0000877StmtResult Parser::ParseIfStatement(ParsedAttributes &attrs) {
Alexis Hunt96d5c762009-11-21 08:43:09 +0000878 // FIXME: Use attributes?
Ted Kremenekc162e8e2010-02-11 02:19:13 +0000879
Chris Lattnerfeb00b62007-10-09 17:41:39 +0000880 assert(Tok.is(tok::kw_if) && "Not an if stmt!");
Chris Lattneraf635312006-10-16 06:06:51 +0000881 SourceLocation IfLoc = ConsumeToken(); // eat the 'if'.
Chris Lattnerc951dae2006-08-10 04:23:57 +0000882
Chris Lattnerfeb00b62007-10-09 17:41:39 +0000883 if (Tok.isNot(tok::l_paren)) {
Chris Lattner6d29c102008-11-18 07:48:38 +0000884 Diag(Tok, diag::err_expected_lparen_after) << "if";
Chris Lattnerc951dae2006-08-10 04:23:57 +0000885 SkipUntil(tok::semi);
Sebastian Redl042ad952008-12-11 19:30:53 +0000886 return StmtError();
Chris Lattnerc951dae2006-08-10 04:23:57 +0000887 }
Argyrios Kyrtzidis2b4072f2008-09-09 20:38:47 +0000888
Argyrios Kyrtzidis504bb842008-09-11 03:06:46 +0000889 bool C99orCXX = getLang().C99 || getLang().CPlusPlus;
890
Chris Lattner2dd1b722007-08-26 23:08:06 +0000891 // C99 6.8.4p3 - In C99, the if statement is a block. This is not
892 // the case for C90.
Argyrios Kyrtzidis504bb842008-09-11 03:06:46 +0000893 //
894 // C++ 6.4p3:
895 // A name introduced by a declaration in a condition is in scope from its
896 // point of declaration until the end of the substatements controlled by the
897 // condition.
Argyrios Kyrtzidis47f98652008-09-11 23:08:39 +0000898 // C++ 3.3.2p4:
899 // Names declared in the for-init-statement, and in the condition of if,
900 // while, for, and switch statements are local to the if, while, for, or
901 // switch statement (including the controlled statement).
Argyrios Kyrtzidis504bb842008-09-11 03:06:46 +0000902 //
Douglas Gregor7307d6c2008-12-10 06:34:36 +0000903 ParseScope IfScope(this, Scope::DeclScope | Scope::ControlScope, C99orCXX);
Chris Lattner2dd1b722007-08-26 23:08:06 +0000904
Chris Lattnerc951dae2006-08-10 04:23:57 +0000905 // Parse the condition.
John McCalldadc5752010-08-24 06:29:42 +0000906 ExprResult CondExp;
John McCall48871652010-08-21 09:40:31 +0000907 Decl *CondVar = 0;
Argyrios Kyrtzidisde2bdf62010-11-20 02:04:01 +0000908 if (ParseParenExprOrCondition(CondExp, CondVar, IfLoc, true))
Chris Lattnerc0081db2008-12-12 06:31:07 +0000909 return StmtError();
Chris Lattnerbc2d77c2008-12-12 06:19:11 +0000910
John McCallb268a282010-08-23 23:25:46 +0000911 FullExprArg FullCondExp(Actions.MakeFullExpr(CondExp.get()));
Mike Stump11289f42009-09-09 15:08:12 +0000912
Chris Lattner8fb26252007-08-22 05:28:50 +0000913 // C99 6.8.4p3 - In C99, the body of the if statement is a scope, even if
Chris Lattner8f44d202007-08-22 05:33:11 +0000914 // there is no compound stmt. C90 does not have this clause. We only do this
915 // if the body isn't a compound statement to avoid push/pop in common cases.
Argyrios Kyrtzidis504bb842008-09-11 03:06:46 +0000916 //
917 // C++ 6.4p1:
918 // The substatement in a selection-statement (each substatement, in the else
919 // form of the if statement) implicitly defines a local scope.
920 //
921 // For C++ we create a scope for the condition and a new scope for
922 // substatements because:
923 // -When the 'then' scope exits, we want the condition declaration to still be
924 // active for the 'else' scope too.
925 // -Sema will detect name clashes by considering declarations of a
926 // 'ControlScope' as part of its direct subscope.
927 // -If we wanted the condition and substatement to be in the same scope, we
928 // would have to notify ParseStatement not to create a new scope. It's
929 // simpler to let it create a new scope.
930 //
Mike Stump11289f42009-09-09 15:08:12 +0000931 ParseScope InnerScope(this, Scope::DeclScope,
Douglas Gregor7307d6c2008-12-10 06:34:36 +0000932 C99orCXX && Tok.isNot(tok::l_brace));
Argyrios Kyrtzidis2b4072f2008-09-09 20:38:47 +0000933
Chris Lattner5c5808a2007-10-29 05:08:52 +0000934 // Read the 'then' stmt.
935 SourceLocation ThenStmtLoc = Tok.getLocation();
John McCalldadc5752010-08-24 06:29:42 +0000936 StmtResult ThenStmt(ParseStatement());
Chris Lattnerac4471c2007-05-28 05:38:24 +0000937
Chris Lattner37e54f42007-08-22 05:16:28 +0000938 // Pop the 'if' scope if needed.
Douglas Gregor7307d6c2008-12-10 06:34:36 +0000939 InnerScope.Exit();
Sebastian Redl042ad952008-12-11 19:30:53 +0000940
Chris Lattnerc951dae2006-08-10 04:23:57 +0000941 // If it has an else, parse it.
Chris Lattner30f910e2006-10-16 05:52:41 +0000942 SourceLocation ElseLoc;
Chris Lattner5c5808a2007-10-29 05:08:52 +0000943 SourceLocation ElseStmtLoc;
John McCalldadc5752010-08-24 06:29:42 +0000944 StmtResult ElseStmt;
Sebastian Redl17f2c7d2008-12-09 13:15:23 +0000945
Chris Lattnerfeb00b62007-10-09 17:41:39 +0000946 if (Tok.is(tok::kw_else)) {
Chris Lattneraf635312006-10-16 06:06:51 +0000947 ElseLoc = ConsumeToken();
Chris Lattnerdf742642010-04-12 06:12:50 +0000948 ElseStmtLoc = Tok.getLocation();
Sebastian Redl042ad952008-12-11 19:30:53 +0000949
Chris Lattner8fb26252007-08-22 05:28:50 +0000950 // C99 6.8.4p3 - In C99, the body of the if statement is a scope, even if
Chris Lattner8f44d202007-08-22 05:33:11 +0000951 // there is no compound stmt. C90 does not have this clause. We only do
952 // this if the body isn't a compound statement to avoid push/pop in common
953 // cases.
Argyrios Kyrtzidis504bb842008-09-11 03:06:46 +0000954 //
955 // C++ 6.4p1:
956 // The substatement in a selection-statement (each substatement, in the else
957 // form of the if statement) implicitly defines a local scope.
958 //
Sebastian Redl042ad952008-12-11 19:30:53 +0000959 ParseScope InnerScope(this, Scope::DeclScope,
Douglas Gregor7307d6c2008-12-10 06:34:36 +0000960 C99orCXX && Tok.isNot(tok::l_brace));
Sebastian Redl17f2c7d2008-12-09 13:15:23 +0000961
Chris Lattner30f910e2006-10-16 05:52:41 +0000962 ElseStmt = ParseStatement();
NAKAMURA Takumi82a35112011-10-08 11:31:46 +0000963
Chris Lattner37e54f42007-08-22 05:16:28 +0000964 // Pop the 'else' scope if needed.
Douglas Gregor7307d6c2008-12-10 06:34:36 +0000965 InnerScope.Exit();
Douglas Gregor4ecb7202011-07-30 08:36:53 +0000966 } else if (Tok.is(tok::code_completion)) {
967 Actions.CodeCompleteAfterIf(getCurScope());
Argyrios Kyrtzidis5cec2ae2011-09-04 03:32:15 +0000968 cutOffParsing();
969 return StmtError();
Chris Lattnerc951dae2006-08-10 04:23:57 +0000970 }
Sebastian Redl042ad952008-12-11 19:30:53 +0000971
Douglas Gregor7307d6c2008-12-10 06:34:36 +0000972 IfScope.Exit();
Mike Stump11289f42009-09-09 15:08:12 +0000973
Chris Lattnerbc2d77c2008-12-12 06:19:11 +0000974 // If the condition was invalid, discard the if statement. We could recover
975 // better by replacing it with a valid expr, but don't do that yet.
John McCall48871652010-08-21 09:40:31 +0000976 if (CondExp.isInvalid() && !CondVar)
Chris Lattnerbc2d77c2008-12-12 06:19:11 +0000977 return StmtError();
Chris Lattner2dd1b722007-08-26 23:08:06 +0000978
Chris Lattner5c5808a2007-10-29 05:08:52 +0000979 // If the then or else stmt is invalid and the other is valid (and present),
Mike Stump11289f42009-09-09 15:08:12 +0000980 // make turn the invalid one into a null stmt to avoid dropping the other
Chris Lattner5c5808a2007-10-29 05:08:52 +0000981 // part. If both are invalid, return error.
Sebastian Redl17f2c7d2008-12-09 13:15:23 +0000982 if ((ThenStmt.isInvalid() && ElseStmt.isInvalid()) ||
983 (ThenStmt.isInvalid() && ElseStmt.get() == 0) ||
984 (ThenStmt.get() == 0 && ElseStmt.isInvalid())) {
Sebastian Redl511ed552008-11-25 22:21:31 +0000985 // Both invalid, or one is invalid and other is non-present: return error.
Sebastian Redl042ad952008-12-11 19:30:53 +0000986 return StmtError();
Chris Lattner5c5808a2007-10-29 05:08:52 +0000987 }
Sebastian Redl17f2c7d2008-12-09 13:15:23 +0000988
Chris Lattner5c5808a2007-10-29 05:08:52 +0000989 // Now if either are invalid, replace with a ';'.
Sebastian Redl17f2c7d2008-12-09 13:15:23 +0000990 if (ThenStmt.isInvalid())
Chris Lattner5c5808a2007-10-29 05:08:52 +0000991 ThenStmt = Actions.ActOnNullStmt(ThenStmtLoc);
Sebastian Redl17f2c7d2008-12-09 13:15:23 +0000992 if (ElseStmt.isInvalid())
Chris Lattner5c5808a2007-10-29 05:08:52 +0000993 ElseStmt = Actions.ActOnNullStmt(ElseStmtLoc);
Sebastian Redl17f2c7d2008-12-09 13:15:23 +0000994
John McCallb268a282010-08-23 23:25:46 +0000995 return Actions.ActOnIfStmt(IfLoc, FullCondExp, CondVar, ThenStmt.get(),
Argyrios Kyrtzidisde2bdf62010-11-20 02:04:01 +0000996 ElseLoc, ElseStmt.get());
Chris Lattnerc951dae2006-08-10 04:23:57 +0000997}
998
Chris Lattner9075bd72006-08-10 04:59:57 +0000999/// ParseSwitchStatement
1000/// switch-statement:
1001/// 'switch' '(' expression ')' statement
Argyrios Kyrtzidis2b4072f2008-09-09 20:38:47 +00001002/// [C++] 'switch' '(' condition ')' statement
John McCall53fa7142010-12-24 02:08:15 +00001003StmtResult Parser::ParseSwitchStatement(ParsedAttributes &attrs) {
Alexis Hunt96d5c762009-11-21 08:43:09 +00001004 // FIXME: Use attributes?
Ted Kremenekc162e8e2010-02-11 02:19:13 +00001005
Chris Lattnerfeb00b62007-10-09 17:41:39 +00001006 assert(Tok.is(tok::kw_switch) && "Not a switch stmt!");
Chris Lattneraf635312006-10-16 06:06:51 +00001007 SourceLocation SwitchLoc = ConsumeToken(); // eat the 'switch'.
Chris Lattner9075bd72006-08-10 04:59:57 +00001008
Chris Lattnerfeb00b62007-10-09 17:41:39 +00001009 if (Tok.isNot(tok::l_paren)) {
Chris Lattner6d29c102008-11-18 07:48:38 +00001010 Diag(Tok, diag::err_expected_lparen_after) << "switch";
Chris Lattner9075bd72006-08-10 04:59:57 +00001011 SkipUntil(tok::semi);
Sebastian Redlb62406f2008-12-11 19:48:14 +00001012 return StmtError();
Chris Lattner9075bd72006-08-10 04:59:57 +00001013 }
Chris Lattner2dd1b722007-08-26 23:08:06 +00001014
Argyrios Kyrtzidis504bb842008-09-11 03:06:46 +00001015 bool C99orCXX = getLang().C99 || getLang().CPlusPlus;
1016
Chris Lattner2dd1b722007-08-26 23:08:06 +00001017 // C99 6.8.4p3 - In C99, the switch statement is a block. This is
1018 // not the case for C90. Start the switch scope.
Argyrios Kyrtzidis504bb842008-09-11 03:06:46 +00001019 //
1020 // C++ 6.4p3:
1021 // A name introduced by a declaration in a condition is in scope from its
1022 // point of declaration until the end of the substatements controlled by the
1023 // condition.
Argyrios Kyrtzidis47f98652008-09-11 23:08:39 +00001024 // C++ 3.3.2p4:
1025 // Names declared in the for-init-statement, and in the condition of if,
1026 // while, for, and switch statements are local to the if, while, for, or
1027 // switch statement (including the controlled statement).
Argyrios Kyrtzidis504bb842008-09-11 03:06:46 +00001028 //
Richard Trieu2c850c02011-04-21 21:44:26 +00001029 unsigned ScopeFlags = Scope::BreakScope | Scope::SwitchScope;
Chris Lattnerc0081db2008-12-12 06:31:07 +00001030 if (C99orCXX)
1031 ScopeFlags |= Scope::DeclScope | Scope::ControlScope;
Douglas Gregor7307d6c2008-12-10 06:34:36 +00001032 ParseScope SwitchScope(this, ScopeFlags);
Chris Lattner33ad2ca2006-11-05 23:47:55 +00001033
Chris Lattner9075bd72006-08-10 04:59:57 +00001034 // Parse the condition.
John McCalldadc5752010-08-24 06:29:42 +00001035 ExprResult Cond;
John McCall48871652010-08-21 09:40:31 +00001036 Decl *CondVar = 0;
Douglas Gregore60e41a2010-05-06 17:25:47 +00001037 if (ParseParenExprOrCondition(Cond, CondVar, SwitchLoc, false))
Sebastian Redlb62406f2008-12-11 19:48:14 +00001038 return StmtError();
Eli Friedman44842d12008-12-17 22:19:57 +00001039
John McCalldadc5752010-08-24 06:29:42 +00001040 StmtResult Switch
John McCallb268a282010-08-23 23:25:46 +00001041 = Actions.ActOnStartOfSwitchStmt(SwitchLoc, Cond.get(), CondVar);
Sebastian Redl17f2c7d2008-12-09 13:15:23 +00001042
Douglas Gregore60e41a2010-05-06 17:25:47 +00001043 if (Switch.isInvalid()) {
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001044 // Skip the switch body.
Douglas Gregore60e41a2010-05-06 17:25:47 +00001045 // FIXME: This is not optimal recovery, but parsing the body is more
1046 // dangerous due to the presence of case and default statements, which
1047 // will have no place to connect back with the switch.
Douglas Gregor4abc32d2010-05-20 23:20:59 +00001048 if (Tok.is(tok::l_brace)) {
1049 ConsumeBrace();
1050 SkipUntil(tok::r_brace, false, false);
1051 } else
Douglas Gregore60e41a2010-05-06 17:25:47 +00001052 SkipUntil(tok::semi);
1053 return move(Switch);
1054 }
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001055
Chris Lattner8fb26252007-08-22 05:28:50 +00001056 // C99 6.8.4p3 - In C99, the body of the switch statement is a scope, even if
Chris Lattner8f44d202007-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 Kyrtzidis504bb842008-09-11 03:06:46 +00001059 //
1060 // C++ 6.4p1:
1061 // The substatement in a selection-statement (each substatement, in the else
1062 // form of the if statement) implicitly defines a local scope.
1063 //
1064 // See comments in ParseIfStatement for why we create a scope for the
1065 // condition and a new scope for substatement in C++.
1066 //
Mike Stump11289f42009-09-09 15:08:12 +00001067 ParseScope InnerScope(this, Scope::DeclScope,
Douglas Gregor7307d6c2008-12-10 06:34:36 +00001068 C99orCXX && Tok.isNot(tok::l_brace));
Sebastian Redl042ad952008-12-11 19:30:53 +00001069
Chris Lattner9075bd72006-08-10 04:59:57 +00001070 // Read the body statement.
John McCalldadc5752010-08-24 06:29:42 +00001071 StmtResult Body(ParseStatement());
Chris Lattner33ad2ca2006-11-05 23:47:55 +00001072
Chris Lattner8fd2d012010-01-24 01:50:29 +00001073 // Pop the scopes.
Douglas Gregor7307d6c2008-12-10 06:34:36 +00001074 InnerScope.Exit();
Douglas Gregor7307d6c2008-12-10 06:34:36 +00001075 SwitchScope.Exit();
Sebastian Redl042ad952008-12-11 19:30:53 +00001076
Chris Lattner8fd2d012010-01-24 01:50:29 +00001077 if (Body.isInvalid())
1078 // FIXME: Remove the case statement list from the Switch statement.
1079 Body = Actions.ActOnNullStmt(Tok.getLocation());
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001080
John McCallb268a282010-08-23 23:25:46 +00001081 return Actions.ActOnFinishSwitchStmt(SwitchLoc, Switch.get(), Body.get());
Chris Lattner9075bd72006-08-10 04:59:57 +00001082}
1083
1084/// ParseWhileStatement
1085/// while-statement: [C99 6.8.5.1]
1086/// 'while' '(' expression ')' statement
Argyrios Kyrtzidis2b4072f2008-09-09 20:38:47 +00001087/// [C++] 'while' '(' condition ')' statement
John McCall53fa7142010-12-24 02:08:15 +00001088StmtResult Parser::ParseWhileStatement(ParsedAttributes &attrs) {
Alexis Hunt96d5c762009-11-21 08:43:09 +00001089 // FIXME: Use attributes?
Ted Kremenekc162e8e2010-02-11 02:19:13 +00001090
Chris Lattnerfeb00b62007-10-09 17:41:39 +00001091 assert(Tok.is(tok::kw_while) && "Not a while stmt!");
Chris Lattner30f910e2006-10-16 05:52:41 +00001092 SourceLocation WhileLoc = Tok.getLocation();
Chris Lattner9075bd72006-08-10 04:59:57 +00001093 ConsumeToken(); // eat the 'while'.
Sebastian Redlb62406f2008-12-11 19:48:14 +00001094
Chris Lattnerfeb00b62007-10-09 17:41:39 +00001095 if (Tok.isNot(tok::l_paren)) {
Chris Lattner6d29c102008-11-18 07:48:38 +00001096 Diag(Tok, diag::err_expected_lparen_after) << "while";
Chris Lattner9075bd72006-08-10 04:59:57 +00001097 SkipUntil(tok::semi);
Sebastian Redlb62406f2008-12-11 19:48:14 +00001098 return StmtError();
Chris Lattner9075bd72006-08-10 04:59:57 +00001099 }
Sebastian Redlb62406f2008-12-11 19:48:14 +00001100
Argyrios Kyrtzidis504bb842008-09-11 03:06:46 +00001101 bool C99orCXX = getLang().C99 || getLang().CPlusPlus;
1102
Chris Lattner2dd1b722007-08-26 23:08:06 +00001103 // C99 6.8.5p5 - In C99, the while statement is a block. This is not
1104 // the case for C90. Start the loop scope.
Argyrios Kyrtzidis504bb842008-09-11 03:06:46 +00001105 //
1106 // C++ 6.4p3:
1107 // A name introduced by a declaration in a condition is in scope from its
1108 // point of declaration until the end of the substatements controlled by the
1109 // condition.
Argyrios Kyrtzidis47f98652008-09-11 23:08:39 +00001110 // C++ 3.3.2p4:
1111 // Names declared in the for-init-statement, and in the condition of if,
1112 // while, for, and switch statements are local to the if, while, for, or
1113 // switch statement (including the controlled statement).
Argyrios Kyrtzidis504bb842008-09-11 03:06:46 +00001114 //
Douglas Gregor7307d6c2008-12-10 06:34:36 +00001115 unsigned ScopeFlags;
Argyrios Kyrtzidis504bb842008-09-11 03:06:46 +00001116 if (C99orCXX)
Douglas Gregor7307d6c2008-12-10 06:34:36 +00001117 ScopeFlags = Scope::BreakScope | Scope::ContinueScope |
1118 Scope::DeclScope | Scope::ControlScope;
Chris Lattner2dd1b722007-08-26 23:08:06 +00001119 else
Douglas Gregor7307d6c2008-12-10 06:34:36 +00001120 ScopeFlags = Scope::BreakScope | Scope::ContinueScope;
1121 ParseScope WhileScope(this, ScopeFlags);
Chris Lattner33ad2ca2006-11-05 23:47:55 +00001122
Chris Lattner9075bd72006-08-10 04:59:57 +00001123 // Parse the condition.
John McCalldadc5752010-08-24 06:29:42 +00001124 ExprResult Cond;
John McCall48871652010-08-21 09:40:31 +00001125 Decl *CondVar = 0;
Douglas Gregore60e41a2010-05-06 17:25:47 +00001126 if (ParseParenExprOrCondition(Cond, CondVar, WhileLoc, true))
Chris Lattnerc0081db2008-12-12 06:31:07 +00001127 return StmtError();
Sebastian Redl17f2c7d2008-12-09 13:15:23 +00001128
John McCallb268a282010-08-23 23:25:46 +00001129 FullExprArg FullCond(Actions.MakeFullExpr(Cond.get()));
Mike Stump11289f42009-09-09 15:08:12 +00001130
Chris Lattner8fb26252007-08-22 05:28:50 +00001131 // C99 6.8.5p5 - In C99, the body of the if statement is a scope, even if
Chris Lattner8f44d202007-08-22 05:33:11 +00001132 // there is no compound stmt. C90 does not have this clause. We only do this
1133 // if the body isn't a compound statement to avoid push/pop in common cases.
Argyrios Kyrtzidis504bb842008-09-11 03:06:46 +00001134 //
1135 // C++ 6.5p2:
1136 // The substatement in an iteration-statement implicitly defines a local scope
1137 // which is entered and exited each time through the loop.
1138 //
1139 // See comments in ParseIfStatement for why we create a scope for the
1140 // condition and a new scope for substatement in C++.
1141 //
Mike Stump11289f42009-09-09 15:08:12 +00001142 ParseScope InnerScope(this, Scope::DeclScope,
Douglas Gregor7307d6c2008-12-10 06:34:36 +00001143 C99orCXX && Tok.isNot(tok::l_brace));
Sebastian Redlb62406f2008-12-11 19:48:14 +00001144
Chris Lattner9075bd72006-08-10 04:59:57 +00001145 // Read the body statement.
John McCalldadc5752010-08-24 06:29:42 +00001146 StmtResult Body(ParseStatement());
Chris Lattner33ad2ca2006-11-05 23:47:55 +00001147
Chris Lattner8fb26252007-08-22 05:28:50 +00001148 // Pop the body scope if needed.
Douglas Gregor7307d6c2008-12-10 06:34:36 +00001149 InnerScope.Exit();
1150 WhileScope.Exit();
Sebastian Redlb62406f2008-12-11 19:48:14 +00001151
John McCall48871652010-08-21 09:40:31 +00001152 if ((Cond.isInvalid() && !CondVar) || Body.isInvalid())
Sebastian Redlb62406f2008-12-11 19:48:14 +00001153 return StmtError();
1154
John McCallb268a282010-08-23 23:25:46 +00001155 return Actions.ActOnWhileStmt(WhileLoc, FullCond, CondVar, Body.get());
Chris Lattner9075bd72006-08-10 04:59:57 +00001156}
1157
1158/// ParseDoStatement
1159/// do-statement: [C99 6.8.5.2]
1160/// 'do' statement 'while' '(' expression ')' ';'
Chris Lattner503fadc2006-08-10 05:45:44 +00001161/// Note: this lets the caller parse the end ';'.
John McCall53fa7142010-12-24 02:08:15 +00001162StmtResult Parser::ParseDoStatement(ParsedAttributes &attrs) {
Alexis Hunt96d5c762009-11-21 08:43:09 +00001163 // FIXME: Use attributes?
Ted Kremenekc162e8e2010-02-11 02:19:13 +00001164
Chris Lattnerfeb00b62007-10-09 17:41:39 +00001165 assert(Tok.is(tok::kw_do) && "Not a do stmt!");
Chris Lattneraf635312006-10-16 06:06:51 +00001166 SourceLocation DoLoc = ConsumeToken(); // eat the 'do'.
Sebastian Redlb62406f2008-12-11 19:48:14 +00001167
Chris Lattner2dd1b722007-08-26 23:08:06 +00001168 // C99 6.8.5p5 - In C99, the do statement is a block. This is not
1169 // the case for C90. Start the loop scope.
Douglas Gregor7307d6c2008-12-10 06:34:36 +00001170 unsigned ScopeFlags;
Chris Lattner2dd1b722007-08-26 23:08:06 +00001171 if (getLang().C99)
Douglas Gregor7307d6c2008-12-10 06:34:36 +00001172 ScopeFlags = Scope::BreakScope | Scope::ContinueScope | Scope::DeclScope;
Chris Lattner2dd1b722007-08-26 23:08:06 +00001173 else
Douglas Gregor7307d6c2008-12-10 06:34:36 +00001174 ScopeFlags = Scope::BreakScope | Scope::ContinueScope;
Sebastian Redlb62406f2008-12-11 19:48:14 +00001175
Douglas Gregor7307d6c2008-12-10 06:34:36 +00001176 ParseScope DoScope(this, ScopeFlags);
Chris Lattner33ad2ca2006-11-05 23:47:55 +00001177
Chris Lattner8fb26252007-08-22 05:28:50 +00001178 // C99 6.8.5p5 - In C99, the body of the if statement is a scope, even if
Chris Lattner8f44d202007-08-22 05:33:11 +00001179 // there is no compound stmt. C90 does not have this clause. We only do this
1180 // if the body isn't a compound statement to avoid push/pop in common cases.
Argyrios Kyrtzidisfea38012008-09-11 04:46:46 +00001181 //
1182 // C++ 6.5p2:
1183 // The substatement in an iteration-statement implicitly defines a local scope
1184 // which is entered and exited each time through the loop.
1185 //
Douglas Gregor7307d6c2008-12-10 06:34:36 +00001186 ParseScope InnerScope(this, Scope::DeclScope,
Mike Stump11289f42009-09-09 15:08:12 +00001187 (getLang().C99 || getLang().CPlusPlus) &&
Douglas Gregor7307d6c2008-12-10 06:34:36 +00001188 Tok.isNot(tok::l_brace));
Sebastian Redlb62406f2008-12-11 19:48:14 +00001189
Chris Lattner9075bd72006-08-10 04:59:57 +00001190 // Read the body statement.
John McCalldadc5752010-08-24 06:29:42 +00001191 StmtResult Body(ParseStatement());
Chris Lattner9075bd72006-08-10 04:59:57 +00001192
Chris Lattner8fb26252007-08-22 05:28:50 +00001193 // Pop the body scope if needed.
Douglas Gregor7307d6c2008-12-10 06:34:36 +00001194 InnerScope.Exit();
Chris Lattner8fb26252007-08-22 05:28:50 +00001195
Chris Lattnerfeb00b62007-10-09 17:41:39 +00001196 if (Tok.isNot(tok::kw_while)) {
Sebastian Redl17f2c7d2008-12-09 13:15:23 +00001197 if (!Body.isInvalid()) {
Chris Lattner0046de12008-11-13 18:52:53 +00001198 Diag(Tok, diag::err_expected_while);
Chris Lattner03c40412008-11-23 23:17:07 +00001199 Diag(DoLoc, diag::note_matching) << "do";
Chris Lattner0046de12008-11-13 18:52:53 +00001200 SkipUntil(tok::semi, false, true);
1201 }
Sebastian Redlb62406f2008-12-11 19:48:14 +00001202 return StmtError();
Chris Lattner9075bd72006-08-10 04:59:57 +00001203 }
Chris Lattneraf635312006-10-16 06:06:51 +00001204 SourceLocation WhileLoc = ConsumeToken();
Sebastian Redlb62406f2008-12-11 19:48:14 +00001205
Chris Lattnerfeb00b62007-10-09 17:41:39 +00001206 if (Tok.isNot(tok::l_paren)) {
Chris Lattner6d29c102008-11-18 07:48:38 +00001207 Diag(Tok, diag::err_expected_lparen_after) << "do/while";
Chris Lattner0046de12008-11-13 18:52:53 +00001208 SkipUntil(tok::semi, false, true);
Sebastian Redlb62406f2008-12-11 19:48:14 +00001209 return StmtError();
Chris Lattner9075bd72006-08-10 04:59:57 +00001210 }
Sebastian Redlb62406f2008-12-11 19:48:14 +00001211
Chris Lattner10da53c2008-12-12 06:35:28 +00001212 // Parse the parenthesized condition.
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00001213 BalancedDelimiterTracker T(*this, tok::l_paren);
1214 T.consumeOpen();
John McCalldadc5752010-08-24 06:29:42 +00001215 ExprResult Cond = ParseExpression();
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00001216 T.consumeClose();
Douglas Gregor7307d6c2008-12-10 06:34:36 +00001217 DoScope.Exit();
Sebastian Redl17f2c7d2008-12-09 13:15:23 +00001218
Sebastian Redlb62406f2008-12-11 19:48:14 +00001219 if (Cond.isInvalid() || Body.isInvalid())
1220 return StmtError();
Sebastian Redl17f2c7d2008-12-09 13:15:23 +00001221
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00001222 return Actions.ActOnDoStmt(DoLoc, Body.get(), WhileLoc, T.getOpenLocation(),
1223 Cond.get(), T.getCloseLocation());
Chris Lattner9075bd72006-08-10 04:59:57 +00001224}
1225
1226/// ParseForStatement
1227/// for-statement: [C99 6.8.5.3]
1228/// 'for' '(' expr[opt] ';' expr[opt] ';' expr[opt] ')' statement
1229/// 'for' '(' declaration expr[opt] ';' expr[opt] ')' statement
Argyrios Kyrtzidis2b4072f2008-09-09 20:38:47 +00001230/// [C++] 'for' '(' for-init-statement condition[opt] ';' expression[opt] ')'
1231/// [C++] statement
Richard Smith02e85f32011-04-14 22:09:26 +00001232/// [C++0x] 'for' '(' for-range-declaration : for-range-initializer ) statement
Fariborz Jahanian732b8c22008-01-03 17:55:25 +00001233/// [OBJC2] 'for' '(' declaration 'in' expr ')' statement
1234/// [OBJC2] 'for' '(' expr 'in' expr ')' statement
Argyrios Kyrtzidis2b4072f2008-09-09 20:38:47 +00001235///
1236/// [C++] for-init-statement:
1237/// [C++] expression-statement
1238/// [C++] simple-declaration
1239///
Richard Smith02e85f32011-04-14 22:09:26 +00001240/// [C++0x] for-range-declaration:
1241/// [C++0x] attribute-specifier-seq[opt] type-specifier-seq declarator
1242/// [C++0x] for-range-initializer:
1243/// [C++0x] expression
1244/// [C++0x] braced-init-list [TODO]
John McCall53fa7142010-12-24 02:08:15 +00001245StmtResult Parser::ParseForStatement(ParsedAttributes &attrs) {
Alexis Hunt96d5c762009-11-21 08:43:09 +00001246 // FIXME: Use attributes?
Ted Kremenekc162e8e2010-02-11 02:19:13 +00001247
Chris Lattnerfeb00b62007-10-09 17:41:39 +00001248 assert(Tok.is(tok::kw_for) && "Not a for stmt!");
Chris Lattneraf635312006-10-16 06:06:51 +00001249 SourceLocation ForLoc = ConsumeToken(); // eat the 'for'.
Sebastian Redlb62406f2008-12-11 19:48:14 +00001250
Chris Lattnerfeb00b62007-10-09 17:41:39 +00001251 if (Tok.isNot(tok::l_paren)) {
Chris Lattner6d29c102008-11-18 07:48:38 +00001252 Diag(Tok, diag::err_expected_lparen_after) << "for";
Chris Lattner9075bd72006-08-10 04:59:57 +00001253 SkipUntil(tok::semi);
Sebastian Redlb62406f2008-12-11 19:48:14 +00001254 return StmtError();
Chris Lattner9075bd72006-08-10 04:59:57 +00001255 }
Sebastian Redlb62406f2008-12-11 19:48:14 +00001256
Chris Lattner934074c2009-04-22 00:54:41 +00001257 bool C99orCXXorObjC = getLang().C99 || getLang().CPlusPlus || getLang().ObjC1;
Argyrios Kyrtzidis504bb842008-09-11 03:06:46 +00001258
Chris Lattner2dd1b722007-08-26 23:08:06 +00001259 // C99 6.8.5p5 - In C99, the for statement is a block. This is not
1260 // the case for C90. Start the loop scope.
Argyrios Kyrtzidis504bb842008-09-11 03:06:46 +00001261 //
1262 // C++ 6.4p3:
1263 // A name introduced by a declaration in a condition is in scope from its
1264 // point of declaration until the end of the substatements controlled by the
1265 // condition.
Argyrios Kyrtzidis47f98652008-09-11 23:08:39 +00001266 // C++ 3.3.2p4:
1267 // Names declared in the for-init-statement, and in the condition of if,
1268 // while, for, and switch statements are local to the if, while, for, or
1269 // switch statement (including the controlled statement).
Argyrios Kyrtzidis504bb842008-09-11 03:06:46 +00001270 // C++ 6.5.3p1:
1271 // Names declared in the for-init-statement are in the same declarative-region
1272 // as those declared in the condition.
1273 //
Douglas Gregor7307d6c2008-12-10 06:34:36 +00001274 unsigned ScopeFlags;
Chris Lattner934074c2009-04-22 00:54:41 +00001275 if (C99orCXXorObjC)
Douglas Gregor7307d6c2008-12-10 06:34:36 +00001276 ScopeFlags = Scope::BreakScope | Scope::ContinueScope |
1277 Scope::DeclScope | Scope::ControlScope;
Chris Lattner2dd1b722007-08-26 23:08:06 +00001278 else
Douglas Gregor7307d6c2008-12-10 06:34:36 +00001279 ScopeFlags = Scope::BreakScope | Scope::ContinueScope;
1280
1281 ParseScope ForScope(this, ScopeFlags);
Chris Lattner9075bd72006-08-10 04:59:57 +00001282
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00001283 BalancedDelimiterTracker T(*this, tok::l_paren);
1284 T.consumeOpen();
1285
John McCalldadc5752010-08-24 06:29:42 +00001286 ExprResult Value;
Sebastian Redl17f2c7d2008-12-09 13:15:23 +00001287
Richard Smith02e85f32011-04-14 22:09:26 +00001288 bool ForEach = false, ForRange = false;
John McCalldadc5752010-08-24 06:29:42 +00001289 StmtResult FirstPart;
Douglas Gregor12cc7ee2010-05-06 21:39:56 +00001290 bool SecondPartIsInvalid = false;
Douglas Gregore60e41a2010-05-06 17:25:47 +00001291 FullExprArg SecondPart(Actions);
John McCalldadc5752010-08-24 06:29:42 +00001292 ExprResult Collection;
Richard Smith02e85f32011-04-14 22:09:26 +00001293 ForRangeInit ForRangeInit;
Douglas Gregore60e41a2010-05-06 17:25:47 +00001294 FullExprArg ThirdPart(Actions);
John McCall48871652010-08-21 09:40:31 +00001295 Decl *SecondVar = 0;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001296
Douglas Gregor9d64c5e2009-09-21 20:51:25 +00001297 if (Tok.is(tok::code_completion)) {
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001298 Actions.CodeCompleteOrdinaryName(getCurScope(),
John McCallfaf5fb42010-08-26 23:41:50 +00001299 C99orCXXorObjC? Sema::PCC_ForInit
1300 : Sema::PCC_Expression);
Argyrios Kyrtzidis5cec2ae2011-09-04 03:32:15 +00001301 cutOffParsing();
1302 return StmtError();
Douglas Gregor9d64c5e2009-09-21 20:51:25 +00001303 }
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001304
Chris Lattner9075bd72006-08-10 04:59:57 +00001305 // Parse the first part of the for specifier.
Chris Lattnerfeb00b62007-10-09 17:41:39 +00001306 if (Tok.is(tok::semi)) { // for (;
Chris Lattner53361ac2006-08-10 05:19:57 +00001307 // no first part, eat the ';'.
1308 ConsumeToken();
Argyrios Kyrtzidisbc28fef2008-10-05 15:50:46 +00001309 } else if (isSimpleDeclaration()) { // for (int X = 4;
Chris Lattner53361ac2006-08-10 05:19:57 +00001310 // Parse declaration, which eats the ';'.
Chris Lattner934074c2009-04-22 00:54:41 +00001311 if (!C99orCXXorObjC) // Use of C99-style for loops in C90 mode?
Chris Lattnerab1803652006-08-10 05:22:36 +00001312 Diag(Tok, diag::ext_c99_variable_decl_in_for_loop);
Sebastian Redlb62406f2008-12-11 19:48:14 +00001313
John McCall084e83d2011-03-24 11:26:52 +00001314 ParsedAttributesWithRange attrs(AttrFactory);
John McCall53fa7142010-12-24 02:08:15 +00001315 MaybeParseCXX0XAttributes(attrs);
Alexis Hunt96d5c762009-11-21 08:43:09 +00001316
Richard Smith02e85f32011-04-14 22:09:26 +00001317 // In C++0x, "for (T NS:a" might not be a typo for ::
1318 bool MightBeForRangeStmt = getLang().CPlusPlus;
1319 ColonProtectionRAIIObject ColonProtection(*this, MightBeForRangeStmt);
1320
Chris Lattner49836b42009-04-02 04:16:50 +00001321 SourceLocation DeclStart = Tok.getLocation(), DeclEnd;
Fariborz Jahanian1db5c942010-09-28 20:42:35 +00001322 StmtVector Stmts(Actions);
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001323 DeclGroupPtrTy DG = ParseSimpleDeclaration(Stmts, Declarator::ForContext,
Richard Smith02e85f32011-04-14 22:09:26 +00001324 DeclEnd, attrs, false,
1325 MightBeForRangeStmt ?
1326 &ForRangeInit : 0);
Chris Lattner32dc41c2009-03-29 17:27:48 +00001327 FirstPart = Actions.ActOnDeclStmt(DG, DeclStart, Tok.getLocation());
Mike Stump11289f42009-09-09 15:08:12 +00001328
Richard Smith02e85f32011-04-14 22:09:26 +00001329 if (ForRangeInit.ParsedForRangeDecl()) {
Richard Smith5d164bc2011-10-15 05:09:34 +00001330 Diag(ForRangeInit.ColonLoc, getLang().CPlusPlus0x ?
1331 diag::warn_cxx98_compat_for_range : diag::ext_for_range);
Richard Smith58c74332011-09-04 19:54:14 +00001332
Richard Smith02e85f32011-04-14 22:09:26 +00001333 ForRange = true;
1334 } else if (Tok.is(tok::semi)) { // for (int x = 4;
Chris Lattner32dc41c2009-03-29 17:27:48 +00001335 ConsumeToken();
1336 } else if ((ForEach = isTokIdentifier_in())) {
Fariborz Jahaniane774fa62009-11-19 22:12:37 +00001337 Actions.ActOnForEachDeclStmt(DG);
Mike Stump11289f42009-09-09 15:08:12 +00001338 // ObjC: for (id x in expr)
Fariborz Jahanian732b8c22008-01-03 17:55:25 +00001339 ConsumeToken(); // consume 'in'
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001340
Douglas Gregor68762e72010-08-23 21:17:50 +00001341 if (Tok.is(tok::code_completion)) {
1342 Actions.CodeCompleteObjCForCollection(getCurScope(), DG);
Argyrios Kyrtzidis5cec2ae2011-09-04 03:32:15 +00001343 cutOffParsing();
1344 return StmtError();
Douglas Gregor68762e72010-08-23 21:17:50 +00001345 }
Douglas Gregore60e41a2010-05-06 17:25:47 +00001346 Collection = ParseExpression();
Chris Lattner32dc41c2009-03-29 17:27:48 +00001347 } else {
1348 Diag(Tok, diag::err_expected_semi_for);
Fariborz Jahanian732b8c22008-01-03 17:55:25 +00001349 }
Chris Lattner9075bd72006-08-10 04:59:57 +00001350 } else {
Chris Lattner89c50c62006-08-11 06:41:18 +00001351 Value = ParseExpression();
Chris Lattner71e23ce2006-11-04 20:18:38 +00001352
John McCall34376a62010-12-04 03:47:34 +00001353 ForEach = isTokIdentifier_in();
1354
Chris Lattnercd68f642007-06-27 01:06:29 +00001355 // Turn the expression into a stmt.
John McCall34376a62010-12-04 03:47:34 +00001356 if (!Value.isInvalid()) {
1357 if (ForEach)
1358 FirstPart = Actions.ActOnForEachLValueExpr(Value.get());
1359 else
1360 FirstPart = Actions.ActOnExprStmt(Actions.MakeFullExpr(Value.get()));
1361 }
Sebastian Redld9f7b1c2008-12-10 00:02:53 +00001362
Chris Lattnerfeb00b62007-10-09 17:41:39 +00001363 if (Tok.is(tok::semi)) {
Chris Lattner53361ac2006-08-10 05:19:57 +00001364 ConsumeToken();
John McCall34376a62010-12-04 03:47:34 +00001365 } else if (ForEach) {
Fariborz Jahanian732b8c22008-01-03 17:55:25 +00001366 ConsumeToken(); // consume 'in'
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001367
Douglas Gregor68762e72010-08-23 21:17:50 +00001368 if (Tok.is(tok::code_completion)) {
1369 Actions.CodeCompleteObjCForCollection(getCurScope(), DeclGroupPtrTy());
Argyrios Kyrtzidis5cec2ae2011-09-04 03:32:15 +00001370 cutOffParsing();
1371 return StmtError();
Douglas Gregor68762e72010-08-23 21:17:50 +00001372 }
Douglas Gregore60e41a2010-05-06 17:25:47 +00001373 Collection = ParseExpression();
Chris Lattner5bbb3c82009-03-29 16:50:03 +00001374 } else {
Douglas Gregor230a7e62011-02-17 03:38:46 +00001375 if (!Value.isInvalid()) {
1376 Diag(Tok, diag::err_expected_semi_for);
1377 } else {
1378 // Skip until semicolon or rparen, don't consume it.
1379 SkipUntil(tok::r_paren, true, true);
1380 if (Tok.is(tok::semi))
1381 ConsumeToken();
1382 }
Chris Lattner53361ac2006-08-10 05:19:57 +00001383 }
Chris Lattner9075bd72006-08-10 04:59:57 +00001384 }
Richard Smith02e85f32011-04-14 22:09:26 +00001385 if (!ForEach && !ForRange) {
John McCallb268a282010-08-23 23:25:46 +00001386 assert(!SecondPart.get() && "Shouldn't have a second expression yet.");
Fariborz Jahanian732b8c22008-01-03 17:55:25 +00001387 // Parse the second part of the for specifier.
1388 if (Tok.is(tok::semi)) { // for (...;;
1389 // no second part.
Douglas Gregor230a7e62011-02-17 03:38:46 +00001390 } else if (Tok.is(tok::r_paren)) {
1391 // missing both semicolons.
Fariborz Jahanian732b8c22008-01-03 17:55:25 +00001392 } else {
John McCalldadc5752010-08-24 06:29:42 +00001393 ExprResult Second;
Douglas Gregor7bab5ff2009-11-25 00:27:52 +00001394 if (getLang().CPlusPlus)
Douglas Gregore60e41a2010-05-06 17:25:47 +00001395 ParseCXXCondition(Second, SecondVar, ForLoc, true);
1396 else {
1397 Second = ParseExpression();
1398 if (!Second.isInvalid())
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001399 Second = Actions.ActOnBooleanCondition(getCurScope(), ForLoc,
John McCallb268a282010-08-23 23:25:46 +00001400 Second.get());
Douglas Gregore60e41a2010-05-06 17:25:47 +00001401 }
Douglas Gregor12cc7ee2010-05-06 21:39:56 +00001402 SecondPartIsInvalid = Second.isInvalid();
John McCallb268a282010-08-23 23:25:46 +00001403 SecondPart = Actions.MakeFullExpr(Second.get());
Fariborz Jahanian732b8c22008-01-03 17:55:25 +00001404 }
Sebastian Redl17f2c7d2008-12-09 13:15:23 +00001405
Douglas Gregor230a7e62011-02-17 03:38:46 +00001406 if (Tok.isNot(tok::semi)) {
1407 if (!SecondPartIsInvalid || SecondVar)
1408 Diag(Tok, diag::err_expected_semi_for);
1409 else
1410 // Skip until semicolon or rparen, don't consume it.
1411 SkipUntil(tok::r_paren, true, true);
1412 }
1413
Fariborz Jahanian732b8c22008-01-03 17:55:25 +00001414 if (Tok.is(tok::semi)) {
1415 ConsumeToken();
Fariborz Jahanian732b8c22008-01-03 17:55:25 +00001416 }
Sebastian Redlb62406f2008-12-11 19:48:14 +00001417
Fariborz Jahanian732b8c22008-01-03 17:55:25 +00001418 // Parse the third part of the for specifier.
Douglas Gregore60e41a2010-05-06 17:25:47 +00001419 if (Tok.isNot(tok::r_paren)) { // for (...;...;)
John McCalldadc5752010-08-24 06:29:42 +00001420 ExprResult Third = ParseExpression();
John McCallb268a282010-08-23 23:25:46 +00001421 ThirdPart = Actions.MakeFullExpr(Third.take());
Douglas Gregore60e41a2010-05-06 17:25:47 +00001422 }
Chris Lattner9075bd72006-08-10 04:59:57 +00001423 }
Chris Lattner4564bc12006-08-10 23:14:52 +00001424 // Match the ')'.
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00001425 T.consumeClose();
Sebastian Redl17f2c7d2008-12-09 13:15:23 +00001426
Richard Smith02e85f32011-04-14 22:09:26 +00001427 // We need to perform most of the semantic analysis for a C++0x for-range
1428 // statememt before parsing the body, in order to be able to deduce the type
1429 // of an auto-typed loop variable.
1430 StmtResult ForRangeStmt;
John McCall53848232011-07-27 01:07:15 +00001431 if (ForRange) {
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00001432 ForRangeStmt = Actions.ActOnCXXForRangeStmt(ForLoc, T.getOpenLocation(),
Richard Smith02e85f32011-04-14 22:09:26 +00001433 FirstPart.take(),
1434 ForRangeInit.ColonLoc,
1435 ForRangeInit.RangeExpr.get(),
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00001436 T.getCloseLocation());
Richard Smith02e85f32011-04-14 22:09:26 +00001437
John McCall53848232011-07-27 01:07:15 +00001438
1439 // Similarly, we need to do the semantic analysis for a for-range
1440 // statement immediately in order to close over temporaries correctly.
1441 } else if (ForEach) {
1442 if (!Collection.isInvalid())
1443 Collection =
1444 Actions.ActOnObjCForCollectionOperand(ForLoc, Collection.take());
1445 }
1446
Chris Lattner8fb26252007-08-22 05:28:50 +00001447 // C99 6.8.5p5 - In C99, the body of the if statement is a scope, even if
Chris Lattner8f44d202007-08-22 05:33:11 +00001448 // there is no compound stmt. C90 does not have this clause. We only do this
1449 // if the body isn't a compound statement to avoid push/pop in common cases.
Argyrios Kyrtzidis504bb842008-09-11 03:06:46 +00001450 //
1451 // C++ 6.5p2:
1452 // The substatement in an iteration-statement implicitly defines a local scope
1453 // which is entered and exited each time through the loop.
1454 //
1455 // See comments in ParseIfStatement for why we create a scope for
1456 // for-init-statement/condition and a new scope for substatement in C++.
1457 //
Mike Stump11289f42009-09-09 15:08:12 +00001458 ParseScope InnerScope(this, Scope::DeclScope,
Chris Lattner934074c2009-04-22 00:54:41 +00001459 C99orCXXorObjC && Tok.isNot(tok::l_brace));
Sebastian Redl17f2c7d2008-12-09 13:15:23 +00001460
Chris Lattner9075bd72006-08-10 04:59:57 +00001461 // Read the body statement.
John McCalldadc5752010-08-24 06:29:42 +00001462 StmtResult Body(ParseStatement());
Sebastian Redl17f2c7d2008-12-09 13:15:23 +00001463
Chris Lattner8fb26252007-08-22 05:28:50 +00001464 // Pop the body scope if needed.
Douglas Gregor7307d6c2008-12-10 06:34:36 +00001465 InnerScope.Exit();
Chris Lattner8fb26252007-08-22 05:28:50 +00001466
Chris Lattner33ad2ca2006-11-05 23:47:55 +00001467 // Leave the for-scope.
Douglas Gregor7307d6c2008-12-10 06:34:36 +00001468 ForScope.Exit();
Sebastian Redl17f2c7d2008-12-09 13:15:23 +00001469
1470 if (Body.isInvalid())
Sebastian Redlb62406f2008-12-11 19:48:14 +00001471 return StmtError();
Sebastian Redld9f7b1c2008-12-10 00:02:53 +00001472
Richard Smith02e85f32011-04-14 22:09:26 +00001473 if (ForEach)
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00001474 return Actions.ActOnObjCForCollectionStmt(ForLoc, T.getOpenLocation(),
1475 FirstPart.take(),
1476 Collection.take(),
1477 T.getCloseLocation(),
1478 Body.take());
Mike Stump11289f42009-09-09 15:08:12 +00001479
Richard Smith02e85f32011-04-14 22:09:26 +00001480 if (ForRange)
1481 return Actions.FinishCXXForRangeStmt(ForRangeStmt.take(), Body.take());
1482
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00001483 return Actions.ActOnForStmt(ForLoc, T.getOpenLocation(), FirstPart.take(),
1484 SecondPart, SecondVar, ThirdPart,
1485 T.getCloseLocation(), Body.take());
Chris Lattner9075bd72006-08-10 04:59:57 +00001486}
Chris Lattnerc951dae2006-08-10 04:23:57 +00001487
Chris Lattner503fadc2006-08-10 05:45:44 +00001488/// ParseGotoStatement
1489/// jump-statement:
1490/// 'goto' identifier ';'
1491/// [GNU] 'goto' '*' expression ';'
1492///
1493/// Note: this lets the caller parse the end ';'.
1494///
John McCall53fa7142010-12-24 02:08:15 +00001495StmtResult Parser::ParseGotoStatement(ParsedAttributes &attrs) {
Alexis Hunt96d5c762009-11-21 08:43:09 +00001496 // FIXME: Use attributes?
Ted Kremenekc162e8e2010-02-11 02:19:13 +00001497
Chris Lattnerfeb00b62007-10-09 17:41:39 +00001498 assert(Tok.is(tok::kw_goto) && "Not a goto stmt!");
Chris Lattneraf635312006-10-16 06:06:51 +00001499 SourceLocation GotoLoc = ConsumeToken(); // eat the 'goto'.
Sebastian Redlb62406f2008-12-11 19:48:14 +00001500
John McCalldadc5752010-08-24 06:29:42 +00001501 StmtResult Res;
Chris Lattnerfeb00b62007-10-09 17:41:39 +00001502 if (Tok.is(tok::identifier)) {
Chris Lattnerebb5c6c2011-02-18 01:27:55 +00001503 LabelDecl *LD = Actions.LookupOrCreateLabel(Tok.getIdentifierInfo(),
1504 Tok.getLocation());
1505 Res = Actions.ActOnGotoStmt(GotoLoc, Tok.getLocation(), LD);
Chris Lattner503fadc2006-08-10 05:45:44 +00001506 ConsumeToken();
Eli Friedman5d72d412009-04-28 00:51:18 +00001507 } else if (Tok.is(tok::star)) {
Chris Lattner503fadc2006-08-10 05:45:44 +00001508 // GNU indirect goto extension.
1509 Diag(Tok, diag::ext_gnu_indirect_goto);
Chris Lattneraf635312006-10-16 06:06:51 +00001510 SourceLocation StarLoc = ConsumeToken();
John McCalldadc5752010-08-24 06:29:42 +00001511 ExprResult R(ParseExpression());
Sebastian Redl17f2c7d2008-12-09 13:15:23 +00001512 if (R.isInvalid()) { // Skip to the semicolon, but don't consume it.
Chris Lattnera0927ce2006-08-12 16:59:03 +00001513 SkipUntil(tok::semi, false, true);
Sebastian Redlb62406f2008-12-11 19:48:14 +00001514 return StmtError();
Chris Lattner30f910e2006-10-16 05:52:41 +00001515 }
John McCallb268a282010-08-23 23:25:46 +00001516 Res = Actions.ActOnIndirectGotoStmt(GotoLoc, StarLoc, R.take());
Chris Lattnere34b2c22007-07-22 04:13:33 +00001517 } else {
1518 Diag(Tok, diag::err_expected_ident);
Sebastian Redlb62406f2008-12-11 19:48:14 +00001519 return StmtError();
Chris Lattner503fadc2006-08-10 05:45:44 +00001520 }
Sebastian Redl17f2c7d2008-12-09 13:15:23 +00001521
Sebastian Redlb62406f2008-12-11 19:48:14 +00001522 return move(Res);
Chris Lattner503fadc2006-08-10 05:45:44 +00001523}
1524
Chris Lattner33ad2ca2006-11-05 23:47:55 +00001525/// ParseContinueStatement
1526/// jump-statement:
1527/// 'continue' ';'
1528///
1529/// Note: this lets the caller parse the end ';'.
1530///
John McCall53fa7142010-12-24 02:08:15 +00001531StmtResult Parser::ParseContinueStatement(ParsedAttributes &attrs) {
Alexis Hunt96d5c762009-11-21 08:43:09 +00001532 // FIXME: Use attributes?
Ted Kremenekc162e8e2010-02-11 02:19:13 +00001533
Chris Lattner33ad2ca2006-11-05 23:47:55 +00001534 SourceLocation ContinueLoc = ConsumeToken(); // eat the 'continue'.
Douglas Gregor0be31a22010-07-02 17:43:08 +00001535 return Actions.ActOnContinueStmt(ContinueLoc, getCurScope());
Chris Lattner33ad2ca2006-11-05 23:47:55 +00001536}
1537
1538/// ParseBreakStatement
1539/// jump-statement:
1540/// 'break' ';'
1541///
1542/// Note: this lets the caller parse the end ';'.
1543///
John McCall53fa7142010-12-24 02:08:15 +00001544StmtResult Parser::ParseBreakStatement(ParsedAttributes &attrs) {
Alexis Hunt96d5c762009-11-21 08:43:09 +00001545 // FIXME: Use attributes?
Ted Kremenekc162e8e2010-02-11 02:19:13 +00001546
Chris Lattner33ad2ca2006-11-05 23:47:55 +00001547 SourceLocation BreakLoc = ConsumeToken(); // eat the 'break'.
Douglas Gregor0be31a22010-07-02 17:43:08 +00001548 return Actions.ActOnBreakStmt(BreakLoc, getCurScope());
Chris Lattner33ad2ca2006-11-05 23:47:55 +00001549}
1550
Chris Lattner503fadc2006-08-10 05:45:44 +00001551/// ParseReturnStatement
1552/// jump-statement:
1553/// 'return' expression[opt] ';'
John McCall53fa7142010-12-24 02:08:15 +00001554StmtResult Parser::ParseReturnStatement(ParsedAttributes &attrs) {
Alexis Hunt96d5c762009-11-21 08:43:09 +00001555 // FIXME: Use attributes?
Ted Kremenekc162e8e2010-02-11 02:19:13 +00001556
Chris Lattnerfeb00b62007-10-09 17:41:39 +00001557 assert(Tok.is(tok::kw_return) && "Not a return stmt!");
Chris Lattneraf635312006-10-16 06:06:51 +00001558 SourceLocation ReturnLoc = ConsumeToken(); // eat the 'return'.
Sebastian Redlb62406f2008-12-11 19:48:14 +00001559
John McCalldadc5752010-08-24 06:29:42 +00001560 ExprResult R;
Chris Lattnerfeb00b62007-10-09 17:41:39 +00001561 if (Tok.isNot(tok::semi)) {
Douglas Gregor7aa6b222010-05-30 01:49:25 +00001562 if (Tok.is(tok::code_completion)) {
Douglas Gregor0be31a22010-07-02 17:43:08 +00001563 Actions.CodeCompleteReturn(getCurScope());
Argyrios Kyrtzidis5cec2ae2011-09-04 03:32:15 +00001564 cutOffParsing();
Douglas Gregor7aa6b222010-05-30 01:49:25 +00001565 return StmtError();
1566 }
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001567
Douglas Gregore9e27d92011-03-11 23:10:44 +00001568 // FIXME: This is a hack to allow something like C++0x's generalized
1569 // initializer lists, but only enough of this feature to allow Clang to
1570 // parse libstdc++ 4.5's headers.
1571 if (Tok.is(tok::l_brace) && getLang().CPlusPlus) {
1572 R = ParseInitializer();
Richard Smith5d164bc2011-10-15 05:09:34 +00001573 if (R.isUsable())
1574 Diag(R.get()->getLocStart(), getLang().CPlusPlus0x ?
1575 diag::warn_cxx98_compat_generalized_initializer_lists :
1576 diag::ext_generalized_initializer_lists)
Douglas Gregore9e27d92011-03-11 23:10:44 +00001577 << R.get()->getSourceRange();
1578 } else
1579 R = ParseExpression();
Sebastian Redl17f2c7d2008-12-09 13:15:23 +00001580 if (R.isInvalid()) { // Skip to the semicolon, but don't consume it.
Chris Lattnera0927ce2006-08-12 16:59:03 +00001581 SkipUntil(tok::semi, false, true);
Sebastian Redlb62406f2008-12-11 19:48:14 +00001582 return StmtError();
Chris Lattner30f910e2006-10-16 05:52:41 +00001583 }
Chris Lattnera0927ce2006-08-12 16:59:03 +00001584 }
John McCallb268a282010-08-23 23:25:46 +00001585 return Actions.ActOnReturnStmt(ReturnLoc, R.take());
Chris Lattner503fadc2006-08-10 05:45:44 +00001586}
Chris Lattner0116c472006-08-15 06:03:28 +00001587
Eli Friedmana4b02c32011-09-30 01:13:51 +00001588/// ParseMicrosoftAsmStatement. When -fms-extensions/-fasm-blocks is enabled,
1589/// this routine is called to collect the tokens for an MS asm statement.
1590StmtResult Parser::ParseMicrosoftAsmStatement(SourceLocation AsmLoc) {
1591 SourceManager &SrcMgr = PP.getSourceManager();
1592 SourceLocation EndLoc = AsmLoc;
1593 do {
1594 bool InBraces = false;
NAKAMURA Takumi93eafc62011-10-08 11:31:53 +00001595 unsigned short savedBraceCount = 0;
Eli Friedmana4b02c32011-09-30 01:13:51 +00001596 bool InAsmComment = false;
1597 FileID FID;
NAKAMURA Takumi93eafc62011-10-08 11:31:53 +00001598 unsigned LineNo = 0;
Eli Friedmana4b02c32011-09-30 01:13:51 +00001599 unsigned NumTokensRead = 0;
1600 SourceLocation LBraceLoc;
1601
1602 if (Tok.is(tok::l_brace)) {
1603 // Braced inline asm: consume the opening brace.
1604 InBraces = true;
1605 savedBraceCount = BraceCount;
1606 EndLoc = LBraceLoc = ConsumeBrace();
1607 ++NumTokensRead;
1608 } else {
1609 // Single-line inline asm; compute which line it is on.
1610 std::pair<FileID, unsigned> ExpAsmLoc =
1611 SrcMgr.getDecomposedExpansionLoc(EndLoc);
1612 FID = ExpAsmLoc.first;
1613 LineNo = SrcMgr.getLineNumber(FID, ExpAsmLoc.second);
1614 }
1615
Steve Naroffdb5f7d72008-02-08 03:36:19 +00001616 SourceLocation TokLoc = Tok.getLocation();
Steve Naroff8c099c32008-02-08 18:01:27 +00001617 do {
Eli Friedmana4b02c32011-09-30 01:13:51 +00001618 // If we hit EOF, we're done, period.
1619 if (Tok.is(tok::eof))
1620 break;
1621 // When we consume the closing brace, we're done.
1622 if (InBraces && BraceCount == savedBraceCount)
1623 break;
1624
1625 if (!InAsmComment && Tok.is(tok::semi)) {
1626 // A semicolon in an asm is the start of a comment.
1627 InAsmComment = true;
1628 if (InBraces) {
1629 // Compute which line the comment is on.
1630 std::pair<FileID, unsigned> ExpSemiLoc =
1631 SrcMgr.getDecomposedExpansionLoc(TokLoc);
1632 FID = ExpSemiLoc.first;
1633 LineNo = SrcMgr.getLineNumber(FID, ExpSemiLoc.second);
1634 }
1635 } else if (!InBraces || InAsmComment) {
1636 // If end-of-line is significant, check whether this token is on a
1637 // new line.
1638 std::pair<FileID, unsigned> ExpLoc =
1639 SrcMgr.getDecomposedExpansionLoc(TokLoc);
1640 if (ExpLoc.first != FID ||
1641 SrcMgr.getLineNumber(ExpLoc.first, ExpLoc.second) != LineNo) {
1642 // If this is a single-line __asm, we're done.
1643 if (!InBraces)
1644 break;
1645 // We're no longer in a comment.
1646 InAsmComment = false;
1647 } else if (!InAsmComment && Tok.is(tok::r_brace)) {
1648 // Single-line asm always ends when a closing brace is seen.
1649 // FIXME: This is compatible with Apple gcc's -fasm-blocks; what
1650 // does MSVC do here?
1651 break;
1652 }
1653 }
1654
1655 // Consume the next token; make sure we don't modify the brace count etc.
1656 // if we are in a comment.
Abramo Bagnarae0acd852010-12-02 18:34:55 +00001657 EndLoc = TokLoc;
Eli Friedmana4b02c32011-09-30 01:13:51 +00001658 if (InAsmComment)
1659 PP.Lex(Tok);
1660 else
1661 ConsumeAnyToken();
Steve Naroff8c099c32008-02-08 18:01:27 +00001662 TokLoc = Tok.getLocation();
Eli Friedmana4b02c32011-09-30 01:13:51 +00001663 ++NumTokensRead;
1664 } while (1);
1665
1666 if (InBraces && BraceCount != savedBraceCount) {
1667 // __asm without closing brace (this can happen at EOF).
1668 Diag(Tok, diag::err_expected_rbrace);
1669 Diag(LBraceLoc, diag::note_matching) << "{";
1670 return StmtError();
1671 } else if (NumTokensRead == 0) {
1672 // Empty __asm.
1673 Diag(Tok, diag::err_expected_lbrace);
1674 return StmtError();
1675 }
1676 // Multiple adjacent asm's form together into a single asm statement
1677 // in the AST.
1678 if (!Tok.is(tok::kw_asm))
1679 break;
1680 EndLoc = ConsumeToken();
1681 } while (1);
1682 // FIXME: Need to actually grab the data and pass it on to Sema. Ideally,
1683 // what Sema wants is a string of the entire inline asm, with one instruction
1684 // per line and all the __asm keywords stripped out, and a way of mapping
1685 // from any character of that string to its location in the original source
1686 // code. I'm not entirely sure how to go about that, though.
Mike Stump6da5d752009-12-11 00:04:56 +00001687 Token t;
1688 t.setKind(tok::string_literal);
Chris Lattnerd28e6cc2010-08-17 16:00:12 +00001689 t.setLiteralData("\"/*FIXME: not done*/\"");
Mike Stump6da5d752009-12-11 00:04:56 +00001690 t.clearFlag(Token::NeedsCleaning);
Chris Lattnerd28e6cc2010-08-17 16:00:12 +00001691 t.setLength(21);
Alexis Hunt3b791862010-08-30 17:47:05 +00001692 ExprResult AsmString(Actions.ActOnStringLiteral(&t, 1));
Mike Stump6da5d752009-12-11 00:04:56 +00001693 ExprVector Constraints(Actions);
1694 ExprVector Exprs(Actions);
1695 ExprVector Clobbers(Actions);
Abramo Bagnarae0acd852010-12-02 18:34:55 +00001696 return Actions.ActOnAsmStmt(AsmLoc, true, true, 0, 0, 0,
Mike Stump6da5d752009-12-11 00:04:56 +00001697 move_arg(Constraints), move_arg(Exprs),
John McCallb268a282010-08-23 23:25:46 +00001698 AsmString.take(), move_arg(Clobbers),
Abramo Bagnarae0acd852010-12-02 18:34:55 +00001699 EndLoc, true);
Steve Naroffb2c80c72008-02-07 03:50:06 +00001700}
1701
Chris Lattner0116c472006-08-15 06:03:28 +00001702/// ParseAsmStatement - Parse a GNU extended asm statement.
Steve Naroff69e8f9e2008-02-11 23:15:56 +00001703/// asm-statement:
1704/// gnu-asm-statement
1705/// ms-asm-statement
1706///
1707/// [GNU] gnu-asm-statement:
Chris Lattner0116c472006-08-15 06:03:28 +00001708/// 'asm' type-qualifier[opt] '(' asm-argument ')' ';'
1709///
1710/// [GNU] asm-argument:
1711/// asm-string-literal
1712/// asm-string-literal ':' asm-operands[opt]
1713/// asm-string-literal ':' asm-operands[opt] ':' asm-operands[opt]
1714/// asm-string-literal ':' asm-operands[opt] ':' asm-operands[opt]
1715/// ':' asm-clobbers
1716///
1717/// [GNU] asm-clobbers:
1718/// asm-string-literal
1719/// asm-clobbers ',' asm-string-literal
1720///
Steve Naroff69e8f9e2008-02-11 23:15:56 +00001721/// [MS] ms-asm-statement:
Eli Friedmana4b02c32011-09-30 01:13:51 +00001722/// ms-asm-block
1723/// ms-asm-block ms-asm-statement
Steve Naroff69e8f9e2008-02-11 23:15:56 +00001724///
Eli Friedmana4b02c32011-09-30 01:13:51 +00001725/// [MS] ms-asm-block:
1726/// '__asm' ms-asm-line '\n'
1727/// '__asm' '{' ms-asm-instruction-block[opt] '}' ';'[opt]
1728///
1729/// [MS] ms-asm-instruction-block
1730/// ms-asm-line
1731/// ms-asm-line '\n' ms-asm-instruction-block
Steve Naroff69e8f9e2008-02-11 23:15:56 +00001732///
John McCalldadc5752010-08-24 06:29:42 +00001733StmtResult Parser::ParseAsmStatement(bool &msAsm) {
Chris Lattnerfeb00b62007-10-09 17:41:39 +00001734 assert(Tok.is(tok::kw_asm) && "Not an asm stmt");
Chris Lattner73c56c02007-10-29 04:04:16 +00001735 SourceLocation AsmLoc = ConsumeToken();
Sebastian Redlb62406f2008-12-11 19:48:14 +00001736
Francois Pichet0706d202011-09-17 17:15:52 +00001737 if (getLang().MicrosoftExt && Tok.isNot(tok::l_paren) && !isTypeQualifier()) {
Steve Naroffb2c80c72008-02-07 03:50:06 +00001738 msAsm = true;
Eli Friedmana4b02c32011-09-30 01:13:51 +00001739 return ParseMicrosoftAsmStatement(AsmLoc);
Steve Naroffb2c80c72008-02-07 03:50:06 +00001740 }
John McCall084e83d2011-03-24 11:26:52 +00001741 DeclSpec DS(AttrFactory);
Chris Lattner0116c472006-08-15 06:03:28 +00001742 SourceLocation Loc = Tok.getLocation();
Alexis Hunt96d5c762009-11-21 08:43:09 +00001743 ParseTypeQualifierListOpt(DS, true, false);
Sebastian Redlb62406f2008-12-11 19:48:14 +00001744
Chris Lattner0116c472006-08-15 06:03:28 +00001745 // GNU asms accept, but warn, about type-qualifiers other than volatile.
Chris Lattnera925dc62006-11-28 04:33:46 +00001746 if (DS.getTypeQualifiers() & DeclSpec::TQ_const)
Chris Lattner6d29c102008-11-18 07:48:38 +00001747 Diag(Loc, diag::w_asm_qualifier_ignored) << "const";
Chris Lattnera925dc62006-11-28 04:33:46 +00001748 if (DS.getTypeQualifiers() & DeclSpec::TQ_restrict)
Chris Lattner6d29c102008-11-18 07:48:38 +00001749 Diag(Loc, diag::w_asm_qualifier_ignored) << "restrict";
Sebastian Redlb62406f2008-12-11 19:48:14 +00001750
Chris Lattner0116c472006-08-15 06:03:28 +00001751 // Remember if this was a volatile asm.
Anders Carlsson660bdd12007-11-23 23:12:25 +00001752 bool isVolatile = DS.getTypeQualifiers() & DeclSpec::TQ_volatile;
Chris Lattnerfeb00b62007-10-09 17:41:39 +00001753 if (Tok.isNot(tok::l_paren)) {
Chris Lattner6d29c102008-11-18 07:48:38 +00001754 Diag(Tok, diag::err_expected_lparen_after) << "asm";
Chris Lattner0116c472006-08-15 06:03:28 +00001755 SkipUntil(tok::r_paren);
Sebastian Redlb62406f2008-12-11 19:48:14 +00001756 return StmtError();
Chris Lattner0116c472006-08-15 06:03:28 +00001757 }
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00001758 BalancedDelimiterTracker T(*this, tok::l_paren);
1759 T.consumeOpen();
Sebastian Redlb62406f2008-12-11 19:48:14 +00001760
John McCalldadc5752010-08-24 06:29:42 +00001761 ExprResult AsmString(ParseAsmStringLiteral());
Ted Kremenekeb0a6c02011-12-02 01:30:14 +00001762 if (AsmString.isInvalid()) {
1763 // If the reason we are recovering is because of an improper string
1764 // literal, it makes the most sense just to consume to the ')'.
1765 if (isTokenStringLiteral())
1766 T.skipToEnd();
Sebastian Redlb62406f2008-12-11 19:48:14 +00001767 return StmtError();
Ted Kremenekeb0a6c02011-12-02 01:30:14 +00001768 }
Sebastian Redl17f2c7d2008-12-09 13:15:23 +00001769
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001770 SmallVector<IdentifierInfo *, 4> Names;
Sebastian Redl511ed552008-11-25 22:21:31 +00001771 ExprVector Constraints(Actions);
1772 ExprVector Exprs(Actions);
1773 ExprVector Clobbers(Actions);
Chris Lattner0116c472006-08-15 06:03:28 +00001774
Anders Carlsson19fe1162008-02-05 23:03:50 +00001775 if (Tok.is(tok::r_paren)) {
Chris Lattnerbf5fff52009-12-20 23:00:41 +00001776 // We have a simple asm expression like 'asm("foo")'.
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00001777 T.consumeClose();
Chris Lattnerbf5fff52009-12-20 23:00:41 +00001778 return Actions.ActOnAsmStmt(AsmLoc, /*isSimple*/ true, isVolatile,
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001779 /*NumOutputs*/ 0, /*NumInputs*/ 0, 0,
Chris Lattnerbf5fff52009-12-20 23:00:41 +00001780 move_arg(Constraints), move_arg(Exprs),
John McCallb268a282010-08-23 23:25:46 +00001781 AsmString.take(), move_arg(Clobbers),
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00001782 T.getCloseLocation());
Chris Lattner0116c472006-08-15 06:03:28 +00001783 }
Sebastian Redld9f7b1c2008-12-10 00:02:53 +00001784
Chris Lattnerbf5fff52009-12-20 23:00:41 +00001785 // Parse Outputs, if present.
Chris Lattner15768502009-12-20 23:08:04 +00001786 bool AteExtraColon = false;
1787 if (Tok.is(tok::colon) || Tok.is(tok::coloncolon)) {
1788 // In C++ mode, parse "::" like ": :".
1789 AteExtraColon = Tok.is(tok::coloncolon);
Chris Lattnerbf5fff52009-12-20 23:00:41 +00001790 ConsumeToken();
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001791
Chris Lattner15768502009-12-20 23:08:04 +00001792 if (!AteExtraColon &&
1793 ParseAsmOperandsOpt(Names, Constraints, Exprs))
Chris Lattnerbf5fff52009-12-20 23:00:41 +00001794 return StmtError();
1795 }
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001796
Chris Lattnerbf5fff52009-12-20 23:00:41 +00001797 unsigned NumOutputs = Names.size();
1798
1799 // Parse Inputs, if present.
Chris Lattner15768502009-12-20 23:08:04 +00001800 if (AteExtraColon ||
1801 Tok.is(tok::colon) || Tok.is(tok::coloncolon)) {
1802 // In C++ mode, parse "::" like ": :".
1803 if (AteExtraColon)
1804 AteExtraColon = false;
1805 else {
1806 AteExtraColon = Tok.is(tok::coloncolon);
1807 ConsumeToken();
1808 }
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001809
Chris Lattner15768502009-12-20 23:08:04 +00001810 if (!AteExtraColon &&
1811 ParseAsmOperandsOpt(Names, Constraints, Exprs))
Chris Lattnerbf5fff52009-12-20 23:00:41 +00001812 return StmtError();
1813 }
1814
1815 assert(Names.size() == Constraints.size() &&
1816 Constraints.size() == Exprs.size() &&
1817 "Input operand size mismatch!");
1818
1819 unsigned NumInputs = Names.size() - NumOutputs;
1820
1821 // Parse the clobbers, if present.
Chris Lattner15768502009-12-20 23:08:04 +00001822 if (AteExtraColon || Tok.is(tok::colon)) {
1823 if (!AteExtraColon)
1824 ConsumeToken();
Chris Lattnerbf5fff52009-12-20 23:00:41 +00001825
Chandler Carruth3c31aa32010-07-22 07:11:21 +00001826 // Parse the asm-string list for clobbers if present.
1827 if (Tok.isNot(tok::r_paren)) {
1828 while (1) {
John McCalldadc5752010-08-24 06:29:42 +00001829 ExprResult Clobber(ParseAsmStringLiteral());
Chris Lattnerbf5fff52009-12-20 23:00:41 +00001830
Chandler Carruth3c31aa32010-07-22 07:11:21 +00001831 if (Clobber.isInvalid())
1832 break;
Chris Lattnerbf5fff52009-12-20 23:00:41 +00001833
Chandler Carruth3c31aa32010-07-22 07:11:21 +00001834 Clobbers.push_back(Clobber.release());
Chris Lattnerbf5fff52009-12-20 23:00:41 +00001835
Chandler Carruth3c31aa32010-07-22 07:11:21 +00001836 if (Tok.isNot(tok::comma)) break;
1837 ConsumeToken();
1838 }
Chris Lattnerbf5fff52009-12-20 23:00:41 +00001839 }
1840 }
1841
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00001842 T.consumeClose();
Chris Lattnerbf5fff52009-12-20 23:00:41 +00001843 return Actions.ActOnAsmStmt(AsmLoc, false, isVolatile,
Jay Foad7d0479f2009-05-21 09:52:38 +00001844 NumOutputs, NumInputs, Names.data(),
Sebastian Redlc2edafb2009-01-18 18:03:53 +00001845 move_arg(Constraints), move_arg(Exprs),
John McCallb268a282010-08-23 23:25:46 +00001846 AsmString.take(), move_arg(Clobbers),
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00001847 T.getCloseLocation());
Chris Lattner0116c472006-08-15 06:03:28 +00001848}
1849
1850/// ParseAsmOperands - Parse the asm-operands production as used by
Chris Lattnerbf5fff52009-12-20 23:00:41 +00001851/// asm-statement, assuming the leading ':' token was eaten.
Chris Lattner0116c472006-08-15 06:03:28 +00001852///
1853/// [GNU] asm-operands:
1854/// asm-operand
1855/// asm-operands ',' asm-operand
1856///
1857/// [GNU] asm-operand:
1858/// asm-string-literal '(' expression ')'
1859/// '[' identifier ']' asm-string-literal '(' expression ')'
1860///
Daniel Dunbar70e7ead2009-10-18 20:26:27 +00001861//
1862// FIXME: Avoid unnecessary std::string trashing.
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001863bool Parser::ParseAsmOperandsOpt(SmallVectorImpl<IdentifierInfo *> &Names,
Richard Trieu2bd04012011-09-09 02:00:50 +00001864 SmallVectorImpl<Expr *> &Constraints,
1865 SmallVectorImpl<Expr *> &Exprs) {
Chris Lattner0116c472006-08-15 06:03:28 +00001866 // 'asm-operands' isn't present?
Chris Lattnerfeb00b62007-10-09 17:41:39 +00001867 if (!isTokenStringLiteral() && Tok.isNot(tok::l_square))
Anders Carlsson2e64d1a2008-02-09 19:57:29 +00001868 return false;
Mike Stump11289f42009-09-09 15:08:12 +00001869
1870 while (1) {
Chris Lattner0116c472006-08-15 06:03:28 +00001871 // Read the [id] if present.
Chris Lattnerfeb00b62007-10-09 17:41:39 +00001872 if (Tok.is(tok::l_square)) {
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00001873 BalancedDelimiterTracker T(*this, tok::l_square);
1874 T.consumeOpen();
Mike Stump11289f42009-09-09 15:08:12 +00001875
Chris Lattnerfeb00b62007-10-09 17:41:39 +00001876 if (Tok.isNot(tok::identifier)) {
Chris Lattner0116c472006-08-15 06:03:28 +00001877 Diag(Tok, diag::err_expected_ident);
1878 SkipUntil(tok::r_paren);
Anders Carlsson2e64d1a2008-02-09 19:57:29 +00001879 return true;
Chris Lattner0116c472006-08-15 06:03:28 +00001880 }
Mike Stump11289f42009-09-09 15:08:12 +00001881
Anders Carlsson94ea8aa2007-11-22 01:36:19 +00001882 IdentifierInfo *II = Tok.getIdentifierInfo();
Chris Lattner645ff3f2007-10-29 04:06:22 +00001883 ConsumeToken();
Anders Carlsson94ea8aa2007-11-22 01:36:19 +00001884
Anders Carlsson9a020f92010-01-30 22:25:16 +00001885 Names.push_back(II);
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00001886 T.consumeClose();
Anders Carlsson94ea8aa2007-11-22 01:36:19 +00001887 } else
Anders Carlsson9a020f92010-01-30 22:25:16 +00001888 Names.push_back(0);
Sebastian Redl17f2c7d2008-12-09 13:15:23 +00001889
John McCalldadc5752010-08-24 06:29:42 +00001890 ExprResult Constraint(ParseAsmStringLiteral());
Sebastian Redl17f2c7d2008-12-09 13:15:23 +00001891 if (Constraint.isInvalid()) {
Anders Carlsson94ea8aa2007-11-22 01:36:19 +00001892 SkipUntil(tok::r_paren);
Anders Carlsson2e64d1a2008-02-09 19:57:29 +00001893 return true;
Anders Carlsson94ea8aa2007-11-22 01:36:19 +00001894 }
Sebastian Redld9f7b1c2008-12-10 00:02:53 +00001895 Constraints.push_back(Constraint.release());
Chris Lattner0116c472006-08-15 06:03:28 +00001896
Chris Lattnerfeb00b62007-10-09 17:41:39 +00001897 if (Tok.isNot(tok::l_paren)) {
Chris Lattner6d29c102008-11-18 07:48:38 +00001898 Diag(Tok, diag::err_expected_lparen_after) << "asm operand";
Chris Lattner0116c472006-08-15 06:03:28 +00001899 SkipUntil(tok::r_paren);
Anders Carlsson2e64d1a2008-02-09 19:57:29 +00001900 return true;
Chris Lattner0116c472006-08-15 06:03:28 +00001901 }
Sebastian Redld9f7b1c2008-12-10 00:02:53 +00001902
Chris Lattner0116c472006-08-15 06:03:28 +00001903 // Read the parenthesized expression.
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00001904 BalancedDelimiterTracker T(*this, tok::l_paren);
1905 T.consumeOpen();
John McCalldadc5752010-08-24 06:29:42 +00001906 ExprResult Res(ParseExpression());
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00001907 T.consumeClose();
Sebastian Redl17f2c7d2008-12-09 13:15:23 +00001908 if (Res.isInvalid()) {
Chris Lattner0116c472006-08-15 06:03:28 +00001909 SkipUntil(tok::r_paren);
Anders Carlsson2e64d1a2008-02-09 19:57:29 +00001910 return true;
Chris Lattner0116c472006-08-15 06:03:28 +00001911 }
Sebastian Redld9f7b1c2008-12-10 00:02:53 +00001912 Exprs.push_back(Res.release());
Chris Lattner0116c472006-08-15 06:03:28 +00001913 // Eat the comma and continue parsing if it exists.
Anders Carlsson2e64d1a2008-02-09 19:57:29 +00001914 if (Tok.isNot(tok::comma)) return false;
Chris Lattner0116c472006-08-15 06:03:28 +00001915 ConsumeToken();
1916 }
Anders Carlsson2e64d1a2008-02-09 19:57:29 +00001917
1918 return true;
Chris Lattner0116c472006-08-15 06:03:28 +00001919}
Fariborz Jahanian8e632942007-11-08 19:01:26 +00001920
Douglas Gregora0ff0c32011-03-16 17:05:57 +00001921Decl *Parser::ParseFunctionStatementBody(Decl *Decl, ParseScope &BodyScope) {
Chris Lattner12f2ea52009-03-05 00:49:17 +00001922 assert(Tok.is(tok::l_brace));
1923 SourceLocation LBraceLoc = Tok.getLocation();
Sebastian Redla7b98a72009-04-26 20:35:05 +00001924
Douglas Gregora0ff0c32011-03-16 17:05:57 +00001925 if (PP.isCodeCompletionEnabled()) {
1926 if (trySkippingFunctionBodyForCodeCompletion()) {
1927 BodyScope.Exit();
Argyrios Kyrtzidisbd9dfb22011-01-04 00:27:27 +00001928 return Actions.ActOnFinishFunctionBody(Decl, 0);
Douglas Gregora0ff0c32011-03-16 17:05:57 +00001929 }
1930 }
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001931
John McCallfaf5fb42010-08-26 23:41:50 +00001932 PrettyDeclStackTraceEntry CrashInfo(Actions, Decl, LBraceLoc,
1933 "parsing function body");
Mike Stump11289f42009-09-09 15:08:12 +00001934
Fariborz Jahanian8e632942007-11-08 19:01:26 +00001935 // Do not enter a scope for the brace, as the arguments are in the same scope
1936 // (the function body) as the body itself. Instead, just read the statement
1937 // list and put it into a CompoundStmt for safe keeping.
John McCalldadc5752010-08-24 06:29:42 +00001938 StmtResult FnBody(ParseCompoundStatementBody());
Sebastian Redl042ad952008-12-11 19:30:53 +00001939
Fariborz Jahanian8e632942007-11-08 19:01:26 +00001940 // If the function body could not be parsed, make a bogus compoundstmt.
Sebastian Redl17f2c7d2008-12-09 13:15:23 +00001941 if (FnBody.isInvalid())
Mike Stump11289f42009-09-09 15:08:12 +00001942 FnBody = Actions.ActOnCompoundStmt(LBraceLoc, LBraceLoc,
Chris Lattner12f2ea52009-03-05 00:49:17 +00001943 MultiStmtArg(Actions), false);
Sebastian Redl042ad952008-12-11 19:30:53 +00001944
Douglas Gregora0ff0c32011-03-16 17:05:57 +00001945 BodyScope.Exit();
John McCallb268a282010-08-23 23:25:46 +00001946 return Actions.ActOnFinishFunctionBody(Decl, FnBody.take());
Seo Sanghyeon34f92ac2007-12-01 08:06:07 +00001947}
Sebastian Redlb219c902008-12-21 16:41:36 +00001948
Sebastian Redla7b98a72009-04-26 20:35:05 +00001949/// ParseFunctionTryBlock - Parse a C++ function-try-block.
1950///
1951/// function-try-block:
1952/// 'try' ctor-initializer[opt] compound-statement handler-seq
1953///
Douglas Gregora0ff0c32011-03-16 17:05:57 +00001954Decl *Parser::ParseFunctionTryBlock(Decl *Decl, ParseScope &BodyScope) {
Sebastian Redla7b98a72009-04-26 20:35:05 +00001955 assert(Tok.is(tok::kw_try) && "Expected 'try'");
1956 SourceLocation TryLoc = ConsumeToken();
1957
John McCallfaf5fb42010-08-26 23:41:50 +00001958 PrettyDeclStackTraceEntry CrashInfo(Actions, Decl, TryLoc,
1959 "parsing function try block");
Sebastian Redla7b98a72009-04-26 20:35:05 +00001960
1961 // Constructor initializer list?
1962 if (Tok.is(tok::colon))
1963 ParseConstructorInitializer(Decl);
Douglas Gregor5ca153f2011-09-07 20:36:12 +00001964 else
1965 Actions.ActOnDefaultCtorInitializers(Decl);
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001966
Douglas Gregora0ff0c32011-03-16 17:05:57 +00001967 if (PP.isCodeCompletionEnabled()) {
1968 if (trySkippingFunctionBodyForCodeCompletion()) {
1969 BodyScope.Exit();
Argyrios Kyrtzidisbd9dfb22011-01-04 00:27:27 +00001970 return Actions.ActOnFinishFunctionBody(Decl, 0);
Douglas Gregora0ff0c32011-03-16 17:05:57 +00001971 }
1972 }
Argyrios Kyrtzidisd5756a62011-01-03 22:33:06 +00001973
Sebastian Redld98ecd62009-04-26 21:08:36 +00001974 SourceLocation LBraceLoc = Tok.getLocation();
John McCalldadc5752010-08-24 06:29:42 +00001975 StmtResult FnBody(ParseCXXTryBlockCommon(TryLoc));
Sebastian Redla7b98a72009-04-26 20:35:05 +00001976 // If we failed to parse the try-catch, we just give the function an empty
1977 // compound statement as the body.
1978 if (FnBody.isInvalid())
Sebastian Redld98ecd62009-04-26 21:08:36 +00001979 FnBody = Actions.ActOnCompoundStmt(LBraceLoc, LBraceLoc,
Sebastian Redla7b98a72009-04-26 20:35:05 +00001980 MultiStmtArg(Actions), false);
1981
Douglas Gregora0ff0c32011-03-16 17:05:57 +00001982 BodyScope.Exit();
John McCallb268a282010-08-23 23:25:46 +00001983 return Actions.ActOnFinishFunctionBody(Decl, FnBody.take());
Sebastian Redla7b98a72009-04-26 20:35:05 +00001984}
1985
Argyrios Kyrtzidisbd9dfb22011-01-04 00:27:27 +00001986bool Parser::trySkippingFunctionBodyForCodeCompletion() {
Argyrios Kyrtzidisd5756a62011-01-03 22:33:06 +00001987 assert(Tok.is(tok::l_brace));
Argyrios Kyrtzidisbd9dfb22011-01-04 00:27:27 +00001988 assert(PP.isCodeCompletionEnabled() &&
1989 "Should only be called when in code-completion mode");
Argyrios Kyrtzidisd5756a62011-01-03 22:33:06 +00001990
1991 // We're in code-completion mode. Skip parsing for all function bodies unless
1992 // the body contains the code-completion point.
1993 TentativeParsingAction PA(*this);
1994 ConsumeBrace();
1995 if (SkipUntil(tok::r_brace, /*StopAtSemi=*/false, /*DontConsume=*/false,
1996 /*StopAtCodeCompletion=*/true)) {
1997 PA.Commit();
1998 return true;
1999 }
2000
2001 PA.Revert();
2002 return false;
2003}
2004
Sebastian Redlb219c902008-12-21 16:41:36 +00002005/// ParseCXXTryBlock - Parse a C++ try-block.
2006///
2007/// try-block:
2008/// 'try' compound-statement handler-seq
2009///
John McCall53fa7142010-12-24 02:08:15 +00002010StmtResult Parser::ParseCXXTryBlock(ParsedAttributes &attrs) {
Alexis Hunt96d5c762009-11-21 08:43:09 +00002011 // FIXME: Add attributes?
Ted Kremenekc162e8e2010-02-11 02:19:13 +00002012
Sebastian Redlb219c902008-12-21 16:41:36 +00002013 assert(Tok.is(tok::kw_try) && "Expected 'try'");
2014
2015 SourceLocation TryLoc = ConsumeToken();
Sebastian Redla7b98a72009-04-26 20:35:05 +00002016 return ParseCXXTryBlockCommon(TryLoc);
2017}
2018
2019/// ParseCXXTryBlockCommon - Parse the common part of try-block and
2020/// function-try-block.
2021///
2022/// try-block:
2023/// 'try' compound-statement handler-seq
2024///
2025/// function-try-block:
2026/// 'try' ctor-initializer[opt] compound-statement handler-seq
2027///
2028/// handler-seq:
2029/// handler handler-seq[opt]
2030///
John Wiegley1c0675e2011-04-28 01:08:34 +00002031/// [Borland] try-block:
2032/// 'try' compound-statement seh-except-block
2033/// 'try' compound-statment seh-finally-block
2034///
John McCalldadc5752010-08-24 06:29:42 +00002035StmtResult Parser::ParseCXXTryBlockCommon(SourceLocation TryLoc) {
Sebastian Redlb219c902008-12-21 16:41:36 +00002036 if (Tok.isNot(tok::l_brace))
2037 return StmtError(Diag(Tok, diag::err_expected_lbrace));
Alexis Hunt96d5c762009-11-21 08:43:09 +00002038 // FIXME: Possible draft standard bug: attribute-specifier should be allowed?
John McCall084e83d2011-03-24 11:26:52 +00002039 ParsedAttributesWithRange attrs(AttrFactory);
Douglas Gregor53e191ed2011-07-06 22:04:06 +00002040 StmtResult TryBlock(ParseCompoundStatement(attrs, /*isStmtExpr=*/false,
2041 Scope::DeclScope|Scope::TryScope));
Sebastian Redlb219c902008-12-21 16:41:36 +00002042 if (TryBlock.isInvalid())
2043 return move(TryBlock);
2044
John Wiegley1c0675e2011-04-28 01:08:34 +00002045 // Borland allows SEH-handlers with 'try'
Douglas Gregor60060d62011-10-21 03:57:52 +00002046
2047 if((Tok.is(tok::identifier) &&
2048 Tok.getIdentifierInfo() == getSEHExceptKeyword()) ||
2049 Tok.is(tok::kw___finally)) {
John Wiegley1c0675e2011-04-28 01:08:34 +00002050 // TODO: Factor into common return ParseSEHHandlerCommon(...)
2051 StmtResult Handler;
Douglas Gregor60060d62011-10-21 03:57:52 +00002052 if(Tok.getIdentifierInfo() == getSEHExceptKeyword()) {
John Wiegley1c0675e2011-04-28 01:08:34 +00002053 SourceLocation Loc = ConsumeToken();
2054 Handler = ParseSEHExceptBlock(Loc);
2055 }
2056 else {
2057 SourceLocation Loc = ConsumeToken();
2058 Handler = ParseSEHFinallyBlock(Loc);
2059 }
2060 if(Handler.isInvalid())
2061 return move(Handler);
John McCall53fa7142010-12-24 02:08:15 +00002062
John Wiegley1c0675e2011-04-28 01:08:34 +00002063 return Actions.ActOnSEHTryBlock(true /* IsCXXTry */,
2064 TryLoc,
2065 TryBlock.take(),
2066 Handler.take());
Sebastian Redlb219c902008-12-21 16:41:36 +00002067 }
John Wiegley1c0675e2011-04-28 01:08:34 +00002068 else {
2069 StmtVector Handlers(Actions);
2070 MaybeParseCXX0XAttributes(attrs);
2071 ProhibitAttributes(attrs);
Sebastian Redlb219c902008-12-21 16:41:36 +00002072
John Wiegley1c0675e2011-04-28 01:08:34 +00002073 if (Tok.isNot(tok::kw_catch))
2074 return StmtError(Diag(Tok, diag::err_expected_catch));
2075 while (Tok.is(tok::kw_catch)) {
2076 StmtResult Handler(ParseCXXCatchBlock());
2077 if (!Handler.isInvalid())
2078 Handlers.push_back(Handler.release());
2079 }
2080 // Don't bother creating the full statement if we don't have any usable
2081 // handlers.
2082 if (Handlers.empty())
2083 return StmtError();
2084
2085 return Actions.ActOnCXXTryBlock(TryLoc, TryBlock.take(), move_arg(Handlers));
2086 }
Sebastian Redlb219c902008-12-21 16:41:36 +00002087}
2088
2089/// ParseCXXCatchBlock - Parse a C++ catch block, called handler in the standard
2090///
2091/// handler:
2092/// 'catch' '(' exception-declaration ')' compound-statement
2093///
2094/// exception-declaration:
2095/// type-specifier-seq declarator
2096/// type-specifier-seq abstract-declarator
2097/// type-specifier-seq
2098/// '...'
2099///
John McCalldadc5752010-08-24 06:29:42 +00002100StmtResult Parser::ParseCXXCatchBlock() {
Sebastian Redlb219c902008-12-21 16:41:36 +00002101 assert(Tok.is(tok::kw_catch) && "Expected 'catch'");
2102
2103 SourceLocation CatchLoc = ConsumeToken();
2104
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00002105 BalancedDelimiterTracker T(*this, tok::l_paren);
2106 if (T.expectAndConsume(diag::err_expected_lparen))
Sebastian Redlb219c902008-12-21 16:41:36 +00002107 return StmtError();
2108
2109 // C++ 3.3.2p3:
2110 // The name in a catch exception-declaration is local to the handler and
2111 // shall not be redeclared in the outermost block of the handler.
2112 ParseScope CatchScope(this, Scope::DeclScope | Scope::ControlScope);
2113
2114 // exception-declaration is equivalent to '...' or a parameter-declaration
2115 // without default arguments.
John McCall48871652010-08-21 09:40:31 +00002116 Decl *ExceptionDecl = 0;
Sebastian Redlb219c902008-12-21 16:41:36 +00002117 if (Tok.isNot(tok::ellipsis)) {
John McCall084e83d2011-03-24 11:26:52 +00002118 DeclSpec DS(AttrFactory);
Sebastian Redl54c04d42008-12-22 19:15:10 +00002119 if (ParseCXXTypeSpecifierSeq(DS))
2120 return StmtError();
Sebastian Redlb219c902008-12-21 16:41:36 +00002121 Declarator ExDecl(DS, Declarator::CXXCatchContext);
2122 ParseDeclarator(ExDecl);
Douglas Gregor0be31a22010-07-02 17:43:08 +00002123 ExceptionDecl = Actions.ActOnExceptionDeclarator(getCurScope(), ExDecl);
Sebastian Redlb219c902008-12-21 16:41:36 +00002124 } else
2125 ConsumeToken();
2126
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00002127 T.consumeClose();
2128 if (T.getCloseLocation().isInvalid())
Sebastian Redlb219c902008-12-21 16:41:36 +00002129 return StmtError();
2130
2131 if (Tok.isNot(tok::l_brace))
2132 return StmtError(Diag(Tok, diag::err_expected_lbrace));
2133
Alexis Hunt96d5c762009-11-21 08:43:09 +00002134 // FIXME: Possible draft standard bug: attribute-specifier should be allowed?
John McCall084e83d2011-03-24 11:26:52 +00002135 ParsedAttributes attrs(AttrFactory);
John McCall53fa7142010-12-24 02:08:15 +00002136 StmtResult Block(ParseCompoundStatement(attrs));
Sebastian Redlb219c902008-12-21 16:41:36 +00002137 if (Block.isInvalid())
2138 return move(Block);
2139
John McCallb268a282010-08-23 23:25:46 +00002140 return Actions.ActOnCXXCatchBlock(CatchLoc, ExceptionDecl, Block.take());
Sebastian Redlb219c902008-12-21 16:41:36 +00002141}
Francois Pichet4a7de3e2011-05-06 20:48:22 +00002142
2143void Parser::ParseMicrosoftIfExistsStatement(StmtVector &Stmts) {
Douglas Gregor43edb322011-10-24 22:31:10 +00002144 IfExistsCondition Result;
Francois Picheta5b3fcb2011-05-07 17:30:27 +00002145 if (ParseMicrosoftIfExistsCondition(Result))
Francois Pichet4a7de3e2011-05-06 20:48:22 +00002146 return;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002147
Douglas Gregor43edb322011-10-24 22:31:10 +00002148 // Handle dependent statements by parsing the braces as a compound statement.
2149 // This is not the same behavior as Visual C++, which don't treat this as a
2150 // compound statement, but for Clang's type checking we can't have anything
2151 // inside these braces escaping to the surrounding code.
2152 if (Result.Behavior == IEB_Dependent) {
2153 if (!Tok.is(tok::l_brace)) {
2154 Diag(Tok, diag::err_expected_lbrace);
2155 return;
2156 }
2157
2158 ParsedAttributes Attrs(AttrFactory);
2159 StmtResult Compound = ParseCompoundStatement(Attrs);
Douglas Gregordeb4a2be2011-10-25 01:33:02 +00002160 if (Compound.isInvalid())
2161 return;
2162
2163 StmtResult DepResult = Actions.ActOnMSDependentExistsStmt(Result.KeywordLoc,
2164 Result.IsIfExists,
2165 Result.SS,
2166 Result.Name,
2167 Compound.get());
2168 if (DepResult.isUsable())
2169 Stmts.push_back(DepResult.get());
Douglas Gregor43edb322011-10-24 22:31:10 +00002170 return;
2171 }
2172
2173 BalancedDelimiterTracker Braces(*this, tok::l_brace);
2174 if (Braces.consumeOpen()) {
Francois Pichet4a7de3e2011-05-06 20:48:22 +00002175 Diag(Tok, diag::err_expected_lbrace);
2176 return;
2177 }
Francois Pichet4a7de3e2011-05-06 20:48:22 +00002178
Douglas Gregor43edb322011-10-24 22:31:10 +00002179 switch (Result.Behavior) {
2180 case IEB_Parse:
2181 // Parse the statements below.
2182 break;
2183
2184 case IEB_Dependent:
2185 llvm_unreachable("Dependent case handled above");
2186 break;
2187
2188 case IEB_Skip:
2189 Braces.skipToEnd();
Francois Pichet4a7de3e2011-05-06 20:48:22 +00002190 return;
2191 }
2192
2193 // Condition is true, parse the statements.
2194 while (Tok.isNot(tok::r_brace)) {
2195 StmtResult R = ParseStatementOrDeclaration(Stmts, false);
2196 if (R.isUsable())
2197 Stmts.push_back(R.release());
2198 }
Douglas Gregor43edb322011-10-24 22:31:10 +00002199 Braces.consumeClose();
Francois Pichet4a7de3e2011-05-06 20:48:22 +00002200}