blob: cf2199aa8ee788c143670a7bd9865600e41714fe [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:
Lang Hames860022c2012-10-21 01:10:01 +0000330 Diag(Tok, diag::err_pragma_fp_contract_scope);
331 ConsumeToken();
332 return StmtError();
333
Eli Friedman9595c7e2012-10-04 02:36:51 +0000334 case tok::annot_pragma_opencl_extension:
335 ProhibitAttributes(Attrs);
336 HandlePragmaOpenCLExtension();
337 return StmtEmpty();
Alexey Bataevc6400582013-03-22 06:34:35 +0000338
Tareq A. Siraj85192c72013-04-16 18:41:26 +0000339 case tok::annot_pragma_captured:
Richard Smith175d4172013-09-16 21:17:44 +0000340 ProhibitAttributes(Attrs);
Tareq A. Siraj85192c72013-04-16 18:41:26 +0000341 return HandlePragmaCaptured();
342
Alexey Bataevc6400582013-03-22 06:34:35 +0000343 case tok::annot_pragma_openmp:
Richard Smith175d4172013-09-16 21:17:44 +0000344 ProhibitAttributes(Attrs);
Alexey Bataev4fa7eab2013-07-19 03:13:43 +0000345 return ParseOpenMPDeclarativeOrExecutableDirective();
346
Sebastian Redla0fd8652008-12-21 16:41:36 +0000347 }
348
Reid Spencer5f016e22007-07-11 17:01:13 +0000349 // If we reached this code, the statement must end in a semicolon.
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000350 if (Tok.is(tok::semi)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000351 ConsumeToken();
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000352 } else if (!Res.isInvalid()) {
Chris Lattner7b3684a2009-06-14 00:23:56 +0000353 // If the result was valid, then we do want to diagnose this. Use
354 // ExpectAndConsume to emit the diagnostic, even though we know it won't
355 // succeed.
356 ExpectAndConsume(tok::semi, diag::err_expected_semi_after_stmt, SemiError);
Chris Lattner19504402008-11-13 18:52:53 +0000357 // Skip until we see a } or ;, but don't eat it.
358 SkipUntil(tok::r_brace, true, true);
Reid Spencer5f016e22007-07-11 17:01:13 +0000359 }
Mike Stump1eb44332009-09-09 15:08:12 +0000360
Benjamin Kramer3fe198b2012-08-23 21:35:17 +0000361 return Res;
Reid Spencer5f016e22007-07-11 17:01:13 +0000362}
363
Douglas Gregor312eadb2011-04-24 05:37:28 +0000364/// \brief Parse an expression statement.
Richard Smith534986f2012-04-14 00:33:13 +0000365StmtResult Parser::ParseExprStatement() {
Douglas Gregor312eadb2011-04-24 05:37:28 +0000366 // If a case keyword is missing, this is where it should be inserted.
367 Token OldToken = Tok;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000368
Douglas Gregor312eadb2011-04-24 05:37:28 +0000369 // expression[opt] ';'
Douglas Gregor5ecdd782011-04-27 06:18:01 +0000370 ExprResult Expr(ParseExpression());
Douglas Gregor312eadb2011-04-24 05:37:28 +0000371 if (Expr.isInvalid()) {
372 // If the expression is invalid, skip ahead to the next semicolon or '}'.
373 // Not doing this opens us up to the possibility of infinite loops if
374 // ParseExpression does not consume any tokens.
375 SkipUntil(tok::r_brace, /*StopAtSemi=*/true, /*DontConsume=*/true);
376 if (Tok.is(tok::semi))
377 ConsumeToken();
John McCallb760f112013-03-22 02:10:40 +0000378 return Actions.ActOnExprStmtError();
Douglas Gregor312eadb2011-04-24 05:37:28 +0000379 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000380
Douglas Gregor312eadb2011-04-24 05:37:28 +0000381 if (Tok.is(tok::colon) && getCurScope()->isSwitchScope() &&
382 Actions.CheckCaseExpression(Expr.get())) {
383 // If a constant expression is followed by a colon inside a switch block,
384 // suggest a missing case keyword.
385 Diag(OldToken, diag::err_expected_case_before_expression)
386 << FixItHint::CreateInsertion(OldToken.getLocation(), "case ");
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000387
Douglas Gregor312eadb2011-04-24 05:37:28 +0000388 // Recover parsing as a case statement.
Richard Smith534986f2012-04-14 00:33:13 +0000389 return ParseCaseStatement(/*MissingCase=*/true, Expr);
Douglas Gregor312eadb2011-04-24 05:37:28 +0000390 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000391
Douglas Gregor312eadb2011-04-24 05:37:28 +0000392 // Otherwise, eat the semicolon.
393 ExpectAndConsumeSemi(diag::err_expected_semi_after_expr);
Richard Smith41956372013-01-14 22:39:08 +0000394 return Actions.ActOnExprStmt(Expr);
John Wiegley28bbe4b2011-04-28 01:08:34 +0000395}
Douglas Gregor312eadb2011-04-24 05:37:28 +0000396
Richard Smith534986f2012-04-14 00:33:13 +0000397StmtResult Parser::ParseSEHTryBlock() {
John Wiegley28bbe4b2011-04-28 01:08:34 +0000398 assert(Tok.is(tok::kw___try) && "Expected '__try'");
399 SourceLocation Loc = ConsumeToken();
400 return ParseSEHTryBlockCommon(Loc);
401}
402
403/// ParseSEHTryBlockCommon
404///
405/// seh-try-block:
406/// '__try' compound-statement seh-handler
407///
408/// seh-handler:
409/// seh-except-block
410/// seh-finally-block
411///
412StmtResult Parser::ParseSEHTryBlockCommon(SourceLocation TryLoc) {
413 if(Tok.isNot(tok::l_brace))
414 return StmtError(Diag(Tok,diag::err_expected_lbrace));
415
Joao Matos568ba872012-09-04 17:49:35 +0000416 StmtResult TryBlock(ParseCompoundStatement());
John Wiegley28bbe4b2011-04-28 01:08:34 +0000417 if(TryBlock.isInvalid())
Benjamin Kramer3fe198b2012-08-23 21:35:17 +0000418 return TryBlock;
John Wiegley28bbe4b2011-04-28 01:08:34 +0000419
420 StmtResult Handler;
Richard Smith534986f2012-04-14 00:33:13 +0000421 if (Tok.is(tok::identifier) &&
Douglas Gregorb57791e2011-10-21 03:57:52 +0000422 Tok.getIdentifierInfo() == getSEHExceptKeyword()) {
John Wiegley28bbe4b2011-04-28 01:08:34 +0000423 SourceLocation Loc = ConsumeToken();
424 Handler = ParseSEHExceptBlock(Loc);
425 } else if (Tok.is(tok::kw___finally)) {
426 SourceLocation Loc = ConsumeToken();
427 Handler = ParseSEHFinallyBlock(Loc);
428 } else {
429 return StmtError(Diag(Tok,diag::err_seh_expected_handler));
430 }
431
432 if(Handler.isInvalid())
Benjamin Kramer3fe198b2012-08-23 21:35:17 +0000433 return Handler;
John Wiegley28bbe4b2011-04-28 01:08:34 +0000434
435 return Actions.ActOnSEHTryBlock(false /* IsCXXTry */,
436 TryLoc,
437 TryBlock.take(),
438 Handler.take());
439}
440
441/// ParseSEHExceptBlock - Handle __except
442///
443/// seh-except-block:
444/// '__except' '(' seh-filter-expression ')' compound-statement
445///
446StmtResult Parser::ParseSEHExceptBlock(SourceLocation ExceptLoc) {
447 PoisonIdentifierRAIIObject raii(Ident__exception_code, false),
448 raii2(Ident___exception_code, false),
449 raii3(Ident_GetExceptionCode, false);
450
451 if(ExpectAndConsume(tok::l_paren,diag::err_expected_lparen))
452 return StmtError();
453
454 ParseScope ExpectScope(this, Scope::DeclScope | Scope::ControlScope);
455
David Blaikie4e4d0842012-03-11 07:00:24 +0000456 if (getLangOpts().Borland) {
Francois Pichetd7f02df2011-04-28 03:14:31 +0000457 Ident__exception_info->setIsPoisoned(false);
458 Ident___exception_info->setIsPoisoned(false);
459 Ident_GetExceptionInfo->setIsPoisoned(false);
460 }
John Wiegley28bbe4b2011-04-28 01:08:34 +0000461 ExprResult FilterExpr(ParseExpression());
Francois Pichetd7f02df2011-04-28 03:14:31 +0000462
David Blaikie4e4d0842012-03-11 07:00:24 +0000463 if (getLangOpts().Borland) {
Francois Pichetd7f02df2011-04-28 03:14:31 +0000464 Ident__exception_info->setIsPoisoned(true);
465 Ident___exception_info->setIsPoisoned(true);
466 Ident_GetExceptionInfo->setIsPoisoned(true);
467 }
John Wiegley28bbe4b2011-04-28 01:08:34 +0000468
469 if(FilterExpr.isInvalid())
470 return StmtError();
471
472 if(ExpectAndConsume(tok::r_paren,diag::err_expected_rparen))
473 return StmtError();
474
Richard Smith534986f2012-04-14 00:33:13 +0000475 StmtResult Block(ParseCompoundStatement());
John Wiegley28bbe4b2011-04-28 01:08:34 +0000476
477 if(Block.isInvalid())
Benjamin Kramer3fe198b2012-08-23 21:35:17 +0000478 return Block;
John Wiegley28bbe4b2011-04-28 01:08:34 +0000479
480 return Actions.ActOnSEHExceptBlock(ExceptLoc, FilterExpr.take(), Block.take());
481}
482
483/// ParseSEHFinallyBlock - Handle __finally
484///
485/// seh-finally-block:
486/// '__finally' compound-statement
487///
488StmtResult Parser::ParseSEHFinallyBlock(SourceLocation FinallyBlock) {
489 PoisonIdentifierRAIIObject raii(Ident__abnormal_termination, false),
490 raii2(Ident___abnormal_termination, false),
491 raii3(Ident_AbnormalTermination, false);
492
Richard Smith534986f2012-04-14 00:33:13 +0000493 StmtResult Block(ParseCompoundStatement());
John Wiegley28bbe4b2011-04-28 01:08:34 +0000494 if(Block.isInvalid())
Benjamin Kramer3fe198b2012-08-23 21:35:17 +0000495 return Block;
John Wiegley28bbe4b2011-04-28 01:08:34 +0000496
497 return Actions.ActOnSEHFinallyBlock(FinallyBlock,Block.take());
Douglas Gregor312eadb2011-04-24 05:37:28 +0000498}
499
Argyrios Kyrtzidisf7da7262008-07-09 22:53:07 +0000500/// ParseLabeledStatement - We have an identifier and a ':' after it.
Reid Spencer5f016e22007-07-11 17:01:13 +0000501///
502/// labeled-statement:
503/// identifier ':' statement
504/// [GNU] identifier ':' attributes[opt] statement
Argyrios Kyrtzidisf7da7262008-07-09 22:53:07 +0000505///
Richard Smith534986f2012-04-14 00:33:13 +0000506StmtResult Parser::ParseLabeledStatement(ParsedAttributesWithRange &attrs) {
Argyrios Kyrtzidisf7da7262008-07-09 22:53:07 +0000507 assert(Tok.is(tok::identifier) && Tok.getIdentifierInfo() &&
508 "Not an identifier!");
509
510 Token IdentTok = Tok; // Save the whole token.
511 ConsumeToken(); // eat the identifier.
512
513 assert(Tok.is(tok::colon) && "Not a label!");
Sebastian Redl61364dd2008-12-11 19:30:53 +0000514
Argyrios Kyrtzidisf7da7262008-07-09 22:53:07 +0000515 // identifier ':' statement
516 SourceLocation ColonLoc = ConsumeToken();
517
Richard Smith534986f2012-04-14 00:33:13 +0000518 // Read label attributes, if present. attrs will contain both C++11 and GNU
519 // attributes (if present) after this point.
John McCall7f040a92010-12-24 02:08:15 +0000520 MaybeParseGNUAttributes(attrs);
Argyrios Kyrtzidisf7da7262008-07-09 22:53:07 +0000521
John McCall60d7b3a2010-08-24 06:29:42 +0000522 StmtResult SubStmt(ParseStatement());
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000523
Argyrios Kyrtzidisf7da7262008-07-09 22:53:07 +0000524 // Broken substmt shouldn't prevent the label from being added to the AST.
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000525 if (SubStmt.isInvalid())
Argyrios Kyrtzidisf7da7262008-07-09 22:53:07 +0000526 SubStmt = Actions.ActOnNullStmt(ColonLoc);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000527
Chris Lattner337e5502011-02-18 01:27:55 +0000528 LabelDecl *LD = Actions.LookupOrCreateLabel(IdentTok.getIdentifierInfo(),
529 IdentTok.getLocation());
Richard Smith534986f2012-04-14 00:33:13 +0000530 if (AttributeList *Attrs = attrs.getList()) {
Chris Lattner337e5502011-02-18 01:27:55 +0000531 Actions.ProcessDeclAttributeList(Actions.CurScope, LD, Attrs);
Richard Smith534986f2012-04-14 00:33:13 +0000532 attrs.clear();
533 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000534
Chris Lattner337e5502011-02-18 01:27:55 +0000535 return Actions.ActOnLabelStmt(IdentTok.getLocation(), LD, ColonLoc,
536 SubStmt.get());
Argyrios Kyrtzidisf7da7262008-07-09 22:53:07 +0000537}
Reid Spencer5f016e22007-07-11 17:01:13 +0000538
539/// ParseCaseStatement
540/// labeled-statement:
541/// 'case' constant-expression ':' statement
542/// [GNU] 'case' constant-expression '...' constant-expression ':' statement
543///
Richard Smith534986f2012-04-14 00:33:13 +0000544StmtResult Parser::ParseCaseStatement(bool MissingCase, ExprResult Expr) {
Richard Smith46f11102011-04-21 22:48:40 +0000545 assert((MissingCase || Tok.is(tok::kw_case)) && "Not a case stmt!");
Mike Stump1eb44332009-09-09 15:08:12 +0000546
Chris Lattner24e1e702009-03-04 04:23:07 +0000547 // It is very very common for code to contain many case statements recursively
548 // nested, as in (but usually without indentation):
549 // case 1:
550 // case 2:
551 // case 3:
552 // case 4:
553 // case 5: etc.
554 //
555 // Parsing this naively works, but is both inefficient and can cause us to run
556 // out of stack space in our recursive descent parser. As a special case,
Chris Lattner26140c62009-03-04 18:24:58 +0000557 // flatten this recursion into an iterative loop. This is complex and gross,
Chris Lattner24e1e702009-03-04 04:23:07 +0000558 // but all the grossness is constrained to ParseCaseStatement (and some
559 // wierdness in the actions), so this is just local grossness :).
Mike Stump1eb44332009-09-09 15:08:12 +0000560
Chris Lattner24e1e702009-03-04 04:23:07 +0000561 // TopLevelCase - This is the highest level we have parsed. 'case 1' in the
562 // example above.
John McCall60d7b3a2010-08-24 06:29:42 +0000563 StmtResult TopLevelCase(true);
Mike Stump1eb44332009-09-09 15:08:12 +0000564
Chris Lattner24e1e702009-03-04 04:23:07 +0000565 // DeepestParsedCaseStmt - This is the deepest statement we have parsed, which
566 // gets updated each time a new case is parsed, and whose body is unset so
567 // far. When parsing 'case 4', this is the 'case 3' node.
Richard Trieub2fc6902011-09-09 02:16:15 +0000568 Stmt *DeepestParsedCaseStmt = 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000569
Chris Lattner24e1e702009-03-04 04:23:07 +0000570 // While we have case statements, eat and stack them.
David Majnemer0e1e69c2011-06-13 05:50:12 +0000571 SourceLocation ColonLoc;
Chris Lattner24e1e702009-03-04 04:23:07 +0000572 do {
Richard Trieubb9b80c2011-04-21 21:44:26 +0000573 SourceLocation CaseLoc = MissingCase ? Expr.get()->getExprLoc() :
574 ConsumeToken(); // eat the 'case'.
Mike Stump1eb44332009-09-09 15:08:12 +0000575
Douglas Gregor3e1005f2009-09-21 18:10:23 +0000576 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +0000577 Actions.CodeCompleteCase(getCurScope());
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +0000578 cutOffParsing();
579 return StmtError();
Douglas Gregor3e1005f2009-09-21 18:10:23 +0000580 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000581
Chris Lattner6fb09c82009-12-10 00:38:54 +0000582 /// We don't want to treat 'case x : y' as a potential typo for 'case x::y'.
583 /// Disable this form of error recovery while we're parsing the case
584 /// expression.
585 ColonProtectionRAIIObject ColonProtection(*this);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000586
Richard Trieubb9b80c2011-04-21 21:44:26 +0000587 ExprResult LHS(MissingCase ? Expr : ParseConstantExpression());
588 MissingCase = false;
Chris Lattner24e1e702009-03-04 04:23:07 +0000589 if (LHS.isInvalid()) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000590 SkipUntil(tok::colon);
Sebastian Redl61364dd2008-12-11 19:30:53 +0000591 return StmtError();
Reid Spencer5f016e22007-07-11 17:01:13 +0000592 }
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000593
Chris Lattner24e1e702009-03-04 04:23:07 +0000594 // GNU case range extension.
595 SourceLocation DotDotDotLoc;
John McCall60d7b3a2010-08-24 06:29:42 +0000596 ExprResult RHS;
Chris Lattner24e1e702009-03-04 04:23:07 +0000597 if (Tok.is(tok::ellipsis)) {
598 Diag(Tok, diag::ext_gnu_case_range);
599 DotDotDotLoc = ConsumeToken();
Sebastian Redl61364dd2008-12-11 19:30:53 +0000600
Chris Lattner24e1e702009-03-04 04:23:07 +0000601 RHS = ParseConstantExpression();
602 if (RHS.isInvalid()) {
603 SkipUntil(tok::colon);
604 return StmtError();
605 }
606 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000607
Chris Lattner6fb09c82009-12-10 00:38:54 +0000608 ColonProtection.restore();
Sebastian Redl61364dd2008-12-11 19:30:53 +0000609
John McCallf6a3ab02011-01-22 09:28:32 +0000610 if (Tok.is(tok::colon)) {
611 ColonLoc = ConsumeToken();
612
613 // Treat "case blah;" as a typo for "case blah:".
614 } else if (Tok.is(tok::semi)) {
615 ColonLoc = ConsumeToken();
616 Diag(ColonLoc, diag::err_expected_colon_after) << "'case'"
617 << FixItHint::CreateReplacement(ColonLoc, ":");
618 } else {
Douglas Gregor662a4822010-12-23 22:56:40 +0000619 SourceLocation ExpectedLoc = PP.getLocForEndOfToken(PrevTokLocation);
620 Diag(ExpectedLoc, diag::err_expected_colon_after) << "'case'"
621 << FixItHint::CreateInsertion(ExpectedLoc, ":");
622 ColonLoc = ExpectedLoc;
Chris Lattner24e1e702009-03-04 04:23:07 +0000623 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000624
John McCall60d7b3a2010-08-24 06:29:42 +0000625 StmtResult Case =
John McCall9ae2f072010-08-23 23:25:46 +0000626 Actions.ActOnCaseStmt(CaseLoc, LHS.get(), DotDotDotLoc,
627 RHS.get(), ColonLoc);
Mike Stump1eb44332009-09-09 15:08:12 +0000628
Chris Lattner24e1e702009-03-04 04:23:07 +0000629 // If we had a sema error parsing this case, then just ignore it and
630 // continue parsing the sub-stmt.
631 if (Case.isInvalid()) {
632 if (TopLevelCase.isInvalid()) // No parsed case stmts.
633 return ParseStatement();
634 // Otherwise, just don't add it as a nested case.
635 } else {
636 // If this is the first case statement we parsed, it becomes TopLevelCase.
637 // Otherwise we link it into the current chain.
John McCallca0408f2010-08-23 06:44:23 +0000638 Stmt *NextDeepest = Case.get();
Chris Lattner24e1e702009-03-04 04:23:07 +0000639 if (TopLevelCase.isInvalid())
Benjamin Kramer3fe198b2012-08-23 21:35:17 +0000640 TopLevelCase = Case;
Chris Lattner24e1e702009-03-04 04:23:07 +0000641 else
John McCall9ae2f072010-08-23 23:25:46 +0000642 Actions.ActOnCaseStmtBody(DeepestParsedCaseStmt, Case.get());
Chris Lattner24e1e702009-03-04 04:23:07 +0000643 DeepestParsedCaseStmt = NextDeepest;
644 }
Mike Stump1eb44332009-09-09 15:08:12 +0000645
Chris Lattner24e1e702009-03-04 04:23:07 +0000646 // Handle all case statements.
647 } while (Tok.is(tok::kw_case));
Mike Stump1eb44332009-09-09 15:08:12 +0000648
Chris Lattner24e1e702009-03-04 04:23:07 +0000649 assert(!TopLevelCase.isInvalid() && "Should have parsed at least one case!");
Mike Stump1eb44332009-09-09 15:08:12 +0000650
Chris Lattner24e1e702009-03-04 04:23:07 +0000651 // If we found a non-case statement, start by parsing it.
John McCall60d7b3a2010-08-24 06:29:42 +0000652 StmtResult SubStmt;
Mike Stump1eb44332009-09-09 15:08:12 +0000653
Chris Lattner24e1e702009-03-04 04:23:07 +0000654 if (Tok.isNot(tok::r_brace)) {
655 SubStmt = ParseStatement();
656 } else {
657 // Nicely diagnose the common error "switch (X) { case 4: }", which is
658 // not valid.
David Majnemer63f04ab2011-06-14 15:24:38 +0000659 SourceLocation AfterColonLoc = PP.getLocForEndOfToken(ColonLoc);
Richard Smith85b29a42012-02-17 01:35:32 +0000660 Diag(AfterColonLoc, diag::err_label_end_of_compound_statement)
661 << FixItHint::CreateInsertion(AfterColonLoc, " ;");
Chris Lattner24e1e702009-03-04 04:23:07 +0000662 SubStmt = true;
Reid Spencer5f016e22007-07-11 17:01:13 +0000663 }
Mike Stump1eb44332009-09-09 15:08:12 +0000664
Chris Lattner24e1e702009-03-04 04:23:07 +0000665 // Broken sub-stmt shouldn't prevent forming the case statement properly.
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000666 if (SubStmt.isInvalid())
Chris Lattner24e1e702009-03-04 04:23:07 +0000667 SubStmt = Actions.ActOnNullStmt(SourceLocation());
Mike Stump1eb44332009-09-09 15:08:12 +0000668
Chris Lattner24e1e702009-03-04 04:23:07 +0000669 // Install the body into the most deeply-nested case.
John McCall9ae2f072010-08-23 23:25:46 +0000670 Actions.ActOnCaseStmtBody(DeepestParsedCaseStmt, SubStmt.get());
Sebastian Redl61364dd2008-12-11 19:30:53 +0000671
Chris Lattner24e1e702009-03-04 04:23:07 +0000672 // Return the top level parsed statement tree.
Benjamin Kramer3fe198b2012-08-23 21:35:17 +0000673 return TopLevelCase;
Reid Spencer5f016e22007-07-11 17:01:13 +0000674}
675
676/// ParseDefaultStatement
677/// labeled-statement:
678/// 'default' ':' statement
679/// Note that this does not parse the 'statement' at the end.
680///
Richard Smith534986f2012-04-14 00:33:13 +0000681StmtResult Parser::ParseDefaultStatement() {
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000682 assert(Tok.is(tok::kw_default) && "Not a default stmt!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000683 SourceLocation DefaultLoc = ConsumeToken(); // eat the 'default'.
684
Douglas Gregor662a4822010-12-23 22:56:40 +0000685 SourceLocation ColonLoc;
John McCallf6a3ab02011-01-22 09:28:32 +0000686 if (Tok.is(tok::colon)) {
687 ColonLoc = ConsumeToken();
688
689 // Treat "default;" as a typo for "default:".
690 } else if (Tok.is(tok::semi)) {
691 ColonLoc = ConsumeToken();
692 Diag(ColonLoc, diag::err_expected_colon_after) << "'default'"
693 << FixItHint::CreateReplacement(ColonLoc, ":");
694 } else {
Douglas Gregor662a4822010-12-23 22:56:40 +0000695 SourceLocation ExpectedLoc = PP.getLocForEndOfToken(PrevTokLocation);
696 Diag(ExpectedLoc, diag::err_expected_colon_after) << "'default'"
697 << FixItHint::CreateInsertion(ExpectedLoc, ":");
698 ColonLoc = ExpectedLoc;
Reid Spencer5f016e22007-07-11 17:01:13 +0000699 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000700
Richard Smith85b29a42012-02-17 01:35:32 +0000701 StmtResult SubStmt;
702
703 if (Tok.isNot(tok::r_brace)) {
704 SubStmt = ParseStatement();
705 } else {
706 // Diagnose the common error "switch (X) {... default: }", which is
707 // not valid.
David Majnemer63f04ab2011-06-14 15:24:38 +0000708 SourceLocation AfterColonLoc = PP.getLocForEndOfToken(ColonLoc);
Richard Smith85b29a42012-02-17 01:35:32 +0000709 Diag(AfterColonLoc, diag::err_label_end_of_compound_statement)
710 << FixItHint::CreateInsertion(AfterColonLoc, " ;");
711 SubStmt = true;
Reid Spencer5f016e22007-07-11 17:01:13 +0000712 }
713
Richard Smith85b29a42012-02-17 01:35:32 +0000714 // Broken sub-stmt shouldn't prevent forming the case statement properly.
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000715 if (SubStmt.isInvalid())
Richard Smith85b29a42012-02-17 01:35:32 +0000716 SubStmt = Actions.ActOnNullStmt(ColonLoc);
Sebastian Redl61364dd2008-12-11 19:30:53 +0000717
Sebastian Redl117054a2008-12-28 16:13:43 +0000718 return Actions.ActOnDefaultStmt(DefaultLoc, ColonLoc,
John McCall9ae2f072010-08-23 23:25:46 +0000719 SubStmt.get(), getCurScope());
Reid Spencer5f016e22007-07-11 17:01:13 +0000720}
721
Richard Smith534986f2012-04-14 00:33:13 +0000722StmtResult Parser::ParseCompoundStatement(bool isStmtExpr) {
723 return ParseCompoundStatement(isStmtExpr, Scope::DeclScope);
Douglas Gregorbca01b42011-07-06 22:04:06 +0000724}
Reid Spencer5f016e22007-07-11 17:01:13 +0000725
726/// ParseCompoundStatement - Parse a "{}" block.
727///
728/// compound-statement: [C99 6.8.2]
729/// { block-item-list[opt] }
730/// [GNU] { label-declarations block-item-list } [TODO]
731///
732/// block-item-list:
733/// block-item
734/// block-item-list block-item
735///
736/// block-item:
737/// declaration
Chris Lattner45a566c2007-08-27 01:01:57 +0000738/// [GNU] '__extension__' declaration
Reid Spencer5f016e22007-07-11 17:01:13 +0000739/// statement
740/// [OMP] openmp-directive [TODO]
741///
742/// [GNU] label-declarations:
743/// [GNU] label-declaration
744/// [GNU] label-declarations label-declaration
745///
746/// [GNU] label-declaration:
747/// [GNU] '__label__' identifier-list ';'
748///
749/// [OMP] openmp-directive: [TODO]
750/// [OMP] barrier-directive
751/// [OMP] flush-directive
752///
Richard Smith534986f2012-04-14 00:33:13 +0000753StmtResult Parser::ParseCompoundStatement(bool isStmtExpr,
Douglas Gregorbca01b42011-07-06 22:04:06 +0000754 unsigned ScopeFlags) {
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000755 assert(Tok.is(tok::l_brace) && "Not a compount stmt!");
Sebastian Redl61364dd2008-12-11 19:30:53 +0000756
Chris Lattner31e05722007-08-26 06:24:45 +0000757 // Enter a scope to hold everything within the compound stmt. Compound
758 // statements can always hold declarations.
Douglas Gregorbca01b42011-07-06 22:04:06 +0000759 ParseScope CompoundScope(this, ScopeFlags);
Reid Spencer5f016e22007-07-11 17:01:13 +0000760
761 // Parse the statements in the body.
Sebastian Redl61364dd2008-12-11 19:30:53 +0000762 return ParseCompoundStatementBody(isStmtExpr);
Reid Spencer5f016e22007-07-11 17:01:13 +0000763}
764
Lang Hamesa60d21d2012-11-03 22:29:05 +0000765/// Parse any pragmas at the start of the compound expression. We handle these
766/// separately since some pragmas (FP_CONTRACT) must appear before any C
767/// statement in the compound, but may be intermingled with other pragmas.
768void Parser::ParseCompoundStatementLeadingPragmas() {
769 bool checkForPragmas = true;
770 while (checkForPragmas) {
771 switch (Tok.getKind()) {
772 case tok::annot_pragma_vis:
773 HandlePragmaVisibility();
774 break;
775 case tok::annot_pragma_pack:
776 HandlePragmaPack();
777 break;
778 case tok::annot_pragma_msstruct:
779 HandlePragmaMSStruct();
780 break;
781 case tok::annot_pragma_align:
782 HandlePragmaAlign();
783 break;
784 case tok::annot_pragma_weak:
785 HandlePragmaWeak();
786 break;
787 case tok::annot_pragma_weakalias:
788 HandlePragmaWeakAlias();
789 break;
790 case tok::annot_pragma_redefine_extname:
791 HandlePragmaRedefineExtname();
792 break;
793 case tok::annot_pragma_opencl_extension:
794 HandlePragmaOpenCLExtension();
795 break;
796 case tok::annot_pragma_fp_contract:
797 HandlePragmaFPContract();
798 break;
799 default:
800 checkForPragmas = false;
801 break;
802 }
803 }
804
805}
806
Reid Spencer5f016e22007-07-11 17:01:13 +0000807/// ParseCompoundStatementBody - Parse a sequence of statements and invoke the
Steve Naroff1b273c42007-09-16 14:56:35 +0000808/// ActOnCompoundStmt action. This expects the '{' to be the current token, and
Reid Spencer5f016e22007-07-11 17:01:13 +0000809/// consume the '}' at the end of the block. It does not manipulate the scope
810/// stack.
John McCall60d7b3a2010-08-24 06:29:42 +0000811StmtResult Parser::ParseCompoundStatementBody(bool isStmtExpr) {
Mike Stump1eb44332009-09-09 15:08:12 +0000812 PrettyStackTraceLoc CrashInfo(PP.getSourceManager(),
Chris Lattnerae50fa02009-03-05 00:00:31 +0000813 Tok.getLocation(),
814 "in compound statement ('{}')");
Lang Hamesbe9af122012-10-02 04:45:10 +0000815
816 // Record the state of the FP_CONTRACT pragma, restore on leaving the
817 // compound statement.
818 Sema::FPContractStateRAII SaveFPContractState(Actions);
819
Douglas Gregor0fbda682010-09-15 14:51:05 +0000820 InMessageExpressionRAIIObject InMessage(*this, false);
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000821 BalancedDelimiterTracker T(*this, tok::l_brace);
822 if (T.consumeOpen())
823 return StmtError();
Reid Spencer5f016e22007-07-11 17:01:13 +0000824
Dmitri Gribenko625bb562012-02-14 22:14:32 +0000825 Sema::CompoundScopeRAII CompoundScope(Actions);
826
Lang Hamesa60d21d2012-11-03 22:29:05 +0000827 // Parse any pragmas at the beginning of the compound statement.
828 ParseCompoundStatementLeadingPragmas();
Argyrios Kyrtzidisb918d0f2011-01-17 18:58:44 +0000829
Lang Hamesa60d21d2012-11-03 22:29:05 +0000830 StmtVector Stmts;
Lang Hames860022c2012-10-21 01:10:01 +0000831
Chris Lattner4ae493c2011-02-18 02:08:43 +0000832 // "__label__ X, Y, Z;" is the GNU "Local Label" extension. These are
833 // only allowed at the start of a compound stmt regardless of the language.
834 while (Tok.is(tok::kw___label__)) {
835 SourceLocation LabelLoc = ConsumeToken();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000836
Chris Lattner5f9e2722011-07-23 10:55:15 +0000837 SmallVector<Decl *, 8> DeclsInGroup;
Chris Lattner4ae493c2011-02-18 02:08:43 +0000838 while (1) {
839 if (Tok.isNot(tok::identifier)) {
840 Diag(Tok, diag::err_expected_ident);
841 break;
842 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000843
Chris Lattner4ae493c2011-02-18 02:08:43 +0000844 IdentifierInfo *II = Tok.getIdentifierInfo();
845 SourceLocation IdLoc = ConsumeToken();
Abramo Bagnara67843042011-03-05 18:21:20 +0000846 DeclsInGroup.push_back(Actions.LookupOrCreateLabel(II, IdLoc, LabelLoc));
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000847
Chris Lattner4ae493c2011-02-18 02:08:43 +0000848 if (!Tok.is(tok::comma))
849 break;
850 ConsumeToken();
851 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000852
John McCall0b7e6782011-03-24 11:26:52 +0000853 DeclSpec DS(AttrFactory);
Rafael Espindola4549d7f2013-07-09 12:05:01 +0000854 DeclGroupPtrTy Res =
855 Actions.FinalizeDeclaratorGroup(getCurScope(), DS, DeclsInGroup);
Chris Lattner4ae493c2011-02-18 02:08:43 +0000856 StmtResult R = Actions.ActOnDeclStmt(Res, LabelLoc, Tok.getLocation());
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000857
Chris Lattner8bb21d32012-04-28 16:12:17 +0000858 ExpectAndConsumeSemi(diag::err_expected_semi_declaration);
Chris Lattner4ae493c2011-02-18 02:08:43 +0000859 if (R.isUsable())
860 Stmts.push_back(R.release());
861 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000862
Chris Lattner4ae493c2011-02-18 02:08:43 +0000863 while (Tok.isNot(tok::r_brace) && Tok.isNot(tok::eof)) {
Argyrios Kyrtzidisb918d0f2011-01-17 18:58:44 +0000864 if (Tok.is(tok::annot_pragma_unused)) {
865 HandlePragmaUnused();
866 continue;
867 }
868
David Blaikie4e4d0842012-03-11 07:00:24 +0000869 if (getLangOpts().MicrosoftExt && (Tok.is(tok::kw___if_exists) ||
Francois Pichet1e862692011-05-06 20:48:22 +0000870 Tok.is(tok::kw___if_not_exists))) {
871 ParseMicrosoftIfExistsStatement(Stmts);
872 continue;
873 }
874
John McCall60d7b3a2010-08-24 06:29:42 +0000875 StmtResult R;
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000876 if (Tok.isNot(tok::kw___extension__)) {
Fariborz Jahanianc5be7b02010-09-28 20:42:35 +0000877 R = ParseStatementOrDeclaration(Stmts, false);
Chris Lattner45a566c2007-08-27 01:01:57 +0000878 } else {
879 // __extension__ can start declarations and it can also be a unary
880 // operator for expressions. Consume multiple __extension__ markers here
881 // until we can determine which is which.
Eli Friedmanadf077f2009-01-27 08:43:38 +0000882 // FIXME: This loses extension expressions in the AST!
Chris Lattner45a566c2007-08-27 01:01:57 +0000883 SourceLocation ExtLoc = ConsumeToken();
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000884 while (Tok.is(tok::kw___extension__))
Chris Lattner45a566c2007-08-27 01:01:57 +0000885 ConsumeToken();
Chris Lattner39146d62008-10-20 06:51:33 +0000886
John McCall0b7e6782011-03-24 11:26:52 +0000887 ParsedAttributesWithRange attrs(AttrFactory);
Richard Smith4e24f0f2013-01-02 12:01:23 +0000888 MaybeParseCXX11Attributes(attrs, 0, /*MightBeObjCMessageSend*/ true);
Sean Huntbbd37c62009-11-21 08:43:09 +0000889
Chris Lattner45a566c2007-08-27 01:01:57 +0000890 // If this is the start of a declaration, parse it as such.
Argyrios Kyrtzidis5404a152008-10-05 00:06:24 +0000891 if (isDeclarationStatement()) {
Eli Friedmanbc6c8482009-05-16 23:40:44 +0000892 // __extension__ silences extension warnings in the subdeclaration.
Chris Lattner97144fc2009-04-02 04:16:50 +0000893 // FIXME: Save the __extension__ on the decl as a node somehow?
Eli Friedmanbc6c8482009-05-16 23:40:44 +0000894 ExtensionRAIIObject O(Diags);
895
Chris Lattner97144fc2009-04-02 04:16:50 +0000896 SourceLocation DeclStart = Tok.getLocation(), DeclEnd;
Fariborz Jahanianc5be7b02010-09-28 20:42:35 +0000897 DeclGroupPtrTy Res = ParseDeclaration(Stmts,
898 Declarator::BlockContext, DeclEnd,
John McCall7f040a92010-12-24 02:08:15 +0000899 attrs);
Chris Lattner97144fc2009-04-02 04:16:50 +0000900 R = Actions.ActOnDeclStmt(Res, DeclStart, DeclEnd);
Chris Lattner45a566c2007-08-27 01:01:57 +0000901 } else {
Eli Friedmanadf077f2009-01-27 08:43:38 +0000902 // Otherwise this was a unary __extension__ marker.
John McCall60d7b3a2010-08-24 06:29:42 +0000903 ExprResult Res(ParseExpressionWithLeadingExtension(ExtLoc));
Chris Lattner043a0b52008-03-13 06:32:11 +0000904
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000905 if (Res.isInvalid()) {
Chris Lattner45a566c2007-08-27 01:01:57 +0000906 SkipUntil(tok::semi);
907 continue;
908 }
Sebastian Redlf512e822009-01-18 18:03:53 +0000909
Sean Huntbbd37c62009-11-21 08:43:09 +0000910 // FIXME: Use attributes?
Chris Lattner39146d62008-10-20 06:51:33 +0000911 // Eat the semicolon at the end of stmt and convert the expr into a
912 // statement.
Douglas Gregor9ba23b42010-09-07 15:23:11 +0000913 ExpectAndConsumeSemi(diag::err_expected_semi_after_expr);
Richard Smith41956372013-01-14 22:39:08 +0000914 R = Actions.ActOnExprStmt(Res);
Chris Lattner45a566c2007-08-27 01:01:57 +0000915 }
916 }
Sebastian Redl61364dd2008-12-11 19:30:53 +0000917
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000918 if (R.isUsable())
Sebastian Redleffa8d12008-12-10 00:02:53 +0000919 Stmts.push_back(R.release());
Reid Spencer5f016e22007-07-11 17:01:13 +0000920 }
Sebastian Redl61364dd2008-12-11 19:30:53 +0000921
Argyrios Kyrtzidis5d5ed592012-03-24 02:26:51 +0000922 SourceLocation CloseLoc = Tok.getLocation();
923
Reid Spencer5f016e22007-07-11 17:01:13 +0000924 // We broke out of the while loop because we found a '}' or EOF.
Nico Weberd11f4352012-12-30 23:36:56 +0000925 if (!T.consumeClose())
Argyrios Kyrtzidis5d5ed592012-03-24 02:26:51 +0000926 // Recover by creating a compound statement with what we parsed so far,
927 // instead of dropping everything and returning StmtError();
Nico Weberd11f4352012-12-30 23:36:56 +0000928 CloseLoc = T.getCloseLocation();
Sebastian Redl61364dd2008-12-11 19:30:53 +0000929
Argyrios Kyrtzidis5d5ed592012-03-24 02:26:51 +0000930 return Actions.ActOnCompoundStmt(T.getOpenLocation(), CloseLoc,
Benjamin Kramer3fe198b2012-08-23 21:35:17 +0000931 Stmts, isStmtExpr);
Reid Spencer5f016e22007-07-11 17:01:13 +0000932}
933
Chris Lattner15ff1112008-12-12 06:31:07 +0000934/// ParseParenExprOrCondition:
935/// [C ] '(' expression ')'
Chris Lattnerff871fb2008-12-12 06:35:28 +0000936/// [C++] '(' condition ')' [not allowed if OnlyAllowCondition=true]
Chris Lattner15ff1112008-12-12 06:31:07 +0000937///
938/// This function parses and performs error recovery on the specified condition
939/// or expression (depending on whether we're in C++ or C mode). This function
940/// goes out of its way to recover well. It returns true if there was a parser
941/// error (the right paren couldn't be found), which indicates that the caller
942/// should try to recover harder. It returns false if the condition is
943/// successfully parsed. Note that a successful parse can still have semantic
944/// errors in the condition.
John McCall60d7b3a2010-08-24 06:29:42 +0000945bool Parser::ParseParenExprOrCondition(ExprResult &ExprResult,
John McCalld226f652010-08-21 09:40:31 +0000946 Decl *&DeclResult,
Douglas Gregor586596f2010-05-06 17:25:47 +0000947 SourceLocation Loc,
Argyrios Kyrtzidis44aa1f32010-11-20 02:04:01 +0000948 bool ConvertToBoolean) {
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000949 BalancedDelimiterTracker T(*this, tok::l_paren);
950 T.consumeOpen();
951
David Blaikie4e4d0842012-03-11 07:00:24 +0000952 if (getLangOpts().CPlusPlus)
Jeffrey Yasskindec09842011-01-18 02:00:16 +0000953 ParseCXXCondition(ExprResult, DeclResult, Loc, ConvertToBoolean);
Douglas Gregor99e9b4d2009-11-25 00:27:52 +0000954 else {
955 ExprResult = ParseExpression();
John McCalld226f652010-08-21 09:40:31 +0000956 DeclResult = 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000957
Douglas Gregor586596f2010-05-06 17:25:47 +0000958 // If required, convert to a boolean value.
959 if (!ExprResult.isInvalid() && ConvertToBoolean)
960 ExprResult
John McCall9ae2f072010-08-23 23:25:46 +0000961 = Actions.ActOnBooleanCondition(getCurScope(), Loc, ExprResult.get());
Douglas Gregor99e9b4d2009-11-25 00:27:52 +0000962 }
Mike Stump1eb44332009-09-09 15:08:12 +0000963
Chris Lattner15ff1112008-12-12 06:31:07 +0000964 // If the parser was confused by the condition and we don't have a ')', try to
965 // recover by skipping ahead to a semi and bailing out. If condexp is
966 // semantically invalid but we have well formed code, keep going.
John McCalld226f652010-08-21 09:40:31 +0000967 if (ExprResult.isInvalid() && !DeclResult && Tok.isNot(tok::r_paren)) {
Chris Lattner15ff1112008-12-12 06:31:07 +0000968 SkipUntil(tok::semi);
969 // Skipping may have stopped if it found the containing ')'. If so, we can
970 // continue parsing the if statement.
971 if (Tok.isNot(tok::r_paren))
972 return true;
973 }
Mike Stump1eb44332009-09-09 15:08:12 +0000974
Chris Lattner15ff1112008-12-12 06:31:07 +0000975 // Otherwise the condition is valid or the rparen is present.
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000976 T.consumeClose();
Chad Rosierb6604462012-07-10 21:35:27 +0000977
Chris Lattnerbddc7e52012-04-28 16:24:20 +0000978 // Check for extraneous ')'s to catch things like "if (foo())) {". We know
979 // that all callers are looking for a statement after the condition, so ")"
980 // isn't valid.
981 while (Tok.is(tok::r_paren)) {
982 Diag(Tok, diag::err_extraneous_rparen_in_condition)
983 << FixItHint::CreateRemoval(Tok.getLocation());
984 ConsumeParen();
985 }
Chad Rosierb6604462012-07-10 21:35:27 +0000986
Chris Lattner15ff1112008-12-12 06:31:07 +0000987 return false;
988}
989
990
Reid Spencer5f016e22007-07-11 17:01:13 +0000991/// ParseIfStatement
992/// if-statement: [C99 6.8.4.1]
993/// 'if' '(' expression ')' statement
994/// 'if' '(' expression ')' statement 'else' statement
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +0000995/// [C++] 'if' '(' condition ')' statement
996/// [C++] 'if' '(' condition ')' statement 'else' statement
Reid Spencer5f016e22007-07-11 17:01:13 +0000997///
Richard Smith534986f2012-04-14 00:33:13 +0000998StmtResult Parser::ParseIfStatement(SourceLocation *TrailingElseLoc) {
Chris Lattner4e1d99a2007-10-09 17:41:39 +0000999 assert(Tok.is(tok::kw_if) && "Not an if stmt!");
Reid Spencer5f016e22007-07-11 17:01:13 +00001000 SourceLocation IfLoc = ConsumeToken(); // eat the 'if'.
1001
Chris Lattner4e1d99a2007-10-09 17:41:39 +00001002 if (Tok.isNot(tok::l_paren)) {
Chris Lattner1ab3b962008-11-18 07:48:38 +00001003 Diag(Tok, diag::err_expected_lparen_after) << "if";
Reid Spencer5f016e22007-07-11 17:01:13 +00001004 SkipUntil(tok::semi);
Sebastian Redl61364dd2008-12-11 19:30:53 +00001005 return StmtError();
Reid Spencer5f016e22007-07-11 17:01:13 +00001006 }
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +00001007
David Blaikie4e4d0842012-03-11 07:00:24 +00001008 bool C99orCXX = getLangOpts().C99 || getLangOpts().CPlusPlus;
Argyrios Kyrtzidis488d37e2008-09-11 03:06:46 +00001009
Chris Lattner22153252007-08-26 23:08:06 +00001010 // C99 6.8.4p3 - In C99, the if statement is a block. This is not
1011 // the case for C90.
Argyrios Kyrtzidis488d37e2008-09-11 03:06:46 +00001012 //
1013 // C++ 6.4p3:
1014 // A name introduced by a declaration in a condition is in scope from its
1015 // point of declaration until the end of the substatements controlled by the
1016 // condition.
Argyrios Kyrtzidis14d08c02008-09-11 23:08:39 +00001017 // C++ 3.3.2p4:
1018 // Names declared in the for-init-statement, and in the condition of if,
1019 // while, for, and switch statements are local to the if, while, for, or
1020 // switch statement (including the controlled statement).
Argyrios Kyrtzidis488d37e2008-09-11 03:06:46 +00001021 //
Douglas Gregor8935b8b2008-12-10 06:34:36 +00001022 ParseScope IfScope(this, Scope::DeclScope | Scope::ControlScope, C99orCXX);
Chris Lattner22153252007-08-26 23:08:06 +00001023
Reid Spencer5f016e22007-07-11 17:01:13 +00001024 // Parse the condition.
John McCall60d7b3a2010-08-24 06:29:42 +00001025 ExprResult CondExp;
John McCalld226f652010-08-21 09:40:31 +00001026 Decl *CondVar = 0;
Argyrios Kyrtzidis44aa1f32010-11-20 02:04:01 +00001027 if (ParseParenExprOrCondition(CondExp, CondVar, IfLoc, true))
Chris Lattner15ff1112008-12-12 06:31:07 +00001028 return StmtError();
Chris Lattner18914bc2008-12-12 06:19:11 +00001029
David Blaikiedef07622012-05-16 04:20:04 +00001030 FullExprArg FullCondExp(Actions.MakeFullExpr(CondExp.get(), IfLoc));
Mike Stump1eb44332009-09-09 15:08:12 +00001031
Chris Lattner0ecea032007-08-22 05:28:50 +00001032 // C99 6.8.4p3 - In C99, the body of the if statement is a scope, even if
Chris Lattner38484402007-08-22 05:33:11 +00001033 // there is no compound stmt. C90 does not have this clause. We only do this
1034 // if the body isn't a compound statement to avoid push/pop in common cases.
Argyrios Kyrtzidis488d37e2008-09-11 03:06:46 +00001035 //
1036 // C++ 6.4p1:
1037 // The substatement in a selection-statement (each substatement, in the else
1038 // form of the if statement) implicitly defines a local scope.
1039 //
1040 // For C++ we create a scope for the condition and a new scope for
1041 // substatements because:
1042 // -When the 'then' scope exits, we want the condition declaration to still be
1043 // active for the 'else' scope too.
1044 // -Sema will detect name clashes by considering declarations of a
1045 // 'ControlScope' as part of its direct subscope.
1046 // -If we wanted the condition and substatement to be in the same scope, we
1047 // would have to notify ParseStatement not to create a new scope. It's
1048 // simpler to let it create a new scope.
1049 //
Mike Stump1eb44332009-09-09 15:08:12 +00001050 ParseScope InnerScope(this, Scope::DeclScope,
Douglas Gregor8935b8b2008-12-10 06:34:36 +00001051 C99orCXX && Tok.isNot(tok::l_brace));
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +00001052
Chris Lattnerb96728d2007-10-29 05:08:52 +00001053 // Read the 'then' stmt.
1054 SourceLocation ThenStmtLoc = Tok.getLocation();
Nico Weber5cb94a72011-12-22 23:26:17 +00001055
1056 SourceLocation InnerStatementTrailingElseLoc;
1057 StmtResult ThenStmt(ParseStatement(&InnerStatementTrailingElseLoc));
Reid Spencer5f016e22007-07-11 17:01:13 +00001058
Chris Lattnera36ce712007-08-22 05:16:28 +00001059 // Pop the 'if' scope if needed.
Douglas Gregor8935b8b2008-12-10 06:34:36 +00001060 InnerScope.Exit();
Sebastian Redl61364dd2008-12-11 19:30:53 +00001061
Reid Spencer5f016e22007-07-11 17:01:13 +00001062 // If it has an else, parse it.
1063 SourceLocation ElseLoc;
Chris Lattnerb96728d2007-10-29 05:08:52 +00001064 SourceLocation ElseStmtLoc;
John McCall60d7b3a2010-08-24 06:29:42 +00001065 StmtResult ElseStmt;
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001066
Chris Lattner4e1d99a2007-10-09 17:41:39 +00001067 if (Tok.is(tok::kw_else)) {
Nico Weber5cb94a72011-12-22 23:26:17 +00001068 if (TrailingElseLoc)
1069 *TrailingElseLoc = Tok.getLocation();
1070
Reid Spencer5f016e22007-07-11 17:01:13 +00001071 ElseLoc = ConsumeToken();
Chris Lattner966c78b2010-04-12 06:12:50 +00001072 ElseStmtLoc = Tok.getLocation();
Sebastian Redl61364dd2008-12-11 19:30:53 +00001073
Chris Lattner0ecea032007-08-22 05:28:50 +00001074 // C99 6.8.4p3 - In C99, the body of the if statement is a scope, even if
Chris Lattner38484402007-08-22 05:33:11 +00001075 // there is no compound stmt. C90 does not have this clause. We only do
1076 // this if the body isn't a compound statement to avoid push/pop in common
1077 // cases.
Argyrios Kyrtzidis488d37e2008-09-11 03:06:46 +00001078 //
1079 // C++ 6.4p1:
1080 // The substatement in a selection-statement (each substatement, in the else
1081 // form of the if statement) implicitly defines a local scope.
1082 //
Sebastian Redl61364dd2008-12-11 19:30:53 +00001083 ParseScope InnerScope(this, Scope::DeclScope,
Douglas Gregor8935b8b2008-12-10 06:34:36 +00001084 C99orCXX && Tok.isNot(tok::l_brace));
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001085
Reid Spencer5f016e22007-07-11 17:01:13 +00001086 ElseStmt = ParseStatement();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001087
Chris Lattnera36ce712007-08-22 05:16:28 +00001088 // Pop the 'else' scope if needed.
Douglas Gregor8935b8b2008-12-10 06:34:36 +00001089 InnerScope.Exit();
Douglas Gregord2d8be62011-07-30 08:36:53 +00001090 } else if (Tok.is(tok::code_completion)) {
1091 Actions.CodeCompleteAfterIf(getCurScope());
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00001092 cutOffParsing();
1093 return StmtError();
Nico Weber5cb94a72011-12-22 23:26:17 +00001094 } else if (InnerStatementTrailingElseLoc.isValid()) {
1095 Diag(InnerStatementTrailingElseLoc, diag::warn_dangling_else);
Reid Spencer5f016e22007-07-11 17:01:13 +00001096 }
Sebastian Redl61364dd2008-12-11 19:30:53 +00001097
Douglas Gregor8935b8b2008-12-10 06:34:36 +00001098 IfScope.Exit();
Mike Stump1eb44332009-09-09 15:08:12 +00001099
Chris Lattnerb96728d2007-10-29 05:08:52 +00001100 // If the then or else stmt is invalid and the other is valid (and present),
Mike Stump1eb44332009-09-09 15:08:12 +00001101 // make turn the invalid one into a null stmt to avoid dropping the other
Chris Lattnerb96728d2007-10-29 05:08:52 +00001102 // part. If both are invalid, return error.
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001103 if ((ThenStmt.isInvalid() && ElseStmt.isInvalid()) ||
1104 (ThenStmt.isInvalid() && ElseStmt.get() == 0) ||
1105 (ThenStmt.get() == 0 && ElseStmt.isInvalid())) {
Sebastian Redla55e52c2008-11-25 22:21:31 +00001106 // Both invalid, or one is invalid and other is non-present: return error.
Sebastian Redl61364dd2008-12-11 19:30:53 +00001107 return StmtError();
Chris Lattnerb96728d2007-10-29 05:08:52 +00001108 }
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001109
Chris Lattnerb96728d2007-10-29 05:08:52 +00001110 // Now if either are invalid, replace with a ';'.
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001111 if (ThenStmt.isInvalid())
Chris Lattnerb96728d2007-10-29 05:08:52 +00001112 ThenStmt = Actions.ActOnNullStmt(ThenStmtLoc);
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001113 if (ElseStmt.isInvalid())
Chris Lattnerb96728d2007-10-29 05:08:52 +00001114 ElseStmt = Actions.ActOnNullStmt(ElseStmtLoc);
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001115
John McCall9ae2f072010-08-23 23:25:46 +00001116 return Actions.ActOnIfStmt(IfLoc, FullCondExp, CondVar, ThenStmt.get(),
Argyrios Kyrtzidis44aa1f32010-11-20 02:04:01 +00001117 ElseLoc, ElseStmt.get());
Reid Spencer5f016e22007-07-11 17:01:13 +00001118}
1119
1120/// ParseSwitchStatement
1121/// switch-statement:
1122/// 'switch' '(' expression ')' statement
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +00001123/// [C++] 'switch' '(' condition ')' statement
Richard Smith534986f2012-04-14 00:33:13 +00001124StmtResult Parser::ParseSwitchStatement(SourceLocation *TrailingElseLoc) {
Chris Lattner4e1d99a2007-10-09 17:41:39 +00001125 assert(Tok.is(tok::kw_switch) && "Not a switch stmt!");
Reid Spencer5f016e22007-07-11 17:01:13 +00001126 SourceLocation SwitchLoc = ConsumeToken(); // eat the 'switch'.
1127
Chris Lattner4e1d99a2007-10-09 17:41:39 +00001128 if (Tok.isNot(tok::l_paren)) {
Chris Lattner1ab3b962008-11-18 07:48:38 +00001129 Diag(Tok, diag::err_expected_lparen_after) << "switch";
Reid Spencer5f016e22007-07-11 17:01:13 +00001130 SkipUntil(tok::semi);
Sebastian Redl9a920342008-12-11 19:48:14 +00001131 return StmtError();
Reid Spencer5f016e22007-07-11 17:01:13 +00001132 }
Chris Lattner22153252007-08-26 23:08:06 +00001133
David Blaikie4e4d0842012-03-11 07:00:24 +00001134 bool C99orCXX = getLangOpts().C99 || getLangOpts().CPlusPlus;
Argyrios Kyrtzidis488d37e2008-09-11 03:06:46 +00001135
Chris Lattner22153252007-08-26 23:08:06 +00001136 // C99 6.8.4p3 - In C99, the switch statement is a block. This is
1137 // not the case for C90. Start the switch scope.
Argyrios Kyrtzidis488d37e2008-09-11 03:06:46 +00001138 //
1139 // C++ 6.4p3:
1140 // A name introduced by a declaration in a condition is in scope from its
1141 // point of declaration until the end of the substatements controlled by the
1142 // condition.
Argyrios Kyrtzidis14d08c02008-09-11 23:08:39 +00001143 // C++ 3.3.2p4:
1144 // Names declared in the for-init-statement, and in the condition of if,
1145 // while, for, and switch statements are local to the if, while, for, or
1146 // switch statement (including the controlled statement).
Argyrios Kyrtzidis488d37e2008-09-11 03:06:46 +00001147 //
Richard Trieubb9b80c2011-04-21 21:44:26 +00001148 unsigned ScopeFlags = Scope::BreakScope | Scope::SwitchScope;
Chris Lattner15ff1112008-12-12 06:31:07 +00001149 if (C99orCXX)
1150 ScopeFlags |= Scope::DeclScope | Scope::ControlScope;
Douglas Gregor8935b8b2008-12-10 06:34:36 +00001151 ParseScope SwitchScope(this, ScopeFlags);
Reid Spencer5f016e22007-07-11 17:01:13 +00001152
1153 // Parse the condition.
John McCall60d7b3a2010-08-24 06:29:42 +00001154 ExprResult Cond;
John McCalld226f652010-08-21 09:40:31 +00001155 Decl *CondVar = 0;
Douglas Gregor586596f2010-05-06 17:25:47 +00001156 if (ParseParenExprOrCondition(Cond, CondVar, SwitchLoc, false))
Sebastian Redl9a920342008-12-11 19:48:14 +00001157 return StmtError();
Eli Friedman2342ef72008-12-17 22:19:57 +00001158
John McCall60d7b3a2010-08-24 06:29:42 +00001159 StmtResult Switch
John McCall9ae2f072010-08-23 23:25:46 +00001160 = Actions.ActOnStartOfSwitchStmt(SwitchLoc, Cond.get(), CondVar);
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001161
Douglas Gregor586596f2010-05-06 17:25:47 +00001162 if (Switch.isInvalid()) {
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001163 // Skip the switch body.
Douglas Gregor586596f2010-05-06 17:25:47 +00001164 // FIXME: This is not optimal recovery, but parsing the body is more
1165 // dangerous due to the presence of case and default statements, which
1166 // will have no place to connect back with the switch.
Douglas Gregor4186ff42010-05-20 23:20:59 +00001167 if (Tok.is(tok::l_brace)) {
1168 ConsumeBrace();
1169 SkipUntil(tok::r_brace, false, false);
1170 } else
Douglas Gregor586596f2010-05-06 17:25:47 +00001171 SkipUntil(tok::semi);
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00001172 return Switch;
Douglas Gregor586596f2010-05-06 17:25:47 +00001173 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001174
Chris Lattner0ecea032007-08-22 05:28:50 +00001175 // C99 6.8.4p3 - In C99, the body of the switch statement is a scope, even if
Chris Lattner38484402007-08-22 05:33:11 +00001176 // there is no compound stmt. C90 does not have this clause. We only do this
1177 // if the body isn't a compound statement to avoid push/pop in common cases.
Argyrios Kyrtzidis488d37e2008-09-11 03:06:46 +00001178 //
1179 // C++ 6.4p1:
1180 // The substatement in a selection-statement (each substatement, in the else
1181 // form of the if statement) implicitly defines a local scope.
1182 //
1183 // See comments in ParseIfStatement for why we create a scope for the
1184 // condition and a new scope for substatement in C++.
1185 //
Mike Stump1eb44332009-09-09 15:08:12 +00001186 ParseScope InnerScope(this, Scope::DeclScope,
Douglas Gregor8935b8b2008-12-10 06:34:36 +00001187 C99orCXX && Tok.isNot(tok::l_brace));
Sebastian Redl61364dd2008-12-11 19:30:53 +00001188
Reid Spencer5f016e22007-07-11 17:01:13 +00001189 // Read the body statement.
Nico Weber5cb94a72011-12-22 23:26:17 +00001190 StmtResult Body(ParseStatement(TrailingElseLoc));
Reid Spencer5f016e22007-07-11 17:01:13 +00001191
Chris Lattner7e52de42010-01-24 01:50:29 +00001192 // Pop the scopes.
Douglas Gregor8935b8b2008-12-10 06:34:36 +00001193 InnerScope.Exit();
Douglas Gregor8935b8b2008-12-10 06:34:36 +00001194 SwitchScope.Exit();
Sebastian Redl61364dd2008-12-11 19:30:53 +00001195
Dmitri Gribenko625bb562012-02-14 22:14:32 +00001196 if (Body.isInvalid()) {
Chris Lattner7e52de42010-01-24 01:50:29 +00001197 // FIXME: Remove the case statement list from the Switch statement.
Dmitri Gribenko625bb562012-02-14 22:14:32 +00001198
1199 // Put the synthesized null statement on the same line as the end of switch
1200 // condition.
1201 SourceLocation SynthesizedNullStmtLocation = Cond.get()->getLocEnd();
1202 Body = Actions.ActOnNullStmt(SynthesizedNullStmtLocation);
1203 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001204
John McCall9ae2f072010-08-23 23:25:46 +00001205 return Actions.ActOnFinishSwitchStmt(SwitchLoc, Switch.get(), Body.get());
Reid Spencer5f016e22007-07-11 17:01:13 +00001206}
1207
1208/// ParseWhileStatement
1209/// while-statement: [C99 6.8.5.1]
1210/// 'while' '(' expression ')' statement
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +00001211/// [C++] 'while' '(' condition ')' statement
Richard Smith534986f2012-04-14 00:33:13 +00001212StmtResult Parser::ParseWhileStatement(SourceLocation *TrailingElseLoc) {
Chris Lattner4e1d99a2007-10-09 17:41:39 +00001213 assert(Tok.is(tok::kw_while) && "Not a while stmt!");
Reid Spencer5f016e22007-07-11 17:01:13 +00001214 SourceLocation WhileLoc = Tok.getLocation();
1215 ConsumeToken(); // eat the 'while'.
Sebastian Redl9a920342008-12-11 19:48:14 +00001216
Chris Lattner4e1d99a2007-10-09 17:41:39 +00001217 if (Tok.isNot(tok::l_paren)) {
Chris Lattner1ab3b962008-11-18 07:48:38 +00001218 Diag(Tok, diag::err_expected_lparen_after) << "while";
Reid Spencer5f016e22007-07-11 17:01:13 +00001219 SkipUntil(tok::semi);
Sebastian Redl9a920342008-12-11 19:48:14 +00001220 return StmtError();
Reid Spencer5f016e22007-07-11 17:01:13 +00001221 }
Sebastian Redl9a920342008-12-11 19:48:14 +00001222
David Blaikie4e4d0842012-03-11 07:00:24 +00001223 bool C99orCXX = getLangOpts().C99 || getLangOpts().CPlusPlus;
Argyrios Kyrtzidis488d37e2008-09-11 03:06:46 +00001224
Chris Lattner22153252007-08-26 23:08:06 +00001225 // C99 6.8.5p5 - In C99, the while statement is a block. This is not
1226 // the case for C90. Start the loop scope.
Argyrios Kyrtzidis488d37e2008-09-11 03:06:46 +00001227 //
1228 // C++ 6.4p3:
1229 // A name introduced by a declaration in a condition is in scope from its
1230 // point of declaration until the end of the substatements controlled by the
1231 // condition.
Argyrios Kyrtzidis14d08c02008-09-11 23:08:39 +00001232 // C++ 3.3.2p4:
1233 // Names declared in the for-init-statement, and in the condition of if,
1234 // while, for, and switch statements are local to the if, while, for, or
1235 // switch statement (including the controlled statement).
Argyrios Kyrtzidis488d37e2008-09-11 03:06:46 +00001236 //
Douglas Gregor8935b8b2008-12-10 06:34:36 +00001237 unsigned ScopeFlags;
Argyrios Kyrtzidis488d37e2008-09-11 03:06:46 +00001238 if (C99orCXX)
Douglas Gregor8935b8b2008-12-10 06:34:36 +00001239 ScopeFlags = Scope::BreakScope | Scope::ContinueScope |
1240 Scope::DeclScope | Scope::ControlScope;
Chris Lattner22153252007-08-26 23:08:06 +00001241 else
Douglas Gregor8935b8b2008-12-10 06:34:36 +00001242 ScopeFlags = Scope::BreakScope | Scope::ContinueScope;
1243 ParseScope WhileScope(this, ScopeFlags);
Reid Spencer5f016e22007-07-11 17:01:13 +00001244
1245 // Parse the condition.
John McCall60d7b3a2010-08-24 06:29:42 +00001246 ExprResult Cond;
John McCalld226f652010-08-21 09:40:31 +00001247 Decl *CondVar = 0;
Douglas Gregor586596f2010-05-06 17:25:47 +00001248 if (ParseParenExprOrCondition(Cond, CondVar, WhileLoc, true))
Chris Lattner15ff1112008-12-12 06:31:07 +00001249 return StmtError();
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001250
David Blaikiedef07622012-05-16 04:20:04 +00001251 FullExprArg FullCond(Actions.MakeFullExpr(Cond.get(), WhileLoc));
Mike Stump1eb44332009-09-09 15:08:12 +00001252
Chris Lattner0ecea032007-08-22 05:28:50 +00001253 // C99 6.8.5p5 - In C99, the body of the if statement is a scope, even if
Chris Lattner38484402007-08-22 05:33:11 +00001254 // there is no compound stmt. C90 does not have this clause. We only do this
1255 // if the body isn't a compound statement to avoid push/pop in common cases.
Argyrios Kyrtzidis488d37e2008-09-11 03:06:46 +00001256 //
1257 // C++ 6.5p2:
1258 // The substatement in an iteration-statement implicitly defines a local scope
1259 // which is entered and exited each time through the loop.
1260 //
1261 // See comments in ParseIfStatement for why we create a scope for the
1262 // condition and a new scope for substatement in C++.
1263 //
Mike Stump1eb44332009-09-09 15:08:12 +00001264 ParseScope InnerScope(this, Scope::DeclScope,
Douglas Gregor8935b8b2008-12-10 06:34:36 +00001265 C99orCXX && Tok.isNot(tok::l_brace));
Sebastian Redl9a920342008-12-11 19:48:14 +00001266
Reid Spencer5f016e22007-07-11 17:01:13 +00001267 // Read the body statement.
Nico Weber5cb94a72011-12-22 23:26:17 +00001268 StmtResult Body(ParseStatement(TrailingElseLoc));
Reid Spencer5f016e22007-07-11 17:01:13 +00001269
Chris Lattner0ecea032007-08-22 05:28:50 +00001270 // Pop the body scope if needed.
Douglas Gregor8935b8b2008-12-10 06:34:36 +00001271 InnerScope.Exit();
1272 WhileScope.Exit();
Sebastian Redl9a920342008-12-11 19:48:14 +00001273
John McCalld226f652010-08-21 09:40:31 +00001274 if ((Cond.isInvalid() && !CondVar) || Body.isInvalid())
Sebastian Redl9a920342008-12-11 19:48:14 +00001275 return StmtError();
1276
John McCall9ae2f072010-08-23 23:25:46 +00001277 return Actions.ActOnWhileStmt(WhileLoc, FullCond, CondVar, Body.get());
Reid Spencer5f016e22007-07-11 17:01:13 +00001278}
1279
1280/// ParseDoStatement
1281/// do-statement: [C99 6.8.5.2]
1282/// 'do' statement 'while' '(' expression ')' ';'
1283/// Note: this lets the caller parse the end ';'.
Richard Smith534986f2012-04-14 00:33:13 +00001284StmtResult Parser::ParseDoStatement() {
Chris Lattner4e1d99a2007-10-09 17:41:39 +00001285 assert(Tok.is(tok::kw_do) && "Not a do stmt!");
Reid Spencer5f016e22007-07-11 17:01:13 +00001286 SourceLocation DoLoc = ConsumeToken(); // eat the 'do'.
Sebastian Redl9a920342008-12-11 19:48:14 +00001287
Chris Lattner22153252007-08-26 23:08:06 +00001288 // C99 6.8.5p5 - In C99, the do statement is a block. This is not
1289 // the case for C90. Start the loop scope.
Douglas Gregor8935b8b2008-12-10 06:34:36 +00001290 unsigned ScopeFlags;
David Blaikie4e4d0842012-03-11 07:00:24 +00001291 if (getLangOpts().C99)
Douglas Gregor8935b8b2008-12-10 06:34:36 +00001292 ScopeFlags = Scope::BreakScope | Scope::ContinueScope | Scope::DeclScope;
Chris Lattner22153252007-08-26 23:08:06 +00001293 else
Douglas Gregor8935b8b2008-12-10 06:34:36 +00001294 ScopeFlags = Scope::BreakScope | Scope::ContinueScope;
Sebastian Redl9a920342008-12-11 19:48:14 +00001295
Douglas Gregor8935b8b2008-12-10 06:34:36 +00001296 ParseScope DoScope(this, ScopeFlags);
Reid Spencer5f016e22007-07-11 17:01:13 +00001297
Chris Lattner0ecea032007-08-22 05:28:50 +00001298 // C99 6.8.5p5 - In C99, the body of the if statement is a scope, even if
Chris Lattner38484402007-08-22 05:33:11 +00001299 // there is no compound stmt. C90 does not have this clause. We only do this
1300 // if the body isn't a compound statement to avoid push/pop in common cases.
Argyrios Kyrtzidis143db712008-09-11 04:46:46 +00001301 //
1302 // C++ 6.5p2:
1303 // The substatement in an iteration-statement implicitly defines a local scope
1304 // which is entered and exited each time through the loop.
1305 //
Douglas Gregor8935b8b2008-12-10 06:34:36 +00001306 ParseScope InnerScope(this, Scope::DeclScope,
David Blaikie4e4d0842012-03-11 07:00:24 +00001307 (getLangOpts().C99 || getLangOpts().CPlusPlus) &&
Douglas Gregor8935b8b2008-12-10 06:34:36 +00001308 Tok.isNot(tok::l_brace));
Sebastian Redl9a920342008-12-11 19:48:14 +00001309
Reid Spencer5f016e22007-07-11 17:01:13 +00001310 // Read the body statement.
John McCall60d7b3a2010-08-24 06:29:42 +00001311 StmtResult Body(ParseStatement());
Reid Spencer5f016e22007-07-11 17:01:13 +00001312
Chris Lattner0ecea032007-08-22 05:28:50 +00001313 // Pop the body scope if needed.
Douglas Gregor8935b8b2008-12-10 06:34:36 +00001314 InnerScope.Exit();
Chris Lattner0ecea032007-08-22 05:28:50 +00001315
Chris Lattner4e1d99a2007-10-09 17:41:39 +00001316 if (Tok.isNot(tok::kw_while)) {
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001317 if (!Body.isInvalid()) {
Chris Lattner19504402008-11-13 18:52:53 +00001318 Diag(Tok, diag::err_expected_while);
Chris Lattner28eb7e92008-11-23 23:17:07 +00001319 Diag(DoLoc, diag::note_matching) << "do";
Chris Lattner19504402008-11-13 18:52:53 +00001320 SkipUntil(tok::semi, false, true);
1321 }
Sebastian Redl9a920342008-12-11 19:48:14 +00001322 return StmtError();
Reid Spencer5f016e22007-07-11 17:01:13 +00001323 }
1324 SourceLocation WhileLoc = ConsumeToken();
Sebastian Redl9a920342008-12-11 19:48:14 +00001325
Chris Lattner4e1d99a2007-10-09 17:41:39 +00001326 if (Tok.isNot(tok::l_paren)) {
Chris Lattner1ab3b962008-11-18 07:48:38 +00001327 Diag(Tok, diag::err_expected_lparen_after) << "do/while";
Chris Lattner19504402008-11-13 18:52:53 +00001328 SkipUntil(tok::semi, false, true);
Sebastian Redl9a920342008-12-11 19:48:14 +00001329 return StmtError();
Reid Spencer5f016e22007-07-11 17:01:13 +00001330 }
Sebastian Redl9a920342008-12-11 19:48:14 +00001331
Richard Smith5eed7e02013-10-15 01:34:54 +00001332 // Parse the parenthesized expression.
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00001333 BalancedDelimiterTracker T(*this, tok::l_paren);
1334 T.consumeOpen();
Chad Rosierb6604462012-07-10 21:35:27 +00001335
Richard Smith5eed7e02013-10-15 01:34:54 +00001336 // A do-while expression is not a condition, so can't have attributes.
1337 DiagnoseAndSkipCXX11Attributes();
Sean Hunt2edf0a22012-06-23 05:07:58 +00001338
John McCall60d7b3a2010-08-24 06:29:42 +00001339 ExprResult Cond = ParseExpression();
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00001340 T.consumeClose();
Douglas Gregor8935b8b2008-12-10 06:34:36 +00001341 DoScope.Exit();
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001342
Sebastian Redl9a920342008-12-11 19:48:14 +00001343 if (Cond.isInvalid() || Body.isInvalid())
1344 return StmtError();
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001345
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00001346 return Actions.ActOnDoStmt(DoLoc, Body.get(), WhileLoc, T.getOpenLocation(),
1347 Cond.get(), T.getCloseLocation());
Reid Spencer5f016e22007-07-11 17:01:13 +00001348}
1349
1350/// ParseForStatement
1351/// for-statement: [C99 6.8.5.3]
1352/// 'for' '(' expr[opt] ';' expr[opt] ';' expr[opt] ')' statement
1353/// 'for' '(' declaration expr[opt] ';' expr[opt] ')' statement
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +00001354/// [C++] 'for' '(' for-init-statement condition[opt] ';' expression[opt] ')'
1355/// [C++] statement
Richard Smithad762fc2011-04-14 22:09:26 +00001356/// [C++0x] 'for' '(' for-range-declaration : for-range-initializer ) statement
Fariborz Jahanian3ba5a0f2008-01-03 17:55:25 +00001357/// [OBJC2] 'for' '(' declaration 'in' expr ')' statement
1358/// [OBJC2] 'for' '(' expr 'in' expr ')' statement
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +00001359///
1360/// [C++] for-init-statement:
1361/// [C++] expression-statement
1362/// [C++] simple-declaration
1363///
Richard Smithad762fc2011-04-14 22:09:26 +00001364/// [C++0x] for-range-declaration:
1365/// [C++0x] attribute-specifier-seq[opt] type-specifier-seq declarator
1366/// [C++0x] for-range-initializer:
1367/// [C++0x] expression
1368/// [C++0x] braced-init-list [TODO]
Richard Smith534986f2012-04-14 00:33:13 +00001369StmtResult Parser::ParseForStatement(SourceLocation *TrailingElseLoc) {
Chris Lattner4e1d99a2007-10-09 17:41:39 +00001370 assert(Tok.is(tok::kw_for) && "Not a for stmt!");
Reid Spencer5f016e22007-07-11 17:01:13 +00001371 SourceLocation ForLoc = ConsumeToken(); // eat the 'for'.
Sebastian Redl9a920342008-12-11 19:48:14 +00001372
Chris Lattner4e1d99a2007-10-09 17:41:39 +00001373 if (Tok.isNot(tok::l_paren)) {
Chris Lattner1ab3b962008-11-18 07:48:38 +00001374 Diag(Tok, diag::err_expected_lparen_after) << "for";
Reid Spencer5f016e22007-07-11 17:01:13 +00001375 SkipUntil(tok::semi);
Sebastian Redl9a920342008-12-11 19:48:14 +00001376 return StmtError();
Reid Spencer5f016e22007-07-11 17:01:13 +00001377 }
Sebastian Redl9a920342008-12-11 19:48:14 +00001378
Chad Rosierb6604462012-07-10 21:35:27 +00001379 bool C99orCXXorObjC = getLangOpts().C99 || getLangOpts().CPlusPlus ||
1380 getLangOpts().ObjC1;
Argyrios Kyrtzidis488d37e2008-09-11 03:06:46 +00001381
Chris Lattner22153252007-08-26 23:08:06 +00001382 // C99 6.8.5p5 - In C99, the for statement is a block. This is not
1383 // the case for C90. Start the loop scope.
Argyrios Kyrtzidis488d37e2008-09-11 03:06:46 +00001384 //
1385 // C++ 6.4p3:
1386 // A name introduced by a declaration in a condition is in scope from its
1387 // point of declaration until the end of the substatements controlled by the
1388 // condition.
Argyrios Kyrtzidis14d08c02008-09-11 23:08:39 +00001389 // C++ 3.3.2p4:
1390 // Names declared in the for-init-statement, and in the condition of if,
1391 // while, for, and switch statements are local to the if, while, for, or
1392 // switch statement (including the controlled statement).
Argyrios Kyrtzidis488d37e2008-09-11 03:06:46 +00001393 // C++ 6.5.3p1:
1394 // Names declared in the for-init-statement are in the same declarative-region
1395 // as those declared in the condition.
1396 //
Douglas Gregor8935b8b2008-12-10 06:34:36 +00001397 unsigned ScopeFlags;
Chris Lattner4d00f2a2009-04-22 00:54:41 +00001398 if (C99orCXXorObjC)
Douglas Gregor8935b8b2008-12-10 06:34:36 +00001399 ScopeFlags = Scope::BreakScope | Scope::ContinueScope |
1400 Scope::DeclScope | Scope::ControlScope;
Chris Lattner22153252007-08-26 23:08:06 +00001401 else
Douglas Gregor8935b8b2008-12-10 06:34:36 +00001402 ScopeFlags = Scope::BreakScope | Scope::ContinueScope;
1403
1404 ParseScope ForScope(this, ScopeFlags);
Reid Spencer5f016e22007-07-11 17:01:13 +00001405
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00001406 BalancedDelimiterTracker T(*this, tok::l_paren);
1407 T.consumeOpen();
1408
John McCall60d7b3a2010-08-24 06:29:42 +00001409 ExprResult Value;
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001410
Richard Smithad762fc2011-04-14 22:09:26 +00001411 bool ForEach = false, ForRange = false;
John McCall60d7b3a2010-08-24 06:29:42 +00001412 StmtResult FirstPart;
Douglas Gregoreecf38f2010-05-06 21:39:56 +00001413 bool SecondPartIsInvalid = false;
Douglas Gregor586596f2010-05-06 17:25:47 +00001414 FullExprArg SecondPart(Actions);
John McCall60d7b3a2010-08-24 06:29:42 +00001415 ExprResult Collection;
Richard Smithad762fc2011-04-14 22:09:26 +00001416 ForRangeInit ForRangeInit;
Douglas Gregor586596f2010-05-06 17:25:47 +00001417 FullExprArg ThirdPart(Actions);
John McCalld226f652010-08-21 09:40:31 +00001418 Decl *SecondVar = 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001419
Douglas Gregor791215b2009-09-21 20:51:25 +00001420 if (Tok.is(tok::code_completion)) {
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001421 Actions.CodeCompleteOrdinaryName(getCurScope(),
John McCallf312b1e2010-08-26 23:41:50 +00001422 C99orCXXorObjC? Sema::PCC_ForInit
1423 : Sema::PCC_Expression);
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00001424 cutOffParsing();
1425 return StmtError();
Douglas Gregor791215b2009-09-21 20:51:25 +00001426 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001427
Sean Hunt2edf0a22012-06-23 05:07:58 +00001428 ParsedAttributesWithRange attrs(AttrFactory);
Richard Smith4e24f0f2013-01-02 12:01:23 +00001429 MaybeParseCXX11Attributes(attrs);
Sean Hunt2edf0a22012-06-23 05:07:58 +00001430
Reid Spencer5f016e22007-07-11 17:01:13 +00001431 // Parse the first part of the for specifier.
Chris Lattner4e1d99a2007-10-09 17:41:39 +00001432 if (Tok.is(tok::semi)) { // for (;
Sean Hunt2edf0a22012-06-23 05:07:58 +00001433 ProhibitAttributes(attrs);
Reid Spencer5f016e22007-07-11 17:01:13 +00001434 // no first part, eat the ';'.
1435 ConsumeToken();
Eli Friedman9490ab42011-12-20 01:50:37 +00001436 } else if (isForInitDeclaration()) { // for (int X = 4;
Reid Spencer5f016e22007-07-11 17:01:13 +00001437 // Parse declaration, which eats the ';'.
Chris Lattner4d00f2a2009-04-22 00:54:41 +00001438 if (!C99orCXXorObjC) // Use of C99-style for loops in C90 mode?
Reid Spencer5f016e22007-07-11 17:01:13 +00001439 Diag(Tok, diag::ext_c99_variable_decl_in_for_loop);
Sebastian Redl9a920342008-12-11 19:48:14 +00001440
Richard Smithad762fc2011-04-14 22:09:26 +00001441 // In C++0x, "for (T NS:a" might not be a typo for ::
David Blaikie4e4d0842012-03-11 07:00:24 +00001442 bool MightBeForRangeStmt = getLangOpts().CPlusPlus;
Richard Smithad762fc2011-04-14 22:09:26 +00001443 ColonProtectionRAIIObject ColonProtection(*this, MightBeForRangeStmt);
1444
Chris Lattner97144fc2009-04-02 04:16:50 +00001445 SourceLocation DeclStart = Tok.getLocation(), DeclEnd;
Benjamin Kramer4e28d9e2012-08-23 22:51:59 +00001446 StmtVector Stmts;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001447 DeclGroupPtrTy DG = ParseSimpleDeclaration(Stmts, Declarator::ForContext,
Richard Smithad762fc2011-04-14 22:09:26 +00001448 DeclEnd, attrs, false,
1449 MightBeForRangeStmt ?
1450 &ForRangeInit : 0);
Chris Lattnercd147752009-03-29 17:27:48 +00001451 FirstPart = Actions.ActOnDeclStmt(DG, DeclStart, Tok.getLocation());
Mike Stump1eb44332009-09-09 15:08:12 +00001452
Richard Smithad762fc2011-04-14 22:09:26 +00001453 if (ForRangeInit.ParsedForRangeDecl()) {
Richard Smith80ad52f2013-01-02 11:42:31 +00001454 Diag(ForRangeInit.ColonLoc, getLangOpts().CPlusPlus11 ?
Richard Smith7fe62082011-10-15 05:09:34 +00001455 diag::warn_cxx98_compat_for_range : diag::ext_for_range);
Richard Smith8f4fb192011-09-04 19:54:14 +00001456
Richard Smithad762fc2011-04-14 22:09:26 +00001457 ForRange = true;
1458 } else if (Tok.is(tok::semi)) { // for (int x = 4;
Chris Lattnercd147752009-03-29 17:27:48 +00001459 ConsumeToken();
1460 } else if ((ForEach = isTokIdentifier_in())) {
Fariborz Jahaniana7cf23a2009-11-19 22:12:37 +00001461 Actions.ActOnForEachDeclStmt(DG);
Mike Stump1eb44332009-09-09 15:08:12 +00001462 // ObjC: for (id x in expr)
Fariborz Jahanian3ba5a0f2008-01-03 17:55:25 +00001463 ConsumeToken(); // consume 'in'
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001464
Douglas Gregorfb629412010-08-23 21:17:50 +00001465 if (Tok.is(tok::code_completion)) {
1466 Actions.CodeCompleteObjCForCollection(getCurScope(), DG);
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00001467 cutOffParsing();
1468 return StmtError();
Douglas Gregorfb629412010-08-23 21:17:50 +00001469 }
Douglas Gregor586596f2010-05-06 17:25:47 +00001470 Collection = ParseExpression();
Chris Lattnercd147752009-03-29 17:27:48 +00001471 } else {
1472 Diag(Tok, diag::err_expected_semi_for);
Fariborz Jahanian3ba5a0f2008-01-03 17:55:25 +00001473 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001474 } else {
Sean Hunt2edf0a22012-06-23 05:07:58 +00001475 ProhibitAttributes(attrs);
Reid Spencer5f016e22007-07-11 17:01:13 +00001476 Value = ParseExpression();
1477
John McCallf6a16482010-12-04 03:47:34 +00001478 ForEach = isTokIdentifier_in();
1479
Reid Spencer5f016e22007-07-11 17:01:13 +00001480 // Turn the expression into a stmt.
John McCallf6a16482010-12-04 03:47:34 +00001481 if (!Value.isInvalid()) {
1482 if (ForEach)
1483 FirstPart = Actions.ActOnForEachLValueExpr(Value.get());
1484 else
Richard Smith41956372013-01-14 22:39:08 +00001485 FirstPart = Actions.ActOnExprStmt(Value);
John McCallf6a16482010-12-04 03:47:34 +00001486 }
Sebastian Redleffa8d12008-12-10 00:02:53 +00001487
Chris Lattner4e1d99a2007-10-09 17:41:39 +00001488 if (Tok.is(tok::semi)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001489 ConsumeToken();
John McCallf6a16482010-12-04 03:47:34 +00001490 } else if (ForEach) {
Fariborz Jahanian3ba5a0f2008-01-03 17:55:25 +00001491 ConsumeToken(); // consume 'in'
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001492
Douglas Gregorfb629412010-08-23 21:17:50 +00001493 if (Tok.is(tok::code_completion)) {
1494 Actions.CodeCompleteObjCForCollection(getCurScope(), DeclGroupPtrTy());
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00001495 cutOffParsing();
1496 return StmtError();
Douglas Gregorfb629412010-08-23 21:17:50 +00001497 }
Douglas Gregor586596f2010-05-06 17:25:47 +00001498 Collection = ParseExpression();
Richard Smith80ad52f2013-01-02 11:42:31 +00001499 } else if (getLangOpts().CPlusPlus11 && Tok.is(tok::colon) && FirstPart.get()) {
Richard Smitha44854a2011-12-20 22:56:20 +00001500 // User tried to write the reasonable, but ill-formed, for-range-statement
1501 // for (expr : expr) { ... }
1502 Diag(Tok, diag::err_for_range_expected_decl)
1503 << FirstPart.get()->getSourceRange();
1504 SkipUntil(tok::r_paren, false, true);
1505 SecondPartIsInvalid = true;
Chris Lattner682bf922009-03-29 16:50:03 +00001506 } else {
Douglas Gregorb72c7782011-02-17 03:38:46 +00001507 if (!Value.isInvalid()) {
1508 Diag(Tok, diag::err_expected_semi_for);
1509 } else {
1510 // Skip until semicolon or rparen, don't consume it.
1511 SkipUntil(tok::r_paren, true, true);
1512 if (Tok.is(tok::semi))
1513 ConsumeToken();
1514 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001515 }
1516 }
Richard Smithad762fc2011-04-14 22:09:26 +00001517 if (!ForEach && !ForRange) {
John McCall9ae2f072010-08-23 23:25:46 +00001518 assert(!SecondPart.get() && "Shouldn't have a second expression yet.");
Fariborz Jahanian3ba5a0f2008-01-03 17:55:25 +00001519 // Parse the second part of the for specifier.
1520 if (Tok.is(tok::semi)) { // for (...;;
1521 // no second part.
Douglas Gregorb72c7782011-02-17 03:38:46 +00001522 } else if (Tok.is(tok::r_paren)) {
1523 // missing both semicolons.
Fariborz Jahanian3ba5a0f2008-01-03 17:55:25 +00001524 } else {
John McCall60d7b3a2010-08-24 06:29:42 +00001525 ExprResult Second;
David Blaikie4e4d0842012-03-11 07:00:24 +00001526 if (getLangOpts().CPlusPlus)
Douglas Gregor586596f2010-05-06 17:25:47 +00001527 ParseCXXCondition(Second, SecondVar, ForLoc, true);
1528 else {
1529 Second = ParseExpression();
1530 if (!Second.isInvalid())
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001531 Second = Actions.ActOnBooleanCondition(getCurScope(), ForLoc,
John McCall9ae2f072010-08-23 23:25:46 +00001532 Second.get());
Douglas Gregor586596f2010-05-06 17:25:47 +00001533 }
Douglas Gregoreecf38f2010-05-06 21:39:56 +00001534 SecondPartIsInvalid = Second.isInvalid();
David Blaikiedef07622012-05-16 04:20:04 +00001535 SecondPart = Actions.MakeFullExpr(Second.get(), ForLoc);
Fariborz Jahanian3ba5a0f2008-01-03 17:55:25 +00001536 }
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001537
Douglas Gregorb72c7782011-02-17 03:38:46 +00001538 if (Tok.isNot(tok::semi)) {
1539 if (!SecondPartIsInvalid || SecondVar)
1540 Diag(Tok, diag::err_expected_semi_for);
1541 else
1542 // Skip until semicolon or rparen, don't consume it.
1543 SkipUntil(tok::r_paren, true, true);
1544 }
1545
Fariborz Jahanian3ba5a0f2008-01-03 17:55:25 +00001546 if (Tok.is(tok::semi)) {
1547 ConsumeToken();
Fariborz Jahanian3ba5a0f2008-01-03 17:55:25 +00001548 }
Sebastian Redl9a920342008-12-11 19:48:14 +00001549
Fariborz Jahanian3ba5a0f2008-01-03 17:55:25 +00001550 // Parse the third part of the for specifier.
Douglas Gregor586596f2010-05-06 17:25:47 +00001551 if (Tok.isNot(tok::r_paren)) { // for (...;...;)
John McCall60d7b3a2010-08-24 06:29:42 +00001552 ExprResult Third = ParseExpression();
Richard Smith41956372013-01-14 22:39:08 +00001553 // FIXME: The C++11 standard doesn't actually say that this is a
1554 // discarded-value expression, but it clearly should be.
1555 ThirdPart = Actions.MakeFullDiscardedValueExpr(Third.take());
Douglas Gregor586596f2010-05-06 17:25:47 +00001556 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001557 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001558 // Match the ')'.
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00001559 T.consumeClose();
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001560
Richard Smithad762fc2011-04-14 22:09:26 +00001561 // We need to perform most of the semantic analysis for a C++0x for-range
1562 // statememt before parsing the body, in order to be able to deduce the type
1563 // of an auto-typed loop variable.
1564 StmtResult ForRangeStmt;
Fariborz Jahaniana1eec4b2012-07-03 22:00:52 +00001565 StmtResult ForEachStmt;
Chad Rosierb6604462012-07-10 21:35:27 +00001566
John McCall990567c2011-07-27 01:07:15 +00001567 if (ForRange) {
Sam Panzerbc20bbb2012-08-16 21:47:25 +00001568 ForRangeStmt = Actions.ActOnCXXForRangeStmt(ForLoc, FirstPart.take(),
Richard Smithad762fc2011-04-14 22:09:26 +00001569 ForRangeInit.ColonLoc,
1570 ForRangeInit.RangeExpr.get(),
Richard Smith8b533d92012-09-20 21:52:32 +00001571 T.getCloseLocation(),
1572 Sema::BFRK_Build);
Richard Smithad762fc2011-04-14 22:09:26 +00001573
John McCall990567c2011-07-27 01:07:15 +00001574
1575 // Similarly, we need to do the semantic analysis for a for-range
1576 // statement immediately in order to close over temporaries correctly.
1577 } else if (ForEach) {
Sam Panzerbc20bbb2012-08-16 21:47:25 +00001578 ForEachStmt = Actions.ActOnObjCForCollectionStmt(ForLoc,
Fariborz Jahaniana1eec4b2012-07-03 22:00:52 +00001579 FirstPart.take(),
Chad Rosierb6604462012-07-10 21:35:27 +00001580 Collection.take(),
Fariborz Jahaniana1eec4b2012-07-03 22:00:52 +00001581 T.getCloseLocation());
John McCall990567c2011-07-27 01:07:15 +00001582 }
1583
Chris Lattner0ecea032007-08-22 05:28:50 +00001584 // C99 6.8.5p5 - In C99, the body of the if statement is a scope, even if
Chris Lattner38484402007-08-22 05:33:11 +00001585 // there is no compound stmt. C90 does not have this clause. We only do this
1586 // if the body isn't a compound statement to avoid push/pop in common cases.
Argyrios Kyrtzidis488d37e2008-09-11 03:06:46 +00001587 //
1588 // C++ 6.5p2:
1589 // The substatement in an iteration-statement implicitly defines a local scope
1590 // which is entered and exited each time through the loop.
1591 //
1592 // See comments in ParseIfStatement for why we create a scope for
1593 // for-init-statement/condition and a new scope for substatement in C++.
1594 //
Mike Stump1eb44332009-09-09 15:08:12 +00001595 ParseScope InnerScope(this, Scope::DeclScope,
Chris Lattner4d00f2a2009-04-22 00:54:41 +00001596 C99orCXXorObjC && Tok.isNot(tok::l_brace));
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001597
Reid Spencer5f016e22007-07-11 17:01:13 +00001598 // Read the body statement.
Nico Weber5cb94a72011-12-22 23:26:17 +00001599 StmtResult Body(ParseStatement(TrailingElseLoc));
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001600
Chris Lattner0ecea032007-08-22 05:28:50 +00001601 // Pop the body scope if needed.
Douglas Gregor8935b8b2008-12-10 06:34:36 +00001602 InnerScope.Exit();
Chris Lattner0ecea032007-08-22 05:28:50 +00001603
Reid Spencer5f016e22007-07-11 17:01:13 +00001604 // Leave the for-scope.
Douglas Gregor8935b8b2008-12-10 06:34:36 +00001605 ForScope.Exit();
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001606
1607 if (Body.isInvalid())
Sebastian Redl9a920342008-12-11 19:48:14 +00001608 return StmtError();
Sebastian Redleffa8d12008-12-10 00:02:53 +00001609
Richard Smithad762fc2011-04-14 22:09:26 +00001610 if (ForEach)
Fariborz Jahaniana1eec4b2012-07-03 22:00:52 +00001611 return Actions.FinishObjCForCollectionStmt(ForEachStmt.take(),
1612 Body.take());
Mike Stump1eb44332009-09-09 15:08:12 +00001613
Richard Smithad762fc2011-04-14 22:09:26 +00001614 if (ForRange)
1615 return Actions.FinishCXXForRangeStmt(ForRangeStmt.take(), Body.take());
1616
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00001617 return Actions.ActOnForStmt(ForLoc, T.getOpenLocation(), FirstPart.take(),
1618 SecondPart, SecondVar, ThirdPart,
1619 T.getCloseLocation(), Body.take());
Reid Spencer5f016e22007-07-11 17:01:13 +00001620}
1621
1622/// ParseGotoStatement
1623/// jump-statement:
1624/// 'goto' identifier ';'
1625/// [GNU] 'goto' '*' expression ';'
1626///
1627/// Note: this lets the caller parse the end ';'.
1628///
Richard Smith534986f2012-04-14 00:33:13 +00001629StmtResult Parser::ParseGotoStatement() {
Chris Lattner4e1d99a2007-10-09 17:41:39 +00001630 assert(Tok.is(tok::kw_goto) && "Not a goto stmt!");
Reid Spencer5f016e22007-07-11 17:01:13 +00001631 SourceLocation GotoLoc = ConsumeToken(); // eat the 'goto'.
Sebastian Redl9a920342008-12-11 19:48:14 +00001632
John McCall60d7b3a2010-08-24 06:29:42 +00001633 StmtResult Res;
Chris Lattner4e1d99a2007-10-09 17:41:39 +00001634 if (Tok.is(tok::identifier)) {
Chris Lattner337e5502011-02-18 01:27:55 +00001635 LabelDecl *LD = Actions.LookupOrCreateLabel(Tok.getIdentifierInfo(),
1636 Tok.getLocation());
1637 Res = Actions.ActOnGotoStmt(GotoLoc, Tok.getLocation(), LD);
Reid Spencer5f016e22007-07-11 17:01:13 +00001638 ConsumeToken();
Eli Friedmanf01fdff2009-04-28 00:51:18 +00001639 } else if (Tok.is(tok::star)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001640 // GNU indirect goto extension.
1641 Diag(Tok, diag::ext_gnu_indirect_goto);
1642 SourceLocation StarLoc = ConsumeToken();
John McCall60d7b3a2010-08-24 06:29:42 +00001643 ExprResult R(ParseExpression());
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001644 if (R.isInvalid()) { // Skip to the semicolon, but don't consume it.
Reid Spencer5f016e22007-07-11 17:01:13 +00001645 SkipUntil(tok::semi, false, true);
Sebastian Redl9a920342008-12-11 19:48:14 +00001646 return StmtError();
Reid Spencer5f016e22007-07-11 17:01:13 +00001647 }
John McCall9ae2f072010-08-23 23:25:46 +00001648 Res = Actions.ActOnIndirectGotoStmt(GotoLoc, StarLoc, R.take());
Chris Lattner95cfb852007-07-22 04:13:33 +00001649 } else {
1650 Diag(Tok, diag::err_expected_ident);
Sebastian Redl9a920342008-12-11 19:48:14 +00001651 return StmtError();
Reid Spencer5f016e22007-07-11 17:01:13 +00001652 }
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001653
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00001654 return Res;
Reid Spencer5f016e22007-07-11 17:01:13 +00001655}
1656
1657/// ParseContinueStatement
1658/// jump-statement:
1659/// 'continue' ';'
1660///
1661/// Note: this lets the caller parse the end ';'.
1662///
Richard Smith534986f2012-04-14 00:33:13 +00001663StmtResult Parser::ParseContinueStatement() {
Reid Spencer5f016e22007-07-11 17:01:13 +00001664 SourceLocation ContinueLoc = ConsumeToken(); // eat the 'continue'.
Douglas Gregor23c94db2010-07-02 17:43:08 +00001665 return Actions.ActOnContinueStmt(ContinueLoc, getCurScope());
Reid Spencer5f016e22007-07-11 17:01:13 +00001666}
1667
1668/// ParseBreakStatement
1669/// jump-statement:
1670/// 'break' ';'
1671///
1672/// Note: this lets the caller parse the end ';'.
1673///
Richard Smith534986f2012-04-14 00:33:13 +00001674StmtResult Parser::ParseBreakStatement() {
Reid Spencer5f016e22007-07-11 17:01:13 +00001675 SourceLocation BreakLoc = ConsumeToken(); // eat the 'break'.
Douglas Gregor23c94db2010-07-02 17:43:08 +00001676 return Actions.ActOnBreakStmt(BreakLoc, getCurScope());
Reid Spencer5f016e22007-07-11 17:01:13 +00001677}
1678
1679/// ParseReturnStatement
1680/// jump-statement:
1681/// 'return' expression[opt] ';'
Richard Smith534986f2012-04-14 00:33:13 +00001682StmtResult Parser::ParseReturnStatement() {
Chris Lattner4e1d99a2007-10-09 17:41:39 +00001683 assert(Tok.is(tok::kw_return) && "Not a return stmt!");
Reid Spencer5f016e22007-07-11 17:01:13 +00001684 SourceLocation ReturnLoc = ConsumeToken(); // eat the 'return'.
Sebastian Redl9a920342008-12-11 19:48:14 +00001685
John McCall60d7b3a2010-08-24 06:29:42 +00001686 ExprResult R;
Chris Lattner4e1d99a2007-10-09 17:41:39 +00001687 if (Tok.isNot(tok::semi)) {
Douglas Gregor5ac3bdb2010-05-30 01:49:25 +00001688 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +00001689 Actions.CodeCompleteReturn(getCurScope());
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00001690 cutOffParsing();
Douglas Gregor5ac3bdb2010-05-30 01:49:25 +00001691 return StmtError();
1692 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001693
David Blaikie4e4d0842012-03-11 07:00:24 +00001694 if (Tok.is(tok::l_brace) && getLangOpts().CPlusPlus) {
Douglas Gregor6f4596c2011-03-11 23:10:44 +00001695 R = ParseInitializer();
Richard Smith7fe62082011-10-15 05:09:34 +00001696 if (R.isUsable())
Richard Smith80ad52f2013-01-02 11:42:31 +00001697 Diag(R.get()->getLocStart(), getLangOpts().CPlusPlus11 ?
Richard Smith7fe62082011-10-15 05:09:34 +00001698 diag::warn_cxx98_compat_generalized_initializer_lists :
1699 diag::ext_generalized_initializer_lists)
Douglas Gregor6f4596c2011-03-11 23:10:44 +00001700 << R.get()->getSourceRange();
1701 } else
1702 R = ParseExpression();
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001703 if (R.isInvalid()) { // Skip to the semicolon, but don't consume it.
Reid Spencer5f016e22007-07-11 17:01:13 +00001704 SkipUntil(tok::semi, false, true);
Sebastian Redl9a920342008-12-11 19:48:14 +00001705 return StmtError();
Reid Spencer5f016e22007-07-11 17:01:13 +00001706 }
1707 }
John McCall9ae2f072010-08-23 23:25:46 +00001708 return Actions.ActOnReturnStmt(ReturnLoc, R.take());
Reid Spencer5f016e22007-07-11 17:01:13 +00001709}
1710
John McCallaeeacf72013-05-03 00:10:13 +00001711namespace {
1712 class ClangAsmParserCallback : public llvm::MCAsmParserSemaCallback {
1713 Parser &TheParser;
1714 SourceLocation AsmLoc;
1715 StringRef AsmString;
1716
1717 /// The tokens we streamed into AsmString and handed off to MC.
1718 ArrayRef<Token> AsmToks;
1719
1720 /// The offset of each token in AsmToks within AsmString.
1721 ArrayRef<unsigned> AsmTokOffsets;
1722
1723 public:
1724 ClangAsmParserCallback(Parser &P, SourceLocation Loc,
1725 StringRef AsmString,
1726 ArrayRef<Token> Toks,
1727 ArrayRef<unsigned> Offsets)
1728 : TheParser(P), AsmLoc(Loc), AsmString(AsmString),
1729 AsmToks(Toks), AsmTokOffsets(Offsets) {
1730 assert(AsmToks.size() == AsmTokOffsets.size());
1731 }
1732
1733 void *LookupInlineAsmIdentifier(StringRef &LineBuf,
1734 InlineAsmIdentifierInfo &Info,
1735 bool IsUnevaluatedContext) {
1736 // Collect the desired tokens.
1737 SmallVector<Token, 16> LineToks;
1738 const Token *FirstOrigToken = 0;
1739 findTokensForString(LineBuf, LineToks, FirstOrigToken);
1740
1741 unsigned NumConsumedToks;
1742 ExprResult Result =
1743 TheParser.ParseMSAsmIdentifier(LineToks, NumConsumedToks, &Info,
1744 IsUnevaluatedContext);
1745
1746 // If we consumed the entire line, tell MC that.
1747 // Also do this if we consumed nothing as a way of reporting failure.
1748 if (NumConsumedToks == 0 || NumConsumedToks == LineToks.size()) {
1749 // By not modifying LineBuf, we're implicitly consuming it all.
1750
1751 // Otherwise, consume up to the original tokens.
1752 } else {
1753 assert(FirstOrigToken && "not using original tokens?");
1754
1755 // Since we're using original tokens, apply that offset.
1756 assert(FirstOrigToken[NumConsumedToks].getLocation()
1757 == LineToks[NumConsumedToks].getLocation());
1758 unsigned FirstIndex = FirstOrigToken - AsmToks.begin();
1759 unsigned LastIndex = FirstIndex + NumConsumedToks - 1;
1760
1761 // The total length we've consumed is the relative offset
1762 // of the last token we consumed plus its length.
1763 unsigned TotalOffset = (AsmTokOffsets[LastIndex]
1764 + AsmToks[LastIndex].getLength()
1765 - AsmTokOffsets[FirstIndex]);
1766 LineBuf = LineBuf.substr(0, TotalOffset);
1767 }
1768
1769 // Initialize the "decl" with the lookup result.
1770 Info.OpDecl = static_cast<void*>(Result.take());
1771 return Info.OpDecl;
1772 }
1773
1774 bool LookupInlineAsmField(StringRef Base, StringRef Member,
1775 unsigned &Offset) {
1776 return TheParser.getActions().LookupInlineAsmField(Base, Member,
1777 Offset, AsmLoc);
1778 }
1779
1780 static void DiagHandlerCallback(const llvm::SMDiagnostic &D,
1781 void *Context) {
1782 ((ClangAsmParserCallback*) Context)->handleDiagnostic(D);
1783 }
1784
1785 private:
1786 /// Collect the appropriate tokens for the given string.
1787 void findTokensForString(StringRef Str, SmallVectorImpl<Token> &TempToks,
1788 const Token *&FirstOrigToken) const {
1789 // For now, assert that the string we're working with is a substring
1790 // of what we gave to MC. This lets us use the original tokens.
1791 assert(!std::less<const char*>()(Str.begin(), AsmString.begin()) &&
1792 !std::less<const char*>()(AsmString.end(), Str.end()));
1793
1794 // Try to find a token whose offset matches the first token.
1795 unsigned FirstCharOffset = Str.begin() - AsmString.begin();
1796 const unsigned *FirstTokOffset
1797 = std::lower_bound(AsmTokOffsets.begin(), AsmTokOffsets.end(),
1798 FirstCharOffset);
1799
1800 // For now, assert that the start of the string exactly
1801 // corresponds to the start of a token.
1802 assert(*FirstTokOffset == FirstCharOffset);
1803
1804 // Use all the original tokens for this line. (We assume the
1805 // end of the line corresponds cleanly to a token break.)
1806 unsigned FirstTokIndex = FirstTokOffset - AsmTokOffsets.begin();
1807 FirstOrigToken = &AsmToks[FirstTokIndex];
1808 unsigned LastCharOffset = Str.end() - AsmString.begin();
1809 for (unsigned i = FirstTokIndex, e = AsmTokOffsets.size(); i != e; ++i) {
1810 if (AsmTokOffsets[i] >= LastCharOffset) break;
1811 TempToks.push_back(AsmToks[i]);
1812 }
1813 }
1814
1815 void handleDiagnostic(const llvm::SMDiagnostic &D) {
1816 // Compute an offset into the inline asm buffer.
1817 // FIXME: This isn't right if .macro is involved (but hopefully, no
1818 // real-world code does that).
1819 const llvm::SourceMgr &LSM = *D.getSourceMgr();
1820 const llvm::MemoryBuffer *LBuf =
1821 LSM.getMemoryBuffer(LSM.FindBufferContainingLoc(D.getLoc()));
1822 unsigned Offset = D.getLoc().getPointer() - LBuf->getBufferStart();
1823
1824 // Figure out which token that offset points into.
1825 const unsigned *TokOffsetPtr =
1826 std::lower_bound(AsmTokOffsets.begin(), AsmTokOffsets.end(), Offset);
1827 unsigned TokIndex = TokOffsetPtr - AsmTokOffsets.begin();
1828 unsigned TokOffset = *TokOffsetPtr;
1829
1830 // If we come up with an answer which seems sane, use it; otherwise,
1831 // just point at the __asm keyword.
1832 // FIXME: Assert the answer is sane once we handle .macro correctly.
1833 SourceLocation Loc = AsmLoc;
1834 if (TokIndex < AsmToks.size()) {
1835 const Token &Tok = AsmToks[TokIndex];
1836 Loc = Tok.getLocation();
1837 Loc = Loc.getLocWithOffset(Offset - TokOffset);
1838 }
1839 TheParser.Diag(Loc, diag::err_inline_ms_asm_parsing)
1840 << D.getMessage();
1841 }
1842 };
1843}
1844
1845/// Parse an identifier in an MS-style inline assembly block.
1846///
1847/// \param CastInfo - a void* so that we don't have to teach Parser.h
1848/// about the actual type.
1849ExprResult Parser::ParseMSAsmIdentifier(llvm::SmallVectorImpl<Token> &LineToks,
1850 unsigned &NumLineToksConsumed,
1851 void *CastInfo,
1852 bool IsUnevaluatedContext) {
1853 llvm::InlineAsmIdentifierInfo &Info =
1854 *(llvm::InlineAsmIdentifierInfo *) CastInfo;
1855
1856 // Push a fake token on the end so that we don't overrun the token
1857 // stream. We use ';' because it expression-parsing should never
1858 // overrun it.
1859 const tok::TokenKind EndOfStream = tok::semi;
1860 Token EndOfStreamTok;
1861 EndOfStreamTok.startToken();
1862 EndOfStreamTok.setKind(EndOfStream);
1863 LineToks.push_back(EndOfStreamTok);
1864
1865 // Also copy the current token over.
1866 LineToks.push_back(Tok);
1867
1868 PP.EnterTokenStream(LineToks.begin(),
1869 LineToks.size(),
1870 /*disable macros*/ true,
1871 /*owns tokens*/ false);
1872
1873 // Clear the current token and advance to the first token in LineToks.
1874 ConsumeAnyToken();
1875
1876 // Parse an optional scope-specifier if we're in C++.
1877 CXXScopeSpec SS;
1878 if (getLangOpts().CPlusPlus) {
1879 ParseOptionalCXXScopeSpecifier(SS, ParsedType(), /*EnteringContext=*/false);
1880 }
1881
1882 // Require an identifier here.
1883 SourceLocation TemplateKWLoc;
1884 UnqualifiedId Id;
1885 bool Invalid = ParseUnqualifiedId(SS,
1886 /*EnteringContext=*/false,
1887 /*AllowDestructorName=*/false,
1888 /*AllowConstructorName=*/false,
1889 /*ObjectType=*/ ParsedType(),
1890 TemplateKWLoc,
1891 Id);
1892
1893 // If we've run into the poison token we inserted before, or there
1894 // was a parsing error, then claim the entire line.
1895 if (Invalid || Tok.is(EndOfStream)) {
1896 NumLineToksConsumed = LineToks.size() - 2;
1897
1898 // Otherwise, claim up to the start of the next token.
1899 } else {
1900 // Figure out how many tokens we are into LineToks.
1901 unsigned LineIndex = 0;
1902 while (LineToks[LineIndex].getLocation() != Tok.getLocation()) {
1903 LineIndex++;
1904 assert(LineIndex < LineToks.size() - 2); // we added two extra tokens
1905 }
1906
1907 NumLineToksConsumed = LineIndex;
1908 }
1909
1910 // Finally, restore the old parsing state by consuming all the
1911 // tokens we staged before, implicitly killing off the
1912 // token-lexer we pushed.
1913 for (unsigned n = LineToks.size() - 2 - NumLineToksConsumed; n != 0; --n) {
1914 ConsumeAnyToken();
1915 }
1916 ConsumeToken(EndOfStream);
1917
1918 // Leave LineToks in its original state.
1919 LineToks.pop_back();
1920 LineToks.pop_back();
1921
1922 // Perform the lookup.
1923 return Actions.LookupInlineAsmIdentifier(SS, TemplateKWLoc, Id, Info,
1924 IsUnevaluatedContext);
1925}
1926
1927/// Turn a sequence of our tokens back into a string that we can hand
1928/// to the MC asm parser.
1929static bool buildMSAsmString(Preprocessor &PP,
1930 SourceLocation AsmLoc,
1931 ArrayRef<Token> AsmToks,
1932 SmallVectorImpl<unsigned> &TokOffsets,
1933 SmallString<512> &Asm) {
1934 assert (!AsmToks.empty() && "Didn't expect an empty AsmToks!");
1935
1936 // Is this the start of a new assembly statement?
1937 bool isNewStatement = true;
1938
1939 for (unsigned i = 0, e = AsmToks.size(); i < e; ++i) {
1940 const Token &Tok = AsmToks[i];
1941
1942 // Start each new statement with a newline and a tab.
1943 if (!isNewStatement &&
1944 (Tok.is(tok::kw_asm) || Tok.isAtStartOfLine())) {
1945 Asm += "\n\t";
1946 isNewStatement = true;
1947 }
1948
1949 // Preserve the existence of leading whitespace except at the
1950 // start of a statement.
1951 if (!isNewStatement && Tok.hasLeadingSpace())
1952 Asm += ' ';
1953
1954 // Remember the offset of this token.
1955 TokOffsets.push_back(Asm.size());
1956
1957 // Don't actually write '__asm' into the assembly stream.
1958 if (Tok.is(tok::kw_asm)) {
1959 // Complain about __asm at the end of the stream.
1960 if (i + 1 == e) {
1961 PP.Diag(AsmLoc, diag::err_asm_empty);
1962 return true;
1963 }
1964
1965 continue;
1966 }
1967
1968 // Append the spelling of the token.
1969 SmallString<32> SpellingBuffer;
1970 bool SpellingInvalid = false;
1971 Asm += PP.getSpelling(Tok, SpellingBuffer, &SpellingInvalid);
1972 assert(!SpellingInvalid && "spelling was invalid after correct parse?");
1973
1974 // We are no longer at the start of a statement.
1975 isNewStatement = false;
1976 }
1977
1978 // Ensure that the buffer is null-terminated.
1979 Asm.push_back('\0');
1980 Asm.pop_back();
1981
1982 assert(TokOffsets.size() == AsmToks.size());
1983 return false;
1984}
1985
Eli Friedman3fedbe12011-09-30 01:13:51 +00001986/// ParseMicrosoftAsmStatement. When -fms-extensions/-fasm-blocks is enabled,
1987/// this routine is called to collect the tokens for an MS asm statement.
Chad Rosier8cd64b42012-06-11 20:47:18 +00001988///
1989/// [MS] ms-asm-statement:
1990/// ms-asm-block
1991/// ms-asm-block ms-asm-statement
1992///
1993/// [MS] ms-asm-block:
1994/// '__asm' ms-asm-line '\n'
1995/// '__asm' '{' ms-asm-instruction-block[opt] '}' ';'[opt]
1996///
1997/// [MS] ms-asm-instruction-block
1998/// ms-asm-line
1999/// ms-asm-line '\n' ms-asm-instruction-block
2000///
Eli Friedman3fedbe12011-09-30 01:13:51 +00002001StmtResult Parser::ParseMicrosoftAsmStatement(SourceLocation AsmLoc) {
2002 SourceManager &SrcMgr = PP.getSourceManager();
2003 SourceLocation EndLoc = AsmLoc;
Chad Rosier8cd64b42012-06-11 20:47:18 +00002004 SmallVector<Token, 4> AsmToks;
Chad Rosier21ef7112012-08-14 19:22:06 +00002005
2006 bool InBraces = false;
2007 unsigned short savedBraceCount = 0;
2008 bool InAsmComment = false;
2009 FileID FID;
2010 unsigned LineNo = 0;
2011 unsigned NumTokensRead = 0;
2012 SourceLocation LBraceLoc;
2013
2014 if (Tok.is(tok::l_brace)) {
2015 // Braced inline asm: consume the opening brace.
2016 InBraces = true;
2017 savedBraceCount = BraceCount;
2018 EndLoc = LBraceLoc = ConsumeBrace();
2019 ++NumTokensRead;
2020 } else {
2021 // Single-line inline asm; compute which line it is on.
2022 std::pair<FileID, unsigned> ExpAsmLoc =
2023 SrcMgr.getDecomposedExpansionLoc(EndLoc);
2024 FID = ExpAsmLoc.first;
2025 LineNo = SrcMgr.getLineNumber(FID, ExpAsmLoc.second);
2026 }
2027
2028 SourceLocation TokLoc = Tok.getLocation();
Eli Friedman3fedbe12011-09-30 01:13:51 +00002029 do {
Chad Rosier21ef7112012-08-14 19:22:06 +00002030 // If we hit EOF, we're done, period.
2031 if (Tok.is(tok::eof))
Eli Friedman3fedbe12011-09-30 01:13:51 +00002032 break;
Chad Rosier21ef7112012-08-14 19:22:06 +00002033
Chad Rosier21ef7112012-08-14 19:22:06 +00002034 if (!InAsmComment && Tok.is(tok::semi)) {
2035 // A semicolon in an asm is the start of a comment.
2036 InAsmComment = true;
2037 if (InBraces) {
2038 // Compute which line the comment is on.
2039 std::pair<FileID, unsigned> ExpSemiLoc =
2040 SrcMgr.getDecomposedExpansionLoc(TokLoc);
2041 FID = ExpSemiLoc.first;
2042 LineNo = SrcMgr.getLineNumber(FID, ExpSemiLoc.second);
2043 }
2044 } else if (!InBraces || InAsmComment) {
2045 // If end-of-line is significant, check whether this token is on a
2046 // new line.
2047 std::pair<FileID, unsigned> ExpLoc =
2048 SrcMgr.getDecomposedExpansionLoc(TokLoc);
2049 if (ExpLoc.first != FID ||
2050 SrcMgr.getLineNumber(ExpLoc.first, ExpLoc.second) != LineNo) {
2051 // If this is a single-line __asm, we're done.
2052 if (!InBraces)
2053 break;
2054 // We're no longer in a comment.
2055 InAsmComment = false;
2056 } else if (!InAsmComment && Tok.is(tok::r_brace)) {
2057 // Single-line asm always ends when a closing brace is seen.
2058 // FIXME: This is compatible with Apple gcc's -fasm-blocks; what
2059 // does MSVC do here?
2060 break;
2061 }
2062 }
2063 if (!InAsmComment && InBraces && Tok.is(tok::r_brace) &&
2064 BraceCount == (savedBraceCount + 1)) {
2065 // Consume the closing brace, and finish
2066 EndLoc = ConsumeBrace();
2067 break;
2068 }
2069
2070 // Consume the next token; make sure we don't modify the brace count etc.
2071 // if we are in a comment.
2072 EndLoc = TokLoc;
2073 if (InAsmComment)
2074 PP.Lex(Tok);
2075 else {
2076 AsmToks.push_back(Tok);
2077 ConsumeAnyToken();
2078 }
2079 TokLoc = Tok.getLocation();
2080 ++NumTokensRead;
Eli Friedman3fedbe12011-09-30 01:13:51 +00002081 } while (1);
Chad Rosier8cd64b42012-06-11 20:47:18 +00002082
Chad Rosier21ef7112012-08-14 19:22:06 +00002083 if (InBraces && BraceCount != savedBraceCount) {
2084 // __asm without closing brace (this can happen at EOF).
2085 Diag(Tok, diag::err_expected_rbrace);
2086 Diag(LBraceLoc, diag::note_matching) << "{";
2087 return StmtError();
2088 } else if (NumTokensRead == 0) {
2089 // Empty __asm.
2090 Diag(Tok, diag::err_expected_lbrace);
2091 return StmtError();
2092 }
2093
John McCallaeeacf72013-05-03 00:10:13 +00002094 // Okay, prepare to use MC to parse the assembly.
2095 SmallVector<StringRef, 4> ConstraintRefs;
2096 SmallVector<Expr*, 4> Exprs;
2097 SmallVector<StringRef, 4> ClobberRefs;
2098
2099 // We need an actual supported target.
2100 llvm::Triple TheTriple = Actions.Context.getTargetInfo().getTriple();
2101 llvm::Triple::ArchType ArchTy = TheTriple.getArch();
Alp Tokerc94b5ae2013-10-30 15:07:10 +00002102 const std::string &TT = TheTriple.getTriple();
2103 const llvm::Target *TheTarget = 0;
John McCallaeeacf72013-05-03 00:10:13 +00002104 bool UnsupportedArch = (ArchTy != llvm::Triple::x86 &&
2105 ArchTy != llvm::Triple::x86_64);
Alp Tokerc94b5ae2013-10-30 15:07:10 +00002106 if (UnsupportedArch) {
John McCallaeeacf72013-05-03 00:10:13 +00002107 Diag(AsmLoc, diag::err_msasm_unsupported_arch) << TheTriple.getArchName();
Alp Tokerc94b5ae2013-10-30 15:07:10 +00002108 } else {
2109 std::string Error;
2110 TheTarget = llvm::TargetRegistry::lookupTarget(TT, Error);
2111 if (!TheTarget)
2112 Diag(AsmLoc, diag::err_msasm_unable_to_create_target) << Error;
2113 }
Alp Toker25973152013-10-30 14:29:28 +00002114
John McCallaeeacf72013-05-03 00:10:13 +00002115 // If we don't support assembly, or the assembly is empty, we don't
2116 // need to instantiate the AsmParser, etc.
Alp Tokerc94b5ae2013-10-30 15:07:10 +00002117 if (!TheTarget || AsmToks.empty()) {
John McCallaeeacf72013-05-03 00:10:13 +00002118 return Actions.ActOnMSAsmStmt(AsmLoc, LBraceLoc, AsmToks, StringRef(),
2119 /*NumOutputs*/ 0, /*NumInputs*/ 0,
2120 ConstraintRefs, ClobberRefs, Exprs, EndLoc);
2121 }
2122
2123 // Expand the tokens into a string buffer.
2124 SmallString<512> AsmString;
2125 SmallVector<unsigned, 8> TokOffsets;
2126 if (buildMSAsmString(PP, AsmLoc, AsmToks, TokOffsets, AsmString))
2127 return StmtError();
2128
John McCallaeeacf72013-05-03 00:10:13 +00002129 OwningPtr<llvm::MCRegisterInfo> MRI(TheTarget->createMCRegInfo(TT));
Rafael Espindola1fcf31e2013-05-13 01:24:18 +00002130 OwningPtr<llvm::MCAsmInfo> MAI(TheTarget->createMCAsmInfo(*MRI, TT));
Joey Gouly12981a72013-09-12 10:59:24 +00002131 // Get the instruction descriptor.
2132 const llvm::MCInstrInfo *MII = TheTarget->createMCInstrInfo();
John McCallaeeacf72013-05-03 00:10:13 +00002133 OwningPtr<llvm::MCObjectFileInfo> MOFI(new llvm::MCObjectFileInfo());
2134 OwningPtr<llvm::MCSubtargetInfo>
2135 STI(TheTarget->createMCSubtargetInfo(TT, "", ""));
2136
2137 llvm::SourceMgr TempSrcMgr;
Bill Wendling4b7bae32013-06-18 07:22:05 +00002138 llvm::MCContext Ctx(MAI.get(), MRI.get(), MOFI.get(), &TempSrcMgr);
John McCallaeeacf72013-05-03 00:10:13 +00002139 llvm::MemoryBuffer *Buffer =
2140 llvm::MemoryBuffer::getMemBuffer(AsmString, "<MS inline asm>");
2141
2142 // Tell SrcMgr about this buffer, which is what the parser will pick up.
2143 TempSrcMgr.AddNewSourceBuffer(Buffer, llvm::SMLoc());
2144
2145 OwningPtr<llvm::MCStreamer> Str(createNullStreamer(Ctx));
2146 OwningPtr<llvm::MCAsmParser>
2147 Parser(createMCAsmParser(TempSrcMgr, Ctx, *Str.get(), *MAI));
2148 OwningPtr<llvm::MCTargetAsmParser>
Joey Gouly12981a72013-09-12 10:59:24 +00002149 TargetParser(TheTarget->createMCAsmParser(*STI, *Parser, *MII));
John McCallaeeacf72013-05-03 00:10:13 +00002150
John McCallaeeacf72013-05-03 00:10:13 +00002151 llvm::MCInstPrinter *IP =
2152 TheTarget->createMCInstPrinter(1, *MAI, *MII, *MRI, *STI);
2153
2154 // Change to the Intel dialect.
2155 Parser->setAssemblerDialect(1);
2156 Parser->setTargetParser(*TargetParser.get());
2157 Parser->setParsingInlineAsm(true);
2158 TargetParser->setParsingInlineAsm(true);
2159
2160 ClangAsmParserCallback Callback(*this, AsmLoc, AsmString,
2161 AsmToks, TokOffsets);
2162 TargetParser->setSemaCallback(&Callback);
2163 TempSrcMgr.setDiagHandler(ClangAsmParserCallback::DiagHandlerCallback,
2164 &Callback);
2165
2166 unsigned NumOutputs;
2167 unsigned NumInputs;
2168 std::string AsmStringIR;
2169 SmallVector<std::pair<void *, bool>, 4> OpExprs;
2170 SmallVector<std::string, 4> Constraints;
2171 SmallVector<std::string, 4> Clobbers;
2172 if (Parser->parseMSInlineAsm(AsmLoc.getPtrEncoding(), AsmStringIR,
2173 NumOutputs, NumInputs, OpExprs, Constraints,
2174 Clobbers, MII, IP, Callback))
2175 return StmtError();
2176
2177 // Build the vector of clobber StringRefs.
2178 unsigned NumClobbers = Clobbers.size();
2179 ClobberRefs.resize(NumClobbers);
2180 for (unsigned i = 0; i != NumClobbers; ++i)
2181 ClobberRefs[i] = StringRef(Clobbers[i]);
2182
2183 // Recast the void pointers and build the vector of constraint StringRefs.
2184 unsigned NumExprs = NumOutputs + NumInputs;
2185 ConstraintRefs.resize(NumExprs);
2186 Exprs.resize(NumExprs);
2187 for (unsigned i = 0, e = NumExprs; i != e; ++i) {
2188 Expr *OpExpr = static_cast<Expr *>(OpExprs[i].first);
2189 if (!OpExpr)
2190 return StmtError();
2191
2192 // Need address of variable.
2193 if (OpExprs[i].second)
2194 OpExpr = Actions.BuildUnaryOp(getCurScope(), AsmLoc, UO_AddrOf, OpExpr)
2195 .take();
2196
2197 ConstraintRefs[i] = StringRef(Constraints[i]);
2198 Exprs[i] = OpExpr;
2199 }
2200
Chad Rosier8f726de2012-08-06 20:03:45 +00002201 // FIXME: We should be passing source locations for better diagnostics.
John McCallaeeacf72013-05-03 00:10:13 +00002202 return Actions.ActOnMSAsmStmt(AsmLoc, LBraceLoc, AsmToks, AsmStringIR,
2203 NumOutputs, NumInputs,
2204 ConstraintRefs, ClobberRefs, Exprs, EndLoc);
Steve Naroffd62701b2008-02-07 03:50:06 +00002205}
2206
Reid Spencer5f016e22007-07-11 17:01:13 +00002207/// ParseAsmStatement - Parse a GNU extended asm statement.
Steve Naroff5f8aa692008-02-11 23:15:56 +00002208/// asm-statement:
2209/// gnu-asm-statement
2210/// ms-asm-statement
2211///
2212/// [GNU] gnu-asm-statement:
Reid Spencer5f016e22007-07-11 17:01:13 +00002213/// 'asm' type-qualifier[opt] '(' asm-argument ')' ';'
2214///
2215/// [GNU] asm-argument:
2216/// asm-string-literal
2217/// asm-string-literal ':' asm-operands[opt]
2218/// asm-string-literal ':' asm-operands[opt] ':' asm-operands[opt]
2219/// asm-string-literal ':' asm-operands[opt] ':' asm-operands[opt]
2220/// ':' asm-clobbers
2221///
2222/// [GNU] asm-clobbers:
2223/// asm-string-literal
2224/// asm-clobbers ',' asm-string-literal
2225///
John McCall60d7b3a2010-08-24 06:29:42 +00002226StmtResult Parser::ParseAsmStatement(bool &msAsm) {
Chris Lattner4e1d99a2007-10-09 17:41:39 +00002227 assert(Tok.is(tok::kw_asm) && "Not an asm stmt");
Chris Lattnerfe795952007-10-29 04:04:16 +00002228 SourceLocation AsmLoc = ConsumeToken();
Sebastian Redl9a920342008-12-11 19:48:14 +00002229
Chad Rosier15490fd2012-12-05 21:08:21 +00002230 if (getLangOpts().AsmBlocks && Tok.isNot(tok::l_paren) &&
Chad Rosierb6604462012-07-10 21:35:27 +00002231 !isTypeQualifier()) {
Steve Naroffd62701b2008-02-07 03:50:06 +00002232 msAsm = true;
Eli Friedman3fedbe12011-09-30 01:13:51 +00002233 return ParseMicrosoftAsmStatement(AsmLoc);
Steve Naroffd62701b2008-02-07 03:50:06 +00002234 }
John McCall0b7e6782011-03-24 11:26:52 +00002235 DeclSpec DS(AttrFactory);
Reid Spencer5f016e22007-07-11 17:01:13 +00002236 SourceLocation Loc = Tok.getLocation();
Sean Huntbbd37c62009-11-21 08:43:09 +00002237 ParseTypeQualifierListOpt(DS, true, false);
Sebastian Redl9a920342008-12-11 19:48:14 +00002238
Reid Spencer5f016e22007-07-11 17:01:13 +00002239 // GNU asms accept, but warn, about type-qualifiers other than volatile.
2240 if (DS.getTypeQualifiers() & DeclSpec::TQ_const)
Chris Lattner1ab3b962008-11-18 07:48:38 +00002241 Diag(Loc, diag::w_asm_qualifier_ignored) << "const";
Reid Spencer5f016e22007-07-11 17:01:13 +00002242 if (DS.getTypeQualifiers() & DeclSpec::TQ_restrict)
Chris Lattner1ab3b962008-11-18 07:48:38 +00002243 Diag(Loc, diag::w_asm_qualifier_ignored) << "restrict";
Richard Smith4cf4a5e2013-03-28 01:55:44 +00002244 // FIXME: Once GCC supports _Atomic, check whether it permits it here.
2245 if (DS.getTypeQualifiers() & DeclSpec::TQ_atomic)
2246 Diag(Loc, diag::w_asm_qualifier_ignored) << "_Atomic";
Sebastian Redl9a920342008-12-11 19:48:14 +00002247
Reid Spencer5f016e22007-07-11 17:01:13 +00002248 // Remember if this was a volatile asm.
Anders Carlsson39c47b52007-11-23 23:12:25 +00002249 bool isVolatile = DS.getTypeQualifiers() & DeclSpec::TQ_volatile;
Chris Lattner4e1d99a2007-10-09 17:41:39 +00002250 if (Tok.isNot(tok::l_paren)) {
Chris Lattner1ab3b962008-11-18 07:48:38 +00002251 Diag(Tok, diag::err_expected_lparen_after) << "asm";
Reid Spencer5f016e22007-07-11 17:01:13 +00002252 SkipUntil(tok::r_paren);
Sebastian Redl9a920342008-12-11 19:48:14 +00002253 return StmtError();
Reid Spencer5f016e22007-07-11 17:01:13 +00002254 }
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002255 BalancedDelimiterTracker T(*this, tok::l_paren);
2256 T.consumeOpen();
Sebastian Redl9a920342008-12-11 19:48:14 +00002257
John McCall60d7b3a2010-08-24 06:29:42 +00002258 ExprResult AsmString(ParseAsmStringLiteral());
Ted Kremenek320fa4b2011-12-02 01:30:14 +00002259 if (AsmString.isInvalid()) {
Richard Smith99831e42012-03-06 03:21:47 +00002260 // Consume up to and including the closing paren.
2261 T.skipToEnd();
Sebastian Redl9a920342008-12-11 19:48:14 +00002262 return StmtError();
Ted Kremenek320fa4b2011-12-02 01:30:14 +00002263 }
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00002264
Chris Lattner5f9e2722011-07-23 10:55:15 +00002265 SmallVector<IdentifierInfo *, 4> Names;
Benjamin Kramer4e28d9e2012-08-23 22:51:59 +00002266 ExprVector Constraints;
2267 ExprVector Exprs;
2268 ExprVector Clobbers;
Reid Spencer5f016e22007-07-11 17:01:13 +00002269
Anders Carlssondfab34a2008-02-05 23:03:50 +00002270 if (Tok.is(tok::r_paren)) {
Chris Lattner64cb4752009-12-20 23:00:41 +00002271 // We have a simple asm expression like 'asm("foo")'.
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002272 T.consumeClose();
Chad Rosierdf5faf52012-08-25 00:11:56 +00002273 return Actions.ActOnGCCAsmStmt(AsmLoc, /*isSimple*/ true, isVolatile,
2274 /*NumOutputs*/ 0, /*NumInputs*/ 0, 0,
2275 Constraints, Exprs, AsmString.take(),
2276 Clobbers, T.getCloseLocation());
Reid Spencer5f016e22007-07-11 17:01:13 +00002277 }
Sebastian Redleffa8d12008-12-10 00:02:53 +00002278
Chris Lattner64cb4752009-12-20 23:00:41 +00002279 // Parse Outputs, if present.
Chris Lattner64056462009-12-20 23:08:04 +00002280 bool AteExtraColon = false;
2281 if (Tok.is(tok::colon) || Tok.is(tok::coloncolon)) {
2282 // In C++ mode, parse "::" like ": :".
2283 AteExtraColon = Tok.is(tok::coloncolon);
Chris Lattner64cb4752009-12-20 23:00:41 +00002284 ConsumeToken();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002285
Chris Lattner64056462009-12-20 23:08:04 +00002286 if (!AteExtraColon &&
2287 ParseAsmOperandsOpt(Names, Constraints, Exprs))
Chris Lattner64cb4752009-12-20 23:00:41 +00002288 return StmtError();
2289 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002290
Chris Lattner64cb4752009-12-20 23:00:41 +00002291 unsigned NumOutputs = Names.size();
2292
2293 // Parse Inputs, if present.
Chris Lattner64056462009-12-20 23:08:04 +00002294 if (AteExtraColon ||
2295 Tok.is(tok::colon) || Tok.is(tok::coloncolon)) {
2296 // In C++ mode, parse "::" like ": :".
2297 if (AteExtraColon)
2298 AteExtraColon = false;
2299 else {
2300 AteExtraColon = Tok.is(tok::coloncolon);
2301 ConsumeToken();
2302 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002303
Chris Lattner64056462009-12-20 23:08:04 +00002304 if (!AteExtraColon &&
2305 ParseAsmOperandsOpt(Names, Constraints, Exprs))
Chris Lattner64cb4752009-12-20 23:00:41 +00002306 return StmtError();
2307 }
2308
2309 assert(Names.size() == Constraints.size() &&
2310 Constraints.size() == Exprs.size() &&
2311 "Input operand size mismatch!");
2312
2313 unsigned NumInputs = Names.size() - NumOutputs;
2314
2315 // Parse the clobbers, if present.
Chris Lattner64056462009-12-20 23:08:04 +00002316 if (AteExtraColon || Tok.is(tok::colon)) {
2317 if (!AteExtraColon)
2318 ConsumeToken();
Chris Lattner64cb4752009-12-20 23:00:41 +00002319
Chandler Carruth102e1b62010-07-22 07:11:21 +00002320 // Parse the asm-string list for clobbers if present.
2321 if (Tok.isNot(tok::r_paren)) {
2322 while (1) {
John McCall60d7b3a2010-08-24 06:29:42 +00002323 ExprResult Clobber(ParseAsmStringLiteral());
Chris Lattner64cb4752009-12-20 23:00:41 +00002324
Chandler Carruth102e1b62010-07-22 07:11:21 +00002325 if (Clobber.isInvalid())
2326 break;
Chris Lattner64cb4752009-12-20 23:00:41 +00002327
Chandler Carruth102e1b62010-07-22 07:11:21 +00002328 Clobbers.push_back(Clobber.release());
Chris Lattner64cb4752009-12-20 23:00:41 +00002329
Chandler Carruth102e1b62010-07-22 07:11:21 +00002330 if (Tok.isNot(tok::comma)) break;
2331 ConsumeToken();
2332 }
Chris Lattner64cb4752009-12-20 23:00:41 +00002333 }
2334 }
2335
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002336 T.consumeClose();
Chad Rosierdf5faf52012-08-25 00:11:56 +00002337 return Actions.ActOnGCCAsmStmt(AsmLoc, false, isVolatile, NumOutputs,
2338 NumInputs, Names.data(), Constraints, Exprs,
2339 AsmString.take(), Clobbers,
2340 T.getCloseLocation());
Reid Spencer5f016e22007-07-11 17:01:13 +00002341}
2342
2343/// ParseAsmOperands - Parse the asm-operands production as used by
Chris Lattner64cb4752009-12-20 23:00:41 +00002344/// asm-statement, assuming the leading ':' token was eaten.
Reid Spencer5f016e22007-07-11 17:01:13 +00002345///
2346/// [GNU] asm-operands:
2347/// asm-operand
2348/// asm-operands ',' asm-operand
2349///
2350/// [GNU] asm-operand:
2351/// asm-string-literal '(' expression ')'
2352/// '[' identifier ']' asm-string-literal '(' expression ')'
2353///
Daniel Dunbar5ffe14c2009-10-18 20:26:27 +00002354//
2355// FIXME: Avoid unnecessary std::string trashing.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002356bool Parser::ParseAsmOperandsOpt(SmallVectorImpl<IdentifierInfo *> &Names,
Richard Trieuf81e5a92011-09-09 02:00:50 +00002357 SmallVectorImpl<Expr *> &Constraints,
2358 SmallVectorImpl<Expr *> &Exprs) {
Reid Spencer5f016e22007-07-11 17:01:13 +00002359 // 'asm-operands' isn't present?
Chris Lattner4e1d99a2007-10-09 17:41:39 +00002360 if (!isTokenStringLiteral() && Tok.isNot(tok::l_square))
Anders Carlsson8bd36fc2008-02-09 19:57:29 +00002361 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00002362
2363 while (1) {
Reid Spencer5f016e22007-07-11 17:01:13 +00002364 // Read the [id] if present.
Chris Lattner4e1d99a2007-10-09 17:41:39 +00002365 if (Tok.is(tok::l_square)) {
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002366 BalancedDelimiterTracker T(*this, tok::l_square);
2367 T.consumeOpen();
Mike Stump1eb44332009-09-09 15:08:12 +00002368
Chris Lattner4e1d99a2007-10-09 17:41:39 +00002369 if (Tok.isNot(tok::identifier)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00002370 Diag(Tok, diag::err_expected_ident);
2371 SkipUntil(tok::r_paren);
Anders Carlsson8bd36fc2008-02-09 19:57:29 +00002372 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +00002373 }
Mike Stump1eb44332009-09-09 15:08:12 +00002374
Anders Carlssonb235fc22007-11-22 01:36:19 +00002375 IdentifierInfo *II = Tok.getIdentifierInfo();
Chris Lattner69efba72007-10-29 04:06:22 +00002376 ConsumeToken();
Anders Carlssonb235fc22007-11-22 01:36:19 +00002377
Anders Carlssonff93dbd2010-01-30 22:25:16 +00002378 Names.push_back(II);
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002379 T.consumeClose();
Anders Carlssonb235fc22007-11-22 01:36:19 +00002380 } else
Anders Carlssonff93dbd2010-01-30 22:25:16 +00002381 Names.push_back(0);
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00002382
John McCall60d7b3a2010-08-24 06:29:42 +00002383 ExprResult Constraint(ParseAsmStringLiteral());
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00002384 if (Constraint.isInvalid()) {
Anders Carlssonb235fc22007-11-22 01:36:19 +00002385 SkipUntil(tok::r_paren);
Anders Carlsson8bd36fc2008-02-09 19:57:29 +00002386 return true;
Anders Carlssonb235fc22007-11-22 01:36:19 +00002387 }
Sebastian Redleffa8d12008-12-10 00:02:53 +00002388 Constraints.push_back(Constraint.release());
Reid Spencer5f016e22007-07-11 17:01:13 +00002389
Chris Lattner4e1d99a2007-10-09 17:41:39 +00002390 if (Tok.isNot(tok::l_paren)) {
Chris Lattner1ab3b962008-11-18 07:48:38 +00002391 Diag(Tok, diag::err_expected_lparen_after) << "asm operand";
Reid Spencer5f016e22007-07-11 17:01:13 +00002392 SkipUntil(tok::r_paren);
Anders Carlsson8bd36fc2008-02-09 19:57:29 +00002393 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +00002394 }
Sebastian Redleffa8d12008-12-10 00:02:53 +00002395
Reid Spencer5f016e22007-07-11 17:01:13 +00002396 // Read the parenthesized expression.
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002397 BalancedDelimiterTracker T(*this, tok::l_paren);
2398 T.consumeOpen();
John McCall60d7b3a2010-08-24 06:29:42 +00002399 ExprResult Res(ParseExpression());
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002400 T.consumeClose();
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00002401 if (Res.isInvalid()) {
Reid Spencer5f016e22007-07-11 17:01:13 +00002402 SkipUntil(tok::r_paren);
Anders Carlsson8bd36fc2008-02-09 19:57:29 +00002403 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +00002404 }
Sebastian Redleffa8d12008-12-10 00:02:53 +00002405 Exprs.push_back(Res.release());
Reid Spencer5f016e22007-07-11 17:01:13 +00002406 // Eat the comma and continue parsing if it exists.
Anders Carlsson8bd36fc2008-02-09 19:57:29 +00002407 if (Tok.isNot(tok::comma)) return false;
Reid Spencer5f016e22007-07-11 17:01:13 +00002408 ConsumeToken();
2409 }
2410}
Fariborz Jahanianf9ed3152007-11-08 19:01:26 +00002411
Douglas Gregorc9977d02011-03-16 17:05:57 +00002412Decl *Parser::ParseFunctionStatementBody(Decl *Decl, ParseScope &BodyScope) {
Chris Lattner40e9bc82009-03-05 00:49:17 +00002413 assert(Tok.is(tok::l_brace));
2414 SourceLocation LBraceLoc = Tok.getLocation();
Sebastian Redld3a413d2009-04-26 20:35:05 +00002415
Argyrios Kyrtzidis1f12c472013-02-22 04:11:06 +00002416 if (SkipFunctionBodies && (!Decl || Actions.canSkipFunctionBody(Decl)) &&
Richard Smith1a5bd5d2012-11-19 21:13:18 +00002417 trySkippingFunctionBody()) {
Erik Verbruggen6a91d382012-04-12 10:11:59 +00002418 BodyScope.Exit();
Argyrios Kyrtzidis35f3f362012-12-06 18:59:10 +00002419 return Actions.ActOnSkippedFunctionBody(Decl);
Douglas Gregorc9977d02011-03-16 17:05:57 +00002420 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002421
John McCallf312b1e2010-08-26 23:41:50 +00002422 PrettyDeclStackTraceEntry CrashInfo(Actions, Decl, LBraceLoc,
2423 "parsing function body");
Mike Stump1eb44332009-09-09 15:08:12 +00002424
Fariborz Jahanianf9ed3152007-11-08 19:01:26 +00002425 // Do not enter a scope for the brace, as the arguments are in the same scope
2426 // (the function body) as the body itself. Instead, just read the statement
2427 // list and put it into a CompoundStmt for safe keeping.
John McCall60d7b3a2010-08-24 06:29:42 +00002428 StmtResult FnBody(ParseCompoundStatementBody());
Sebastian Redl61364dd2008-12-11 19:30:53 +00002429
Fariborz Jahanianf9ed3152007-11-08 19:01:26 +00002430 // If the function body could not be parsed, make a bogus compoundstmt.
Dmitri Gribenko625bb562012-02-14 22:14:32 +00002431 if (FnBody.isInvalid()) {
2432 Sema::CompoundScopeRAII CompoundScope(Actions);
Robert Wilhelmc895f4d2013-08-19 20:51:20 +00002433 FnBody = Actions.ActOnCompoundStmt(LBraceLoc, LBraceLoc, None, false);
Dmitri Gribenko625bb562012-02-14 22:14:32 +00002434 }
Sebastian Redl61364dd2008-12-11 19:30:53 +00002435
Douglas Gregorc9977d02011-03-16 17:05:57 +00002436 BodyScope.Exit();
John McCall9ae2f072010-08-23 23:25:46 +00002437 return Actions.ActOnFinishFunctionBody(Decl, FnBody.take());
Seo Sanghyeoncd5af4b2007-12-01 08:06:07 +00002438}
Sebastian Redla0fd8652008-12-21 16:41:36 +00002439
Sebastian Redld3a413d2009-04-26 20:35:05 +00002440/// ParseFunctionTryBlock - Parse a C++ function-try-block.
2441///
2442/// function-try-block:
2443/// 'try' ctor-initializer[opt] compound-statement handler-seq
2444///
Douglas Gregorc9977d02011-03-16 17:05:57 +00002445Decl *Parser::ParseFunctionTryBlock(Decl *Decl, ParseScope &BodyScope) {
Sebastian Redld3a413d2009-04-26 20:35:05 +00002446 assert(Tok.is(tok::kw_try) && "Expected 'try'");
2447 SourceLocation TryLoc = ConsumeToken();
2448
John McCallf312b1e2010-08-26 23:41:50 +00002449 PrettyDeclStackTraceEntry CrashInfo(Actions, Decl, TryLoc,
2450 "parsing function try block");
Sebastian Redld3a413d2009-04-26 20:35:05 +00002451
2452 // Constructor initializer list?
2453 if (Tok.is(tok::colon))
2454 ParseConstructorInitializer(Decl);
Douglas Gregor2eef4272011-09-07 20:36:12 +00002455 else
2456 Actions.ActOnDefaultCtorInitializers(Decl);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002457
Richard Smith1a5bd5d2012-11-19 21:13:18 +00002458 if (SkipFunctionBodies && Actions.canSkipFunctionBody(Decl) &&
2459 trySkippingFunctionBody()) {
Erik Verbruggen6a91d382012-04-12 10:11:59 +00002460 BodyScope.Exit();
Argyrios Kyrtzidis35f3f362012-12-06 18:59:10 +00002461 return Actions.ActOnSkippedFunctionBody(Decl);
Douglas Gregorc9977d02011-03-16 17:05:57 +00002462 }
Argyrios Kyrtzidis0fe53972011-01-03 22:33:06 +00002463
Sebastian Redlde1b60a2009-04-26 21:08:36 +00002464 SourceLocation LBraceLoc = Tok.getLocation();
David Blaikiec4027c82012-11-10 01:04:23 +00002465 StmtResult FnBody(ParseCXXTryBlockCommon(TryLoc, /*FnTry*/true));
Sebastian Redld3a413d2009-04-26 20:35:05 +00002466 // If we failed to parse the try-catch, we just give the function an empty
2467 // compound statement as the body.
Dmitri Gribenko625bb562012-02-14 22:14:32 +00002468 if (FnBody.isInvalid()) {
2469 Sema::CompoundScopeRAII CompoundScope(Actions);
Robert Wilhelmc895f4d2013-08-19 20:51:20 +00002470 FnBody = Actions.ActOnCompoundStmt(LBraceLoc, LBraceLoc, None, false);
Dmitri Gribenko625bb562012-02-14 22:14:32 +00002471 }
Sebastian Redld3a413d2009-04-26 20:35:05 +00002472
Douglas Gregorc9977d02011-03-16 17:05:57 +00002473 BodyScope.Exit();
John McCall9ae2f072010-08-23 23:25:46 +00002474 return Actions.ActOnFinishFunctionBody(Decl, FnBody.take());
Sebastian Redld3a413d2009-04-26 20:35:05 +00002475}
2476
Erik Verbruggen6a91d382012-04-12 10:11:59 +00002477bool Parser::trySkippingFunctionBody() {
Argyrios Kyrtzidis0fe53972011-01-03 22:33:06 +00002478 assert(Tok.is(tok::l_brace));
Erik Verbruggen6a91d382012-04-12 10:11:59 +00002479 assert(SkipFunctionBodies &&
2480 "Should only be called when SkipFunctionBodies is enabled");
Argyrios Kyrtzidis0fe53972011-01-03 22:33:06 +00002481
Argyrios Kyrtzidis81939a72012-10-31 17:29:28 +00002482 if (!PP.isCodeCompletionEnabled()) {
2483 ConsumeBrace();
2484 SkipUntil(tok::r_brace, /*StopAtSemi=*/false, /*DontConsume=*/false);
2485 return true;
2486 }
2487
Argyrios Kyrtzidis0fe53972011-01-03 22:33:06 +00002488 // We're in code-completion mode. Skip parsing for all function bodies unless
2489 // the body contains the code-completion point.
2490 TentativeParsingAction PA(*this);
2491 ConsumeBrace();
2492 if (SkipUntil(tok::r_brace, /*StopAtSemi=*/false, /*DontConsume=*/false,
Argyrios Kyrtzidis81939a72012-10-31 17:29:28 +00002493 /*StopAtCodeCompletion=*/true)) {
Argyrios Kyrtzidis0fe53972011-01-03 22:33:06 +00002494 PA.Commit();
2495 return true;
2496 }
2497
2498 PA.Revert();
2499 return false;
2500}
2501
Sebastian Redla0fd8652008-12-21 16:41:36 +00002502/// ParseCXXTryBlock - Parse a C++ try-block.
2503///
2504/// try-block:
2505/// 'try' compound-statement handler-seq
2506///
Richard Smith534986f2012-04-14 00:33:13 +00002507StmtResult Parser::ParseCXXTryBlock() {
Sebastian Redla0fd8652008-12-21 16:41:36 +00002508 assert(Tok.is(tok::kw_try) && "Expected 'try'");
2509
2510 SourceLocation TryLoc = ConsumeToken();
Sebastian Redld3a413d2009-04-26 20:35:05 +00002511 return ParseCXXTryBlockCommon(TryLoc);
2512}
2513
2514/// ParseCXXTryBlockCommon - Parse the common part of try-block and
2515/// function-try-block.
2516///
2517/// try-block:
2518/// 'try' compound-statement handler-seq
2519///
2520/// function-try-block:
2521/// 'try' ctor-initializer[opt] compound-statement handler-seq
2522///
2523/// handler-seq:
2524/// handler handler-seq[opt]
2525///
John Wiegley28bbe4b2011-04-28 01:08:34 +00002526/// [Borland] try-block:
2527/// 'try' compound-statement seh-except-block
2528/// 'try' compound-statment seh-finally-block
2529///
David Blaikiec4027c82012-11-10 01:04:23 +00002530StmtResult Parser::ParseCXXTryBlockCommon(SourceLocation TryLoc, bool FnTry) {
Sebastian Redla0fd8652008-12-21 16:41:36 +00002531 if (Tok.isNot(tok::l_brace))
2532 return StmtError(Diag(Tok, diag::err_expected_lbrace));
Sean Huntbbd37c62009-11-21 08:43:09 +00002533 // FIXME: Possible draft standard bug: attribute-specifier should be allowed?
Richard Smith534986f2012-04-14 00:33:13 +00002534
2535 StmtResult TryBlock(ParseCompoundStatement(/*isStmtExpr=*/false,
David Blaikiee5afdcf2012-11-13 18:51:45 +00002536 Scope::DeclScope | Scope::TryScope |
2537 (FnTry ? Scope::FnTryCatchScope : 0)));
Sebastian Redla0fd8652008-12-21 16:41:36 +00002538 if (TryBlock.isInvalid())
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00002539 return TryBlock;
Sebastian Redla0fd8652008-12-21 16:41:36 +00002540
John Wiegley28bbe4b2011-04-28 01:08:34 +00002541 // Borland allows SEH-handlers with 'try'
Chad Rosierb6604462012-07-10 21:35:27 +00002542
Richard Smith534986f2012-04-14 00:33:13 +00002543 if ((Tok.is(tok::identifier) &&
2544 Tok.getIdentifierInfo() == getSEHExceptKeyword()) ||
2545 Tok.is(tok::kw___finally)) {
John Wiegley28bbe4b2011-04-28 01:08:34 +00002546 // TODO: Factor into common return ParseSEHHandlerCommon(...)
2547 StmtResult Handler;
Douglas Gregorb57791e2011-10-21 03:57:52 +00002548 if(Tok.getIdentifierInfo() == getSEHExceptKeyword()) {
John Wiegley28bbe4b2011-04-28 01:08:34 +00002549 SourceLocation Loc = ConsumeToken();
2550 Handler = ParseSEHExceptBlock(Loc);
2551 }
2552 else {
2553 SourceLocation Loc = ConsumeToken();
2554 Handler = ParseSEHFinallyBlock(Loc);
2555 }
2556 if(Handler.isInvalid())
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00002557 return Handler;
John McCall7f040a92010-12-24 02:08:15 +00002558
John Wiegley28bbe4b2011-04-28 01:08:34 +00002559 return Actions.ActOnSEHTryBlock(true /* IsCXXTry */,
2560 TryLoc,
2561 TryBlock.take(),
2562 Handler.take());
Sebastian Redla0fd8652008-12-21 16:41:36 +00002563 }
John Wiegley28bbe4b2011-04-28 01:08:34 +00002564 else {
Benjamin Kramer4e28d9e2012-08-23 22:51:59 +00002565 StmtVector Handlers;
Richard Smith5eed7e02013-10-15 01:34:54 +00002566
2567 // C++11 attributes can't appear here, despite this context seeming
2568 // statement-like.
2569 DiagnoseAndSkipCXX11Attributes();
Sebastian Redla0fd8652008-12-21 16:41:36 +00002570
John Wiegley28bbe4b2011-04-28 01:08:34 +00002571 if (Tok.isNot(tok::kw_catch))
2572 return StmtError(Diag(Tok, diag::err_expected_catch));
2573 while (Tok.is(tok::kw_catch)) {
David Blaikiec4027c82012-11-10 01:04:23 +00002574 StmtResult Handler(ParseCXXCatchBlock(FnTry));
John Wiegley28bbe4b2011-04-28 01:08:34 +00002575 if (!Handler.isInvalid())
2576 Handlers.push_back(Handler.release());
2577 }
2578 // Don't bother creating the full statement if we don't have any usable
2579 // handlers.
2580 if (Handlers.empty())
2581 return StmtError();
2582
Robert Wilhelm21adb0c2013-08-22 09:20:03 +00002583 return Actions.ActOnCXXTryBlock(TryLoc, TryBlock.take(), Handlers);
John Wiegley28bbe4b2011-04-28 01:08:34 +00002584 }
Sebastian Redla0fd8652008-12-21 16:41:36 +00002585}
2586
2587/// ParseCXXCatchBlock - Parse a C++ catch block, called handler in the standard
2588///
Richard Smith4cd81c52013-01-29 09:02:09 +00002589/// handler:
2590/// 'catch' '(' exception-declaration ')' compound-statement
Sebastian Redla0fd8652008-12-21 16:41:36 +00002591///
Richard Smith4cd81c52013-01-29 09:02:09 +00002592/// exception-declaration:
2593/// attribute-specifier-seq[opt] type-specifier-seq declarator
2594/// attribute-specifier-seq[opt] type-specifier-seq abstract-declarator[opt]
2595/// '...'
Sebastian Redla0fd8652008-12-21 16:41:36 +00002596///
David Blaikiec4027c82012-11-10 01:04:23 +00002597StmtResult Parser::ParseCXXCatchBlock(bool FnCatch) {
Sebastian Redla0fd8652008-12-21 16:41:36 +00002598 assert(Tok.is(tok::kw_catch) && "Expected 'catch'");
2599
2600 SourceLocation CatchLoc = ConsumeToken();
2601
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002602 BalancedDelimiterTracker T(*this, tok::l_paren);
2603 if (T.expectAndConsume(diag::err_expected_lparen))
Sebastian Redla0fd8652008-12-21 16:41:36 +00002604 return StmtError();
2605
2606 // C++ 3.3.2p3:
2607 // The name in a catch exception-declaration is local to the handler and
2608 // shall not be redeclared in the outermost block of the handler.
David Blaikiec4027c82012-11-10 01:04:23 +00002609 ParseScope CatchScope(this, Scope::DeclScope | Scope::ControlScope |
David Blaikiee5afdcf2012-11-13 18:51:45 +00002610 (FnCatch ? Scope::FnTryCatchScope : 0));
Sebastian Redla0fd8652008-12-21 16:41:36 +00002611
2612 // exception-declaration is equivalent to '...' or a parameter-declaration
2613 // without default arguments.
John McCalld226f652010-08-21 09:40:31 +00002614 Decl *ExceptionDecl = 0;
Sebastian Redla0fd8652008-12-21 16:41:36 +00002615 if (Tok.isNot(tok::ellipsis)) {
Richard Smith4cd81c52013-01-29 09:02:09 +00002616 ParsedAttributesWithRange Attributes(AttrFactory);
2617 MaybeParseCXX11Attributes(Attributes);
2618
John McCall0b7e6782011-03-24 11:26:52 +00002619 DeclSpec DS(AttrFactory);
Richard Smith4cd81c52013-01-29 09:02:09 +00002620 DS.takeAttributesFrom(Attributes);
2621
Sebastian Redl4b07b292008-12-22 19:15:10 +00002622 if (ParseCXXTypeSpecifierSeq(DS))
2623 return StmtError();
Richard Smith4cd81c52013-01-29 09:02:09 +00002624
Sebastian Redla0fd8652008-12-21 16:41:36 +00002625 Declarator ExDecl(DS, Declarator::CXXCatchContext);
2626 ParseDeclarator(ExDecl);
Douglas Gregor23c94db2010-07-02 17:43:08 +00002627 ExceptionDecl = Actions.ActOnExceptionDeclarator(getCurScope(), ExDecl);
Sebastian Redla0fd8652008-12-21 16:41:36 +00002628 } else
2629 ConsumeToken();
2630
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002631 T.consumeClose();
2632 if (T.getCloseLocation().isInvalid())
Sebastian Redla0fd8652008-12-21 16:41:36 +00002633 return StmtError();
2634
2635 if (Tok.isNot(tok::l_brace))
2636 return StmtError(Diag(Tok, diag::err_expected_lbrace));
2637
Sean Huntbbd37c62009-11-21 08:43:09 +00002638 // FIXME: Possible draft standard bug: attribute-specifier should be allowed?
Richard Smith534986f2012-04-14 00:33:13 +00002639 StmtResult Block(ParseCompoundStatement());
Sebastian Redla0fd8652008-12-21 16:41:36 +00002640 if (Block.isInvalid())
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00002641 return Block;
Sebastian Redla0fd8652008-12-21 16:41:36 +00002642
John McCall9ae2f072010-08-23 23:25:46 +00002643 return Actions.ActOnCXXCatchBlock(CatchLoc, ExceptionDecl, Block.take());
Sebastian Redla0fd8652008-12-21 16:41:36 +00002644}
Francois Pichet1e862692011-05-06 20:48:22 +00002645
2646void Parser::ParseMicrosoftIfExistsStatement(StmtVector &Stmts) {
Douglas Gregor3896fc52011-10-24 22:31:10 +00002647 IfExistsCondition Result;
Francois Pichetf9860382011-05-07 17:30:27 +00002648 if (ParseMicrosoftIfExistsCondition(Result))
Francois Pichet1e862692011-05-06 20:48:22 +00002649 return;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002650
Douglas Gregor3896fc52011-10-24 22:31:10 +00002651 // Handle dependent statements by parsing the braces as a compound statement.
2652 // This is not the same behavior as Visual C++, which don't treat this as a
2653 // compound statement, but for Clang's type checking we can't have anything
2654 // inside these braces escaping to the surrounding code.
2655 if (Result.Behavior == IEB_Dependent) {
2656 if (!Tok.is(tok::l_brace)) {
2657 Diag(Tok, diag::err_expected_lbrace);
Richard Smith534986f2012-04-14 00:33:13 +00002658 return;
Douglas Gregor3896fc52011-10-24 22:31:10 +00002659 }
Richard Smith534986f2012-04-14 00:33:13 +00002660
2661 StmtResult Compound = ParseCompoundStatement();
Douglas Gregorba0513d2011-10-25 01:33:02 +00002662 if (Compound.isInvalid())
2663 return;
Richard Smith534986f2012-04-14 00:33:13 +00002664
Douglas Gregorba0513d2011-10-25 01:33:02 +00002665 StmtResult DepResult = Actions.ActOnMSDependentExistsStmt(Result.KeywordLoc,
2666 Result.IsIfExists,
Richard Smith534986f2012-04-14 00:33:13 +00002667 Result.SS,
Douglas Gregorba0513d2011-10-25 01:33:02 +00002668 Result.Name,
2669 Compound.get());
2670 if (DepResult.isUsable())
2671 Stmts.push_back(DepResult.get());
Douglas Gregor3896fc52011-10-24 22:31:10 +00002672 return;
2673 }
Richard Smith534986f2012-04-14 00:33:13 +00002674
Douglas Gregor3896fc52011-10-24 22:31:10 +00002675 BalancedDelimiterTracker Braces(*this, tok::l_brace);
2676 if (Braces.consumeOpen()) {
Francois Pichet1e862692011-05-06 20:48:22 +00002677 Diag(Tok, diag::err_expected_lbrace);
2678 return;
2679 }
Francois Pichet1e862692011-05-06 20:48:22 +00002680
Douglas Gregor3896fc52011-10-24 22:31:10 +00002681 switch (Result.Behavior) {
2682 case IEB_Parse:
2683 // Parse the statements below.
2684 break;
Chad Rosierb6604462012-07-10 21:35:27 +00002685
Douglas Gregor3896fc52011-10-24 22:31:10 +00002686 case IEB_Dependent:
2687 llvm_unreachable("Dependent case handled above");
Chad Rosierb6604462012-07-10 21:35:27 +00002688
Douglas Gregor3896fc52011-10-24 22:31:10 +00002689 case IEB_Skip:
2690 Braces.skipToEnd();
Francois Pichet1e862692011-05-06 20:48:22 +00002691 return;
2692 }
2693
2694 // Condition is true, parse the statements.
2695 while (Tok.isNot(tok::r_brace)) {
2696 StmtResult R = ParseStatementOrDeclaration(Stmts, false);
2697 if (R.isUsable())
2698 Stmts.push_back(R.release());
2699 }
Douglas Gregor3896fc52011-10-24 22:31:10 +00002700 Braces.consumeClose();
Francois Pichet1e862692011-05-06 20:48:22 +00002701}