Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1 | //===--- ParseStmt.cpp - Statement and Block Parser -----------------------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 0bc735f | 2007-12-29 19:59:25 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 7 | // |
| 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 Lattner | d167ca0 | 2009-12-10 00:21:05 +0000 | [diff] [blame] | 16 | #include "RAIIObjectsForParser.h" |
John McCall | aeeacf7 | 2013-05-03 00:10:13 +0000 | [diff] [blame] | 17 | #include "clang/AST/ASTContext.h" |
Chandler Carruth | 55fc873 | 2012-12-04 09:13:33 +0000 | [diff] [blame] | 18 | #include "clang/Basic/Diagnostic.h" |
| 19 | #include "clang/Basic/PrettyStackTrace.h" |
| 20 | #include "clang/Basic/SourceManager.h" |
John McCall | aeeacf7 | 2013-05-03 00:10:13 +0000 | [diff] [blame] | 21 | #include "clang/Basic/TargetInfo.h" |
John McCall | 1951085 | 2010-08-20 18:27:03 +0000 | [diff] [blame] | 22 | #include "clang/Sema/DeclSpec.h" |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 23 | #include "clang/Sema/PrettyDeclStackTrace.h" |
John McCall | 1951085 | 2010-08-20 18:27:03 +0000 | [diff] [blame] | 24 | #include "clang/Sema/Scope.h" |
Richard Smith | 0576681 | 2012-08-18 00:55:03 +0000 | [diff] [blame] | 25 | #include "clang/Sema/TypoCorrection.h" |
John McCall | aeeacf7 | 2013-05-03 00:10:13 +0000 | [diff] [blame] | 26 | #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 Rosier | 8cd64b4 | 2012-06-11 20:47:18 +0000 | [diff] [blame] | 37 | #include "llvm/ADT/SmallString.h" |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 38 | using namespace clang; |
| 39 | |
| 40 | //===----------------------------------------------------------------------===// |
| 41 | // C99 6.8: Statements and Blocks. |
| 42 | //===----------------------------------------------------------------------===// |
| 43 | |
Richard Smith | 961d057 | 2013-10-28 22:04:30 +0000 | [diff] [blame] | 44 | /// \brief Parse a standalone statement (for instance, as the body of an 'if', |
| 45 | /// 'while', or 'for'). |
| 46 | StmtResult 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 Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 59 | /// 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 Kyrtzidis | dcdd55f | 2008-09-07 18:58:01 +0000 | [diff] [blame] | 71 | /// [C++] declaration-statement |
Sebastian Redl | a0fd865 | 2008-12-21 16:41:36 +0000 | [diff] [blame] | 72 | /// [C++] try-block |
John Wiegley | 28bbe4b | 2011-04-28 01:08:34 +0000 | [diff] [blame] | 73 | /// [MS] seh-try-block |
Fariborz Jahanian | b384d32 | 2007-10-04 20:19:06 +0000 | [diff] [blame] | 74 | /// [OBC] objc-throw-statement |
| 75 | /// [OBC] objc-try-catch-statement |
Fariborz Jahanian | c385c90 | 2008-01-29 18:21:32 +0000 | [diff] [blame] | 76 | /// [OBC] objc-synchronized-statement |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 77 | /// [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 Jahanian | b384d32 | 2007-10-04 20:19:06 +0000 | [diff] [blame] | 104 | /// [OBC] objc-throw-statement: |
| 105 | /// [OBC] '@' 'throw' expression ';' |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 106 | /// [OBC] '@' 'throw' ';' |
| 107 | /// |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 108 | StmtResult |
Nico Weber | 5cb94a7 | 2011-12-22 23:26:17 +0000 | [diff] [blame] | 109 | Parser::ParseStatementOrDeclaration(StmtVector &Stmts, bool OnlyStatement, |
| 110 | SourceLocation *TrailingElseLoc) { |
NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 111 | |
Argyrios Kyrtzidis | 36d3680 | 2010-06-17 10:52:18 +0000 | [diff] [blame] | 112 | ParenBraceBracketBalancer BalancerRAIIObj(*this); |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 113 | |
Richard Smith | 534986f | 2012-04-14 00:33:13 +0000 | [diff] [blame] | 114 | ParsedAttributesWithRange Attrs(AttrFactory); |
Richard Smith | 4e24f0f | 2013-01-02 12:01:23 +0000 | [diff] [blame] | 115 | MaybeParseCXX11Attributes(Attrs, 0, /*MightBeObjCMessageSend*/ true); |
Richard Smith | 534986f | 2012-04-14 00:33:13 +0000 | [diff] [blame] | 116 | |
| 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 Uhrain | 6243f62 | 2013-09-27 19:40:12 +0000 | [diff] [blame] | 129 | namespace { |
| 130 | class StatementFilterCCC : public CorrectionCandidateCallback { |
| 131 | public: |
| 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 Uhrain | a89ee57 | 2013-10-01 22:00:28 +0000 | [diff] [blame] | 147 | return !candidate.getCorrectionSpecifier() || isa<ObjCIvarDecl>(FD); |
Kaelyn Uhrain | 0f90ee0 | 2013-09-27 19:40:16 +0000 | [diff] [blame] | 148 | if (NextToken.is(tok::equal)) |
| 149 | return candidate.getCorrectionDeclAs<VarDecl>(); |
Kaelyn Uhrain | 2ceb67a | 2013-09-27 23:54:23 +0000 | [diff] [blame] | 150 | if (NextToken.is(tok::period) && |
| 151 | candidate.getCorrectionDeclAs<NamespaceDecl>()) |
| 152 | return false; |
Kaelyn Uhrain | 6243f62 | 2013-09-27 19:40:12 +0000 | [diff] [blame] | 153 | return CorrectionCandidateCallback::ValidateCandidate(candidate); |
| 154 | } |
| 155 | |
| 156 | private: |
| 157 | Token NextToken; |
| 158 | }; |
| 159 | } |
| 160 | |
Richard Smith | 534986f | 2012-04-14 00:33:13 +0000 | [diff] [blame] | 161 | StmtResult |
| 162 | Parser::ParseStatementOrDeclarationAfterAttributes(StmtVector &Stmts, |
| 163 | bool OnlyStatement, SourceLocation *TrailingElseLoc, |
| 164 | ParsedAttributesWithRange &Attrs) { |
| 165 | const char *SemiError = 0; |
| 166 | StmtResult Res; |
Sean Hunt | bbd37c6 | 2009-11-21 08:43:09 +0000 | [diff] [blame] | 167 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 168 | // 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 Gregor | 312eadb | 2011-04-24 05:37:28 +0000 | [diff] [blame] | 171 | Retry: |
Fariborz Jahanian | 397fcc1 | 2007-09-19 19:14:32 +0000 | [diff] [blame] | 172 | tok::TokenKind Kind = Tok.getKind(); |
| 173 | SourceLocation AtLoc; |
| 174 | switch (Kind) { |
Fariborz Jahanian | 397fcc1 | 2007-09-19 19:14:32 +0000 | [diff] [blame] | 175 | case tok::at: // May be a @try or @throw statement |
| 176 | { |
Richard Smith | 534986f | 2012-04-14 00:33:13 +0000 | [diff] [blame] | 177 | ProhibitAttributes(Attrs); // TODO: is it correct? |
Fariborz Jahanian | 397fcc1 | 2007-09-19 19:14:32 +0000 | [diff] [blame] | 178 | AtLoc = ConsumeToken(); // consume @ |
Sebastian Redl | 43bc2a0 | 2008-12-11 20:12:42 +0000 | [diff] [blame] | 179 | return ParseObjCAtStatement(AtLoc); |
Fariborz Jahanian | 397fcc1 | 2007-09-19 19:14:32 +0000 | [diff] [blame] | 180 | } |
Fariborz Jahanian | 397fcc1 | 2007-09-19 19:14:32 +0000 | [diff] [blame] | 181 | |
Douglas Gregor | 791215b | 2009-09-21 20:51:25 +0000 | [diff] [blame] | 182 | case tok::code_completion: |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 183 | Actions.CodeCompleteOrdinaryName(getCurScope(), Sema::PCC_Statement); |
Argyrios Kyrtzidis | 7d10087 | 2011-09-04 03:32:15 +0000 | [diff] [blame] | 184 | cutOffParsing(); |
| 185 | return StmtError(); |
NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 186 | |
Douglas Gregor | 312eadb | 2011-04-24 05:37:28 +0000 | [diff] [blame] | 187 | case tok::identifier: { |
| 188 | Token Next = NextToken(); |
| 189 | if (Next.is(tok::colon)) { // C99 6.8.1: labeled-statement |
Argyrios Kyrtzidis | b9f930d | 2008-07-12 21:04:42 +0000 | [diff] [blame] | 190 | // identifier ':' statement |
Richard Smith | 534986f | 2012-04-14 00:33:13 +0000 | [diff] [blame] | 191 | return ParseLabeledStatement(Attrs); |
Argyrios Kyrtzidis | b9f930d | 2008-07-12 21:04:42 +0000 | [diff] [blame] | 192 | } |
NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 193 | |
Richard Smith | 0576681 | 2012-08-18 00:55:03 +0000 | [diff] [blame] | 194 | // Look up the identifier, and typo-correct it to a keyword if it's not |
| 195 | // found. |
Douglas Gregor | 3b88735 | 2011-04-27 04:48:22 +0000 | [diff] [blame] | 196 | if (Next.isNot(tok::coloncolon)) { |
Richard Smith | 0576681 | 2012-08-18 00:55:03 +0000 | [diff] [blame] | 197 | // Try to limit which sets of keywords should be included in typo |
| 198 | // correction based on what the next token is. |
Kaelyn Uhrain | 6243f62 | 2013-09-27 19:40:12 +0000 | [diff] [blame] | 199 | StatementFilterCCC Validator(Next); |
| 200 | if (TryAnnotateName(/*IsAddressOfOperand*/false, &Validator) |
Richard Smith | 0576681 | 2012-08-18 00:55:03 +0000 | [diff] [blame] | 201 | == ANK_Error) { |
Douglas Gregor | 312eadb | 2011-04-24 05:37:28 +0000 | [diff] [blame] | 202 | // Handle errors here by skipping up to the next semicolon or '}', and |
| 203 | // eat the semicolon if that's what stopped us. |
Alexey Bataev | 8fe2475 | 2013-11-18 08:17:37 +0000 | [diff] [blame^] | 204 | SkipUntil(tok::r_brace, StopAtSemi | StopBeforeMatch); |
Douglas Gregor | 312eadb | 2011-04-24 05:37:28 +0000 | [diff] [blame] | 205 | if (Tok.is(tok::semi)) |
| 206 | ConsumeToken(); |
| 207 | return StmtError(); |
Richard Smith | 0576681 | 2012-08-18 00:55:03 +0000 | [diff] [blame] | 208 | } |
NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 209 | |
Richard Smith | 0576681 | 2012-08-18 00:55:03 +0000 | [diff] [blame] | 210 | // If the identifier was typo-corrected, try again. |
| 211 | if (Tok.isNot(tok::identifier)) |
Douglas Gregor | 312eadb | 2011-04-24 05:37:28 +0000 | [diff] [blame] | 212 | goto Retry; |
Douglas Gregor | 312eadb | 2011-04-24 05:37:28 +0000 | [diff] [blame] | 213 | } |
NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 214 | |
Douglas Gregor | 312eadb | 2011-04-24 05:37:28 +0000 | [diff] [blame] | 215 | // Fall through |
| 216 | } |
NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 217 | |
Chris Lattner | f919bfe | 2009-03-24 17:04:48 +0000 | [diff] [blame] | 218 | default: { |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 219 | if ((getLangOpts().CPlusPlus || !OnlyStatement) && isDeclarationStatement()) { |
Chris Lattner | 97144fc | 2009-04-02 04:16:50 +0000 | [diff] [blame] | 220 | SourceLocation DeclStart = Tok.getLocation(), DeclEnd; |
Ted Kremenek | 8113ecf | 2010-11-10 05:59:39 +0000 | [diff] [blame] | 221 | DeclGroupPtrTy Decl = ParseDeclaration(Stmts, Declarator::BlockContext, |
Richard Smith | 534986f | 2012-04-14 00:33:13 +0000 | [diff] [blame] | 222 | DeclEnd, Attrs); |
Chris Lattner | 97144fc | 2009-04-02 04:16:50 +0000 | [diff] [blame] | 223 | return Actions.ActOnDeclStmt(Decl, DeclStart, DeclEnd); |
Chris Lattner | f919bfe | 2009-03-24 17:04:48 +0000 | [diff] [blame] | 224 | } |
| 225 | |
| 226 | if (Tok.is(tok::r_brace)) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 227 | Diag(Tok, diag::err_expected_statement); |
Sebastian Redl | 61364dd | 2008-12-11 19:30:53 +0000 | [diff] [blame] | 228 | return StmtError(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 229 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 230 | |
Richard Smith | 534986f | 2012-04-14 00:33:13 +0000 | [diff] [blame] | 231 | return ParseExprStatement(); |
Chris Lattner | f919bfe | 2009-03-24 17:04:48 +0000 | [diff] [blame] | 232 | } |
Sebastian Redl | 61364dd | 2008-12-11 19:30:53 +0000 | [diff] [blame] | 233 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 234 | case tok::kw_case: // C99 6.8.1: labeled-statement |
Richard Smith | 534986f | 2012-04-14 00:33:13 +0000 | [diff] [blame] | 235 | return ParseCaseStatement(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 236 | case tok::kw_default: // C99 6.8.1: labeled-statement |
Richard Smith | 534986f | 2012-04-14 00:33:13 +0000 | [diff] [blame] | 237 | return ParseDefaultStatement(); |
Sebastian Redl | 61364dd | 2008-12-11 19:30:53 +0000 | [diff] [blame] | 238 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 239 | case tok::l_brace: // C99 6.8.2: compound-statement |
Richard Smith | 534986f | 2012-04-14 00:33:13 +0000 | [diff] [blame] | 240 | return ParseCompoundStatement(); |
Argyrios Kyrtzidis | 44aa1f3 | 2010-11-20 02:04:01 +0000 | [diff] [blame] | 241 | case tok::semi: { // C99 6.8.3p3: expression[opt] ';' |
Argyrios Kyrtzidis | e2ca828 | 2011-09-01 21:53:45 +0000 | [diff] [blame] | 242 | bool HasLeadingEmptyMacro = Tok.hasLeadingEmptyMacro(); |
| 243 | return Actions.ActOnNullStmt(ConsumeToken(), HasLeadingEmptyMacro); |
Argyrios Kyrtzidis | 44aa1f3 | 2010-11-20 02:04:01 +0000 | [diff] [blame] | 244 | } |
Sebastian Redl | 61364dd | 2008-12-11 19:30:53 +0000 | [diff] [blame] | 245 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 246 | case tok::kw_if: // C99 6.8.4.1: if-statement |
Richard Smith | 534986f | 2012-04-14 00:33:13 +0000 | [diff] [blame] | 247 | return ParseIfStatement(TrailingElseLoc); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 248 | case tok::kw_switch: // C99 6.8.4.2: switch-statement |
Richard Smith | 534986f | 2012-04-14 00:33:13 +0000 | [diff] [blame] | 249 | return ParseSwitchStatement(TrailingElseLoc); |
Sebastian Redl | 61364dd | 2008-12-11 19:30:53 +0000 | [diff] [blame] | 250 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 251 | case tok::kw_while: // C99 6.8.5.1: while-statement |
Richard Smith | 534986f | 2012-04-14 00:33:13 +0000 | [diff] [blame] | 252 | return ParseWhileStatement(TrailingElseLoc); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 253 | case tok::kw_do: // C99 6.8.5.2: do-statement |
Richard Smith | 534986f | 2012-04-14 00:33:13 +0000 | [diff] [blame] | 254 | Res = ParseDoStatement(); |
Chris Lattner | 6869d8e | 2009-06-14 00:07:48 +0000 | [diff] [blame] | 255 | SemiError = "do/while"; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 256 | break; |
| 257 | case tok::kw_for: // C99 6.8.5.3: for-statement |
Richard Smith | 534986f | 2012-04-14 00:33:13 +0000 | [diff] [blame] | 258 | return ParseForStatement(TrailingElseLoc); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 259 | |
| 260 | case tok::kw_goto: // C99 6.8.6.1: goto-statement |
Richard Smith | 534986f | 2012-04-14 00:33:13 +0000 | [diff] [blame] | 261 | Res = ParseGotoStatement(); |
Chris Lattner | 6869d8e | 2009-06-14 00:07:48 +0000 | [diff] [blame] | 262 | SemiError = "goto"; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 263 | break; |
| 264 | case tok::kw_continue: // C99 6.8.6.2: continue-statement |
Richard Smith | 534986f | 2012-04-14 00:33:13 +0000 | [diff] [blame] | 265 | Res = ParseContinueStatement(); |
Chris Lattner | 6869d8e | 2009-06-14 00:07:48 +0000 | [diff] [blame] | 266 | SemiError = "continue"; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 267 | break; |
| 268 | case tok::kw_break: // C99 6.8.6.3: break-statement |
Richard Smith | 534986f | 2012-04-14 00:33:13 +0000 | [diff] [blame] | 269 | Res = ParseBreakStatement(); |
Chris Lattner | 6869d8e | 2009-06-14 00:07:48 +0000 | [diff] [blame] | 270 | SemiError = "break"; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 271 | break; |
| 272 | case tok::kw_return: // C99 6.8.6.4: return-statement |
Richard Smith | 534986f | 2012-04-14 00:33:13 +0000 | [diff] [blame] | 273 | Res = ParseReturnStatement(); |
Chris Lattner | 6869d8e | 2009-06-14 00:07:48 +0000 | [diff] [blame] | 274 | SemiError = "return"; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 275 | break; |
Sebastian Redl | 61364dd | 2008-12-11 19:30:53 +0000 | [diff] [blame] | 276 | |
Sebastian Redl | a0fd865 | 2008-12-21 16:41:36 +0000 | [diff] [blame] | 277 | case tok::kw_asm: { |
Richard Smith | 534986f | 2012-04-14 00:33:13 +0000 | [diff] [blame] | 278 | ProhibitAttributes(Attrs); |
Steve Naroff | d62701b | 2008-02-07 03:50:06 +0000 | [diff] [blame] | 279 | bool msAsm = false; |
| 280 | Res = ParseAsmStatement(msAsm); |
Argyrios Kyrtzidis | bf8cafa | 2010-11-02 02:33:08 +0000 | [diff] [blame] | 281 | Res = Actions.ActOnFinishFullStmt(Res.get()); |
Benjamin Kramer | 3fe198b | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 282 | if (msAsm) return Res; |
Chris Lattner | 6869d8e | 2009-06-14 00:07:48 +0000 | [diff] [blame] | 283 | SemiError = "asm"; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 284 | break; |
| 285 | } |
Sebastian Redl | 61364dd | 2008-12-11 19:30:53 +0000 | [diff] [blame] | 286 | |
Sebastian Redl | a0fd865 | 2008-12-21 16:41:36 +0000 | [diff] [blame] | 287 | case tok::kw_try: // C++ 15: try-block |
Richard Smith | 534986f | 2012-04-14 00:33:13 +0000 | [diff] [blame] | 288 | return ParseCXXTryBlock(); |
John Wiegley | 28bbe4b | 2011-04-28 01:08:34 +0000 | [diff] [blame] | 289 | |
| 290 | case tok::kw___try: |
Richard Smith | 534986f | 2012-04-14 00:33:13 +0000 | [diff] [blame] | 291 | ProhibitAttributes(Attrs); // TODO: is it correct? |
| 292 | return ParseSEHTryBlock(); |
Eli Friedman | aa5ab26 | 2012-02-23 23:47:16 +0000 | [diff] [blame] | 293 | |
| 294 | case tok::annot_pragma_vis: |
Richard Smith | 534986f | 2012-04-14 00:33:13 +0000 | [diff] [blame] | 295 | ProhibitAttributes(Attrs); |
Eli Friedman | aa5ab26 | 2012-02-23 23:47:16 +0000 | [diff] [blame] | 296 | HandlePragmaVisibility(); |
| 297 | return StmtEmpty(); |
| 298 | |
| 299 | case tok::annot_pragma_pack: |
Richard Smith | 534986f | 2012-04-14 00:33:13 +0000 | [diff] [blame] | 300 | ProhibitAttributes(Attrs); |
Eli Friedman | aa5ab26 | 2012-02-23 23:47:16 +0000 | [diff] [blame] | 301 | HandlePragmaPack(); |
| 302 | return StmtEmpty(); |
Eli Friedman | 9595c7e | 2012-10-04 02:36:51 +0000 | [diff] [blame] | 303 | |
Eli Friedman | 8b2bfdd | 2012-10-09 22:46:54 +0000 | [diff] [blame] | 304 | case tok::annot_pragma_msstruct: |
| 305 | ProhibitAttributes(Attrs); |
| 306 | HandlePragmaMSStruct(); |
| 307 | return StmtEmpty(); |
| 308 | |
Eli Friedman | 3ef38ee | 2012-10-08 23:52:38 +0000 | [diff] [blame] | 309 | case tok::annot_pragma_align: |
| 310 | ProhibitAttributes(Attrs); |
| 311 | HandlePragmaAlign(); |
| 312 | return StmtEmpty(); |
| 313 | |
Eli Friedman | 8b2bfdd | 2012-10-09 22:46:54 +0000 | [diff] [blame] | 314 | 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 Friedman | 9595c7e | 2012-10-04 02:36:51 +0000 | [diff] [blame] | 329 | case tok::annot_pragma_fp_contract: |
Richard Smith | aed0116 | 2013-11-15 21:10:54 +0000 | [diff] [blame] | 330 | ProhibitAttributes(Attrs); |
Lang Hames | 860022c | 2012-10-21 01:10:01 +0000 | [diff] [blame] | 331 | Diag(Tok, diag::err_pragma_fp_contract_scope); |
| 332 | ConsumeToken(); |
| 333 | return StmtError(); |
| 334 | |
Eli Friedman | 9595c7e | 2012-10-04 02:36:51 +0000 | [diff] [blame] | 335 | case tok::annot_pragma_opencl_extension: |
| 336 | ProhibitAttributes(Attrs); |
| 337 | HandlePragmaOpenCLExtension(); |
| 338 | return StmtEmpty(); |
Alexey Bataev | c640058 | 2013-03-22 06:34:35 +0000 | [diff] [blame] | 339 | |
Tareq A. Siraj | 85192c7 | 2013-04-16 18:41:26 +0000 | [diff] [blame] | 340 | case tok::annot_pragma_captured: |
Richard Smith | 175d417 | 2013-09-16 21:17:44 +0000 | [diff] [blame] | 341 | ProhibitAttributes(Attrs); |
Tareq A. Siraj | 85192c7 | 2013-04-16 18:41:26 +0000 | [diff] [blame] | 342 | return HandlePragmaCaptured(); |
| 343 | |
Alexey Bataev | c640058 | 2013-03-22 06:34:35 +0000 | [diff] [blame] | 344 | case tok::annot_pragma_openmp: |
Richard Smith | 175d417 | 2013-09-16 21:17:44 +0000 | [diff] [blame] | 345 | ProhibitAttributes(Attrs); |
Alexey Bataev | 4fa7eab | 2013-07-19 03:13:43 +0000 | [diff] [blame] | 346 | return ParseOpenMPDeclarativeOrExecutableDirective(); |
| 347 | |
Sebastian Redl | a0fd865 | 2008-12-21 16:41:36 +0000 | [diff] [blame] | 348 | } |
| 349 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 350 | // If we reached this code, the statement must end in a semicolon. |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 351 | if (Tok.is(tok::semi)) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 352 | ConsumeToken(); |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 353 | } else if (!Res.isInvalid()) { |
Chris Lattner | 7b3684a | 2009-06-14 00:23:56 +0000 | [diff] [blame] | 354 | // If the result was valid, then we do want to diagnose this. Use |
| 355 | // ExpectAndConsume to emit the diagnostic, even though we know it won't |
| 356 | // succeed. |
| 357 | ExpectAndConsume(tok::semi, diag::err_expected_semi_after_stmt, SemiError); |
Chris Lattner | 1950440 | 2008-11-13 18:52:53 +0000 | [diff] [blame] | 358 | // Skip until we see a } or ;, but don't eat it. |
Alexey Bataev | 8fe2475 | 2013-11-18 08:17:37 +0000 | [diff] [blame^] | 359 | SkipUntil(tok::r_brace, StopAtSemi | StopBeforeMatch); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 360 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 361 | |
Benjamin Kramer | 3fe198b | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 362 | return Res; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 363 | } |
| 364 | |
Douglas Gregor | 312eadb | 2011-04-24 05:37:28 +0000 | [diff] [blame] | 365 | /// \brief Parse an expression statement. |
Richard Smith | 534986f | 2012-04-14 00:33:13 +0000 | [diff] [blame] | 366 | StmtResult Parser::ParseExprStatement() { |
Douglas Gregor | 312eadb | 2011-04-24 05:37:28 +0000 | [diff] [blame] | 367 | // If a case keyword is missing, this is where it should be inserted. |
| 368 | Token OldToken = Tok; |
NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 369 | |
Douglas Gregor | 312eadb | 2011-04-24 05:37:28 +0000 | [diff] [blame] | 370 | // expression[opt] ';' |
Douglas Gregor | 5ecdd78 | 2011-04-27 06:18:01 +0000 | [diff] [blame] | 371 | ExprResult Expr(ParseExpression()); |
Douglas Gregor | 312eadb | 2011-04-24 05:37:28 +0000 | [diff] [blame] | 372 | if (Expr.isInvalid()) { |
| 373 | // If the expression is invalid, skip ahead to the next semicolon or '}'. |
| 374 | // Not doing this opens us up to the possibility of infinite loops if |
| 375 | // ParseExpression does not consume any tokens. |
Alexey Bataev | 8fe2475 | 2013-11-18 08:17:37 +0000 | [diff] [blame^] | 376 | SkipUntil(tok::r_brace, StopAtSemi | StopBeforeMatch); |
Douglas Gregor | 312eadb | 2011-04-24 05:37:28 +0000 | [diff] [blame] | 377 | if (Tok.is(tok::semi)) |
| 378 | ConsumeToken(); |
John McCall | b760f11 | 2013-03-22 02:10:40 +0000 | [diff] [blame] | 379 | return Actions.ActOnExprStmtError(); |
Douglas Gregor | 312eadb | 2011-04-24 05:37:28 +0000 | [diff] [blame] | 380 | } |
NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 381 | |
Douglas Gregor | 312eadb | 2011-04-24 05:37:28 +0000 | [diff] [blame] | 382 | if (Tok.is(tok::colon) && getCurScope()->isSwitchScope() && |
| 383 | Actions.CheckCaseExpression(Expr.get())) { |
| 384 | // If a constant expression is followed by a colon inside a switch block, |
| 385 | // suggest a missing case keyword. |
| 386 | Diag(OldToken, diag::err_expected_case_before_expression) |
| 387 | << FixItHint::CreateInsertion(OldToken.getLocation(), "case "); |
NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 388 | |
Douglas Gregor | 312eadb | 2011-04-24 05:37:28 +0000 | [diff] [blame] | 389 | // Recover parsing as a case statement. |
Richard Smith | 534986f | 2012-04-14 00:33:13 +0000 | [diff] [blame] | 390 | return ParseCaseStatement(/*MissingCase=*/true, Expr); |
Douglas Gregor | 312eadb | 2011-04-24 05:37:28 +0000 | [diff] [blame] | 391 | } |
NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 392 | |
Douglas Gregor | 312eadb | 2011-04-24 05:37:28 +0000 | [diff] [blame] | 393 | // Otherwise, eat the semicolon. |
| 394 | ExpectAndConsumeSemi(diag::err_expected_semi_after_expr); |
Richard Smith | 4195637 | 2013-01-14 22:39:08 +0000 | [diff] [blame] | 395 | return Actions.ActOnExprStmt(Expr); |
John Wiegley | 28bbe4b | 2011-04-28 01:08:34 +0000 | [diff] [blame] | 396 | } |
Douglas Gregor | 312eadb | 2011-04-24 05:37:28 +0000 | [diff] [blame] | 397 | |
Richard Smith | 534986f | 2012-04-14 00:33:13 +0000 | [diff] [blame] | 398 | StmtResult Parser::ParseSEHTryBlock() { |
John Wiegley | 28bbe4b | 2011-04-28 01:08:34 +0000 | [diff] [blame] | 399 | assert(Tok.is(tok::kw___try) && "Expected '__try'"); |
| 400 | SourceLocation Loc = ConsumeToken(); |
| 401 | return ParseSEHTryBlockCommon(Loc); |
| 402 | } |
| 403 | |
| 404 | /// ParseSEHTryBlockCommon |
| 405 | /// |
| 406 | /// seh-try-block: |
| 407 | /// '__try' compound-statement seh-handler |
| 408 | /// |
| 409 | /// seh-handler: |
| 410 | /// seh-except-block |
| 411 | /// seh-finally-block |
| 412 | /// |
| 413 | StmtResult Parser::ParseSEHTryBlockCommon(SourceLocation TryLoc) { |
| 414 | if(Tok.isNot(tok::l_brace)) |
| 415 | return StmtError(Diag(Tok,diag::err_expected_lbrace)); |
| 416 | |
Joao Matos | 568ba87 | 2012-09-04 17:49:35 +0000 | [diff] [blame] | 417 | StmtResult TryBlock(ParseCompoundStatement()); |
John Wiegley | 28bbe4b | 2011-04-28 01:08:34 +0000 | [diff] [blame] | 418 | if(TryBlock.isInvalid()) |
Benjamin Kramer | 3fe198b | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 419 | return TryBlock; |
John Wiegley | 28bbe4b | 2011-04-28 01:08:34 +0000 | [diff] [blame] | 420 | |
| 421 | StmtResult Handler; |
Richard Smith | 534986f | 2012-04-14 00:33:13 +0000 | [diff] [blame] | 422 | if (Tok.is(tok::identifier) && |
Douglas Gregor | b57791e | 2011-10-21 03:57:52 +0000 | [diff] [blame] | 423 | Tok.getIdentifierInfo() == getSEHExceptKeyword()) { |
John Wiegley | 28bbe4b | 2011-04-28 01:08:34 +0000 | [diff] [blame] | 424 | SourceLocation Loc = ConsumeToken(); |
| 425 | Handler = ParseSEHExceptBlock(Loc); |
| 426 | } else if (Tok.is(tok::kw___finally)) { |
| 427 | SourceLocation Loc = ConsumeToken(); |
| 428 | Handler = ParseSEHFinallyBlock(Loc); |
| 429 | } else { |
| 430 | return StmtError(Diag(Tok,diag::err_seh_expected_handler)); |
| 431 | } |
| 432 | |
| 433 | if(Handler.isInvalid()) |
Benjamin Kramer | 3fe198b | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 434 | return Handler; |
John Wiegley | 28bbe4b | 2011-04-28 01:08:34 +0000 | [diff] [blame] | 435 | |
| 436 | return Actions.ActOnSEHTryBlock(false /* IsCXXTry */, |
| 437 | TryLoc, |
| 438 | TryBlock.take(), |
| 439 | Handler.take()); |
| 440 | } |
| 441 | |
| 442 | /// ParseSEHExceptBlock - Handle __except |
| 443 | /// |
| 444 | /// seh-except-block: |
| 445 | /// '__except' '(' seh-filter-expression ')' compound-statement |
| 446 | /// |
| 447 | StmtResult Parser::ParseSEHExceptBlock(SourceLocation ExceptLoc) { |
| 448 | PoisonIdentifierRAIIObject raii(Ident__exception_code, false), |
| 449 | raii2(Ident___exception_code, false), |
| 450 | raii3(Ident_GetExceptionCode, false); |
| 451 | |
| 452 | if(ExpectAndConsume(tok::l_paren,diag::err_expected_lparen)) |
| 453 | return StmtError(); |
| 454 | |
| 455 | ParseScope ExpectScope(this, Scope::DeclScope | Scope::ControlScope); |
| 456 | |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 457 | if (getLangOpts().Borland) { |
Francois Pichet | d7f02df | 2011-04-28 03:14:31 +0000 | [diff] [blame] | 458 | Ident__exception_info->setIsPoisoned(false); |
| 459 | Ident___exception_info->setIsPoisoned(false); |
| 460 | Ident_GetExceptionInfo->setIsPoisoned(false); |
| 461 | } |
John Wiegley | 28bbe4b | 2011-04-28 01:08:34 +0000 | [diff] [blame] | 462 | ExprResult FilterExpr(ParseExpression()); |
Francois Pichet | d7f02df | 2011-04-28 03:14:31 +0000 | [diff] [blame] | 463 | |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 464 | if (getLangOpts().Borland) { |
Francois Pichet | d7f02df | 2011-04-28 03:14:31 +0000 | [diff] [blame] | 465 | Ident__exception_info->setIsPoisoned(true); |
| 466 | Ident___exception_info->setIsPoisoned(true); |
| 467 | Ident_GetExceptionInfo->setIsPoisoned(true); |
| 468 | } |
John Wiegley | 28bbe4b | 2011-04-28 01:08:34 +0000 | [diff] [blame] | 469 | |
| 470 | if(FilterExpr.isInvalid()) |
| 471 | return StmtError(); |
| 472 | |
| 473 | if(ExpectAndConsume(tok::r_paren,diag::err_expected_rparen)) |
| 474 | return StmtError(); |
| 475 | |
Richard Smith | 534986f | 2012-04-14 00:33:13 +0000 | [diff] [blame] | 476 | StmtResult Block(ParseCompoundStatement()); |
John Wiegley | 28bbe4b | 2011-04-28 01:08:34 +0000 | [diff] [blame] | 477 | |
| 478 | if(Block.isInvalid()) |
Benjamin Kramer | 3fe198b | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 479 | return Block; |
John Wiegley | 28bbe4b | 2011-04-28 01:08:34 +0000 | [diff] [blame] | 480 | |
| 481 | return Actions.ActOnSEHExceptBlock(ExceptLoc, FilterExpr.take(), Block.take()); |
| 482 | } |
| 483 | |
| 484 | /// ParseSEHFinallyBlock - Handle __finally |
| 485 | /// |
| 486 | /// seh-finally-block: |
| 487 | /// '__finally' compound-statement |
| 488 | /// |
| 489 | StmtResult Parser::ParseSEHFinallyBlock(SourceLocation FinallyBlock) { |
| 490 | PoisonIdentifierRAIIObject raii(Ident__abnormal_termination, false), |
| 491 | raii2(Ident___abnormal_termination, false), |
| 492 | raii3(Ident_AbnormalTermination, false); |
| 493 | |
Richard Smith | 534986f | 2012-04-14 00:33:13 +0000 | [diff] [blame] | 494 | StmtResult Block(ParseCompoundStatement()); |
John Wiegley | 28bbe4b | 2011-04-28 01:08:34 +0000 | [diff] [blame] | 495 | if(Block.isInvalid()) |
Benjamin Kramer | 3fe198b | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 496 | return Block; |
John Wiegley | 28bbe4b | 2011-04-28 01:08:34 +0000 | [diff] [blame] | 497 | |
| 498 | return Actions.ActOnSEHFinallyBlock(FinallyBlock,Block.take()); |
Douglas Gregor | 312eadb | 2011-04-24 05:37:28 +0000 | [diff] [blame] | 499 | } |
| 500 | |
Argyrios Kyrtzidis | f7da726 | 2008-07-09 22:53:07 +0000 | [diff] [blame] | 501 | /// ParseLabeledStatement - We have an identifier and a ':' after it. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 502 | /// |
| 503 | /// labeled-statement: |
| 504 | /// identifier ':' statement |
| 505 | /// [GNU] identifier ':' attributes[opt] statement |
Argyrios Kyrtzidis | f7da726 | 2008-07-09 22:53:07 +0000 | [diff] [blame] | 506 | /// |
Richard Smith | 534986f | 2012-04-14 00:33:13 +0000 | [diff] [blame] | 507 | StmtResult Parser::ParseLabeledStatement(ParsedAttributesWithRange &attrs) { |
Argyrios Kyrtzidis | f7da726 | 2008-07-09 22:53:07 +0000 | [diff] [blame] | 508 | assert(Tok.is(tok::identifier) && Tok.getIdentifierInfo() && |
| 509 | "Not an identifier!"); |
| 510 | |
| 511 | Token IdentTok = Tok; // Save the whole token. |
| 512 | ConsumeToken(); // eat the identifier. |
| 513 | |
| 514 | assert(Tok.is(tok::colon) && "Not a label!"); |
Sebastian Redl | 61364dd | 2008-12-11 19:30:53 +0000 | [diff] [blame] | 515 | |
Argyrios Kyrtzidis | f7da726 | 2008-07-09 22:53:07 +0000 | [diff] [blame] | 516 | // identifier ':' statement |
| 517 | SourceLocation ColonLoc = ConsumeToken(); |
| 518 | |
Richard Smith | 93982a7 | 2013-11-15 22:45:29 +0000 | [diff] [blame] | 519 | // Read label attributes, if present. |
| 520 | StmtResult SubStmt; |
| 521 | if (Tok.is(tok::kw___attribute)) { |
| 522 | ParsedAttributesWithRange TempAttrs(AttrFactory); |
| 523 | ParseGNUAttributes(TempAttrs); |
Argyrios Kyrtzidis | f7da726 | 2008-07-09 22:53:07 +0000 | [diff] [blame] | 524 | |
Richard Smith | 93982a7 | 2013-11-15 22:45:29 +0000 | [diff] [blame] | 525 | // In C++, GNU attributes only apply to the label if they are followed by a |
| 526 | // semicolon, to disambiguate label attributes from attributes on a labeled |
| 527 | // declaration. |
| 528 | // |
| 529 | // This doesn't quite match what GCC does; if the attribute list is empty |
| 530 | // and followed by a semicolon, GCC will reject (it appears to parse the |
| 531 | // attributes as part of a statement in that case). That looks like a bug. |
| 532 | if (!getLangOpts().CPlusPlus || Tok.is(tok::semi)) |
| 533 | attrs.takeAllFrom(TempAttrs); |
| 534 | else if (isDeclarationStatement()) { |
| 535 | StmtVector Stmts; |
| 536 | // FIXME: We should do this whether or not we have a declaration |
| 537 | // statement, but that doesn't work correctly (because ProhibitAttributes |
| 538 | // can't handle GNU attributes), so only call it in the one case where |
| 539 | // GNU attributes are allowed. |
| 540 | SubStmt = ParseStatementOrDeclarationAfterAttributes( |
| 541 | Stmts, /*OnlyStmts*/ true, 0, TempAttrs); |
| 542 | if (!TempAttrs.empty() && !SubStmt.isInvalid()) |
| 543 | SubStmt = Actions.ProcessStmtAttributes( |
| 544 | SubStmt.get(), TempAttrs.getList(), TempAttrs.Range); |
| 545 | } else { |
| 546 | Diag(Tok, diag::err_expected_semi_after) << "__attribute__"; |
| 547 | } |
| 548 | } |
| 549 | |
| 550 | // If we've not parsed a statement yet, parse one now. |
| 551 | if (!SubStmt.isInvalid() && !SubStmt.isUsable()) |
| 552 | SubStmt = ParseStatement(); |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 553 | |
Argyrios Kyrtzidis | f7da726 | 2008-07-09 22:53:07 +0000 | [diff] [blame] | 554 | // Broken substmt shouldn't prevent the label from being added to the AST. |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 555 | if (SubStmt.isInvalid()) |
Argyrios Kyrtzidis | f7da726 | 2008-07-09 22:53:07 +0000 | [diff] [blame] | 556 | SubStmt = Actions.ActOnNullStmt(ColonLoc); |
NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 557 | |
Chris Lattner | 337e550 | 2011-02-18 01:27:55 +0000 | [diff] [blame] | 558 | LabelDecl *LD = Actions.LookupOrCreateLabel(IdentTok.getIdentifierInfo(), |
| 559 | IdentTok.getLocation()); |
Richard Smith | 534986f | 2012-04-14 00:33:13 +0000 | [diff] [blame] | 560 | if (AttributeList *Attrs = attrs.getList()) { |
Chris Lattner | 337e550 | 2011-02-18 01:27:55 +0000 | [diff] [blame] | 561 | Actions.ProcessDeclAttributeList(Actions.CurScope, LD, Attrs); |
Richard Smith | 534986f | 2012-04-14 00:33:13 +0000 | [diff] [blame] | 562 | attrs.clear(); |
| 563 | } |
NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 564 | |
Chris Lattner | 337e550 | 2011-02-18 01:27:55 +0000 | [diff] [blame] | 565 | return Actions.ActOnLabelStmt(IdentTok.getLocation(), LD, ColonLoc, |
| 566 | SubStmt.get()); |
Argyrios Kyrtzidis | f7da726 | 2008-07-09 22:53:07 +0000 | [diff] [blame] | 567 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 568 | |
| 569 | /// ParseCaseStatement |
| 570 | /// labeled-statement: |
| 571 | /// 'case' constant-expression ':' statement |
| 572 | /// [GNU] 'case' constant-expression '...' constant-expression ':' statement |
| 573 | /// |
Richard Smith | 534986f | 2012-04-14 00:33:13 +0000 | [diff] [blame] | 574 | StmtResult Parser::ParseCaseStatement(bool MissingCase, ExprResult Expr) { |
Richard Smith | 46f1110 | 2011-04-21 22:48:40 +0000 | [diff] [blame] | 575 | assert((MissingCase || Tok.is(tok::kw_case)) && "Not a case stmt!"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 576 | |
Chris Lattner | 24e1e70 | 2009-03-04 04:23:07 +0000 | [diff] [blame] | 577 | // It is very very common for code to contain many case statements recursively |
| 578 | // nested, as in (but usually without indentation): |
| 579 | // case 1: |
| 580 | // case 2: |
| 581 | // case 3: |
| 582 | // case 4: |
| 583 | // case 5: etc. |
| 584 | // |
| 585 | // Parsing this naively works, but is both inefficient and can cause us to run |
| 586 | // out of stack space in our recursive descent parser. As a special case, |
Chris Lattner | 26140c6 | 2009-03-04 18:24:58 +0000 | [diff] [blame] | 587 | // flatten this recursion into an iterative loop. This is complex and gross, |
Chris Lattner | 24e1e70 | 2009-03-04 04:23:07 +0000 | [diff] [blame] | 588 | // but all the grossness is constrained to ParseCaseStatement (and some |
Richard Smith | 93982a7 | 2013-11-15 22:45:29 +0000 | [diff] [blame] | 589 | // weirdness in the actions), so this is just local grossness :). |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 590 | |
Chris Lattner | 24e1e70 | 2009-03-04 04:23:07 +0000 | [diff] [blame] | 591 | // TopLevelCase - This is the highest level we have parsed. 'case 1' in the |
| 592 | // example above. |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 593 | StmtResult TopLevelCase(true); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 594 | |
Chris Lattner | 24e1e70 | 2009-03-04 04:23:07 +0000 | [diff] [blame] | 595 | // DeepestParsedCaseStmt - This is the deepest statement we have parsed, which |
| 596 | // gets updated each time a new case is parsed, and whose body is unset so |
| 597 | // far. When parsing 'case 4', this is the 'case 3' node. |
Richard Trieu | b2fc690 | 2011-09-09 02:16:15 +0000 | [diff] [blame] | 598 | Stmt *DeepestParsedCaseStmt = 0; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 599 | |
Chris Lattner | 24e1e70 | 2009-03-04 04:23:07 +0000 | [diff] [blame] | 600 | // While we have case statements, eat and stack them. |
David Majnemer | 0e1e69c | 2011-06-13 05:50:12 +0000 | [diff] [blame] | 601 | SourceLocation ColonLoc; |
Chris Lattner | 24e1e70 | 2009-03-04 04:23:07 +0000 | [diff] [blame] | 602 | do { |
Richard Trieu | bb9b80c | 2011-04-21 21:44:26 +0000 | [diff] [blame] | 603 | SourceLocation CaseLoc = MissingCase ? Expr.get()->getExprLoc() : |
| 604 | ConsumeToken(); // eat the 'case'. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 605 | |
Douglas Gregor | 3e1005f | 2009-09-21 18:10:23 +0000 | [diff] [blame] | 606 | if (Tok.is(tok::code_completion)) { |
Douglas Gregor | 23c94db | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 607 | Actions.CodeCompleteCase(getCurScope()); |
Argyrios Kyrtzidis | 7d10087 | 2011-09-04 03:32:15 +0000 | [diff] [blame] | 608 | cutOffParsing(); |
| 609 | return StmtError(); |
Douglas Gregor | 3e1005f | 2009-09-21 18:10:23 +0000 | [diff] [blame] | 610 | } |
NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 611 | |
Chris Lattner | 6fb09c8 | 2009-12-10 00:38:54 +0000 | [diff] [blame] | 612 | /// We don't want to treat 'case x : y' as a potential typo for 'case x::y'. |
| 613 | /// Disable this form of error recovery while we're parsing the case |
| 614 | /// expression. |
| 615 | ColonProtectionRAIIObject ColonProtection(*this); |
NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 616 | |
Richard Trieu | bb9b80c | 2011-04-21 21:44:26 +0000 | [diff] [blame] | 617 | ExprResult LHS(MissingCase ? Expr : ParseConstantExpression()); |
| 618 | MissingCase = false; |
Chris Lattner | 24e1e70 | 2009-03-04 04:23:07 +0000 | [diff] [blame] | 619 | if (LHS.isInvalid()) { |
Alexey Bataev | 8fe2475 | 2013-11-18 08:17:37 +0000 | [diff] [blame^] | 620 | SkipUntil(tok::colon, StopAtSemi); |
Sebastian Redl | 61364dd | 2008-12-11 19:30:53 +0000 | [diff] [blame] | 621 | return StmtError(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 622 | } |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 623 | |
Chris Lattner | 24e1e70 | 2009-03-04 04:23:07 +0000 | [diff] [blame] | 624 | // GNU case range extension. |
| 625 | SourceLocation DotDotDotLoc; |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 626 | ExprResult RHS; |
Chris Lattner | 24e1e70 | 2009-03-04 04:23:07 +0000 | [diff] [blame] | 627 | if (Tok.is(tok::ellipsis)) { |
| 628 | Diag(Tok, diag::ext_gnu_case_range); |
| 629 | DotDotDotLoc = ConsumeToken(); |
Sebastian Redl | 61364dd | 2008-12-11 19:30:53 +0000 | [diff] [blame] | 630 | |
Chris Lattner | 24e1e70 | 2009-03-04 04:23:07 +0000 | [diff] [blame] | 631 | RHS = ParseConstantExpression(); |
| 632 | if (RHS.isInvalid()) { |
Alexey Bataev | 8fe2475 | 2013-11-18 08:17:37 +0000 | [diff] [blame^] | 633 | SkipUntil(tok::colon, StopAtSemi); |
Chris Lattner | 24e1e70 | 2009-03-04 04:23:07 +0000 | [diff] [blame] | 634 | return StmtError(); |
| 635 | } |
| 636 | } |
NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 637 | |
Chris Lattner | 6fb09c8 | 2009-12-10 00:38:54 +0000 | [diff] [blame] | 638 | ColonProtection.restore(); |
Sebastian Redl | 61364dd | 2008-12-11 19:30:53 +0000 | [diff] [blame] | 639 | |
John McCall | f6a3ab0 | 2011-01-22 09:28:32 +0000 | [diff] [blame] | 640 | if (Tok.is(tok::colon)) { |
| 641 | ColonLoc = ConsumeToken(); |
| 642 | |
| 643 | // Treat "case blah;" as a typo for "case blah:". |
| 644 | } else if (Tok.is(tok::semi)) { |
| 645 | ColonLoc = ConsumeToken(); |
| 646 | Diag(ColonLoc, diag::err_expected_colon_after) << "'case'" |
| 647 | << FixItHint::CreateReplacement(ColonLoc, ":"); |
| 648 | } else { |
Douglas Gregor | 662a482 | 2010-12-23 22:56:40 +0000 | [diff] [blame] | 649 | SourceLocation ExpectedLoc = PP.getLocForEndOfToken(PrevTokLocation); |
| 650 | Diag(ExpectedLoc, diag::err_expected_colon_after) << "'case'" |
| 651 | << FixItHint::CreateInsertion(ExpectedLoc, ":"); |
| 652 | ColonLoc = ExpectedLoc; |
Chris Lattner | 24e1e70 | 2009-03-04 04:23:07 +0000 | [diff] [blame] | 653 | } |
NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 654 | |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 655 | StmtResult Case = |
John McCall | 9ae2f07 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 656 | Actions.ActOnCaseStmt(CaseLoc, LHS.get(), DotDotDotLoc, |
| 657 | RHS.get(), ColonLoc); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 658 | |
Chris Lattner | 24e1e70 | 2009-03-04 04:23:07 +0000 | [diff] [blame] | 659 | // If we had a sema error parsing this case, then just ignore it and |
| 660 | // continue parsing the sub-stmt. |
| 661 | if (Case.isInvalid()) { |
| 662 | if (TopLevelCase.isInvalid()) // No parsed case stmts. |
| 663 | return ParseStatement(); |
| 664 | // Otherwise, just don't add it as a nested case. |
| 665 | } else { |
| 666 | // If this is the first case statement we parsed, it becomes TopLevelCase. |
| 667 | // Otherwise we link it into the current chain. |
John McCall | ca0408f | 2010-08-23 06:44:23 +0000 | [diff] [blame] | 668 | Stmt *NextDeepest = Case.get(); |
Chris Lattner | 24e1e70 | 2009-03-04 04:23:07 +0000 | [diff] [blame] | 669 | if (TopLevelCase.isInvalid()) |
Benjamin Kramer | 3fe198b | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 670 | TopLevelCase = Case; |
Chris Lattner | 24e1e70 | 2009-03-04 04:23:07 +0000 | [diff] [blame] | 671 | else |
John McCall | 9ae2f07 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 672 | Actions.ActOnCaseStmtBody(DeepestParsedCaseStmt, Case.get()); |
Chris Lattner | 24e1e70 | 2009-03-04 04:23:07 +0000 | [diff] [blame] | 673 | DeepestParsedCaseStmt = NextDeepest; |
| 674 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 675 | |
Chris Lattner | 24e1e70 | 2009-03-04 04:23:07 +0000 | [diff] [blame] | 676 | // Handle all case statements. |
| 677 | } while (Tok.is(tok::kw_case)); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 678 | |
Chris Lattner | 24e1e70 | 2009-03-04 04:23:07 +0000 | [diff] [blame] | 679 | assert(!TopLevelCase.isInvalid() && "Should have parsed at least one case!"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 680 | |
Chris Lattner | 24e1e70 | 2009-03-04 04:23:07 +0000 | [diff] [blame] | 681 | // If we found a non-case statement, start by parsing it. |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 682 | StmtResult SubStmt; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 683 | |
Chris Lattner | 24e1e70 | 2009-03-04 04:23:07 +0000 | [diff] [blame] | 684 | if (Tok.isNot(tok::r_brace)) { |
| 685 | SubStmt = ParseStatement(); |
| 686 | } else { |
| 687 | // Nicely diagnose the common error "switch (X) { case 4: }", which is |
| 688 | // not valid. |
David Majnemer | 63f04ab | 2011-06-14 15:24:38 +0000 | [diff] [blame] | 689 | SourceLocation AfterColonLoc = PP.getLocForEndOfToken(ColonLoc); |
Richard Smith | 85b29a4 | 2012-02-17 01:35:32 +0000 | [diff] [blame] | 690 | Diag(AfterColonLoc, diag::err_label_end_of_compound_statement) |
| 691 | << FixItHint::CreateInsertion(AfterColonLoc, " ;"); |
Chris Lattner | 24e1e70 | 2009-03-04 04:23:07 +0000 | [diff] [blame] | 692 | SubStmt = true; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 693 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 694 | |
Chris Lattner | 24e1e70 | 2009-03-04 04:23:07 +0000 | [diff] [blame] | 695 | // Broken sub-stmt shouldn't prevent forming the case statement properly. |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 696 | if (SubStmt.isInvalid()) |
Chris Lattner | 24e1e70 | 2009-03-04 04:23:07 +0000 | [diff] [blame] | 697 | SubStmt = Actions.ActOnNullStmt(SourceLocation()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 698 | |
Chris Lattner | 24e1e70 | 2009-03-04 04:23:07 +0000 | [diff] [blame] | 699 | // Install the body into the most deeply-nested case. |
John McCall | 9ae2f07 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 700 | Actions.ActOnCaseStmtBody(DeepestParsedCaseStmt, SubStmt.get()); |
Sebastian Redl | 61364dd | 2008-12-11 19:30:53 +0000 | [diff] [blame] | 701 | |
Chris Lattner | 24e1e70 | 2009-03-04 04:23:07 +0000 | [diff] [blame] | 702 | // Return the top level parsed statement tree. |
Benjamin Kramer | 3fe198b | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 703 | return TopLevelCase; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 704 | } |
| 705 | |
| 706 | /// ParseDefaultStatement |
| 707 | /// labeled-statement: |
| 708 | /// 'default' ':' statement |
| 709 | /// Note that this does not parse the 'statement' at the end. |
| 710 | /// |
Richard Smith | 534986f | 2012-04-14 00:33:13 +0000 | [diff] [blame] | 711 | StmtResult Parser::ParseDefaultStatement() { |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 712 | assert(Tok.is(tok::kw_default) && "Not a default stmt!"); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 713 | SourceLocation DefaultLoc = ConsumeToken(); // eat the 'default'. |
| 714 | |
Douglas Gregor | 662a482 | 2010-12-23 22:56:40 +0000 | [diff] [blame] | 715 | SourceLocation ColonLoc; |
John McCall | f6a3ab0 | 2011-01-22 09:28:32 +0000 | [diff] [blame] | 716 | if (Tok.is(tok::colon)) { |
| 717 | ColonLoc = ConsumeToken(); |
| 718 | |
| 719 | // Treat "default;" as a typo for "default:". |
| 720 | } else if (Tok.is(tok::semi)) { |
| 721 | ColonLoc = ConsumeToken(); |
| 722 | Diag(ColonLoc, diag::err_expected_colon_after) << "'default'" |
| 723 | << FixItHint::CreateReplacement(ColonLoc, ":"); |
| 724 | } else { |
Douglas Gregor | 662a482 | 2010-12-23 22:56:40 +0000 | [diff] [blame] | 725 | SourceLocation ExpectedLoc = PP.getLocForEndOfToken(PrevTokLocation); |
| 726 | Diag(ExpectedLoc, diag::err_expected_colon_after) << "'default'" |
| 727 | << FixItHint::CreateInsertion(ExpectedLoc, ":"); |
| 728 | ColonLoc = ExpectedLoc; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 729 | } |
NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 730 | |
Richard Smith | 85b29a4 | 2012-02-17 01:35:32 +0000 | [diff] [blame] | 731 | StmtResult SubStmt; |
| 732 | |
| 733 | if (Tok.isNot(tok::r_brace)) { |
| 734 | SubStmt = ParseStatement(); |
| 735 | } else { |
| 736 | // Diagnose the common error "switch (X) {... default: }", which is |
| 737 | // not valid. |
David Majnemer | 63f04ab | 2011-06-14 15:24:38 +0000 | [diff] [blame] | 738 | SourceLocation AfterColonLoc = PP.getLocForEndOfToken(ColonLoc); |
Richard Smith | 85b29a4 | 2012-02-17 01:35:32 +0000 | [diff] [blame] | 739 | Diag(AfterColonLoc, diag::err_label_end_of_compound_statement) |
| 740 | << FixItHint::CreateInsertion(AfterColonLoc, " ;"); |
| 741 | SubStmt = true; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 742 | } |
| 743 | |
Richard Smith | 85b29a4 | 2012-02-17 01:35:32 +0000 | [diff] [blame] | 744 | // Broken sub-stmt shouldn't prevent forming the case statement properly. |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 745 | if (SubStmt.isInvalid()) |
Richard Smith | 85b29a4 | 2012-02-17 01:35:32 +0000 | [diff] [blame] | 746 | SubStmt = Actions.ActOnNullStmt(ColonLoc); |
Sebastian Redl | 61364dd | 2008-12-11 19:30:53 +0000 | [diff] [blame] | 747 | |
Sebastian Redl | 117054a | 2008-12-28 16:13:43 +0000 | [diff] [blame] | 748 | return Actions.ActOnDefaultStmt(DefaultLoc, ColonLoc, |
John McCall | 9ae2f07 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 749 | SubStmt.get(), getCurScope()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 750 | } |
| 751 | |
Richard Smith | 534986f | 2012-04-14 00:33:13 +0000 | [diff] [blame] | 752 | StmtResult Parser::ParseCompoundStatement(bool isStmtExpr) { |
| 753 | return ParseCompoundStatement(isStmtExpr, Scope::DeclScope); |
Douglas Gregor | bca01b4 | 2011-07-06 22:04:06 +0000 | [diff] [blame] | 754 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 755 | |
| 756 | /// ParseCompoundStatement - Parse a "{}" block. |
| 757 | /// |
| 758 | /// compound-statement: [C99 6.8.2] |
| 759 | /// { block-item-list[opt] } |
| 760 | /// [GNU] { label-declarations block-item-list } [TODO] |
| 761 | /// |
| 762 | /// block-item-list: |
| 763 | /// block-item |
| 764 | /// block-item-list block-item |
| 765 | /// |
| 766 | /// block-item: |
| 767 | /// declaration |
Chris Lattner | 45a566c | 2007-08-27 01:01:57 +0000 | [diff] [blame] | 768 | /// [GNU] '__extension__' declaration |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 769 | /// statement |
| 770 | /// [OMP] openmp-directive [TODO] |
| 771 | /// |
| 772 | /// [GNU] label-declarations: |
| 773 | /// [GNU] label-declaration |
| 774 | /// [GNU] label-declarations label-declaration |
| 775 | /// |
| 776 | /// [GNU] label-declaration: |
| 777 | /// [GNU] '__label__' identifier-list ';' |
| 778 | /// |
| 779 | /// [OMP] openmp-directive: [TODO] |
| 780 | /// [OMP] barrier-directive |
| 781 | /// [OMP] flush-directive |
| 782 | /// |
Richard Smith | 534986f | 2012-04-14 00:33:13 +0000 | [diff] [blame] | 783 | StmtResult Parser::ParseCompoundStatement(bool isStmtExpr, |
Douglas Gregor | bca01b4 | 2011-07-06 22:04:06 +0000 | [diff] [blame] | 784 | unsigned ScopeFlags) { |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 785 | assert(Tok.is(tok::l_brace) && "Not a compount stmt!"); |
Sebastian Redl | 61364dd | 2008-12-11 19:30:53 +0000 | [diff] [blame] | 786 | |
Chris Lattner | 31e0572 | 2007-08-26 06:24:45 +0000 | [diff] [blame] | 787 | // Enter a scope to hold everything within the compound stmt. Compound |
| 788 | // statements can always hold declarations. |
Douglas Gregor | bca01b4 | 2011-07-06 22:04:06 +0000 | [diff] [blame] | 789 | ParseScope CompoundScope(this, ScopeFlags); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 790 | |
| 791 | // Parse the statements in the body. |
Sebastian Redl | 61364dd | 2008-12-11 19:30:53 +0000 | [diff] [blame] | 792 | return ParseCompoundStatementBody(isStmtExpr); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 793 | } |
| 794 | |
Lang Hames | a60d21d | 2012-11-03 22:29:05 +0000 | [diff] [blame] | 795 | /// Parse any pragmas at the start of the compound expression. We handle these |
| 796 | /// separately since some pragmas (FP_CONTRACT) must appear before any C |
| 797 | /// statement in the compound, but may be intermingled with other pragmas. |
| 798 | void Parser::ParseCompoundStatementLeadingPragmas() { |
| 799 | bool checkForPragmas = true; |
| 800 | while (checkForPragmas) { |
| 801 | switch (Tok.getKind()) { |
| 802 | case tok::annot_pragma_vis: |
| 803 | HandlePragmaVisibility(); |
| 804 | break; |
| 805 | case tok::annot_pragma_pack: |
| 806 | HandlePragmaPack(); |
| 807 | break; |
| 808 | case tok::annot_pragma_msstruct: |
| 809 | HandlePragmaMSStruct(); |
| 810 | break; |
| 811 | case tok::annot_pragma_align: |
| 812 | HandlePragmaAlign(); |
| 813 | break; |
| 814 | case tok::annot_pragma_weak: |
| 815 | HandlePragmaWeak(); |
| 816 | break; |
| 817 | case tok::annot_pragma_weakalias: |
| 818 | HandlePragmaWeakAlias(); |
| 819 | break; |
| 820 | case tok::annot_pragma_redefine_extname: |
| 821 | HandlePragmaRedefineExtname(); |
| 822 | break; |
| 823 | case tok::annot_pragma_opencl_extension: |
| 824 | HandlePragmaOpenCLExtension(); |
| 825 | break; |
| 826 | case tok::annot_pragma_fp_contract: |
| 827 | HandlePragmaFPContract(); |
| 828 | break; |
| 829 | default: |
| 830 | checkForPragmas = false; |
| 831 | break; |
| 832 | } |
| 833 | } |
| 834 | |
| 835 | } |
| 836 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 837 | /// ParseCompoundStatementBody - Parse a sequence of statements and invoke the |
Steve Naroff | 1b273c4 | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 838 | /// ActOnCompoundStmt action. This expects the '{' to be the current token, and |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 839 | /// consume the '}' at the end of the block. It does not manipulate the scope |
| 840 | /// stack. |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 841 | StmtResult Parser::ParseCompoundStatementBody(bool isStmtExpr) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 842 | PrettyStackTraceLoc CrashInfo(PP.getSourceManager(), |
Chris Lattner | ae50fa0 | 2009-03-05 00:00:31 +0000 | [diff] [blame] | 843 | Tok.getLocation(), |
| 844 | "in compound statement ('{}')"); |
Lang Hames | be9af12 | 2012-10-02 04:45:10 +0000 | [diff] [blame] | 845 | |
| 846 | // Record the state of the FP_CONTRACT pragma, restore on leaving the |
| 847 | // compound statement. |
| 848 | Sema::FPContractStateRAII SaveFPContractState(Actions); |
| 849 | |
Douglas Gregor | 0fbda68 | 2010-09-15 14:51:05 +0000 | [diff] [blame] | 850 | InMessageExpressionRAIIObject InMessage(*this, false); |
Douglas Gregor | 4a8dfb5 | 2011-10-12 16:37:45 +0000 | [diff] [blame] | 851 | BalancedDelimiterTracker T(*this, tok::l_brace); |
| 852 | if (T.consumeOpen()) |
| 853 | return StmtError(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 854 | |
Dmitri Gribenko | 625bb56 | 2012-02-14 22:14:32 +0000 | [diff] [blame] | 855 | Sema::CompoundScopeRAII CompoundScope(Actions); |
| 856 | |
Lang Hames | a60d21d | 2012-11-03 22:29:05 +0000 | [diff] [blame] | 857 | // Parse any pragmas at the beginning of the compound statement. |
| 858 | ParseCompoundStatementLeadingPragmas(); |
Argyrios Kyrtzidis | b918d0f | 2011-01-17 18:58:44 +0000 | [diff] [blame] | 859 | |
Lang Hames | a60d21d | 2012-11-03 22:29:05 +0000 | [diff] [blame] | 860 | StmtVector Stmts; |
Lang Hames | 860022c | 2012-10-21 01:10:01 +0000 | [diff] [blame] | 861 | |
Chris Lattner | 4ae493c | 2011-02-18 02:08:43 +0000 | [diff] [blame] | 862 | // "__label__ X, Y, Z;" is the GNU "Local Label" extension. These are |
| 863 | // only allowed at the start of a compound stmt regardless of the language. |
| 864 | while (Tok.is(tok::kw___label__)) { |
| 865 | SourceLocation LabelLoc = ConsumeToken(); |
NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 866 | |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 867 | SmallVector<Decl *, 8> DeclsInGroup; |
Chris Lattner | 4ae493c | 2011-02-18 02:08:43 +0000 | [diff] [blame] | 868 | while (1) { |
| 869 | if (Tok.isNot(tok::identifier)) { |
| 870 | Diag(Tok, diag::err_expected_ident); |
| 871 | break; |
| 872 | } |
NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 873 | |
Chris Lattner | 4ae493c | 2011-02-18 02:08:43 +0000 | [diff] [blame] | 874 | IdentifierInfo *II = Tok.getIdentifierInfo(); |
| 875 | SourceLocation IdLoc = ConsumeToken(); |
Abramo Bagnara | 6784304 | 2011-03-05 18:21:20 +0000 | [diff] [blame] | 876 | DeclsInGroup.push_back(Actions.LookupOrCreateLabel(II, IdLoc, LabelLoc)); |
NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 877 | |
Chris Lattner | 4ae493c | 2011-02-18 02:08:43 +0000 | [diff] [blame] | 878 | if (!Tok.is(tok::comma)) |
| 879 | break; |
| 880 | ConsumeToken(); |
| 881 | } |
NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 882 | |
John McCall | 0b7e678 | 2011-03-24 11:26:52 +0000 | [diff] [blame] | 883 | DeclSpec DS(AttrFactory); |
Rafael Espindola | 4549d7f | 2013-07-09 12:05:01 +0000 | [diff] [blame] | 884 | DeclGroupPtrTy Res = |
| 885 | Actions.FinalizeDeclaratorGroup(getCurScope(), DS, DeclsInGroup); |
Chris Lattner | 4ae493c | 2011-02-18 02:08:43 +0000 | [diff] [blame] | 886 | StmtResult R = Actions.ActOnDeclStmt(Res, LabelLoc, Tok.getLocation()); |
NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 887 | |
Chris Lattner | 8bb21d3 | 2012-04-28 16:12:17 +0000 | [diff] [blame] | 888 | ExpectAndConsumeSemi(diag::err_expected_semi_declaration); |
Chris Lattner | 4ae493c | 2011-02-18 02:08:43 +0000 | [diff] [blame] | 889 | if (R.isUsable()) |
| 890 | Stmts.push_back(R.release()); |
| 891 | } |
NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 892 | |
Chris Lattner | 4ae493c | 2011-02-18 02:08:43 +0000 | [diff] [blame] | 893 | while (Tok.isNot(tok::r_brace) && Tok.isNot(tok::eof)) { |
Argyrios Kyrtzidis | b918d0f | 2011-01-17 18:58:44 +0000 | [diff] [blame] | 894 | if (Tok.is(tok::annot_pragma_unused)) { |
| 895 | HandlePragmaUnused(); |
| 896 | continue; |
| 897 | } |
| 898 | |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 899 | if (getLangOpts().MicrosoftExt && (Tok.is(tok::kw___if_exists) || |
Francois Pichet | 1e86269 | 2011-05-06 20:48:22 +0000 | [diff] [blame] | 900 | Tok.is(tok::kw___if_not_exists))) { |
| 901 | ParseMicrosoftIfExistsStatement(Stmts); |
| 902 | continue; |
| 903 | } |
| 904 | |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 905 | StmtResult R; |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 906 | if (Tok.isNot(tok::kw___extension__)) { |
Fariborz Jahanian | c5be7b0 | 2010-09-28 20:42:35 +0000 | [diff] [blame] | 907 | R = ParseStatementOrDeclaration(Stmts, false); |
Chris Lattner | 45a566c | 2007-08-27 01:01:57 +0000 | [diff] [blame] | 908 | } else { |
| 909 | // __extension__ can start declarations and it can also be a unary |
| 910 | // operator for expressions. Consume multiple __extension__ markers here |
| 911 | // until we can determine which is which. |
Eli Friedman | adf077f | 2009-01-27 08:43:38 +0000 | [diff] [blame] | 912 | // FIXME: This loses extension expressions in the AST! |
Chris Lattner | 45a566c | 2007-08-27 01:01:57 +0000 | [diff] [blame] | 913 | SourceLocation ExtLoc = ConsumeToken(); |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 914 | while (Tok.is(tok::kw___extension__)) |
Chris Lattner | 45a566c | 2007-08-27 01:01:57 +0000 | [diff] [blame] | 915 | ConsumeToken(); |
Chris Lattner | 39146d6 | 2008-10-20 06:51:33 +0000 | [diff] [blame] | 916 | |
John McCall | 0b7e678 | 2011-03-24 11:26:52 +0000 | [diff] [blame] | 917 | ParsedAttributesWithRange attrs(AttrFactory); |
Richard Smith | 4e24f0f | 2013-01-02 12:01:23 +0000 | [diff] [blame] | 918 | MaybeParseCXX11Attributes(attrs, 0, /*MightBeObjCMessageSend*/ true); |
Sean Hunt | bbd37c6 | 2009-11-21 08:43:09 +0000 | [diff] [blame] | 919 | |
Chris Lattner | 45a566c | 2007-08-27 01:01:57 +0000 | [diff] [blame] | 920 | // If this is the start of a declaration, parse it as such. |
Argyrios Kyrtzidis | 5404a15 | 2008-10-05 00:06:24 +0000 | [diff] [blame] | 921 | if (isDeclarationStatement()) { |
Eli Friedman | bc6c848 | 2009-05-16 23:40:44 +0000 | [diff] [blame] | 922 | // __extension__ silences extension warnings in the subdeclaration. |
Chris Lattner | 97144fc | 2009-04-02 04:16:50 +0000 | [diff] [blame] | 923 | // FIXME: Save the __extension__ on the decl as a node somehow? |
Eli Friedman | bc6c848 | 2009-05-16 23:40:44 +0000 | [diff] [blame] | 924 | ExtensionRAIIObject O(Diags); |
| 925 | |
Chris Lattner | 97144fc | 2009-04-02 04:16:50 +0000 | [diff] [blame] | 926 | SourceLocation DeclStart = Tok.getLocation(), DeclEnd; |
Fariborz Jahanian | c5be7b0 | 2010-09-28 20:42:35 +0000 | [diff] [blame] | 927 | DeclGroupPtrTy Res = ParseDeclaration(Stmts, |
| 928 | Declarator::BlockContext, DeclEnd, |
John McCall | 7f040a9 | 2010-12-24 02:08:15 +0000 | [diff] [blame] | 929 | attrs); |
Chris Lattner | 97144fc | 2009-04-02 04:16:50 +0000 | [diff] [blame] | 930 | R = Actions.ActOnDeclStmt(Res, DeclStart, DeclEnd); |
Chris Lattner | 45a566c | 2007-08-27 01:01:57 +0000 | [diff] [blame] | 931 | } else { |
Eli Friedman | adf077f | 2009-01-27 08:43:38 +0000 | [diff] [blame] | 932 | // Otherwise this was a unary __extension__ marker. |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 933 | ExprResult Res(ParseExpressionWithLeadingExtension(ExtLoc)); |
Chris Lattner | 043a0b5 | 2008-03-13 06:32:11 +0000 | [diff] [blame] | 934 | |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 935 | if (Res.isInvalid()) { |
Chris Lattner | 45a566c | 2007-08-27 01:01:57 +0000 | [diff] [blame] | 936 | SkipUntil(tok::semi); |
| 937 | continue; |
| 938 | } |
Sebastian Redl | f512e82 | 2009-01-18 18:03:53 +0000 | [diff] [blame] | 939 | |
Sean Hunt | bbd37c6 | 2009-11-21 08:43:09 +0000 | [diff] [blame] | 940 | // FIXME: Use attributes? |
Chris Lattner | 39146d6 | 2008-10-20 06:51:33 +0000 | [diff] [blame] | 941 | // Eat the semicolon at the end of stmt and convert the expr into a |
| 942 | // statement. |
Douglas Gregor | 9ba23b4 | 2010-09-07 15:23:11 +0000 | [diff] [blame] | 943 | ExpectAndConsumeSemi(diag::err_expected_semi_after_expr); |
Richard Smith | 4195637 | 2013-01-14 22:39:08 +0000 | [diff] [blame] | 944 | R = Actions.ActOnExprStmt(Res); |
Chris Lattner | 45a566c | 2007-08-27 01:01:57 +0000 | [diff] [blame] | 945 | } |
| 946 | } |
Sebastian Redl | 61364dd | 2008-12-11 19:30:53 +0000 | [diff] [blame] | 947 | |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 948 | if (R.isUsable()) |
Sebastian Redl | effa8d1 | 2008-12-10 00:02:53 +0000 | [diff] [blame] | 949 | Stmts.push_back(R.release()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 950 | } |
Sebastian Redl | 61364dd | 2008-12-11 19:30:53 +0000 | [diff] [blame] | 951 | |
Argyrios Kyrtzidis | 5d5ed59 | 2012-03-24 02:26:51 +0000 | [diff] [blame] | 952 | SourceLocation CloseLoc = Tok.getLocation(); |
| 953 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 954 | // We broke out of the while loop because we found a '}' or EOF. |
Nico Weber | d11f435 | 2012-12-30 23:36:56 +0000 | [diff] [blame] | 955 | if (!T.consumeClose()) |
Argyrios Kyrtzidis | 5d5ed59 | 2012-03-24 02:26:51 +0000 | [diff] [blame] | 956 | // Recover by creating a compound statement with what we parsed so far, |
| 957 | // instead of dropping everything and returning StmtError(); |
Nico Weber | d11f435 | 2012-12-30 23:36:56 +0000 | [diff] [blame] | 958 | CloseLoc = T.getCloseLocation(); |
Sebastian Redl | 61364dd | 2008-12-11 19:30:53 +0000 | [diff] [blame] | 959 | |
Argyrios Kyrtzidis | 5d5ed59 | 2012-03-24 02:26:51 +0000 | [diff] [blame] | 960 | return Actions.ActOnCompoundStmt(T.getOpenLocation(), CloseLoc, |
Benjamin Kramer | 3fe198b | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 961 | Stmts, isStmtExpr); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 962 | } |
| 963 | |
Chris Lattner | 15ff111 | 2008-12-12 06:31:07 +0000 | [diff] [blame] | 964 | /// ParseParenExprOrCondition: |
| 965 | /// [C ] '(' expression ')' |
Chris Lattner | ff871fb | 2008-12-12 06:35:28 +0000 | [diff] [blame] | 966 | /// [C++] '(' condition ')' [not allowed if OnlyAllowCondition=true] |
Chris Lattner | 15ff111 | 2008-12-12 06:31:07 +0000 | [diff] [blame] | 967 | /// |
| 968 | /// This function parses and performs error recovery on the specified condition |
| 969 | /// or expression (depending on whether we're in C++ or C mode). This function |
| 970 | /// goes out of its way to recover well. It returns true if there was a parser |
| 971 | /// error (the right paren couldn't be found), which indicates that the caller |
| 972 | /// should try to recover harder. It returns false if the condition is |
| 973 | /// successfully parsed. Note that a successful parse can still have semantic |
| 974 | /// errors in the condition. |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 975 | bool Parser::ParseParenExprOrCondition(ExprResult &ExprResult, |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 976 | Decl *&DeclResult, |
Douglas Gregor | 586596f | 2010-05-06 17:25:47 +0000 | [diff] [blame] | 977 | SourceLocation Loc, |
Argyrios Kyrtzidis | 44aa1f3 | 2010-11-20 02:04:01 +0000 | [diff] [blame] | 978 | bool ConvertToBoolean) { |
Douglas Gregor | 4a8dfb5 | 2011-10-12 16:37:45 +0000 | [diff] [blame] | 979 | BalancedDelimiterTracker T(*this, tok::l_paren); |
| 980 | T.consumeOpen(); |
| 981 | |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 982 | if (getLangOpts().CPlusPlus) |
Jeffrey Yasskin | dec0984 | 2011-01-18 02:00:16 +0000 | [diff] [blame] | 983 | ParseCXXCondition(ExprResult, DeclResult, Loc, ConvertToBoolean); |
Douglas Gregor | 99e9b4d | 2009-11-25 00:27:52 +0000 | [diff] [blame] | 984 | else { |
| 985 | ExprResult = ParseExpression(); |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 986 | DeclResult = 0; |
NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 987 | |
Douglas Gregor | 586596f | 2010-05-06 17:25:47 +0000 | [diff] [blame] | 988 | // If required, convert to a boolean value. |
| 989 | if (!ExprResult.isInvalid() && ConvertToBoolean) |
| 990 | ExprResult |
John McCall | 9ae2f07 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 991 | = Actions.ActOnBooleanCondition(getCurScope(), Loc, ExprResult.get()); |
Douglas Gregor | 99e9b4d | 2009-11-25 00:27:52 +0000 | [diff] [blame] | 992 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 993 | |
Chris Lattner | 15ff111 | 2008-12-12 06:31:07 +0000 | [diff] [blame] | 994 | // If the parser was confused by the condition and we don't have a ')', try to |
| 995 | // recover by skipping ahead to a semi and bailing out. If condexp is |
| 996 | // semantically invalid but we have well formed code, keep going. |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 997 | if (ExprResult.isInvalid() && !DeclResult && Tok.isNot(tok::r_paren)) { |
Chris Lattner | 15ff111 | 2008-12-12 06:31:07 +0000 | [diff] [blame] | 998 | SkipUntil(tok::semi); |
| 999 | // Skipping may have stopped if it found the containing ')'. If so, we can |
| 1000 | // continue parsing the if statement. |
| 1001 | if (Tok.isNot(tok::r_paren)) |
| 1002 | return true; |
| 1003 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1004 | |
Chris Lattner | 15ff111 | 2008-12-12 06:31:07 +0000 | [diff] [blame] | 1005 | // Otherwise the condition is valid or the rparen is present. |
Douglas Gregor | 4a8dfb5 | 2011-10-12 16:37:45 +0000 | [diff] [blame] | 1006 | T.consumeClose(); |
Chad Rosier | b660446 | 2012-07-10 21:35:27 +0000 | [diff] [blame] | 1007 | |
Chris Lattner | bddc7e5 | 2012-04-28 16:24:20 +0000 | [diff] [blame] | 1008 | // Check for extraneous ')'s to catch things like "if (foo())) {". We know |
| 1009 | // that all callers are looking for a statement after the condition, so ")" |
| 1010 | // isn't valid. |
| 1011 | while (Tok.is(tok::r_paren)) { |
| 1012 | Diag(Tok, diag::err_extraneous_rparen_in_condition) |
| 1013 | << FixItHint::CreateRemoval(Tok.getLocation()); |
| 1014 | ConsumeParen(); |
| 1015 | } |
Chad Rosier | b660446 | 2012-07-10 21:35:27 +0000 | [diff] [blame] | 1016 | |
Chris Lattner | 15ff111 | 2008-12-12 06:31:07 +0000 | [diff] [blame] | 1017 | return false; |
| 1018 | } |
| 1019 | |
| 1020 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1021 | /// ParseIfStatement |
| 1022 | /// if-statement: [C99 6.8.4.1] |
| 1023 | /// 'if' '(' expression ')' statement |
| 1024 | /// 'if' '(' expression ')' statement 'else' statement |
Argyrios Kyrtzidis | 71b914b | 2008-09-09 20:38:47 +0000 | [diff] [blame] | 1025 | /// [C++] 'if' '(' condition ')' statement |
| 1026 | /// [C++] 'if' '(' condition ')' statement 'else' statement |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1027 | /// |
Richard Smith | 534986f | 2012-04-14 00:33:13 +0000 | [diff] [blame] | 1028 | StmtResult Parser::ParseIfStatement(SourceLocation *TrailingElseLoc) { |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 1029 | assert(Tok.is(tok::kw_if) && "Not an if stmt!"); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1030 | SourceLocation IfLoc = ConsumeToken(); // eat the 'if'. |
| 1031 | |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 1032 | if (Tok.isNot(tok::l_paren)) { |
Chris Lattner | 1ab3b96 | 2008-11-18 07:48:38 +0000 | [diff] [blame] | 1033 | Diag(Tok, diag::err_expected_lparen_after) << "if"; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1034 | SkipUntil(tok::semi); |
Sebastian Redl | 61364dd | 2008-12-11 19:30:53 +0000 | [diff] [blame] | 1035 | return StmtError(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1036 | } |
Argyrios Kyrtzidis | 71b914b | 2008-09-09 20:38:47 +0000 | [diff] [blame] | 1037 | |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1038 | bool C99orCXX = getLangOpts().C99 || getLangOpts().CPlusPlus; |
Argyrios Kyrtzidis | 488d37e | 2008-09-11 03:06:46 +0000 | [diff] [blame] | 1039 | |
Chris Lattner | 2215325 | 2007-08-26 23:08:06 +0000 | [diff] [blame] | 1040 | // C99 6.8.4p3 - In C99, the if statement is a block. This is not |
| 1041 | // the case for C90. |
Argyrios Kyrtzidis | 488d37e | 2008-09-11 03:06:46 +0000 | [diff] [blame] | 1042 | // |
| 1043 | // C++ 6.4p3: |
| 1044 | // A name introduced by a declaration in a condition is in scope from its |
| 1045 | // point of declaration until the end of the substatements controlled by the |
| 1046 | // condition. |
Argyrios Kyrtzidis | 14d08c0 | 2008-09-11 23:08:39 +0000 | [diff] [blame] | 1047 | // C++ 3.3.2p4: |
| 1048 | // Names declared in the for-init-statement, and in the condition of if, |
| 1049 | // while, for, and switch statements are local to the if, while, for, or |
| 1050 | // switch statement (including the controlled statement). |
Argyrios Kyrtzidis | 488d37e | 2008-09-11 03:06:46 +0000 | [diff] [blame] | 1051 | // |
Douglas Gregor | 8935b8b | 2008-12-10 06:34:36 +0000 | [diff] [blame] | 1052 | ParseScope IfScope(this, Scope::DeclScope | Scope::ControlScope, C99orCXX); |
Chris Lattner | 2215325 | 2007-08-26 23:08:06 +0000 | [diff] [blame] | 1053 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1054 | // Parse the condition. |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 1055 | ExprResult CondExp; |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 1056 | Decl *CondVar = 0; |
Argyrios Kyrtzidis | 44aa1f3 | 2010-11-20 02:04:01 +0000 | [diff] [blame] | 1057 | if (ParseParenExprOrCondition(CondExp, CondVar, IfLoc, true)) |
Chris Lattner | 15ff111 | 2008-12-12 06:31:07 +0000 | [diff] [blame] | 1058 | return StmtError(); |
Chris Lattner | 18914bc | 2008-12-12 06:19:11 +0000 | [diff] [blame] | 1059 | |
David Blaikie | def0762 | 2012-05-16 04:20:04 +0000 | [diff] [blame] | 1060 | FullExprArg FullCondExp(Actions.MakeFullExpr(CondExp.get(), IfLoc)); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1061 | |
Chris Lattner | 0ecea03 | 2007-08-22 05:28:50 +0000 | [diff] [blame] | 1062 | // C99 6.8.4p3 - In C99, the body of the if statement is a scope, even if |
Chris Lattner | 3848440 | 2007-08-22 05:33:11 +0000 | [diff] [blame] | 1063 | // there is no compound stmt. C90 does not have this clause. We only do this |
| 1064 | // if the body isn't a compound statement to avoid push/pop in common cases. |
Argyrios Kyrtzidis | 488d37e | 2008-09-11 03:06:46 +0000 | [diff] [blame] | 1065 | // |
| 1066 | // C++ 6.4p1: |
| 1067 | // The substatement in a selection-statement (each substatement, in the else |
| 1068 | // form of the if statement) implicitly defines a local scope. |
| 1069 | // |
| 1070 | // For C++ we create a scope for the condition and a new scope for |
| 1071 | // substatements because: |
| 1072 | // -When the 'then' scope exits, we want the condition declaration to still be |
| 1073 | // active for the 'else' scope too. |
| 1074 | // -Sema will detect name clashes by considering declarations of a |
| 1075 | // 'ControlScope' as part of its direct subscope. |
| 1076 | // -If we wanted the condition and substatement to be in the same scope, we |
| 1077 | // would have to notify ParseStatement not to create a new scope. It's |
| 1078 | // simpler to let it create a new scope. |
| 1079 | // |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1080 | ParseScope InnerScope(this, Scope::DeclScope, |
Douglas Gregor | 8935b8b | 2008-12-10 06:34:36 +0000 | [diff] [blame] | 1081 | C99orCXX && Tok.isNot(tok::l_brace)); |
Argyrios Kyrtzidis | 71b914b | 2008-09-09 20:38:47 +0000 | [diff] [blame] | 1082 | |
Chris Lattner | b96728d | 2007-10-29 05:08:52 +0000 | [diff] [blame] | 1083 | // Read the 'then' stmt. |
| 1084 | SourceLocation ThenStmtLoc = Tok.getLocation(); |
Nico Weber | 5cb94a7 | 2011-12-22 23:26:17 +0000 | [diff] [blame] | 1085 | |
| 1086 | SourceLocation InnerStatementTrailingElseLoc; |
| 1087 | StmtResult ThenStmt(ParseStatement(&InnerStatementTrailingElseLoc)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1088 | |
Chris Lattner | a36ce71 | 2007-08-22 05:16:28 +0000 | [diff] [blame] | 1089 | // Pop the 'if' scope if needed. |
Douglas Gregor | 8935b8b | 2008-12-10 06:34:36 +0000 | [diff] [blame] | 1090 | InnerScope.Exit(); |
Sebastian Redl | 61364dd | 2008-12-11 19:30:53 +0000 | [diff] [blame] | 1091 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1092 | // If it has an else, parse it. |
| 1093 | SourceLocation ElseLoc; |
Chris Lattner | b96728d | 2007-10-29 05:08:52 +0000 | [diff] [blame] | 1094 | SourceLocation ElseStmtLoc; |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 1095 | StmtResult ElseStmt; |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 1096 | |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 1097 | if (Tok.is(tok::kw_else)) { |
Nico Weber | 5cb94a7 | 2011-12-22 23:26:17 +0000 | [diff] [blame] | 1098 | if (TrailingElseLoc) |
| 1099 | *TrailingElseLoc = Tok.getLocation(); |
| 1100 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1101 | ElseLoc = ConsumeToken(); |
Chris Lattner | 966c78b | 2010-04-12 06:12:50 +0000 | [diff] [blame] | 1102 | ElseStmtLoc = Tok.getLocation(); |
Sebastian Redl | 61364dd | 2008-12-11 19:30:53 +0000 | [diff] [blame] | 1103 | |
Chris Lattner | 0ecea03 | 2007-08-22 05:28:50 +0000 | [diff] [blame] | 1104 | // C99 6.8.4p3 - In C99, the body of the if statement is a scope, even if |
Chris Lattner | 3848440 | 2007-08-22 05:33:11 +0000 | [diff] [blame] | 1105 | // there is no compound stmt. C90 does not have this clause. We only do |
| 1106 | // this if the body isn't a compound statement to avoid push/pop in common |
| 1107 | // cases. |
Argyrios Kyrtzidis | 488d37e | 2008-09-11 03:06:46 +0000 | [diff] [blame] | 1108 | // |
| 1109 | // C++ 6.4p1: |
| 1110 | // The substatement in a selection-statement (each substatement, in the else |
| 1111 | // form of the if statement) implicitly defines a local scope. |
| 1112 | // |
Sebastian Redl | 61364dd | 2008-12-11 19:30:53 +0000 | [diff] [blame] | 1113 | ParseScope InnerScope(this, Scope::DeclScope, |
Douglas Gregor | 8935b8b | 2008-12-10 06:34:36 +0000 | [diff] [blame] | 1114 | C99orCXX && Tok.isNot(tok::l_brace)); |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 1115 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1116 | ElseStmt = ParseStatement(); |
NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 1117 | |
Chris Lattner | a36ce71 | 2007-08-22 05:16:28 +0000 | [diff] [blame] | 1118 | // Pop the 'else' scope if needed. |
Douglas Gregor | 8935b8b | 2008-12-10 06:34:36 +0000 | [diff] [blame] | 1119 | InnerScope.Exit(); |
Douglas Gregor | d2d8be6 | 2011-07-30 08:36:53 +0000 | [diff] [blame] | 1120 | } else if (Tok.is(tok::code_completion)) { |
| 1121 | Actions.CodeCompleteAfterIf(getCurScope()); |
Argyrios Kyrtzidis | 7d10087 | 2011-09-04 03:32:15 +0000 | [diff] [blame] | 1122 | cutOffParsing(); |
| 1123 | return StmtError(); |
Nico Weber | 5cb94a7 | 2011-12-22 23:26:17 +0000 | [diff] [blame] | 1124 | } else if (InnerStatementTrailingElseLoc.isValid()) { |
| 1125 | Diag(InnerStatementTrailingElseLoc, diag::warn_dangling_else); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1126 | } |
Sebastian Redl | 61364dd | 2008-12-11 19:30:53 +0000 | [diff] [blame] | 1127 | |
Douglas Gregor | 8935b8b | 2008-12-10 06:34:36 +0000 | [diff] [blame] | 1128 | IfScope.Exit(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1129 | |
Chris Lattner | b96728d | 2007-10-29 05:08:52 +0000 | [diff] [blame] | 1130 | // If the then or else stmt is invalid and the other is valid (and present), |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1131 | // make turn the invalid one into a null stmt to avoid dropping the other |
Chris Lattner | b96728d | 2007-10-29 05:08:52 +0000 | [diff] [blame] | 1132 | // part. If both are invalid, return error. |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 1133 | if ((ThenStmt.isInvalid() && ElseStmt.isInvalid()) || |
| 1134 | (ThenStmt.isInvalid() && ElseStmt.get() == 0) || |
| 1135 | (ThenStmt.get() == 0 && ElseStmt.isInvalid())) { |
Sebastian Redl | a55e52c | 2008-11-25 22:21:31 +0000 | [diff] [blame] | 1136 | // Both invalid, or one is invalid and other is non-present: return error. |
Sebastian Redl | 61364dd | 2008-12-11 19:30:53 +0000 | [diff] [blame] | 1137 | return StmtError(); |
Chris Lattner | b96728d | 2007-10-29 05:08:52 +0000 | [diff] [blame] | 1138 | } |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 1139 | |
Chris Lattner | b96728d | 2007-10-29 05:08:52 +0000 | [diff] [blame] | 1140 | // Now if either are invalid, replace with a ';'. |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 1141 | if (ThenStmt.isInvalid()) |
Chris Lattner | b96728d | 2007-10-29 05:08:52 +0000 | [diff] [blame] | 1142 | ThenStmt = Actions.ActOnNullStmt(ThenStmtLoc); |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 1143 | if (ElseStmt.isInvalid()) |
Chris Lattner | b96728d | 2007-10-29 05:08:52 +0000 | [diff] [blame] | 1144 | ElseStmt = Actions.ActOnNullStmt(ElseStmtLoc); |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 1145 | |
John McCall | 9ae2f07 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 1146 | return Actions.ActOnIfStmt(IfLoc, FullCondExp, CondVar, ThenStmt.get(), |
Argyrios Kyrtzidis | 44aa1f3 | 2010-11-20 02:04:01 +0000 | [diff] [blame] | 1147 | ElseLoc, ElseStmt.get()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1148 | } |
| 1149 | |
| 1150 | /// ParseSwitchStatement |
| 1151 | /// switch-statement: |
| 1152 | /// 'switch' '(' expression ')' statement |
Argyrios Kyrtzidis | 71b914b | 2008-09-09 20:38:47 +0000 | [diff] [blame] | 1153 | /// [C++] 'switch' '(' condition ')' statement |
Richard Smith | 534986f | 2012-04-14 00:33:13 +0000 | [diff] [blame] | 1154 | StmtResult Parser::ParseSwitchStatement(SourceLocation *TrailingElseLoc) { |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 1155 | assert(Tok.is(tok::kw_switch) && "Not a switch stmt!"); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1156 | SourceLocation SwitchLoc = ConsumeToken(); // eat the 'switch'. |
| 1157 | |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 1158 | if (Tok.isNot(tok::l_paren)) { |
Chris Lattner | 1ab3b96 | 2008-11-18 07:48:38 +0000 | [diff] [blame] | 1159 | Diag(Tok, diag::err_expected_lparen_after) << "switch"; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1160 | SkipUntil(tok::semi); |
Sebastian Redl | 9a92034 | 2008-12-11 19:48:14 +0000 | [diff] [blame] | 1161 | return StmtError(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1162 | } |
Chris Lattner | 2215325 | 2007-08-26 23:08:06 +0000 | [diff] [blame] | 1163 | |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1164 | bool C99orCXX = getLangOpts().C99 || getLangOpts().CPlusPlus; |
Argyrios Kyrtzidis | 488d37e | 2008-09-11 03:06:46 +0000 | [diff] [blame] | 1165 | |
Chris Lattner | 2215325 | 2007-08-26 23:08:06 +0000 | [diff] [blame] | 1166 | // C99 6.8.4p3 - In C99, the switch statement is a block. This is |
| 1167 | // not the case for C90. Start the switch scope. |
Argyrios Kyrtzidis | 488d37e | 2008-09-11 03:06:46 +0000 | [diff] [blame] | 1168 | // |
| 1169 | // C++ 6.4p3: |
| 1170 | // A name introduced by a declaration in a condition is in scope from its |
| 1171 | // point of declaration until the end of the substatements controlled by the |
| 1172 | // condition. |
Argyrios Kyrtzidis | 14d08c0 | 2008-09-11 23:08:39 +0000 | [diff] [blame] | 1173 | // C++ 3.3.2p4: |
| 1174 | // Names declared in the for-init-statement, and in the condition of if, |
| 1175 | // while, for, and switch statements are local to the if, while, for, or |
| 1176 | // switch statement (including the controlled statement). |
Argyrios Kyrtzidis | 488d37e | 2008-09-11 03:06:46 +0000 | [diff] [blame] | 1177 | // |
Richard Trieu | bb9b80c | 2011-04-21 21:44:26 +0000 | [diff] [blame] | 1178 | unsigned ScopeFlags = Scope::BreakScope | Scope::SwitchScope; |
Chris Lattner | 15ff111 | 2008-12-12 06:31:07 +0000 | [diff] [blame] | 1179 | if (C99orCXX) |
| 1180 | ScopeFlags |= Scope::DeclScope | Scope::ControlScope; |
Douglas Gregor | 8935b8b | 2008-12-10 06:34:36 +0000 | [diff] [blame] | 1181 | ParseScope SwitchScope(this, ScopeFlags); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1182 | |
| 1183 | // Parse the condition. |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 1184 | ExprResult Cond; |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 1185 | Decl *CondVar = 0; |
Douglas Gregor | 586596f | 2010-05-06 17:25:47 +0000 | [diff] [blame] | 1186 | if (ParseParenExprOrCondition(Cond, CondVar, SwitchLoc, false)) |
Sebastian Redl | 9a92034 | 2008-12-11 19:48:14 +0000 | [diff] [blame] | 1187 | return StmtError(); |
Eli Friedman | 2342ef7 | 2008-12-17 22:19:57 +0000 | [diff] [blame] | 1188 | |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 1189 | StmtResult Switch |
John McCall | 9ae2f07 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 1190 | = Actions.ActOnStartOfSwitchStmt(SwitchLoc, Cond.get(), CondVar); |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 1191 | |
Douglas Gregor | 586596f | 2010-05-06 17:25:47 +0000 | [diff] [blame] | 1192 | if (Switch.isInvalid()) { |
NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 1193 | // Skip the switch body. |
Douglas Gregor | 586596f | 2010-05-06 17:25:47 +0000 | [diff] [blame] | 1194 | // FIXME: This is not optimal recovery, but parsing the body is more |
| 1195 | // dangerous due to the presence of case and default statements, which |
| 1196 | // will have no place to connect back with the switch. |
Douglas Gregor | 4186ff4 | 2010-05-20 23:20:59 +0000 | [diff] [blame] | 1197 | if (Tok.is(tok::l_brace)) { |
| 1198 | ConsumeBrace(); |
Alexey Bataev | 8fe2475 | 2013-11-18 08:17:37 +0000 | [diff] [blame^] | 1199 | SkipUntil(tok::r_brace); |
Douglas Gregor | 4186ff4 | 2010-05-20 23:20:59 +0000 | [diff] [blame] | 1200 | } else |
Douglas Gregor | 586596f | 2010-05-06 17:25:47 +0000 | [diff] [blame] | 1201 | SkipUntil(tok::semi); |
Benjamin Kramer | 3fe198b | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 1202 | return Switch; |
Douglas Gregor | 586596f | 2010-05-06 17:25:47 +0000 | [diff] [blame] | 1203 | } |
NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 1204 | |
Chris Lattner | 0ecea03 | 2007-08-22 05:28:50 +0000 | [diff] [blame] | 1205 | // C99 6.8.4p3 - In C99, the body of the switch statement is a scope, even if |
Chris Lattner | 3848440 | 2007-08-22 05:33:11 +0000 | [diff] [blame] | 1206 | // there is no compound stmt. C90 does not have this clause. We only do this |
| 1207 | // if the body isn't a compound statement to avoid push/pop in common cases. |
Argyrios Kyrtzidis | 488d37e | 2008-09-11 03:06:46 +0000 | [diff] [blame] | 1208 | // |
| 1209 | // C++ 6.4p1: |
| 1210 | // The substatement in a selection-statement (each substatement, in the else |
| 1211 | // form of the if statement) implicitly defines a local scope. |
| 1212 | // |
| 1213 | // See comments in ParseIfStatement for why we create a scope for the |
| 1214 | // condition and a new scope for substatement in C++. |
| 1215 | // |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1216 | ParseScope InnerScope(this, Scope::DeclScope, |
Douglas Gregor | 8935b8b | 2008-12-10 06:34:36 +0000 | [diff] [blame] | 1217 | C99orCXX && Tok.isNot(tok::l_brace)); |
Sebastian Redl | 61364dd | 2008-12-11 19:30:53 +0000 | [diff] [blame] | 1218 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1219 | // Read the body statement. |
Nico Weber | 5cb94a7 | 2011-12-22 23:26:17 +0000 | [diff] [blame] | 1220 | StmtResult Body(ParseStatement(TrailingElseLoc)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1221 | |
Chris Lattner | 7e52de4 | 2010-01-24 01:50:29 +0000 | [diff] [blame] | 1222 | // Pop the scopes. |
Douglas Gregor | 8935b8b | 2008-12-10 06:34:36 +0000 | [diff] [blame] | 1223 | InnerScope.Exit(); |
Douglas Gregor | 8935b8b | 2008-12-10 06:34:36 +0000 | [diff] [blame] | 1224 | SwitchScope.Exit(); |
Sebastian Redl | 61364dd | 2008-12-11 19:30:53 +0000 | [diff] [blame] | 1225 | |
Dmitri Gribenko | 625bb56 | 2012-02-14 22:14:32 +0000 | [diff] [blame] | 1226 | if (Body.isInvalid()) { |
Chris Lattner | 7e52de4 | 2010-01-24 01:50:29 +0000 | [diff] [blame] | 1227 | // FIXME: Remove the case statement list from the Switch statement. |
Dmitri Gribenko | 625bb56 | 2012-02-14 22:14:32 +0000 | [diff] [blame] | 1228 | |
| 1229 | // Put the synthesized null statement on the same line as the end of switch |
| 1230 | // condition. |
| 1231 | SourceLocation SynthesizedNullStmtLocation = Cond.get()->getLocEnd(); |
| 1232 | Body = Actions.ActOnNullStmt(SynthesizedNullStmtLocation); |
| 1233 | } |
NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 1234 | |
John McCall | 9ae2f07 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 1235 | return Actions.ActOnFinishSwitchStmt(SwitchLoc, Switch.get(), Body.get()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1236 | } |
| 1237 | |
| 1238 | /// ParseWhileStatement |
| 1239 | /// while-statement: [C99 6.8.5.1] |
| 1240 | /// 'while' '(' expression ')' statement |
Argyrios Kyrtzidis | 71b914b | 2008-09-09 20:38:47 +0000 | [diff] [blame] | 1241 | /// [C++] 'while' '(' condition ')' statement |
Richard Smith | 534986f | 2012-04-14 00:33:13 +0000 | [diff] [blame] | 1242 | StmtResult Parser::ParseWhileStatement(SourceLocation *TrailingElseLoc) { |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 1243 | assert(Tok.is(tok::kw_while) && "Not a while stmt!"); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1244 | SourceLocation WhileLoc = Tok.getLocation(); |
| 1245 | ConsumeToken(); // eat the 'while'. |
Sebastian Redl | 9a92034 | 2008-12-11 19:48:14 +0000 | [diff] [blame] | 1246 | |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 1247 | if (Tok.isNot(tok::l_paren)) { |
Chris Lattner | 1ab3b96 | 2008-11-18 07:48:38 +0000 | [diff] [blame] | 1248 | Diag(Tok, diag::err_expected_lparen_after) << "while"; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1249 | SkipUntil(tok::semi); |
Sebastian Redl | 9a92034 | 2008-12-11 19:48:14 +0000 | [diff] [blame] | 1250 | return StmtError(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1251 | } |
Sebastian Redl | 9a92034 | 2008-12-11 19:48:14 +0000 | [diff] [blame] | 1252 | |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1253 | bool C99orCXX = getLangOpts().C99 || getLangOpts().CPlusPlus; |
Argyrios Kyrtzidis | 488d37e | 2008-09-11 03:06:46 +0000 | [diff] [blame] | 1254 | |
Chris Lattner | 2215325 | 2007-08-26 23:08:06 +0000 | [diff] [blame] | 1255 | // C99 6.8.5p5 - In C99, the while statement is a block. This is not |
| 1256 | // the case for C90. Start the loop scope. |
Argyrios Kyrtzidis | 488d37e | 2008-09-11 03:06:46 +0000 | [diff] [blame] | 1257 | // |
| 1258 | // C++ 6.4p3: |
| 1259 | // A name introduced by a declaration in a condition is in scope from its |
| 1260 | // point of declaration until the end of the substatements controlled by the |
| 1261 | // condition. |
Argyrios Kyrtzidis | 14d08c0 | 2008-09-11 23:08:39 +0000 | [diff] [blame] | 1262 | // C++ 3.3.2p4: |
| 1263 | // Names declared in the for-init-statement, and in the condition of if, |
| 1264 | // while, for, and switch statements are local to the if, while, for, or |
| 1265 | // switch statement (including the controlled statement). |
Argyrios Kyrtzidis | 488d37e | 2008-09-11 03:06:46 +0000 | [diff] [blame] | 1266 | // |
Douglas Gregor | 8935b8b | 2008-12-10 06:34:36 +0000 | [diff] [blame] | 1267 | unsigned ScopeFlags; |
Argyrios Kyrtzidis | 488d37e | 2008-09-11 03:06:46 +0000 | [diff] [blame] | 1268 | if (C99orCXX) |
Douglas Gregor | 8935b8b | 2008-12-10 06:34:36 +0000 | [diff] [blame] | 1269 | ScopeFlags = Scope::BreakScope | Scope::ContinueScope | |
| 1270 | Scope::DeclScope | Scope::ControlScope; |
Chris Lattner | 2215325 | 2007-08-26 23:08:06 +0000 | [diff] [blame] | 1271 | else |
Douglas Gregor | 8935b8b | 2008-12-10 06:34:36 +0000 | [diff] [blame] | 1272 | ScopeFlags = Scope::BreakScope | Scope::ContinueScope; |
| 1273 | ParseScope WhileScope(this, ScopeFlags); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1274 | |
| 1275 | // Parse the condition. |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 1276 | ExprResult Cond; |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 1277 | Decl *CondVar = 0; |
Douglas Gregor | 586596f | 2010-05-06 17:25:47 +0000 | [diff] [blame] | 1278 | if (ParseParenExprOrCondition(Cond, CondVar, WhileLoc, true)) |
Chris Lattner | 15ff111 | 2008-12-12 06:31:07 +0000 | [diff] [blame] | 1279 | return StmtError(); |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 1280 | |
David Blaikie | def0762 | 2012-05-16 04:20:04 +0000 | [diff] [blame] | 1281 | FullExprArg FullCond(Actions.MakeFullExpr(Cond.get(), WhileLoc)); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1282 | |
Chris Lattner | 0ecea03 | 2007-08-22 05:28:50 +0000 | [diff] [blame] | 1283 | // C99 6.8.5p5 - In C99, the body of the if statement is a scope, even if |
Chris Lattner | 3848440 | 2007-08-22 05:33:11 +0000 | [diff] [blame] | 1284 | // there is no compound stmt. C90 does not have this clause. We only do this |
| 1285 | // if the body isn't a compound statement to avoid push/pop in common cases. |
Argyrios Kyrtzidis | 488d37e | 2008-09-11 03:06:46 +0000 | [diff] [blame] | 1286 | // |
| 1287 | // C++ 6.5p2: |
| 1288 | // The substatement in an iteration-statement implicitly defines a local scope |
| 1289 | // which is entered and exited each time through the loop. |
| 1290 | // |
| 1291 | // See comments in ParseIfStatement for why we create a scope for the |
| 1292 | // condition and a new scope for substatement in C++. |
| 1293 | // |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1294 | ParseScope InnerScope(this, Scope::DeclScope, |
Douglas Gregor | 8935b8b | 2008-12-10 06:34:36 +0000 | [diff] [blame] | 1295 | C99orCXX && Tok.isNot(tok::l_brace)); |
Sebastian Redl | 9a92034 | 2008-12-11 19:48:14 +0000 | [diff] [blame] | 1296 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1297 | // Read the body statement. |
Nico Weber | 5cb94a7 | 2011-12-22 23:26:17 +0000 | [diff] [blame] | 1298 | StmtResult Body(ParseStatement(TrailingElseLoc)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1299 | |
Chris Lattner | 0ecea03 | 2007-08-22 05:28:50 +0000 | [diff] [blame] | 1300 | // Pop the body scope if needed. |
Douglas Gregor | 8935b8b | 2008-12-10 06:34:36 +0000 | [diff] [blame] | 1301 | InnerScope.Exit(); |
| 1302 | WhileScope.Exit(); |
Sebastian Redl | 9a92034 | 2008-12-11 19:48:14 +0000 | [diff] [blame] | 1303 | |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 1304 | if ((Cond.isInvalid() && !CondVar) || Body.isInvalid()) |
Sebastian Redl | 9a92034 | 2008-12-11 19:48:14 +0000 | [diff] [blame] | 1305 | return StmtError(); |
| 1306 | |
John McCall | 9ae2f07 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 1307 | return Actions.ActOnWhileStmt(WhileLoc, FullCond, CondVar, Body.get()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1308 | } |
| 1309 | |
| 1310 | /// ParseDoStatement |
| 1311 | /// do-statement: [C99 6.8.5.2] |
| 1312 | /// 'do' statement 'while' '(' expression ')' ';' |
| 1313 | /// Note: this lets the caller parse the end ';'. |
Richard Smith | 534986f | 2012-04-14 00:33:13 +0000 | [diff] [blame] | 1314 | StmtResult Parser::ParseDoStatement() { |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 1315 | assert(Tok.is(tok::kw_do) && "Not a do stmt!"); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1316 | SourceLocation DoLoc = ConsumeToken(); // eat the 'do'. |
Sebastian Redl | 9a92034 | 2008-12-11 19:48:14 +0000 | [diff] [blame] | 1317 | |
Chris Lattner | 2215325 | 2007-08-26 23:08:06 +0000 | [diff] [blame] | 1318 | // C99 6.8.5p5 - In C99, the do statement is a block. This is not |
| 1319 | // the case for C90. Start the loop scope. |
Douglas Gregor | 8935b8b | 2008-12-10 06:34:36 +0000 | [diff] [blame] | 1320 | unsigned ScopeFlags; |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1321 | if (getLangOpts().C99) |
Douglas Gregor | 8935b8b | 2008-12-10 06:34:36 +0000 | [diff] [blame] | 1322 | ScopeFlags = Scope::BreakScope | Scope::ContinueScope | Scope::DeclScope; |
Chris Lattner | 2215325 | 2007-08-26 23:08:06 +0000 | [diff] [blame] | 1323 | else |
Douglas Gregor | 8935b8b | 2008-12-10 06:34:36 +0000 | [diff] [blame] | 1324 | ScopeFlags = Scope::BreakScope | Scope::ContinueScope; |
Sebastian Redl | 9a92034 | 2008-12-11 19:48:14 +0000 | [diff] [blame] | 1325 | |
Douglas Gregor | 8935b8b | 2008-12-10 06:34:36 +0000 | [diff] [blame] | 1326 | ParseScope DoScope(this, ScopeFlags); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1327 | |
Chris Lattner | 0ecea03 | 2007-08-22 05:28:50 +0000 | [diff] [blame] | 1328 | // C99 6.8.5p5 - In C99, the body of the if statement is a scope, even if |
Chris Lattner | 3848440 | 2007-08-22 05:33:11 +0000 | [diff] [blame] | 1329 | // there is no compound stmt. C90 does not have this clause. We only do this |
| 1330 | // if the body isn't a compound statement to avoid push/pop in common cases. |
Argyrios Kyrtzidis | 143db71 | 2008-09-11 04:46:46 +0000 | [diff] [blame] | 1331 | // |
| 1332 | // C++ 6.5p2: |
| 1333 | // The substatement in an iteration-statement implicitly defines a local scope |
| 1334 | // which is entered and exited each time through the loop. |
| 1335 | // |
Douglas Gregor | 8935b8b | 2008-12-10 06:34:36 +0000 | [diff] [blame] | 1336 | ParseScope InnerScope(this, Scope::DeclScope, |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1337 | (getLangOpts().C99 || getLangOpts().CPlusPlus) && |
Douglas Gregor | 8935b8b | 2008-12-10 06:34:36 +0000 | [diff] [blame] | 1338 | Tok.isNot(tok::l_brace)); |
Sebastian Redl | 9a92034 | 2008-12-11 19:48:14 +0000 | [diff] [blame] | 1339 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1340 | // Read the body statement. |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 1341 | StmtResult Body(ParseStatement()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1342 | |
Chris Lattner | 0ecea03 | 2007-08-22 05:28:50 +0000 | [diff] [blame] | 1343 | // Pop the body scope if needed. |
Douglas Gregor | 8935b8b | 2008-12-10 06:34:36 +0000 | [diff] [blame] | 1344 | InnerScope.Exit(); |
Chris Lattner | 0ecea03 | 2007-08-22 05:28:50 +0000 | [diff] [blame] | 1345 | |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 1346 | if (Tok.isNot(tok::kw_while)) { |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 1347 | if (!Body.isInvalid()) { |
Chris Lattner | 1950440 | 2008-11-13 18:52:53 +0000 | [diff] [blame] | 1348 | Diag(Tok, diag::err_expected_while); |
Chris Lattner | 28eb7e9 | 2008-11-23 23:17:07 +0000 | [diff] [blame] | 1349 | Diag(DoLoc, diag::note_matching) << "do"; |
Alexey Bataev | 8fe2475 | 2013-11-18 08:17:37 +0000 | [diff] [blame^] | 1350 | SkipUntil(tok::semi, StopBeforeMatch); |
Chris Lattner | 1950440 | 2008-11-13 18:52:53 +0000 | [diff] [blame] | 1351 | } |
Sebastian Redl | 9a92034 | 2008-12-11 19:48:14 +0000 | [diff] [blame] | 1352 | return StmtError(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1353 | } |
| 1354 | SourceLocation WhileLoc = ConsumeToken(); |
Sebastian Redl | 9a92034 | 2008-12-11 19:48:14 +0000 | [diff] [blame] | 1355 | |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 1356 | if (Tok.isNot(tok::l_paren)) { |
Chris Lattner | 1ab3b96 | 2008-11-18 07:48:38 +0000 | [diff] [blame] | 1357 | Diag(Tok, diag::err_expected_lparen_after) << "do/while"; |
Alexey Bataev | 8fe2475 | 2013-11-18 08:17:37 +0000 | [diff] [blame^] | 1358 | SkipUntil(tok::semi, StopBeforeMatch); |
Sebastian Redl | 9a92034 | 2008-12-11 19:48:14 +0000 | [diff] [blame] | 1359 | return StmtError(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1360 | } |
Sebastian Redl | 9a92034 | 2008-12-11 19:48:14 +0000 | [diff] [blame] | 1361 | |
Richard Smith | 5eed7e0 | 2013-10-15 01:34:54 +0000 | [diff] [blame] | 1362 | // Parse the parenthesized expression. |
Douglas Gregor | 4a8dfb5 | 2011-10-12 16:37:45 +0000 | [diff] [blame] | 1363 | BalancedDelimiterTracker T(*this, tok::l_paren); |
| 1364 | T.consumeOpen(); |
Chad Rosier | b660446 | 2012-07-10 21:35:27 +0000 | [diff] [blame] | 1365 | |
Richard Smith | 5eed7e0 | 2013-10-15 01:34:54 +0000 | [diff] [blame] | 1366 | // A do-while expression is not a condition, so can't have attributes. |
| 1367 | DiagnoseAndSkipCXX11Attributes(); |
Sean Hunt | 2edf0a2 | 2012-06-23 05:07:58 +0000 | [diff] [blame] | 1368 | |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 1369 | ExprResult Cond = ParseExpression(); |
Douglas Gregor | 4a8dfb5 | 2011-10-12 16:37:45 +0000 | [diff] [blame] | 1370 | T.consumeClose(); |
Douglas Gregor | 8935b8b | 2008-12-10 06:34:36 +0000 | [diff] [blame] | 1371 | DoScope.Exit(); |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 1372 | |
Sebastian Redl | 9a92034 | 2008-12-11 19:48:14 +0000 | [diff] [blame] | 1373 | if (Cond.isInvalid() || Body.isInvalid()) |
| 1374 | return StmtError(); |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 1375 | |
Douglas Gregor | 4a8dfb5 | 2011-10-12 16:37:45 +0000 | [diff] [blame] | 1376 | return Actions.ActOnDoStmt(DoLoc, Body.get(), WhileLoc, T.getOpenLocation(), |
| 1377 | Cond.get(), T.getCloseLocation()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1378 | } |
| 1379 | |
| 1380 | /// ParseForStatement |
| 1381 | /// for-statement: [C99 6.8.5.3] |
| 1382 | /// 'for' '(' expr[opt] ';' expr[opt] ';' expr[opt] ')' statement |
| 1383 | /// 'for' '(' declaration expr[opt] ';' expr[opt] ')' statement |
Argyrios Kyrtzidis | 71b914b | 2008-09-09 20:38:47 +0000 | [diff] [blame] | 1384 | /// [C++] 'for' '(' for-init-statement condition[opt] ';' expression[opt] ')' |
| 1385 | /// [C++] statement |
Richard Smith | ad762fc | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 1386 | /// [C++0x] 'for' '(' for-range-declaration : for-range-initializer ) statement |
Fariborz Jahanian | 3ba5a0f | 2008-01-03 17:55:25 +0000 | [diff] [blame] | 1387 | /// [OBJC2] 'for' '(' declaration 'in' expr ')' statement |
| 1388 | /// [OBJC2] 'for' '(' expr 'in' expr ')' statement |
Argyrios Kyrtzidis | 71b914b | 2008-09-09 20:38:47 +0000 | [diff] [blame] | 1389 | /// |
| 1390 | /// [C++] for-init-statement: |
| 1391 | /// [C++] expression-statement |
| 1392 | /// [C++] simple-declaration |
| 1393 | /// |
Richard Smith | ad762fc | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 1394 | /// [C++0x] for-range-declaration: |
| 1395 | /// [C++0x] attribute-specifier-seq[opt] type-specifier-seq declarator |
| 1396 | /// [C++0x] for-range-initializer: |
| 1397 | /// [C++0x] expression |
| 1398 | /// [C++0x] braced-init-list [TODO] |
Richard Smith | 534986f | 2012-04-14 00:33:13 +0000 | [diff] [blame] | 1399 | StmtResult Parser::ParseForStatement(SourceLocation *TrailingElseLoc) { |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 1400 | assert(Tok.is(tok::kw_for) && "Not a for stmt!"); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1401 | SourceLocation ForLoc = ConsumeToken(); // eat the 'for'. |
Sebastian Redl | 9a92034 | 2008-12-11 19:48:14 +0000 | [diff] [blame] | 1402 | |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 1403 | if (Tok.isNot(tok::l_paren)) { |
Chris Lattner | 1ab3b96 | 2008-11-18 07:48:38 +0000 | [diff] [blame] | 1404 | Diag(Tok, diag::err_expected_lparen_after) << "for"; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1405 | SkipUntil(tok::semi); |
Sebastian Redl | 9a92034 | 2008-12-11 19:48:14 +0000 | [diff] [blame] | 1406 | return StmtError(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1407 | } |
Sebastian Redl | 9a92034 | 2008-12-11 19:48:14 +0000 | [diff] [blame] | 1408 | |
Chad Rosier | b660446 | 2012-07-10 21:35:27 +0000 | [diff] [blame] | 1409 | bool C99orCXXorObjC = getLangOpts().C99 || getLangOpts().CPlusPlus || |
| 1410 | getLangOpts().ObjC1; |
Argyrios Kyrtzidis | 488d37e | 2008-09-11 03:06:46 +0000 | [diff] [blame] | 1411 | |
Chris Lattner | 2215325 | 2007-08-26 23:08:06 +0000 | [diff] [blame] | 1412 | // C99 6.8.5p5 - In C99, the for statement is a block. This is not |
| 1413 | // the case for C90. Start the loop scope. |
Argyrios Kyrtzidis | 488d37e | 2008-09-11 03:06:46 +0000 | [diff] [blame] | 1414 | // |
| 1415 | // C++ 6.4p3: |
| 1416 | // A name introduced by a declaration in a condition is in scope from its |
| 1417 | // point of declaration until the end of the substatements controlled by the |
| 1418 | // condition. |
Argyrios Kyrtzidis | 14d08c0 | 2008-09-11 23:08:39 +0000 | [diff] [blame] | 1419 | // C++ 3.3.2p4: |
| 1420 | // Names declared in the for-init-statement, and in the condition of if, |
| 1421 | // while, for, and switch statements are local to the if, while, for, or |
| 1422 | // switch statement (including the controlled statement). |
Argyrios Kyrtzidis | 488d37e | 2008-09-11 03:06:46 +0000 | [diff] [blame] | 1423 | // C++ 6.5.3p1: |
| 1424 | // Names declared in the for-init-statement are in the same declarative-region |
| 1425 | // as those declared in the condition. |
| 1426 | // |
Douglas Gregor | 8935b8b | 2008-12-10 06:34:36 +0000 | [diff] [blame] | 1427 | unsigned ScopeFlags; |
Chris Lattner | 4d00f2a | 2009-04-22 00:54:41 +0000 | [diff] [blame] | 1428 | if (C99orCXXorObjC) |
Douglas Gregor | 8935b8b | 2008-12-10 06:34:36 +0000 | [diff] [blame] | 1429 | ScopeFlags = Scope::BreakScope | Scope::ContinueScope | |
| 1430 | Scope::DeclScope | Scope::ControlScope; |
Chris Lattner | 2215325 | 2007-08-26 23:08:06 +0000 | [diff] [blame] | 1431 | else |
Douglas Gregor | 8935b8b | 2008-12-10 06:34:36 +0000 | [diff] [blame] | 1432 | ScopeFlags = Scope::BreakScope | Scope::ContinueScope; |
| 1433 | |
| 1434 | ParseScope ForScope(this, ScopeFlags); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1435 | |
Douglas Gregor | 4a8dfb5 | 2011-10-12 16:37:45 +0000 | [diff] [blame] | 1436 | BalancedDelimiterTracker T(*this, tok::l_paren); |
| 1437 | T.consumeOpen(); |
| 1438 | |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 1439 | ExprResult Value; |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 1440 | |
Richard Smith | ad762fc | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 1441 | bool ForEach = false, ForRange = false; |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 1442 | StmtResult FirstPart; |
Douglas Gregor | eecf38f | 2010-05-06 21:39:56 +0000 | [diff] [blame] | 1443 | bool SecondPartIsInvalid = false; |
Douglas Gregor | 586596f | 2010-05-06 17:25:47 +0000 | [diff] [blame] | 1444 | FullExprArg SecondPart(Actions); |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 1445 | ExprResult Collection; |
Richard Smith | ad762fc | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 1446 | ForRangeInit ForRangeInit; |
Douglas Gregor | 586596f | 2010-05-06 17:25:47 +0000 | [diff] [blame] | 1447 | FullExprArg ThirdPart(Actions); |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 1448 | Decl *SecondVar = 0; |
NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 1449 | |
Douglas Gregor | 791215b | 2009-09-21 20:51:25 +0000 | [diff] [blame] | 1450 | if (Tok.is(tok::code_completion)) { |
NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 1451 | Actions.CodeCompleteOrdinaryName(getCurScope(), |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 1452 | C99orCXXorObjC? Sema::PCC_ForInit |
| 1453 | : Sema::PCC_Expression); |
Argyrios Kyrtzidis | 7d10087 | 2011-09-04 03:32:15 +0000 | [diff] [blame] | 1454 | cutOffParsing(); |
| 1455 | return StmtError(); |
Douglas Gregor | 791215b | 2009-09-21 20:51:25 +0000 | [diff] [blame] | 1456 | } |
NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 1457 | |
Sean Hunt | 2edf0a2 | 2012-06-23 05:07:58 +0000 | [diff] [blame] | 1458 | ParsedAttributesWithRange attrs(AttrFactory); |
Richard Smith | 4e24f0f | 2013-01-02 12:01:23 +0000 | [diff] [blame] | 1459 | MaybeParseCXX11Attributes(attrs); |
Sean Hunt | 2edf0a2 | 2012-06-23 05:07:58 +0000 | [diff] [blame] | 1460 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1461 | // Parse the first part of the for specifier. |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 1462 | if (Tok.is(tok::semi)) { // for (; |
Sean Hunt | 2edf0a2 | 2012-06-23 05:07:58 +0000 | [diff] [blame] | 1463 | ProhibitAttributes(attrs); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1464 | // no first part, eat the ';'. |
| 1465 | ConsumeToken(); |
Eli Friedman | 9490ab4 | 2011-12-20 01:50:37 +0000 | [diff] [blame] | 1466 | } else if (isForInitDeclaration()) { // for (int X = 4; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1467 | // Parse declaration, which eats the ';'. |
Chris Lattner | 4d00f2a | 2009-04-22 00:54:41 +0000 | [diff] [blame] | 1468 | if (!C99orCXXorObjC) // Use of C99-style for loops in C90 mode? |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1469 | Diag(Tok, diag::ext_c99_variable_decl_in_for_loop); |
Sebastian Redl | 9a92034 | 2008-12-11 19:48:14 +0000 | [diff] [blame] | 1470 | |
Richard Smith | ad762fc | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 1471 | // In C++0x, "for (T NS:a" might not be a typo for :: |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1472 | bool MightBeForRangeStmt = getLangOpts().CPlusPlus; |
Richard Smith | ad762fc | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 1473 | ColonProtectionRAIIObject ColonProtection(*this, MightBeForRangeStmt); |
| 1474 | |
Chris Lattner | 97144fc | 2009-04-02 04:16:50 +0000 | [diff] [blame] | 1475 | SourceLocation DeclStart = Tok.getLocation(), DeclEnd; |
Benjamin Kramer | 4e28d9e | 2012-08-23 22:51:59 +0000 | [diff] [blame] | 1476 | StmtVector Stmts; |
NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 1477 | DeclGroupPtrTy DG = ParseSimpleDeclaration(Stmts, Declarator::ForContext, |
Richard Smith | ad762fc | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 1478 | DeclEnd, attrs, false, |
| 1479 | MightBeForRangeStmt ? |
| 1480 | &ForRangeInit : 0); |
Chris Lattner | cd14775 | 2009-03-29 17:27:48 +0000 | [diff] [blame] | 1481 | FirstPart = Actions.ActOnDeclStmt(DG, DeclStart, Tok.getLocation()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1482 | |
Richard Smith | ad762fc | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 1483 | if (ForRangeInit.ParsedForRangeDecl()) { |
Richard Smith | 80ad52f | 2013-01-02 11:42:31 +0000 | [diff] [blame] | 1484 | Diag(ForRangeInit.ColonLoc, getLangOpts().CPlusPlus11 ? |
Richard Smith | 7fe6208 | 2011-10-15 05:09:34 +0000 | [diff] [blame] | 1485 | diag::warn_cxx98_compat_for_range : diag::ext_for_range); |
Richard Smith | 8f4fb19 | 2011-09-04 19:54:14 +0000 | [diff] [blame] | 1486 | |
Richard Smith | ad762fc | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 1487 | ForRange = true; |
| 1488 | } else if (Tok.is(tok::semi)) { // for (int x = 4; |
Chris Lattner | cd14775 | 2009-03-29 17:27:48 +0000 | [diff] [blame] | 1489 | ConsumeToken(); |
| 1490 | } else if ((ForEach = isTokIdentifier_in())) { |
Fariborz Jahanian | a7cf23a | 2009-11-19 22:12:37 +0000 | [diff] [blame] | 1491 | Actions.ActOnForEachDeclStmt(DG); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1492 | // ObjC: for (id x in expr) |
Fariborz Jahanian | 3ba5a0f | 2008-01-03 17:55:25 +0000 | [diff] [blame] | 1493 | ConsumeToken(); // consume 'in' |
NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 1494 | |
Douglas Gregor | fb62941 | 2010-08-23 21:17:50 +0000 | [diff] [blame] | 1495 | if (Tok.is(tok::code_completion)) { |
| 1496 | Actions.CodeCompleteObjCForCollection(getCurScope(), DG); |
Argyrios Kyrtzidis | 7d10087 | 2011-09-04 03:32:15 +0000 | [diff] [blame] | 1497 | cutOffParsing(); |
| 1498 | return StmtError(); |
Douglas Gregor | fb62941 | 2010-08-23 21:17:50 +0000 | [diff] [blame] | 1499 | } |
Douglas Gregor | 586596f | 2010-05-06 17:25:47 +0000 | [diff] [blame] | 1500 | Collection = ParseExpression(); |
Chris Lattner | cd14775 | 2009-03-29 17:27:48 +0000 | [diff] [blame] | 1501 | } else { |
| 1502 | Diag(Tok, diag::err_expected_semi_for); |
Fariborz Jahanian | 3ba5a0f | 2008-01-03 17:55:25 +0000 | [diff] [blame] | 1503 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1504 | } else { |
Sean Hunt | 2edf0a2 | 2012-06-23 05:07:58 +0000 | [diff] [blame] | 1505 | ProhibitAttributes(attrs); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1506 | Value = ParseExpression(); |
| 1507 | |
John McCall | f6a1648 | 2010-12-04 03:47:34 +0000 | [diff] [blame] | 1508 | ForEach = isTokIdentifier_in(); |
| 1509 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1510 | // Turn the expression into a stmt. |
John McCall | f6a1648 | 2010-12-04 03:47:34 +0000 | [diff] [blame] | 1511 | if (!Value.isInvalid()) { |
| 1512 | if (ForEach) |
| 1513 | FirstPart = Actions.ActOnForEachLValueExpr(Value.get()); |
| 1514 | else |
Richard Smith | 4195637 | 2013-01-14 22:39:08 +0000 | [diff] [blame] | 1515 | FirstPart = Actions.ActOnExprStmt(Value); |
John McCall | f6a1648 | 2010-12-04 03:47:34 +0000 | [diff] [blame] | 1516 | } |
Sebastian Redl | effa8d1 | 2008-12-10 00:02:53 +0000 | [diff] [blame] | 1517 | |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 1518 | if (Tok.is(tok::semi)) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1519 | ConsumeToken(); |
John McCall | f6a1648 | 2010-12-04 03:47:34 +0000 | [diff] [blame] | 1520 | } else if (ForEach) { |
Fariborz Jahanian | 3ba5a0f | 2008-01-03 17:55:25 +0000 | [diff] [blame] | 1521 | ConsumeToken(); // consume 'in' |
NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 1522 | |
Douglas Gregor | fb62941 | 2010-08-23 21:17:50 +0000 | [diff] [blame] | 1523 | if (Tok.is(tok::code_completion)) { |
| 1524 | Actions.CodeCompleteObjCForCollection(getCurScope(), DeclGroupPtrTy()); |
Argyrios Kyrtzidis | 7d10087 | 2011-09-04 03:32:15 +0000 | [diff] [blame] | 1525 | cutOffParsing(); |
| 1526 | return StmtError(); |
Douglas Gregor | fb62941 | 2010-08-23 21:17:50 +0000 | [diff] [blame] | 1527 | } |
Douglas Gregor | 586596f | 2010-05-06 17:25:47 +0000 | [diff] [blame] | 1528 | Collection = ParseExpression(); |
Richard Smith | 80ad52f | 2013-01-02 11:42:31 +0000 | [diff] [blame] | 1529 | } else if (getLangOpts().CPlusPlus11 && Tok.is(tok::colon) && FirstPart.get()) { |
Richard Smith | a44854a | 2011-12-20 22:56:20 +0000 | [diff] [blame] | 1530 | // User tried to write the reasonable, but ill-formed, for-range-statement |
| 1531 | // for (expr : expr) { ... } |
| 1532 | Diag(Tok, diag::err_for_range_expected_decl) |
| 1533 | << FirstPart.get()->getSourceRange(); |
Alexey Bataev | 8fe2475 | 2013-11-18 08:17:37 +0000 | [diff] [blame^] | 1534 | SkipUntil(tok::r_paren, StopBeforeMatch); |
Richard Smith | a44854a | 2011-12-20 22:56:20 +0000 | [diff] [blame] | 1535 | SecondPartIsInvalid = true; |
Chris Lattner | 682bf92 | 2009-03-29 16:50:03 +0000 | [diff] [blame] | 1536 | } else { |
Douglas Gregor | b72c778 | 2011-02-17 03:38:46 +0000 | [diff] [blame] | 1537 | if (!Value.isInvalid()) { |
| 1538 | Diag(Tok, diag::err_expected_semi_for); |
| 1539 | } else { |
| 1540 | // Skip until semicolon or rparen, don't consume it. |
Alexey Bataev | 8fe2475 | 2013-11-18 08:17:37 +0000 | [diff] [blame^] | 1541 | SkipUntil(tok::r_paren, StopAtSemi | StopBeforeMatch); |
Douglas Gregor | b72c778 | 2011-02-17 03:38:46 +0000 | [diff] [blame] | 1542 | if (Tok.is(tok::semi)) |
| 1543 | ConsumeToken(); |
| 1544 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1545 | } |
| 1546 | } |
Richard Smith | ad762fc | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 1547 | if (!ForEach && !ForRange) { |
John McCall | 9ae2f07 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 1548 | assert(!SecondPart.get() && "Shouldn't have a second expression yet."); |
Fariborz Jahanian | 3ba5a0f | 2008-01-03 17:55:25 +0000 | [diff] [blame] | 1549 | // Parse the second part of the for specifier. |
| 1550 | if (Tok.is(tok::semi)) { // for (...;; |
| 1551 | // no second part. |
Douglas Gregor | b72c778 | 2011-02-17 03:38:46 +0000 | [diff] [blame] | 1552 | } else if (Tok.is(tok::r_paren)) { |
| 1553 | // missing both semicolons. |
Fariborz Jahanian | 3ba5a0f | 2008-01-03 17:55:25 +0000 | [diff] [blame] | 1554 | } else { |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 1555 | ExprResult Second; |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1556 | if (getLangOpts().CPlusPlus) |
Douglas Gregor | 586596f | 2010-05-06 17:25:47 +0000 | [diff] [blame] | 1557 | ParseCXXCondition(Second, SecondVar, ForLoc, true); |
| 1558 | else { |
| 1559 | Second = ParseExpression(); |
| 1560 | if (!Second.isInvalid()) |
NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 1561 | Second = Actions.ActOnBooleanCondition(getCurScope(), ForLoc, |
John McCall | 9ae2f07 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 1562 | Second.get()); |
Douglas Gregor | 586596f | 2010-05-06 17:25:47 +0000 | [diff] [blame] | 1563 | } |
Douglas Gregor | eecf38f | 2010-05-06 21:39:56 +0000 | [diff] [blame] | 1564 | SecondPartIsInvalid = Second.isInvalid(); |
David Blaikie | def0762 | 2012-05-16 04:20:04 +0000 | [diff] [blame] | 1565 | SecondPart = Actions.MakeFullExpr(Second.get(), ForLoc); |
Fariborz Jahanian | 3ba5a0f | 2008-01-03 17:55:25 +0000 | [diff] [blame] | 1566 | } |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 1567 | |
Douglas Gregor | b72c778 | 2011-02-17 03:38:46 +0000 | [diff] [blame] | 1568 | if (Tok.isNot(tok::semi)) { |
| 1569 | if (!SecondPartIsInvalid || SecondVar) |
| 1570 | Diag(Tok, diag::err_expected_semi_for); |
| 1571 | else |
| 1572 | // Skip until semicolon or rparen, don't consume it. |
Alexey Bataev | 8fe2475 | 2013-11-18 08:17:37 +0000 | [diff] [blame^] | 1573 | SkipUntil(tok::r_paren, StopAtSemi | StopBeforeMatch); |
Douglas Gregor | b72c778 | 2011-02-17 03:38:46 +0000 | [diff] [blame] | 1574 | } |
| 1575 | |
Fariborz Jahanian | 3ba5a0f | 2008-01-03 17:55:25 +0000 | [diff] [blame] | 1576 | if (Tok.is(tok::semi)) { |
| 1577 | ConsumeToken(); |
Fariborz Jahanian | 3ba5a0f | 2008-01-03 17:55:25 +0000 | [diff] [blame] | 1578 | } |
Sebastian Redl | 9a92034 | 2008-12-11 19:48:14 +0000 | [diff] [blame] | 1579 | |
Fariborz Jahanian | 3ba5a0f | 2008-01-03 17:55:25 +0000 | [diff] [blame] | 1580 | // Parse the third part of the for specifier. |
Douglas Gregor | 586596f | 2010-05-06 17:25:47 +0000 | [diff] [blame] | 1581 | if (Tok.isNot(tok::r_paren)) { // for (...;...;) |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 1582 | ExprResult Third = ParseExpression(); |
Richard Smith | 4195637 | 2013-01-14 22:39:08 +0000 | [diff] [blame] | 1583 | // FIXME: The C++11 standard doesn't actually say that this is a |
| 1584 | // discarded-value expression, but it clearly should be. |
| 1585 | ThirdPart = Actions.MakeFullDiscardedValueExpr(Third.take()); |
Douglas Gregor | 586596f | 2010-05-06 17:25:47 +0000 | [diff] [blame] | 1586 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1587 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1588 | // Match the ')'. |
Douglas Gregor | 4a8dfb5 | 2011-10-12 16:37:45 +0000 | [diff] [blame] | 1589 | T.consumeClose(); |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 1590 | |
Richard Smith | ad762fc | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 1591 | // We need to perform most of the semantic analysis for a C++0x for-range |
| 1592 | // statememt before parsing the body, in order to be able to deduce the type |
| 1593 | // of an auto-typed loop variable. |
| 1594 | StmtResult ForRangeStmt; |
Fariborz Jahanian | a1eec4b | 2012-07-03 22:00:52 +0000 | [diff] [blame] | 1595 | StmtResult ForEachStmt; |
Chad Rosier | b660446 | 2012-07-10 21:35:27 +0000 | [diff] [blame] | 1596 | |
John McCall | 990567c | 2011-07-27 01:07:15 +0000 | [diff] [blame] | 1597 | if (ForRange) { |
Sam Panzer | bc20bbb | 2012-08-16 21:47:25 +0000 | [diff] [blame] | 1598 | ForRangeStmt = Actions.ActOnCXXForRangeStmt(ForLoc, FirstPart.take(), |
Richard Smith | ad762fc | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 1599 | ForRangeInit.ColonLoc, |
| 1600 | ForRangeInit.RangeExpr.get(), |
Richard Smith | 8b533d9 | 2012-09-20 21:52:32 +0000 | [diff] [blame] | 1601 | T.getCloseLocation(), |
| 1602 | Sema::BFRK_Build); |
Richard Smith | ad762fc | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 1603 | |
John McCall | 990567c | 2011-07-27 01:07:15 +0000 | [diff] [blame] | 1604 | |
| 1605 | // Similarly, we need to do the semantic analysis for a for-range |
| 1606 | // statement immediately in order to close over temporaries correctly. |
| 1607 | } else if (ForEach) { |
Sam Panzer | bc20bbb | 2012-08-16 21:47:25 +0000 | [diff] [blame] | 1608 | ForEachStmt = Actions.ActOnObjCForCollectionStmt(ForLoc, |
Fariborz Jahanian | a1eec4b | 2012-07-03 22:00:52 +0000 | [diff] [blame] | 1609 | FirstPart.take(), |
Chad Rosier | b660446 | 2012-07-10 21:35:27 +0000 | [diff] [blame] | 1610 | Collection.take(), |
Fariborz Jahanian | a1eec4b | 2012-07-03 22:00:52 +0000 | [diff] [blame] | 1611 | T.getCloseLocation()); |
John McCall | 990567c | 2011-07-27 01:07:15 +0000 | [diff] [blame] | 1612 | } |
| 1613 | |
Chris Lattner | 0ecea03 | 2007-08-22 05:28:50 +0000 | [diff] [blame] | 1614 | // C99 6.8.5p5 - In C99, the body of the if statement is a scope, even if |
Chris Lattner | 3848440 | 2007-08-22 05:33:11 +0000 | [diff] [blame] | 1615 | // there is no compound stmt. C90 does not have this clause. We only do this |
| 1616 | // if the body isn't a compound statement to avoid push/pop in common cases. |
Argyrios Kyrtzidis | 488d37e | 2008-09-11 03:06:46 +0000 | [diff] [blame] | 1617 | // |
| 1618 | // C++ 6.5p2: |
| 1619 | // The substatement in an iteration-statement implicitly defines a local scope |
| 1620 | // which is entered and exited each time through the loop. |
| 1621 | // |
| 1622 | // See comments in ParseIfStatement for why we create a scope for |
| 1623 | // for-init-statement/condition and a new scope for substatement in C++. |
| 1624 | // |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1625 | ParseScope InnerScope(this, Scope::DeclScope, |
Chris Lattner | 4d00f2a | 2009-04-22 00:54:41 +0000 | [diff] [blame] | 1626 | C99orCXXorObjC && Tok.isNot(tok::l_brace)); |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 1627 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1628 | // Read the body statement. |
Nico Weber | 5cb94a7 | 2011-12-22 23:26:17 +0000 | [diff] [blame] | 1629 | StmtResult Body(ParseStatement(TrailingElseLoc)); |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 1630 | |
Chris Lattner | 0ecea03 | 2007-08-22 05:28:50 +0000 | [diff] [blame] | 1631 | // Pop the body scope if needed. |
Douglas Gregor | 8935b8b | 2008-12-10 06:34:36 +0000 | [diff] [blame] | 1632 | InnerScope.Exit(); |
Chris Lattner | 0ecea03 | 2007-08-22 05:28:50 +0000 | [diff] [blame] | 1633 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1634 | // Leave the for-scope. |
Douglas Gregor | 8935b8b | 2008-12-10 06:34:36 +0000 | [diff] [blame] | 1635 | ForScope.Exit(); |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 1636 | |
| 1637 | if (Body.isInvalid()) |
Sebastian Redl | 9a92034 | 2008-12-11 19:48:14 +0000 | [diff] [blame] | 1638 | return StmtError(); |
Sebastian Redl | effa8d1 | 2008-12-10 00:02:53 +0000 | [diff] [blame] | 1639 | |
Richard Smith | ad762fc | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 1640 | if (ForEach) |
Fariborz Jahanian | a1eec4b | 2012-07-03 22:00:52 +0000 | [diff] [blame] | 1641 | return Actions.FinishObjCForCollectionStmt(ForEachStmt.take(), |
| 1642 | Body.take()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1643 | |
Richard Smith | ad762fc | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 1644 | if (ForRange) |
| 1645 | return Actions.FinishCXXForRangeStmt(ForRangeStmt.take(), Body.take()); |
| 1646 | |
Douglas Gregor | 4a8dfb5 | 2011-10-12 16:37:45 +0000 | [diff] [blame] | 1647 | return Actions.ActOnForStmt(ForLoc, T.getOpenLocation(), FirstPart.take(), |
| 1648 | SecondPart, SecondVar, ThirdPart, |
| 1649 | T.getCloseLocation(), Body.take()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1650 | } |
| 1651 | |
| 1652 | /// ParseGotoStatement |
| 1653 | /// jump-statement: |
| 1654 | /// 'goto' identifier ';' |
| 1655 | /// [GNU] 'goto' '*' expression ';' |
| 1656 | /// |
| 1657 | /// Note: this lets the caller parse the end ';'. |
| 1658 | /// |
Richard Smith | 534986f | 2012-04-14 00:33:13 +0000 | [diff] [blame] | 1659 | StmtResult Parser::ParseGotoStatement() { |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 1660 | assert(Tok.is(tok::kw_goto) && "Not a goto stmt!"); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1661 | SourceLocation GotoLoc = ConsumeToken(); // eat the 'goto'. |
Sebastian Redl | 9a92034 | 2008-12-11 19:48:14 +0000 | [diff] [blame] | 1662 | |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 1663 | StmtResult Res; |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 1664 | if (Tok.is(tok::identifier)) { |
Chris Lattner | 337e550 | 2011-02-18 01:27:55 +0000 | [diff] [blame] | 1665 | LabelDecl *LD = Actions.LookupOrCreateLabel(Tok.getIdentifierInfo(), |
| 1666 | Tok.getLocation()); |
| 1667 | Res = Actions.ActOnGotoStmt(GotoLoc, Tok.getLocation(), LD); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1668 | ConsumeToken(); |
Eli Friedman | f01fdff | 2009-04-28 00:51:18 +0000 | [diff] [blame] | 1669 | } else if (Tok.is(tok::star)) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1670 | // GNU indirect goto extension. |
| 1671 | Diag(Tok, diag::ext_gnu_indirect_goto); |
| 1672 | SourceLocation StarLoc = ConsumeToken(); |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 1673 | ExprResult R(ParseExpression()); |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 1674 | if (R.isInvalid()) { // Skip to the semicolon, but don't consume it. |
Alexey Bataev | 8fe2475 | 2013-11-18 08:17:37 +0000 | [diff] [blame^] | 1675 | SkipUntil(tok::semi, StopBeforeMatch); |
Sebastian Redl | 9a92034 | 2008-12-11 19:48:14 +0000 | [diff] [blame] | 1676 | return StmtError(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1677 | } |
John McCall | 9ae2f07 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 1678 | Res = Actions.ActOnIndirectGotoStmt(GotoLoc, StarLoc, R.take()); |
Chris Lattner | 95cfb85 | 2007-07-22 04:13:33 +0000 | [diff] [blame] | 1679 | } else { |
| 1680 | Diag(Tok, diag::err_expected_ident); |
Sebastian Redl | 9a92034 | 2008-12-11 19:48:14 +0000 | [diff] [blame] | 1681 | return StmtError(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1682 | } |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 1683 | |
Benjamin Kramer | 3fe198b | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 1684 | return Res; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1685 | } |
| 1686 | |
| 1687 | /// ParseContinueStatement |
| 1688 | /// jump-statement: |
| 1689 | /// 'continue' ';' |
| 1690 | /// |
| 1691 | /// Note: this lets the caller parse the end ';'. |
| 1692 | /// |
Richard Smith | 534986f | 2012-04-14 00:33:13 +0000 | [diff] [blame] | 1693 | StmtResult Parser::ParseContinueStatement() { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1694 | SourceLocation ContinueLoc = ConsumeToken(); // eat the 'continue'. |
Douglas Gregor | 23c94db | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 1695 | return Actions.ActOnContinueStmt(ContinueLoc, getCurScope()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1696 | } |
| 1697 | |
| 1698 | /// ParseBreakStatement |
| 1699 | /// jump-statement: |
| 1700 | /// 'break' ';' |
| 1701 | /// |
| 1702 | /// Note: this lets the caller parse the end ';'. |
| 1703 | /// |
Richard Smith | 534986f | 2012-04-14 00:33:13 +0000 | [diff] [blame] | 1704 | StmtResult Parser::ParseBreakStatement() { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1705 | SourceLocation BreakLoc = ConsumeToken(); // eat the 'break'. |
Douglas Gregor | 23c94db | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 1706 | return Actions.ActOnBreakStmt(BreakLoc, getCurScope()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1707 | } |
| 1708 | |
| 1709 | /// ParseReturnStatement |
| 1710 | /// jump-statement: |
| 1711 | /// 'return' expression[opt] ';' |
Richard Smith | 534986f | 2012-04-14 00:33:13 +0000 | [diff] [blame] | 1712 | StmtResult Parser::ParseReturnStatement() { |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 1713 | assert(Tok.is(tok::kw_return) && "Not a return stmt!"); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1714 | SourceLocation ReturnLoc = ConsumeToken(); // eat the 'return'. |
Sebastian Redl | 9a92034 | 2008-12-11 19:48:14 +0000 | [diff] [blame] | 1715 | |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 1716 | ExprResult R; |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 1717 | if (Tok.isNot(tok::semi)) { |
Douglas Gregor | 5ac3bdb | 2010-05-30 01:49:25 +0000 | [diff] [blame] | 1718 | if (Tok.is(tok::code_completion)) { |
Douglas Gregor | 23c94db | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 1719 | Actions.CodeCompleteReturn(getCurScope()); |
Argyrios Kyrtzidis | 7d10087 | 2011-09-04 03:32:15 +0000 | [diff] [blame] | 1720 | cutOffParsing(); |
Douglas Gregor | 5ac3bdb | 2010-05-30 01:49:25 +0000 | [diff] [blame] | 1721 | return StmtError(); |
| 1722 | } |
NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 1723 | |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1724 | if (Tok.is(tok::l_brace) && getLangOpts().CPlusPlus) { |
Douglas Gregor | 6f4596c | 2011-03-11 23:10:44 +0000 | [diff] [blame] | 1725 | R = ParseInitializer(); |
Richard Smith | 7fe6208 | 2011-10-15 05:09:34 +0000 | [diff] [blame] | 1726 | if (R.isUsable()) |
Richard Smith | 80ad52f | 2013-01-02 11:42:31 +0000 | [diff] [blame] | 1727 | Diag(R.get()->getLocStart(), getLangOpts().CPlusPlus11 ? |
Richard Smith | 7fe6208 | 2011-10-15 05:09:34 +0000 | [diff] [blame] | 1728 | diag::warn_cxx98_compat_generalized_initializer_lists : |
| 1729 | diag::ext_generalized_initializer_lists) |
Douglas Gregor | 6f4596c | 2011-03-11 23:10:44 +0000 | [diff] [blame] | 1730 | << R.get()->getSourceRange(); |
| 1731 | } else |
| 1732 | R = ParseExpression(); |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 1733 | if (R.isInvalid()) { // Skip to the semicolon, but don't consume it. |
Alexey Bataev | 8fe2475 | 2013-11-18 08:17:37 +0000 | [diff] [blame^] | 1734 | SkipUntil(tok::semi, StopBeforeMatch); |
Sebastian Redl | 9a92034 | 2008-12-11 19:48:14 +0000 | [diff] [blame] | 1735 | return StmtError(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1736 | } |
| 1737 | } |
John McCall | 9ae2f07 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 1738 | return Actions.ActOnReturnStmt(ReturnLoc, R.take()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1739 | } |
| 1740 | |
John McCall | aeeacf7 | 2013-05-03 00:10:13 +0000 | [diff] [blame] | 1741 | namespace { |
| 1742 | class ClangAsmParserCallback : public llvm::MCAsmParserSemaCallback { |
| 1743 | Parser &TheParser; |
| 1744 | SourceLocation AsmLoc; |
| 1745 | StringRef AsmString; |
| 1746 | |
| 1747 | /// The tokens we streamed into AsmString and handed off to MC. |
| 1748 | ArrayRef<Token> AsmToks; |
| 1749 | |
| 1750 | /// The offset of each token in AsmToks within AsmString. |
| 1751 | ArrayRef<unsigned> AsmTokOffsets; |
| 1752 | |
| 1753 | public: |
| 1754 | ClangAsmParserCallback(Parser &P, SourceLocation Loc, |
| 1755 | StringRef AsmString, |
| 1756 | ArrayRef<Token> Toks, |
| 1757 | ArrayRef<unsigned> Offsets) |
| 1758 | : TheParser(P), AsmLoc(Loc), AsmString(AsmString), |
| 1759 | AsmToks(Toks), AsmTokOffsets(Offsets) { |
| 1760 | assert(AsmToks.size() == AsmTokOffsets.size()); |
| 1761 | } |
| 1762 | |
| 1763 | void *LookupInlineAsmIdentifier(StringRef &LineBuf, |
| 1764 | InlineAsmIdentifierInfo &Info, |
| 1765 | bool IsUnevaluatedContext) { |
| 1766 | // Collect the desired tokens. |
| 1767 | SmallVector<Token, 16> LineToks; |
| 1768 | const Token *FirstOrigToken = 0; |
| 1769 | findTokensForString(LineBuf, LineToks, FirstOrigToken); |
| 1770 | |
| 1771 | unsigned NumConsumedToks; |
| 1772 | ExprResult Result = |
| 1773 | TheParser.ParseMSAsmIdentifier(LineToks, NumConsumedToks, &Info, |
| 1774 | IsUnevaluatedContext); |
| 1775 | |
| 1776 | // If we consumed the entire line, tell MC that. |
| 1777 | // Also do this if we consumed nothing as a way of reporting failure. |
| 1778 | if (NumConsumedToks == 0 || NumConsumedToks == LineToks.size()) { |
| 1779 | // By not modifying LineBuf, we're implicitly consuming it all. |
| 1780 | |
| 1781 | // Otherwise, consume up to the original tokens. |
| 1782 | } else { |
| 1783 | assert(FirstOrigToken && "not using original tokens?"); |
| 1784 | |
| 1785 | // Since we're using original tokens, apply that offset. |
| 1786 | assert(FirstOrigToken[NumConsumedToks].getLocation() |
| 1787 | == LineToks[NumConsumedToks].getLocation()); |
| 1788 | unsigned FirstIndex = FirstOrigToken - AsmToks.begin(); |
| 1789 | unsigned LastIndex = FirstIndex + NumConsumedToks - 1; |
| 1790 | |
| 1791 | // The total length we've consumed is the relative offset |
| 1792 | // of the last token we consumed plus its length. |
| 1793 | unsigned TotalOffset = (AsmTokOffsets[LastIndex] |
| 1794 | + AsmToks[LastIndex].getLength() |
| 1795 | - AsmTokOffsets[FirstIndex]); |
| 1796 | LineBuf = LineBuf.substr(0, TotalOffset); |
| 1797 | } |
| 1798 | |
| 1799 | // Initialize the "decl" with the lookup result. |
| 1800 | Info.OpDecl = static_cast<void*>(Result.take()); |
| 1801 | return Info.OpDecl; |
| 1802 | } |
| 1803 | |
| 1804 | bool LookupInlineAsmField(StringRef Base, StringRef Member, |
| 1805 | unsigned &Offset) { |
| 1806 | return TheParser.getActions().LookupInlineAsmField(Base, Member, |
| 1807 | Offset, AsmLoc); |
| 1808 | } |
| 1809 | |
| 1810 | static void DiagHandlerCallback(const llvm::SMDiagnostic &D, |
| 1811 | void *Context) { |
| 1812 | ((ClangAsmParserCallback*) Context)->handleDiagnostic(D); |
| 1813 | } |
| 1814 | |
| 1815 | private: |
| 1816 | /// Collect the appropriate tokens for the given string. |
| 1817 | void findTokensForString(StringRef Str, SmallVectorImpl<Token> &TempToks, |
| 1818 | const Token *&FirstOrigToken) const { |
| 1819 | // For now, assert that the string we're working with is a substring |
| 1820 | // of what we gave to MC. This lets us use the original tokens. |
| 1821 | assert(!std::less<const char*>()(Str.begin(), AsmString.begin()) && |
| 1822 | !std::less<const char*>()(AsmString.end(), Str.end())); |
| 1823 | |
| 1824 | // Try to find a token whose offset matches the first token. |
| 1825 | unsigned FirstCharOffset = Str.begin() - AsmString.begin(); |
| 1826 | const unsigned *FirstTokOffset |
| 1827 | = std::lower_bound(AsmTokOffsets.begin(), AsmTokOffsets.end(), |
| 1828 | FirstCharOffset); |
| 1829 | |
| 1830 | // For now, assert that the start of the string exactly |
| 1831 | // corresponds to the start of a token. |
| 1832 | assert(*FirstTokOffset == FirstCharOffset); |
| 1833 | |
| 1834 | // Use all the original tokens for this line. (We assume the |
| 1835 | // end of the line corresponds cleanly to a token break.) |
| 1836 | unsigned FirstTokIndex = FirstTokOffset - AsmTokOffsets.begin(); |
| 1837 | FirstOrigToken = &AsmToks[FirstTokIndex]; |
| 1838 | unsigned LastCharOffset = Str.end() - AsmString.begin(); |
| 1839 | for (unsigned i = FirstTokIndex, e = AsmTokOffsets.size(); i != e; ++i) { |
| 1840 | if (AsmTokOffsets[i] >= LastCharOffset) break; |
| 1841 | TempToks.push_back(AsmToks[i]); |
| 1842 | } |
| 1843 | } |
| 1844 | |
| 1845 | void handleDiagnostic(const llvm::SMDiagnostic &D) { |
| 1846 | // Compute an offset into the inline asm buffer. |
| 1847 | // FIXME: This isn't right if .macro is involved (but hopefully, no |
| 1848 | // real-world code does that). |
| 1849 | const llvm::SourceMgr &LSM = *D.getSourceMgr(); |
| 1850 | const llvm::MemoryBuffer *LBuf = |
| 1851 | LSM.getMemoryBuffer(LSM.FindBufferContainingLoc(D.getLoc())); |
| 1852 | unsigned Offset = D.getLoc().getPointer() - LBuf->getBufferStart(); |
| 1853 | |
| 1854 | // Figure out which token that offset points into. |
| 1855 | const unsigned *TokOffsetPtr = |
| 1856 | std::lower_bound(AsmTokOffsets.begin(), AsmTokOffsets.end(), Offset); |
| 1857 | unsigned TokIndex = TokOffsetPtr - AsmTokOffsets.begin(); |
| 1858 | unsigned TokOffset = *TokOffsetPtr; |
| 1859 | |
| 1860 | // If we come up with an answer which seems sane, use it; otherwise, |
| 1861 | // just point at the __asm keyword. |
| 1862 | // FIXME: Assert the answer is sane once we handle .macro correctly. |
| 1863 | SourceLocation Loc = AsmLoc; |
| 1864 | if (TokIndex < AsmToks.size()) { |
| 1865 | const Token &Tok = AsmToks[TokIndex]; |
| 1866 | Loc = Tok.getLocation(); |
| 1867 | Loc = Loc.getLocWithOffset(Offset - TokOffset); |
| 1868 | } |
| 1869 | TheParser.Diag(Loc, diag::err_inline_ms_asm_parsing) |
| 1870 | << D.getMessage(); |
| 1871 | } |
| 1872 | }; |
| 1873 | } |
| 1874 | |
| 1875 | /// Parse an identifier in an MS-style inline assembly block. |
| 1876 | /// |
| 1877 | /// \param CastInfo - a void* so that we don't have to teach Parser.h |
| 1878 | /// about the actual type. |
| 1879 | ExprResult Parser::ParseMSAsmIdentifier(llvm::SmallVectorImpl<Token> &LineToks, |
| 1880 | unsigned &NumLineToksConsumed, |
| 1881 | void *CastInfo, |
| 1882 | bool IsUnevaluatedContext) { |
| 1883 | llvm::InlineAsmIdentifierInfo &Info = |
| 1884 | *(llvm::InlineAsmIdentifierInfo *) CastInfo; |
| 1885 | |
| 1886 | // Push a fake token on the end so that we don't overrun the token |
| 1887 | // stream. We use ';' because it expression-parsing should never |
| 1888 | // overrun it. |
| 1889 | const tok::TokenKind EndOfStream = tok::semi; |
| 1890 | Token EndOfStreamTok; |
| 1891 | EndOfStreamTok.startToken(); |
| 1892 | EndOfStreamTok.setKind(EndOfStream); |
| 1893 | LineToks.push_back(EndOfStreamTok); |
| 1894 | |
| 1895 | // Also copy the current token over. |
| 1896 | LineToks.push_back(Tok); |
| 1897 | |
| 1898 | PP.EnterTokenStream(LineToks.begin(), |
| 1899 | LineToks.size(), |
| 1900 | /*disable macros*/ true, |
| 1901 | /*owns tokens*/ false); |
| 1902 | |
| 1903 | // Clear the current token and advance to the first token in LineToks. |
| 1904 | ConsumeAnyToken(); |
| 1905 | |
| 1906 | // Parse an optional scope-specifier if we're in C++. |
| 1907 | CXXScopeSpec SS; |
| 1908 | if (getLangOpts().CPlusPlus) { |
| 1909 | ParseOptionalCXXScopeSpecifier(SS, ParsedType(), /*EnteringContext=*/false); |
| 1910 | } |
| 1911 | |
| 1912 | // Require an identifier here. |
| 1913 | SourceLocation TemplateKWLoc; |
| 1914 | UnqualifiedId Id; |
| 1915 | bool Invalid = ParseUnqualifiedId(SS, |
| 1916 | /*EnteringContext=*/false, |
| 1917 | /*AllowDestructorName=*/false, |
| 1918 | /*AllowConstructorName=*/false, |
| 1919 | /*ObjectType=*/ ParsedType(), |
| 1920 | TemplateKWLoc, |
| 1921 | Id); |
| 1922 | |
| 1923 | // If we've run into the poison token we inserted before, or there |
| 1924 | // was a parsing error, then claim the entire line. |
| 1925 | if (Invalid || Tok.is(EndOfStream)) { |
| 1926 | NumLineToksConsumed = LineToks.size() - 2; |
| 1927 | |
| 1928 | // Otherwise, claim up to the start of the next token. |
| 1929 | } else { |
| 1930 | // Figure out how many tokens we are into LineToks. |
| 1931 | unsigned LineIndex = 0; |
| 1932 | while (LineToks[LineIndex].getLocation() != Tok.getLocation()) { |
| 1933 | LineIndex++; |
| 1934 | assert(LineIndex < LineToks.size() - 2); // we added two extra tokens |
| 1935 | } |
| 1936 | |
| 1937 | NumLineToksConsumed = LineIndex; |
| 1938 | } |
| 1939 | |
| 1940 | // Finally, restore the old parsing state by consuming all the |
| 1941 | // tokens we staged before, implicitly killing off the |
| 1942 | // token-lexer we pushed. |
| 1943 | for (unsigned n = LineToks.size() - 2 - NumLineToksConsumed; n != 0; --n) { |
| 1944 | ConsumeAnyToken(); |
| 1945 | } |
| 1946 | ConsumeToken(EndOfStream); |
| 1947 | |
| 1948 | // Leave LineToks in its original state. |
| 1949 | LineToks.pop_back(); |
| 1950 | LineToks.pop_back(); |
| 1951 | |
| 1952 | // Perform the lookup. |
| 1953 | return Actions.LookupInlineAsmIdentifier(SS, TemplateKWLoc, Id, Info, |
| 1954 | IsUnevaluatedContext); |
| 1955 | } |
| 1956 | |
| 1957 | /// Turn a sequence of our tokens back into a string that we can hand |
| 1958 | /// to the MC asm parser. |
| 1959 | static bool buildMSAsmString(Preprocessor &PP, |
| 1960 | SourceLocation AsmLoc, |
| 1961 | ArrayRef<Token> AsmToks, |
| 1962 | SmallVectorImpl<unsigned> &TokOffsets, |
| 1963 | SmallString<512> &Asm) { |
| 1964 | assert (!AsmToks.empty() && "Didn't expect an empty AsmToks!"); |
| 1965 | |
| 1966 | // Is this the start of a new assembly statement? |
| 1967 | bool isNewStatement = true; |
| 1968 | |
| 1969 | for (unsigned i = 0, e = AsmToks.size(); i < e; ++i) { |
| 1970 | const Token &Tok = AsmToks[i]; |
| 1971 | |
| 1972 | // Start each new statement with a newline and a tab. |
| 1973 | if (!isNewStatement && |
| 1974 | (Tok.is(tok::kw_asm) || Tok.isAtStartOfLine())) { |
| 1975 | Asm += "\n\t"; |
| 1976 | isNewStatement = true; |
| 1977 | } |
| 1978 | |
| 1979 | // Preserve the existence of leading whitespace except at the |
| 1980 | // start of a statement. |
| 1981 | if (!isNewStatement && Tok.hasLeadingSpace()) |
| 1982 | Asm += ' '; |
| 1983 | |
| 1984 | // Remember the offset of this token. |
| 1985 | TokOffsets.push_back(Asm.size()); |
| 1986 | |
| 1987 | // Don't actually write '__asm' into the assembly stream. |
| 1988 | if (Tok.is(tok::kw_asm)) { |
| 1989 | // Complain about __asm at the end of the stream. |
| 1990 | if (i + 1 == e) { |
| 1991 | PP.Diag(AsmLoc, diag::err_asm_empty); |
| 1992 | return true; |
| 1993 | } |
| 1994 | |
| 1995 | continue; |
| 1996 | } |
| 1997 | |
| 1998 | // Append the spelling of the token. |
| 1999 | SmallString<32> SpellingBuffer; |
| 2000 | bool SpellingInvalid = false; |
| 2001 | Asm += PP.getSpelling(Tok, SpellingBuffer, &SpellingInvalid); |
| 2002 | assert(!SpellingInvalid && "spelling was invalid after correct parse?"); |
| 2003 | |
| 2004 | // We are no longer at the start of a statement. |
| 2005 | isNewStatement = false; |
| 2006 | } |
| 2007 | |
| 2008 | // Ensure that the buffer is null-terminated. |
| 2009 | Asm.push_back('\0'); |
| 2010 | Asm.pop_back(); |
| 2011 | |
| 2012 | assert(TokOffsets.size() == AsmToks.size()); |
| 2013 | return false; |
| 2014 | } |
| 2015 | |
Eli Friedman | 3fedbe1 | 2011-09-30 01:13:51 +0000 | [diff] [blame] | 2016 | /// ParseMicrosoftAsmStatement. When -fms-extensions/-fasm-blocks is enabled, |
| 2017 | /// this routine is called to collect the tokens for an MS asm statement. |
Chad Rosier | 8cd64b4 | 2012-06-11 20:47:18 +0000 | [diff] [blame] | 2018 | /// |
| 2019 | /// [MS] ms-asm-statement: |
| 2020 | /// ms-asm-block |
| 2021 | /// ms-asm-block ms-asm-statement |
| 2022 | /// |
| 2023 | /// [MS] ms-asm-block: |
| 2024 | /// '__asm' ms-asm-line '\n' |
| 2025 | /// '__asm' '{' ms-asm-instruction-block[opt] '}' ';'[opt] |
| 2026 | /// |
| 2027 | /// [MS] ms-asm-instruction-block |
| 2028 | /// ms-asm-line |
| 2029 | /// ms-asm-line '\n' ms-asm-instruction-block |
| 2030 | /// |
Eli Friedman | 3fedbe1 | 2011-09-30 01:13:51 +0000 | [diff] [blame] | 2031 | StmtResult Parser::ParseMicrosoftAsmStatement(SourceLocation AsmLoc) { |
| 2032 | SourceManager &SrcMgr = PP.getSourceManager(); |
| 2033 | SourceLocation EndLoc = AsmLoc; |
Chad Rosier | 8cd64b4 | 2012-06-11 20:47:18 +0000 | [diff] [blame] | 2034 | SmallVector<Token, 4> AsmToks; |
Chad Rosier | 21ef711 | 2012-08-14 19:22:06 +0000 | [diff] [blame] | 2035 | |
| 2036 | bool InBraces = false; |
| 2037 | unsigned short savedBraceCount = 0; |
| 2038 | bool InAsmComment = false; |
| 2039 | FileID FID; |
| 2040 | unsigned LineNo = 0; |
| 2041 | unsigned NumTokensRead = 0; |
| 2042 | SourceLocation LBraceLoc; |
| 2043 | |
| 2044 | if (Tok.is(tok::l_brace)) { |
| 2045 | // Braced inline asm: consume the opening brace. |
| 2046 | InBraces = true; |
| 2047 | savedBraceCount = BraceCount; |
| 2048 | EndLoc = LBraceLoc = ConsumeBrace(); |
| 2049 | ++NumTokensRead; |
| 2050 | } else { |
| 2051 | // Single-line inline asm; compute which line it is on. |
| 2052 | std::pair<FileID, unsigned> ExpAsmLoc = |
| 2053 | SrcMgr.getDecomposedExpansionLoc(EndLoc); |
| 2054 | FID = ExpAsmLoc.first; |
| 2055 | LineNo = SrcMgr.getLineNumber(FID, ExpAsmLoc.second); |
| 2056 | } |
| 2057 | |
| 2058 | SourceLocation TokLoc = Tok.getLocation(); |
Eli Friedman | 3fedbe1 | 2011-09-30 01:13:51 +0000 | [diff] [blame] | 2059 | do { |
Chad Rosier | 21ef711 | 2012-08-14 19:22:06 +0000 | [diff] [blame] | 2060 | // If we hit EOF, we're done, period. |
| 2061 | if (Tok.is(tok::eof)) |
Eli Friedman | 3fedbe1 | 2011-09-30 01:13:51 +0000 | [diff] [blame] | 2062 | break; |
Chad Rosier | 21ef711 | 2012-08-14 19:22:06 +0000 | [diff] [blame] | 2063 | |
Chad Rosier | 21ef711 | 2012-08-14 19:22:06 +0000 | [diff] [blame] | 2064 | if (!InAsmComment && Tok.is(tok::semi)) { |
| 2065 | // A semicolon in an asm is the start of a comment. |
| 2066 | InAsmComment = true; |
| 2067 | if (InBraces) { |
| 2068 | // Compute which line the comment is on. |
| 2069 | std::pair<FileID, unsigned> ExpSemiLoc = |
| 2070 | SrcMgr.getDecomposedExpansionLoc(TokLoc); |
| 2071 | FID = ExpSemiLoc.first; |
| 2072 | LineNo = SrcMgr.getLineNumber(FID, ExpSemiLoc.second); |
| 2073 | } |
| 2074 | } else if (!InBraces || InAsmComment) { |
| 2075 | // If end-of-line is significant, check whether this token is on a |
| 2076 | // new line. |
| 2077 | std::pair<FileID, unsigned> ExpLoc = |
| 2078 | SrcMgr.getDecomposedExpansionLoc(TokLoc); |
| 2079 | if (ExpLoc.first != FID || |
| 2080 | SrcMgr.getLineNumber(ExpLoc.first, ExpLoc.second) != LineNo) { |
| 2081 | // If this is a single-line __asm, we're done. |
| 2082 | if (!InBraces) |
| 2083 | break; |
| 2084 | // We're no longer in a comment. |
| 2085 | InAsmComment = false; |
| 2086 | } else if (!InAsmComment && Tok.is(tok::r_brace)) { |
| 2087 | // Single-line asm always ends when a closing brace is seen. |
| 2088 | // FIXME: This is compatible with Apple gcc's -fasm-blocks; what |
| 2089 | // does MSVC do here? |
| 2090 | break; |
| 2091 | } |
| 2092 | } |
| 2093 | if (!InAsmComment && InBraces && Tok.is(tok::r_brace) && |
| 2094 | BraceCount == (savedBraceCount + 1)) { |
| 2095 | // Consume the closing brace, and finish |
| 2096 | EndLoc = ConsumeBrace(); |
| 2097 | break; |
| 2098 | } |
| 2099 | |
| 2100 | // Consume the next token; make sure we don't modify the brace count etc. |
| 2101 | // if we are in a comment. |
| 2102 | EndLoc = TokLoc; |
| 2103 | if (InAsmComment) |
| 2104 | PP.Lex(Tok); |
| 2105 | else { |
| 2106 | AsmToks.push_back(Tok); |
| 2107 | ConsumeAnyToken(); |
| 2108 | } |
| 2109 | TokLoc = Tok.getLocation(); |
| 2110 | ++NumTokensRead; |
Eli Friedman | 3fedbe1 | 2011-09-30 01:13:51 +0000 | [diff] [blame] | 2111 | } while (1); |
Chad Rosier | 8cd64b4 | 2012-06-11 20:47:18 +0000 | [diff] [blame] | 2112 | |
Chad Rosier | 21ef711 | 2012-08-14 19:22:06 +0000 | [diff] [blame] | 2113 | if (InBraces && BraceCount != savedBraceCount) { |
| 2114 | // __asm without closing brace (this can happen at EOF). |
| 2115 | Diag(Tok, diag::err_expected_rbrace); |
| 2116 | Diag(LBraceLoc, diag::note_matching) << "{"; |
| 2117 | return StmtError(); |
| 2118 | } else if (NumTokensRead == 0) { |
| 2119 | // Empty __asm. |
| 2120 | Diag(Tok, diag::err_expected_lbrace); |
| 2121 | return StmtError(); |
| 2122 | } |
| 2123 | |
John McCall | aeeacf7 | 2013-05-03 00:10:13 +0000 | [diff] [blame] | 2124 | // Okay, prepare to use MC to parse the assembly. |
| 2125 | SmallVector<StringRef, 4> ConstraintRefs; |
| 2126 | SmallVector<Expr*, 4> Exprs; |
| 2127 | SmallVector<StringRef, 4> ClobberRefs; |
| 2128 | |
| 2129 | // We need an actual supported target. |
| 2130 | llvm::Triple TheTriple = Actions.Context.getTargetInfo().getTriple(); |
| 2131 | llvm::Triple::ArchType ArchTy = TheTriple.getArch(); |
Alp Toker | c94b5ae | 2013-10-30 15:07:10 +0000 | [diff] [blame] | 2132 | const std::string &TT = TheTriple.getTriple(); |
| 2133 | const llvm::Target *TheTarget = 0; |
John McCall | aeeacf7 | 2013-05-03 00:10:13 +0000 | [diff] [blame] | 2134 | bool UnsupportedArch = (ArchTy != llvm::Triple::x86 && |
| 2135 | ArchTy != llvm::Triple::x86_64); |
Alp Toker | c94b5ae | 2013-10-30 15:07:10 +0000 | [diff] [blame] | 2136 | if (UnsupportedArch) { |
John McCall | aeeacf7 | 2013-05-03 00:10:13 +0000 | [diff] [blame] | 2137 | Diag(AsmLoc, diag::err_msasm_unsupported_arch) << TheTriple.getArchName(); |
Alp Toker | c94b5ae | 2013-10-30 15:07:10 +0000 | [diff] [blame] | 2138 | } else { |
| 2139 | std::string Error; |
| 2140 | TheTarget = llvm::TargetRegistry::lookupTarget(TT, Error); |
| 2141 | if (!TheTarget) |
| 2142 | Diag(AsmLoc, diag::err_msasm_unable_to_create_target) << Error; |
| 2143 | } |
Alp Toker | 2597315 | 2013-10-30 14:29:28 +0000 | [diff] [blame] | 2144 | |
John McCall | aeeacf7 | 2013-05-03 00:10:13 +0000 | [diff] [blame] | 2145 | // If we don't support assembly, or the assembly is empty, we don't |
| 2146 | // need to instantiate the AsmParser, etc. |
Alp Toker | c94b5ae | 2013-10-30 15:07:10 +0000 | [diff] [blame] | 2147 | if (!TheTarget || AsmToks.empty()) { |
John McCall | aeeacf7 | 2013-05-03 00:10:13 +0000 | [diff] [blame] | 2148 | return Actions.ActOnMSAsmStmt(AsmLoc, LBraceLoc, AsmToks, StringRef(), |
| 2149 | /*NumOutputs*/ 0, /*NumInputs*/ 0, |
| 2150 | ConstraintRefs, ClobberRefs, Exprs, EndLoc); |
| 2151 | } |
| 2152 | |
| 2153 | // Expand the tokens into a string buffer. |
| 2154 | SmallString<512> AsmString; |
| 2155 | SmallVector<unsigned, 8> TokOffsets; |
| 2156 | if (buildMSAsmString(PP, AsmLoc, AsmToks, TokOffsets, AsmString)) |
| 2157 | return StmtError(); |
| 2158 | |
John McCall | aeeacf7 | 2013-05-03 00:10:13 +0000 | [diff] [blame] | 2159 | OwningPtr<llvm::MCRegisterInfo> MRI(TheTarget->createMCRegInfo(TT)); |
Rafael Espindola | 1fcf31e | 2013-05-13 01:24:18 +0000 | [diff] [blame] | 2160 | OwningPtr<llvm::MCAsmInfo> MAI(TheTarget->createMCAsmInfo(*MRI, TT)); |
Joey Gouly | 12981a7 | 2013-09-12 10:59:24 +0000 | [diff] [blame] | 2161 | // Get the instruction descriptor. |
| 2162 | const llvm::MCInstrInfo *MII = TheTarget->createMCInstrInfo(); |
John McCall | aeeacf7 | 2013-05-03 00:10:13 +0000 | [diff] [blame] | 2163 | OwningPtr<llvm::MCObjectFileInfo> MOFI(new llvm::MCObjectFileInfo()); |
| 2164 | OwningPtr<llvm::MCSubtargetInfo> |
| 2165 | STI(TheTarget->createMCSubtargetInfo(TT, "", "")); |
| 2166 | |
| 2167 | llvm::SourceMgr TempSrcMgr; |
Bill Wendling | 4b7bae3 | 2013-06-18 07:22:05 +0000 | [diff] [blame] | 2168 | llvm::MCContext Ctx(MAI.get(), MRI.get(), MOFI.get(), &TempSrcMgr); |
John McCall | aeeacf7 | 2013-05-03 00:10:13 +0000 | [diff] [blame] | 2169 | llvm::MemoryBuffer *Buffer = |
| 2170 | llvm::MemoryBuffer::getMemBuffer(AsmString, "<MS inline asm>"); |
| 2171 | |
| 2172 | // Tell SrcMgr about this buffer, which is what the parser will pick up. |
| 2173 | TempSrcMgr.AddNewSourceBuffer(Buffer, llvm::SMLoc()); |
| 2174 | |
| 2175 | OwningPtr<llvm::MCStreamer> Str(createNullStreamer(Ctx)); |
| 2176 | OwningPtr<llvm::MCAsmParser> |
| 2177 | Parser(createMCAsmParser(TempSrcMgr, Ctx, *Str.get(), *MAI)); |
| 2178 | OwningPtr<llvm::MCTargetAsmParser> |
Joey Gouly | 12981a7 | 2013-09-12 10:59:24 +0000 | [diff] [blame] | 2179 | TargetParser(TheTarget->createMCAsmParser(*STI, *Parser, *MII)); |
John McCall | aeeacf7 | 2013-05-03 00:10:13 +0000 | [diff] [blame] | 2180 | |
John McCall | aeeacf7 | 2013-05-03 00:10:13 +0000 | [diff] [blame] | 2181 | llvm::MCInstPrinter *IP = |
| 2182 | TheTarget->createMCInstPrinter(1, *MAI, *MII, *MRI, *STI); |
| 2183 | |
| 2184 | // Change to the Intel dialect. |
| 2185 | Parser->setAssemblerDialect(1); |
| 2186 | Parser->setTargetParser(*TargetParser.get()); |
| 2187 | Parser->setParsingInlineAsm(true); |
| 2188 | TargetParser->setParsingInlineAsm(true); |
| 2189 | |
| 2190 | ClangAsmParserCallback Callback(*this, AsmLoc, AsmString, |
| 2191 | AsmToks, TokOffsets); |
| 2192 | TargetParser->setSemaCallback(&Callback); |
| 2193 | TempSrcMgr.setDiagHandler(ClangAsmParserCallback::DiagHandlerCallback, |
| 2194 | &Callback); |
| 2195 | |
| 2196 | unsigned NumOutputs; |
| 2197 | unsigned NumInputs; |
| 2198 | std::string AsmStringIR; |
| 2199 | SmallVector<std::pair<void *, bool>, 4> OpExprs; |
| 2200 | SmallVector<std::string, 4> Constraints; |
| 2201 | SmallVector<std::string, 4> Clobbers; |
| 2202 | if (Parser->parseMSInlineAsm(AsmLoc.getPtrEncoding(), AsmStringIR, |
| 2203 | NumOutputs, NumInputs, OpExprs, Constraints, |
| 2204 | Clobbers, MII, IP, Callback)) |
| 2205 | return StmtError(); |
| 2206 | |
| 2207 | // Build the vector of clobber StringRefs. |
| 2208 | unsigned NumClobbers = Clobbers.size(); |
| 2209 | ClobberRefs.resize(NumClobbers); |
| 2210 | for (unsigned i = 0; i != NumClobbers; ++i) |
| 2211 | ClobberRefs[i] = StringRef(Clobbers[i]); |
| 2212 | |
| 2213 | // Recast the void pointers and build the vector of constraint StringRefs. |
| 2214 | unsigned NumExprs = NumOutputs + NumInputs; |
| 2215 | ConstraintRefs.resize(NumExprs); |
| 2216 | Exprs.resize(NumExprs); |
| 2217 | for (unsigned i = 0, e = NumExprs; i != e; ++i) { |
| 2218 | Expr *OpExpr = static_cast<Expr *>(OpExprs[i].first); |
| 2219 | if (!OpExpr) |
| 2220 | return StmtError(); |
| 2221 | |
| 2222 | // Need address of variable. |
| 2223 | if (OpExprs[i].second) |
| 2224 | OpExpr = Actions.BuildUnaryOp(getCurScope(), AsmLoc, UO_AddrOf, OpExpr) |
| 2225 | .take(); |
| 2226 | |
| 2227 | ConstraintRefs[i] = StringRef(Constraints[i]); |
| 2228 | Exprs[i] = OpExpr; |
| 2229 | } |
| 2230 | |
Chad Rosier | 8f726de | 2012-08-06 20:03:45 +0000 | [diff] [blame] | 2231 | // FIXME: We should be passing source locations for better diagnostics. |
John McCall | aeeacf7 | 2013-05-03 00:10:13 +0000 | [diff] [blame] | 2232 | return Actions.ActOnMSAsmStmt(AsmLoc, LBraceLoc, AsmToks, AsmStringIR, |
| 2233 | NumOutputs, NumInputs, |
| 2234 | ConstraintRefs, ClobberRefs, Exprs, EndLoc); |
Steve Naroff | d62701b | 2008-02-07 03:50:06 +0000 | [diff] [blame] | 2235 | } |
| 2236 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2237 | /// ParseAsmStatement - Parse a GNU extended asm statement. |
Steve Naroff | 5f8aa69 | 2008-02-11 23:15:56 +0000 | [diff] [blame] | 2238 | /// asm-statement: |
| 2239 | /// gnu-asm-statement |
| 2240 | /// ms-asm-statement |
| 2241 | /// |
| 2242 | /// [GNU] gnu-asm-statement: |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2243 | /// 'asm' type-qualifier[opt] '(' asm-argument ')' ';' |
| 2244 | /// |
| 2245 | /// [GNU] asm-argument: |
| 2246 | /// asm-string-literal |
| 2247 | /// asm-string-literal ':' asm-operands[opt] |
| 2248 | /// asm-string-literal ':' asm-operands[opt] ':' asm-operands[opt] |
| 2249 | /// asm-string-literal ':' asm-operands[opt] ':' asm-operands[opt] |
| 2250 | /// ':' asm-clobbers |
| 2251 | /// |
| 2252 | /// [GNU] asm-clobbers: |
| 2253 | /// asm-string-literal |
| 2254 | /// asm-clobbers ',' asm-string-literal |
| 2255 | /// |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 2256 | StmtResult Parser::ParseAsmStatement(bool &msAsm) { |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 2257 | assert(Tok.is(tok::kw_asm) && "Not an asm stmt"); |
Chris Lattner | fe79595 | 2007-10-29 04:04:16 +0000 | [diff] [blame] | 2258 | SourceLocation AsmLoc = ConsumeToken(); |
Sebastian Redl | 9a92034 | 2008-12-11 19:48:14 +0000 | [diff] [blame] | 2259 | |
Chad Rosier | 15490fd | 2012-12-05 21:08:21 +0000 | [diff] [blame] | 2260 | if (getLangOpts().AsmBlocks && Tok.isNot(tok::l_paren) && |
Chad Rosier | b660446 | 2012-07-10 21:35:27 +0000 | [diff] [blame] | 2261 | !isTypeQualifier()) { |
Steve Naroff | d62701b | 2008-02-07 03:50:06 +0000 | [diff] [blame] | 2262 | msAsm = true; |
Eli Friedman | 3fedbe1 | 2011-09-30 01:13:51 +0000 | [diff] [blame] | 2263 | return ParseMicrosoftAsmStatement(AsmLoc); |
Steve Naroff | d62701b | 2008-02-07 03:50:06 +0000 | [diff] [blame] | 2264 | } |
John McCall | 0b7e678 | 2011-03-24 11:26:52 +0000 | [diff] [blame] | 2265 | DeclSpec DS(AttrFactory); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2266 | SourceLocation Loc = Tok.getLocation(); |
Sean Hunt | bbd37c6 | 2009-11-21 08:43:09 +0000 | [diff] [blame] | 2267 | ParseTypeQualifierListOpt(DS, true, false); |
Sebastian Redl | 9a92034 | 2008-12-11 19:48:14 +0000 | [diff] [blame] | 2268 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2269 | // GNU asms accept, but warn, about type-qualifiers other than volatile. |
| 2270 | if (DS.getTypeQualifiers() & DeclSpec::TQ_const) |
Chris Lattner | 1ab3b96 | 2008-11-18 07:48:38 +0000 | [diff] [blame] | 2271 | Diag(Loc, diag::w_asm_qualifier_ignored) << "const"; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2272 | if (DS.getTypeQualifiers() & DeclSpec::TQ_restrict) |
Chris Lattner | 1ab3b96 | 2008-11-18 07:48:38 +0000 | [diff] [blame] | 2273 | Diag(Loc, diag::w_asm_qualifier_ignored) << "restrict"; |
Richard Smith | 4cf4a5e | 2013-03-28 01:55:44 +0000 | [diff] [blame] | 2274 | // FIXME: Once GCC supports _Atomic, check whether it permits it here. |
| 2275 | if (DS.getTypeQualifiers() & DeclSpec::TQ_atomic) |
| 2276 | Diag(Loc, diag::w_asm_qualifier_ignored) << "_Atomic"; |
Sebastian Redl | 9a92034 | 2008-12-11 19:48:14 +0000 | [diff] [blame] | 2277 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2278 | // Remember if this was a volatile asm. |
Anders Carlsson | 39c47b5 | 2007-11-23 23:12:25 +0000 | [diff] [blame] | 2279 | bool isVolatile = DS.getTypeQualifiers() & DeclSpec::TQ_volatile; |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 2280 | if (Tok.isNot(tok::l_paren)) { |
Chris Lattner | 1ab3b96 | 2008-11-18 07:48:38 +0000 | [diff] [blame] | 2281 | Diag(Tok, diag::err_expected_lparen_after) << "asm"; |
Alexey Bataev | 8fe2475 | 2013-11-18 08:17:37 +0000 | [diff] [blame^] | 2282 | SkipUntil(tok::r_paren, StopAtSemi); |
Sebastian Redl | 9a92034 | 2008-12-11 19:48:14 +0000 | [diff] [blame] | 2283 | return StmtError(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2284 | } |
Douglas Gregor | 4a8dfb5 | 2011-10-12 16:37:45 +0000 | [diff] [blame] | 2285 | BalancedDelimiterTracker T(*this, tok::l_paren); |
| 2286 | T.consumeOpen(); |
Sebastian Redl | 9a92034 | 2008-12-11 19:48:14 +0000 | [diff] [blame] | 2287 | |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 2288 | ExprResult AsmString(ParseAsmStringLiteral()); |
Ted Kremenek | 320fa4b | 2011-12-02 01:30:14 +0000 | [diff] [blame] | 2289 | if (AsmString.isInvalid()) { |
Richard Smith | 99831e4 | 2012-03-06 03:21:47 +0000 | [diff] [blame] | 2290 | // Consume up to and including the closing paren. |
| 2291 | T.skipToEnd(); |
Sebastian Redl | 9a92034 | 2008-12-11 19:48:14 +0000 | [diff] [blame] | 2292 | return StmtError(); |
Ted Kremenek | 320fa4b | 2011-12-02 01:30:14 +0000 | [diff] [blame] | 2293 | } |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 2294 | |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 2295 | SmallVector<IdentifierInfo *, 4> Names; |
Benjamin Kramer | 4e28d9e | 2012-08-23 22:51:59 +0000 | [diff] [blame] | 2296 | ExprVector Constraints; |
| 2297 | ExprVector Exprs; |
| 2298 | ExprVector Clobbers; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2299 | |
Anders Carlsson | dfab34a | 2008-02-05 23:03:50 +0000 | [diff] [blame] | 2300 | if (Tok.is(tok::r_paren)) { |
Chris Lattner | 64cb475 | 2009-12-20 23:00:41 +0000 | [diff] [blame] | 2301 | // We have a simple asm expression like 'asm("foo")'. |
Douglas Gregor | 4a8dfb5 | 2011-10-12 16:37:45 +0000 | [diff] [blame] | 2302 | T.consumeClose(); |
Chad Rosier | df5faf5 | 2012-08-25 00:11:56 +0000 | [diff] [blame] | 2303 | return Actions.ActOnGCCAsmStmt(AsmLoc, /*isSimple*/ true, isVolatile, |
| 2304 | /*NumOutputs*/ 0, /*NumInputs*/ 0, 0, |
| 2305 | Constraints, Exprs, AsmString.take(), |
| 2306 | Clobbers, T.getCloseLocation()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2307 | } |
Sebastian Redl | effa8d1 | 2008-12-10 00:02:53 +0000 | [diff] [blame] | 2308 | |
Chris Lattner | 64cb475 | 2009-12-20 23:00:41 +0000 | [diff] [blame] | 2309 | // Parse Outputs, if present. |
Chris Lattner | 6405646 | 2009-12-20 23:08:04 +0000 | [diff] [blame] | 2310 | bool AteExtraColon = false; |
| 2311 | if (Tok.is(tok::colon) || Tok.is(tok::coloncolon)) { |
| 2312 | // In C++ mode, parse "::" like ": :". |
| 2313 | AteExtraColon = Tok.is(tok::coloncolon); |
Chris Lattner | 64cb475 | 2009-12-20 23:00:41 +0000 | [diff] [blame] | 2314 | ConsumeToken(); |
NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 2315 | |
Chris Lattner | 6405646 | 2009-12-20 23:08:04 +0000 | [diff] [blame] | 2316 | if (!AteExtraColon && |
| 2317 | ParseAsmOperandsOpt(Names, Constraints, Exprs)) |
Chris Lattner | 64cb475 | 2009-12-20 23:00:41 +0000 | [diff] [blame] | 2318 | return StmtError(); |
| 2319 | } |
NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 2320 | |
Chris Lattner | 64cb475 | 2009-12-20 23:00:41 +0000 | [diff] [blame] | 2321 | unsigned NumOutputs = Names.size(); |
| 2322 | |
| 2323 | // Parse Inputs, if present. |
Chris Lattner | 6405646 | 2009-12-20 23:08:04 +0000 | [diff] [blame] | 2324 | if (AteExtraColon || |
| 2325 | Tok.is(tok::colon) || Tok.is(tok::coloncolon)) { |
| 2326 | // In C++ mode, parse "::" like ": :". |
| 2327 | if (AteExtraColon) |
| 2328 | AteExtraColon = false; |
| 2329 | else { |
| 2330 | AteExtraColon = Tok.is(tok::coloncolon); |
| 2331 | ConsumeToken(); |
| 2332 | } |
NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 2333 | |
Chris Lattner | 6405646 | 2009-12-20 23:08:04 +0000 | [diff] [blame] | 2334 | if (!AteExtraColon && |
| 2335 | ParseAsmOperandsOpt(Names, Constraints, Exprs)) |
Chris Lattner | 64cb475 | 2009-12-20 23:00:41 +0000 | [diff] [blame] | 2336 | return StmtError(); |
| 2337 | } |
| 2338 | |
| 2339 | assert(Names.size() == Constraints.size() && |
| 2340 | Constraints.size() == Exprs.size() && |
| 2341 | "Input operand size mismatch!"); |
| 2342 | |
| 2343 | unsigned NumInputs = Names.size() - NumOutputs; |
| 2344 | |
| 2345 | // Parse the clobbers, if present. |
Chris Lattner | 6405646 | 2009-12-20 23:08:04 +0000 | [diff] [blame] | 2346 | if (AteExtraColon || Tok.is(tok::colon)) { |
| 2347 | if (!AteExtraColon) |
| 2348 | ConsumeToken(); |
Chris Lattner | 64cb475 | 2009-12-20 23:00:41 +0000 | [diff] [blame] | 2349 | |
Chandler Carruth | 102e1b6 | 2010-07-22 07:11:21 +0000 | [diff] [blame] | 2350 | // Parse the asm-string list for clobbers if present. |
| 2351 | if (Tok.isNot(tok::r_paren)) { |
| 2352 | while (1) { |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 2353 | ExprResult Clobber(ParseAsmStringLiteral()); |
Chris Lattner | 64cb475 | 2009-12-20 23:00:41 +0000 | [diff] [blame] | 2354 | |
Chandler Carruth | 102e1b6 | 2010-07-22 07:11:21 +0000 | [diff] [blame] | 2355 | if (Clobber.isInvalid()) |
| 2356 | break; |
Chris Lattner | 64cb475 | 2009-12-20 23:00:41 +0000 | [diff] [blame] | 2357 | |
Chandler Carruth | 102e1b6 | 2010-07-22 07:11:21 +0000 | [diff] [blame] | 2358 | Clobbers.push_back(Clobber.release()); |
Chris Lattner | 64cb475 | 2009-12-20 23:00:41 +0000 | [diff] [blame] | 2359 | |
Chandler Carruth | 102e1b6 | 2010-07-22 07:11:21 +0000 | [diff] [blame] | 2360 | if (Tok.isNot(tok::comma)) break; |
| 2361 | ConsumeToken(); |
| 2362 | } |
Chris Lattner | 64cb475 | 2009-12-20 23:00:41 +0000 | [diff] [blame] | 2363 | } |
| 2364 | } |
| 2365 | |
Douglas Gregor | 4a8dfb5 | 2011-10-12 16:37:45 +0000 | [diff] [blame] | 2366 | T.consumeClose(); |
Chad Rosier | df5faf5 | 2012-08-25 00:11:56 +0000 | [diff] [blame] | 2367 | return Actions.ActOnGCCAsmStmt(AsmLoc, false, isVolatile, NumOutputs, |
| 2368 | NumInputs, Names.data(), Constraints, Exprs, |
| 2369 | AsmString.take(), Clobbers, |
| 2370 | T.getCloseLocation()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2371 | } |
| 2372 | |
| 2373 | /// ParseAsmOperands - Parse the asm-operands production as used by |
Chris Lattner | 64cb475 | 2009-12-20 23:00:41 +0000 | [diff] [blame] | 2374 | /// asm-statement, assuming the leading ':' token was eaten. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2375 | /// |
| 2376 | /// [GNU] asm-operands: |
| 2377 | /// asm-operand |
| 2378 | /// asm-operands ',' asm-operand |
| 2379 | /// |
| 2380 | /// [GNU] asm-operand: |
| 2381 | /// asm-string-literal '(' expression ')' |
| 2382 | /// '[' identifier ']' asm-string-literal '(' expression ')' |
| 2383 | /// |
Daniel Dunbar | 5ffe14c | 2009-10-18 20:26:27 +0000 | [diff] [blame] | 2384 | // |
| 2385 | // FIXME: Avoid unnecessary std::string trashing. |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 2386 | bool Parser::ParseAsmOperandsOpt(SmallVectorImpl<IdentifierInfo *> &Names, |
Richard Trieu | f81e5a9 | 2011-09-09 02:00:50 +0000 | [diff] [blame] | 2387 | SmallVectorImpl<Expr *> &Constraints, |
| 2388 | SmallVectorImpl<Expr *> &Exprs) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2389 | // 'asm-operands' isn't present? |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 2390 | if (!isTokenStringLiteral() && Tok.isNot(tok::l_square)) |
Anders Carlsson | 8bd36fc | 2008-02-09 19:57:29 +0000 | [diff] [blame] | 2391 | return false; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2392 | |
| 2393 | while (1) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2394 | // Read the [id] if present. |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 2395 | if (Tok.is(tok::l_square)) { |
Douglas Gregor | 4a8dfb5 | 2011-10-12 16:37:45 +0000 | [diff] [blame] | 2396 | BalancedDelimiterTracker T(*this, tok::l_square); |
| 2397 | T.consumeOpen(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2398 | |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 2399 | if (Tok.isNot(tok::identifier)) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2400 | Diag(Tok, diag::err_expected_ident); |
Alexey Bataev | 8fe2475 | 2013-11-18 08:17:37 +0000 | [diff] [blame^] | 2401 | SkipUntil(tok::r_paren, StopAtSemi); |
Anders Carlsson | 8bd36fc | 2008-02-09 19:57:29 +0000 | [diff] [blame] | 2402 | return true; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2403 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2404 | |
Anders Carlsson | b235fc2 | 2007-11-22 01:36:19 +0000 | [diff] [blame] | 2405 | IdentifierInfo *II = Tok.getIdentifierInfo(); |
Chris Lattner | 69efba7 | 2007-10-29 04:06:22 +0000 | [diff] [blame] | 2406 | ConsumeToken(); |
Anders Carlsson | b235fc2 | 2007-11-22 01:36:19 +0000 | [diff] [blame] | 2407 | |
Anders Carlsson | ff93dbd | 2010-01-30 22:25:16 +0000 | [diff] [blame] | 2408 | Names.push_back(II); |
Douglas Gregor | 4a8dfb5 | 2011-10-12 16:37:45 +0000 | [diff] [blame] | 2409 | T.consumeClose(); |
Anders Carlsson | b235fc2 | 2007-11-22 01:36:19 +0000 | [diff] [blame] | 2410 | } else |
Anders Carlsson | ff93dbd | 2010-01-30 22:25:16 +0000 | [diff] [blame] | 2411 | Names.push_back(0); |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 2412 | |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 2413 | ExprResult Constraint(ParseAsmStringLiteral()); |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 2414 | if (Constraint.isInvalid()) { |
Alexey Bataev | 8fe2475 | 2013-11-18 08:17:37 +0000 | [diff] [blame^] | 2415 | SkipUntil(tok::r_paren, StopAtSemi); |
Anders Carlsson | 8bd36fc | 2008-02-09 19:57:29 +0000 | [diff] [blame] | 2416 | return true; |
Anders Carlsson | b235fc2 | 2007-11-22 01:36:19 +0000 | [diff] [blame] | 2417 | } |
Sebastian Redl | effa8d1 | 2008-12-10 00:02:53 +0000 | [diff] [blame] | 2418 | Constraints.push_back(Constraint.release()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2419 | |
Chris Lattner | 4e1d99a | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 2420 | if (Tok.isNot(tok::l_paren)) { |
Chris Lattner | 1ab3b96 | 2008-11-18 07:48:38 +0000 | [diff] [blame] | 2421 | Diag(Tok, diag::err_expected_lparen_after) << "asm operand"; |
Alexey Bataev | 8fe2475 | 2013-11-18 08:17:37 +0000 | [diff] [blame^] | 2422 | SkipUntil(tok::r_paren, StopAtSemi); |
Anders Carlsson | 8bd36fc | 2008-02-09 19:57:29 +0000 | [diff] [blame] | 2423 | return true; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2424 | } |
Sebastian Redl | effa8d1 | 2008-12-10 00:02:53 +0000 | [diff] [blame] | 2425 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2426 | // Read the parenthesized expression. |
Douglas Gregor | 4a8dfb5 | 2011-10-12 16:37:45 +0000 | [diff] [blame] | 2427 | BalancedDelimiterTracker T(*this, tok::l_paren); |
| 2428 | T.consumeOpen(); |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 2429 | ExprResult Res(ParseExpression()); |
Douglas Gregor | 4a8dfb5 | 2011-10-12 16:37:45 +0000 | [diff] [blame] | 2430 | T.consumeClose(); |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 2431 | if (Res.isInvalid()) { |
Alexey Bataev | 8fe2475 | 2013-11-18 08:17:37 +0000 | [diff] [blame^] | 2432 | SkipUntil(tok::r_paren, StopAtSemi); |
Anders Carlsson | 8bd36fc | 2008-02-09 19:57:29 +0000 | [diff] [blame] | 2433 | return true; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2434 | } |
Sebastian Redl | effa8d1 | 2008-12-10 00:02:53 +0000 | [diff] [blame] | 2435 | Exprs.push_back(Res.release()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2436 | // Eat the comma and continue parsing if it exists. |
Anders Carlsson | 8bd36fc | 2008-02-09 19:57:29 +0000 | [diff] [blame] | 2437 | if (Tok.isNot(tok::comma)) return false; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2438 | ConsumeToken(); |
| 2439 | } |
| 2440 | } |
Fariborz Jahanian | f9ed315 | 2007-11-08 19:01:26 +0000 | [diff] [blame] | 2441 | |
Douglas Gregor | c9977d0 | 2011-03-16 17:05:57 +0000 | [diff] [blame] | 2442 | Decl *Parser::ParseFunctionStatementBody(Decl *Decl, ParseScope &BodyScope) { |
Chris Lattner | 40e9bc8 | 2009-03-05 00:49:17 +0000 | [diff] [blame] | 2443 | assert(Tok.is(tok::l_brace)); |
| 2444 | SourceLocation LBraceLoc = Tok.getLocation(); |
Sebastian Redl | d3a413d | 2009-04-26 20:35:05 +0000 | [diff] [blame] | 2445 | |
Argyrios Kyrtzidis | 1f12c47 | 2013-02-22 04:11:06 +0000 | [diff] [blame] | 2446 | if (SkipFunctionBodies && (!Decl || Actions.canSkipFunctionBody(Decl)) && |
Richard Smith | 1a5bd5d | 2012-11-19 21:13:18 +0000 | [diff] [blame] | 2447 | trySkippingFunctionBody()) { |
Erik Verbruggen | 6a91d38 | 2012-04-12 10:11:59 +0000 | [diff] [blame] | 2448 | BodyScope.Exit(); |
Argyrios Kyrtzidis | 35f3f36 | 2012-12-06 18:59:10 +0000 | [diff] [blame] | 2449 | return Actions.ActOnSkippedFunctionBody(Decl); |
Douglas Gregor | c9977d0 | 2011-03-16 17:05:57 +0000 | [diff] [blame] | 2450 | } |
NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 2451 | |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 2452 | PrettyDeclStackTraceEntry CrashInfo(Actions, Decl, LBraceLoc, |
| 2453 | "parsing function body"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2454 | |
Fariborz Jahanian | f9ed315 | 2007-11-08 19:01:26 +0000 | [diff] [blame] | 2455 | // Do not enter a scope for the brace, as the arguments are in the same scope |
| 2456 | // (the function body) as the body itself. Instead, just read the statement |
| 2457 | // list and put it into a CompoundStmt for safe keeping. |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 2458 | StmtResult FnBody(ParseCompoundStatementBody()); |
Sebastian Redl | 61364dd | 2008-12-11 19:30:53 +0000 | [diff] [blame] | 2459 | |
Fariborz Jahanian | f9ed315 | 2007-11-08 19:01:26 +0000 | [diff] [blame] | 2460 | // If the function body could not be parsed, make a bogus compoundstmt. |
Dmitri Gribenko | 625bb56 | 2012-02-14 22:14:32 +0000 | [diff] [blame] | 2461 | if (FnBody.isInvalid()) { |
| 2462 | Sema::CompoundScopeRAII CompoundScope(Actions); |
Robert Wilhelm | c895f4d | 2013-08-19 20:51:20 +0000 | [diff] [blame] | 2463 | FnBody = Actions.ActOnCompoundStmt(LBraceLoc, LBraceLoc, None, false); |
Dmitri Gribenko | 625bb56 | 2012-02-14 22:14:32 +0000 | [diff] [blame] | 2464 | } |
Sebastian Redl | 61364dd | 2008-12-11 19:30:53 +0000 | [diff] [blame] | 2465 | |
Douglas Gregor | c9977d0 | 2011-03-16 17:05:57 +0000 | [diff] [blame] | 2466 | BodyScope.Exit(); |
John McCall | 9ae2f07 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 2467 | return Actions.ActOnFinishFunctionBody(Decl, FnBody.take()); |
Seo Sanghyeon | cd5af4b | 2007-12-01 08:06:07 +0000 | [diff] [blame] | 2468 | } |
Sebastian Redl | a0fd865 | 2008-12-21 16:41:36 +0000 | [diff] [blame] | 2469 | |
Sebastian Redl | d3a413d | 2009-04-26 20:35:05 +0000 | [diff] [blame] | 2470 | /// ParseFunctionTryBlock - Parse a C++ function-try-block. |
| 2471 | /// |
| 2472 | /// function-try-block: |
| 2473 | /// 'try' ctor-initializer[opt] compound-statement handler-seq |
| 2474 | /// |
Douglas Gregor | c9977d0 | 2011-03-16 17:05:57 +0000 | [diff] [blame] | 2475 | Decl *Parser::ParseFunctionTryBlock(Decl *Decl, ParseScope &BodyScope) { |
Sebastian Redl | d3a413d | 2009-04-26 20:35:05 +0000 | [diff] [blame] | 2476 | assert(Tok.is(tok::kw_try) && "Expected 'try'"); |
| 2477 | SourceLocation TryLoc = ConsumeToken(); |
| 2478 | |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 2479 | PrettyDeclStackTraceEntry CrashInfo(Actions, Decl, TryLoc, |
| 2480 | "parsing function try block"); |
Sebastian Redl | d3a413d | 2009-04-26 20:35:05 +0000 | [diff] [blame] | 2481 | |
| 2482 | // Constructor initializer list? |
| 2483 | if (Tok.is(tok::colon)) |
| 2484 | ParseConstructorInitializer(Decl); |
Douglas Gregor | 2eef427 | 2011-09-07 20:36:12 +0000 | [diff] [blame] | 2485 | else |
| 2486 | Actions.ActOnDefaultCtorInitializers(Decl); |
NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 2487 | |
Richard Smith | 1a5bd5d | 2012-11-19 21:13:18 +0000 | [diff] [blame] | 2488 | if (SkipFunctionBodies && Actions.canSkipFunctionBody(Decl) && |
| 2489 | trySkippingFunctionBody()) { |
Erik Verbruggen | 6a91d38 | 2012-04-12 10:11:59 +0000 | [diff] [blame] | 2490 | BodyScope.Exit(); |
Argyrios Kyrtzidis | 35f3f36 | 2012-12-06 18:59:10 +0000 | [diff] [blame] | 2491 | return Actions.ActOnSkippedFunctionBody(Decl); |
Douglas Gregor | c9977d0 | 2011-03-16 17:05:57 +0000 | [diff] [blame] | 2492 | } |
Argyrios Kyrtzidis | 0fe5397 | 2011-01-03 22:33:06 +0000 | [diff] [blame] | 2493 | |
Sebastian Redl | de1b60a | 2009-04-26 21:08:36 +0000 | [diff] [blame] | 2494 | SourceLocation LBraceLoc = Tok.getLocation(); |
David Blaikie | c4027c8 | 2012-11-10 01:04:23 +0000 | [diff] [blame] | 2495 | StmtResult FnBody(ParseCXXTryBlockCommon(TryLoc, /*FnTry*/true)); |
Sebastian Redl | d3a413d | 2009-04-26 20:35:05 +0000 | [diff] [blame] | 2496 | // If we failed to parse the try-catch, we just give the function an empty |
| 2497 | // compound statement as the body. |
Dmitri Gribenko | 625bb56 | 2012-02-14 22:14:32 +0000 | [diff] [blame] | 2498 | if (FnBody.isInvalid()) { |
| 2499 | Sema::CompoundScopeRAII CompoundScope(Actions); |
Robert Wilhelm | c895f4d | 2013-08-19 20:51:20 +0000 | [diff] [blame] | 2500 | FnBody = Actions.ActOnCompoundStmt(LBraceLoc, LBraceLoc, None, false); |
Dmitri Gribenko | 625bb56 | 2012-02-14 22:14:32 +0000 | [diff] [blame] | 2501 | } |
Sebastian Redl | d3a413d | 2009-04-26 20:35:05 +0000 | [diff] [blame] | 2502 | |
Douglas Gregor | c9977d0 | 2011-03-16 17:05:57 +0000 | [diff] [blame] | 2503 | BodyScope.Exit(); |
John McCall | 9ae2f07 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 2504 | return Actions.ActOnFinishFunctionBody(Decl, FnBody.take()); |
Sebastian Redl | d3a413d | 2009-04-26 20:35:05 +0000 | [diff] [blame] | 2505 | } |
| 2506 | |
Erik Verbruggen | 6a91d38 | 2012-04-12 10:11:59 +0000 | [diff] [blame] | 2507 | bool Parser::trySkippingFunctionBody() { |
Argyrios Kyrtzidis | 0fe5397 | 2011-01-03 22:33:06 +0000 | [diff] [blame] | 2508 | assert(Tok.is(tok::l_brace)); |
Erik Verbruggen | 6a91d38 | 2012-04-12 10:11:59 +0000 | [diff] [blame] | 2509 | assert(SkipFunctionBodies && |
| 2510 | "Should only be called when SkipFunctionBodies is enabled"); |
Argyrios Kyrtzidis | 0fe5397 | 2011-01-03 22:33:06 +0000 | [diff] [blame] | 2511 | |
Argyrios Kyrtzidis | 81939a7 | 2012-10-31 17:29:28 +0000 | [diff] [blame] | 2512 | if (!PP.isCodeCompletionEnabled()) { |
| 2513 | ConsumeBrace(); |
Alexey Bataev | 8fe2475 | 2013-11-18 08:17:37 +0000 | [diff] [blame^] | 2514 | SkipUntil(tok::r_brace); |
Argyrios Kyrtzidis | 81939a7 | 2012-10-31 17:29:28 +0000 | [diff] [blame] | 2515 | return true; |
| 2516 | } |
| 2517 | |
Argyrios Kyrtzidis | 0fe5397 | 2011-01-03 22:33:06 +0000 | [diff] [blame] | 2518 | // We're in code-completion mode. Skip parsing for all function bodies unless |
| 2519 | // the body contains the code-completion point. |
| 2520 | TentativeParsingAction PA(*this); |
| 2521 | ConsumeBrace(); |
Alexey Bataev | 8fe2475 | 2013-11-18 08:17:37 +0000 | [diff] [blame^] | 2522 | if (SkipUntil(tok::r_brace, StopAtCodeCompletion)) { |
Argyrios Kyrtzidis | 0fe5397 | 2011-01-03 22:33:06 +0000 | [diff] [blame] | 2523 | PA.Commit(); |
| 2524 | return true; |
| 2525 | } |
| 2526 | |
| 2527 | PA.Revert(); |
| 2528 | return false; |
| 2529 | } |
| 2530 | |
Sebastian Redl | a0fd865 | 2008-12-21 16:41:36 +0000 | [diff] [blame] | 2531 | /// ParseCXXTryBlock - Parse a C++ try-block. |
| 2532 | /// |
| 2533 | /// try-block: |
| 2534 | /// 'try' compound-statement handler-seq |
| 2535 | /// |
Richard Smith | 534986f | 2012-04-14 00:33:13 +0000 | [diff] [blame] | 2536 | StmtResult Parser::ParseCXXTryBlock() { |
Sebastian Redl | a0fd865 | 2008-12-21 16:41:36 +0000 | [diff] [blame] | 2537 | assert(Tok.is(tok::kw_try) && "Expected 'try'"); |
| 2538 | |
| 2539 | SourceLocation TryLoc = ConsumeToken(); |
Sebastian Redl | d3a413d | 2009-04-26 20:35:05 +0000 | [diff] [blame] | 2540 | return ParseCXXTryBlockCommon(TryLoc); |
| 2541 | } |
| 2542 | |
| 2543 | /// ParseCXXTryBlockCommon - Parse the common part of try-block and |
| 2544 | /// function-try-block. |
| 2545 | /// |
| 2546 | /// try-block: |
| 2547 | /// 'try' compound-statement handler-seq |
| 2548 | /// |
| 2549 | /// function-try-block: |
| 2550 | /// 'try' ctor-initializer[opt] compound-statement handler-seq |
| 2551 | /// |
| 2552 | /// handler-seq: |
| 2553 | /// handler handler-seq[opt] |
| 2554 | /// |
John Wiegley | 28bbe4b | 2011-04-28 01:08:34 +0000 | [diff] [blame] | 2555 | /// [Borland] try-block: |
| 2556 | /// 'try' compound-statement seh-except-block |
| 2557 | /// 'try' compound-statment seh-finally-block |
| 2558 | /// |
David Blaikie | c4027c8 | 2012-11-10 01:04:23 +0000 | [diff] [blame] | 2559 | StmtResult Parser::ParseCXXTryBlockCommon(SourceLocation TryLoc, bool FnTry) { |
Sebastian Redl | a0fd865 | 2008-12-21 16:41:36 +0000 | [diff] [blame] | 2560 | if (Tok.isNot(tok::l_brace)) |
| 2561 | return StmtError(Diag(Tok, diag::err_expected_lbrace)); |
Sean Hunt | bbd37c6 | 2009-11-21 08:43:09 +0000 | [diff] [blame] | 2562 | // FIXME: Possible draft standard bug: attribute-specifier should be allowed? |
Richard Smith | 534986f | 2012-04-14 00:33:13 +0000 | [diff] [blame] | 2563 | |
| 2564 | StmtResult TryBlock(ParseCompoundStatement(/*isStmtExpr=*/false, |
David Blaikie | e5afdcf | 2012-11-13 18:51:45 +0000 | [diff] [blame] | 2565 | Scope::DeclScope | Scope::TryScope | |
| 2566 | (FnTry ? Scope::FnTryCatchScope : 0))); |
Sebastian Redl | a0fd865 | 2008-12-21 16:41:36 +0000 | [diff] [blame] | 2567 | if (TryBlock.isInvalid()) |
Benjamin Kramer | 3fe198b | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 2568 | return TryBlock; |
Sebastian Redl | a0fd865 | 2008-12-21 16:41:36 +0000 | [diff] [blame] | 2569 | |
John Wiegley | 28bbe4b | 2011-04-28 01:08:34 +0000 | [diff] [blame] | 2570 | // Borland allows SEH-handlers with 'try' |
Chad Rosier | b660446 | 2012-07-10 21:35:27 +0000 | [diff] [blame] | 2571 | |
Richard Smith | 534986f | 2012-04-14 00:33:13 +0000 | [diff] [blame] | 2572 | if ((Tok.is(tok::identifier) && |
| 2573 | Tok.getIdentifierInfo() == getSEHExceptKeyword()) || |
| 2574 | Tok.is(tok::kw___finally)) { |
John Wiegley | 28bbe4b | 2011-04-28 01:08:34 +0000 | [diff] [blame] | 2575 | // TODO: Factor into common return ParseSEHHandlerCommon(...) |
| 2576 | StmtResult Handler; |
Douglas Gregor | b57791e | 2011-10-21 03:57:52 +0000 | [diff] [blame] | 2577 | if(Tok.getIdentifierInfo() == getSEHExceptKeyword()) { |
John Wiegley | 28bbe4b | 2011-04-28 01:08:34 +0000 | [diff] [blame] | 2578 | SourceLocation Loc = ConsumeToken(); |
| 2579 | Handler = ParseSEHExceptBlock(Loc); |
| 2580 | } |
| 2581 | else { |
| 2582 | SourceLocation Loc = ConsumeToken(); |
| 2583 | Handler = ParseSEHFinallyBlock(Loc); |
| 2584 | } |
| 2585 | if(Handler.isInvalid()) |
Benjamin Kramer | 3fe198b | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 2586 | return Handler; |
John McCall | 7f040a9 | 2010-12-24 02:08:15 +0000 | [diff] [blame] | 2587 | |
John Wiegley | 28bbe4b | 2011-04-28 01:08:34 +0000 | [diff] [blame] | 2588 | return Actions.ActOnSEHTryBlock(true /* IsCXXTry */, |
| 2589 | TryLoc, |
| 2590 | TryBlock.take(), |
| 2591 | Handler.take()); |
Sebastian Redl | a0fd865 | 2008-12-21 16:41:36 +0000 | [diff] [blame] | 2592 | } |
John Wiegley | 28bbe4b | 2011-04-28 01:08:34 +0000 | [diff] [blame] | 2593 | else { |
Benjamin Kramer | 4e28d9e | 2012-08-23 22:51:59 +0000 | [diff] [blame] | 2594 | StmtVector Handlers; |
Richard Smith | 5eed7e0 | 2013-10-15 01:34:54 +0000 | [diff] [blame] | 2595 | |
| 2596 | // C++11 attributes can't appear here, despite this context seeming |
| 2597 | // statement-like. |
| 2598 | DiagnoseAndSkipCXX11Attributes(); |
Sebastian Redl | a0fd865 | 2008-12-21 16:41:36 +0000 | [diff] [blame] | 2599 | |
John Wiegley | 28bbe4b | 2011-04-28 01:08:34 +0000 | [diff] [blame] | 2600 | if (Tok.isNot(tok::kw_catch)) |
| 2601 | return StmtError(Diag(Tok, diag::err_expected_catch)); |
| 2602 | while (Tok.is(tok::kw_catch)) { |
David Blaikie | c4027c8 | 2012-11-10 01:04:23 +0000 | [diff] [blame] | 2603 | StmtResult Handler(ParseCXXCatchBlock(FnTry)); |
John Wiegley | 28bbe4b | 2011-04-28 01:08:34 +0000 | [diff] [blame] | 2604 | if (!Handler.isInvalid()) |
| 2605 | Handlers.push_back(Handler.release()); |
| 2606 | } |
| 2607 | // Don't bother creating the full statement if we don't have any usable |
| 2608 | // handlers. |
| 2609 | if (Handlers.empty()) |
| 2610 | return StmtError(); |
| 2611 | |
Robert Wilhelm | 21adb0c | 2013-08-22 09:20:03 +0000 | [diff] [blame] | 2612 | return Actions.ActOnCXXTryBlock(TryLoc, TryBlock.take(), Handlers); |
John Wiegley | 28bbe4b | 2011-04-28 01:08:34 +0000 | [diff] [blame] | 2613 | } |
Sebastian Redl | a0fd865 | 2008-12-21 16:41:36 +0000 | [diff] [blame] | 2614 | } |
| 2615 | |
| 2616 | /// ParseCXXCatchBlock - Parse a C++ catch block, called handler in the standard |
| 2617 | /// |
Richard Smith | 4cd81c5 | 2013-01-29 09:02:09 +0000 | [diff] [blame] | 2618 | /// handler: |
| 2619 | /// 'catch' '(' exception-declaration ')' compound-statement |
Sebastian Redl | a0fd865 | 2008-12-21 16:41:36 +0000 | [diff] [blame] | 2620 | /// |
Richard Smith | 4cd81c5 | 2013-01-29 09:02:09 +0000 | [diff] [blame] | 2621 | /// exception-declaration: |
| 2622 | /// attribute-specifier-seq[opt] type-specifier-seq declarator |
| 2623 | /// attribute-specifier-seq[opt] type-specifier-seq abstract-declarator[opt] |
| 2624 | /// '...' |
Sebastian Redl | a0fd865 | 2008-12-21 16:41:36 +0000 | [diff] [blame] | 2625 | /// |
David Blaikie | c4027c8 | 2012-11-10 01:04:23 +0000 | [diff] [blame] | 2626 | StmtResult Parser::ParseCXXCatchBlock(bool FnCatch) { |
Sebastian Redl | a0fd865 | 2008-12-21 16:41:36 +0000 | [diff] [blame] | 2627 | assert(Tok.is(tok::kw_catch) && "Expected 'catch'"); |
| 2628 | |
| 2629 | SourceLocation CatchLoc = ConsumeToken(); |
| 2630 | |
Douglas Gregor | 4a8dfb5 | 2011-10-12 16:37:45 +0000 | [diff] [blame] | 2631 | BalancedDelimiterTracker T(*this, tok::l_paren); |
| 2632 | if (T.expectAndConsume(diag::err_expected_lparen)) |
Sebastian Redl | a0fd865 | 2008-12-21 16:41:36 +0000 | [diff] [blame] | 2633 | return StmtError(); |
| 2634 | |
| 2635 | // C++ 3.3.2p3: |
| 2636 | // The name in a catch exception-declaration is local to the handler and |
| 2637 | // shall not be redeclared in the outermost block of the handler. |
David Blaikie | c4027c8 | 2012-11-10 01:04:23 +0000 | [diff] [blame] | 2638 | ParseScope CatchScope(this, Scope::DeclScope | Scope::ControlScope | |
David Blaikie | e5afdcf | 2012-11-13 18:51:45 +0000 | [diff] [blame] | 2639 | (FnCatch ? Scope::FnTryCatchScope : 0)); |
Sebastian Redl | a0fd865 | 2008-12-21 16:41:36 +0000 | [diff] [blame] | 2640 | |
| 2641 | // exception-declaration is equivalent to '...' or a parameter-declaration |
| 2642 | // without default arguments. |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 2643 | Decl *ExceptionDecl = 0; |
Sebastian Redl | a0fd865 | 2008-12-21 16:41:36 +0000 | [diff] [blame] | 2644 | if (Tok.isNot(tok::ellipsis)) { |
Richard Smith | 4cd81c5 | 2013-01-29 09:02:09 +0000 | [diff] [blame] | 2645 | ParsedAttributesWithRange Attributes(AttrFactory); |
| 2646 | MaybeParseCXX11Attributes(Attributes); |
| 2647 | |
John McCall | 0b7e678 | 2011-03-24 11:26:52 +0000 | [diff] [blame] | 2648 | DeclSpec DS(AttrFactory); |
Richard Smith | 4cd81c5 | 2013-01-29 09:02:09 +0000 | [diff] [blame] | 2649 | DS.takeAttributesFrom(Attributes); |
| 2650 | |
Sebastian Redl | 4b07b29 | 2008-12-22 19:15:10 +0000 | [diff] [blame] | 2651 | if (ParseCXXTypeSpecifierSeq(DS)) |
| 2652 | return StmtError(); |
Richard Smith | 4cd81c5 | 2013-01-29 09:02:09 +0000 | [diff] [blame] | 2653 | |
Sebastian Redl | a0fd865 | 2008-12-21 16:41:36 +0000 | [diff] [blame] | 2654 | Declarator ExDecl(DS, Declarator::CXXCatchContext); |
| 2655 | ParseDeclarator(ExDecl); |
Douglas Gregor | 23c94db | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 2656 | ExceptionDecl = Actions.ActOnExceptionDeclarator(getCurScope(), ExDecl); |
Sebastian Redl | a0fd865 | 2008-12-21 16:41:36 +0000 | [diff] [blame] | 2657 | } else |
| 2658 | ConsumeToken(); |
| 2659 | |
Douglas Gregor | 4a8dfb5 | 2011-10-12 16:37:45 +0000 | [diff] [blame] | 2660 | T.consumeClose(); |
| 2661 | if (T.getCloseLocation().isInvalid()) |
Sebastian Redl | a0fd865 | 2008-12-21 16:41:36 +0000 | [diff] [blame] | 2662 | return StmtError(); |
| 2663 | |
| 2664 | if (Tok.isNot(tok::l_brace)) |
| 2665 | return StmtError(Diag(Tok, diag::err_expected_lbrace)); |
| 2666 | |
Sean Hunt | bbd37c6 | 2009-11-21 08:43:09 +0000 | [diff] [blame] | 2667 | // FIXME: Possible draft standard bug: attribute-specifier should be allowed? |
Richard Smith | 534986f | 2012-04-14 00:33:13 +0000 | [diff] [blame] | 2668 | StmtResult Block(ParseCompoundStatement()); |
Sebastian Redl | a0fd865 | 2008-12-21 16:41:36 +0000 | [diff] [blame] | 2669 | if (Block.isInvalid()) |
Benjamin Kramer | 3fe198b | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 2670 | return Block; |
Sebastian Redl | a0fd865 | 2008-12-21 16:41:36 +0000 | [diff] [blame] | 2671 | |
John McCall | 9ae2f07 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 2672 | return Actions.ActOnCXXCatchBlock(CatchLoc, ExceptionDecl, Block.take()); |
Sebastian Redl | a0fd865 | 2008-12-21 16:41:36 +0000 | [diff] [blame] | 2673 | } |
Francois Pichet | 1e86269 | 2011-05-06 20:48:22 +0000 | [diff] [blame] | 2674 | |
| 2675 | void Parser::ParseMicrosoftIfExistsStatement(StmtVector &Stmts) { |
Douglas Gregor | 3896fc5 | 2011-10-24 22:31:10 +0000 | [diff] [blame] | 2676 | IfExistsCondition Result; |
Francois Pichet | f986038 | 2011-05-07 17:30:27 +0000 | [diff] [blame] | 2677 | if (ParseMicrosoftIfExistsCondition(Result)) |
Francois Pichet | 1e86269 | 2011-05-06 20:48:22 +0000 | [diff] [blame] | 2678 | return; |
NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 2679 | |
Douglas Gregor | 3896fc5 | 2011-10-24 22:31:10 +0000 | [diff] [blame] | 2680 | // Handle dependent statements by parsing the braces as a compound statement. |
| 2681 | // This is not the same behavior as Visual C++, which don't treat this as a |
| 2682 | // compound statement, but for Clang's type checking we can't have anything |
| 2683 | // inside these braces escaping to the surrounding code. |
| 2684 | if (Result.Behavior == IEB_Dependent) { |
| 2685 | if (!Tok.is(tok::l_brace)) { |
| 2686 | Diag(Tok, diag::err_expected_lbrace); |
Richard Smith | 534986f | 2012-04-14 00:33:13 +0000 | [diff] [blame] | 2687 | return; |
Douglas Gregor | 3896fc5 | 2011-10-24 22:31:10 +0000 | [diff] [blame] | 2688 | } |
Richard Smith | 534986f | 2012-04-14 00:33:13 +0000 | [diff] [blame] | 2689 | |
| 2690 | StmtResult Compound = ParseCompoundStatement(); |
Douglas Gregor | ba0513d | 2011-10-25 01:33:02 +0000 | [diff] [blame] | 2691 | if (Compound.isInvalid()) |
| 2692 | return; |
Richard Smith | 534986f | 2012-04-14 00:33:13 +0000 | [diff] [blame] | 2693 | |
Douglas Gregor | ba0513d | 2011-10-25 01:33:02 +0000 | [diff] [blame] | 2694 | StmtResult DepResult = Actions.ActOnMSDependentExistsStmt(Result.KeywordLoc, |
| 2695 | Result.IsIfExists, |
Richard Smith | 534986f | 2012-04-14 00:33:13 +0000 | [diff] [blame] | 2696 | Result.SS, |
Douglas Gregor | ba0513d | 2011-10-25 01:33:02 +0000 | [diff] [blame] | 2697 | Result.Name, |
| 2698 | Compound.get()); |
| 2699 | if (DepResult.isUsable()) |
| 2700 | Stmts.push_back(DepResult.get()); |
Douglas Gregor | 3896fc5 | 2011-10-24 22:31:10 +0000 | [diff] [blame] | 2701 | return; |
| 2702 | } |
Richard Smith | 534986f | 2012-04-14 00:33:13 +0000 | [diff] [blame] | 2703 | |
Douglas Gregor | 3896fc5 | 2011-10-24 22:31:10 +0000 | [diff] [blame] | 2704 | BalancedDelimiterTracker Braces(*this, tok::l_brace); |
| 2705 | if (Braces.consumeOpen()) { |
Francois Pichet | 1e86269 | 2011-05-06 20:48:22 +0000 | [diff] [blame] | 2706 | Diag(Tok, diag::err_expected_lbrace); |
| 2707 | return; |
| 2708 | } |
Francois Pichet | 1e86269 | 2011-05-06 20:48:22 +0000 | [diff] [blame] | 2709 | |
Douglas Gregor | 3896fc5 | 2011-10-24 22:31:10 +0000 | [diff] [blame] | 2710 | switch (Result.Behavior) { |
| 2711 | case IEB_Parse: |
| 2712 | // Parse the statements below. |
| 2713 | break; |
Chad Rosier | b660446 | 2012-07-10 21:35:27 +0000 | [diff] [blame] | 2714 | |
Douglas Gregor | 3896fc5 | 2011-10-24 22:31:10 +0000 | [diff] [blame] | 2715 | case IEB_Dependent: |
| 2716 | llvm_unreachable("Dependent case handled above"); |
Chad Rosier | b660446 | 2012-07-10 21:35:27 +0000 | [diff] [blame] | 2717 | |
Douglas Gregor | 3896fc5 | 2011-10-24 22:31:10 +0000 | [diff] [blame] | 2718 | case IEB_Skip: |
| 2719 | Braces.skipToEnd(); |
Francois Pichet | 1e86269 | 2011-05-06 20:48:22 +0000 | [diff] [blame] | 2720 | return; |
| 2721 | } |
| 2722 | |
| 2723 | // Condition is true, parse the statements. |
| 2724 | while (Tok.isNot(tok::r_brace)) { |
| 2725 | StmtResult R = ParseStatementOrDeclaration(Stmts, false); |
| 2726 | if (R.isUsable()) |
| 2727 | Stmts.push_back(R.release()); |
| 2728 | } |
Douglas Gregor | 3896fc5 | 2011-10-24 22:31:10 +0000 | [diff] [blame] | 2729 | Braces.consumeClose(); |
Francois Pichet | 1e86269 | 2011-05-06 20:48:22 +0000 | [diff] [blame] | 2730 | } |