blob: 8f537eaa5e79aa386a3324daaecaaa123711c3af [file] [log] [blame]
Reid Spencer5f016e22007-07-11 17:01:13 +00001//===--- ParseStmt.cpp - Statement and Block Parser -----------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner0bc735f2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Reid Spencer5f016e22007-07-11 17:01:13 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the Statement and Block portions of the Parser
11// interface.
12//
13//===----------------------------------------------------------------------===//
14
15#include "clang/Parse/Parser.h"
Chris Lattnerd167ca02009-12-10 00:21:05 +000016#include "RAIIObjectsForParser.h"
John McCallaeeacf72013-05-03 00:10:13 +000017#include "clang/AST/ASTContext.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000018#include "clang/Basic/Diagnostic.h"
19#include "clang/Basic/PrettyStackTrace.h"
20#include "clang/Basic/SourceManager.h"
John McCallaeeacf72013-05-03 00:10:13 +000021#include "clang/Basic/TargetInfo.h"
John McCall19510852010-08-20 18:27:03 +000022#include "clang/Sema/DeclSpec.h"
John McCallf312b1e2010-08-26 23:41:50 +000023#include "clang/Sema/PrettyDeclStackTrace.h"
John McCall19510852010-08-20 18:27:03 +000024#include "clang/Sema/Scope.h"
Richard Smith05766812012-08-18 00:55:03 +000025#include "clang/Sema/TypoCorrection.h"
John McCallaeeacf72013-05-03 00:10:13 +000026#include "llvm/MC/MCAsmInfo.h"
27#include "llvm/MC/MCContext.h"
28#include "llvm/MC/MCObjectFileInfo.h"
29#include "llvm/MC/MCParser/MCAsmParser.h"
30#include "llvm/MC/MCRegisterInfo.h"
31#include "llvm/MC/MCStreamer.h"
32#include "llvm/MC/MCSubtargetInfo.h"
33#include "llvm/MC/MCTargetAsmParser.h"
34#include "llvm/Support/SourceMgr.h"
35#include "llvm/Support/TargetRegistry.h"
36#include "llvm/Support/TargetSelect.h"
Chad Rosier8cd64b42012-06-11 20:47:18 +000037#include "llvm/ADT/SmallString.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000038using namespace clang;
39
40//===----------------------------------------------------------------------===//
41// C99 6.8: Statements and Blocks.
42//===----------------------------------------------------------------------===//
43
Richard Smith961d0572013-10-28 22:04:30 +000044/// \brief Parse a standalone statement (for instance, as the body of an 'if',
45/// 'while', or 'for').
46StmtResult Parser::ParseStatement(SourceLocation *TrailingElseLoc) {
47 StmtResult Res;
48
49 // We may get back a null statement if we found a #pragma. Keep going until
50 // we get an actual statement.
51 do {
52 StmtVector Stmts;
53 Res = ParseStatementOrDeclaration(Stmts, true, TrailingElseLoc);
54 } while (!Res.isInvalid() && !Res.get());
55
56 return Res;
57}
58
Reid Spencer5f016e22007-07-11 17:01:13 +000059/// ParseStatementOrDeclaration - Read 'statement' or 'declaration'.
60/// StatementOrDeclaration:
61/// statement
62/// declaration
63///
64/// statement:
65/// labeled-statement
66/// compound-statement
67/// expression-statement
68/// selection-statement
69/// iteration-statement
70/// jump-statement
Argyrios Kyrtzidisdcdd55f2008-09-07 18:58:01 +000071/// [C++] declaration-statement
Sebastian Redla0fd8652008-12-21 16:41:36 +000072/// [C++] try-block
John Wiegley28bbe4b2011-04-28 01:08:34 +000073/// [MS] seh-try-block
Fariborz Jahanianb384d322007-10-04 20:19:06 +000074/// [OBC] objc-throw-statement
75/// [OBC] objc-try-catch-statement
Fariborz Jahanianc385c902008-01-29 18:21:32 +000076/// [OBC] objc-synchronized-statement
Reid Spencer5f016e22007-07-11 17:01:13 +000077/// [GNU] asm-statement
78/// [OMP] openmp-construct [TODO]
79///
80/// labeled-statement:
81/// identifier ':' statement
82/// 'case' constant-expression ':' statement
83/// 'default' ':' statement
84///
85/// selection-statement:
86/// if-statement
87/// switch-statement
88///
89/// iteration-statement:
90/// while-statement
91/// do-statement
92/// for-statement
93///
94/// expression-statement:
95/// expression[opt] ';'
96///
97/// jump-statement:
98/// 'goto' identifier ';'
99/// 'continue' ';'
100/// 'break' ';'
101/// 'return' expression[opt] ';'
102/// [GNU] 'goto' '*' expression ';'
103///
Fariborz Jahanianb384d322007-10-04 20:19:06 +0000104/// [OBC] objc-throw-statement:
105/// [OBC] '@' 'throw' expression ';'
Mike Stump1eb44332009-09-09 15:08:12 +0000106/// [OBC] '@' 'throw' ';'
107///
John McCall60d7b3a2010-08-24 06:29:42 +0000108StmtResult
Nico Weber5cb94a72011-12-22 23:26:17 +0000109Parser::ParseStatementOrDeclaration(StmtVector &Stmts, bool OnlyStatement,
110 SourceLocation *TrailingElseLoc) {
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000111
Argyrios Kyrtzidis36d36802010-06-17 10:52:18 +0000112 ParenBraceBracketBalancer BalancerRAIIObj(*this);
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000113
Richard Smith534986f2012-04-14 00:33:13 +0000114 ParsedAttributesWithRange Attrs(AttrFactory);
Richard Smith4e24f0f2013-01-02 12:01:23 +0000115 MaybeParseCXX11Attributes(Attrs, 0, /*MightBeObjCMessageSend*/ true);
Richard Smith534986f2012-04-14 00:33:13 +0000116
117 StmtResult Res = ParseStatementOrDeclarationAfterAttributes(Stmts,
118 OnlyStatement, TrailingElseLoc, Attrs);
119
120 assert((Attrs.empty() || Res.isInvalid() || Res.isUsable()) &&
121 "attributes on empty statement");
122
123 if (Attrs.empty() || Res.isInvalid())
124 return Res;
125
126 return Actions.ProcessStmtAttributes(Res.get(), Attrs.getList(), Attrs.Range);
127}
128
Kaelyn Uhrain6243f622013-09-27 19:40:12 +0000129namespace {
130class StatementFilterCCC : public CorrectionCandidateCallback {
131public:
132 StatementFilterCCC(Token nextTok) : NextToken(nextTok) {
133 WantTypeSpecifiers = nextTok.is(tok::l_paren) || nextTok.is(tok::less) ||
134 nextTok.is(tok::identifier) || nextTok.is(tok::star) ||
135 nextTok.is(tok::amp) || nextTok.is(tok::l_square);
136 WantExpressionKeywords = nextTok.is(tok::l_paren) ||
137 nextTok.is(tok::identifier) ||
138 nextTok.is(tok::arrow) || nextTok.is(tok::period);
139 WantRemainingKeywords = nextTok.is(tok::l_paren) || nextTok.is(tok::semi) ||
140 nextTok.is(tok::identifier) ||
141 nextTok.is(tok::l_brace);
142 WantCXXNamedCasts = false;
143 }
144
145 virtual bool ValidateCandidate(const TypoCorrection &candidate) {
146 if (FieldDecl *FD = candidate.getCorrectionDeclAs<FieldDecl>())
Kaelyn Uhraina89ee572013-10-01 22:00:28 +0000147 return !candidate.getCorrectionSpecifier() || isa<ObjCIvarDecl>(FD);
Kaelyn Uhrain0f90ee02013-09-27 19:40:16 +0000148 if (NextToken.is(tok::equal))
149 return candidate.getCorrectionDeclAs<VarDecl>();
Kaelyn Uhrain2ceb67a2013-09-27 23:54:23 +0000150 if (NextToken.is(tok::period) &&
151 candidate.getCorrectionDeclAs<NamespaceDecl>())
152 return false;
Kaelyn Uhrain6243f622013-09-27 19:40:12 +0000153 return CorrectionCandidateCallback::ValidateCandidate(candidate);
154 }
155
156private:
157 Token NextToken;
158};
159}
160
Richard Smith534986f2012-04-14 00:33:13 +0000161StmtResult
162Parser::ParseStatementOrDeclarationAfterAttributes(StmtVector &Stmts,
163 bool OnlyStatement, SourceLocation *TrailingElseLoc,
164 ParsedAttributesWithRange &Attrs) {
165 const char *SemiError = 0;
166 StmtResult Res;
Sean Huntbbd37c62009-11-21 08:43:09 +0000167
Reid Spencer5f016e22007-07-11 17:01:13 +0000168 // Cases in this switch statement should fall through if the parser expects
169 // the token to end in a semicolon (in which case SemiError should be set),
170 // or they directly 'return;' if not.
Douglas Gregor312eadb2011-04-24 05:37:28 +0000171Retry:
Fariborz Jahanian397fcc12007-09-19 19:14:32 +0000172 tok::TokenKind Kind = Tok.getKind();
173 SourceLocation AtLoc;
174 switch (Kind) {
Fariborz Jahanian397fcc12007-09-19 19:14:32 +0000175 case tok::at: // May be a @try or @throw statement
176 {
Richard Smith534986f2012-04-14 00:33:13 +0000177 ProhibitAttributes(Attrs); // TODO: is it correct?
Fariborz Jahanian397fcc12007-09-19 19:14:32 +0000178 AtLoc = ConsumeToken(); // consume @
Sebastian Redl43bc2a02008-12-11 20:12:42 +0000179 return ParseObjCAtStatement(AtLoc);
Fariborz Jahanian397fcc12007-09-19 19:14:32 +0000180 }
Fariborz Jahanian397fcc12007-09-19 19:14:32 +0000181
Douglas Gregor791215b2009-09-21 20:51:25 +0000182 case tok::code_completion:
John McCallf312b1e2010-08-26 23:41:50 +0000183 Actions.CodeCompleteOrdinaryName(getCurScope(), Sema::PCC_Statement);
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +0000184 cutOffParsing();
185 return StmtError();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000186
Douglas Gregor312eadb2011-04-24 05:37:28 +0000187 case tok::identifier: {
188 Token Next = NextToken();
189 if (Next.is(tok::colon)) { // C99 6.8.1: labeled-statement
Argyrios Kyrtzidisb9f930d2008-07-12 21:04:42 +0000190 // identifier ':' statement
Richard Smith534986f2012-04-14 00:33:13 +0000191 return ParseLabeledStatement(Attrs);
Argyrios Kyrtzidisb9f930d2008-07-12 21:04:42 +0000192 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000193
Richard Smith05766812012-08-18 00:55:03 +0000194 // Look up the identifier, and typo-correct it to a keyword if it's not
195 // found.
Douglas Gregor3b887352011-04-27 04:48:22 +0000196 if (Next.isNot(tok::coloncolon)) {
Richard Smith05766812012-08-18 00:55:03 +0000197 // Try to limit which sets of keywords should be included in typo
198 // correction based on what the next token is.
Kaelyn Uhrain6243f622013-09-27 19:40:12 +0000199 StatementFilterCCC Validator(Next);
200 if (TryAnnotateName(/*IsAddressOfOperand*/false, &Validator)
Richard Smith05766812012-08-18 00:55:03 +0000201 == ANK_Error) {
Douglas Gregor312eadb2011-04-24 05:37:28 +0000202 // Handle errors here by skipping up to the next semicolon or '}', and
203 // eat the semicolon if that's what stopped us.
204 SkipUntil(tok::r_brace, /*StopAtSemi=*/true, /*DontConsume=*/true);
205 if (Tok.is(tok::semi))
206 ConsumeToken();
207 return StmtError();
Richard Smith05766812012-08-18 00:55:03 +0000208 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000209
Richard Smith05766812012-08-18 00:55:03 +0000210 // If the identifier was typo-corrected, try again.
211 if (Tok.isNot(tok::identifier))
Douglas Gregor312eadb2011-04-24 05:37:28 +0000212 goto Retry;
Douglas Gregor312eadb2011-04-24 05:37:28 +0000213 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000214
Douglas Gregor312eadb2011-04-24 05:37:28 +0000215 // Fall through
216 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000217
Chris Lattnerf919bfe2009-03-24 17:04:48 +0000218 default: {
David Blaikie4e4d0842012-03-11 07:00:24 +0000219 if ((getLangOpts().CPlusPlus || !OnlyStatement) && isDeclarationStatement()) {
Chris Lattner97144fc2009-04-02 04:16:50 +0000220 SourceLocation DeclStart = Tok.getLocation(), DeclEnd;
Ted Kremenek8113ecf2010-11-10 05:59:39 +0000221 DeclGroupPtrTy Decl = ParseDeclaration(Stmts, Declarator::BlockContext,
Richard Smith534986f2012-04-14 00:33:13 +0000222 DeclEnd, Attrs);
Chris Lattner97144fc2009-04-02 04:16:50 +0000223 return Actions.ActOnDeclStmt(Decl, DeclStart, DeclEnd);
Chris Lattnerf919bfe2009-03-24 17:04:48 +0000224 }
225
226 if (Tok.is(tok::r_brace)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000227 Diag(Tok, diag::err_expected_statement);
Sebastian Redl61364dd2008-12-11 19:30:53 +0000228 return StmtError();
Reid Spencer5f016e22007-07-11 17:01:13 +0000229 }
Mike Stump1eb44332009-09-09 15:08:12 +0000230
Richard Smith534986f2012-04-14 00:33:13 +0000231 return ParseExprStatement();
Chris Lattnerf919bfe2009-03-24 17:04:48 +0000232 }
Sebastian Redl61364dd2008-12-11 19:30:53 +0000233
Reid Spencer5f016e22007-07-11 17:01:13 +0000234 case tok::kw_case: // C99 6.8.1: labeled-statement
Richard Smith534986f2012-04-14 00:33:13 +0000235 return ParseCaseStatement();
Reid Spencer5f016e22007-07-11 17:01:13 +0000236 case tok::kw_default: // C99 6.8.1: labeled-statement
Richard Smith534986f2012-04-14 00:33:13 +0000237 return ParseDefaultStatement();
Sebastian Redl61364dd2008-12-11 19:30:53 +0000238
Reid Spencer5f016e22007-07-11 17:01:13 +0000239 case tok::l_brace: // C99 6.8.2: compound-statement
Richard Smith534986f2012-04-14 00:33:13 +0000240 return ParseCompoundStatement();
Argyrios Kyrtzidis44aa1f32010-11-20 02:04:01 +0000241 case tok::semi: { // C99 6.8.3p3: expression[opt] ';'
Argyrios Kyrtzidise2ca8282011-09-01 21:53:45 +0000242 bool HasLeadingEmptyMacro = Tok.hasLeadingEmptyMacro();
243 return Actions.ActOnNullStmt(ConsumeToken(), HasLeadingEmptyMacro);
Argyrios Kyrtzidis44aa1f32010-11-20 02:04:01 +0000244 }
Sebastian Redl61364dd2008-12-11 19:30:53 +0000245
Reid Spencer5f016e22007-07-11 17:01:13 +0000246 case tok::kw_if: // C99 6.8.4.1: if-statement
Richard Smith534986f2012-04-14 00:33:13 +0000247 return ParseIfStatement(TrailingElseLoc);
Reid Spencer5f016e22007-07-11 17:01:13 +0000248 case tok::kw_switch: // C99 6.8.4.2: switch-statement
Richard Smith534986f2012-04-14 00:33:13 +0000249 return ParseSwitchStatement(TrailingElseLoc);
Sebastian Redl61364dd2008-12-11 19:30:53 +0000250
Reid Spencer5f016e22007-07-11 17:01:13 +0000251 case tok::kw_while: // C99 6.8.5.1: while-statement
Richard Smith534986f2012-04-14 00:33:13 +0000252 return ParseWhileStatement(TrailingElseLoc);
Reid Spencer5f016e22007-07-11 17:01:13 +0000253 case tok::kw_do: // C99 6.8.5.2: do-statement
Richard Smith534986f2012-04-14 00:33:13 +0000254 Res = ParseDoStatement();
Chris Lattner6869d8e2009-06-14 00:07:48 +0000255 SemiError = "do/while";
Reid Spencer5f016e22007-07-11 17:01:13 +0000256 break;
257 case tok::kw_for: // C99 6.8.5.3: for-statement
Richard Smith534986f2012-04-14 00:33:13 +0000258 return ParseForStatement(TrailingElseLoc);
Reid Spencer5f016e22007-07-11 17:01:13 +0000259
260 case tok::kw_goto: // C99 6.8.6.1: goto-statement
Richard Smith534986f2012-04-14 00:33:13 +0000261 Res = ParseGotoStatement();
Chris Lattner6869d8e2009-06-14 00:07:48 +0000262 SemiError = "goto";
Reid Spencer5f016e22007-07-11 17:01:13 +0000263 break;
264 case tok::kw_continue: // C99 6.8.6.2: continue-statement
Richard Smith534986f2012-04-14 00:33:13 +0000265 Res = ParseContinueStatement();
Chris Lattner6869d8e2009-06-14 00:07:48 +0000266 SemiError = "continue";
Reid Spencer5f016e22007-07-11 17:01:13 +0000267 break;
268 case tok::kw_break: // C99 6.8.6.3: break-statement
Richard Smith534986f2012-04-14 00:33:13 +0000269 Res = ParseBreakStatement();
Chris Lattner6869d8e2009-06-14 00:07:48 +0000270 SemiError = "break";
Reid Spencer5f016e22007-07-11 17:01:13 +0000271 break;
272 case tok::kw_return: // C99 6.8.6.4: return-statement
Richard Smith534986f2012-04-14 00:33:13 +0000273 Res = ParseReturnStatement();
Chris Lattner6869d8e2009-06-14 00:07:48 +0000274 SemiError = "return";
Reid Spencer5f016e22007-07-11 17:01:13 +0000275 break;
Sebastian Redl61364dd2008-12-11 19:30:53 +0000276
Sebastian Redla0fd8652008-12-21 16:41:36 +0000277 case tok::kw_asm: {
Richard Smith534986f2012-04-14 00:33:13 +0000278 ProhibitAttributes(Attrs);
Steve Naroffd62701b2008-02-07 03:50:06 +0000279 bool msAsm = false;
280 Res = ParseAsmStatement(msAsm);
Argyrios Kyrtzidisbf8cafa2010-11-02 02:33:08 +0000281 Res = Actions.ActOnFinishFullStmt(Res.get());
Benjamin Kramer3fe198b2012-08-23 21:35:17 +0000282 if (msAsm) return Res;
Chris Lattner6869d8e2009-06-14 00:07:48 +0000283 SemiError = "asm";
Reid Spencer5f016e22007-07-11 17:01:13 +0000284 break;
285 }
Sebastian Redl61364dd2008-12-11 19:30:53 +0000286
Sebastian Redla0fd8652008-12-21 16:41:36 +0000287 case tok::kw_try: // C++ 15: try-block
Richard Smith534986f2012-04-14 00:33:13 +0000288 return ParseCXXTryBlock();
John Wiegley28bbe4b2011-04-28 01:08:34 +0000289
290 case tok::kw___try:
Richard Smith534986f2012-04-14 00:33:13 +0000291 ProhibitAttributes(Attrs); // TODO: is it correct?
292 return ParseSEHTryBlock();
Eli Friedmanaa5ab262012-02-23 23:47:16 +0000293
294 case tok::annot_pragma_vis:
Richard Smith534986f2012-04-14 00:33:13 +0000295 ProhibitAttributes(Attrs);
Eli Friedmanaa5ab262012-02-23 23:47:16 +0000296 HandlePragmaVisibility();
297 return StmtEmpty();
298
299 case tok::annot_pragma_pack:
Richard Smith534986f2012-04-14 00:33:13 +0000300 ProhibitAttributes(Attrs);
Eli Friedmanaa5ab262012-02-23 23:47:16 +0000301 HandlePragmaPack();
302 return StmtEmpty();
Eli Friedman9595c7e2012-10-04 02:36:51 +0000303
Eli Friedman8b2bfdd2012-10-09 22:46:54 +0000304 case tok::annot_pragma_msstruct:
305 ProhibitAttributes(Attrs);
306 HandlePragmaMSStruct();
307 return StmtEmpty();
308
Eli Friedman3ef38ee2012-10-08 23:52:38 +0000309 case tok::annot_pragma_align:
310 ProhibitAttributes(Attrs);
311 HandlePragmaAlign();
312 return StmtEmpty();
313
Eli Friedman8b2bfdd2012-10-09 22:46:54 +0000314 case tok::annot_pragma_weak:
315 ProhibitAttributes(Attrs);
316 HandlePragmaWeak();
317 return StmtEmpty();
318
319 case tok::annot_pragma_weakalias:
320 ProhibitAttributes(Attrs);
321 HandlePragmaWeakAlias();
322 return StmtEmpty();
323
324 case tok::annot_pragma_redefine_extname:
325 ProhibitAttributes(Attrs);
326 HandlePragmaRedefineExtname();
327 return StmtEmpty();
328
Eli Friedman9595c7e2012-10-04 02:36:51 +0000329 case tok::annot_pragma_fp_contract:
Richard Smithaed01162013-11-15 21:10:54 +0000330 ProhibitAttributes(Attrs);
Lang Hames860022c2012-10-21 01:10:01 +0000331 Diag(Tok, diag::err_pragma_fp_contract_scope);
332 ConsumeToken();
333 return StmtError();
334
Eli Friedman9595c7e2012-10-04 02:36:51 +0000335 case tok::annot_pragma_opencl_extension:
336 ProhibitAttributes(Attrs);
337 HandlePragmaOpenCLExtension();
338 return StmtEmpty();
Alexey Bataevc6400582013-03-22 06:34:35 +0000339
Tareq A. Siraj85192c72013-04-16 18:41:26 +0000340 case tok::annot_pragma_captured:
Richard Smith175d4172013-09-16 21:17:44 +0000341 ProhibitAttributes(Attrs);
Tareq A. Siraj85192c72013-04-16 18:41:26 +0000342 return HandlePragmaCaptured();
343
Alexey Bataevc6400582013-03-22 06:34:35 +0000344 case tok::annot_pragma_openmp:
Richard Smith175d4172013-09-16 21:17:44 +0000345 ProhibitAttributes(Attrs);
Alexey Bataev4fa7eab2013-07-19 03:13:43 +0000346 return ParseOpenMPDeclarativeOrExecutableDirective();
347
Sebastian Redla0fd8652008-12-21 16:41:36 +0000348 }
349
Reid Spencer5f016e22007-07-11 17:01:13 +0000350 // If we reached this code, the statement must end in a semicolon.
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000351 if (Tok.is(tok::semi)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000352 ConsumeToken();
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000353 } else if (!Res.isInvalid()) {
Chris Lattner7b3684a2009-06-14 00:23:56 +0000354 // If the result was valid, then we do want to diagnose this. Use
355 // ExpectAndConsume to emit the diagnostic, even though we know it won't
356 // succeed.
357 ExpectAndConsume(tok::semi, diag::err_expected_semi_after_stmt, SemiError);
Chris Lattner19504402008-11-13 18:52:53 +0000358 // Skip until we see a } or ;, but don't eat it.
359 SkipUntil(tok::r_brace, true, true);
Reid Spencer5f016e22007-07-11 17:01:13 +0000360 }
Mike Stump1eb44332009-09-09 15:08:12 +0000361
Benjamin Kramer3fe198b2012-08-23 21:35:17 +0000362 return Res;
Reid Spencer5f016e22007-07-11 17:01:13 +0000363}
364
Douglas Gregor312eadb2011-04-24 05:37:28 +0000365/// \brief Parse an expression statement.
Richard Smith534986f2012-04-14 00:33:13 +0000366StmtResult Parser::ParseExprStatement() {
Douglas Gregor312eadb2011-04-24 05:37:28 +0000367 // If a case keyword is missing, this is where it should be inserted.
368 Token OldToken = Tok;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000369
Douglas Gregor312eadb2011-04-24 05:37:28 +0000370 // expression[opt] ';'
Douglas Gregor5ecdd782011-04-27 06:18:01 +0000371 ExprResult Expr(ParseExpression());
Douglas Gregor312eadb2011-04-24 05:37:28 +0000372 if (Expr.isInvalid()) {
373 // If the expression is invalid, skip ahead to the next semicolon or '}'.
374 // Not doing this opens us up to the possibility of infinite loops if
375 // ParseExpression does not consume any tokens.
376 SkipUntil(tok::r_brace, /*StopAtSemi=*/true, /*DontConsume=*/true);
377 if (Tok.is(tok::semi))
378 ConsumeToken();
John McCallb760f112013-03-22 02:10:40 +0000379 return Actions.ActOnExprStmtError();
Douglas Gregor312eadb2011-04-24 05:37:28 +0000380 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000381
Douglas Gregor312eadb2011-04-24 05:37:28 +0000382 if (Tok.is(tok::colon) && getCurScope()->isSwitchScope() &&
383 Actions.CheckCaseExpression(Expr.get())) {
384 // If a constant expression is followed by a colon inside a switch block,
385 // suggest a missing case keyword.
386 Diag(OldToken, diag::err_expected_case_before_expression)
387 << FixItHint::CreateInsertion(OldToken.getLocation(), "case ");
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000388
Douglas Gregor312eadb2011-04-24 05:37:28 +0000389 // Recover parsing as a case statement.
Richard Smith534986f2012-04-14 00:33:13 +0000390 return ParseCaseStatement(/*MissingCase=*/true, Expr);
Douglas Gregor312eadb2011-04-24 05:37:28 +0000391 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000392
Douglas Gregor312eadb2011-04-24 05:37:28 +0000393 // Otherwise, eat the semicolon.
394 ExpectAndConsumeSemi(diag::err_expected_semi_after_expr);
Richard Smith41956372013-01-14 22:39:08 +0000395 return Actions.ActOnExprStmt(Expr);
John Wiegley28bbe4b2011-04-28 01:08:34 +0000396}
Douglas Gregor312eadb2011-04-24 05:37:28 +0000397
Richard Smith534986f2012-04-14 00:33:13 +0000398StmtResult Parser::ParseSEHTryBlock() {
John Wiegley28bbe4b2011-04-28 01:08:34 +0000399 assert(Tok.is(tok::kw___try) && "Expected '__try'");
400 SourceLocation Loc = ConsumeToken();
401 return ParseSEHTryBlockCommon(Loc);
402}
403
404/// ParseSEHTryBlockCommon
405///
406/// seh-try-block:
407/// '__try' compound-statement seh-handler
408///
409/// seh-handler:
410/// seh-except-block
411/// seh-finally-block
412///
413StmtResult Parser::ParseSEHTryBlockCommon(SourceLocation TryLoc) {
414 if(Tok.isNot(tok::l_brace))
415 return StmtError(Diag(Tok,diag::err_expected_lbrace));
416
Joao Matos568ba872012-09-04 17:49:35 +0000417 StmtResult TryBlock(ParseCompoundStatement());
John Wiegley28bbe4b2011-04-28 01:08:34 +0000418 if(TryBlock.isInvalid())
Benjamin Kramer3fe198b2012-08-23 21:35:17 +0000419 return TryBlock;
John Wiegley28bbe4b2011-04-28 01:08:34 +0000420
421 StmtResult Handler;
Richard Smith534986f2012-04-14 00:33:13 +0000422 if (Tok.is(tok::identifier) &&
Douglas Gregorb57791e2011-10-21 03:57:52 +0000423 Tok.getIdentifierInfo() == getSEHExceptKeyword()) {
John Wiegley28bbe4b2011-04-28 01:08:34 +0000424 SourceLocation Loc = ConsumeToken();
425 Handler = ParseSEHExceptBlock(Loc);
426 } else if (Tok.is(tok::kw___finally)) {
427 SourceLocation Loc = ConsumeToken();
428 Handler = ParseSEHFinallyBlock(Loc);
429 } else {
430 return StmtError(Diag(Tok,diag::err_seh_expected_handler));
431 }
432
433 if(Handler.isInvalid())
Benjamin Kramer3fe198b2012-08-23 21:35:17 +0000434 return Handler;
John Wiegley28bbe4b2011-04-28 01:08:34 +0000435
436 return Actions.ActOnSEHTryBlock(false /* IsCXXTry */,
437 TryLoc,
438 TryBlock.take(),
439 Handler.take());
440}
441
442/// ParseSEHExceptBlock - Handle __except
443///
444/// seh-except-block:
445/// '__except' '(' seh-filter-expression ')' compound-statement
446///
447StmtResult Parser::ParseSEHExceptBlock(SourceLocation ExceptLoc) {
448 PoisonIdentifierRAIIObject raii(Ident__exception_code, false),
449 raii2(Ident___exception_code, false),
450 raii3(Ident_GetExceptionCode, false);
451
452 if(ExpectAndConsume(tok::l_paren,diag::err_expected_lparen))
453 return StmtError();
454
455 ParseScope ExpectScope(this, Scope::DeclScope | Scope::ControlScope);
456
David Blaikie4e4d0842012-03-11 07:00:24 +0000457 if (getLangOpts().Borland) {
Francois Pichetd7f02df2011-04-28 03:14:31 +0000458 Ident__exception_info->setIsPoisoned(false);
459 Ident___exception_info->setIsPoisoned(false);
460 Ident_GetExceptionInfo->setIsPoisoned(false);
461 }
John Wiegley28bbe4b2011-04-28 01:08:34 +0000462 ExprResult FilterExpr(ParseExpression());
Francois Pichetd7f02df2011-04-28 03:14:31 +0000463
David Blaikie4e4d0842012-03-11 07:00:24 +0000464 if (getLangOpts().Borland) {
Francois Pichetd7f02df2011-04-28 03:14:31 +0000465 Ident__exception_info->setIsPoisoned(true);
466 Ident___exception_info->setIsPoisoned(true);
467 Ident_GetExceptionInfo->setIsPoisoned(true);
468 }
John Wiegley28bbe4b2011-04-28 01:08:34 +0000469
470 if(FilterExpr.isInvalid())
471 return StmtError();
472
473 if(ExpectAndConsume(tok::r_paren,diag::err_expected_rparen))
474 return StmtError();
475
Richard Smith534986f2012-04-14 00:33:13 +0000476 StmtResult Block(ParseCompoundStatement());
John Wiegley28bbe4b2011-04-28 01:08:34 +0000477
478 if(Block.isInvalid())
Benjamin Kramer3fe198b2012-08-23 21:35:17 +0000479 return Block;
John Wiegley28bbe4b2011-04-28 01:08:34 +0000480
481 return Actions.ActOnSEHExceptBlock(ExceptLoc, FilterExpr.take(), Block.take());
482}
483
484/// ParseSEHFinallyBlock - Handle __finally
485///
486/// seh-finally-block:
487/// '__finally' compound-statement
488///
489StmtResult Parser::ParseSEHFinallyBlock(SourceLocation FinallyBlock) {
490 PoisonIdentifierRAIIObject raii(Ident__abnormal_termination, false),
491 raii2(Ident___abnormal_termination, false),
492 raii3(Ident_AbnormalTermination, false);
493
Richard Smith534986f2012-04-14 00:33:13 +0000494 StmtResult Block(ParseCompoundStatement());
John Wiegley28bbe4b2011-04-28 01:08:34 +0000495 if(Block.isInvalid())
Benjamin Kramer3fe198b2012-08-23 21:35:17 +0000496 return Block;
John Wiegley28bbe4b2011-04-28 01:08:34 +0000497
498 return Actions.ActOnSEHFinallyBlock(FinallyBlock,Block.take());
Douglas Gregor312eadb2011-04-24 05:37:28 +0000499}
500
Argyrios Kyrtzidisf7da7262008-07-09 22:53:07 +0000501/// ParseLabeledStatement - We have an identifier and a ':' after it.
Reid Spencer5f016e22007-07-11 17:01:13 +0000502///
503/// labeled-statement:
504/// identifier ':' statement
505/// [GNU] identifier ':' attributes[opt] statement
Argyrios Kyrtzidisf7da7262008-07-09 22:53:07 +0000506///
Richard Smith534986f2012-04-14 00:33:13 +0000507StmtResult Parser::ParseLabeledStatement(ParsedAttributesWithRange &attrs) {
Argyrios Kyrtzidisf7da7262008-07-09 22:53:07 +0000508 assert(Tok.is(tok::identifier) && Tok.getIdentifierInfo() &&
509 "Not an identifier!");
510
511 Token IdentTok = Tok; // Save the whole token.
512 ConsumeToken(); // eat the identifier.
513
514 assert(Tok.is(tok::colon) && "Not a label!");
Sebastian Redl61364dd2008-12-11 19:30:53 +0000515
Argyrios Kyrtzidisf7da7262008-07-09 22:53:07 +0000516 // identifier ':' statement
517 SourceLocation ColonLoc = ConsumeToken();
518
Richard Smith534986f2012-04-14 00:33:13 +0000519 // Read label attributes, if present. attrs will contain both C++11 and GNU
520 // attributes (if present) after this point.
John McCall7f040a92010-12-24 02:08:15 +0000521 MaybeParseGNUAttributes(attrs);
Argyrios Kyrtzidisf7da7262008-07-09 22:53:07 +0000522
John McCall60d7b3a2010-08-24 06:29:42 +0000523 StmtResult SubStmt(ParseStatement());
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000524
Argyrios Kyrtzidisf7da7262008-07-09 22:53:07 +0000525 // Broken substmt shouldn't prevent the label from being added to the AST.
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000526 if (SubStmt.isInvalid())
Argyrios Kyrtzidisf7da7262008-07-09 22:53:07 +0000527 SubStmt = Actions.ActOnNullStmt(ColonLoc);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000528
Chris Lattner337e5502011-02-18 01:27:55 +0000529 LabelDecl *LD = Actions.LookupOrCreateLabel(IdentTok.getIdentifierInfo(),
530 IdentTok.getLocation());
Richard Smith534986f2012-04-14 00:33:13 +0000531 if (AttributeList *Attrs = attrs.getList()) {
Chris Lattner337e5502011-02-18 01:27:55 +0000532 Actions.ProcessDeclAttributeList(Actions.CurScope, LD, Attrs);
Richard Smith534986f2012-04-14 00:33:13 +0000533 attrs.clear();
534 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000535
Chris Lattner337e5502011-02-18 01:27:55 +0000536 return Actions.ActOnLabelStmt(IdentTok.getLocation(), LD, ColonLoc,
537 SubStmt.get());
Argyrios Kyrtzidisf7da7262008-07-09 22:53:07 +0000538}
Reid Spencer5f016e22007-07-11 17:01:13 +0000539
540/// ParseCaseStatement
541/// labeled-statement:
542/// 'case' constant-expression ':' statement
543/// [GNU] 'case' constant-expression '...' constant-expression ':' statement
544///
Richard Smith534986f2012-04-14 00:33:13 +0000545StmtResult Parser::ParseCaseStatement(bool MissingCase, ExprResult Expr) {
Richard Smith46f11102011-04-21 22:48:40 +0000546 assert((MissingCase || Tok.is(tok::kw_case)) && "Not a case stmt!");
Mike Stump1eb44332009-09-09 15:08:12 +0000547
Chris Lattner24e1e702009-03-04 04:23:07 +0000548 // It is very very common for code to contain many case statements recursively
549 // nested, as in (but usually without indentation):
550 // case 1:
551 // case 2:
552 // case 3:
553 // case 4:
554 // case 5: etc.
555 //
556 // Parsing this naively works, but is both inefficient and can cause us to run
557 // out of stack space in our recursive descent parser. As a special case,
Chris Lattner26140c62009-03-04 18:24:58 +0000558 // flatten this recursion into an iterative loop. This is complex and gross,
Chris Lattner24e1e702009-03-04 04:23:07 +0000559 // but all the grossness is constrained to ParseCaseStatement (and some
560 // wierdness in the actions), so this is just local grossness :).
Mike Stump1eb44332009-09-09 15:08:12 +0000561
Chris Lattner24e1e702009-03-04 04:23:07 +0000562 // TopLevelCase - This is the highest level we have parsed. 'case 1' in the
563 // example above.
John McCall60d7b3a2010-08-24 06:29:42 +0000564 StmtResult TopLevelCase(true);
Mike Stump1eb44332009-09-09 15:08:12 +0000565
Chris Lattner24e1e702009-03-04 04:23:07 +0000566 // DeepestParsedCaseStmt - This is the deepest statement we have parsed, which
567 // gets updated each time a new case is parsed, and whose body is unset so
568 // far. When parsing 'case 4', this is the 'case 3' node.
Richard Trieub2fc6902011-09-09 02:16:15 +0000569 Stmt *DeepestParsedCaseStmt = 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000570
Chris Lattner24e1e702009-03-04 04:23:07 +0000571 // While we have case statements, eat and stack them.
David Majnemer0e1e69c2011-06-13 05:50:12 +0000572 SourceLocation ColonLoc;
Chris Lattner24e1e702009-03-04 04:23:07 +0000573 do {
Richard Trieubb9b80c2011-04-21 21:44:26 +0000574 SourceLocation CaseLoc = MissingCase ? Expr.get()->getExprLoc() :
575 ConsumeToken(); // eat the 'case'.
Mike Stump1eb44332009-09-09 15:08:12 +0000576
Douglas Gregor3e1005f2009-09-21 18:10:23 +0000577 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +0000578 Actions.CodeCompleteCase(getCurScope());
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +0000579 cutOffParsing();
580 return StmtError();
Douglas Gregor3e1005f2009-09-21 18:10:23 +0000581 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000582
Chris Lattner6fb09c82009-12-10 00:38:54 +0000583 /// We don't want to treat 'case x : y' as a potential typo for 'case x::y'.
584 /// Disable this form of error recovery while we're parsing the case
585 /// expression.
586 ColonProtectionRAIIObject ColonProtection(*this);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000587
Richard Trieubb9b80c2011-04-21 21:44:26 +0000588 ExprResult LHS(MissingCase ? Expr : ParseConstantExpression());
589 MissingCase = false;
Chris Lattner24e1e702009-03-04 04:23:07 +0000590 if (LHS.isInvalid()) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000591 SkipUntil(tok::colon);
Sebastian Redl61364dd2008-12-11 19:30:53 +0000592 return StmtError();
Reid Spencer5f016e22007-07-11 17:01:13 +0000593 }
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000594
Chris Lattner24e1e702009-03-04 04:23:07 +0000595 // GNU case range extension.
596 SourceLocation DotDotDotLoc;
John McCall60d7b3a2010-08-24 06:29:42 +0000597 ExprResult RHS;
Chris Lattner24e1e702009-03-04 04:23:07 +0000598 if (Tok.is(tok::ellipsis)) {
599 Diag(Tok, diag::ext_gnu_case_range);
600 DotDotDotLoc = ConsumeToken();
Sebastian Redl61364dd2008-12-11 19:30:53 +0000601
Chris Lattner24e1e702009-03-04 04:23:07 +0000602 RHS = ParseConstantExpression();
603 if (RHS.isInvalid()) {
604 SkipUntil(tok::colon);
605 return StmtError();
606 }
607 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000608
Chris Lattner6fb09c82009-12-10 00:38:54 +0000609 ColonProtection.restore();
Sebastian Redl61364dd2008-12-11 19:30:53 +0000610
John McCallf6a3ab02011-01-22 09:28:32 +0000611 if (Tok.is(tok::colon)) {
612 ColonLoc = ConsumeToken();
613
614 // Treat "case blah;" as a typo for "case blah:".
615 } else if (Tok.is(tok::semi)) {
616 ColonLoc = ConsumeToken();
617 Diag(ColonLoc, diag::err_expected_colon_after) << "'case'"
618 << FixItHint::CreateReplacement(ColonLoc, ":");
619 } else {
Douglas Gregor662a4822010-12-23 22:56:40 +0000620 SourceLocation ExpectedLoc = PP.getLocForEndOfToken(PrevTokLocation);
621 Diag(ExpectedLoc, diag::err_expected_colon_after) << "'case'"
622 << FixItHint::CreateInsertion(ExpectedLoc, ":");
623 ColonLoc = ExpectedLoc;
Chris Lattner24e1e702009-03-04 04:23:07 +0000624 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000625
John McCall60d7b3a2010-08-24 06:29:42 +0000626 StmtResult Case =
John McCall9ae2f072010-08-23 23:25:46 +0000627 Actions.ActOnCaseStmt(CaseLoc, LHS.get(), DotDotDotLoc,
628 RHS.get(), ColonLoc);
Mike Stump1eb44332009-09-09 15:08:12 +0000629
Chris Lattner24e1e702009-03-04 04:23:07 +0000630 // If we had a sema error parsing this case, then just ignore it and
631 // continue parsing the sub-stmt.
632 if (Case.isInvalid()) {
633 if (TopLevelCase.isInvalid()) // No parsed case stmts.
634 return ParseStatement();
635 // Otherwise, just don't add it as a nested case.
636 } else {
637 // If this is the first case statement we parsed, it becomes TopLevelCase.
638 // Otherwise we link it into the current chain.
John McCallca0408f2010-08-23 06:44:23 +0000639 Stmt *NextDeepest = Case.get();
Chris Lattner24e1e702009-03-04 04:23:07 +0000640 if (TopLevelCase.isInvalid())
Benjamin Kramer3fe198b2012-08-23 21:35:17 +0000641 TopLevelCase = Case;
Chris Lattner24e1e702009-03-04 04:23:07 +0000642 else
John McCall9ae2f072010-08-23 23:25:46 +0000643 Actions.ActOnCaseStmtBody(DeepestParsedCaseStmt, Case.get());
Chris Lattner24e1e702009-03-04 04:23:07 +0000644 DeepestParsedCaseStmt = NextDeepest;
645 }
Mike Stump1eb44332009-09-09 15:08:12 +0000646
Chris Lattner24e1e702009-03-04 04:23:07 +0000647 // Handle all case statements.
648 } while (Tok.is(tok::kw_case));
Mike Stump1eb44332009-09-09 15:08:12 +0000649
Chris Lattner24e1e702009-03-04 04:23:07 +0000650 assert(!TopLevelCase.isInvalid() && "Should have parsed at least one case!");
Mike Stump1eb44332009-09-09 15:08:12 +0000651
Chris Lattner24e1e702009-03-04 04:23:07 +0000652 // If we found a non-case statement, start by parsing it.
John McCall60d7b3a2010-08-24 06:29:42 +0000653 StmtResult SubStmt;
Mike Stump1eb44332009-09-09 15:08:12 +0000654
Chris Lattner24e1e702009-03-04 04:23:07 +0000655 if (Tok.isNot(tok::r_brace)) {
656 SubStmt = ParseStatement();
657 } else {
658 // Nicely diagnose the common error "switch (X) { case 4: }", which is
659 // not valid.
David Majnemer63f04ab2011-06-14 15:24:38 +0000660 SourceLocation AfterColonLoc = PP.getLocForEndOfToken(ColonLoc);
Richard Smith85b29a42012-02-17 01:35:32 +0000661 Diag(AfterColonLoc, diag::err_label_end_of_compound_statement)
662 << FixItHint::CreateInsertion(AfterColonLoc, " ;");
Chris Lattner24e1e702009-03-04 04:23:07 +0000663 SubStmt = true;
Reid Spencer5f016e22007-07-11 17:01:13 +0000664 }
Mike Stump1eb44332009-09-09 15:08:12 +0000665
Chris Lattner24e1e702009-03-04 04:23:07 +0000666 // Broken sub-stmt shouldn't prevent forming the case statement properly.
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000667 if (SubStmt.isInvalid())
Chris Lattner24e1e702009-03-04 04:23:07 +0000668 SubStmt = Actions.ActOnNullStmt(SourceLocation());
Mike Stump1eb44332009-09-09 15:08:12 +0000669
Chris Lattner24e1e702009-03-04 04:23:07 +0000670 // Install the body into the most deeply-nested case.
John McCall9ae2f072010-08-23 23:25:46 +0000671 Actions.ActOnCaseStmtBody(DeepestParsedCaseStmt, SubStmt.get());
Sebastian Redl61364dd2008-12-11 19:30:53 +0000672
Chris Lattner24e1e702009-03-04 04:23:07 +0000673 // Return the top level parsed statement tree.
Benjamin Kramer3fe198b2012-08-23 21:35:17 +0000674 return TopLevelCase;
Reid Spencer5f016e22007-07-11 17:01:13 +0000675}
676
677/// ParseDefaultStatement
678/// labeled-statement:
679/// 'default' ':' statement
680/// Note that this does not parse the 'statement' at the end.
681///
Richard Smith534986f2012-04-14 00:33:13 +0000682StmtResult Parser::ParseDefaultStatement() {
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000683 assert(Tok.is(tok::kw_default) && "Not a default stmt!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000684 SourceLocation DefaultLoc = ConsumeToken(); // eat the 'default'.
685
Douglas Gregor662a4822010-12-23 22:56:40 +0000686 SourceLocation ColonLoc;
John McCallf6a3ab02011-01-22 09:28:32 +0000687 if (Tok.is(tok::colon)) {
688 ColonLoc = ConsumeToken();
689
690 // Treat "default;" as a typo for "default:".
691 } else if (Tok.is(tok::semi)) {
692 ColonLoc = ConsumeToken();
693 Diag(ColonLoc, diag::err_expected_colon_after) << "'default'"
694 << FixItHint::CreateReplacement(ColonLoc, ":");
695 } else {
Douglas Gregor662a4822010-12-23 22:56:40 +0000696 SourceLocation ExpectedLoc = PP.getLocForEndOfToken(PrevTokLocation);
697 Diag(ExpectedLoc, diag::err_expected_colon_after) << "'default'"
698 << FixItHint::CreateInsertion(ExpectedLoc, ":");
699 ColonLoc = ExpectedLoc;
Reid Spencer5f016e22007-07-11 17:01:13 +0000700 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000701
Richard Smith85b29a42012-02-17 01:35:32 +0000702 StmtResult SubStmt;
703
704 if (Tok.isNot(tok::r_brace)) {
705 SubStmt = ParseStatement();
706 } else {
707 // Diagnose the common error "switch (X) {... default: }", which is
708 // not valid.
David Majnemer63f04ab2011-06-14 15:24:38 +0000709 SourceLocation AfterColonLoc = PP.getLocForEndOfToken(ColonLoc);
Richard Smith85b29a42012-02-17 01:35:32 +0000710 Diag(AfterColonLoc, diag::err_label_end_of_compound_statement)
711 << FixItHint::CreateInsertion(AfterColonLoc, " ;");
712 SubStmt = true;
Reid Spencer5f016e22007-07-11 17:01:13 +0000713 }
714
Richard Smith85b29a42012-02-17 01:35:32 +0000715 // Broken sub-stmt shouldn't prevent forming the case statement properly.
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000716 if (SubStmt.isInvalid())
Richard Smith85b29a42012-02-17 01:35:32 +0000717 SubStmt = Actions.ActOnNullStmt(ColonLoc);
Sebastian Redl61364dd2008-12-11 19:30:53 +0000718
Sebastian Redl117054a2008-12-28 16:13:43 +0000719 return Actions.ActOnDefaultStmt(DefaultLoc, ColonLoc,
John McCall9ae2f072010-08-23 23:25:46 +0000720 SubStmt.get(), getCurScope());
Reid Spencer5f016e22007-07-11 17:01:13 +0000721}
722
Richard Smith534986f2012-04-14 00:33:13 +0000723StmtResult Parser::ParseCompoundStatement(bool isStmtExpr) {
724 return ParseCompoundStatement(isStmtExpr, Scope::DeclScope);
Douglas Gregorbca01b42011-07-06 22:04:06 +0000725}
Reid Spencer5f016e22007-07-11 17:01:13 +0000726
727/// ParseCompoundStatement - Parse a "{}" block.
728///
729/// compound-statement: [C99 6.8.2]
730/// { block-item-list[opt] }
731/// [GNU] { label-declarations block-item-list } [TODO]
732///
733/// block-item-list:
734/// block-item
735/// block-item-list block-item
736///
737/// block-item:
738/// declaration
Chris Lattner45a566c2007-08-27 01:01:57 +0000739/// [GNU] '__extension__' declaration
Reid Spencer5f016e22007-07-11 17:01:13 +0000740/// statement
741/// [OMP] openmp-directive [TODO]
742///
743/// [GNU] label-declarations:
744/// [GNU] label-declaration
745/// [GNU] label-declarations label-declaration
746///
747/// [GNU] label-declaration:
748/// [GNU] '__label__' identifier-list ';'
749///
750/// [OMP] openmp-directive: [TODO]
751/// [OMP] barrier-directive
752/// [OMP] flush-directive
753///
Richard Smith534986f2012-04-14 00:33:13 +0000754StmtResult Parser::ParseCompoundStatement(bool isStmtExpr,
Douglas Gregorbca01b42011-07-06 22:04:06 +0000755 unsigned ScopeFlags) {
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000756 assert(Tok.is(tok::l_brace) && "Not a compount stmt!");
Sebastian Redl61364dd2008-12-11 19:30:53 +0000757
Chris Lattner31e05722007-08-26 06:24:45 +0000758 // Enter a scope to hold everything within the compound stmt. Compound
759 // statements can always hold declarations.
Douglas Gregorbca01b42011-07-06 22:04:06 +0000760 ParseScope CompoundScope(this, ScopeFlags);
Reid Spencer5f016e22007-07-11 17:01:13 +0000761
762 // Parse the statements in the body.
Sebastian Redl61364dd2008-12-11 19:30:53 +0000763 return ParseCompoundStatementBody(isStmtExpr);
Reid Spencer5f016e22007-07-11 17:01:13 +0000764}
765
Lang Hamesa60d21d2012-11-03 22:29:05 +0000766/// Parse any pragmas at the start of the compound expression. We handle these
767/// separately since some pragmas (FP_CONTRACT) must appear before any C
768/// statement in the compound, but may be intermingled with other pragmas.
769void Parser::ParseCompoundStatementLeadingPragmas() {
770 bool checkForPragmas = true;
771 while (checkForPragmas) {
772 switch (Tok.getKind()) {
773 case tok::annot_pragma_vis:
774 HandlePragmaVisibility();
775 break;
776 case tok::annot_pragma_pack:
777 HandlePragmaPack();
778 break;
779 case tok::annot_pragma_msstruct:
780 HandlePragmaMSStruct();
781 break;
782 case tok::annot_pragma_align:
783 HandlePragmaAlign();
784 break;
785 case tok::annot_pragma_weak:
786 HandlePragmaWeak();
787 break;
788 case tok::annot_pragma_weakalias:
789 HandlePragmaWeakAlias();
790 break;
791 case tok::annot_pragma_redefine_extname:
792 HandlePragmaRedefineExtname();
793 break;
794 case tok::annot_pragma_opencl_extension:
795 HandlePragmaOpenCLExtension();
796 break;
797 case tok::annot_pragma_fp_contract:
798 HandlePragmaFPContract();
799 break;
800 default:
801 checkForPragmas = false;
802 break;
803 }
804 }
805
806}
807
Reid Spencer5f016e22007-07-11 17:01:13 +0000808/// ParseCompoundStatementBody - Parse a sequence of statements and invoke the
Steve Naroff1b273c42007-09-16 14:56:35 +0000809/// ActOnCompoundStmt action. This expects the '{' to be the current token, and
Reid Spencer5f016e22007-07-11 17:01:13 +0000810/// consume the '}' at the end of the block. It does not manipulate the scope
811/// stack.
John McCall60d7b3a2010-08-24 06:29:42 +0000812StmtResult Parser::ParseCompoundStatementBody(bool isStmtExpr) {
Mike Stump1eb44332009-09-09 15:08:12 +0000813 PrettyStackTraceLoc CrashInfo(PP.getSourceManager(),
Chris Lattnerae50fa02009-03-05 00:00:31 +0000814 Tok.getLocation(),
815 "in compound statement ('{}')");
Lang Hamesbe9af122012-10-02 04:45:10 +0000816
817 // Record the state of the FP_CONTRACT pragma, restore on leaving the
818 // compound statement.
819 Sema::FPContractStateRAII SaveFPContractState(Actions);
820
Douglas Gregor0fbda682010-09-15 14:51:05 +0000821 InMessageExpressionRAIIObject InMessage(*this, false);
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000822 BalancedDelimiterTracker T(*this, tok::l_brace);
823 if (T.consumeOpen())
824 return StmtError();
Reid Spencer5f016e22007-07-11 17:01:13 +0000825
Dmitri Gribenko625bb562012-02-14 22:14:32 +0000826 Sema::CompoundScopeRAII CompoundScope(Actions);
827
Lang Hamesa60d21d2012-11-03 22:29:05 +0000828 // Parse any pragmas at the beginning of the compound statement.
829 ParseCompoundStatementLeadingPragmas();
Argyrios Kyrtzidisb918d0f2011-01-17 18:58:44 +0000830
Lang Hamesa60d21d2012-11-03 22:29:05 +0000831 StmtVector Stmts;
Lang Hames860022c2012-10-21 01:10:01 +0000832
Chris Lattner4ae493c2011-02-18 02:08:43 +0000833 // "__label__ X, Y, Z;" is the GNU "Local Label" extension. These are
834 // only allowed at the start of a compound stmt regardless of the language.
835 while (Tok.is(tok::kw___label__)) {
836 SourceLocation LabelLoc = ConsumeToken();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000837
Chris Lattner5f9e2722011-07-23 10:55:15 +0000838 SmallVector<Decl *, 8> DeclsInGroup;
Chris Lattner4ae493c2011-02-18 02:08:43 +0000839 while (1) {
840 if (Tok.isNot(tok::identifier)) {
841 Diag(Tok, diag::err_expected_ident);
842 break;
843 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000844
Chris Lattner4ae493c2011-02-18 02:08:43 +0000845 IdentifierInfo *II = Tok.getIdentifierInfo();
846 SourceLocation IdLoc = ConsumeToken();
Abramo Bagnara67843042011-03-05 18:21:20 +0000847 DeclsInGroup.push_back(Actions.LookupOrCreateLabel(II, IdLoc, LabelLoc));
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000848
Chris Lattner4ae493c2011-02-18 02:08:43 +0000849 if (!Tok.is(tok::comma))
850 break;
851 ConsumeToken();
852 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000853
John McCall0b7e6782011-03-24 11:26:52 +0000854 DeclSpec DS(AttrFactory);
Rafael Espindola4549d7f2013-07-09 12:05:01 +0000855 DeclGroupPtrTy Res =
856 Actions.FinalizeDeclaratorGroup(getCurScope(), DS, DeclsInGroup);
Chris Lattner4ae493c2011-02-18 02:08:43 +0000857 StmtResult R = Actions.ActOnDeclStmt(Res, LabelLoc, Tok.getLocation());
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000858
Chris Lattner8bb21d32012-04-28 16:12:17 +0000859 ExpectAndConsumeSemi(diag::err_expected_semi_declaration);
Chris Lattner4ae493c2011-02-18 02:08:43 +0000860 if (R.isUsable())
861 Stmts.push_back(R.release());
862 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000863
Chris Lattner4ae493c2011-02-18 02:08:43 +0000864 while (Tok.isNot(tok::r_brace) && Tok.isNot(tok::eof)) {
Argyrios Kyrtzidisb918d0f2011-01-17 18:58:44 +0000865 if (Tok.is(tok::annot_pragma_unused)) {
866 HandlePragmaUnused();
867 continue;
868 }
869
David Blaikie4e4d0842012-03-11 07:00:24 +0000870 if (getLangOpts().MicrosoftExt && (Tok.is(tok::kw___if_exists) ||
Francois Pichet1e862692011-05-06 20:48:22 +0000871 Tok.is(tok::kw___if_not_exists))) {
872 ParseMicrosoftIfExistsStatement(Stmts);
873 continue;
874 }
875
John McCall60d7b3a2010-08-24 06:29:42 +0000876 StmtResult R;
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000877 if (Tok.isNot(tok::kw___extension__)) {
Fariborz Jahanianc5be7b02010-09-28 20:42:35 +0000878 R = ParseStatementOrDeclaration(Stmts, false);
Chris Lattner45a566c2007-08-27 01:01:57 +0000879 } else {
880 // __extension__ can start declarations and it can also be a unary
881 // operator for expressions. Consume multiple __extension__ markers here
882 // until we can determine which is which.
Eli Friedmanadf077f2009-01-27 08:43:38 +0000883 // FIXME: This loses extension expressions in the AST!
Chris Lattner45a566c2007-08-27 01:01:57 +0000884 SourceLocation ExtLoc = ConsumeToken();
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000885 while (Tok.is(tok::kw___extension__))
Chris Lattner45a566c2007-08-27 01:01:57 +0000886 ConsumeToken();
Chris Lattner39146d62008-10-20 06:51:33 +0000887
John McCall0b7e6782011-03-24 11:26:52 +0000888 ParsedAttributesWithRange attrs(AttrFactory);
Richard Smith4e24f0f2013-01-02 12:01:23 +0000889 MaybeParseCXX11Attributes(attrs, 0, /*MightBeObjCMessageSend*/ true);
Sean Huntbbd37c62009-11-21 08:43:09 +0000890
Chris Lattner45a566c2007-08-27 01:01:57 +0000891 // If this is the start of a declaration, parse it as such.
Argyrios Kyrtzidis5404a152008-10-05 00:06:24 +0000892 if (isDeclarationStatement()) {
Eli Friedmanbc6c8482009-05-16 23:40:44 +0000893 // __extension__ silences extension warnings in the subdeclaration.
Chris Lattner97144fc2009-04-02 04:16:50 +0000894 // FIXME: Save the __extension__ on the decl as a node somehow?
Eli Friedmanbc6c8482009-05-16 23:40:44 +0000895 ExtensionRAIIObject O(Diags);
896
Chris Lattner97144fc2009-04-02 04:16:50 +0000897 SourceLocation DeclStart = Tok.getLocation(), DeclEnd;
Fariborz Jahanianc5be7b02010-09-28 20:42:35 +0000898 DeclGroupPtrTy Res = ParseDeclaration(Stmts,
899 Declarator::BlockContext, DeclEnd,
John McCall7f040a92010-12-24 02:08:15 +0000900 attrs);
Chris Lattner97144fc2009-04-02 04:16:50 +0000901 R = Actions.ActOnDeclStmt(Res, DeclStart, DeclEnd);
Chris Lattner45a566c2007-08-27 01:01:57 +0000902 } else {
Eli Friedmanadf077f2009-01-27 08:43:38 +0000903 // Otherwise this was a unary __extension__ marker.
John McCall60d7b3a2010-08-24 06:29:42 +0000904 ExprResult Res(ParseExpressionWithLeadingExtension(ExtLoc));
Chris Lattner043a0b52008-03-13 06:32:11 +0000905
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000906 if (Res.isInvalid()) {
Chris Lattner45a566c2007-08-27 01:01:57 +0000907 SkipUntil(tok::semi);
908 continue;
909 }
Sebastian Redlf512e822009-01-18 18:03:53 +0000910
Sean Huntbbd37c62009-11-21 08:43:09 +0000911 // FIXME: Use attributes?
Chris Lattner39146d62008-10-20 06:51:33 +0000912 // Eat the semicolon at the end of stmt and convert the expr into a
913 // statement.
Douglas Gregor9ba23b42010-09-07 15:23:11 +0000914 ExpectAndConsumeSemi(diag::err_expected_semi_after_expr);
Richard Smith41956372013-01-14 22:39:08 +0000915 R = Actions.ActOnExprStmt(Res);
Chris Lattner45a566c2007-08-27 01:01:57 +0000916 }
917 }
Sebastian Redl61364dd2008-12-11 19:30:53 +0000918
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000919 if (R.isUsable())
Sebastian Redleffa8d12008-12-10 00:02:53 +0000920 Stmts.push_back(R.release());
Reid Spencer5f016e22007-07-11 17:01:13 +0000921 }
Sebastian Redl61364dd2008-12-11 19:30:53 +0000922
Argyrios Kyrtzidis5d5ed592012-03-24 02:26:51 +0000923 SourceLocation CloseLoc = Tok.getLocation();
924
Reid Spencer5f016e22007-07-11 17:01:13 +0000925 // We broke out of the while loop because we found a '}' or EOF.
Nico Weberd11f4352012-12-30 23:36:56 +0000926 if (!T.consumeClose())
Argyrios Kyrtzidis5d5ed592012-03-24 02:26:51 +0000927 // Recover by creating a compound statement with what we parsed so far,
928 // instead of dropping everything and returning StmtError();
Nico Weberd11f4352012-12-30 23:36:56 +0000929 CloseLoc = T.getCloseLocation();
Sebastian Redl61364dd2008-12-11 19:30:53 +0000930
Argyrios Kyrtzidis5d5ed592012-03-24 02:26:51 +0000931 return Actions.ActOnCompoundStmt(T.getOpenLocation(), CloseLoc,
Benjamin Kramer3fe198b2012-08-23 21:35:17 +0000932 Stmts, isStmtExpr);
Reid Spencer5f016e22007-07-11 17:01:13 +0000933}
934
Chris Lattner15ff1112008-12-12 06:31:07 +0000935/// ParseParenExprOrCondition:
936/// [C ] '(' expression ')'
Chris Lattnerff871fb2008-12-12 06:35:28 +0000937/// [C++] '(' condition ')' [not allowed if OnlyAllowCondition=true]
Chris Lattner15ff1112008-12-12 06:31:07 +0000938///
939/// This function parses and performs error recovery on the specified condition
940/// or expression (depending on whether we're in C++ or C mode). This function
941/// goes out of its way to recover well. It returns true if there was a parser
942/// error (the right paren couldn't be found), which indicates that the caller
943/// should try to recover harder. It returns false if the condition is
944/// successfully parsed. Note that a successful parse can still have semantic
945/// errors in the condition.
John McCall60d7b3a2010-08-24 06:29:42 +0000946bool Parser::ParseParenExprOrCondition(ExprResult &ExprResult,
John McCalld226f652010-08-21 09:40:31 +0000947 Decl *&DeclResult,
Douglas Gregor586596f2010-05-06 17:25:47 +0000948 SourceLocation Loc,
Argyrios Kyrtzidis44aa1f32010-11-20 02:04:01 +0000949 bool ConvertToBoolean) {
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000950 BalancedDelimiterTracker T(*this, tok::l_paren);
951 T.consumeOpen();
952
David Blaikie4e4d0842012-03-11 07:00:24 +0000953 if (getLangOpts().CPlusPlus)
Jeffrey Yasskindec09842011-01-18 02:00:16 +0000954 ParseCXXCondition(ExprResult, DeclResult, Loc, ConvertToBoolean);
Douglas Gregor99e9b4d2009-11-25 00:27:52 +0000955 else {
956 ExprResult = ParseExpression();
John McCalld226f652010-08-21 09:40:31 +0000957 DeclResult = 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000958
Douglas Gregor586596f2010-05-06 17:25:47 +0000959 // If required, convert to a boolean value.
960 if (!ExprResult.isInvalid() && ConvertToBoolean)
961 ExprResult
John McCall9ae2f072010-08-23 23:25:46 +0000962 = Actions.ActOnBooleanCondition(getCurScope(), Loc, ExprResult.get());
Douglas Gregor99e9b4d2009-11-25 00:27:52 +0000963 }
Mike Stump1eb44332009-09-09 15:08:12 +0000964
Chris Lattner15ff1112008-12-12 06:31:07 +0000965 // If the parser was confused by the condition and we don't have a ')', try to
966 // recover by skipping ahead to a semi and bailing out. If condexp is
967 // semantically invalid but we have well formed code, keep going.
John McCalld226f652010-08-21 09:40:31 +0000968 if (ExprResult.isInvalid() && !DeclResult && Tok.isNot(tok::r_paren)) {
Chris Lattner15ff1112008-12-12 06:31:07 +0000969 SkipUntil(tok::semi);
970 // Skipping may have stopped if it found the containing ')'. If so, we can
971 // continue parsing the if statement.
972 if (Tok.isNot(tok::r_paren))
973 return true;
974 }
Mike Stump1eb44332009-09-09 15:08:12 +0000975
Chris Lattner15ff1112008-12-12 06:31:07 +0000976 // Otherwise the condition is valid or the rparen is present.
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000977 T.consumeClose();
Chad Rosierb6604462012-07-10 21:35:27 +0000978
Chris Lattnerbddc7e52012-04-28 16:24:20 +0000979 // Check for extraneous ')'s to catch things like "if (foo())) {". We know
980 // that all callers are looking for a statement after the condition, so ")"
981 // isn't valid.
982 while (Tok.is(tok::r_paren)) {
983 Diag(Tok, diag::err_extraneous_rparen_in_condition)
984 << FixItHint::CreateRemoval(Tok.getLocation());
985 ConsumeParen();
986 }
Chad Rosierb6604462012-07-10 21:35:27 +0000987
Chris Lattner15ff1112008-12-12 06:31:07 +0000988 return false;
989}
990
991
Reid Spencer5f016e22007-07-11 17:01:13 +0000992/// ParseIfStatement
993/// if-statement: [C99 6.8.4.1]
994/// 'if' '(' expression ')' statement
995/// 'if' '(' expression ')' statement 'else' statement
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +0000996/// [C++] 'if' '(' condition ')' statement
997/// [C++] 'if' '(' condition ')' statement 'else' statement
Reid Spencer5f016e22007-07-11 17:01:13 +0000998///
Richard Smith534986f2012-04-14 00:33:13 +0000999StmtResult Parser::ParseIfStatement(SourceLocation *TrailingElseLoc) {
Chris Lattner4e1d99a2007-10-09 17:41:39 +00001000 assert(Tok.is(tok::kw_if) && "Not an if stmt!");
Reid Spencer5f016e22007-07-11 17:01:13 +00001001 SourceLocation IfLoc = ConsumeToken(); // eat the 'if'.
1002
Chris Lattner4e1d99a2007-10-09 17:41:39 +00001003 if (Tok.isNot(tok::l_paren)) {
Chris Lattner1ab3b962008-11-18 07:48:38 +00001004 Diag(Tok, diag::err_expected_lparen_after) << "if";
Reid Spencer5f016e22007-07-11 17:01:13 +00001005 SkipUntil(tok::semi);
Sebastian Redl61364dd2008-12-11 19:30:53 +00001006 return StmtError();
Reid Spencer5f016e22007-07-11 17:01:13 +00001007 }
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +00001008
David Blaikie4e4d0842012-03-11 07:00:24 +00001009 bool C99orCXX = getLangOpts().C99 || getLangOpts().CPlusPlus;
Argyrios Kyrtzidis488d37e2008-09-11 03:06:46 +00001010
Chris Lattner22153252007-08-26 23:08:06 +00001011 // C99 6.8.4p3 - In C99, the if statement is a block. This is not
1012 // the case for C90.
Argyrios Kyrtzidis488d37e2008-09-11 03:06:46 +00001013 //
1014 // C++ 6.4p3:
1015 // A name introduced by a declaration in a condition is in scope from its
1016 // point of declaration until the end of the substatements controlled by the
1017 // condition.
Argyrios Kyrtzidis14d08c02008-09-11 23:08:39 +00001018 // C++ 3.3.2p4:
1019 // Names declared in the for-init-statement, and in the condition of if,
1020 // while, for, and switch statements are local to the if, while, for, or
1021 // switch statement (including the controlled statement).
Argyrios Kyrtzidis488d37e2008-09-11 03:06:46 +00001022 //
Douglas Gregor8935b8b2008-12-10 06:34:36 +00001023 ParseScope IfScope(this, Scope::DeclScope | Scope::ControlScope, C99orCXX);
Chris Lattner22153252007-08-26 23:08:06 +00001024
Reid Spencer5f016e22007-07-11 17:01:13 +00001025 // Parse the condition.
John McCall60d7b3a2010-08-24 06:29:42 +00001026 ExprResult CondExp;
John McCalld226f652010-08-21 09:40:31 +00001027 Decl *CondVar = 0;
Argyrios Kyrtzidis44aa1f32010-11-20 02:04:01 +00001028 if (ParseParenExprOrCondition(CondExp, CondVar, IfLoc, true))
Chris Lattner15ff1112008-12-12 06:31:07 +00001029 return StmtError();
Chris Lattner18914bc2008-12-12 06:19:11 +00001030
David Blaikiedef07622012-05-16 04:20:04 +00001031 FullExprArg FullCondExp(Actions.MakeFullExpr(CondExp.get(), IfLoc));
Mike Stump1eb44332009-09-09 15:08:12 +00001032
Chris Lattner0ecea032007-08-22 05:28:50 +00001033 // C99 6.8.4p3 - In C99, the body of the if statement is a scope, even if
Chris Lattner38484402007-08-22 05:33:11 +00001034 // there is no compound stmt. C90 does not have this clause. We only do this
1035 // if the body isn't a compound statement to avoid push/pop in common cases.
Argyrios Kyrtzidis488d37e2008-09-11 03:06:46 +00001036 //
1037 // C++ 6.4p1:
1038 // The substatement in a selection-statement (each substatement, in the else
1039 // form of the if statement) implicitly defines a local scope.
1040 //
1041 // For C++ we create a scope for the condition and a new scope for
1042 // substatements because:
1043 // -When the 'then' scope exits, we want the condition declaration to still be
1044 // active for the 'else' scope too.
1045 // -Sema will detect name clashes by considering declarations of a
1046 // 'ControlScope' as part of its direct subscope.
1047 // -If we wanted the condition and substatement to be in the same scope, we
1048 // would have to notify ParseStatement not to create a new scope. It's
1049 // simpler to let it create a new scope.
1050 //
Mike Stump1eb44332009-09-09 15:08:12 +00001051 ParseScope InnerScope(this, Scope::DeclScope,
Douglas Gregor8935b8b2008-12-10 06:34:36 +00001052 C99orCXX && Tok.isNot(tok::l_brace));
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +00001053
Chris Lattnerb96728d2007-10-29 05:08:52 +00001054 // Read the 'then' stmt.
1055 SourceLocation ThenStmtLoc = Tok.getLocation();
Nico Weber5cb94a72011-12-22 23:26:17 +00001056
1057 SourceLocation InnerStatementTrailingElseLoc;
1058 StmtResult ThenStmt(ParseStatement(&InnerStatementTrailingElseLoc));
Reid Spencer5f016e22007-07-11 17:01:13 +00001059
Chris Lattnera36ce712007-08-22 05:16:28 +00001060 // Pop the 'if' scope if needed.
Douglas Gregor8935b8b2008-12-10 06:34:36 +00001061 InnerScope.Exit();
Sebastian Redl61364dd2008-12-11 19:30:53 +00001062
Reid Spencer5f016e22007-07-11 17:01:13 +00001063 // If it has an else, parse it.
1064 SourceLocation ElseLoc;
Chris Lattnerb96728d2007-10-29 05:08:52 +00001065 SourceLocation ElseStmtLoc;
John McCall60d7b3a2010-08-24 06:29:42 +00001066 StmtResult ElseStmt;
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001067
Chris Lattner4e1d99a2007-10-09 17:41:39 +00001068 if (Tok.is(tok::kw_else)) {
Nico Weber5cb94a72011-12-22 23:26:17 +00001069 if (TrailingElseLoc)
1070 *TrailingElseLoc = Tok.getLocation();
1071
Reid Spencer5f016e22007-07-11 17:01:13 +00001072 ElseLoc = ConsumeToken();
Chris Lattner966c78b2010-04-12 06:12:50 +00001073 ElseStmtLoc = Tok.getLocation();
Sebastian Redl61364dd2008-12-11 19:30:53 +00001074
Chris Lattner0ecea032007-08-22 05:28:50 +00001075 // C99 6.8.4p3 - In C99, the body of the if statement is a scope, even if
Chris Lattner38484402007-08-22 05:33:11 +00001076 // there is no compound stmt. C90 does not have this clause. We only do
1077 // this if the body isn't a compound statement to avoid push/pop in common
1078 // cases.
Argyrios Kyrtzidis488d37e2008-09-11 03:06:46 +00001079 //
1080 // C++ 6.4p1:
1081 // The substatement in a selection-statement (each substatement, in the else
1082 // form of the if statement) implicitly defines a local scope.
1083 //
Sebastian Redl61364dd2008-12-11 19:30:53 +00001084 ParseScope InnerScope(this, Scope::DeclScope,
Douglas Gregor8935b8b2008-12-10 06:34:36 +00001085 C99orCXX && Tok.isNot(tok::l_brace));
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001086
Reid Spencer5f016e22007-07-11 17:01:13 +00001087 ElseStmt = ParseStatement();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001088
Chris Lattnera36ce712007-08-22 05:16:28 +00001089 // Pop the 'else' scope if needed.
Douglas Gregor8935b8b2008-12-10 06:34:36 +00001090 InnerScope.Exit();
Douglas Gregord2d8be62011-07-30 08:36:53 +00001091 } else if (Tok.is(tok::code_completion)) {
1092 Actions.CodeCompleteAfterIf(getCurScope());
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00001093 cutOffParsing();
1094 return StmtError();
Nico Weber5cb94a72011-12-22 23:26:17 +00001095 } else if (InnerStatementTrailingElseLoc.isValid()) {
1096 Diag(InnerStatementTrailingElseLoc, diag::warn_dangling_else);
Reid Spencer5f016e22007-07-11 17:01:13 +00001097 }
Sebastian Redl61364dd2008-12-11 19:30:53 +00001098
Douglas Gregor8935b8b2008-12-10 06:34:36 +00001099 IfScope.Exit();
Mike Stump1eb44332009-09-09 15:08:12 +00001100
Chris Lattnerb96728d2007-10-29 05:08:52 +00001101 // If the then or else stmt is invalid and the other is valid (and present),
Mike Stump1eb44332009-09-09 15:08:12 +00001102 // make turn the invalid one into a null stmt to avoid dropping the other
Chris Lattnerb96728d2007-10-29 05:08:52 +00001103 // part. If both are invalid, return error.
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001104 if ((ThenStmt.isInvalid() && ElseStmt.isInvalid()) ||
1105 (ThenStmt.isInvalid() && ElseStmt.get() == 0) ||
1106 (ThenStmt.get() == 0 && ElseStmt.isInvalid())) {
Sebastian Redla55e52c2008-11-25 22:21:31 +00001107 // Both invalid, or one is invalid and other is non-present: return error.
Sebastian Redl61364dd2008-12-11 19:30:53 +00001108 return StmtError();
Chris Lattnerb96728d2007-10-29 05:08:52 +00001109 }
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001110
Chris Lattnerb96728d2007-10-29 05:08:52 +00001111 // Now if either are invalid, replace with a ';'.
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001112 if (ThenStmt.isInvalid())
Chris Lattnerb96728d2007-10-29 05:08:52 +00001113 ThenStmt = Actions.ActOnNullStmt(ThenStmtLoc);
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001114 if (ElseStmt.isInvalid())
Chris Lattnerb96728d2007-10-29 05:08:52 +00001115 ElseStmt = Actions.ActOnNullStmt(ElseStmtLoc);
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001116
John McCall9ae2f072010-08-23 23:25:46 +00001117 return Actions.ActOnIfStmt(IfLoc, FullCondExp, CondVar, ThenStmt.get(),
Argyrios Kyrtzidis44aa1f32010-11-20 02:04:01 +00001118 ElseLoc, ElseStmt.get());
Reid Spencer5f016e22007-07-11 17:01:13 +00001119}
1120
1121/// ParseSwitchStatement
1122/// switch-statement:
1123/// 'switch' '(' expression ')' statement
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +00001124/// [C++] 'switch' '(' condition ')' statement
Richard Smith534986f2012-04-14 00:33:13 +00001125StmtResult Parser::ParseSwitchStatement(SourceLocation *TrailingElseLoc) {
Chris Lattner4e1d99a2007-10-09 17:41:39 +00001126 assert(Tok.is(tok::kw_switch) && "Not a switch stmt!");
Reid Spencer5f016e22007-07-11 17:01:13 +00001127 SourceLocation SwitchLoc = ConsumeToken(); // eat the 'switch'.
1128
Chris Lattner4e1d99a2007-10-09 17:41:39 +00001129 if (Tok.isNot(tok::l_paren)) {
Chris Lattner1ab3b962008-11-18 07:48:38 +00001130 Diag(Tok, diag::err_expected_lparen_after) << "switch";
Reid Spencer5f016e22007-07-11 17:01:13 +00001131 SkipUntil(tok::semi);
Sebastian Redl9a920342008-12-11 19:48:14 +00001132 return StmtError();
Reid Spencer5f016e22007-07-11 17:01:13 +00001133 }
Chris Lattner22153252007-08-26 23:08:06 +00001134
David Blaikie4e4d0842012-03-11 07:00:24 +00001135 bool C99orCXX = getLangOpts().C99 || getLangOpts().CPlusPlus;
Argyrios Kyrtzidis488d37e2008-09-11 03:06:46 +00001136
Chris Lattner22153252007-08-26 23:08:06 +00001137 // C99 6.8.4p3 - In C99, the switch statement is a block. This is
1138 // not the case for C90. Start the switch scope.
Argyrios Kyrtzidis488d37e2008-09-11 03:06:46 +00001139 //
1140 // C++ 6.4p3:
1141 // A name introduced by a declaration in a condition is in scope from its
1142 // point of declaration until the end of the substatements controlled by the
1143 // condition.
Argyrios Kyrtzidis14d08c02008-09-11 23:08:39 +00001144 // C++ 3.3.2p4:
1145 // Names declared in the for-init-statement, and in the condition of if,
1146 // while, for, and switch statements are local to the if, while, for, or
1147 // switch statement (including the controlled statement).
Argyrios Kyrtzidis488d37e2008-09-11 03:06:46 +00001148 //
Richard Trieubb9b80c2011-04-21 21:44:26 +00001149 unsigned ScopeFlags = Scope::BreakScope | Scope::SwitchScope;
Chris Lattner15ff1112008-12-12 06:31:07 +00001150 if (C99orCXX)
1151 ScopeFlags |= Scope::DeclScope | Scope::ControlScope;
Douglas Gregor8935b8b2008-12-10 06:34:36 +00001152 ParseScope SwitchScope(this, ScopeFlags);
Reid Spencer5f016e22007-07-11 17:01:13 +00001153
1154 // Parse the condition.
John McCall60d7b3a2010-08-24 06:29:42 +00001155 ExprResult Cond;
John McCalld226f652010-08-21 09:40:31 +00001156 Decl *CondVar = 0;
Douglas Gregor586596f2010-05-06 17:25:47 +00001157 if (ParseParenExprOrCondition(Cond, CondVar, SwitchLoc, false))
Sebastian Redl9a920342008-12-11 19:48:14 +00001158 return StmtError();
Eli Friedman2342ef72008-12-17 22:19:57 +00001159
John McCall60d7b3a2010-08-24 06:29:42 +00001160 StmtResult Switch
John McCall9ae2f072010-08-23 23:25:46 +00001161 = Actions.ActOnStartOfSwitchStmt(SwitchLoc, Cond.get(), CondVar);
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001162
Douglas Gregor586596f2010-05-06 17:25:47 +00001163 if (Switch.isInvalid()) {
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001164 // Skip the switch body.
Douglas Gregor586596f2010-05-06 17:25:47 +00001165 // FIXME: This is not optimal recovery, but parsing the body is more
1166 // dangerous due to the presence of case and default statements, which
1167 // will have no place to connect back with the switch.
Douglas Gregor4186ff42010-05-20 23:20:59 +00001168 if (Tok.is(tok::l_brace)) {
1169 ConsumeBrace();
1170 SkipUntil(tok::r_brace, false, false);
1171 } else
Douglas Gregor586596f2010-05-06 17:25:47 +00001172 SkipUntil(tok::semi);
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00001173 return Switch;
Douglas Gregor586596f2010-05-06 17:25:47 +00001174 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001175
Chris Lattner0ecea032007-08-22 05:28:50 +00001176 // C99 6.8.4p3 - In C99, the body of the switch statement is a scope, even if
Chris Lattner38484402007-08-22 05:33:11 +00001177 // there is no compound stmt. C90 does not have this clause. We only do this
1178 // if the body isn't a compound statement to avoid push/pop in common cases.
Argyrios Kyrtzidis488d37e2008-09-11 03:06:46 +00001179 //
1180 // C++ 6.4p1:
1181 // The substatement in a selection-statement (each substatement, in the else
1182 // form of the if statement) implicitly defines a local scope.
1183 //
1184 // See comments in ParseIfStatement for why we create a scope for the
1185 // condition and a new scope for substatement in C++.
1186 //
Mike Stump1eb44332009-09-09 15:08:12 +00001187 ParseScope InnerScope(this, Scope::DeclScope,
Douglas Gregor8935b8b2008-12-10 06:34:36 +00001188 C99orCXX && Tok.isNot(tok::l_brace));
Sebastian Redl61364dd2008-12-11 19:30:53 +00001189
Reid Spencer5f016e22007-07-11 17:01:13 +00001190 // Read the body statement.
Nico Weber5cb94a72011-12-22 23:26:17 +00001191 StmtResult Body(ParseStatement(TrailingElseLoc));
Reid Spencer5f016e22007-07-11 17:01:13 +00001192
Chris Lattner7e52de42010-01-24 01:50:29 +00001193 // Pop the scopes.
Douglas Gregor8935b8b2008-12-10 06:34:36 +00001194 InnerScope.Exit();
Douglas Gregor8935b8b2008-12-10 06:34:36 +00001195 SwitchScope.Exit();
Sebastian Redl61364dd2008-12-11 19:30:53 +00001196
Dmitri Gribenko625bb562012-02-14 22:14:32 +00001197 if (Body.isInvalid()) {
Chris Lattner7e52de42010-01-24 01:50:29 +00001198 // FIXME: Remove the case statement list from the Switch statement.
Dmitri Gribenko625bb562012-02-14 22:14:32 +00001199
1200 // Put the synthesized null statement on the same line as the end of switch
1201 // condition.
1202 SourceLocation SynthesizedNullStmtLocation = Cond.get()->getLocEnd();
1203 Body = Actions.ActOnNullStmt(SynthesizedNullStmtLocation);
1204 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001205
John McCall9ae2f072010-08-23 23:25:46 +00001206 return Actions.ActOnFinishSwitchStmt(SwitchLoc, Switch.get(), Body.get());
Reid Spencer5f016e22007-07-11 17:01:13 +00001207}
1208
1209/// ParseWhileStatement
1210/// while-statement: [C99 6.8.5.1]
1211/// 'while' '(' expression ')' statement
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +00001212/// [C++] 'while' '(' condition ')' statement
Richard Smith534986f2012-04-14 00:33:13 +00001213StmtResult Parser::ParseWhileStatement(SourceLocation *TrailingElseLoc) {
Chris Lattner4e1d99a2007-10-09 17:41:39 +00001214 assert(Tok.is(tok::kw_while) && "Not a while stmt!");
Reid Spencer5f016e22007-07-11 17:01:13 +00001215 SourceLocation WhileLoc = Tok.getLocation();
1216 ConsumeToken(); // eat the 'while'.
Sebastian Redl9a920342008-12-11 19:48:14 +00001217
Chris Lattner4e1d99a2007-10-09 17:41:39 +00001218 if (Tok.isNot(tok::l_paren)) {
Chris Lattner1ab3b962008-11-18 07:48:38 +00001219 Diag(Tok, diag::err_expected_lparen_after) << "while";
Reid Spencer5f016e22007-07-11 17:01:13 +00001220 SkipUntil(tok::semi);
Sebastian Redl9a920342008-12-11 19:48:14 +00001221 return StmtError();
Reid Spencer5f016e22007-07-11 17:01:13 +00001222 }
Sebastian Redl9a920342008-12-11 19:48:14 +00001223
David Blaikie4e4d0842012-03-11 07:00:24 +00001224 bool C99orCXX = getLangOpts().C99 || getLangOpts().CPlusPlus;
Argyrios Kyrtzidis488d37e2008-09-11 03:06:46 +00001225
Chris Lattner22153252007-08-26 23:08:06 +00001226 // C99 6.8.5p5 - In C99, the while statement is a block. This is not
1227 // the case for C90. Start the loop scope.
Argyrios Kyrtzidis488d37e2008-09-11 03:06:46 +00001228 //
1229 // C++ 6.4p3:
1230 // A name introduced by a declaration in a condition is in scope from its
1231 // point of declaration until the end of the substatements controlled by the
1232 // condition.
Argyrios Kyrtzidis14d08c02008-09-11 23:08:39 +00001233 // C++ 3.3.2p4:
1234 // Names declared in the for-init-statement, and in the condition of if,
1235 // while, for, and switch statements are local to the if, while, for, or
1236 // switch statement (including the controlled statement).
Argyrios Kyrtzidis488d37e2008-09-11 03:06:46 +00001237 //
Douglas Gregor8935b8b2008-12-10 06:34:36 +00001238 unsigned ScopeFlags;
Argyrios Kyrtzidis488d37e2008-09-11 03:06:46 +00001239 if (C99orCXX)
Douglas Gregor8935b8b2008-12-10 06:34:36 +00001240 ScopeFlags = Scope::BreakScope | Scope::ContinueScope |
1241 Scope::DeclScope | Scope::ControlScope;
Chris Lattner22153252007-08-26 23:08:06 +00001242 else
Douglas Gregor8935b8b2008-12-10 06:34:36 +00001243 ScopeFlags = Scope::BreakScope | Scope::ContinueScope;
1244 ParseScope WhileScope(this, ScopeFlags);
Reid Spencer5f016e22007-07-11 17:01:13 +00001245
1246 // Parse the condition.
John McCall60d7b3a2010-08-24 06:29:42 +00001247 ExprResult Cond;
John McCalld226f652010-08-21 09:40:31 +00001248 Decl *CondVar = 0;
Douglas Gregor586596f2010-05-06 17:25:47 +00001249 if (ParseParenExprOrCondition(Cond, CondVar, WhileLoc, true))
Chris Lattner15ff1112008-12-12 06:31:07 +00001250 return StmtError();
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001251
David Blaikiedef07622012-05-16 04:20:04 +00001252 FullExprArg FullCond(Actions.MakeFullExpr(Cond.get(), WhileLoc));
Mike Stump1eb44332009-09-09 15:08:12 +00001253
Chris Lattner0ecea032007-08-22 05:28:50 +00001254 // C99 6.8.5p5 - In C99, the body of the if statement is a scope, even if
Chris Lattner38484402007-08-22 05:33:11 +00001255 // there is no compound stmt. C90 does not have this clause. We only do this
1256 // if the body isn't a compound statement to avoid push/pop in common cases.
Argyrios Kyrtzidis488d37e2008-09-11 03:06:46 +00001257 //
1258 // C++ 6.5p2:
1259 // The substatement in an iteration-statement implicitly defines a local scope
1260 // which is entered and exited each time through the loop.
1261 //
1262 // See comments in ParseIfStatement for why we create a scope for the
1263 // condition and a new scope for substatement in C++.
1264 //
Mike Stump1eb44332009-09-09 15:08:12 +00001265 ParseScope InnerScope(this, Scope::DeclScope,
Douglas Gregor8935b8b2008-12-10 06:34:36 +00001266 C99orCXX && Tok.isNot(tok::l_brace));
Sebastian Redl9a920342008-12-11 19:48:14 +00001267
Reid Spencer5f016e22007-07-11 17:01:13 +00001268 // Read the body statement.
Nico Weber5cb94a72011-12-22 23:26:17 +00001269 StmtResult Body(ParseStatement(TrailingElseLoc));
Reid Spencer5f016e22007-07-11 17:01:13 +00001270
Chris Lattner0ecea032007-08-22 05:28:50 +00001271 // Pop the body scope if needed.
Douglas Gregor8935b8b2008-12-10 06:34:36 +00001272 InnerScope.Exit();
1273 WhileScope.Exit();
Sebastian Redl9a920342008-12-11 19:48:14 +00001274
John McCalld226f652010-08-21 09:40:31 +00001275 if ((Cond.isInvalid() && !CondVar) || Body.isInvalid())
Sebastian Redl9a920342008-12-11 19:48:14 +00001276 return StmtError();
1277
John McCall9ae2f072010-08-23 23:25:46 +00001278 return Actions.ActOnWhileStmt(WhileLoc, FullCond, CondVar, Body.get());
Reid Spencer5f016e22007-07-11 17:01:13 +00001279}
1280
1281/// ParseDoStatement
1282/// do-statement: [C99 6.8.5.2]
1283/// 'do' statement 'while' '(' expression ')' ';'
1284/// Note: this lets the caller parse the end ';'.
Richard Smith534986f2012-04-14 00:33:13 +00001285StmtResult Parser::ParseDoStatement() {
Chris Lattner4e1d99a2007-10-09 17:41:39 +00001286 assert(Tok.is(tok::kw_do) && "Not a do stmt!");
Reid Spencer5f016e22007-07-11 17:01:13 +00001287 SourceLocation DoLoc = ConsumeToken(); // eat the 'do'.
Sebastian Redl9a920342008-12-11 19:48:14 +00001288
Chris Lattner22153252007-08-26 23:08:06 +00001289 // C99 6.8.5p5 - In C99, the do statement is a block. This is not
1290 // the case for C90. Start the loop scope.
Douglas Gregor8935b8b2008-12-10 06:34:36 +00001291 unsigned ScopeFlags;
David Blaikie4e4d0842012-03-11 07:00:24 +00001292 if (getLangOpts().C99)
Douglas Gregor8935b8b2008-12-10 06:34:36 +00001293 ScopeFlags = Scope::BreakScope | Scope::ContinueScope | Scope::DeclScope;
Chris Lattner22153252007-08-26 23:08:06 +00001294 else
Douglas Gregor8935b8b2008-12-10 06:34:36 +00001295 ScopeFlags = Scope::BreakScope | Scope::ContinueScope;
Sebastian Redl9a920342008-12-11 19:48:14 +00001296
Douglas Gregor8935b8b2008-12-10 06:34:36 +00001297 ParseScope DoScope(this, ScopeFlags);
Reid Spencer5f016e22007-07-11 17:01:13 +00001298
Chris Lattner0ecea032007-08-22 05:28:50 +00001299 // C99 6.8.5p5 - In C99, the body of the if statement is a scope, even if
Chris Lattner38484402007-08-22 05:33:11 +00001300 // there is no compound stmt. C90 does not have this clause. We only do this
1301 // if the body isn't a compound statement to avoid push/pop in common cases.
Argyrios Kyrtzidis143db712008-09-11 04:46:46 +00001302 //
1303 // C++ 6.5p2:
1304 // The substatement in an iteration-statement implicitly defines a local scope
1305 // which is entered and exited each time through the loop.
1306 //
Douglas Gregor8935b8b2008-12-10 06:34:36 +00001307 ParseScope InnerScope(this, Scope::DeclScope,
David Blaikie4e4d0842012-03-11 07:00:24 +00001308 (getLangOpts().C99 || getLangOpts().CPlusPlus) &&
Douglas Gregor8935b8b2008-12-10 06:34:36 +00001309 Tok.isNot(tok::l_brace));
Sebastian Redl9a920342008-12-11 19:48:14 +00001310
Reid Spencer5f016e22007-07-11 17:01:13 +00001311 // Read the body statement.
John McCall60d7b3a2010-08-24 06:29:42 +00001312 StmtResult Body(ParseStatement());
Reid Spencer5f016e22007-07-11 17:01:13 +00001313
Chris Lattner0ecea032007-08-22 05:28:50 +00001314 // Pop the body scope if needed.
Douglas Gregor8935b8b2008-12-10 06:34:36 +00001315 InnerScope.Exit();
Chris Lattner0ecea032007-08-22 05:28:50 +00001316
Chris Lattner4e1d99a2007-10-09 17:41:39 +00001317 if (Tok.isNot(tok::kw_while)) {
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001318 if (!Body.isInvalid()) {
Chris Lattner19504402008-11-13 18:52:53 +00001319 Diag(Tok, diag::err_expected_while);
Chris Lattner28eb7e92008-11-23 23:17:07 +00001320 Diag(DoLoc, diag::note_matching) << "do";
Chris Lattner19504402008-11-13 18:52:53 +00001321 SkipUntil(tok::semi, false, true);
1322 }
Sebastian Redl9a920342008-12-11 19:48:14 +00001323 return StmtError();
Reid Spencer5f016e22007-07-11 17:01:13 +00001324 }
1325 SourceLocation WhileLoc = ConsumeToken();
Sebastian Redl9a920342008-12-11 19:48:14 +00001326
Chris Lattner4e1d99a2007-10-09 17:41:39 +00001327 if (Tok.isNot(tok::l_paren)) {
Chris Lattner1ab3b962008-11-18 07:48:38 +00001328 Diag(Tok, diag::err_expected_lparen_after) << "do/while";
Chris Lattner19504402008-11-13 18:52:53 +00001329 SkipUntil(tok::semi, false, true);
Sebastian Redl9a920342008-12-11 19:48:14 +00001330 return StmtError();
Reid Spencer5f016e22007-07-11 17:01:13 +00001331 }
Sebastian Redl9a920342008-12-11 19:48:14 +00001332
Richard Smith5eed7e02013-10-15 01:34:54 +00001333 // Parse the parenthesized expression.
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00001334 BalancedDelimiterTracker T(*this, tok::l_paren);
1335 T.consumeOpen();
Chad Rosierb6604462012-07-10 21:35:27 +00001336
Richard Smith5eed7e02013-10-15 01:34:54 +00001337 // A do-while expression is not a condition, so can't have attributes.
1338 DiagnoseAndSkipCXX11Attributes();
Sean Hunt2edf0a22012-06-23 05:07:58 +00001339
John McCall60d7b3a2010-08-24 06:29:42 +00001340 ExprResult Cond = ParseExpression();
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00001341 T.consumeClose();
Douglas Gregor8935b8b2008-12-10 06:34:36 +00001342 DoScope.Exit();
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001343
Sebastian Redl9a920342008-12-11 19:48:14 +00001344 if (Cond.isInvalid() || Body.isInvalid())
1345 return StmtError();
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001346
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00001347 return Actions.ActOnDoStmt(DoLoc, Body.get(), WhileLoc, T.getOpenLocation(),
1348 Cond.get(), T.getCloseLocation());
Reid Spencer5f016e22007-07-11 17:01:13 +00001349}
1350
1351/// ParseForStatement
1352/// for-statement: [C99 6.8.5.3]
1353/// 'for' '(' expr[opt] ';' expr[opt] ';' expr[opt] ')' statement
1354/// 'for' '(' declaration expr[opt] ';' expr[opt] ')' statement
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +00001355/// [C++] 'for' '(' for-init-statement condition[opt] ';' expression[opt] ')'
1356/// [C++] statement
Richard Smithad762fc2011-04-14 22:09:26 +00001357/// [C++0x] 'for' '(' for-range-declaration : for-range-initializer ) statement
Fariborz Jahanian3ba5a0f2008-01-03 17:55:25 +00001358/// [OBJC2] 'for' '(' declaration 'in' expr ')' statement
1359/// [OBJC2] 'for' '(' expr 'in' expr ')' statement
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +00001360///
1361/// [C++] for-init-statement:
1362/// [C++] expression-statement
1363/// [C++] simple-declaration
1364///
Richard Smithad762fc2011-04-14 22:09:26 +00001365/// [C++0x] for-range-declaration:
1366/// [C++0x] attribute-specifier-seq[opt] type-specifier-seq declarator
1367/// [C++0x] for-range-initializer:
1368/// [C++0x] expression
1369/// [C++0x] braced-init-list [TODO]
Richard Smith534986f2012-04-14 00:33:13 +00001370StmtResult Parser::ParseForStatement(SourceLocation *TrailingElseLoc) {
Chris Lattner4e1d99a2007-10-09 17:41:39 +00001371 assert(Tok.is(tok::kw_for) && "Not a for stmt!");
Reid Spencer5f016e22007-07-11 17:01:13 +00001372 SourceLocation ForLoc = ConsumeToken(); // eat the 'for'.
Sebastian Redl9a920342008-12-11 19:48:14 +00001373
Chris Lattner4e1d99a2007-10-09 17:41:39 +00001374 if (Tok.isNot(tok::l_paren)) {
Chris Lattner1ab3b962008-11-18 07:48:38 +00001375 Diag(Tok, diag::err_expected_lparen_after) << "for";
Reid Spencer5f016e22007-07-11 17:01:13 +00001376 SkipUntil(tok::semi);
Sebastian Redl9a920342008-12-11 19:48:14 +00001377 return StmtError();
Reid Spencer5f016e22007-07-11 17:01:13 +00001378 }
Sebastian Redl9a920342008-12-11 19:48:14 +00001379
Chad Rosierb6604462012-07-10 21:35:27 +00001380 bool C99orCXXorObjC = getLangOpts().C99 || getLangOpts().CPlusPlus ||
1381 getLangOpts().ObjC1;
Argyrios Kyrtzidis488d37e2008-09-11 03:06:46 +00001382
Chris Lattner22153252007-08-26 23:08:06 +00001383 // C99 6.8.5p5 - In C99, the for statement is a block. This is not
1384 // the case for C90. Start the loop scope.
Argyrios Kyrtzidis488d37e2008-09-11 03:06:46 +00001385 //
1386 // C++ 6.4p3:
1387 // A name introduced by a declaration in a condition is in scope from its
1388 // point of declaration until the end of the substatements controlled by the
1389 // condition.
Argyrios Kyrtzidis14d08c02008-09-11 23:08:39 +00001390 // C++ 3.3.2p4:
1391 // Names declared in the for-init-statement, and in the condition of if,
1392 // while, for, and switch statements are local to the if, while, for, or
1393 // switch statement (including the controlled statement).
Argyrios Kyrtzidis488d37e2008-09-11 03:06:46 +00001394 // C++ 6.5.3p1:
1395 // Names declared in the for-init-statement are in the same declarative-region
1396 // as those declared in the condition.
1397 //
Douglas Gregor8935b8b2008-12-10 06:34:36 +00001398 unsigned ScopeFlags;
Chris Lattner4d00f2a2009-04-22 00:54:41 +00001399 if (C99orCXXorObjC)
Douglas Gregor8935b8b2008-12-10 06:34:36 +00001400 ScopeFlags = Scope::BreakScope | Scope::ContinueScope |
1401 Scope::DeclScope | Scope::ControlScope;
Chris Lattner22153252007-08-26 23:08:06 +00001402 else
Douglas Gregor8935b8b2008-12-10 06:34:36 +00001403 ScopeFlags = Scope::BreakScope | Scope::ContinueScope;
1404
1405 ParseScope ForScope(this, ScopeFlags);
Reid Spencer5f016e22007-07-11 17:01:13 +00001406
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00001407 BalancedDelimiterTracker T(*this, tok::l_paren);
1408 T.consumeOpen();
1409
John McCall60d7b3a2010-08-24 06:29:42 +00001410 ExprResult Value;
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001411
Richard Smithad762fc2011-04-14 22:09:26 +00001412 bool ForEach = false, ForRange = false;
John McCall60d7b3a2010-08-24 06:29:42 +00001413 StmtResult FirstPart;
Douglas Gregoreecf38f2010-05-06 21:39:56 +00001414 bool SecondPartIsInvalid = false;
Douglas Gregor586596f2010-05-06 17:25:47 +00001415 FullExprArg SecondPart(Actions);
John McCall60d7b3a2010-08-24 06:29:42 +00001416 ExprResult Collection;
Richard Smithad762fc2011-04-14 22:09:26 +00001417 ForRangeInit ForRangeInit;
Douglas Gregor586596f2010-05-06 17:25:47 +00001418 FullExprArg ThirdPart(Actions);
John McCalld226f652010-08-21 09:40:31 +00001419 Decl *SecondVar = 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001420
Douglas Gregor791215b2009-09-21 20:51:25 +00001421 if (Tok.is(tok::code_completion)) {
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001422 Actions.CodeCompleteOrdinaryName(getCurScope(),
John McCallf312b1e2010-08-26 23:41:50 +00001423 C99orCXXorObjC? Sema::PCC_ForInit
1424 : Sema::PCC_Expression);
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00001425 cutOffParsing();
1426 return StmtError();
Douglas Gregor791215b2009-09-21 20:51:25 +00001427 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001428
Sean Hunt2edf0a22012-06-23 05:07:58 +00001429 ParsedAttributesWithRange attrs(AttrFactory);
Richard Smith4e24f0f2013-01-02 12:01:23 +00001430 MaybeParseCXX11Attributes(attrs);
Sean Hunt2edf0a22012-06-23 05:07:58 +00001431
Reid Spencer5f016e22007-07-11 17:01:13 +00001432 // Parse the first part of the for specifier.
Chris Lattner4e1d99a2007-10-09 17:41:39 +00001433 if (Tok.is(tok::semi)) { // for (;
Sean Hunt2edf0a22012-06-23 05:07:58 +00001434 ProhibitAttributes(attrs);
Reid Spencer5f016e22007-07-11 17:01:13 +00001435 // no first part, eat the ';'.
1436 ConsumeToken();
Eli Friedman9490ab42011-12-20 01:50:37 +00001437 } else if (isForInitDeclaration()) { // for (int X = 4;
Reid Spencer5f016e22007-07-11 17:01:13 +00001438 // Parse declaration, which eats the ';'.
Chris Lattner4d00f2a2009-04-22 00:54:41 +00001439 if (!C99orCXXorObjC) // Use of C99-style for loops in C90 mode?
Reid Spencer5f016e22007-07-11 17:01:13 +00001440 Diag(Tok, diag::ext_c99_variable_decl_in_for_loop);
Sebastian Redl9a920342008-12-11 19:48:14 +00001441
Richard Smithad762fc2011-04-14 22:09:26 +00001442 // In C++0x, "for (T NS:a" might not be a typo for ::
David Blaikie4e4d0842012-03-11 07:00:24 +00001443 bool MightBeForRangeStmt = getLangOpts().CPlusPlus;
Richard Smithad762fc2011-04-14 22:09:26 +00001444 ColonProtectionRAIIObject ColonProtection(*this, MightBeForRangeStmt);
1445
Chris Lattner97144fc2009-04-02 04:16:50 +00001446 SourceLocation DeclStart = Tok.getLocation(), DeclEnd;
Benjamin Kramer4e28d9e2012-08-23 22:51:59 +00001447 StmtVector Stmts;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001448 DeclGroupPtrTy DG = ParseSimpleDeclaration(Stmts, Declarator::ForContext,
Richard Smithad762fc2011-04-14 22:09:26 +00001449 DeclEnd, attrs, false,
1450 MightBeForRangeStmt ?
1451 &ForRangeInit : 0);
Chris Lattnercd147752009-03-29 17:27:48 +00001452 FirstPart = Actions.ActOnDeclStmt(DG, DeclStart, Tok.getLocation());
Mike Stump1eb44332009-09-09 15:08:12 +00001453
Richard Smithad762fc2011-04-14 22:09:26 +00001454 if (ForRangeInit.ParsedForRangeDecl()) {
Richard Smith80ad52f2013-01-02 11:42:31 +00001455 Diag(ForRangeInit.ColonLoc, getLangOpts().CPlusPlus11 ?
Richard Smith7fe62082011-10-15 05:09:34 +00001456 diag::warn_cxx98_compat_for_range : diag::ext_for_range);
Richard Smith8f4fb192011-09-04 19:54:14 +00001457
Richard Smithad762fc2011-04-14 22:09:26 +00001458 ForRange = true;
1459 } else if (Tok.is(tok::semi)) { // for (int x = 4;
Chris Lattnercd147752009-03-29 17:27:48 +00001460 ConsumeToken();
1461 } else if ((ForEach = isTokIdentifier_in())) {
Fariborz Jahaniana7cf23a2009-11-19 22:12:37 +00001462 Actions.ActOnForEachDeclStmt(DG);
Mike Stump1eb44332009-09-09 15:08:12 +00001463 // ObjC: for (id x in expr)
Fariborz Jahanian3ba5a0f2008-01-03 17:55:25 +00001464 ConsumeToken(); // consume 'in'
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001465
Douglas Gregorfb629412010-08-23 21:17:50 +00001466 if (Tok.is(tok::code_completion)) {
1467 Actions.CodeCompleteObjCForCollection(getCurScope(), DG);
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00001468 cutOffParsing();
1469 return StmtError();
Douglas Gregorfb629412010-08-23 21:17:50 +00001470 }
Douglas Gregor586596f2010-05-06 17:25:47 +00001471 Collection = ParseExpression();
Chris Lattnercd147752009-03-29 17:27:48 +00001472 } else {
1473 Diag(Tok, diag::err_expected_semi_for);
Fariborz Jahanian3ba5a0f2008-01-03 17:55:25 +00001474 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001475 } else {
Sean Hunt2edf0a22012-06-23 05:07:58 +00001476 ProhibitAttributes(attrs);
Reid Spencer5f016e22007-07-11 17:01:13 +00001477 Value = ParseExpression();
1478
John McCallf6a16482010-12-04 03:47:34 +00001479 ForEach = isTokIdentifier_in();
1480
Reid Spencer5f016e22007-07-11 17:01:13 +00001481 // Turn the expression into a stmt.
John McCallf6a16482010-12-04 03:47:34 +00001482 if (!Value.isInvalid()) {
1483 if (ForEach)
1484 FirstPart = Actions.ActOnForEachLValueExpr(Value.get());
1485 else
Richard Smith41956372013-01-14 22:39:08 +00001486 FirstPart = Actions.ActOnExprStmt(Value);
John McCallf6a16482010-12-04 03:47:34 +00001487 }
Sebastian Redleffa8d12008-12-10 00:02:53 +00001488
Chris Lattner4e1d99a2007-10-09 17:41:39 +00001489 if (Tok.is(tok::semi)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001490 ConsumeToken();
John McCallf6a16482010-12-04 03:47:34 +00001491 } else if (ForEach) {
Fariborz Jahanian3ba5a0f2008-01-03 17:55:25 +00001492 ConsumeToken(); // consume 'in'
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001493
Douglas Gregorfb629412010-08-23 21:17:50 +00001494 if (Tok.is(tok::code_completion)) {
1495 Actions.CodeCompleteObjCForCollection(getCurScope(), DeclGroupPtrTy());
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00001496 cutOffParsing();
1497 return StmtError();
Douglas Gregorfb629412010-08-23 21:17:50 +00001498 }
Douglas Gregor586596f2010-05-06 17:25:47 +00001499 Collection = ParseExpression();
Richard Smith80ad52f2013-01-02 11:42:31 +00001500 } else if (getLangOpts().CPlusPlus11 && Tok.is(tok::colon) && FirstPart.get()) {
Richard Smitha44854a2011-12-20 22:56:20 +00001501 // User tried to write the reasonable, but ill-formed, for-range-statement
1502 // for (expr : expr) { ... }
1503 Diag(Tok, diag::err_for_range_expected_decl)
1504 << FirstPart.get()->getSourceRange();
1505 SkipUntil(tok::r_paren, false, true);
1506 SecondPartIsInvalid = true;
Chris Lattner682bf922009-03-29 16:50:03 +00001507 } else {
Douglas Gregorb72c7782011-02-17 03:38:46 +00001508 if (!Value.isInvalid()) {
1509 Diag(Tok, diag::err_expected_semi_for);
1510 } else {
1511 // Skip until semicolon or rparen, don't consume it.
1512 SkipUntil(tok::r_paren, true, true);
1513 if (Tok.is(tok::semi))
1514 ConsumeToken();
1515 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001516 }
1517 }
Richard Smithad762fc2011-04-14 22:09:26 +00001518 if (!ForEach && !ForRange) {
John McCall9ae2f072010-08-23 23:25:46 +00001519 assert(!SecondPart.get() && "Shouldn't have a second expression yet.");
Fariborz Jahanian3ba5a0f2008-01-03 17:55:25 +00001520 // Parse the second part of the for specifier.
1521 if (Tok.is(tok::semi)) { // for (...;;
1522 // no second part.
Douglas Gregorb72c7782011-02-17 03:38:46 +00001523 } else if (Tok.is(tok::r_paren)) {
1524 // missing both semicolons.
Fariborz Jahanian3ba5a0f2008-01-03 17:55:25 +00001525 } else {
John McCall60d7b3a2010-08-24 06:29:42 +00001526 ExprResult Second;
David Blaikie4e4d0842012-03-11 07:00:24 +00001527 if (getLangOpts().CPlusPlus)
Douglas Gregor586596f2010-05-06 17:25:47 +00001528 ParseCXXCondition(Second, SecondVar, ForLoc, true);
1529 else {
1530 Second = ParseExpression();
1531 if (!Second.isInvalid())
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001532 Second = Actions.ActOnBooleanCondition(getCurScope(), ForLoc,
John McCall9ae2f072010-08-23 23:25:46 +00001533 Second.get());
Douglas Gregor586596f2010-05-06 17:25:47 +00001534 }
Douglas Gregoreecf38f2010-05-06 21:39:56 +00001535 SecondPartIsInvalid = Second.isInvalid();
David Blaikiedef07622012-05-16 04:20:04 +00001536 SecondPart = Actions.MakeFullExpr(Second.get(), ForLoc);
Fariborz Jahanian3ba5a0f2008-01-03 17:55:25 +00001537 }
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001538
Douglas Gregorb72c7782011-02-17 03:38:46 +00001539 if (Tok.isNot(tok::semi)) {
1540 if (!SecondPartIsInvalid || SecondVar)
1541 Diag(Tok, diag::err_expected_semi_for);
1542 else
1543 // Skip until semicolon or rparen, don't consume it.
1544 SkipUntil(tok::r_paren, true, true);
1545 }
1546
Fariborz Jahanian3ba5a0f2008-01-03 17:55:25 +00001547 if (Tok.is(tok::semi)) {
1548 ConsumeToken();
Fariborz Jahanian3ba5a0f2008-01-03 17:55:25 +00001549 }
Sebastian Redl9a920342008-12-11 19:48:14 +00001550
Fariborz Jahanian3ba5a0f2008-01-03 17:55:25 +00001551 // Parse the third part of the for specifier.
Douglas Gregor586596f2010-05-06 17:25:47 +00001552 if (Tok.isNot(tok::r_paren)) { // for (...;...;)
John McCall60d7b3a2010-08-24 06:29:42 +00001553 ExprResult Third = ParseExpression();
Richard Smith41956372013-01-14 22:39:08 +00001554 // FIXME: The C++11 standard doesn't actually say that this is a
1555 // discarded-value expression, but it clearly should be.
1556 ThirdPart = Actions.MakeFullDiscardedValueExpr(Third.take());
Douglas Gregor586596f2010-05-06 17:25:47 +00001557 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001558 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001559 // Match the ')'.
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00001560 T.consumeClose();
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001561
Richard Smithad762fc2011-04-14 22:09:26 +00001562 // We need to perform most of the semantic analysis for a C++0x for-range
1563 // statememt before parsing the body, in order to be able to deduce the type
1564 // of an auto-typed loop variable.
1565 StmtResult ForRangeStmt;
Fariborz Jahaniana1eec4b2012-07-03 22:00:52 +00001566 StmtResult ForEachStmt;
Chad Rosierb6604462012-07-10 21:35:27 +00001567
John McCall990567c2011-07-27 01:07:15 +00001568 if (ForRange) {
Sam Panzerbc20bbb2012-08-16 21:47:25 +00001569 ForRangeStmt = Actions.ActOnCXXForRangeStmt(ForLoc, FirstPart.take(),
Richard Smithad762fc2011-04-14 22:09:26 +00001570 ForRangeInit.ColonLoc,
1571 ForRangeInit.RangeExpr.get(),
Richard Smith8b533d92012-09-20 21:52:32 +00001572 T.getCloseLocation(),
1573 Sema::BFRK_Build);
Richard Smithad762fc2011-04-14 22:09:26 +00001574
John McCall990567c2011-07-27 01:07:15 +00001575
1576 // Similarly, we need to do the semantic analysis for a for-range
1577 // statement immediately in order to close over temporaries correctly.
1578 } else if (ForEach) {
Sam Panzerbc20bbb2012-08-16 21:47:25 +00001579 ForEachStmt = Actions.ActOnObjCForCollectionStmt(ForLoc,
Fariborz Jahaniana1eec4b2012-07-03 22:00:52 +00001580 FirstPart.take(),
Chad Rosierb6604462012-07-10 21:35:27 +00001581 Collection.take(),
Fariborz Jahaniana1eec4b2012-07-03 22:00:52 +00001582 T.getCloseLocation());
John McCall990567c2011-07-27 01:07:15 +00001583 }
1584
Chris Lattner0ecea032007-08-22 05:28:50 +00001585 // C99 6.8.5p5 - In C99, the body of the if statement is a scope, even if
Chris Lattner38484402007-08-22 05:33:11 +00001586 // there is no compound stmt. C90 does not have this clause. We only do this
1587 // if the body isn't a compound statement to avoid push/pop in common cases.
Argyrios Kyrtzidis488d37e2008-09-11 03:06:46 +00001588 //
1589 // C++ 6.5p2:
1590 // The substatement in an iteration-statement implicitly defines a local scope
1591 // which is entered and exited each time through the loop.
1592 //
1593 // See comments in ParseIfStatement for why we create a scope for
1594 // for-init-statement/condition and a new scope for substatement in C++.
1595 //
Mike Stump1eb44332009-09-09 15:08:12 +00001596 ParseScope InnerScope(this, Scope::DeclScope,
Chris Lattner4d00f2a2009-04-22 00:54:41 +00001597 C99orCXXorObjC && Tok.isNot(tok::l_brace));
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001598
Reid Spencer5f016e22007-07-11 17:01:13 +00001599 // Read the body statement.
Nico Weber5cb94a72011-12-22 23:26:17 +00001600 StmtResult Body(ParseStatement(TrailingElseLoc));
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001601
Chris Lattner0ecea032007-08-22 05:28:50 +00001602 // Pop the body scope if needed.
Douglas Gregor8935b8b2008-12-10 06:34:36 +00001603 InnerScope.Exit();
Chris Lattner0ecea032007-08-22 05:28:50 +00001604
Reid Spencer5f016e22007-07-11 17:01:13 +00001605 // Leave the for-scope.
Douglas Gregor8935b8b2008-12-10 06:34:36 +00001606 ForScope.Exit();
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001607
1608 if (Body.isInvalid())
Sebastian Redl9a920342008-12-11 19:48:14 +00001609 return StmtError();
Sebastian Redleffa8d12008-12-10 00:02:53 +00001610
Richard Smithad762fc2011-04-14 22:09:26 +00001611 if (ForEach)
Fariborz Jahaniana1eec4b2012-07-03 22:00:52 +00001612 return Actions.FinishObjCForCollectionStmt(ForEachStmt.take(),
1613 Body.take());
Mike Stump1eb44332009-09-09 15:08:12 +00001614
Richard Smithad762fc2011-04-14 22:09:26 +00001615 if (ForRange)
1616 return Actions.FinishCXXForRangeStmt(ForRangeStmt.take(), Body.take());
1617
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00001618 return Actions.ActOnForStmt(ForLoc, T.getOpenLocation(), FirstPart.take(),
1619 SecondPart, SecondVar, ThirdPart,
1620 T.getCloseLocation(), Body.take());
Reid Spencer5f016e22007-07-11 17:01:13 +00001621}
1622
1623/// ParseGotoStatement
1624/// jump-statement:
1625/// 'goto' identifier ';'
1626/// [GNU] 'goto' '*' expression ';'
1627///
1628/// Note: this lets the caller parse the end ';'.
1629///
Richard Smith534986f2012-04-14 00:33:13 +00001630StmtResult Parser::ParseGotoStatement() {
Chris Lattner4e1d99a2007-10-09 17:41:39 +00001631 assert(Tok.is(tok::kw_goto) && "Not a goto stmt!");
Reid Spencer5f016e22007-07-11 17:01:13 +00001632 SourceLocation GotoLoc = ConsumeToken(); // eat the 'goto'.
Sebastian Redl9a920342008-12-11 19:48:14 +00001633
John McCall60d7b3a2010-08-24 06:29:42 +00001634 StmtResult Res;
Chris Lattner4e1d99a2007-10-09 17:41:39 +00001635 if (Tok.is(tok::identifier)) {
Chris Lattner337e5502011-02-18 01:27:55 +00001636 LabelDecl *LD = Actions.LookupOrCreateLabel(Tok.getIdentifierInfo(),
1637 Tok.getLocation());
1638 Res = Actions.ActOnGotoStmt(GotoLoc, Tok.getLocation(), LD);
Reid Spencer5f016e22007-07-11 17:01:13 +00001639 ConsumeToken();
Eli Friedmanf01fdff2009-04-28 00:51:18 +00001640 } else if (Tok.is(tok::star)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001641 // GNU indirect goto extension.
1642 Diag(Tok, diag::ext_gnu_indirect_goto);
1643 SourceLocation StarLoc = ConsumeToken();
John McCall60d7b3a2010-08-24 06:29:42 +00001644 ExprResult R(ParseExpression());
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001645 if (R.isInvalid()) { // Skip to the semicolon, but don't consume it.
Reid Spencer5f016e22007-07-11 17:01:13 +00001646 SkipUntil(tok::semi, false, true);
Sebastian Redl9a920342008-12-11 19:48:14 +00001647 return StmtError();
Reid Spencer5f016e22007-07-11 17:01:13 +00001648 }
John McCall9ae2f072010-08-23 23:25:46 +00001649 Res = Actions.ActOnIndirectGotoStmt(GotoLoc, StarLoc, R.take());
Chris Lattner95cfb852007-07-22 04:13:33 +00001650 } else {
1651 Diag(Tok, diag::err_expected_ident);
Sebastian Redl9a920342008-12-11 19:48:14 +00001652 return StmtError();
Reid Spencer5f016e22007-07-11 17:01:13 +00001653 }
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001654
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00001655 return Res;
Reid Spencer5f016e22007-07-11 17:01:13 +00001656}
1657
1658/// ParseContinueStatement
1659/// jump-statement:
1660/// 'continue' ';'
1661///
1662/// Note: this lets the caller parse the end ';'.
1663///
Richard Smith534986f2012-04-14 00:33:13 +00001664StmtResult Parser::ParseContinueStatement() {
Reid Spencer5f016e22007-07-11 17:01:13 +00001665 SourceLocation ContinueLoc = ConsumeToken(); // eat the 'continue'.
Douglas Gregor23c94db2010-07-02 17:43:08 +00001666 return Actions.ActOnContinueStmt(ContinueLoc, getCurScope());
Reid Spencer5f016e22007-07-11 17:01:13 +00001667}
1668
1669/// ParseBreakStatement
1670/// jump-statement:
1671/// 'break' ';'
1672///
1673/// Note: this lets the caller parse the end ';'.
1674///
Richard Smith534986f2012-04-14 00:33:13 +00001675StmtResult Parser::ParseBreakStatement() {
Reid Spencer5f016e22007-07-11 17:01:13 +00001676 SourceLocation BreakLoc = ConsumeToken(); // eat the 'break'.
Douglas Gregor23c94db2010-07-02 17:43:08 +00001677 return Actions.ActOnBreakStmt(BreakLoc, getCurScope());
Reid Spencer5f016e22007-07-11 17:01:13 +00001678}
1679
1680/// ParseReturnStatement
1681/// jump-statement:
1682/// 'return' expression[opt] ';'
Richard Smith534986f2012-04-14 00:33:13 +00001683StmtResult Parser::ParseReturnStatement() {
Chris Lattner4e1d99a2007-10-09 17:41:39 +00001684 assert(Tok.is(tok::kw_return) && "Not a return stmt!");
Reid Spencer5f016e22007-07-11 17:01:13 +00001685 SourceLocation ReturnLoc = ConsumeToken(); // eat the 'return'.
Sebastian Redl9a920342008-12-11 19:48:14 +00001686
John McCall60d7b3a2010-08-24 06:29:42 +00001687 ExprResult R;
Chris Lattner4e1d99a2007-10-09 17:41:39 +00001688 if (Tok.isNot(tok::semi)) {
Douglas Gregor5ac3bdb2010-05-30 01:49:25 +00001689 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +00001690 Actions.CodeCompleteReturn(getCurScope());
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00001691 cutOffParsing();
Douglas Gregor5ac3bdb2010-05-30 01:49:25 +00001692 return StmtError();
1693 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001694
David Blaikie4e4d0842012-03-11 07:00:24 +00001695 if (Tok.is(tok::l_brace) && getLangOpts().CPlusPlus) {
Douglas Gregor6f4596c2011-03-11 23:10:44 +00001696 R = ParseInitializer();
Richard Smith7fe62082011-10-15 05:09:34 +00001697 if (R.isUsable())
Richard Smith80ad52f2013-01-02 11:42:31 +00001698 Diag(R.get()->getLocStart(), getLangOpts().CPlusPlus11 ?
Richard Smith7fe62082011-10-15 05:09:34 +00001699 diag::warn_cxx98_compat_generalized_initializer_lists :
1700 diag::ext_generalized_initializer_lists)
Douglas Gregor6f4596c2011-03-11 23:10:44 +00001701 << R.get()->getSourceRange();
1702 } else
1703 R = ParseExpression();
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001704 if (R.isInvalid()) { // Skip to the semicolon, but don't consume it.
Reid Spencer5f016e22007-07-11 17:01:13 +00001705 SkipUntil(tok::semi, false, true);
Sebastian Redl9a920342008-12-11 19:48:14 +00001706 return StmtError();
Reid Spencer5f016e22007-07-11 17:01:13 +00001707 }
1708 }
John McCall9ae2f072010-08-23 23:25:46 +00001709 return Actions.ActOnReturnStmt(ReturnLoc, R.take());
Reid Spencer5f016e22007-07-11 17:01:13 +00001710}
1711
John McCallaeeacf72013-05-03 00:10:13 +00001712namespace {
1713 class ClangAsmParserCallback : public llvm::MCAsmParserSemaCallback {
1714 Parser &TheParser;
1715 SourceLocation AsmLoc;
1716 StringRef AsmString;
1717
1718 /// The tokens we streamed into AsmString and handed off to MC.
1719 ArrayRef<Token> AsmToks;
1720
1721 /// The offset of each token in AsmToks within AsmString.
1722 ArrayRef<unsigned> AsmTokOffsets;
1723
1724 public:
1725 ClangAsmParserCallback(Parser &P, SourceLocation Loc,
1726 StringRef AsmString,
1727 ArrayRef<Token> Toks,
1728 ArrayRef<unsigned> Offsets)
1729 : TheParser(P), AsmLoc(Loc), AsmString(AsmString),
1730 AsmToks(Toks), AsmTokOffsets(Offsets) {
1731 assert(AsmToks.size() == AsmTokOffsets.size());
1732 }
1733
1734 void *LookupInlineAsmIdentifier(StringRef &LineBuf,
1735 InlineAsmIdentifierInfo &Info,
1736 bool IsUnevaluatedContext) {
1737 // Collect the desired tokens.
1738 SmallVector<Token, 16> LineToks;
1739 const Token *FirstOrigToken = 0;
1740 findTokensForString(LineBuf, LineToks, FirstOrigToken);
1741
1742 unsigned NumConsumedToks;
1743 ExprResult Result =
1744 TheParser.ParseMSAsmIdentifier(LineToks, NumConsumedToks, &Info,
1745 IsUnevaluatedContext);
1746
1747 // If we consumed the entire line, tell MC that.
1748 // Also do this if we consumed nothing as a way of reporting failure.
1749 if (NumConsumedToks == 0 || NumConsumedToks == LineToks.size()) {
1750 // By not modifying LineBuf, we're implicitly consuming it all.
1751
1752 // Otherwise, consume up to the original tokens.
1753 } else {
1754 assert(FirstOrigToken && "not using original tokens?");
1755
1756 // Since we're using original tokens, apply that offset.
1757 assert(FirstOrigToken[NumConsumedToks].getLocation()
1758 == LineToks[NumConsumedToks].getLocation());
1759 unsigned FirstIndex = FirstOrigToken - AsmToks.begin();
1760 unsigned LastIndex = FirstIndex + NumConsumedToks - 1;
1761
1762 // The total length we've consumed is the relative offset
1763 // of the last token we consumed plus its length.
1764 unsigned TotalOffset = (AsmTokOffsets[LastIndex]
1765 + AsmToks[LastIndex].getLength()
1766 - AsmTokOffsets[FirstIndex]);
1767 LineBuf = LineBuf.substr(0, TotalOffset);
1768 }
1769
1770 // Initialize the "decl" with the lookup result.
1771 Info.OpDecl = static_cast<void*>(Result.take());
1772 return Info.OpDecl;
1773 }
1774
1775 bool LookupInlineAsmField(StringRef Base, StringRef Member,
1776 unsigned &Offset) {
1777 return TheParser.getActions().LookupInlineAsmField(Base, Member,
1778 Offset, AsmLoc);
1779 }
1780
1781 static void DiagHandlerCallback(const llvm::SMDiagnostic &D,
1782 void *Context) {
1783 ((ClangAsmParserCallback*) Context)->handleDiagnostic(D);
1784 }
1785
1786 private:
1787 /// Collect the appropriate tokens for the given string.
1788 void findTokensForString(StringRef Str, SmallVectorImpl<Token> &TempToks,
1789 const Token *&FirstOrigToken) const {
1790 // For now, assert that the string we're working with is a substring
1791 // of what we gave to MC. This lets us use the original tokens.
1792 assert(!std::less<const char*>()(Str.begin(), AsmString.begin()) &&
1793 !std::less<const char*>()(AsmString.end(), Str.end()));
1794
1795 // Try to find a token whose offset matches the first token.
1796 unsigned FirstCharOffset = Str.begin() - AsmString.begin();
1797 const unsigned *FirstTokOffset
1798 = std::lower_bound(AsmTokOffsets.begin(), AsmTokOffsets.end(),
1799 FirstCharOffset);
1800
1801 // For now, assert that the start of the string exactly
1802 // corresponds to the start of a token.
1803 assert(*FirstTokOffset == FirstCharOffset);
1804
1805 // Use all the original tokens for this line. (We assume the
1806 // end of the line corresponds cleanly to a token break.)
1807 unsigned FirstTokIndex = FirstTokOffset - AsmTokOffsets.begin();
1808 FirstOrigToken = &AsmToks[FirstTokIndex];
1809 unsigned LastCharOffset = Str.end() - AsmString.begin();
1810 for (unsigned i = FirstTokIndex, e = AsmTokOffsets.size(); i != e; ++i) {
1811 if (AsmTokOffsets[i] >= LastCharOffset) break;
1812 TempToks.push_back(AsmToks[i]);
1813 }
1814 }
1815
1816 void handleDiagnostic(const llvm::SMDiagnostic &D) {
1817 // Compute an offset into the inline asm buffer.
1818 // FIXME: This isn't right if .macro is involved (but hopefully, no
1819 // real-world code does that).
1820 const llvm::SourceMgr &LSM = *D.getSourceMgr();
1821 const llvm::MemoryBuffer *LBuf =
1822 LSM.getMemoryBuffer(LSM.FindBufferContainingLoc(D.getLoc()));
1823 unsigned Offset = D.getLoc().getPointer() - LBuf->getBufferStart();
1824
1825 // Figure out which token that offset points into.
1826 const unsigned *TokOffsetPtr =
1827 std::lower_bound(AsmTokOffsets.begin(), AsmTokOffsets.end(), Offset);
1828 unsigned TokIndex = TokOffsetPtr - AsmTokOffsets.begin();
1829 unsigned TokOffset = *TokOffsetPtr;
1830
1831 // If we come up with an answer which seems sane, use it; otherwise,
1832 // just point at the __asm keyword.
1833 // FIXME: Assert the answer is sane once we handle .macro correctly.
1834 SourceLocation Loc = AsmLoc;
1835 if (TokIndex < AsmToks.size()) {
1836 const Token &Tok = AsmToks[TokIndex];
1837 Loc = Tok.getLocation();
1838 Loc = Loc.getLocWithOffset(Offset - TokOffset);
1839 }
1840 TheParser.Diag(Loc, diag::err_inline_ms_asm_parsing)
1841 << D.getMessage();
1842 }
1843 };
1844}
1845
1846/// Parse an identifier in an MS-style inline assembly block.
1847///
1848/// \param CastInfo - a void* so that we don't have to teach Parser.h
1849/// about the actual type.
1850ExprResult Parser::ParseMSAsmIdentifier(llvm::SmallVectorImpl<Token> &LineToks,
1851 unsigned &NumLineToksConsumed,
1852 void *CastInfo,
1853 bool IsUnevaluatedContext) {
1854 llvm::InlineAsmIdentifierInfo &Info =
1855 *(llvm::InlineAsmIdentifierInfo *) CastInfo;
1856
1857 // Push a fake token on the end so that we don't overrun the token
1858 // stream. We use ';' because it expression-parsing should never
1859 // overrun it.
1860 const tok::TokenKind EndOfStream = tok::semi;
1861 Token EndOfStreamTok;
1862 EndOfStreamTok.startToken();
1863 EndOfStreamTok.setKind(EndOfStream);
1864 LineToks.push_back(EndOfStreamTok);
1865
1866 // Also copy the current token over.
1867 LineToks.push_back(Tok);
1868
1869 PP.EnterTokenStream(LineToks.begin(),
1870 LineToks.size(),
1871 /*disable macros*/ true,
1872 /*owns tokens*/ false);
1873
1874 // Clear the current token and advance to the first token in LineToks.
1875 ConsumeAnyToken();
1876
1877 // Parse an optional scope-specifier if we're in C++.
1878 CXXScopeSpec SS;
1879 if (getLangOpts().CPlusPlus) {
1880 ParseOptionalCXXScopeSpecifier(SS, ParsedType(), /*EnteringContext=*/false);
1881 }
1882
1883 // Require an identifier here.
1884 SourceLocation TemplateKWLoc;
1885 UnqualifiedId Id;
1886 bool Invalid = ParseUnqualifiedId(SS,
1887 /*EnteringContext=*/false,
1888 /*AllowDestructorName=*/false,
1889 /*AllowConstructorName=*/false,
1890 /*ObjectType=*/ ParsedType(),
1891 TemplateKWLoc,
1892 Id);
1893
1894 // If we've run into the poison token we inserted before, or there
1895 // was a parsing error, then claim the entire line.
1896 if (Invalid || Tok.is(EndOfStream)) {
1897 NumLineToksConsumed = LineToks.size() - 2;
1898
1899 // Otherwise, claim up to the start of the next token.
1900 } else {
1901 // Figure out how many tokens we are into LineToks.
1902 unsigned LineIndex = 0;
1903 while (LineToks[LineIndex].getLocation() != Tok.getLocation()) {
1904 LineIndex++;
1905 assert(LineIndex < LineToks.size() - 2); // we added two extra tokens
1906 }
1907
1908 NumLineToksConsumed = LineIndex;
1909 }
1910
1911 // Finally, restore the old parsing state by consuming all the
1912 // tokens we staged before, implicitly killing off the
1913 // token-lexer we pushed.
1914 for (unsigned n = LineToks.size() - 2 - NumLineToksConsumed; n != 0; --n) {
1915 ConsumeAnyToken();
1916 }
1917 ConsumeToken(EndOfStream);
1918
1919 // Leave LineToks in its original state.
1920 LineToks.pop_back();
1921 LineToks.pop_back();
1922
1923 // Perform the lookup.
1924 return Actions.LookupInlineAsmIdentifier(SS, TemplateKWLoc, Id, Info,
1925 IsUnevaluatedContext);
1926}
1927
1928/// Turn a sequence of our tokens back into a string that we can hand
1929/// to the MC asm parser.
1930static bool buildMSAsmString(Preprocessor &PP,
1931 SourceLocation AsmLoc,
1932 ArrayRef<Token> AsmToks,
1933 SmallVectorImpl<unsigned> &TokOffsets,
1934 SmallString<512> &Asm) {
1935 assert (!AsmToks.empty() && "Didn't expect an empty AsmToks!");
1936
1937 // Is this the start of a new assembly statement?
1938 bool isNewStatement = true;
1939
1940 for (unsigned i = 0, e = AsmToks.size(); i < e; ++i) {
1941 const Token &Tok = AsmToks[i];
1942
1943 // Start each new statement with a newline and a tab.
1944 if (!isNewStatement &&
1945 (Tok.is(tok::kw_asm) || Tok.isAtStartOfLine())) {
1946 Asm += "\n\t";
1947 isNewStatement = true;
1948 }
1949
1950 // Preserve the existence of leading whitespace except at the
1951 // start of a statement.
1952 if (!isNewStatement && Tok.hasLeadingSpace())
1953 Asm += ' ';
1954
1955 // Remember the offset of this token.
1956 TokOffsets.push_back(Asm.size());
1957
1958 // Don't actually write '__asm' into the assembly stream.
1959 if (Tok.is(tok::kw_asm)) {
1960 // Complain about __asm at the end of the stream.
1961 if (i + 1 == e) {
1962 PP.Diag(AsmLoc, diag::err_asm_empty);
1963 return true;
1964 }
1965
1966 continue;
1967 }
1968
1969 // Append the spelling of the token.
1970 SmallString<32> SpellingBuffer;
1971 bool SpellingInvalid = false;
1972 Asm += PP.getSpelling(Tok, SpellingBuffer, &SpellingInvalid);
1973 assert(!SpellingInvalid && "spelling was invalid after correct parse?");
1974
1975 // We are no longer at the start of a statement.
1976 isNewStatement = false;
1977 }
1978
1979 // Ensure that the buffer is null-terminated.
1980 Asm.push_back('\0');
1981 Asm.pop_back();
1982
1983 assert(TokOffsets.size() == AsmToks.size());
1984 return false;
1985}
1986
Eli Friedman3fedbe12011-09-30 01:13:51 +00001987/// ParseMicrosoftAsmStatement. When -fms-extensions/-fasm-blocks is enabled,
1988/// this routine is called to collect the tokens for an MS asm statement.
Chad Rosier8cd64b42012-06-11 20:47:18 +00001989///
1990/// [MS] ms-asm-statement:
1991/// ms-asm-block
1992/// ms-asm-block ms-asm-statement
1993///
1994/// [MS] ms-asm-block:
1995/// '__asm' ms-asm-line '\n'
1996/// '__asm' '{' ms-asm-instruction-block[opt] '}' ';'[opt]
1997///
1998/// [MS] ms-asm-instruction-block
1999/// ms-asm-line
2000/// ms-asm-line '\n' ms-asm-instruction-block
2001///
Eli Friedman3fedbe12011-09-30 01:13:51 +00002002StmtResult Parser::ParseMicrosoftAsmStatement(SourceLocation AsmLoc) {
2003 SourceManager &SrcMgr = PP.getSourceManager();
2004 SourceLocation EndLoc = AsmLoc;
Chad Rosier8cd64b42012-06-11 20:47:18 +00002005 SmallVector<Token, 4> AsmToks;
Chad Rosier21ef7112012-08-14 19:22:06 +00002006
2007 bool InBraces = false;
2008 unsigned short savedBraceCount = 0;
2009 bool InAsmComment = false;
2010 FileID FID;
2011 unsigned LineNo = 0;
2012 unsigned NumTokensRead = 0;
2013 SourceLocation LBraceLoc;
2014
2015 if (Tok.is(tok::l_brace)) {
2016 // Braced inline asm: consume the opening brace.
2017 InBraces = true;
2018 savedBraceCount = BraceCount;
2019 EndLoc = LBraceLoc = ConsumeBrace();
2020 ++NumTokensRead;
2021 } else {
2022 // Single-line inline asm; compute which line it is on.
2023 std::pair<FileID, unsigned> ExpAsmLoc =
2024 SrcMgr.getDecomposedExpansionLoc(EndLoc);
2025 FID = ExpAsmLoc.first;
2026 LineNo = SrcMgr.getLineNumber(FID, ExpAsmLoc.second);
2027 }
2028
2029 SourceLocation TokLoc = Tok.getLocation();
Eli Friedman3fedbe12011-09-30 01:13:51 +00002030 do {
Chad Rosier21ef7112012-08-14 19:22:06 +00002031 // If we hit EOF, we're done, period.
2032 if (Tok.is(tok::eof))
Eli Friedman3fedbe12011-09-30 01:13:51 +00002033 break;
Chad Rosier21ef7112012-08-14 19:22:06 +00002034
Chad Rosier21ef7112012-08-14 19:22:06 +00002035 if (!InAsmComment && Tok.is(tok::semi)) {
2036 // A semicolon in an asm is the start of a comment.
2037 InAsmComment = true;
2038 if (InBraces) {
2039 // Compute which line the comment is on.
2040 std::pair<FileID, unsigned> ExpSemiLoc =
2041 SrcMgr.getDecomposedExpansionLoc(TokLoc);
2042 FID = ExpSemiLoc.first;
2043 LineNo = SrcMgr.getLineNumber(FID, ExpSemiLoc.second);
2044 }
2045 } else if (!InBraces || InAsmComment) {
2046 // If end-of-line is significant, check whether this token is on a
2047 // new line.
2048 std::pair<FileID, unsigned> ExpLoc =
2049 SrcMgr.getDecomposedExpansionLoc(TokLoc);
2050 if (ExpLoc.first != FID ||
2051 SrcMgr.getLineNumber(ExpLoc.first, ExpLoc.second) != LineNo) {
2052 // If this is a single-line __asm, we're done.
2053 if (!InBraces)
2054 break;
2055 // We're no longer in a comment.
2056 InAsmComment = false;
2057 } else if (!InAsmComment && Tok.is(tok::r_brace)) {
2058 // Single-line asm always ends when a closing brace is seen.
2059 // FIXME: This is compatible with Apple gcc's -fasm-blocks; what
2060 // does MSVC do here?
2061 break;
2062 }
2063 }
2064 if (!InAsmComment && InBraces && Tok.is(tok::r_brace) &&
2065 BraceCount == (savedBraceCount + 1)) {
2066 // Consume the closing brace, and finish
2067 EndLoc = ConsumeBrace();
2068 break;
2069 }
2070
2071 // Consume the next token; make sure we don't modify the brace count etc.
2072 // if we are in a comment.
2073 EndLoc = TokLoc;
2074 if (InAsmComment)
2075 PP.Lex(Tok);
2076 else {
2077 AsmToks.push_back(Tok);
2078 ConsumeAnyToken();
2079 }
2080 TokLoc = Tok.getLocation();
2081 ++NumTokensRead;
Eli Friedman3fedbe12011-09-30 01:13:51 +00002082 } while (1);
Chad Rosier8cd64b42012-06-11 20:47:18 +00002083
Chad Rosier21ef7112012-08-14 19:22:06 +00002084 if (InBraces && BraceCount != savedBraceCount) {
2085 // __asm without closing brace (this can happen at EOF).
2086 Diag(Tok, diag::err_expected_rbrace);
2087 Diag(LBraceLoc, diag::note_matching) << "{";
2088 return StmtError();
2089 } else if (NumTokensRead == 0) {
2090 // Empty __asm.
2091 Diag(Tok, diag::err_expected_lbrace);
2092 return StmtError();
2093 }
2094
John McCallaeeacf72013-05-03 00:10:13 +00002095 // Okay, prepare to use MC to parse the assembly.
2096 SmallVector<StringRef, 4> ConstraintRefs;
2097 SmallVector<Expr*, 4> Exprs;
2098 SmallVector<StringRef, 4> ClobberRefs;
2099
2100 // We need an actual supported target.
2101 llvm::Triple TheTriple = Actions.Context.getTargetInfo().getTriple();
2102 llvm::Triple::ArchType ArchTy = TheTriple.getArch();
Alp Tokerc94b5ae2013-10-30 15:07:10 +00002103 const std::string &TT = TheTriple.getTriple();
2104 const llvm::Target *TheTarget = 0;
John McCallaeeacf72013-05-03 00:10:13 +00002105 bool UnsupportedArch = (ArchTy != llvm::Triple::x86 &&
2106 ArchTy != llvm::Triple::x86_64);
Alp Tokerc94b5ae2013-10-30 15:07:10 +00002107 if (UnsupportedArch) {
John McCallaeeacf72013-05-03 00:10:13 +00002108 Diag(AsmLoc, diag::err_msasm_unsupported_arch) << TheTriple.getArchName();
Alp Tokerc94b5ae2013-10-30 15:07:10 +00002109 } else {
2110 std::string Error;
2111 TheTarget = llvm::TargetRegistry::lookupTarget(TT, Error);
2112 if (!TheTarget)
2113 Diag(AsmLoc, diag::err_msasm_unable_to_create_target) << Error;
2114 }
Alp Toker25973152013-10-30 14:29:28 +00002115
John McCallaeeacf72013-05-03 00:10:13 +00002116 // If we don't support assembly, or the assembly is empty, we don't
2117 // need to instantiate the AsmParser, etc.
Alp Tokerc94b5ae2013-10-30 15:07:10 +00002118 if (!TheTarget || AsmToks.empty()) {
John McCallaeeacf72013-05-03 00:10:13 +00002119 return Actions.ActOnMSAsmStmt(AsmLoc, LBraceLoc, AsmToks, StringRef(),
2120 /*NumOutputs*/ 0, /*NumInputs*/ 0,
2121 ConstraintRefs, ClobberRefs, Exprs, EndLoc);
2122 }
2123
2124 // Expand the tokens into a string buffer.
2125 SmallString<512> AsmString;
2126 SmallVector<unsigned, 8> TokOffsets;
2127 if (buildMSAsmString(PP, AsmLoc, AsmToks, TokOffsets, AsmString))
2128 return StmtError();
2129
John McCallaeeacf72013-05-03 00:10:13 +00002130 OwningPtr<llvm::MCRegisterInfo> MRI(TheTarget->createMCRegInfo(TT));
Rafael Espindola1fcf31e2013-05-13 01:24:18 +00002131 OwningPtr<llvm::MCAsmInfo> MAI(TheTarget->createMCAsmInfo(*MRI, TT));
Joey Gouly12981a72013-09-12 10:59:24 +00002132 // Get the instruction descriptor.
2133 const llvm::MCInstrInfo *MII = TheTarget->createMCInstrInfo();
John McCallaeeacf72013-05-03 00:10:13 +00002134 OwningPtr<llvm::MCObjectFileInfo> MOFI(new llvm::MCObjectFileInfo());
2135 OwningPtr<llvm::MCSubtargetInfo>
2136 STI(TheTarget->createMCSubtargetInfo(TT, "", ""));
2137
2138 llvm::SourceMgr TempSrcMgr;
Bill Wendling4b7bae32013-06-18 07:22:05 +00002139 llvm::MCContext Ctx(MAI.get(), MRI.get(), MOFI.get(), &TempSrcMgr);
John McCallaeeacf72013-05-03 00:10:13 +00002140 llvm::MemoryBuffer *Buffer =
2141 llvm::MemoryBuffer::getMemBuffer(AsmString, "<MS inline asm>");
2142
2143 // Tell SrcMgr about this buffer, which is what the parser will pick up.
2144 TempSrcMgr.AddNewSourceBuffer(Buffer, llvm::SMLoc());
2145
2146 OwningPtr<llvm::MCStreamer> Str(createNullStreamer(Ctx));
2147 OwningPtr<llvm::MCAsmParser>
2148 Parser(createMCAsmParser(TempSrcMgr, Ctx, *Str.get(), *MAI));
2149 OwningPtr<llvm::MCTargetAsmParser>
Joey Gouly12981a72013-09-12 10:59:24 +00002150 TargetParser(TheTarget->createMCAsmParser(*STI, *Parser, *MII));
John McCallaeeacf72013-05-03 00:10:13 +00002151
John McCallaeeacf72013-05-03 00:10:13 +00002152 llvm::MCInstPrinter *IP =
2153 TheTarget->createMCInstPrinter(1, *MAI, *MII, *MRI, *STI);
2154
2155 // Change to the Intel dialect.
2156 Parser->setAssemblerDialect(1);
2157 Parser->setTargetParser(*TargetParser.get());
2158 Parser->setParsingInlineAsm(true);
2159 TargetParser->setParsingInlineAsm(true);
2160
2161 ClangAsmParserCallback Callback(*this, AsmLoc, AsmString,
2162 AsmToks, TokOffsets);
2163 TargetParser->setSemaCallback(&Callback);
2164 TempSrcMgr.setDiagHandler(ClangAsmParserCallback::DiagHandlerCallback,
2165 &Callback);
2166
2167 unsigned NumOutputs;
2168 unsigned NumInputs;
2169 std::string AsmStringIR;
2170 SmallVector<std::pair<void *, bool>, 4> OpExprs;
2171 SmallVector<std::string, 4> Constraints;
2172 SmallVector<std::string, 4> Clobbers;
2173 if (Parser->parseMSInlineAsm(AsmLoc.getPtrEncoding(), AsmStringIR,
2174 NumOutputs, NumInputs, OpExprs, Constraints,
2175 Clobbers, MII, IP, Callback))
2176 return StmtError();
2177
2178 // Build the vector of clobber StringRefs.
2179 unsigned NumClobbers = Clobbers.size();
2180 ClobberRefs.resize(NumClobbers);
2181 for (unsigned i = 0; i != NumClobbers; ++i)
2182 ClobberRefs[i] = StringRef(Clobbers[i]);
2183
2184 // Recast the void pointers and build the vector of constraint StringRefs.
2185 unsigned NumExprs = NumOutputs + NumInputs;
2186 ConstraintRefs.resize(NumExprs);
2187 Exprs.resize(NumExprs);
2188 for (unsigned i = 0, e = NumExprs; i != e; ++i) {
2189 Expr *OpExpr = static_cast<Expr *>(OpExprs[i].first);
2190 if (!OpExpr)
2191 return StmtError();
2192
2193 // Need address of variable.
2194 if (OpExprs[i].second)
2195 OpExpr = Actions.BuildUnaryOp(getCurScope(), AsmLoc, UO_AddrOf, OpExpr)
2196 .take();
2197
2198 ConstraintRefs[i] = StringRef(Constraints[i]);
2199 Exprs[i] = OpExpr;
2200 }
2201
Chad Rosier8f726de2012-08-06 20:03:45 +00002202 // FIXME: We should be passing source locations for better diagnostics.
John McCallaeeacf72013-05-03 00:10:13 +00002203 return Actions.ActOnMSAsmStmt(AsmLoc, LBraceLoc, AsmToks, AsmStringIR,
2204 NumOutputs, NumInputs,
2205 ConstraintRefs, ClobberRefs, Exprs, EndLoc);
Steve Naroffd62701b2008-02-07 03:50:06 +00002206}
2207
Reid Spencer5f016e22007-07-11 17:01:13 +00002208/// ParseAsmStatement - Parse a GNU extended asm statement.
Steve Naroff5f8aa692008-02-11 23:15:56 +00002209/// asm-statement:
2210/// gnu-asm-statement
2211/// ms-asm-statement
2212///
2213/// [GNU] gnu-asm-statement:
Reid Spencer5f016e22007-07-11 17:01:13 +00002214/// 'asm' type-qualifier[opt] '(' asm-argument ')' ';'
2215///
2216/// [GNU] asm-argument:
2217/// asm-string-literal
2218/// asm-string-literal ':' asm-operands[opt]
2219/// asm-string-literal ':' asm-operands[opt] ':' asm-operands[opt]
2220/// asm-string-literal ':' asm-operands[opt] ':' asm-operands[opt]
2221/// ':' asm-clobbers
2222///
2223/// [GNU] asm-clobbers:
2224/// asm-string-literal
2225/// asm-clobbers ',' asm-string-literal
2226///
John McCall60d7b3a2010-08-24 06:29:42 +00002227StmtResult Parser::ParseAsmStatement(bool &msAsm) {
Chris Lattner4e1d99a2007-10-09 17:41:39 +00002228 assert(Tok.is(tok::kw_asm) && "Not an asm stmt");
Chris Lattnerfe795952007-10-29 04:04:16 +00002229 SourceLocation AsmLoc = ConsumeToken();
Sebastian Redl9a920342008-12-11 19:48:14 +00002230
Chad Rosier15490fd2012-12-05 21:08:21 +00002231 if (getLangOpts().AsmBlocks && Tok.isNot(tok::l_paren) &&
Chad Rosierb6604462012-07-10 21:35:27 +00002232 !isTypeQualifier()) {
Steve Naroffd62701b2008-02-07 03:50:06 +00002233 msAsm = true;
Eli Friedman3fedbe12011-09-30 01:13:51 +00002234 return ParseMicrosoftAsmStatement(AsmLoc);
Steve Naroffd62701b2008-02-07 03:50:06 +00002235 }
John McCall0b7e6782011-03-24 11:26:52 +00002236 DeclSpec DS(AttrFactory);
Reid Spencer5f016e22007-07-11 17:01:13 +00002237 SourceLocation Loc = Tok.getLocation();
Sean Huntbbd37c62009-11-21 08:43:09 +00002238 ParseTypeQualifierListOpt(DS, true, false);
Sebastian Redl9a920342008-12-11 19:48:14 +00002239
Reid Spencer5f016e22007-07-11 17:01:13 +00002240 // GNU asms accept, but warn, about type-qualifiers other than volatile.
2241 if (DS.getTypeQualifiers() & DeclSpec::TQ_const)
Chris Lattner1ab3b962008-11-18 07:48:38 +00002242 Diag(Loc, diag::w_asm_qualifier_ignored) << "const";
Reid Spencer5f016e22007-07-11 17:01:13 +00002243 if (DS.getTypeQualifiers() & DeclSpec::TQ_restrict)
Chris Lattner1ab3b962008-11-18 07:48:38 +00002244 Diag(Loc, diag::w_asm_qualifier_ignored) << "restrict";
Richard Smith4cf4a5e2013-03-28 01:55:44 +00002245 // FIXME: Once GCC supports _Atomic, check whether it permits it here.
2246 if (DS.getTypeQualifiers() & DeclSpec::TQ_atomic)
2247 Diag(Loc, diag::w_asm_qualifier_ignored) << "_Atomic";
Sebastian Redl9a920342008-12-11 19:48:14 +00002248
Reid Spencer5f016e22007-07-11 17:01:13 +00002249 // Remember if this was a volatile asm.
Anders Carlsson39c47b52007-11-23 23:12:25 +00002250 bool isVolatile = DS.getTypeQualifiers() & DeclSpec::TQ_volatile;
Chris Lattner4e1d99a2007-10-09 17:41:39 +00002251 if (Tok.isNot(tok::l_paren)) {
Chris Lattner1ab3b962008-11-18 07:48:38 +00002252 Diag(Tok, diag::err_expected_lparen_after) << "asm";
Reid Spencer5f016e22007-07-11 17:01:13 +00002253 SkipUntil(tok::r_paren);
Sebastian Redl9a920342008-12-11 19:48:14 +00002254 return StmtError();
Reid Spencer5f016e22007-07-11 17:01:13 +00002255 }
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002256 BalancedDelimiterTracker T(*this, tok::l_paren);
2257 T.consumeOpen();
Sebastian Redl9a920342008-12-11 19:48:14 +00002258
John McCall60d7b3a2010-08-24 06:29:42 +00002259 ExprResult AsmString(ParseAsmStringLiteral());
Ted Kremenek320fa4b2011-12-02 01:30:14 +00002260 if (AsmString.isInvalid()) {
Richard Smith99831e42012-03-06 03:21:47 +00002261 // Consume up to and including the closing paren.
2262 T.skipToEnd();
Sebastian Redl9a920342008-12-11 19:48:14 +00002263 return StmtError();
Ted Kremenek320fa4b2011-12-02 01:30:14 +00002264 }
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00002265
Chris Lattner5f9e2722011-07-23 10:55:15 +00002266 SmallVector<IdentifierInfo *, 4> Names;
Benjamin Kramer4e28d9e2012-08-23 22:51:59 +00002267 ExprVector Constraints;
2268 ExprVector Exprs;
2269 ExprVector Clobbers;
Reid Spencer5f016e22007-07-11 17:01:13 +00002270
Anders Carlssondfab34a2008-02-05 23:03:50 +00002271 if (Tok.is(tok::r_paren)) {
Chris Lattner64cb4752009-12-20 23:00:41 +00002272 // We have a simple asm expression like 'asm("foo")'.
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002273 T.consumeClose();
Chad Rosierdf5faf52012-08-25 00:11:56 +00002274 return Actions.ActOnGCCAsmStmt(AsmLoc, /*isSimple*/ true, isVolatile,
2275 /*NumOutputs*/ 0, /*NumInputs*/ 0, 0,
2276 Constraints, Exprs, AsmString.take(),
2277 Clobbers, T.getCloseLocation());
Reid Spencer5f016e22007-07-11 17:01:13 +00002278 }
Sebastian Redleffa8d12008-12-10 00:02:53 +00002279
Chris Lattner64cb4752009-12-20 23:00:41 +00002280 // Parse Outputs, if present.
Chris Lattner64056462009-12-20 23:08:04 +00002281 bool AteExtraColon = false;
2282 if (Tok.is(tok::colon) || Tok.is(tok::coloncolon)) {
2283 // In C++ mode, parse "::" like ": :".
2284 AteExtraColon = Tok.is(tok::coloncolon);
Chris Lattner64cb4752009-12-20 23:00:41 +00002285 ConsumeToken();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002286
Chris Lattner64056462009-12-20 23:08:04 +00002287 if (!AteExtraColon &&
2288 ParseAsmOperandsOpt(Names, Constraints, Exprs))
Chris Lattner64cb4752009-12-20 23:00:41 +00002289 return StmtError();
2290 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002291
Chris Lattner64cb4752009-12-20 23:00:41 +00002292 unsigned NumOutputs = Names.size();
2293
2294 // Parse Inputs, if present.
Chris Lattner64056462009-12-20 23:08:04 +00002295 if (AteExtraColon ||
2296 Tok.is(tok::colon) || Tok.is(tok::coloncolon)) {
2297 // In C++ mode, parse "::" like ": :".
2298 if (AteExtraColon)
2299 AteExtraColon = false;
2300 else {
2301 AteExtraColon = Tok.is(tok::coloncolon);
2302 ConsumeToken();
2303 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002304
Chris Lattner64056462009-12-20 23:08:04 +00002305 if (!AteExtraColon &&
2306 ParseAsmOperandsOpt(Names, Constraints, Exprs))
Chris Lattner64cb4752009-12-20 23:00:41 +00002307 return StmtError();
2308 }
2309
2310 assert(Names.size() == Constraints.size() &&
2311 Constraints.size() == Exprs.size() &&
2312 "Input operand size mismatch!");
2313
2314 unsigned NumInputs = Names.size() - NumOutputs;
2315
2316 // Parse the clobbers, if present.
Chris Lattner64056462009-12-20 23:08:04 +00002317 if (AteExtraColon || Tok.is(tok::colon)) {
2318 if (!AteExtraColon)
2319 ConsumeToken();
Chris Lattner64cb4752009-12-20 23:00:41 +00002320
Chandler Carruth102e1b62010-07-22 07:11:21 +00002321 // Parse the asm-string list for clobbers if present.
2322 if (Tok.isNot(tok::r_paren)) {
2323 while (1) {
John McCall60d7b3a2010-08-24 06:29:42 +00002324 ExprResult Clobber(ParseAsmStringLiteral());
Chris Lattner64cb4752009-12-20 23:00:41 +00002325
Chandler Carruth102e1b62010-07-22 07:11:21 +00002326 if (Clobber.isInvalid())
2327 break;
Chris Lattner64cb4752009-12-20 23:00:41 +00002328
Chandler Carruth102e1b62010-07-22 07:11:21 +00002329 Clobbers.push_back(Clobber.release());
Chris Lattner64cb4752009-12-20 23:00:41 +00002330
Chandler Carruth102e1b62010-07-22 07:11:21 +00002331 if (Tok.isNot(tok::comma)) break;
2332 ConsumeToken();
2333 }
Chris Lattner64cb4752009-12-20 23:00:41 +00002334 }
2335 }
2336
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002337 T.consumeClose();
Chad Rosierdf5faf52012-08-25 00:11:56 +00002338 return Actions.ActOnGCCAsmStmt(AsmLoc, false, isVolatile, NumOutputs,
2339 NumInputs, Names.data(), Constraints, Exprs,
2340 AsmString.take(), Clobbers,
2341 T.getCloseLocation());
Reid Spencer5f016e22007-07-11 17:01:13 +00002342}
2343
2344/// ParseAsmOperands - Parse the asm-operands production as used by
Chris Lattner64cb4752009-12-20 23:00:41 +00002345/// asm-statement, assuming the leading ':' token was eaten.
Reid Spencer5f016e22007-07-11 17:01:13 +00002346///
2347/// [GNU] asm-operands:
2348/// asm-operand
2349/// asm-operands ',' asm-operand
2350///
2351/// [GNU] asm-operand:
2352/// asm-string-literal '(' expression ')'
2353/// '[' identifier ']' asm-string-literal '(' expression ')'
2354///
Daniel Dunbar5ffe14c2009-10-18 20:26:27 +00002355//
2356// FIXME: Avoid unnecessary std::string trashing.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002357bool Parser::ParseAsmOperandsOpt(SmallVectorImpl<IdentifierInfo *> &Names,
Richard Trieuf81e5a92011-09-09 02:00:50 +00002358 SmallVectorImpl<Expr *> &Constraints,
2359 SmallVectorImpl<Expr *> &Exprs) {
Reid Spencer5f016e22007-07-11 17:01:13 +00002360 // 'asm-operands' isn't present?
Chris Lattner4e1d99a2007-10-09 17:41:39 +00002361 if (!isTokenStringLiteral() && Tok.isNot(tok::l_square))
Anders Carlsson8bd36fc2008-02-09 19:57:29 +00002362 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00002363
2364 while (1) {
Reid Spencer5f016e22007-07-11 17:01:13 +00002365 // Read the [id] if present.
Chris Lattner4e1d99a2007-10-09 17:41:39 +00002366 if (Tok.is(tok::l_square)) {
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002367 BalancedDelimiterTracker T(*this, tok::l_square);
2368 T.consumeOpen();
Mike Stump1eb44332009-09-09 15:08:12 +00002369
Chris Lattner4e1d99a2007-10-09 17:41:39 +00002370 if (Tok.isNot(tok::identifier)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00002371 Diag(Tok, diag::err_expected_ident);
2372 SkipUntil(tok::r_paren);
Anders Carlsson8bd36fc2008-02-09 19:57:29 +00002373 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +00002374 }
Mike Stump1eb44332009-09-09 15:08:12 +00002375
Anders Carlssonb235fc22007-11-22 01:36:19 +00002376 IdentifierInfo *II = Tok.getIdentifierInfo();
Chris Lattner69efba72007-10-29 04:06:22 +00002377 ConsumeToken();
Anders Carlssonb235fc22007-11-22 01:36:19 +00002378
Anders Carlssonff93dbd2010-01-30 22:25:16 +00002379 Names.push_back(II);
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002380 T.consumeClose();
Anders Carlssonb235fc22007-11-22 01:36:19 +00002381 } else
Anders Carlssonff93dbd2010-01-30 22:25:16 +00002382 Names.push_back(0);
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00002383
John McCall60d7b3a2010-08-24 06:29:42 +00002384 ExprResult Constraint(ParseAsmStringLiteral());
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00002385 if (Constraint.isInvalid()) {
Anders Carlssonb235fc22007-11-22 01:36:19 +00002386 SkipUntil(tok::r_paren);
Anders Carlsson8bd36fc2008-02-09 19:57:29 +00002387 return true;
Anders Carlssonb235fc22007-11-22 01:36:19 +00002388 }
Sebastian Redleffa8d12008-12-10 00:02:53 +00002389 Constraints.push_back(Constraint.release());
Reid Spencer5f016e22007-07-11 17:01:13 +00002390
Chris Lattner4e1d99a2007-10-09 17:41:39 +00002391 if (Tok.isNot(tok::l_paren)) {
Chris Lattner1ab3b962008-11-18 07:48:38 +00002392 Diag(Tok, diag::err_expected_lparen_after) << "asm operand";
Reid Spencer5f016e22007-07-11 17:01:13 +00002393 SkipUntil(tok::r_paren);
Anders Carlsson8bd36fc2008-02-09 19:57:29 +00002394 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +00002395 }
Sebastian Redleffa8d12008-12-10 00:02:53 +00002396
Reid Spencer5f016e22007-07-11 17:01:13 +00002397 // Read the parenthesized expression.
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002398 BalancedDelimiterTracker T(*this, tok::l_paren);
2399 T.consumeOpen();
John McCall60d7b3a2010-08-24 06:29:42 +00002400 ExprResult Res(ParseExpression());
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002401 T.consumeClose();
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00002402 if (Res.isInvalid()) {
Reid Spencer5f016e22007-07-11 17:01:13 +00002403 SkipUntil(tok::r_paren);
Anders Carlsson8bd36fc2008-02-09 19:57:29 +00002404 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +00002405 }
Sebastian Redleffa8d12008-12-10 00:02:53 +00002406 Exprs.push_back(Res.release());
Reid Spencer5f016e22007-07-11 17:01:13 +00002407 // Eat the comma and continue parsing if it exists.
Anders Carlsson8bd36fc2008-02-09 19:57:29 +00002408 if (Tok.isNot(tok::comma)) return false;
Reid Spencer5f016e22007-07-11 17:01:13 +00002409 ConsumeToken();
2410 }
2411}
Fariborz Jahanianf9ed3152007-11-08 19:01:26 +00002412
Douglas Gregorc9977d02011-03-16 17:05:57 +00002413Decl *Parser::ParseFunctionStatementBody(Decl *Decl, ParseScope &BodyScope) {
Chris Lattner40e9bc82009-03-05 00:49:17 +00002414 assert(Tok.is(tok::l_brace));
2415 SourceLocation LBraceLoc = Tok.getLocation();
Sebastian Redld3a413d2009-04-26 20:35:05 +00002416
Argyrios Kyrtzidis1f12c472013-02-22 04:11:06 +00002417 if (SkipFunctionBodies && (!Decl || Actions.canSkipFunctionBody(Decl)) &&
Richard Smith1a5bd5d2012-11-19 21:13:18 +00002418 trySkippingFunctionBody()) {
Erik Verbruggen6a91d382012-04-12 10:11:59 +00002419 BodyScope.Exit();
Argyrios Kyrtzidis35f3f362012-12-06 18:59:10 +00002420 return Actions.ActOnSkippedFunctionBody(Decl);
Douglas Gregorc9977d02011-03-16 17:05:57 +00002421 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002422
John McCallf312b1e2010-08-26 23:41:50 +00002423 PrettyDeclStackTraceEntry CrashInfo(Actions, Decl, LBraceLoc,
2424 "parsing function body");
Mike Stump1eb44332009-09-09 15:08:12 +00002425
Fariborz Jahanianf9ed3152007-11-08 19:01:26 +00002426 // Do not enter a scope for the brace, as the arguments are in the same scope
2427 // (the function body) as the body itself. Instead, just read the statement
2428 // list and put it into a CompoundStmt for safe keeping.
John McCall60d7b3a2010-08-24 06:29:42 +00002429 StmtResult FnBody(ParseCompoundStatementBody());
Sebastian Redl61364dd2008-12-11 19:30:53 +00002430
Fariborz Jahanianf9ed3152007-11-08 19:01:26 +00002431 // If the function body could not be parsed, make a bogus compoundstmt.
Dmitri Gribenko625bb562012-02-14 22:14:32 +00002432 if (FnBody.isInvalid()) {
2433 Sema::CompoundScopeRAII CompoundScope(Actions);
Robert Wilhelmc895f4d2013-08-19 20:51:20 +00002434 FnBody = Actions.ActOnCompoundStmt(LBraceLoc, LBraceLoc, None, false);
Dmitri Gribenko625bb562012-02-14 22:14:32 +00002435 }
Sebastian Redl61364dd2008-12-11 19:30:53 +00002436
Douglas Gregorc9977d02011-03-16 17:05:57 +00002437 BodyScope.Exit();
John McCall9ae2f072010-08-23 23:25:46 +00002438 return Actions.ActOnFinishFunctionBody(Decl, FnBody.take());
Seo Sanghyeoncd5af4b2007-12-01 08:06:07 +00002439}
Sebastian Redla0fd8652008-12-21 16:41:36 +00002440
Sebastian Redld3a413d2009-04-26 20:35:05 +00002441/// ParseFunctionTryBlock - Parse a C++ function-try-block.
2442///
2443/// function-try-block:
2444/// 'try' ctor-initializer[opt] compound-statement handler-seq
2445///
Douglas Gregorc9977d02011-03-16 17:05:57 +00002446Decl *Parser::ParseFunctionTryBlock(Decl *Decl, ParseScope &BodyScope) {
Sebastian Redld3a413d2009-04-26 20:35:05 +00002447 assert(Tok.is(tok::kw_try) && "Expected 'try'");
2448 SourceLocation TryLoc = ConsumeToken();
2449
John McCallf312b1e2010-08-26 23:41:50 +00002450 PrettyDeclStackTraceEntry CrashInfo(Actions, Decl, TryLoc,
2451 "parsing function try block");
Sebastian Redld3a413d2009-04-26 20:35:05 +00002452
2453 // Constructor initializer list?
2454 if (Tok.is(tok::colon))
2455 ParseConstructorInitializer(Decl);
Douglas Gregor2eef4272011-09-07 20:36:12 +00002456 else
2457 Actions.ActOnDefaultCtorInitializers(Decl);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002458
Richard Smith1a5bd5d2012-11-19 21:13:18 +00002459 if (SkipFunctionBodies && Actions.canSkipFunctionBody(Decl) &&
2460 trySkippingFunctionBody()) {
Erik Verbruggen6a91d382012-04-12 10:11:59 +00002461 BodyScope.Exit();
Argyrios Kyrtzidis35f3f362012-12-06 18:59:10 +00002462 return Actions.ActOnSkippedFunctionBody(Decl);
Douglas Gregorc9977d02011-03-16 17:05:57 +00002463 }
Argyrios Kyrtzidis0fe53972011-01-03 22:33:06 +00002464
Sebastian Redlde1b60a2009-04-26 21:08:36 +00002465 SourceLocation LBraceLoc = Tok.getLocation();
David Blaikiec4027c82012-11-10 01:04:23 +00002466 StmtResult FnBody(ParseCXXTryBlockCommon(TryLoc, /*FnTry*/true));
Sebastian Redld3a413d2009-04-26 20:35:05 +00002467 // If we failed to parse the try-catch, we just give the function an empty
2468 // compound statement as the body.
Dmitri Gribenko625bb562012-02-14 22:14:32 +00002469 if (FnBody.isInvalid()) {
2470 Sema::CompoundScopeRAII CompoundScope(Actions);
Robert Wilhelmc895f4d2013-08-19 20:51:20 +00002471 FnBody = Actions.ActOnCompoundStmt(LBraceLoc, LBraceLoc, None, false);
Dmitri Gribenko625bb562012-02-14 22:14:32 +00002472 }
Sebastian Redld3a413d2009-04-26 20:35:05 +00002473
Douglas Gregorc9977d02011-03-16 17:05:57 +00002474 BodyScope.Exit();
John McCall9ae2f072010-08-23 23:25:46 +00002475 return Actions.ActOnFinishFunctionBody(Decl, FnBody.take());
Sebastian Redld3a413d2009-04-26 20:35:05 +00002476}
2477
Erik Verbruggen6a91d382012-04-12 10:11:59 +00002478bool Parser::trySkippingFunctionBody() {
Argyrios Kyrtzidis0fe53972011-01-03 22:33:06 +00002479 assert(Tok.is(tok::l_brace));
Erik Verbruggen6a91d382012-04-12 10:11:59 +00002480 assert(SkipFunctionBodies &&
2481 "Should only be called when SkipFunctionBodies is enabled");
Argyrios Kyrtzidis0fe53972011-01-03 22:33:06 +00002482
Argyrios Kyrtzidis81939a72012-10-31 17:29:28 +00002483 if (!PP.isCodeCompletionEnabled()) {
2484 ConsumeBrace();
2485 SkipUntil(tok::r_brace, /*StopAtSemi=*/false, /*DontConsume=*/false);
2486 return true;
2487 }
2488
Argyrios Kyrtzidis0fe53972011-01-03 22:33:06 +00002489 // We're in code-completion mode. Skip parsing for all function bodies unless
2490 // the body contains the code-completion point.
2491 TentativeParsingAction PA(*this);
2492 ConsumeBrace();
2493 if (SkipUntil(tok::r_brace, /*StopAtSemi=*/false, /*DontConsume=*/false,
Argyrios Kyrtzidis81939a72012-10-31 17:29:28 +00002494 /*StopAtCodeCompletion=*/true)) {
Argyrios Kyrtzidis0fe53972011-01-03 22:33:06 +00002495 PA.Commit();
2496 return true;
2497 }
2498
2499 PA.Revert();
2500 return false;
2501}
2502
Sebastian Redla0fd8652008-12-21 16:41:36 +00002503/// ParseCXXTryBlock - Parse a C++ try-block.
2504///
2505/// try-block:
2506/// 'try' compound-statement handler-seq
2507///
Richard Smith534986f2012-04-14 00:33:13 +00002508StmtResult Parser::ParseCXXTryBlock() {
Sebastian Redla0fd8652008-12-21 16:41:36 +00002509 assert(Tok.is(tok::kw_try) && "Expected 'try'");
2510
2511 SourceLocation TryLoc = ConsumeToken();
Sebastian Redld3a413d2009-04-26 20:35:05 +00002512 return ParseCXXTryBlockCommon(TryLoc);
2513}
2514
2515/// ParseCXXTryBlockCommon - Parse the common part of try-block and
2516/// function-try-block.
2517///
2518/// try-block:
2519/// 'try' compound-statement handler-seq
2520///
2521/// function-try-block:
2522/// 'try' ctor-initializer[opt] compound-statement handler-seq
2523///
2524/// handler-seq:
2525/// handler handler-seq[opt]
2526///
John Wiegley28bbe4b2011-04-28 01:08:34 +00002527/// [Borland] try-block:
2528/// 'try' compound-statement seh-except-block
2529/// 'try' compound-statment seh-finally-block
2530///
David Blaikiec4027c82012-11-10 01:04:23 +00002531StmtResult Parser::ParseCXXTryBlockCommon(SourceLocation TryLoc, bool FnTry) {
Sebastian Redla0fd8652008-12-21 16:41:36 +00002532 if (Tok.isNot(tok::l_brace))
2533 return StmtError(Diag(Tok, diag::err_expected_lbrace));
Sean Huntbbd37c62009-11-21 08:43:09 +00002534 // FIXME: Possible draft standard bug: attribute-specifier should be allowed?
Richard Smith534986f2012-04-14 00:33:13 +00002535
2536 StmtResult TryBlock(ParseCompoundStatement(/*isStmtExpr=*/false,
David Blaikiee5afdcf2012-11-13 18:51:45 +00002537 Scope::DeclScope | Scope::TryScope |
2538 (FnTry ? Scope::FnTryCatchScope : 0)));
Sebastian Redla0fd8652008-12-21 16:41:36 +00002539 if (TryBlock.isInvalid())
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00002540 return TryBlock;
Sebastian Redla0fd8652008-12-21 16:41:36 +00002541
John Wiegley28bbe4b2011-04-28 01:08:34 +00002542 // Borland allows SEH-handlers with 'try'
Chad Rosierb6604462012-07-10 21:35:27 +00002543
Richard Smith534986f2012-04-14 00:33:13 +00002544 if ((Tok.is(tok::identifier) &&
2545 Tok.getIdentifierInfo() == getSEHExceptKeyword()) ||
2546 Tok.is(tok::kw___finally)) {
John Wiegley28bbe4b2011-04-28 01:08:34 +00002547 // TODO: Factor into common return ParseSEHHandlerCommon(...)
2548 StmtResult Handler;
Douglas Gregorb57791e2011-10-21 03:57:52 +00002549 if(Tok.getIdentifierInfo() == getSEHExceptKeyword()) {
John Wiegley28bbe4b2011-04-28 01:08:34 +00002550 SourceLocation Loc = ConsumeToken();
2551 Handler = ParseSEHExceptBlock(Loc);
2552 }
2553 else {
2554 SourceLocation Loc = ConsumeToken();
2555 Handler = ParseSEHFinallyBlock(Loc);
2556 }
2557 if(Handler.isInvalid())
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00002558 return Handler;
John McCall7f040a92010-12-24 02:08:15 +00002559
John Wiegley28bbe4b2011-04-28 01:08:34 +00002560 return Actions.ActOnSEHTryBlock(true /* IsCXXTry */,
2561 TryLoc,
2562 TryBlock.take(),
2563 Handler.take());
Sebastian Redla0fd8652008-12-21 16:41:36 +00002564 }
John Wiegley28bbe4b2011-04-28 01:08:34 +00002565 else {
Benjamin Kramer4e28d9e2012-08-23 22:51:59 +00002566 StmtVector Handlers;
Richard Smith5eed7e02013-10-15 01:34:54 +00002567
2568 // C++11 attributes can't appear here, despite this context seeming
2569 // statement-like.
2570 DiagnoseAndSkipCXX11Attributes();
Sebastian Redla0fd8652008-12-21 16:41:36 +00002571
John Wiegley28bbe4b2011-04-28 01:08:34 +00002572 if (Tok.isNot(tok::kw_catch))
2573 return StmtError(Diag(Tok, diag::err_expected_catch));
2574 while (Tok.is(tok::kw_catch)) {
David Blaikiec4027c82012-11-10 01:04:23 +00002575 StmtResult Handler(ParseCXXCatchBlock(FnTry));
John Wiegley28bbe4b2011-04-28 01:08:34 +00002576 if (!Handler.isInvalid())
2577 Handlers.push_back(Handler.release());
2578 }
2579 // Don't bother creating the full statement if we don't have any usable
2580 // handlers.
2581 if (Handlers.empty())
2582 return StmtError();
2583
Robert Wilhelm21adb0c2013-08-22 09:20:03 +00002584 return Actions.ActOnCXXTryBlock(TryLoc, TryBlock.take(), Handlers);
John Wiegley28bbe4b2011-04-28 01:08:34 +00002585 }
Sebastian Redla0fd8652008-12-21 16:41:36 +00002586}
2587
2588/// ParseCXXCatchBlock - Parse a C++ catch block, called handler in the standard
2589///
Richard Smith4cd81c52013-01-29 09:02:09 +00002590/// handler:
2591/// 'catch' '(' exception-declaration ')' compound-statement
Sebastian Redla0fd8652008-12-21 16:41:36 +00002592///
Richard Smith4cd81c52013-01-29 09:02:09 +00002593/// exception-declaration:
2594/// attribute-specifier-seq[opt] type-specifier-seq declarator
2595/// attribute-specifier-seq[opt] type-specifier-seq abstract-declarator[opt]
2596/// '...'
Sebastian Redla0fd8652008-12-21 16:41:36 +00002597///
David Blaikiec4027c82012-11-10 01:04:23 +00002598StmtResult Parser::ParseCXXCatchBlock(bool FnCatch) {
Sebastian Redla0fd8652008-12-21 16:41:36 +00002599 assert(Tok.is(tok::kw_catch) && "Expected 'catch'");
2600
2601 SourceLocation CatchLoc = ConsumeToken();
2602
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002603 BalancedDelimiterTracker T(*this, tok::l_paren);
2604 if (T.expectAndConsume(diag::err_expected_lparen))
Sebastian Redla0fd8652008-12-21 16:41:36 +00002605 return StmtError();
2606
2607 // C++ 3.3.2p3:
2608 // The name in a catch exception-declaration is local to the handler and
2609 // shall not be redeclared in the outermost block of the handler.
David Blaikiec4027c82012-11-10 01:04:23 +00002610 ParseScope CatchScope(this, Scope::DeclScope | Scope::ControlScope |
David Blaikiee5afdcf2012-11-13 18:51:45 +00002611 (FnCatch ? Scope::FnTryCatchScope : 0));
Sebastian Redla0fd8652008-12-21 16:41:36 +00002612
2613 // exception-declaration is equivalent to '...' or a parameter-declaration
2614 // without default arguments.
John McCalld226f652010-08-21 09:40:31 +00002615 Decl *ExceptionDecl = 0;
Sebastian Redla0fd8652008-12-21 16:41:36 +00002616 if (Tok.isNot(tok::ellipsis)) {
Richard Smith4cd81c52013-01-29 09:02:09 +00002617 ParsedAttributesWithRange Attributes(AttrFactory);
2618 MaybeParseCXX11Attributes(Attributes);
2619
John McCall0b7e6782011-03-24 11:26:52 +00002620 DeclSpec DS(AttrFactory);
Richard Smith4cd81c52013-01-29 09:02:09 +00002621 DS.takeAttributesFrom(Attributes);
2622
Sebastian Redl4b07b292008-12-22 19:15:10 +00002623 if (ParseCXXTypeSpecifierSeq(DS))
2624 return StmtError();
Richard Smith4cd81c52013-01-29 09:02:09 +00002625
Sebastian Redla0fd8652008-12-21 16:41:36 +00002626 Declarator ExDecl(DS, Declarator::CXXCatchContext);
2627 ParseDeclarator(ExDecl);
Douglas Gregor23c94db2010-07-02 17:43:08 +00002628 ExceptionDecl = Actions.ActOnExceptionDeclarator(getCurScope(), ExDecl);
Sebastian Redla0fd8652008-12-21 16:41:36 +00002629 } else
2630 ConsumeToken();
2631
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002632 T.consumeClose();
2633 if (T.getCloseLocation().isInvalid())
Sebastian Redla0fd8652008-12-21 16:41:36 +00002634 return StmtError();
2635
2636 if (Tok.isNot(tok::l_brace))
2637 return StmtError(Diag(Tok, diag::err_expected_lbrace));
2638
Sean Huntbbd37c62009-11-21 08:43:09 +00002639 // FIXME: Possible draft standard bug: attribute-specifier should be allowed?
Richard Smith534986f2012-04-14 00:33:13 +00002640 StmtResult Block(ParseCompoundStatement());
Sebastian Redla0fd8652008-12-21 16:41:36 +00002641 if (Block.isInvalid())
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00002642 return Block;
Sebastian Redla0fd8652008-12-21 16:41:36 +00002643
John McCall9ae2f072010-08-23 23:25:46 +00002644 return Actions.ActOnCXXCatchBlock(CatchLoc, ExceptionDecl, Block.take());
Sebastian Redla0fd8652008-12-21 16:41:36 +00002645}
Francois Pichet1e862692011-05-06 20:48:22 +00002646
2647void Parser::ParseMicrosoftIfExistsStatement(StmtVector &Stmts) {
Douglas Gregor3896fc52011-10-24 22:31:10 +00002648 IfExistsCondition Result;
Francois Pichetf9860382011-05-07 17:30:27 +00002649 if (ParseMicrosoftIfExistsCondition(Result))
Francois Pichet1e862692011-05-06 20:48:22 +00002650 return;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002651
Douglas Gregor3896fc52011-10-24 22:31:10 +00002652 // Handle dependent statements by parsing the braces as a compound statement.
2653 // This is not the same behavior as Visual C++, which don't treat this as a
2654 // compound statement, but for Clang's type checking we can't have anything
2655 // inside these braces escaping to the surrounding code.
2656 if (Result.Behavior == IEB_Dependent) {
2657 if (!Tok.is(tok::l_brace)) {
2658 Diag(Tok, diag::err_expected_lbrace);
Richard Smith534986f2012-04-14 00:33:13 +00002659 return;
Douglas Gregor3896fc52011-10-24 22:31:10 +00002660 }
Richard Smith534986f2012-04-14 00:33:13 +00002661
2662 StmtResult Compound = ParseCompoundStatement();
Douglas Gregorba0513d2011-10-25 01:33:02 +00002663 if (Compound.isInvalid())
2664 return;
Richard Smith534986f2012-04-14 00:33:13 +00002665
Douglas Gregorba0513d2011-10-25 01:33:02 +00002666 StmtResult DepResult = Actions.ActOnMSDependentExistsStmt(Result.KeywordLoc,
2667 Result.IsIfExists,
Richard Smith534986f2012-04-14 00:33:13 +00002668 Result.SS,
Douglas Gregorba0513d2011-10-25 01:33:02 +00002669 Result.Name,
2670 Compound.get());
2671 if (DepResult.isUsable())
2672 Stmts.push_back(DepResult.get());
Douglas Gregor3896fc52011-10-24 22:31:10 +00002673 return;
2674 }
Richard Smith534986f2012-04-14 00:33:13 +00002675
Douglas Gregor3896fc52011-10-24 22:31:10 +00002676 BalancedDelimiterTracker Braces(*this, tok::l_brace);
2677 if (Braces.consumeOpen()) {
Francois Pichet1e862692011-05-06 20:48:22 +00002678 Diag(Tok, diag::err_expected_lbrace);
2679 return;
2680 }
Francois Pichet1e862692011-05-06 20:48:22 +00002681
Douglas Gregor3896fc52011-10-24 22:31:10 +00002682 switch (Result.Behavior) {
2683 case IEB_Parse:
2684 // Parse the statements below.
2685 break;
Chad Rosierb6604462012-07-10 21:35:27 +00002686
Douglas Gregor3896fc52011-10-24 22:31:10 +00002687 case IEB_Dependent:
2688 llvm_unreachable("Dependent case handled above");
Chad Rosierb6604462012-07-10 21:35:27 +00002689
Douglas Gregor3896fc52011-10-24 22:31:10 +00002690 case IEB_Skip:
2691 Braces.skipToEnd();
Francois Pichet1e862692011-05-06 20:48:22 +00002692 return;
2693 }
2694
2695 // Condition is true, parse the statements.
2696 while (Tok.isNot(tok::r_brace)) {
2697 StmtResult R = ParseStatementOrDeclaration(Stmts, false);
2698 if (R.isUsable())
2699 Stmts.push_back(R.release());
2700 }
Douglas Gregor3896fc52011-10-24 22:31:10 +00002701 Braces.consumeClose();
Francois Pichet1e862692011-05-06 20:48:22 +00002702}