| Chris Lattner | 7ad0fbe | 2006-11-05 07:46:30 +0000 | [diff] [blame] | 1 | //===--- ParseStmt.cpp - Statement and Block Parser -----------------------===// | 
| Chris Lattner | 0ccd51e | 2006-08-09 05:47:47 +0000 | [diff] [blame] | 2 | // | 
| Chandler Carruth | 2946cd7 | 2019-01-19 08:50:56 +0000 | [diff] [blame] | 3 | // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. | 
|  | 4 | // See https://llvm.org/LICENSE.txt for license information. | 
|  | 5 | // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception | 
| Chris Lattner | 0ccd51e | 2006-08-09 05:47:47 +0000 | [diff] [blame] | 6 | // | 
|  | 7 | //===----------------------------------------------------------------------===// | 
|  | 8 | // | 
|  | 9 | // This file implements the Statement and Block portions of the Parser | 
|  | 10 | // interface. | 
|  | 11 | // | 
|  | 12 | //===----------------------------------------------------------------------===// | 
|  | 13 |  | 
| Jordan Rose | 1e879d8 | 2018-03-23 00:07:18 +0000 | [diff] [blame] | 14 | #include "clang/AST/PrettyDeclStackTrace.h" | 
| Aaron Ballman | b06b15a | 2014-06-06 12:40:24 +0000 | [diff] [blame] | 15 | #include "clang/Basic/Attributes.h" | 
| Chandler Carruth | 3a02247 | 2012-12-04 09:13:33 +0000 | [diff] [blame] | 16 | #include "clang/Basic/PrettyStackTrace.h" | 
| Richard Trieu | 0614cff | 2018-11-28 04:36:31 +0000 | [diff] [blame] | 17 | #include "clang/Parse/LoopHint.h" | 
| Mehdi Amini | 9670f84 | 2016-07-18 19:02:11 +0000 | [diff] [blame] | 18 | #include "clang/Parse/Parser.h" | 
| Vassil Vassilev | 11ad339 | 2017-03-23 15:11:07 +0000 | [diff] [blame] | 19 | #include "clang/Parse/RAIIObjectsForParser.h" | 
| John McCall | 8b0666c | 2010-08-20 18:27:03 +0000 | [diff] [blame] | 20 | #include "clang/Sema/DeclSpec.h" | 
|  | 21 | #include "clang/Sema/Scope.h" | 
| Richard Smith | 4f605af | 2012-08-18 00:55:03 +0000 | [diff] [blame] | 22 | #include "clang/Sema/TypoCorrection.h" | 
| Chris Lattner | 0ccd51e | 2006-08-09 05:47:47 +0000 | [diff] [blame] | 23 | using namespace clang; | 
|  | 24 |  | 
|  | 25 | //===----------------------------------------------------------------------===// | 
|  | 26 | // C99 6.8: Statements and Blocks. | 
|  | 27 | //===----------------------------------------------------------------------===// | 
|  | 28 |  | 
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 29 | /// Parse a standalone statement (for instance, as the body of an 'if', | 
| Richard Smith | 426a47b | 2013-10-28 22:04:30 +0000 | [diff] [blame] | 30 | /// 'while', or 'for'). | 
| Alexey Bataev | c4fad65 | 2016-01-13 11:18:54 +0000 | [diff] [blame] | 31 | StmtResult Parser::ParseStatement(SourceLocation *TrailingElseLoc, | 
| Richard Smith | a6e8d5e | 2019-02-15 00:27:53 +0000 | [diff] [blame] | 32 | ParsedStmtContext StmtCtx) { | 
| Richard Smith | 426a47b | 2013-10-28 22:04:30 +0000 | [diff] [blame] | 33 | StmtResult Res; | 
|  | 34 |  | 
|  | 35 | // We may get back a null statement if we found a #pragma. Keep going until | 
|  | 36 | // we get an actual statement. | 
|  | 37 | do { | 
|  | 38 | StmtVector Stmts; | 
| Richard Smith | a6e8d5e | 2019-02-15 00:27:53 +0000 | [diff] [blame] | 39 | Res = ParseStatementOrDeclaration(Stmts, StmtCtx, TrailingElseLoc); | 
| Richard Smith | 426a47b | 2013-10-28 22:04:30 +0000 | [diff] [blame] | 40 | } while (!Res.isInvalid() && !Res.get()); | 
|  | 41 |  | 
|  | 42 | return Res; | 
|  | 43 | } | 
|  | 44 |  | 
| Chris Lattner | 0ccd51e | 2006-08-09 05:47:47 +0000 | [diff] [blame] | 45 | /// ParseStatementOrDeclaration - Read 'statement' or 'declaration'. | 
|  | 46 | ///       StatementOrDeclaration: | 
|  | 47 | ///         statement | 
|  | 48 | ///         declaration | 
|  | 49 | /// | 
|  | 50 | ///       statement: | 
|  | 51 | ///         labeled-statement | 
|  | 52 | ///         compound-statement | 
|  | 53 | ///         expression-statement | 
|  | 54 | ///         selection-statement | 
|  | 55 | ///         iteration-statement | 
|  | 56 | ///         jump-statement | 
| Argyrios Kyrtzidis | dee8291 | 2008-09-07 18:58:01 +0000 | [diff] [blame] | 57 | /// [C++]   declaration-statement | 
| Sebastian Redl | b219c90 | 2008-12-21 16:41:36 +0000 | [diff] [blame] | 58 | /// [C++]   try-block | 
| John Wiegley | 1c0675e | 2011-04-28 01:08:34 +0000 | [diff] [blame] | 59 | /// [MS]    seh-try-block | 
| Fariborz Jahanian | 9081457 | 2007-10-04 20:19:06 +0000 | [diff] [blame] | 60 | /// [OBC]   objc-throw-statement | 
|  | 61 | /// [OBC]   objc-try-catch-statement | 
| Fariborz Jahanian | f89ca38 | 2008-01-29 18:21:32 +0000 | [diff] [blame] | 62 | /// [OBC]   objc-synchronized-statement | 
| Chris Lattner | 0116c47 | 2006-08-15 06:03:28 +0000 | [diff] [blame] | 63 | /// [GNU]   asm-statement | 
| Chris Lattner | 0ccd51e | 2006-08-09 05:47:47 +0000 | [diff] [blame] | 64 | /// [OMP]   openmp-construct             [TODO] | 
|  | 65 | /// | 
|  | 66 | ///       labeled-statement: | 
|  | 67 | ///         identifier ':' statement | 
|  | 68 | ///         'case' constant-expression ':' statement | 
|  | 69 | ///         'default' ':' statement | 
|  | 70 | /// | 
| Chris Lattner | 0ccd51e | 2006-08-09 05:47:47 +0000 | [diff] [blame] | 71 | ///       selection-statement: | 
|  | 72 | ///         if-statement | 
|  | 73 | ///         switch-statement | 
|  | 74 | /// | 
|  | 75 | ///       iteration-statement: | 
|  | 76 | ///         while-statement | 
|  | 77 | ///         do-statement | 
|  | 78 | ///         for-statement | 
|  | 79 | /// | 
| Chris Lattner | 9075bd7 | 2006-08-10 04:59:57 +0000 | [diff] [blame] | 80 | ///       expression-statement: | 
|  | 81 | ///         expression[opt] ';' | 
|  | 82 | /// | 
| Chris Lattner | 0ccd51e | 2006-08-09 05:47:47 +0000 | [diff] [blame] | 83 | ///       jump-statement: | 
|  | 84 | ///         'goto' identifier ';' | 
|  | 85 | ///         'continue' ';' | 
|  | 86 | ///         'break' ';' | 
|  | 87 | ///         'return' expression[opt] ';' | 
| Chris Lattner | 503fadc | 2006-08-10 05:45:44 +0000 | [diff] [blame] | 88 | /// [GNU]   'goto' '*' expression ';' | 
| Chris Lattner | 0ccd51e | 2006-08-09 05:47:47 +0000 | [diff] [blame] | 89 | /// | 
| Fariborz Jahanian | 9081457 | 2007-10-04 20:19:06 +0000 | [diff] [blame] | 90 | /// [OBC] objc-throw-statement: | 
|  | 91 | /// [OBC]   '@' 'throw' expression ';' | 
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 92 | /// [OBC]   '@' 'throw' ';' | 
|  | 93 | /// | 
| John McCall | dadc575 | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 94 | StmtResult | 
| Alexey Bataev | c4fad65 | 2016-01-13 11:18:54 +0000 | [diff] [blame] | 95 | Parser::ParseStatementOrDeclaration(StmtVector &Stmts, | 
| Richard Smith | a6e8d5e | 2019-02-15 00:27:53 +0000 | [diff] [blame] | 96 | ParsedStmtContext StmtCtx, | 
| Nico Weber | 3cef108 | 2011-12-22 23:26:17 +0000 | [diff] [blame] | 97 | SourceLocation *TrailingElseLoc) { | 
| NAKAMURA Takumi | 82a3511 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 98 |  | 
| Argyrios Kyrtzidis | 355094e | 2010-06-17 10:52:18 +0000 | [diff] [blame] | 99 | ParenBraceBracketBalancer BalancerRAIIObj(*this); | 
| Sebastian Redl | 17f2c7d | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 100 |  | 
| Richard Smith | c202b28 | 2012-04-14 00:33:13 +0000 | [diff] [blame] | 101 | ParsedAttributesWithRange Attrs(AttrFactory); | 
| Craig Topper | 161e4db | 2014-05-21 06:02:52 +0000 | [diff] [blame] | 102 | MaybeParseCXX11Attributes(Attrs, nullptr, /*MightBeObjCMessageSend*/ true); | 
| Anastasia Stulova | 6bdbcbb | 2016-02-19 18:30:11 +0000 | [diff] [blame] | 103 | if (!MaybeParseOpenCLUnrollHintAttribute(Attrs)) | 
|  | 104 | return StmtError(); | 
| Richard Smith | c202b28 | 2012-04-14 00:33:13 +0000 | [diff] [blame] | 105 |  | 
| Alexey Bataev | c4fad65 | 2016-01-13 11:18:54 +0000 | [diff] [blame] | 106 | StmtResult Res = ParseStatementOrDeclarationAfterAttributes( | 
| Richard Smith | a6e8d5e | 2019-02-15 00:27:53 +0000 | [diff] [blame] | 107 | Stmts, StmtCtx, TrailingElseLoc, Attrs); | 
| Richard Smith | c202b28 | 2012-04-14 00:33:13 +0000 | [diff] [blame] | 108 |  | 
|  | 109 | assert((Attrs.empty() || Res.isInvalid() || Res.isUsable()) && | 
|  | 110 | "attributes on empty statement"); | 
|  | 111 |  | 
|  | 112 | if (Attrs.empty() || Res.isInvalid()) | 
|  | 113 | return Res; | 
|  | 114 |  | 
| Erich Keane | c480f30 | 2018-07-12 21:09:05 +0000 | [diff] [blame] | 115 | return Actions.ProcessStmtAttributes(Res.get(), Attrs, Attrs.Range); | 
| Richard Smith | c202b28 | 2012-04-14 00:33:13 +0000 | [diff] [blame] | 116 | } | 
|  | 117 |  | 
| Kaelyn Uhrain | 3dfff19 | 2013-09-27 19:40:12 +0000 | [diff] [blame] | 118 | namespace { | 
| Bruno Ricci | 70ad396 | 2019-03-25 17:08:51 +0000 | [diff] [blame] | 119 | class StatementFilterCCC final : public CorrectionCandidateCallback { | 
| Kaelyn Uhrain | 3dfff19 | 2013-09-27 19:40:12 +0000 | [diff] [blame] | 120 | public: | 
|  | 121 | StatementFilterCCC(Token nextTok) : NextToken(nextTok) { | 
| Daniel Marjamaki | e59f8d7 | 2015-06-18 10:59:26 +0000 | [diff] [blame] | 122 | WantTypeSpecifiers = nextTok.isOneOf(tok::l_paren, tok::less, tok::l_square, | 
|  | 123 | tok::identifier, tok::star, tok::amp); | 
|  | 124 | WantExpressionKeywords = | 
|  | 125 | nextTok.isOneOf(tok::l_paren, tok::identifier, tok::arrow, tok::period); | 
|  | 126 | WantRemainingKeywords = | 
|  | 127 | nextTok.isOneOf(tok::l_paren, tok::semi, tok::identifier, tok::l_brace); | 
| Kaelyn Uhrain | 3dfff19 | 2013-09-27 19:40:12 +0000 | [diff] [blame] | 128 | WantCXXNamedCasts = false; | 
|  | 129 | } | 
|  | 130 |  | 
| Craig Topper | 2b07f02 | 2014-03-12 05:09:18 +0000 | [diff] [blame] | 131 | bool ValidateCandidate(const TypoCorrection &candidate) override { | 
| Kaelyn Uhrain | 3dfff19 | 2013-09-27 19:40:12 +0000 | [diff] [blame] | 132 | if (FieldDecl *FD = candidate.getCorrectionDeclAs<FieldDecl>()) | 
| Kaelyn Uhrain | 07e6272 | 2013-10-01 22:00:28 +0000 | [diff] [blame] | 133 | return !candidate.getCorrectionSpecifier() || isa<ObjCIvarDecl>(FD); | 
| Kaelyn Uhrain | 46b6cdc | 2013-09-27 19:40:16 +0000 | [diff] [blame] | 134 | if (NextToken.is(tok::equal)) | 
|  | 135 | return candidate.getCorrectionDeclAs<VarDecl>(); | 
| Kaelyn Uhrain | 30943ce | 2013-09-27 23:54:23 +0000 | [diff] [blame] | 136 | if (NextToken.is(tok::period) && | 
|  | 137 | candidate.getCorrectionDeclAs<NamespaceDecl>()) | 
|  | 138 | return false; | 
| Kaelyn Uhrain | 3dfff19 | 2013-09-27 19:40:12 +0000 | [diff] [blame] | 139 | return CorrectionCandidateCallback::ValidateCandidate(candidate); | 
|  | 140 | } | 
|  | 141 |  | 
| Bruno Ricci | 70ad396 | 2019-03-25 17:08:51 +0000 | [diff] [blame] | 142 | std::unique_ptr<CorrectionCandidateCallback> clone() override { | 
| Jonas Devlieghere | 2b3d49b | 2019-08-14 23:04:18 +0000 | [diff] [blame^] | 143 | return std::make_unique<StatementFilterCCC>(*this); | 
| Bruno Ricci | 70ad396 | 2019-03-25 17:08:51 +0000 | [diff] [blame] | 144 | } | 
|  | 145 |  | 
| Kaelyn Uhrain | 3dfff19 | 2013-09-27 19:40:12 +0000 | [diff] [blame] | 146 | private: | 
|  | 147 | Token NextToken; | 
|  | 148 | }; | 
| Alexander Kornienko | ab9db51 | 2015-06-22 23:07:51 +0000 | [diff] [blame] | 149 | } | 
| Kaelyn Uhrain | 3dfff19 | 2013-09-27 19:40:12 +0000 | [diff] [blame] | 150 |  | 
| Richard Smith | a6e8d5e | 2019-02-15 00:27:53 +0000 | [diff] [blame] | 151 | StmtResult Parser::ParseStatementOrDeclarationAfterAttributes( | 
|  | 152 | StmtVector &Stmts, ParsedStmtContext StmtCtx, | 
|  | 153 | SourceLocation *TrailingElseLoc, ParsedAttributesWithRange &Attrs) { | 
| Craig Topper | 161e4db | 2014-05-21 06:02:52 +0000 | [diff] [blame] | 154 | const char *SemiError = nullptr; | 
| Richard Smith | c202b28 | 2012-04-14 00:33:13 +0000 | [diff] [blame] | 155 | StmtResult Res; | 
| Alexis Hunt | 96d5c76 | 2009-11-21 08:43:09 +0000 | [diff] [blame] | 156 |  | 
| Chris Lattner | 503fadc | 2006-08-10 05:45:44 +0000 | [diff] [blame] | 157 | // Cases in this switch statement should fall through if the parser expects | 
|  | 158 | // the token to end in a semicolon (in which case SemiError should be set), | 
|  | 159 | // or they directly 'return;' if not. | 
| Douglas Gregor | 0e7dde5 | 2011-04-24 05:37:28 +0000 | [diff] [blame] | 160 | Retry: | 
| Fariborz Jahanian | 62fd2b4 | 2007-09-19 19:14:32 +0000 | [diff] [blame] | 161 | tok::TokenKind Kind  = Tok.getKind(); | 
|  | 162 | SourceLocation AtLoc; | 
|  | 163 | switch (Kind) { | 
| Fariborz Jahanian | 62fd2b4 | 2007-09-19 19:14:32 +0000 | [diff] [blame] | 164 | case tok::at: // May be a @try or @throw statement | 
|  | 165 | { | 
| Richard Smith | c202b28 | 2012-04-14 00:33:13 +0000 | [diff] [blame] | 166 | ProhibitAttributes(Attrs); // TODO: is it correct? | 
| Fariborz Jahanian | 62fd2b4 | 2007-09-19 19:14:32 +0000 | [diff] [blame] | 167 | AtLoc = ConsumeToken();  // consume @ | 
| Richard Smith | a6e8d5e | 2019-02-15 00:27:53 +0000 | [diff] [blame] | 168 | return ParseObjCAtStatement(AtLoc, StmtCtx); | 
| Fariborz Jahanian | 62fd2b4 | 2007-09-19 19:14:32 +0000 | [diff] [blame] | 169 | } | 
| Fariborz Jahanian | 62fd2b4 | 2007-09-19 19:14:32 +0000 | [diff] [blame] | 170 |  | 
| Douglas Gregor | 9d64c5e | 2009-09-21 20:51:25 +0000 | [diff] [blame] | 171 | case tok::code_completion: | 
| John McCall | faf5fb4 | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 172 | Actions.CodeCompleteOrdinaryName(getCurScope(), Sema::PCC_Statement); | 
| Argyrios Kyrtzidis | 5cec2ae | 2011-09-04 03:32:15 +0000 | [diff] [blame] | 173 | cutOffParsing(); | 
|  | 174 | return StmtError(); | 
| NAKAMURA Takumi | 82a3511 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 175 |  | 
| Douglas Gregor | 0e7dde5 | 2011-04-24 05:37:28 +0000 | [diff] [blame] | 176 | case tok::identifier: { | 
|  | 177 | Token Next = NextToken(); | 
|  | 178 | if (Next.is(tok::colon)) { // C99 6.8.1: labeled-statement | 
| Argyrios Kyrtzidis | 07b8b63 | 2008-07-12 21:04:42 +0000 | [diff] [blame] | 179 | // identifier ':' statement | 
| Richard Smith | a6e8d5e | 2019-02-15 00:27:53 +0000 | [diff] [blame] | 180 | return ParseLabeledStatement(Attrs, StmtCtx); | 
| Argyrios Kyrtzidis | 07b8b63 | 2008-07-12 21:04:42 +0000 | [diff] [blame] | 181 | } | 
| NAKAMURA Takumi | 82a3511 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 182 |  | 
| Richard Smith | 4f605af | 2012-08-18 00:55:03 +0000 | [diff] [blame] | 183 | // Look up the identifier, and typo-correct it to a keyword if it's not | 
|  | 184 | // found. | 
| Douglas Gregor | 8b02cd0 | 2011-04-27 04:48:22 +0000 | [diff] [blame] | 185 | if (Next.isNot(tok::coloncolon)) { | 
| Richard Smith | 4f605af | 2012-08-18 00:55:03 +0000 | [diff] [blame] | 186 | // Try to limit which sets of keywords should be included in typo | 
|  | 187 | // correction based on what the next token is. | 
| Bruno Ricci | 70ad396 | 2019-03-25 17:08:51 +0000 | [diff] [blame] | 188 | StatementFilterCCC CCC(Next); | 
|  | 189 | if (TryAnnotateName(/*IsAddressOfOperand*/ false, &CCC) == ANK_Error) { | 
| Douglas Gregor | 0e7dde5 | 2011-04-24 05:37:28 +0000 | [diff] [blame] | 190 | // Handle errors here by skipping up to the next semicolon or '}', and | 
|  | 191 | // eat the semicolon if that's what stopped us. | 
| Alexey Bataev | ee6507d | 2013-11-18 08:17:37 +0000 | [diff] [blame] | 192 | SkipUntil(tok::r_brace, StopAtSemi | StopBeforeMatch); | 
| Douglas Gregor | 0e7dde5 | 2011-04-24 05:37:28 +0000 | [diff] [blame] | 193 | if (Tok.is(tok::semi)) | 
|  | 194 | ConsumeToken(); | 
|  | 195 | return StmtError(); | 
| Richard Smith | 4f605af | 2012-08-18 00:55:03 +0000 | [diff] [blame] | 196 | } | 
| NAKAMURA Takumi | 82a3511 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 197 |  | 
| Richard Smith | 4f605af | 2012-08-18 00:55:03 +0000 | [diff] [blame] | 198 | // If the identifier was typo-corrected, try again. | 
|  | 199 | if (Tok.isNot(tok::identifier)) | 
| Douglas Gregor | 0e7dde5 | 2011-04-24 05:37:28 +0000 | [diff] [blame] | 200 | goto Retry; | 
| Douglas Gregor | 0e7dde5 | 2011-04-24 05:37:28 +0000 | [diff] [blame] | 201 | } | 
| NAKAMURA Takumi | 82a3511 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 202 |  | 
| Douglas Gregor | 0e7dde5 | 2011-04-24 05:37:28 +0000 | [diff] [blame] | 203 | // Fall through | 
| Galina Kistanova | 387ab8b | 2017-06-01 21:28:26 +0000 | [diff] [blame] | 204 | LLVM_FALLTHROUGH; | 
| Douglas Gregor | 0e7dde5 | 2011-04-24 05:37:28 +0000 | [diff] [blame] | 205 | } | 
| NAKAMURA Takumi | 82a3511 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 206 |  | 
| Chris Lattner | 803802d | 2009-03-24 17:04:48 +0000 | [diff] [blame] | 207 | default: { | 
| David Majnemer | 6ac7dd1 | 2016-08-01 16:39:29 +0000 | [diff] [blame] | 208 | if ((getLangOpts().CPlusPlus || getLangOpts().MicrosoftExt || | 
| Richard Smith | a6e8d5e | 2019-02-15 00:27:53 +0000 | [diff] [blame] | 209 | (StmtCtx & ParsedStmtContext::AllowDeclarationsInC) != | 
|  | 210 | ParsedStmtContext()) && | 
| Alexey Bataev | c4fad65 | 2016-01-13 11:18:54 +0000 | [diff] [blame] | 211 | isDeclarationStatement()) { | 
| Chris Lattner | 49836b4 | 2009-04-02 04:16:50 +0000 | [diff] [blame] | 212 | SourceLocation DeclStart = Tok.getLocation(), DeclEnd; | 
| Faisal Vali | 421b2d1 | 2017-12-29 05:41:00 +0000 | [diff] [blame] | 213 | DeclGroupPtrTy Decl = ParseDeclaration(DeclaratorContext::BlockContext, | 
| Richard Smith | c202b28 | 2012-04-14 00:33:13 +0000 | [diff] [blame] | 214 | DeclEnd, Attrs); | 
| Chris Lattner | 49836b4 | 2009-04-02 04:16:50 +0000 | [diff] [blame] | 215 | return Actions.ActOnDeclStmt(Decl, DeclStart, DeclEnd); | 
| Chris Lattner | 803802d | 2009-03-24 17:04:48 +0000 | [diff] [blame] | 216 | } | 
|  | 217 |  | 
|  | 218 | if (Tok.is(tok::r_brace)) { | 
| Chris Lattner | f8afb62 | 2006-08-10 18:26:31 +0000 | [diff] [blame] | 219 | Diag(Tok, diag::err_expected_statement); | 
| Sebastian Redl | 042ad95 | 2008-12-11 19:30:53 +0000 | [diff] [blame] | 220 | return StmtError(); | 
| Chris Lattner | f8afb62 | 2006-08-10 18:26:31 +0000 | [diff] [blame] | 221 | } | 
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 222 |  | 
| Richard Smith | a6e8d5e | 2019-02-15 00:27:53 +0000 | [diff] [blame] | 223 | return ParseExprStatement(StmtCtx); | 
| Chris Lattner | 803802d | 2009-03-24 17:04:48 +0000 | [diff] [blame] | 224 | } | 
| Sebastian Redl | 042ad95 | 2008-12-11 19:30:53 +0000 | [diff] [blame] | 225 |  | 
| Chris Lattner | d2685cf | 2006-08-10 05:59:48 +0000 | [diff] [blame] | 226 | case tok::kw_case:                // C99 6.8.1: labeled-statement | 
| Richard Smith | a6e8d5e | 2019-02-15 00:27:53 +0000 | [diff] [blame] | 227 | return ParseCaseStatement(StmtCtx); | 
| Chris Lattner | d2685cf | 2006-08-10 05:59:48 +0000 | [diff] [blame] | 228 | case tok::kw_default:             // C99 6.8.1: labeled-statement | 
| Richard Smith | a6e8d5e | 2019-02-15 00:27:53 +0000 | [diff] [blame] | 229 | return ParseDefaultStatement(StmtCtx); | 
| Sebastian Redl | 042ad95 | 2008-12-11 19:30:53 +0000 | [diff] [blame] | 230 |  | 
| Chris Lattner | 9075bd7 | 2006-08-10 04:59:57 +0000 | [diff] [blame] | 231 | case tok::l_brace:                // C99 6.8.2: compound-statement | 
| Richard Smith | c202b28 | 2012-04-14 00:33:13 +0000 | [diff] [blame] | 232 | return ParseCompoundStatement(); | 
| Argyrios Kyrtzidis | de2bdf6 | 2010-11-20 02:04:01 +0000 | [diff] [blame] | 233 | case tok::semi: {                 // C99 6.8.3p3: expression[opt] ';' | 
| Argyrios Kyrtzidis | 43ea78b | 2011-09-01 21:53:45 +0000 | [diff] [blame] | 234 | bool HasLeadingEmptyMacro = Tok.hasLeadingEmptyMacro(); | 
|  | 235 | return Actions.ActOnNullStmt(ConsumeToken(), HasLeadingEmptyMacro); | 
| Argyrios Kyrtzidis | de2bdf6 | 2010-11-20 02:04:01 +0000 | [diff] [blame] | 236 | } | 
| Sebastian Redl | 042ad95 | 2008-12-11 19:30:53 +0000 | [diff] [blame] | 237 |  | 
| Chris Lattner | 9075bd7 | 2006-08-10 04:59:57 +0000 | [diff] [blame] | 238 | case tok::kw_if:                  // C99 6.8.4.1: if-statement | 
| Richard Smith | c202b28 | 2012-04-14 00:33:13 +0000 | [diff] [blame] | 239 | return ParseIfStatement(TrailingElseLoc); | 
| Chris Lattner | 9075bd7 | 2006-08-10 04:59:57 +0000 | [diff] [blame] | 240 | case tok::kw_switch:              // C99 6.8.4.2: switch-statement | 
| Richard Smith | c202b28 | 2012-04-14 00:33:13 +0000 | [diff] [blame] | 241 | return ParseSwitchStatement(TrailingElseLoc); | 
| Sebastian Redl | 042ad95 | 2008-12-11 19:30:53 +0000 | [diff] [blame] | 242 |  | 
| Chris Lattner | 9075bd7 | 2006-08-10 04:59:57 +0000 | [diff] [blame] | 243 | case tok::kw_while:               // C99 6.8.5.1: while-statement | 
| Richard Smith | c202b28 | 2012-04-14 00:33:13 +0000 | [diff] [blame] | 244 | return ParseWhileStatement(TrailingElseLoc); | 
| Chris Lattner | 9075bd7 | 2006-08-10 04:59:57 +0000 | [diff] [blame] | 245 | case tok::kw_do:                  // C99 6.8.5.2: do-statement | 
| Richard Smith | c202b28 | 2012-04-14 00:33:13 +0000 | [diff] [blame] | 246 | Res = ParseDoStatement(); | 
| Chris Lattner | 34a9566 | 2009-06-14 00:07:48 +0000 | [diff] [blame] | 247 | SemiError = "do/while"; | 
| Chris Lattner | 9075bd7 | 2006-08-10 04:59:57 +0000 | [diff] [blame] | 248 | break; | 
|  | 249 | case tok::kw_for:                 // C99 6.8.5.3: for-statement | 
| Richard Smith | c202b28 | 2012-04-14 00:33:13 +0000 | [diff] [blame] | 250 | return ParseForStatement(TrailingElseLoc); | 
| Chris Lattner | 503fadc | 2006-08-10 05:45:44 +0000 | [diff] [blame] | 251 |  | 
|  | 252 | case tok::kw_goto:                // C99 6.8.6.1: goto-statement | 
| Richard Smith | c202b28 | 2012-04-14 00:33:13 +0000 | [diff] [blame] | 253 | Res = ParseGotoStatement(); | 
| Chris Lattner | 34a9566 | 2009-06-14 00:07:48 +0000 | [diff] [blame] | 254 | SemiError = "goto"; | 
| Chris Lattner | 9075bd7 | 2006-08-10 04:59:57 +0000 | [diff] [blame] | 255 | break; | 
| Chris Lattner | 503fadc | 2006-08-10 05:45:44 +0000 | [diff] [blame] | 256 | case tok::kw_continue:            // C99 6.8.6.2: continue-statement | 
| Richard Smith | c202b28 | 2012-04-14 00:33:13 +0000 | [diff] [blame] | 257 | Res = ParseContinueStatement(); | 
| Chris Lattner | 34a9566 | 2009-06-14 00:07:48 +0000 | [diff] [blame] | 258 | SemiError = "continue"; | 
| Chris Lattner | 503fadc | 2006-08-10 05:45:44 +0000 | [diff] [blame] | 259 | break; | 
|  | 260 | case tok::kw_break:               // C99 6.8.6.3: break-statement | 
| Richard Smith | c202b28 | 2012-04-14 00:33:13 +0000 | [diff] [blame] | 261 | Res = ParseBreakStatement(); | 
| Chris Lattner | 34a9566 | 2009-06-14 00:07:48 +0000 | [diff] [blame] | 262 | SemiError = "break"; | 
| Chris Lattner | 503fadc | 2006-08-10 05:45:44 +0000 | [diff] [blame] | 263 | break; | 
|  | 264 | case tok::kw_return:              // C99 6.8.6.4: return-statement | 
| Richard Smith | c202b28 | 2012-04-14 00:33:13 +0000 | [diff] [blame] | 265 | Res = ParseReturnStatement(); | 
| Chris Lattner | 34a9566 | 2009-06-14 00:07:48 +0000 | [diff] [blame] | 266 | SemiError = "return"; | 
| Chris Lattner | 503fadc | 2006-08-10 05:45:44 +0000 | [diff] [blame] | 267 | break; | 
| Richard Smith | 0e304ea | 2015-10-22 04:46:14 +0000 | [diff] [blame] | 268 | case tok::kw_co_return:            // C++ Coroutines: co_return statement | 
|  | 269 | Res = ParseReturnStatement(); | 
|  | 270 | SemiError = "co_return"; | 
|  | 271 | break; | 
| Sebastian Redl | 042ad95 | 2008-12-11 19:30:53 +0000 | [diff] [blame] | 272 |  | 
| Sebastian Redl | b219c90 | 2008-12-21 16:41:36 +0000 | [diff] [blame] | 273 | case tok::kw_asm: { | 
| Richard Smith | c202b28 | 2012-04-14 00:33:13 +0000 | [diff] [blame] | 274 | ProhibitAttributes(Attrs); | 
| Steve Naroff | b2c80c7 | 2008-02-07 03:50:06 +0000 | [diff] [blame] | 275 | bool msAsm = false; | 
|  | 276 | Res = ParseAsmStatement(msAsm); | 
| Argyrios Kyrtzidis | 3050d9b | 2010-11-02 02:33:08 +0000 | [diff] [blame] | 277 | Res = Actions.ActOnFinishFullStmt(Res.get()); | 
| Benjamin Kramer | 62b95d8 | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 278 | if (msAsm) return Res; | 
| Chris Lattner | 34a9566 | 2009-06-14 00:07:48 +0000 | [diff] [blame] | 279 | SemiError = "asm"; | 
| Chris Lattner | 0116c47 | 2006-08-15 06:03:28 +0000 | [diff] [blame] | 280 | break; | 
| Chris Lattner | 0ccd51e | 2006-08-09 05:47:47 +0000 | [diff] [blame] | 281 | } | 
| Sebastian Redl | 042ad95 | 2008-12-11 19:30:53 +0000 | [diff] [blame] | 282 |  | 
| Reid Kleckner | 6d8d22a | 2014-06-25 00:28:35 +0000 | [diff] [blame] | 283 | case tok::kw___if_exists: | 
|  | 284 | case tok::kw___if_not_exists: | 
|  | 285 | ProhibitAttributes(Attrs); | 
|  | 286 | ParseMicrosoftIfExistsStatement(Stmts); | 
|  | 287 | // An __if_exists block is like a compound statement, but it doesn't create | 
|  | 288 | // a new scope. | 
|  | 289 | return StmtEmpty(); | 
|  | 290 |  | 
| Sebastian Redl | b219c90 | 2008-12-21 16:41:36 +0000 | [diff] [blame] | 291 | case tok::kw_try:                 // C++ 15: try-block | 
| Richard Smith | c202b28 | 2012-04-14 00:33:13 +0000 | [diff] [blame] | 292 | return ParseCXXTryBlock(); | 
| John Wiegley | 1c0675e | 2011-04-28 01:08:34 +0000 | [diff] [blame] | 293 |  | 
|  | 294 | case tok::kw___try: | 
| Richard Smith | c202b28 | 2012-04-14 00:33:13 +0000 | [diff] [blame] | 295 | ProhibitAttributes(Attrs); // TODO: is it correct? | 
|  | 296 | return ParseSEHTryBlock(); | 
| Eli Friedman | ec52f92 | 2012-02-23 23:47:16 +0000 | [diff] [blame] | 297 |  | 
| Nico Weber | c7d0596 | 2014-07-06 22:32:59 +0000 | [diff] [blame] | 298 | case tok::kw___leave: | 
|  | 299 | Res = ParseSEHLeaveStatement(); | 
|  | 300 | SemiError = "__leave"; | 
|  | 301 | break; | 
|  | 302 |  | 
| Eli Friedman | ec52f92 | 2012-02-23 23:47:16 +0000 | [diff] [blame] | 303 | case tok::annot_pragma_vis: | 
| Richard Smith | c202b28 | 2012-04-14 00:33:13 +0000 | [diff] [blame] | 304 | ProhibitAttributes(Attrs); | 
| Eli Friedman | ec52f92 | 2012-02-23 23:47:16 +0000 | [diff] [blame] | 305 | HandlePragmaVisibility(); | 
|  | 306 | return StmtEmpty(); | 
|  | 307 |  | 
|  | 308 | case tok::annot_pragma_pack: | 
| Richard Smith | c202b28 | 2012-04-14 00:33:13 +0000 | [diff] [blame] | 309 | ProhibitAttributes(Attrs); | 
| Eli Friedman | ec52f92 | 2012-02-23 23:47:16 +0000 | [diff] [blame] | 310 | HandlePragmaPack(); | 
|  | 311 | return StmtEmpty(); | 
| Eli Friedman | 68be164 | 2012-10-04 02:36:51 +0000 | [diff] [blame] | 312 |  | 
| Eli Friedman | bbbbac6 | 2012-10-09 22:46:54 +0000 | [diff] [blame] | 313 | case tok::annot_pragma_msstruct: | 
|  | 314 | ProhibitAttributes(Attrs); | 
|  | 315 | HandlePragmaMSStruct(); | 
|  | 316 | return StmtEmpty(); | 
|  | 317 |  | 
| Eli Friedman | ae8ee25 | 2012-10-08 23:52:38 +0000 | [diff] [blame] | 318 | case tok::annot_pragma_align: | 
|  | 319 | ProhibitAttributes(Attrs); | 
|  | 320 | HandlePragmaAlign(); | 
|  | 321 | return StmtEmpty(); | 
|  | 322 |  | 
| Eli Friedman | bbbbac6 | 2012-10-09 22:46:54 +0000 | [diff] [blame] | 323 | case tok::annot_pragma_weak: | 
|  | 324 | ProhibitAttributes(Attrs); | 
|  | 325 | HandlePragmaWeak(); | 
|  | 326 | return StmtEmpty(); | 
|  | 327 |  | 
|  | 328 | case tok::annot_pragma_weakalias: | 
|  | 329 | ProhibitAttributes(Attrs); | 
|  | 330 | HandlePragmaWeakAlias(); | 
|  | 331 | return StmtEmpty(); | 
|  | 332 |  | 
|  | 333 | case tok::annot_pragma_redefine_extname: | 
|  | 334 | ProhibitAttributes(Attrs); | 
|  | 335 | HandlePragmaRedefineExtname(); | 
|  | 336 | return StmtEmpty(); | 
|  | 337 |  | 
| Eli Friedman | 68be164 | 2012-10-04 02:36:51 +0000 | [diff] [blame] | 338 | case tok::annot_pragma_fp_contract: | 
| Richard Smith | ca9b0b6 | 2013-11-15 21:10:54 +0000 | [diff] [blame] | 339 | ProhibitAttributes(Attrs); | 
| Lang Hames | a930e71 | 2012-10-21 01:10:01 +0000 | [diff] [blame] | 340 | Diag(Tok, diag::err_pragma_fp_contract_scope); | 
| Richard Smith | af3b325 | 2017-05-18 19:21:48 +0000 | [diff] [blame] | 341 | ConsumeAnnotationToken(); | 
| Lang Hames | a930e71 | 2012-10-21 01:10:01 +0000 | [diff] [blame] | 342 | return StmtError(); | 
|  | 343 |  | 
| Adam Nemet | 60d3264 | 2017-04-04 21:18:36 +0000 | [diff] [blame] | 344 | case tok::annot_pragma_fp: | 
|  | 345 | ProhibitAttributes(Attrs); | 
|  | 346 | Diag(Tok, diag::err_pragma_fp_scope); | 
| Richard Smith | af3b325 | 2017-05-18 19:21:48 +0000 | [diff] [blame] | 347 | ConsumeAnnotationToken(); | 
| Adam Nemet | 60d3264 | 2017-04-04 21:18:36 +0000 | [diff] [blame] | 348 | return StmtError(); | 
|  | 349 |  | 
| Kevin P. Neal | 2c0bc8b | 2018-08-14 17:06:56 +0000 | [diff] [blame] | 350 | case tok::annot_pragma_fenv_access: | 
|  | 351 | ProhibitAttributes(Attrs); | 
|  | 352 | HandlePragmaFEnvAccess(); | 
|  | 353 | return StmtEmpty(); | 
|  | 354 |  | 
| Eli Friedman | 68be164 | 2012-10-04 02:36:51 +0000 | [diff] [blame] | 355 | case tok::annot_pragma_opencl_extension: | 
|  | 356 | ProhibitAttributes(Attrs); | 
|  | 357 | HandlePragmaOpenCLExtension(); | 
|  | 358 | return StmtEmpty(); | 
| Alexey Bataev | a769e07 | 2013-03-22 06:34:35 +0000 | [diff] [blame] | 359 |  | 
| Tareq A. Siraj | 0de0dd4 | 2013-04-16 18:41:26 +0000 | [diff] [blame] | 360 | case tok::annot_pragma_captured: | 
| Richard Smith | 12a41bd | 2013-09-16 21:17:44 +0000 | [diff] [blame] | 361 | ProhibitAttributes(Attrs); | 
| Tareq A. Siraj | 0de0dd4 | 2013-04-16 18:41:26 +0000 | [diff] [blame] | 362 | return HandlePragmaCaptured(); | 
|  | 363 |  | 
| Alexey Bataev | a769e07 | 2013-03-22 06:34:35 +0000 | [diff] [blame] | 364 | case tok::annot_pragma_openmp: | 
| Richard Smith | 12a41bd | 2013-09-16 21:17:44 +0000 | [diff] [blame] | 365 | ProhibitAttributes(Attrs); | 
| Richard Smith | a6e8d5e | 2019-02-15 00:27:53 +0000 | [diff] [blame] | 366 | return ParseOpenMPDeclarativeOrExecutableDirective(StmtCtx); | 
| Alexey Bataev | 5ec3eb1 | 2013-07-19 03:13:43 +0000 | [diff] [blame] | 367 |  | 
| David Majnemer | 4bb0980 | 2014-02-10 19:50:15 +0000 | [diff] [blame] | 368 | case tok::annot_pragma_ms_pointers_to_members: | 
|  | 369 | ProhibitAttributes(Attrs); | 
|  | 370 | HandlePragmaMSPointersToMembers(); | 
|  | 371 | return StmtEmpty(); | 
|  | 372 |  | 
| Warren Hunt | c3b1896 | 2014-04-08 22:30:47 +0000 | [diff] [blame] | 373 | case tok::annot_pragma_ms_pragma: | 
|  | 374 | ProhibitAttributes(Attrs); | 
|  | 375 | HandlePragmaMSPragma(); | 
|  | 376 | return StmtEmpty(); | 
| Aaron Ballman | b06b15a | 2014-06-06 12:40:24 +0000 | [diff] [blame] | 377 |  | 
| Alexey Bataev | 3d42f34 | 2015-11-20 07:02:57 +0000 | [diff] [blame] | 378 | case tok::annot_pragma_ms_vtordisp: | 
|  | 379 | ProhibitAttributes(Attrs); | 
|  | 380 | HandlePragmaMSVtorDisp(); | 
|  | 381 | return StmtEmpty(); | 
|  | 382 |  | 
| Aaron Ballman | b06b15a | 2014-06-06 12:40:24 +0000 | [diff] [blame] | 383 | case tok::annot_pragma_loop_hint: | 
|  | 384 | ProhibitAttributes(Attrs); | 
| Richard Smith | a6e8d5e | 2019-02-15 00:27:53 +0000 | [diff] [blame] | 385 | return ParsePragmaLoopHint(Stmts, StmtCtx, TrailingElseLoc, Attrs); | 
| Richard Smith | ba3a4f9 | 2016-01-12 21:59:26 +0000 | [diff] [blame] | 386 |  | 
|  | 387 | case tok::annot_pragma_dump: | 
|  | 388 | HandlePragmaDump(); | 
|  | 389 | return StmtEmpty(); | 
| Alex Lorenz | 9e7bf16 | 2017-04-18 14:33:39 +0000 | [diff] [blame] | 390 |  | 
|  | 391 | case tok::annot_pragma_attribute: | 
|  | 392 | HandlePragmaAttribute(); | 
|  | 393 | return StmtEmpty(); | 
| Sebastian Redl | b219c90 | 2008-12-21 16:41:36 +0000 | [diff] [blame] | 394 | } | 
|  | 395 |  | 
| Chris Lattner | 503fadc | 2006-08-10 05:45:44 +0000 | [diff] [blame] | 396 | // If we reached this code, the statement must end in a semicolon. | 
| Alp Toker | 9765056 | 2014-01-10 11:19:30 +0000 | [diff] [blame] | 397 | if (!TryConsumeToken(tok::semi) && !Res.isInvalid()) { | 
| Chris Lattner | 8e3eed0 | 2009-06-14 00:23:56 +0000 | [diff] [blame] | 398 | // If the result was valid, then we do want to diagnose this.  Use | 
|  | 399 | // ExpectAndConsume to emit the diagnostic, even though we know it won't | 
|  | 400 | // succeed. | 
|  | 401 | ExpectAndConsume(tok::semi, diag::err_expected_semi_after_stmt, SemiError); | 
| Chris Lattner | 0046de1 | 2008-11-13 18:52:53 +0000 | [diff] [blame] | 402 | // Skip until we see a } or ;, but don't eat it. | 
| Alexey Bataev | ee6507d | 2013-11-18 08:17:37 +0000 | [diff] [blame] | 403 | SkipUntil(tok::r_brace, StopAtSemi | StopBeforeMatch); | 
| Chris Lattner | 503fadc | 2006-08-10 05:45:44 +0000 | [diff] [blame] | 404 | } | 
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 405 |  | 
| Benjamin Kramer | 62b95d8 | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 406 | return Res; | 
| Chris Lattner | 0ccd51e | 2006-08-09 05:47:47 +0000 | [diff] [blame] | 407 | } | 
|  | 408 |  | 
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 409 | /// Parse an expression statement. | 
| Richard Smith | a6e8d5e | 2019-02-15 00:27:53 +0000 | [diff] [blame] | 410 | StmtResult Parser::ParseExprStatement(ParsedStmtContext StmtCtx) { | 
| Douglas Gregor | 0e7dde5 | 2011-04-24 05:37:28 +0000 | [diff] [blame] | 411 | // If a case keyword is missing, this is where it should be inserted. | 
|  | 412 | Token OldToken = Tok; | 
| NAKAMURA Takumi | 82a3511 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 413 |  | 
| Alex Lorenz | f0b4e5d | 2016-10-18 10:55:01 +0000 | [diff] [blame] | 414 | ExprStatementTokLoc = Tok.getLocation(); | 
|  | 415 |  | 
| Douglas Gregor | 0e7dde5 | 2011-04-24 05:37:28 +0000 | [diff] [blame] | 416 | // expression[opt] ';' | 
| Douglas Gregor | da6c89d | 2011-04-27 06:18:01 +0000 | [diff] [blame] | 417 | ExprResult Expr(ParseExpression()); | 
| Douglas Gregor | 0e7dde5 | 2011-04-24 05:37:28 +0000 | [diff] [blame] | 418 | if (Expr.isInvalid()) { | 
|  | 419 | // If the expression is invalid, skip ahead to the next semicolon or '}'. | 
|  | 420 | // Not doing this opens us up to the possibility of infinite loops if | 
|  | 421 | // ParseExpression does not consume any tokens. | 
| Alexey Bataev | ee6507d | 2013-11-18 08:17:37 +0000 | [diff] [blame] | 422 | SkipUntil(tok::r_brace, StopAtSemi | StopBeforeMatch); | 
| Douglas Gregor | 0e7dde5 | 2011-04-24 05:37:28 +0000 | [diff] [blame] | 423 | if (Tok.is(tok::semi)) | 
|  | 424 | ConsumeToken(); | 
| John McCall | eaef89b | 2013-03-22 02:10:40 +0000 | [diff] [blame] | 425 | return Actions.ActOnExprStmtError(); | 
| Douglas Gregor | 0e7dde5 | 2011-04-24 05:37:28 +0000 | [diff] [blame] | 426 | } | 
| NAKAMURA Takumi | 82a3511 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 427 |  | 
| Douglas Gregor | 0e7dde5 | 2011-04-24 05:37:28 +0000 | [diff] [blame] | 428 | if (Tok.is(tok::colon) && getCurScope()->isSwitchScope() && | 
|  | 429 | Actions.CheckCaseExpression(Expr.get())) { | 
|  | 430 | // If a constant expression is followed by a colon inside a switch block, | 
|  | 431 | // suggest a missing case keyword. | 
|  | 432 | Diag(OldToken, diag::err_expected_case_before_expression) | 
|  | 433 | << FixItHint::CreateInsertion(OldToken.getLocation(), "case "); | 
| NAKAMURA Takumi | 82a3511 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 434 |  | 
| Douglas Gregor | 0e7dde5 | 2011-04-24 05:37:28 +0000 | [diff] [blame] | 435 | // Recover parsing as a case statement. | 
| Richard Smith | a6e8d5e | 2019-02-15 00:27:53 +0000 | [diff] [blame] | 436 | return ParseCaseStatement(StmtCtx, /*MissingCase=*/true, Expr); | 
| Douglas Gregor | 0e7dde5 | 2011-04-24 05:37:28 +0000 | [diff] [blame] | 437 | } | 
| NAKAMURA Takumi | 82a3511 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 438 |  | 
| Douglas Gregor | 0e7dde5 | 2011-04-24 05:37:28 +0000 | [diff] [blame] | 439 | // Otherwise, eat the semicolon. | 
|  | 440 | ExpectAndConsumeSemi(diag::err_expected_semi_after_expr); | 
| Richard Smith | a6e8d5e | 2019-02-15 00:27:53 +0000 | [diff] [blame] | 441 | return handleExprStmt(Expr, StmtCtx); | 
| John Wiegley | 1c0675e | 2011-04-28 01:08:34 +0000 | [diff] [blame] | 442 | } | 
| Douglas Gregor | 0e7dde5 | 2011-04-24 05:37:28 +0000 | [diff] [blame] | 443 |  | 
| John Wiegley | 1c0675e | 2011-04-28 01:08:34 +0000 | [diff] [blame] | 444 | /// ParseSEHTryBlockCommon | 
|  | 445 | /// | 
|  | 446 | /// seh-try-block: | 
|  | 447 | ///   '__try' compound-statement seh-handler | 
|  | 448 | /// | 
|  | 449 | /// seh-handler: | 
|  | 450 | ///   seh-except-block | 
|  | 451 | ///   seh-finally-block | 
|  | 452 | /// | 
| Nico Weber | dd25674 | 2015-02-25 01:43:27 +0000 | [diff] [blame] | 453 | StmtResult Parser::ParseSEHTryBlock() { | 
|  | 454 | assert(Tok.is(tok::kw___try) && "Expected '__try'"); | 
|  | 455 | SourceLocation TryLoc = ConsumeToken(); | 
|  | 456 |  | 
| Nico Weber | fc3fe4f | 2015-02-25 02:22:06 +0000 | [diff] [blame] | 457 | if (Tok.isNot(tok::l_brace)) | 
| Alp Toker | ec54327 | 2013-12-24 09:48:30 +0000 | [diff] [blame] | 458 | return StmtError(Diag(Tok, diag::err_expected) << tok::l_brace); | 
| John Wiegley | 1c0675e | 2011-04-28 01:08:34 +0000 | [diff] [blame] | 459 |  | 
| Momchil Velikov | 57c681f | 2017-08-10 15:43:06 +0000 | [diff] [blame] | 460 | StmtResult TryBlock(ParseCompoundStatement( | 
|  | 461 | /*isStmtExpr=*/false, | 
|  | 462 | Scope::DeclScope | Scope::CompoundStmtScope | Scope::SEHTryScope)); | 
|  | 463 | if (TryBlock.isInvalid()) | 
| Benjamin Kramer | 62b95d8 | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 464 | return TryBlock; | 
| John Wiegley | 1c0675e | 2011-04-28 01:08:34 +0000 | [diff] [blame] | 465 |  | 
|  | 466 | StmtResult Handler; | 
| Richard Smith | c202b28 | 2012-04-14 00:33:13 +0000 | [diff] [blame] | 467 | if (Tok.is(tok::identifier) && | 
| Douglas Gregor | 60060d6 | 2011-10-21 03:57:52 +0000 | [diff] [blame] | 468 | Tok.getIdentifierInfo() == getSEHExceptKeyword()) { | 
| John Wiegley | 1c0675e | 2011-04-28 01:08:34 +0000 | [diff] [blame] | 469 | SourceLocation Loc = ConsumeToken(); | 
|  | 470 | Handler = ParseSEHExceptBlock(Loc); | 
|  | 471 | } else if (Tok.is(tok::kw___finally)) { | 
|  | 472 | SourceLocation Loc = ConsumeToken(); | 
|  | 473 | Handler = ParseSEHFinallyBlock(Loc); | 
|  | 474 | } else { | 
| Nico Weber | fc3fe4f | 2015-02-25 02:22:06 +0000 | [diff] [blame] | 475 | return StmtError(Diag(Tok, diag::err_seh_expected_handler)); | 
| John Wiegley | 1c0675e | 2011-04-28 01:08:34 +0000 | [diff] [blame] | 476 | } | 
|  | 477 |  | 
|  | 478 | if(Handler.isInvalid()) | 
| Benjamin Kramer | 62b95d8 | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 479 | return Handler; | 
| John Wiegley | 1c0675e | 2011-04-28 01:08:34 +0000 | [diff] [blame] | 480 |  | 
|  | 481 | return Actions.ActOnSEHTryBlock(false /* IsCXXTry */, | 
|  | 482 | TryLoc, | 
| Nikola Smiljanic | 01a7598 | 2014-05-29 10:55:11 +0000 | [diff] [blame] | 483 | TryBlock.get(), | 
| Warren Hunt | f6be4cb | 2014-07-25 20:52:51 +0000 | [diff] [blame] | 484 | Handler.get()); | 
| John Wiegley | 1c0675e | 2011-04-28 01:08:34 +0000 | [diff] [blame] | 485 | } | 
|  | 486 |  | 
|  | 487 | /// ParseSEHExceptBlock - Handle __except | 
|  | 488 | /// | 
|  | 489 | /// seh-except-block: | 
|  | 490 | ///   '__except' '(' seh-filter-expression ')' compound-statement | 
|  | 491 | /// | 
|  | 492 | StmtResult Parser::ParseSEHExceptBlock(SourceLocation ExceptLoc) { | 
|  | 493 | PoisonIdentifierRAIIObject raii(Ident__exception_code, false), | 
|  | 494 | raii2(Ident___exception_code, false), | 
|  | 495 | raii3(Ident_GetExceptionCode, false); | 
|  | 496 |  | 
| Alp Toker | 383d2c4 | 2014-01-01 03:08:43 +0000 | [diff] [blame] | 497 | if (ExpectAndConsume(tok::l_paren)) | 
| John Wiegley | 1c0675e | 2011-04-28 01:08:34 +0000 | [diff] [blame] | 498 | return StmtError(); | 
|  | 499 |  | 
| Reid Kleckner | 1d59f99 | 2015-01-22 01:36:17 +0000 | [diff] [blame] | 500 | ParseScope ExpectScope(this, Scope::DeclScope | Scope::ControlScope | | 
|  | 501 | Scope::SEHExceptScope); | 
| John Wiegley | 1c0675e | 2011-04-28 01:08:34 +0000 | [diff] [blame] | 502 |  | 
| David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 503 | if (getLangOpts().Borland) { | 
| Francois Pichet | bfaf477 | 2011-04-28 03:14:31 +0000 | [diff] [blame] | 504 | Ident__exception_info->setIsPoisoned(false); | 
|  | 505 | Ident___exception_info->setIsPoisoned(false); | 
|  | 506 | Ident_GetExceptionInfo->setIsPoisoned(false); | 
|  | 507 | } | 
| Reid Kleckner | 1d59f99 | 2015-01-22 01:36:17 +0000 | [diff] [blame] | 508 |  | 
|  | 509 | ExprResult FilterExpr; | 
|  | 510 | { | 
|  | 511 | ParseScopeFlags FilterScope(this, getCurScope()->getFlags() | | 
|  | 512 | Scope::SEHFilterScope); | 
| Reid Kleckner | 85368fb | 2015-04-02 22:09:32 +0000 | [diff] [blame] | 513 | FilterExpr = Actions.CorrectDelayedTyposInExpr(ParseExpression()); | 
| Reid Kleckner | 1d59f99 | 2015-01-22 01:36:17 +0000 | [diff] [blame] | 514 | } | 
| Francois Pichet | bfaf477 | 2011-04-28 03:14:31 +0000 | [diff] [blame] | 515 |  | 
| David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 516 | if (getLangOpts().Borland) { | 
| Francois Pichet | bfaf477 | 2011-04-28 03:14:31 +0000 | [diff] [blame] | 517 | Ident__exception_info->setIsPoisoned(true); | 
|  | 518 | Ident___exception_info->setIsPoisoned(true); | 
|  | 519 | Ident_GetExceptionInfo->setIsPoisoned(true); | 
|  | 520 | } | 
| John Wiegley | 1c0675e | 2011-04-28 01:08:34 +0000 | [diff] [blame] | 521 |  | 
|  | 522 | if(FilterExpr.isInvalid()) | 
|  | 523 | return StmtError(); | 
|  | 524 |  | 
| Alp Toker | 383d2c4 | 2014-01-01 03:08:43 +0000 | [diff] [blame] | 525 | if (ExpectAndConsume(tok::r_paren)) | 
| John Wiegley | 1c0675e | 2011-04-28 01:08:34 +0000 | [diff] [blame] | 526 | return StmtError(); | 
|  | 527 |  | 
| Nico Weber | fc3fe4f | 2015-02-25 02:22:06 +0000 | [diff] [blame] | 528 | if (Tok.isNot(tok::l_brace)) | 
|  | 529 | return StmtError(Diag(Tok, diag::err_expected) << tok::l_brace); | 
|  | 530 |  | 
| Richard Smith | c202b28 | 2012-04-14 00:33:13 +0000 | [diff] [blame] | 531 | StmtResult Block(ParseCompoundStatement()); | 
| John Wiegley | 1c0675e | 2011-04-28 01:08:34 +0000 | [diff] [blame] | 532 |  | 
|  | 533 | if(Block.isInvalid()) | 
| Benjamin Kramer | 62b95d8 | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 534 | return Block; | 
| John Wiegley | 1c0675e | 2011-04-28 01:08:34 +0000 | [diff] [blame] | 535 |  | 
| Nikola Smiljanic | 01a7598 | 2014-05-29 10:55:11 +0000 | [diff] [blame] | 536 | return Actions.ActOnSEHExceptBlock(ExceptLoc, FilterExpr.get(), Block.get()); | 
| John Wiegley | 1c0675e | 2011-04-28 01:08:34 +0000 | [diff] [blame] | 537 | } | 
|  | 538 |  | 
|  | 539 | /// ParseSEHFinallyBlock - Handle __finally | 
|  | 540 | /// | 
|  | 541 | /// seh-finally-block: | 
|  | 542 | ///   '__finally' compound-statement | 
|  | 543 | /// | 
| Nico Weber | d64657f | 2015-03-09 02:47:59 +0000 | [diff] [blame] | 544 | StmtResult Parser::ParseSEHFinallyBlock(SourceLocation FinallyLoc) { | 
| John Wiegley | 1c0675e | 2011-04-28 01:08:34 +0000 | [diff] [blame] | 545 | PoisonIdentifierRAIIObject raii(Ident__abnormal_termination, false), | 
|  | 546 | raii2(Ident___abnormal_termination, false), | 
|  | 547 | raii3(Ident_AbnormalTermination, false); | 
|  | 548 |  | 
| Nico Weber | fc3fe4f | 2015-02-25 02:22:06 +0000 | [diff] [blame] | 549 | if (Tok.isNot(tok::l_brace)) | 
|  | 550 | return StmtError(Diag(Tok, diag::err_expected) << tok::l_brace); | 
|  | 551 |  | 
| Nico Weber | d64657f | 2015-03-09 02:47:59 +0000 | [diff] [blame] | 552 | ParseScope FinallyScope(this, 0); | 
|  | 553 | Actions.ActOnStartSEHFinallyBlock(); | 
|  | 554 |  | 
| Richard Smith | c202b28 | 2012-04-14 00:33:13 +0000 | [diff] [blame] | 555 | StmtResult Block(ParseCompoundStatement()); | 
| Nico Weber | ce90329 | 2015-03-09 03:17:15 +0000 | [diff] [blame] | 556 | if(Block.isInvalid()) { | 
|  | 557 | Actions.ActOnAbortSEHFinallyBlock(); | 
| Benjamin Kramer | 62b95d8 | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 558 | return Block; | 
| Nico Weber | ce90329 | 2015-03-09 03:17:15 +0000 | [diff] [blame] | 559 | } | 
| John Wiegley | 1c0675e | 2011-04-28 01:08:34 +0000 | [diff] [blame] | 560 |  | 
| Nico Weber | d64657f | 2015-03-09 02:47:59 +0000 | [diff] [blame] | 561 | return Actions.ActOnFinishSEHFinallyBlock(FinallyLoc, Block.get()); | 
| Douglas Gregor | 0e7dde5 | 2011-04-24 05:37:28 +0000 | [diff] [blame] | 562 | } | 
|  | 563 |  | 
| Nico Weber | c7d0596 | 2014-07-06 22:32:59 +0000 | [diff] [blame] | 564 | /// Handle __leave | 
|  | 565 | /// | 
|  | 566 | /// seh-leave-statement: | 
|  | 567 | ///   '__leave' ';' | 
|  | 568 | /// | 
|  | 569 | StmtResult Parser::ParseSEHLeaveStatement() { | 
|  | 570 | SourceLocation LeaveLoc = ConsumeToken();  // eat the '__leave'. | 
|  | 571 | return Actions.ActOnSEHLeaveStmt(LeaveLoc, getCurScope()); | 
|  | 572 | } | 
|  | 573 |  | 
| Argyrios Kyrtzidis | 832e898 | 2008-07-09 22:53:07 +0000 | [diff] [blame] | 574 | /// ParseLabeledStatement - We have an identifier and a ':' after it. | 
| Chris Lattner | 6dfd978 | 2006-08-10 18:31:37 +0000 | [diff] [blame] | 575 | /// | 
|  | 576 | ///       labeled-statement: | 
|  | 577 | ///         identifier ':' statement | 
| Chris Lattner | e37e233 | 2006-08-15 04:50:22 +0000 | [diff] [blame] | 578 | /// [GNU]   identifier ':' attributes[opt] statement | 
| Argyrios Kyrtzidis | 832e898 | 2008-07-09 22:53:07 +0000 | [diff] [blame] | 579 | /// | 
| Richard Smith | a6e8d5e | 2019-02-15 00:27:53 +0000 | [diff] [blame] | 580 | StmtResult Parser::ParseLabeledStatement(ParsedAttributesWithRange &attrs, | 
|  | 581 | ParsedStmtContext StmtCtx) { | 
| Argyrios Kyrtzidis | 832e898 | 2008-07-09 22:53:07 +0000 | [diff] [blame] | 582 | assert(Tok.is(tok::identifier) && Tok.getIdentifierInfo() && | 
|  | 583 | "Not an identifier!"); | 
|  | 584 |  | 
| Richard Smith | a6e8d5e | 2019-02-15 00:27:53 +0000 | [diff] [blame] | 585 | // The substatement is always a 'statement', not a 'declaration', but is | 
|  | 586 | // otherwise in the same context as the labeled-statement. | 
|  | 587 | StmtCtx &= ~ParsedStmtContext::AllowDeclarationsInC; | 
|  | 588 |  | 
| Argyrios Kyrtzidis | 832e898 | 2008-07-09 22:53:07 +0000 | [diff] [blame] | 589 | Token IdentTok = Tok;  // Save the whole token. | 
|  | 590 | ConsumeToken();  // eat the identifier. | 
|  | 591 |  | 
|  | 592 | assert(Tok.is(tok::colon) && "Not a label!"); | 
| Sebastian Redl | 042ad95 | 2008-12-11 19:30:53 +0000 | [diff] [blame] | 593 |  | 
| Argyrios Kyrtzidis | 832e898 | 2008-07-09 22:53:07 +0000 | [diff] [blame] | 594 | // identifier ':' statement | 
|  | 595 | SourceLocation ColonLoc = ConsumeToken(); | 
|  | 596 |  | 
| Richard Smith | a3e01cf | 2013-11-15 22:45:29 +0000 | [diff] [blame] | 597 | // Read label attributes, if present. | 
|  | 598 | StmtResult SubStmt; | 
|  | 599 | if (Tok.is(tok::kw___attribute)) { | 
|  | 600 | ParsedAttributesWithRange TempAttrs(AttrFactory); | 
|  | 601 | ParseGNUAttributes(TempAttrs); | 
| Argyrios Kyrtzidis | 832e898 | 2008-07-09 22:53:07 +0000 | [diff] [blame] | 602 |  | 
| Richard Smith | a3e01cf | 2013-11-15 22:45:29 +0000 | [diff] [blame] | 603 | // In C++, GNU attributes only apply to the label if they are followed by a | 
|  | 604 | // semicolon, to disambiguate label attributes from attributes on a labeled | 
|  | 605 | // declaration. | 
|  | 606 | // | 
|  | 607 | // This doesn't quite match what GCC does; if the attribute list is empty | 
|  | 608 | // and followed by a semicolon, GCC will reject (it appears to parse the | 
|  | 609 | // attributes as part of a statement in that case). That looks like a bug. | 
|  | 610 | if (!getLangOpts().CPlusPlus || Tok.is(tok::semi)) | 
|  | 611 | attrs.takeAllFrom(TempAttrs); | 
|  | 612 | else if (isDeclarationStatement()) { | 
|  | 613 | StmtVector Stmts; | 
|  | 614 | // FIXME: We should do this whether or not we have a declaration | 
|  | 615 | // statement, but that doesn't work correctly (because ProhibitAttributes | 
|  | 616 | // can't handle GNU attributes), so only call it in the one case where | 
|  | 617 | // GNU attributes are allowed. | 
| Richard Smith | a6e8d5e | 2019-02-15 00:27:53 +0000 | [diff] [blame] | 618 | SubStmt = ParseStatementOrDeclarationAfterAttributes(Stmts, StmtCtx, | 
|  | 619 | nullptr, TempAttrs); | 
| Richard Smith | a3e01cf | 2013-11-15 22:45:29 +0000 | [diff] [blame] | 620 | if (!TempAttrs.empty() && !SubStmt.isInvalid()) | 
| Erich Keane | c480f30 | 2018-07-12 21:09:05 +0000 | [diff] [blame] | 621 | SubStmt = Actions.ProcessStmtAttributes(SubStmt.get(), TempAttrs, | 
|  | 622 | TempAttrs.Range); | 
| Richard Smith | a3e01cf | 2013-11-15 22:45:29 +0000 | [diff] [blame] | 623 | } else { | 
| Alp Toker | 383d2c4 | 2014-01-01 03:08:43 +0000 | [diff] [blame] | 624 | Diag(Tok, diag::err_expected_after) << "__attribute__" << tok::semi; | 
| Richard Smith | a3e01cf | 2013-11-15 22:45:29 +0000 | [diff] [blame] | 625 | } | 
|  | 626 | } | 
|  | 627 |  | 
|  | 628 | // If we've not parsed a statement yet, parse one now. | 
|  | 629 | if (!SubStmt.isInvalid() && !SubStmt.isUsable()) | 
| Richard Smith | a6e8d5e | 2019-02-15 00:27:53 +0000 | [diff] [blame] | 630 | SubStmt = ParseStatement(nullptr, StmtCtx); | 
| Sebastian Redl | 17f2c7d | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 631 |  | 
| Argyrios Kyrtzidis | 832e898 | 2008-07-09 22:53:07 +0000 | [diff] [blame] | 632 | // Broken substmt shouldn't prevent the label from being added to the AST. | 
| Sebastian Redl | 17f2c7d | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 633 | if (SubStmt.isInvalid()) | 
| Argyrios Kyrtzidis | 832e898 | 2008-07-09 22:53:07 +0000 | [diff] [blame] | 634 | SubStmt = Actions.ActOnNullStmt(ColonLoc); | 
| NAKAMURA Takumi | 82a3511 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 635 |  | 
| Chris Lattner | ebb5c6c | 2011-02-18 01:27:55 +0000 | [diff] [blame] | 636 | LabelDecl *LD = Actions.LookupOrCreateLabel(IdentTok.getIdentifierInfo(), | 
|  | 637 | IdentTok.getLocation()); | 
| Erich Keane | c480f30 | 2018-07-12 21:09:05 +0000 | [diff] [blame] | 638 | Actions.ProcessDeclAttributeList(Actions.CurScope, LD, attrs); | 
|  | 639 | attrs.clear(); | 
| NAKAMURA Takumi | 82a3511 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 640 |  | 
| Chris Lattner | ebb5c6c | 2011-02-18 01:27:55 +0000 | [diff] [blame] | 641 | return Actions.ActOnLabelStmt(IdentTok.getLocation(), LD, ColonLoc, | 
|  | 642 | SubStmt.get()); | 
| Argyrios Kyrtzidis | 832e898 | 2008-07-09 22:53:07 +0000 | [diff] [blame] | 643 | } | 
| Chris Lattner | f8afb62 | 2006-08-10 18:26:31 +0000 | [diff] [blame] | 644 |  | 
| Chris Lattner | d2685cf | 2006-08-10 05:59:48 +0000 | [diff] [blame] | 645 | /// ParseCaseStatement | 
|  | 646 | ///       labeled-statement: | 
|  | 647 | ///         'case' constant-expression ':' statement | 
| Chris Lattner | 476c3ad | 2006-08-13 22:09:58 +0000 | [diff] [blame] | 648 | /// [GNU]   'case' constant-expression '...' constant-expression ':' statement | 
| Chris Lattner | 8693a51 | 2006-08-13 21:54:02 +0000 | [diff] [blame] | 649 | /// | 
| Richard Smith | a6e8d5e | 2019-02-15 00:27:53 +0000 | [diff] [blame] | 650 | StmtResult Parser::ParseCaseStatement(ParsedStmtContext StmtCtx, | 
|  | 651 | bool MissingCase, ExprResult Expr) { | 
| Richard Smith | d4257d8 | 2011-04-21 22:48:40 +0000 | [diff] [blame] | 652 | assert((MissingCase || Tok.is(tok::kw_case)) && "Not a case stmt!"); | 
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 653 |  | 
| Richard Smith | a6e8d5e | 2019-02-15 00:27:53 +0000 | [diff] [blame] | 654 | // The substatement is always a 'statement', not a 'declaration', but is | 
|  | 655 | // otherwise in the same context as the labeled-statement. | 
|  | 656 | StmtCtx &= ~ParsedStmtContext::AllowDeclarationsInC; | 
|  | 657 |  | 
| Chris Lattner | 34a2209 | 2009-03-04 04:23:07 +0000 | [diff] [blame] | 658 | // It is very very common for code to contain many case statements recursively | 
|  | 659 | // nested, as in (but usually without indentation): | 
|  | 660 | //  case 1: | 
|  | 661 | //    case 2: | 
|  | 662 | //      case 3: | 
|  | 663 | //         case 4: | 
|  | 664 | //           case 5: etc. | 
|  | 665 | // | 
|  | 666 | // Parsing this naively works, but is both inefficient and can cause us to run | 
|  | 667 | // out of stack space in our recursive descent parser.  As a special case, | 
| Chris Lattner | 2b19a658 | 2009-03-04 18:24:58 +0000 | [diff] [blame] | 668 | // flatten this recursion into an iterative loop.  This is complex and gross, | 
| Chris Lattner | 34a2209 | 2009-03-04 04:23:07 +0000 | [diff] [blame] | 669 | // but all the grossness is constrained to ParseCaseStatement (and some | 
| Richard Smith | a3e01cf | 2013-11-15 22:45:29 +0000 | [diff] [blame] | 670 | // weirdness in the actions), so this is just local grossness :). | 
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 671 |  | 
| Chris Lattner | 34a2209 | 2009-03-04 04:23:07 +0000 | [diff] [blame] | 672 | // TopLevelCase - This is the highest level we have parsed.  'case 1' in the | 
|  | 673 | // example above. | 
| John McCall | dadc575 | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 674 | StmtResult TopLevelCase(true); | 
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 675 |  | 
| Chris Lattner | 34a2209 | 2009-03-04 04:23:07 +0000 | [diff] [blame] | 676 | // DeepestParsedCaseStmt - This is the deepest statement we have parsed, which | 
|  | 677 | // gets updated each time a new case is parsed, and whose body is unset so | 
|  | 678 | // far.  When parsing 'case 4', this is the 'case 3' node. | 
| Craig Topper | 161e4db | 2014-05-21 06:02:52 +0000 | [diff] [blame] | 679 | Stmt *DeepestParsedCaseStmt = nullptr; | 
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 680 |  | 
| Chris Lattner | 34a2209 | 2009-03-04 04:23:07 +0000 | [diff] [blame] | 681 | // While we have case statements, eat and stack them. | 
| David Majnemer | 0ac67fa | 2011-06-13 05:50:12 +0000 | [diff] [blame] | 682 | SourceLocation ColonLoc; | 
| Chris Lattner | 34a2209 | 2009-03-04 04:23:07 +0000 | [diff] [blame] | 683 | do { | 
| Richard Trieu | 2c850c0 | 2011-04-21 21:44:26 +0000 | [diff] [blame] | 684 | SourceLocation CaseLoc = MissingCase ? Expr.get()->getExprLoc() : | 
|  | 685 | ConsumeToken();  // eat the 'case'. | 
| Serge Pavlov | 921c2ba | 2014-05-21 14:48:43 +0000 | [diff] [blame] | 686 | ColonLoc = SourceLocation(); | 
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 687 |  | 
| Douglas Gregor | d328d57 | 2009-09-21 18:10:23 +0000 | [diff] [blame] | 688 | if (Tok.is(tok::code_completion)) { | 
| Douglas Gregor | 0be31a2 | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 689 | Actions.CodeCompleteCase(getCurScope()); | 
| Argyrios Kyrtzidis | 5cec2ae | 2011-09-04 03:32:15 +0000 | [diff] [blame] | 690 | cutOffParsing(); | 
|  | 691 | return StmtError(); | 
| Douglas Gregor | d328d57 | 2009-09-21 18:10:23 +0000 | [diff] [blame] | 692 | } | 
| NAKAMURA Takumi | 82a3511 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 693 |  | 
| Chris Lattner | 125c0ee | 2009-12-10 00:38:54 +0000 | [diff] [blame] | 694 | /// We don't want to treat 'case x : y' as a potential typo for 'case x::y'. | 
|  | 695 | /// Disable this form of error recovery while we're parsing the case | 
|  | 696 | /// expression. | 
|  | 697 | ColonProtectionRAIIObject ColonProtection(*this); | 
| NAKAMURA Takumi | 82a3511 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 698 |  | 
| Serge Pavlov | 921c2ba | 2014-05-21 14:48:43 +0000 | [diff] [blame] | 699 | ExprResult LHS; | 
|  | 700 | if (!MissingCase) { | 
| Richard Smith | ef6c43d | 2018-07-26 18:41:30 +0000 | [diff] [blame] | 701 | LHS = ParseCaseExpression(CaseLoc); | 
| Serge Pavlov | 921c2ba | 2014-05-21 14:48:43 +0000 | [diff] [blame] | 702 | if (LHS.isInvalid()) { | 
|  | 703 | // If constant-expression is parsed unsuccessfully, recover by skipping | 
|  | 704 | // current case statement (moving to the colon that ends it). | 
| Richard Smith | ef6c43d | 2018-07-26 18:41:30 +0000 | [diff] [blame] | 705 | if (!SkipUntil(tok::colon, tok::r_brace, StopAtSemi | StopBeforeMatch)) | 
|  | 706 | return StmtError(); | 
| Serge Pavlov | 921c2ba | 2014-05-21 14:48:43 +0000 | [diff] [blame] | 707 | } | 
|  | 708 | } else { | 
|  | 709 | LHS = Expr; | 
|  | 710 | MissingCase = false; | 
| Chris Lattner | 476c3ad | 2006-08-13 22:09:58 +0000 | [diff] [blame] | 711 | } | 
| Sebastian Redl | 17f2c7d | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 712 |  | 
| Chris Lattner | 34a2209 | 2009-03-04 04:23:07 +0000 | [diff] [blame] | 713 | // GNU case range extension. | 
|  | 714 | SourceLocation DotDotDotLoc; | 
| John McCall | dadc575 | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 715 | ExprResult RHS; | 
| Alp Toker | ec54327 | 2013-12-24 09:48:30 +0000 | [diff] [blame] | 716 | if (TryConsumeToken(tok::ellipsis, DotDotDotLoc)) { | 
|  | 717 | Diag(DotDotDotLoc, diag::ext_gnu_case_range); | 
| Richard Smith | ef6c43d | 2018-07-26 18:41:30 +0000 | [diff] [blame] | 718 | RHS = ParseCaseExpression(CaseLoc); | 
| Chris Lattner | 34a2209 | 2009-03-04 04:23:07 +0000 | [diff] [blame] | 719 | if (RHS.isInvalid()) { | 
| Richard Smith | ef6c43d | 2018-07-26 18:41:30 +0000 | [diff] [blame] | 720 | if (!SkipUntil(tok::colon, tok::r_brace, StopAtSemi | StopBeforeMatch)) | 
|  | 721 | return StmtError(); | 
| Chris Lattner | 34a2209 | 2009-03-04 04:23:07 +0000 | [diff] [blame] | 722 | } | 
|  | 723 | } | 
| NAKAMURA Takumi | 82a3511 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 724 |  | 
| Chris Lattner | 125c0ee | 2009-12-10 00:38:54 +0000 | [diff] [blame] | 725 | ColonProtection.restore(); | 
| Sebastian Redl | 042ad95 | 2008-12-11 19:30:53 +0000 | [diff] [blame] | 726 |  | 
| Alp Toker | ec54327 | 2013-12-24 09:48:30 +0000 | [diff] [blame] | 727 | if (TryConsumeToken(tok::colon, ColonLoc)) { | 
| Serge Pavlov | 6a7ffbe | 2014-04-13 16:52:03 +0000 | [diff] [blame] | 728 | } else if (TryConsumeToken(tok::semi, ColonLoc) || | 
|  | 729 | TryConsumeToken(tok::coloncolon, ColonLoc)) { | 
|  | 730 | // Treat "case blah;" or "case blah::" as a typo for "case blah:". | 
| Alp Toker | ec54327 | 2013-12-24 09:48:30 +0000 | [diff] [blame] | 731 | Diag(ColonLoc, diag::err_expected_after) | 
|  | 732 | << "'case'" << tok::colon | 
|  | 733 | << FixItHint::CreateReplacement(ColonLoc, ":"); | 
| John McCall | 0140bfe | 2011-01-22 09:28:32 +0000 | [diff] [blame] | 734 | } else { | 
| Douglas Gregor | 0d0a965 | 2010-12-23 22:56:40 +0000 | [diff] [blame] | 735 | SourceLocation ExpectedLoc = PP.getLocForEndOfToken(PrevTokLocation); | 
| Alp Toker | ec54327 | 2013-12-24 09:48:30 +0000 | [diff] [blame] | 736 | Diag(ExpectedLoc, diag::err_expected_after) | 
|  | 737 | << "'case'" << tok::colon | 
|  | 738 | << FixItHint::CreateInsertion(ExpectedLoc, ":"); | 
| Douglas Gregor | 0d0a965 | 2010-12-23 22:56:40 +0000 | [diff] [blame] | 739 | ColonLoc = ExpectedLoc; | 
| Chris Lattner | 34a2209 | 2009-03-04 04:23:07 +0000 | [diff] [blame] | 740 | } | 
| NAKAMURA Takumi | 82a3511 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 741 |  | 
| John McCall | dadc575 | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 742 | StmtResult Case = | 
| Richard Smith | ef6c43d | 2018-07-26 18:41:30 +0000 | [diff] [blame] | 743 | Actions.ActOnCaseStmt(CaseLoc, LHS, DotDotDotLoc, RHS, ColonLoc); | 
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 744 |  | 
| Chris Lattner | 34a2209 | 2009-03-04 04:23:07 +0000 | [diff] [blame] | 745 | // If we had a sema error parsing this case, then just ignore it and | 
|  | 746 | // continue parsing the sub-stmt. | 
|  | 747 | if (Case.isInvalid()) { | 
|  | 748 | if (TopLevelCase.isInvalid())  // No parsed case stmts. | 
| Richard Smith | a6e8d5e | 2019-02-15 00:27:53 +0000 | [diff] [blame] | 749 | return ParseStatement(/*TrailingElseLoc=*/nullptr, StmtCtx); | 
| Chris Lattner | 34a2209 | 2009-03-04 04:23:07 +0000 | [diff] [blame] | 750 | // Otherwise, just don't add it as a nested case. | 
|  | 751 | } else { | 
|  | 752 | // If this is the first case statement we parsed, it becomes TopLevelCase. | 
|  | 753 | // Otherwise we link it into the current chain. | 
| John McCall | 37ad551 | 2010-08-23 06:44:23 +0000 | [diff] [blame] | 754 | Stmt *NextDeepest = Case.get(); | 
| Chris Lattner | 34a2209 | 2009-03-04 04:23:07 +0000 | [diff] [blame] | 755 | if (TopLevelCase.isInvalid()) | 
| Benjamin Kramer | 62b95d8 | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 756 | TopLevelCase = Case; | 
| Chris Lattner | 34a2209 | 2009-03-04 04:23:07 +0000 | [diff] [blame] | 757 | else | 
| John McCall | b268a28 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 758 | Actions.ActOnCaseStmtBody(DeepestParsedCaseStmt, Case.get()); | 
| Chris Lattner | 34a2209 | 2009-03-04 04:23:07 +0000 | [diff] [blame] | 759 | DeepestParsedCaseStmt = NextDeepest; | 
|  | 760 | } | 
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 761 |  | 
| Chris Lattner | 34a2209 | 2009-03-04 04:23:07 +0000 | [diff] [blame] | 762 | // Handle all case statements. | 
|  | 763 | } while (Tok.is(tok::kw_case)); | 
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 764 |  | 
| Chris Lattner | 34a2209 | 2009-03-04 04:23:07 +0000 | [diff] [blame] | 765 | // If we found a non-case statement, start by parsing it. | 
| John McCall | dadc575 | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 766 | StmtResult SubStmt; | 
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 767 |  | 
| Chris Lattner | 34a2209 | 2009-03-04 04:23:07 +0000 | [diff] [blame] | 768 | if (Tok.isNot(tok::r_brace)) { | 
| Richard Smith | a6e8d5e | 2019-02-15 00:27:53 +0000 | [diff] [blame] | 769 | SubStmt = ParseStatement(/*TrailingElseLoc=*/nullptr, StmtCtx); | 
| Chris Lattner | 34a2209 | 2009-03-04 04:23:07 +0000 | [diff] [blame] | 770 | } else { | 
|  | 771 | // Nicely diagnose the common error "switch (X) { case 4: }", which is | 
| Serge Pavlov | 921c2ba | 2014-05-21 14:48:43 +0000 | [diff] [blame] | 772 | // not valid.  If ColonLoc doesn't point to a valid text location, there was | 
|  | 773 | // another parsing error, so avoid producing extra diagnostics. | 
|  | 774 | if (ColonLoc.isValid()) { | 
|  | 775 | SourceLocation AfterColonLoc = PP.getLocForEndOfToken(ColonLoc); | 
|  | 776 | Diag(AfterColonLoc, diag::err_label_end_of_compound_statement) | 
|  | 777 | << FixItHint::CreateInsertion(AfterColonLoc, " ;"); | 
|  | 778 | } | 
|  | 779 | SubStmt = StmtError(); | 
| Chris Lattner | 30f910e | 2006-10-16 05:52:41 +0000 | [diff] [blame] | 780 | } | 
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 781 |  | 
| Chris Lattner | 34a2209 | 2009-03-04 04:23:07 +0000 | [diff] [blame] | 782 | // Install the body into the most deeply-nested case. | 
| Serge Pavlov | 921c2ba | 2014-05-21 14:48:43 +0000 | [diff] [blame] | 783 | if (DeepestParsedCaseStmt) { | 
|  | 784 | // Broken sub-stmt shouldn't prevent forming the case statement properly. | 
|  | 785 | if (SubStmt.isInvalid()) | 
|  | 786 | SubStmt = Actions.ActOnNullStmt(SourceLocation()); | 
|  | 787 | Actions.ActOnCaseStmtBody(DeepestParsedCaseStmt, SubStmt.get()); | 
|  | 788 | } | 
| Sebastian Redl | 042ad95 | 2008-12-11 19:30:53 +0000 | [diff] [blame] | 789 |  | 
| Chris Lattner | 34a2209 | 2009-03-04 04:23:07 +0000 | [diff] [blame] | 790 | // Return the top level parsed statement tree. | 
| Benjamin Kramer | 62b95d8 | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 791 | return TopLevelCase; | 
| Chris Lattner | d2685cf | 2006-08-10 05:59:48 +0000 | [diff] [blame] | 792 | } | 
|  | 793 |  | 
|  | 794 | /// ParseDefaultStatement | 
|  | 795 | ///       labeled-statement: | 
|  | 796 | ///         'default' ':' statement | 
|  | 797 | /// Note that this does not parse the 'statement' at the end. | 
|  | 798 | /// | 
| Richard Smith | a6e8d5e | 2019-02-15 00:27:53 +0000 | [diff] [blame] | 799 | StmtResult Parser::ParseDefaultStatement(ParsedStmtContext StmtCtx) { | 
| Chris Lattner | feb00b6 | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 800 | assert(Tok.is(tok::kw_default) && "Not a default stmt!"); | 
| Richard Smith | a6e8d5e | 2019-02-15 00:27:53 +0000 | [diff] [blame] | 801 |  | 
|  | 802 | // The substatement is always a 'statement', not a 'declaration', but is | 
|  | 803 | // otherwise in the same context as the labeled-statement. | 
|  | 804 | StmtCtx &= ~ParsedStmtContext::AllowDeclarationsInC; | 
|  | 805 |  | 
| Chris Lattner | af63531 | 2006-10-16 06:06:51 +0000 | [diff] [blame] | 806 | SourceLocation DefaultLoc = ConsumeToken();  // eat the 'default'. | 
| Chris Lattner | d2685cf | 2006-08-10 05:59:48 +0000 | [diff] [blame] | 807 |  | 
| Douglas Gregor | 0d0a965 | 2010-12-23 22:56:40 +0000 | [diff] [blame] | 808 | SourceLocation ColonLoc; | 
| Alp Toker | ec54327 | 2013-12-24 09:48:30 +0000 | [diff] [blame] | 809 | if (TryConsumeToken(tok::colon, ColonLoc)) { | 
| Alp Toker | ec54327 | 2013-12-24 09:48:30 +0000 | [diff] [blame] | 810 | } else if (TryConsumeToken(tok::semi, ColonLoc)) { | 
| Alp Toker | 9765056 | 2014-01-10 11:19:30 +0000 | [diff] [blame] | 811 | // Treat "default;" as a typo for "default:". | 
| Alp Toker | ec54327 | 2013-12-24 09:48:30 +0000 | [diff] [blame] | 812 | Diag(ColonLoc, diag::err_expected_after) | 
|  | 813 | << "'default'" << tok::colon | 
|  | 814 | << FixItHint::CreateReplacement(ColonLoc, ":"); | 
| John McCall | 0140bfe | 2011-01-22 09:28:32 +0000 | [diff] [blame] | 815 | } else { | 
| Douglas Gregor | 0d0a965 | 2010-12-23 22:56:40 +0000 | [diff] [blame] | 816 | SourceLocation ExpectedLoc = PP.getLocForEndOfToken(PrevTokLocation); | 
| Alp Toker | ec54327 | 2013-12-24 09:48:30 +0000 | [diff] [blame] | 817 | Diag(ExpectedLoc, diag::err_expected_after) | 
|  | 818 | << "'default'" << tok::colon | 
|  | 819 | << FixItHint::CreateInsertion(ExpectedLoc, ":"); | 
| Douglas Gregor | 0d0a965 | 2010-12-23 22:56:40 +0000 | [diff] [blame] | 820 | ColonLoc = ExpectedLoc; | 
| Chris Lattner | d2685cf | 2006-08-10 05:59:48 +0000 | [diff] [blame] | 821 | } | 
| NAKAMURA Takumi | 82a3511 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 822 |  | 
| Richard Smith | 1002d10 | 2012-02-17 01:35:32 +0000 | [diff] [blame] | 823 | StmtResult SubStmt; | 
|  | 824 |  | 
|  | 825 | if (Tok.isNot(tok::r_brace)) { | 
| Richard Smith | a6e8d5e | 2019-02-15 00:27:53 +0000 | [diff] [blame] | 826 | SubStmt = ParseStatement(/*TrailingElseLoc=*/nullptr, StmtCtx); | 
| Richard Smith | 1002d10 | 2012-02-17 01:35:32 +0000 | [diff] [blame] | 827 | } else { | 
|  | 828 | // Diagnose the common error "switch (X) {... default: }", which is | 
|  | 829 | // not valid. | 
| David Majnemer | c6a9987 | 2011-06-14 15:24:38 +0000 | [diff] [blame] | 830 | SourceLocation AfterColonLoc = PP.getLocForEndOfToken(ColonLoc); | 
| Richard Smith | 1002d10 | 2012-02-17 01:35:32 +0000 | [diff] [blame] | 831 | Diag(AfterColonLoc, diag::err_label_end_of_compound_statement) | 
|  | 832 | << FixItHint::CreateInsertion(AfterColonLoc, " ;"); | 
|  | 833 | SubStmt = true; | 
| Chris Lattner | 30f910e | 2006-10-16 05:52:41 +0000 | [diff] [blame] | 834 | } | 
|  | 835 |  | 
| Richard Smith | 1002d10 | 2012-02-17 01:35:32 +0000 | [diff] [blame] | 836 | // Broken sub-stmt shouldn't prevent forming the case statement properly. | 
| Sebastian Redl | 17f2c7d | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 837 | if (SubStmt.isInvalid()) | 
| Richard Smith | 1002d10 | 2012-02-17 01:35:32 +0000 | [diff] [blame] | 838 | SubStmt = Actions.ActOnNullStmt(ColonLoc); | 
| Sebastian Redl | 042ad95 | 2008-12-11 19:30:53 +0000 | [diff] [blame] | 839 |  | 
| Sebastian Redl | 1cbb5918 | 2008-12-28 16:13:43 +0000 | [diff] [blame] | 840 | return Actions.ActOnDefaultStmt(DefaultLoc, ColonLoc, | 
| John McCall | b268a28 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 841 | SubStmt.get(), getCurScope()); | 
| Chris Lattner | d2685cf | 2006-08-10 05:59:48 +0000 | [diff] [blame] | 842 | } | 
|  | 843 |  | 
| Richard Smith | c202b28 | 2012-04-14 00:33:13 +0000 | [diff] [blame] | 844 | StmtResult Parser::ParseCompoundStatement(bool isStmtExpr) { | 
| Momchil Velikov | 57c681f | 2017-08-10 15:43:06 +0000 | [diff] [blame] | 845 | return ParseCompoundStatement(isStmtExpr, | 
|  | 846 | Scope::DeclScope | Scope::CompoundStmtScope); | 
| Douglas Gregor | 53e191ed | 2011-07-06 22:04:06 +0000 | [diff] [blame] | 847 | } | 
| Chris Lattner | d2685cf | 2006-08-10 05:59:48 +0000 | [diff] [blame] | 848 |  | 
| Chris Lattner | 0ccd51e | 2006-08-09 05:47:47 +0000 | [diff] [blame] | 849 | /// ParseCompoundStatement - Parse a "{}" block. | 
|  | 850 | /// | 
|  | 851 | ///       compound-statement: [C99 6.8.2] | 
|  | 852 | ///         { block-item-list[opt] } | 
|  | 853 | /// [GNU]   { label-declarations block-item-list } [TODO] | 
|  | 854 | /// | 
|  | 855 | ///       block-item-list: | 
|  | 856 | ///         block-item | 
|  | 857 | ///         block-item-list block-item | 
|  | 858 | /// | 
|  | 859 | ///       block-item: | 
|  | 860 | ///         declaration | 
| Chris Lattner | dfaf9f8 | 2007-08-27 01:01:57 +0000 | [diff] [blame] | 861 | /// [GNU]   '__extension__' declaration | 
| Chris Lattner | 0ccd51e | 2006-08-09 05:47:47 +0000 | [diff] [blame] | 862 | ///         statement | 
| Chris Lattner | 0ccd51e | 2006-08-09 05:47:47 +0000 | [diff] [blame] | 863 | /// | 
|  | 864 | /// [GNU] label-declarations: | 
|  | 865 | /// [GNU]   label-declaration | 
|  | 866 | /// [GNU]   label-declarations label-declaration | 
|  | 867 | /// | 
|  | 868 | /// [GNU] label-declaration: | 
|  | 869 | /// [GNU]   '__label__' identifier-list ';' | 
|  | 870 | /// | 
| Richard Smith | c202b28 | 2012-04-14 00:33:13 +0000 | [diff] [blame] | 871 | StmtResult Parser::ParseCompoundStatement(bool isStmtExpr, | 
| Douglas Gregor | 53e191ed | 2011-07-06 22:04:06 +0000 | [diff] [blame] | 872 | unsigned ScopeFlags) { | 
| Chris Lattner | feb00b6 | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 873 | assert(Tok.is(tok::l_brace) && "Not a compount stmt!"); | 
| Sebastian Redl | 042ad95 | 2008-12-11 19:30:53 +0000 | [diff] [blame] | 874 |  | 
| Chris Lattner | 1a76a3c | 2007-08-26 06:24:45 +0000 | [diff] [blame] | 875 | // Enter a scope to hold everything within the compound stmt.  Compound | 
|  | 876 | // statements can always hold declarations. | 
| Douglas Gregor | 53e191ed | 2011-07-06 22:04:06 +0000 | [diff] [blame] | 877 | ParseScope CompoundScope(this, ScopeFlags); | 
| Chris Lattner | f297880 | 2007-01-21 06:52:16 +0000 | [diff] [blame] | 878 |  | 
|  | 879 | // Parse the statements in the body. | 
| Sebastian Redl | 042ad95 | 2008-12-11 19:30:53 +0000 | [diff] [blame] | 880 | return ParseCompoundStatementBody(isStmtExpr); | 
| Chris Lattner | f297880 | 2007-01-21 06:52:16 +0000 | [diff] [blame] | 881 | } | 
|  | 882 |  | 
| Lang Hames | 2954cea | 2012-11-03 22:29:05 +0000 | [diff] [blame] | 883 | /// Parse any pragmas at the start of the compound expression. We handle these | 
|  | 884 | /// separately since some pragmas (FP_CONTRACT) must appear before any C | 
|  | 885 | /// statement in the compound, but may be intermingled with other pragmas. | 
|  | 886 | void Parser::ParseCompoundStatementLeadingPragmas() { | 
|  | 887 | bool checkForPragmas = true; | 
|  | 888 | while (checkForPragmas) { | 
|  | 889 | switch (Tok.getKind()) { | 
|  | 890 | case tok::annot_pragma_vis: | 
|  | 891 | HandlePragmaVisibility(); | 
|  | 892 | break; | 
|  | 893 | case tok::annot_pragma_pack: | 
|  | 894 | HandlePragmaPack(); | 
|  | 895 | break; | 
|  | 896 | case tok::annot_pragma_msstruct: | 
|  | 897 | HandlePragmaMSStruct(); | 
|  | 898 | break; | 
|  | 899 | case tok::annot_pragma_align: | 
|  | 900 | HandlePragmaAlign(); | 
|  | 901 | break; | 
|  | 902 | case tok::annot_pragma_weak: | 
|  | 903 | HandlePragmaWeak(); | 
|  | 904 | break; | 
|  | 905 | case tok::annot_pragma_weakalias: | 
|  | 906 | HandlePragmaWeakAlias(); | 
|  | 907 | break; | 
|  | 908 | case tok::annot_pragma_redefine_extname: | 
|  | 909 | HandlePragmaRedefineExtname(); | 
|  | 910 | break; | 
|  | 911 | case tok::annot_pragma_opencl_extension: | 
|  | 912 | HandlePragmaOpenCLExtension(); | 
|  | 913 | break; | 
|  | 914 | case tok::annot_pragma_fp_contract: | 
|  | 915 | HandlePragmaFPContract(); | 
|  | 916 | break; | 
| Adam Nemet | 60d3264 | 2017-04-04 21:18:36 +0000 | [diff] [blame] | 917 | case tok::annot_pragma_fp: | 
|  | 918 | HandlePragmaFP(); | 
|  | 919 | break; | 
| Kevin P. Neal | 2c0bc8b | 2018-08-14 17:06:56 +0000 | [diff] [blame] | 920 | case tok::annot_pragma_fenv_access: | 
|  | 921 | HandlePragmaFEnvAccess(); | 
|  | 922 | break; | 
| David Majnemer | 4bb0980 | 2014-02-10 19:50:15 +0000 | [diff] [blame] | 923 | case tok::annot_pragma_ms_pointers_to_members: | 
|  | 924 | HandlePragmaMSPointersToMembers(); | 
|  | 925 | break; | 
| Warren Hunt | c3b1896 | 2014-04-08 22:30:47 +0000 | [diff] [blame] | 926 | case tok::annot_pragma_ms_pragma: | 
|  | 927 | HandlePragmaMSPragma(); | 
|  | 928 | break; | 
| Alexey Bataev | 3d42f34 | 2015-11-20 07:02:57 +0000 | [diff] [blame] | 929 | case tok::annot_pragma_ms_vtordisp: | 
|  | 930 | HandlePragmaMSVtorDisp(); | 
|  | 931 | break; | 
| Richard Smith | ba3a4f9 | 2016-01-12 21:59:26 +0000 | [diff] [blame] | 932 | case tok::annot_pragma_dump: | 
|  | 933 | HandlePragmaDump(); | 
|  | 934 | break; | 
| Lang Hames | 2954cea | 2012-11-03 22:29:05 +0000 | [diff] [blame] | 935 | default: | 
|  | 936 | checkForPragmas = false; | 
|  | 937 | break; | 
|  | 938 | } | 
|  | 939 | } | 
|  | 940 |  | 
|  | 941 | } | 
|  | 942 |  | 
| Roman Lebedev | 377748f | 2018-11-20 18:59:05 +0000 | [diff] [blame] | 943 | /// Consume any extra semi-colons resulting in null statements, | 
|  | 944 | /// returning true if any tok::semi were consumed. | 
|  | 945 | bool Parser::ConsumeNullStmt(StmtVector &Stmts) { | 
|  | 946 | if (!Tok.is(tok::semi)) | 
|  | 947 | return false; | 
|  | 948 |  | 
|  | 949 | SourceLocation StartLoc = Tok.getLocation(); | 
|  | 950 | SourceLocation EndLoc; | 
|  | 951 |  | 
|  | 952 | while (Tok.is(tok::semi) && !Tok.hasLeadingEmptyMacro() && | 
|  | 953 | Tok.getLocation().isValid() && !Tok.getLocation().isMacroID()) { | 
|  | 954 | EndLoc = Tok.getLocation(); | 
|  | 955 |  | 
|  | 956 | // Don't just ConsumeToken() this tok::semi, do store it in AST. | 
| Richard Smith | a6e8d5e | 2019-02-15 00:27:53 +0000 | [diff] [blame] | 957 | StmtResult R = | 
|  | 958 | ParseStatementOrDeclaration(Stmts, ParsedStmtContext::SubStmt); | 
| Roman Lebedev | 377748f | 2018-11-20 18:59:05 +0000 | [diff] [blame] | 959 | if (R.isUsable()) | 
|  | 960 | Stmts.push_back(R.get()); | 
|  | 961 | } | 
|  | 962 |  | 
|  | 963 | // Did not consume any extra semi. | 
|  | 964 | if (EndLoc.isInvalid()) | 
|  | 965 | return false; | 
|  | 966 |  | 
|  | 967 | Diag(StartLoc, diag::warn_null_statement) | 
|  | 968 | << FixItHint::CreateRemoval(SourceRange(StartLoc, EndLoc)); | 
|  | 969 | return true; | 
|  | 970 | } | 
|  | 971 |  | 
| Richard Smith | a6e8d5e | 2019-02-15 00:27:53 +0000 | [diff] [blame] | 972 | StmtResult Parser::handleExprStmt(ExprResult E, ParsedStmtContext StmtCtx) { | 
|  | 973 | bool IsStmtExprResult = false; | 
|  | 974 | if ((StmtCtx & ParsedStmtContext::InStmtExpr) != ParsedStmtContext()) { | 
| Aaron Ballman | b1e511b | 2019-07-09 15:02:07 +0000 | [diff] [blame] | 975 | // For GCC compatibility we skip past NullStmts. | 
|  | 976 | unsigned LookAhead = 0; | 
|  | 977 | while (GetLookAheadToken(LookAhead).is(tok::semi)) { | 
|  | 978 | ++LookAhead; | 
|  | 979 | } | 
|  | 980 | // Then look to see if the next two tokens close the statement expression; | 
|  | 981 | // if so, this expression statement is the last statement in a statment | 
|  | 982 | // expression. | 
|  | 983 | IsStmtExprResult = GetLookAheadToken(LookAhead).is(tok::r_brace) && | 
|  | 984 | GetLookAheadToken(LookAhead + 1).is(tok::r_paren); | 
| Aaron Ballman | fb6deeb | 2019-01-04 16:58:14 +0000 | [diff] [blame] | 985 | } | 
| Richard Smith | a6e8d5e | 2019-02-15 00:27:53 +0000 | [diff] [blame] | 986 |  | 
|  | 987 | if (IsStmtExprResult) | 
|  | 988 | E = Actions.ActOnStmtExprResult(E); | 
|  | 989 | return Actions.ActOnExprStmt(E, /*DiscardedValue=*/!IsStmtExprResult); | 
| Aaron Ballman | fb6deeb | 2019-01-04 16:58:14 +0000 | [diff] [blame] | 990 | } | 
|  | 991 |  | 
| Chris Lattner | f297880 | 2007-01-21 06:52:16 +0000 | [diff] [blame] | 992 | /// ParseCompoundStatementBody - Parse a sequence of statements and invoke the | 
| Steve Naroff | 66356bd | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 993 | /// ActOnCompoundStmt action.  This expects the '{' to be the current token, and | 
| Chris Lattner | f297880 | 2007-01-21 06:52:16 +0000 | [diff] [blame] | 994 | /// consume the '}' at the end of the block.  It does not manipulate the scope | 
|  | 995 | /// stack. | 
| John McCall | dadc575 | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 996 | StmtResult Parser::ParseCompoundStatementBody(bool isStmtExpr) { | 
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 997 | PrettyStackTraceLoc CrashInfo(PP.getSourceManager(), | 
| Chris Lattner | bd61a95 | 2009-03-05 00:00:31 +0000 | [diff] [blame] | 998 | Tok.getLocation(), | 
|  | 999 | "in compound statement ('{}')"); | 
| Lang Hames | 5de91cc | 2012-10-02 04:45:10 +0000 | [diff] [blame] | 1000 |  | 
|  | 1001 | // Record the state of the FP_CONTRACT pragma, restore on leaving the | 
|  | 1002 | // compound statement. | 
|  | 1003 | Sema::FPContractStateRAII SaveFPContractState(Actions); | 
|  | 1004 |  | 
| Douglas Gregor | e9bba4f | 2010-09-15 14:51:05 +0000 | [diff] [blame] | 1005 | InMessageExpressionRAIIObject InMessage(*this, false); | 
| Douglas Gregor | e7a8e3b | 2011-10-12 16:37:45 +0000 | [diff] [blame] | 1006 | BalancedDelimiterTracker T(*this, tok::l_brace); | 
|  | 1007 | if (T.consumeOpen()) | 
|  | 1008 | return StmtError(); | 
| Chris Lattner | f297880 | 2007-01-21 06:52:16 +0000 | [diff] [blame] | 1009 |  | 
| Richard Smith | 6eb9b9e | 2018-02-03 00:44:57 +0000 | [diff] [blame] | 1010 | Sema::CompoundScopeRAII CompoundScope(Actions, isStmtExpr); | 
| Dmitri Gribenko | 800ddf3 | 2012-02-14 22:14:32 +0000 | [diff] [blame] | 1011 |  | 
| Lang Hames | 2954cea | 2012-11-03 22:29:05 +0000 | [diff] [blame] | 1012 | // Parse any pragmas at the beginning of the compound statement. | 
|  | 1013 | ParseCompoundStatementLeadingPragmas(); | 
| Argyrios Kyrtzidis | ee56962 | 2011-01-17 18:58:44 +0000 | [diff] [blame] | 1014 |  | 
| Lang Hames | 2954cea | 2012-11-03 22:29:05 +0000 | [diff] [blame] | 1015 | StmtVector Stmts; | 
| Lang Hames | a930e71 | 2012-10-21 01:10:01 +0000 | [diff] [blame] | 1016 |  | 
| Chris Lattner | 43e7f31 | 2011-02-18 02:08:43 +0000 | [diff] [blame] | 1017 | // "__label__ X, Y, Z;" is the GNU "Local Label" extension.  These are | 
|  | 1018 | // only allowed at the start of a compound stmt regardless of the language. | 
|  | 1019 | while (Tok.is(tok::kw___label__)) { | 
|  | 1020 | SourceLocation LabelLoc = ConsumeToken(); | 
| NAKAMURA Takumi | 82a3511 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 1021 |  | 
| Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 1022 | SmallVector<Decl *, 8> DeclsInGroup; | 
| Chris Lattner | 43e7f31 | 2011-02-18 02:08:43 +0000 | [diff] [blame] | 1023 | while (1) { | 
|  | 1024 | if (Tok.isNot(tok::identifier)) { | 
| Alp Toker | ec54327 | 2013-12-24 09:48:30 +0000 | [diff] [blame] | 1025 | Diag(Tok, diag::err_expected) << tok::identifier; | 
| Chris Lattner | 43e7f31 | 2011-02-18 02:08:43 +0000 | [diff] [blame] | 1026 | break; | 
|  | 1027 | } | 
| NAKAMURA Takumi | 82a3511 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 1028 |  | 
| Chris Lattner | 43e7f31 | 2011-02-18 02:08:43 +0000 | [diff] [blame] | 1029 | IdentifierInfo *II = Tok.getIdentifierInfo(); | 
|  | 1030 | SourceLocation IdLoc = ConsumeToken(); | 
| Abramo Bagnara | 1c3af96 | 2011-03-05 18:21:20 +0000 | [diff] [blame] | 1031 | DeclsInGroup.push_back(Actions.LookupOrCreateLabel(II, IdLoc, LabelLoc)); | 
| NAKAMURA Takumi | 82a3511 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 1032 |  | 
| Alp Toker | ec54327 | 2013-12-24 09:48:30 +0000 | [diff] [blame] | 1033 | if (!TryConsumeToken(tok::comma)) | 
| Chris Lattner | 43e7f31 | 2011-02-18 02:08:43 +0000 | [diff] [blame] | 1034 | break; | 
| Chris Lattner | 43e7f31 | 2011-02-18 02:08:43 +0000 | [diff] [blame] | 1035 | } | 
| NAKAMURA Takumi | 82a3511 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 1036 |  | 
| John McCall | 084e83d | 2011-03-24 11:26:52 +0000 | [diff] [blame] | 1037 | DeclSpec DS(AttrFactory); | 
| Rafael Espindola | ab41769 | 2013-07-09 12:05:01 +0000 | [diff] [blame] | 1038 | DeclGroupPtrTy Res = | 
|  | 1039 | Actions.FinalizeDeclaratorGroup(getCurScope(), DS, DeclsInGroup); | 
| Chris Lattner | 43e7f31 | 2011-02-18 02:08:43 +0000 | [diff] [blame] | 1040 | StmtResult R = Actions.ActOnDeclStmt(Res, LabelLoc, Tok.getLocation()); | 
| NAKAMURA Takumi | 82a3511 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 1041 |  | 
| Chris Lattner | 02f1b61 | 2012-04-28 16:12:17 +0000 | [diff] [blame] | 1042 | ExpectAndConsumeSemi(diag::err_expected_semi_declaration); | 
| Chris Lattner | 43e7f31 | 2011-02-18 02:08:43 +0000 | [diff] [blame] | 1043 | if (R.isUsable()) | 
| Nikola Smiljanic | 01a7598 | 2014-05-29 10:55:11 +0000 | [diff] [blame] | 1044 | Stmts.push_back(R.get()); | 
| Chris Lattner | 43e7f31 | 2011-02-18 02:08:43 +0000 | [diff] [blame] | 1045 | } | 
| NAKAMURA Takumi | 82a3511 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 1046 |  | 
| Richard Smith | a6e8d5e | 2019-02-15 00:27:53 +0000 | [diff] [blame] | 1047 | ParsedStmtContext SubStmtCtx = | 
|  | 1048 | ParsedStmtContext::Compound | | 
|  | 1049 | (isStmtExpr ? ParsedStmtContext::InStmtExpr : ParsedStmtContext()); | 
|  | 1050 |  | 
| Richard Smith | 752ada8 | 2015-11-17 23:32:01 +0000 | [diff] [blame] | 1051 | while (!tryParseMisplacedModuleImport() && Tok.isNot(tok::r_brace) && | 
|  | 1052 | Tok.isNot(tok::eof)) { | 
| Argyrios Kyrtzidis | ee56962 | 2011-01-17 18:58:44 +0000 | [diff] [blame] | 1053 | if (Tok.is(tok::annot_pragma_unused)) { | 
|  | 1054 | HandlePragmaUnused(); | 
|  | 1055 | continue; | 
|  | 1056 | } | 
|  | 1057 |  | 
| Roman Lebedev | 377748f | 2018-11-20 18:59:05 +0000 | [diff] [blame] | 1058 | if (ConsumeNullStmt(Stmts)) | 
|  | 1059 | continue; | 
|  | 1060 |  | 
| John McCall | dadc575 | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 1061 | StmtResult R; | 
| Chris Lattner | feb00b6 | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 1062 | if (Tok.isNot(tok::kw___extension__)) { | 
| Richard Smith | a6e8d5e | 2019-02-15 00:27:53 +0000 | [diff] [blame] | 1063 | R = ParseStatementOrDeclaration(Stmts, SubStmtCtx); | 
| Chris Lattner | dfaf9f8 | 2007-08-27 01:01:57 +0000 | [diff] [blame] | 1064 | } else { | 
|  | 1065 | // __extension__ can start declarations and it can also be a unary | 
|  | 1066 | // operator for expressions.  Consume multiple __extension__ markers here | 
|  | 1067 | // until we can determine which is which. | 
| Eli Friedman | eb3a9b0 | 2009-01-27 08:43:38 +0000 | [diff] [blame] | 1068 | // FIXME: This loses extension expressions in the AST! | 
| Chris Lattner | dfaf9f8 | 2007-08-27 01:01:57 +0000 | [diff] [blame] | 1069 | SourceLocation ExtLoc = ConsumeToken(); | 
| Chris Lattner | feb00b6 | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 1070 | while (Tok.is(tok::kw___extension__)) | 
| Chris Lattner | dfaf9f8 | 2007-08-27 01:01:57 +0000 | [diff] [blame] | 1071 | ConsumeToken(); | 
| Chris Lattner | 1ff6e73 | 2008-10-20 06:51:33 +0000 | [diff] [blame] | 1072 |  | 
| John McCall | 084e83d | 2011-03-24 11:26:52 +0000 | [diff] [blame] | 1073 | ParsedAttributesWithRange attrs(AttrFactory); | 
| Craig Topper | 161e4db | 2014-05-21 06:02:52 +0000 | [diff] [blame] | 1074 | MaybeParseCXX11Attributes(attrs, nullptr, | 
|  | 1075 | /*MightBeObjCMessageSend*/ true); | 
| Alexis Hunt | 96d5c76 | 2009-11-21 08:43:09 +0000 | [diff] [blame] | 1076 |  | 
| Chris Lattner | dfaf9f8 | 2007-08-27 01:01:57 +0000 | [diff] [blame] | 1077 | // If this is the start of a declaration, parse it as such. | 
| Argyrios Kyrtzidis | 2c7137d | 2008-10-05 00:06:24 +0000 | [diff] [blame] | 1078 | if (isDeclarationStatement()) { | 
| Eli Friedman | 15af3ee | 2009-05-16 23:40:44 +0000 | [diff] [blame] | 1079 | // __extension__ silences extension warnings in the subdeclaration. | 
| Chris Lattner | 49836b4 | 2009-04-02 04:16:50 +0000 | [diff] [blame] | 1080 | // FIXME: Save the __extension__ on the decl as a node somehow? | 
| Eli Friedman | 15af3ee | 2009-05-16 23:40:44 +0000 | [diff] [blame] | 1081 | ExtensionRAIIObject O(Diags); | 
|  | 1082 |  | 
| Chris Lattner | 49836b4 | 2009-04-02 04:16:50 +0000 | [diff] [blame] | 1083 | SourceLocation DeclStart = Tok.getLocation(), DeclEnd; | 
| Faisal Vali | 421b2d1 | 2017-12-29 05:41:00 +0000 | [diff] [blame] | 1084 | DeclGroupPtrTy Res = | 
|  | 1085 | ParseDeclaration(DeclaratorContext::BlockContext, DeclEnd, attrs); | 
| Chris Lattner | 49836b4 | 2009-04-02 04:16:50 +0000 | [diff] [blame] | 1086 | R = Actions.ActOnDeclStmt(Res, DeclStart, DeclEnd); | 
| Chris Lattner | dfaf9f8 | 2007-08-27 01:01:57 +0000 | [diff] [blame] | 1087 | } else { | 
| Eli Friedman | eb3a9b0 | 2009-01-27 08:43:38 +0000 | [diff] [blame] | 1088 | // Otherwise this was a unary __extension__ marker. | 
| John McCall | dadc575 | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 1089 | ExprResult Res(ParseExpressionWithLeadingExtension(ExtLoc)); | 
| Chris Lattner | fdc0748 | 2008-03-13 06:32:11 +0000 | [diff] [blame] | 1090 |  | 
| Sebastian Redl | 17f2c7d | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 1091 | if (Res.isInvalid()) { | 
| Chris Lattner | dfaf9f8 | 2007-08-27 01:01:57 +0000 | [diff] [blame] | 1092 | SkipUntil(tok::semi); | 
|  | 1093 | continue; | 
|  | 1094 | } | 
| Sebastian Redl | c2edafb | 2009-01-18 18:03:53 +0000 | [diff] [blame] | 1095 |  | 
| Chris Lattner | 1ff6e73 | 2008-10-20 06:51:33 +0000 | [diff] [blame] | 1096 | // Eat the semicolon at the end of stmt and convert the expr into a | 
|  | 1097 | // statement. | 
| Douglas Gregor | 45d6bdf | 2010-09-07 15:23:11 +0000 | [diff] [blame] | 1098 | ExpectAndConsumeSemi(diag::err_expected_semi_after_expr); | 
| Richard Smith | a6e8d5e | 2019-02-15 00:27:53 +0000 | [diff] [blame] | 1099 | R = handleExprStmt(Res, SubStmtCtx); | 
|  | 1100 | if (R.isUsable()) | 
|  | 1101 | R = Actions.ProcessStmtAttributes(R.get(), attrs, attrs.Range); | 
| Chris Lattner | dfaf9f8 | 2007-08-27 01:01:57 +0000 | [diff] [blame] | 1102 | } | 
|  | 1103 | } | 
| Sebastian Redl | 042ad95 | 2008-12-11 19:30:53 +0000 | [diff] [blame] | 1104 |  | 
| Sebastian Redl | 17f2c7d | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 1105 | if (R.isUsable()) | 
| Nikola Smiljanic | 01a7598 | 2014-05-29 10:55:11 +0000 | [diff] [blame] | 1106 | Stmts.push_back(R.get()); | 
| Chris Lattner | 30f910e | 2006-10-16 05:52:41 +0000 | [diff] [blame] | 1107 | } | 
| Sebastian Redl | 042ad95 | 2008-12-11 19:30:53 +0000 | [diff] [blame] | 1108 |  | 
| Argyrios Kyrtzidis | 6db8501 | 2012-03-24 02:26:51 +0000 | [diff] [blame] | 1109 | SourceLocation CloseLoc = Tok.getLocation(); | 
|  | 1110 |  | 
| Chris Lattner | 0ccd51e | 2006-08-09 05:47:47 +0000 | [diff] [blame] | 1111 | // We broke out of the while loop because we found a '}' or EOF. | 
| Nico Weber | a48b6c2 | 2012-12-30 23:36:56 +0000 | [diff] [blame] | 1112 | if (!T.consumeClose()) | 
| Argyrios Kyrtzidis | 6db8501 | 2012-03-24 02:26:51 +0000 | [diff] [blame] | 1113 | // Recover by creating a compound statement with what we parsed so far, | 
|  | 1114 | // instead of dropping everything and returning StmtError(); | 
| Nico Weber | a48b6c2 | 2012-12-30 23:36:56 +0000 | [diff] [blame] | 1115 | CloseLoc = T.getCloseLocation(); | 
| Sebastian Redl | 042ad95 | 2008-12-11 19:30:53 +0000 | [diff] [blame] | 1116 |  | 
| Argyrios Kyrtzidis | 6db8501 | 2012-03-24 02:26:51 +0000 | [diff] [blame] | 1117 | return Actions.ActOnCompoundStmt(T.getOpenLocation(), CloseLoc, | 
| Benjamin Kramer | 62b95d8 | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 1118 | Stmts, isStmtExpr); | 
| Chris Lattner | 0ccd51e | 2006-08-09 05:47:47 +0000 | [diff] [blame] | 1119 | } | 
| Chris Lattner | c951dae | 2006-08-10 04:23:57 +0000 | [diff] [blame] | 1120 |  | 
| Chris Lattner | c0081db | 2008-12-12 06:31:07 +0000 | [diff] [blame] | 1121 | /// ParseParenExprOrCondition: | 
|  | 1122 | /// [C  ]     '(' expression ')' | 
| Richard Smith | c7a05a9 | 2016-06-29 21:17:59 +0000 | [diff] [blame] | 1123 | /// [C++]     '(' condition ')' | 
|  | 1124 | /// [C++1z]   '(' init-statement[opt] condition ')' | 
| Chris Lattner | c0081db | 2008-12-12 06:31:07 +0000 | [diff] [blame] | 1125 | /// | 
|  | 1126 | /// This function parses and performs error recovery on the specified condition | 
|  | 1127 | /// or expression (depending on whether we're in C++ or C mode).  This function | 
|  | 1128 | /// goes out of its way to recover well.  It returns true if there was a parser | 
|  | 1129 | /// error (the right paren couldn't be found), which indicates that the caller | 
|  | 1130 | /// should try to recover harder.  It returns false if the condition is | 
|  | 1131 | /// successfully parsed.  Note that a successful parse can still have semantic | 
|  | 1132 | /// errors in the condition. | 
| Richard Smith | c7a05a9 | 2016-06-29 21:17:59 +0000 | [diff] [blame] | 1133 | bool Parser::ParseParenExprOrCondition(StmtResult *InitStmt, | 
|  | 1134 | Sema::ConditionResult &Cond, | 
| Douglas Gregor | e60e41a | 2010-05-06 17:25:47 +0000 | [diff] [blame] | 1135 | SourceLocation Loc, | 
| Richard Smith | 03a4aa3 | 2016-06-23 19:02:52 +0000 | [diff] [blame] | 1136 | Sema::ConditionKind CK) { | 
| Douglas Gregor | e7a8e3b | 2011-10-12 16:37:45 +0000 | [diff] [blame] | 1137 | BalancedDelimiterTracker T(*this, tok::l_paren); | 
|  | 1138 | T.consumeOpen(); | 
|  | 1139 |  | 
| David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1140 | if (getLangOpts().CPlusPlus) | 
| Richard Smith | c7a05a9 | 2016-06-29 21:17:59 +0000 | [diff] [blame] | 1141 | Cond = ParseCXXCondition(InitStmt, Loc, CK); | 
| Douglas Gregor | 7bab5ff | 2009-11-25 00:27:52 +0000 | [diff] [blame] | 1142 | else { | 
| Richard Smith | 03a4aa3 | 2016-06-23 19:02:52 +0000 | [diff] [blame] | 1143 | ExprResult CondExpr = ParseExpression(); | 
| NAKAMURA Takumi | 82a3511 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 1144 |  | 
| Douglas Gregor | e60e41a | 2010-05-06 17:25:47 +0000 | [diff] [blame] | 1145 | // If required, convert to a boolean value. | 
| Richard Smith | 03a4aa3 | 2016-06-23 19:02:52 +0000 | [diff] [blame] | 1146 | if (CondExpr.isInvalid()) | 
|  | 1147 | Cond = Sema::ConditionError(); | 
|  | 1148 | else | 
|  | 1149 | Cond = Actions.ActOnCondition(getCurScope(), Loc, CondExpr.get(), CK); | 
| Douglas Gregor | 7bab5ff | 2009-11-25 00:27:52 +0000 | [diff] [blame] | 1150 | } | 
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1151 |  | 
| Chris Lattner | c0081db | 2008-12-12 06:31:07 +0000 | [diff] [blame] | 1152 | // If the parser was confused by the condition and we don't have a ')', try to | 
|  | 1153 | // recover by skipping ahead to a semi and bailing out.  If condexp is | 
|  | 1154 | // semantically invalid but we have well formed code, keep going. | 
| Richard Smith | 03a4aa3 | 2016-06-23 19:02:52 +0000 | [diff] [blame] | 1155 | if (Cond.isInvalid() && Tok.isNot(tok::r_paren)) { | 
| Chris Lattner | c0081db | 2008-12-12 06:31:07 +0000 | [diff] [blame] | 1156 | SkipUntil(tok::semi); | 
|  | 1157 | // Skipping may have stopped if it found the containing ')'.  If so, we can | 
|  | 1158 | // continue parsing the if statement. | 
|  | 1159 | if (Tok.isNot(tok::r_paren)) | 
|  | 1160 | return true; | 
|  | 1161 | } | 
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1162 |  | 
| Chris Lattner | c0081db | 2008-12-12 06:31:07 +0000 | [diff] [blame] | 1163 | // Otherwise the condition is valid or the rparen is present. | 
| Douglas Gregor | e7a8e3b | 2011-10-12 16:37:45 +0000 | [diff] [blame] | 1164 | T.consumeClose(); | 
| Chad Rosier | 67055f5 | 2012-07-10 21:35:27 +0000 | [diff] [blame] | 1165 |  | 
| Chris Lattner | 70d4498 | 2012-04-28 16:24:20 +0000 | [diff] [blame] | 1166 | // Check for extraneous ')'s to catch things like "if (foo())) {".  We know | 
|  | 1167 | // that all callers are looking for a statement after the condition, so ")" | 
|  | 1168 | // isn't valid. | 
|  | 1169 | while (Tok.is(tok::r_paren)) { | 
|  | 1170 | Diag(Tok, diag::err_extraneous_rparen_in_condition) | 
|  | 1171 | << FixItHint::CreateRemoval(Tok.getLocation()); | 
|  | 1172 | ConsumeParen(); | 
|  | 1173 | } | 
| Chad Rosier | 67055f5 | 2012-07-10 21:35:27 +0000 | [diff] [blame] | 1174 |  | 
| Chris Lattner | c0081db | 2008-12-12 06:31:07 +0000 | [diff] [blame] | 1175 | return false; | 
|  | 1176 | } | 
|  | 1177 |  | 
|  | 1178 |  | 
| Chris Lattner | c951dae | 2006-08-10 04:23:57 +0000 | [diff] [blame] | 1179 | /// ParseIfStatement | 
|  | 1180 | ///       if-statement: [C99 6.8.4.1] | 
|  | 1181 | ///         'if' '(' expression ')' statement | 
|  | 1182 | ///         'if' '(' expression ')' statement 'else' statement | 
| Argyrios Kyrtzidis | 2b4072f | 2008-09-09 20:38:47 +0000 | [diff] [blame] | 1183 | /// [C++]   'if' '(' condition ')' statement | 
|  | 1184 | /// [C++]   'if' '(' condition ')' statement 'else' statement | 
| Chris Lattner | 30f910e | 2006-10-16 05:52:41 +0000 | [diff] [blame] | 1185 | /// | 
| Richard Smith | c202b28 | 2012-04-14 00:33:13 +0000 | [diff] [blame] | 1186 | StmtResult Parser::ParseIfStatement(SourceLocation *TrailingElseLoc) { | 
| Chris Lattner | feb00b6 | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 1187 | assert(Tok.is(tok::kw_if) && "Not an if stmt!"); | 
| Chris Lattner | af63531 | 2006-10-16 06:06:51 +0000 | [diff] [blame] | 1188 | SourceLocation IfLoc = ConsumeToken();  // eat the 'if'. | 
| Chris Lattner | c951dae | 2006-08-10 04:23:57 +0000 | [diff] [blame] | 1189 |  | 
| Richard Smith | b130fe7 | 2016-06-23 19:16:49 +0000 | [diff] [blame] | 1190 | bool IsConstexpr = false; | 
|  | 1191 | if (Tok.is(tok::kw_constexpr)) { | 
| Aaron Ballman | c351fba | 2017-12-04 20:27:34 +0000 | [diff] [blame] | 1192 | Diag(Tok, getLangOpts().CPlusPlus17 ? diag::warn_cxx14_compat_constexpr_if | 
| Richard Smith | b130fe7 | 2016-06-23 19:16:49 +0000 | [diff] [blame] | 1193 | : diag::ext_constexpr_if); | 
|  | 1194 | IsConstexpr = true; | 
|  | 1195 | ConsumeToken(); | 
|  | 1196 | } | 
|  | 1197 |  | 
| Chris Lattner | feb00b6 | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 1198 | if (Tok.isNot(tok::l_paren)) { | 
| Chris Lattner | 6d29c10 | 2008-11-18 07:48:38 +0000 | [diff] [blame] | 1199 | Diag(Tok, diag::err_expected_lparen_after) << "if"; | 
| Chris Lattner | c951dae | 2006-08-10 04:23:57 +0000 | [diff] [blame] | 1200 | SkipUntil(tok::semi); | 
| Sebastian Redl | 042ad95 | 2008-12-11 19:30:53 +0000 | [diff] [blame] | 1201 | return StmtError(); | 
| Chris Lattner | c951dae | 2006-08-10 04:23:57 +0000 | [diff] [blame] | 1202 | } | 
| Argyrios Kyrtzidis | 2b4072f | 2008-09-09 20:38:47 +0000 | [diff] [blame] | 1203 |  | 
| David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1204 | bool C99orCXX = getLangOpts().C99 || getLangOpts().CPlusPlus; | 
| Argyrios Kyrtzidis | 504bb84 | 2008-09-11 03:06:46 +0000 | [diff] [blame] | 1205 |  | 
| Chris Lattner | 2dd1b72 | 2007-08-26 23:08:06 +0000 | [diff] [blame] | 1206 | // C99 6.8.4p3 - In C99, the if statement is a block.  This is not | 
|  | 1207 | // the case for C90. | 
| Argyrios Kyrtzidis | 504bb84 | 2008-09-11 03:06:46 +0000 | [diff] [blame] | 1208 | // | 
|  | 1209 | // C++ 6.4p3: | 
|  | 1210 | // A name introduced by a declaration in a condition is in scope from its | 
|  | 1211 | // point of declaration until the end of the substatements controlled by the | 
|  | 1212 | // condition. | 
| Argyrios Kyrtzidis | 47f9865 | 2008-09-11 23:08:39 +0000 | [diff] [blame] | 1213 | // C++ 3.3.2p4: | 
|  | 1214 | // Names declared in the for-init-statement, and in the condition of if, | 
|  | 1215 | // while, for, and switch statements are local to the if, while, for, or | 
|  | 1216 | // switch statement (including the controlled statement). | 
| Argyrios Kyrtzidis | 504bb84 | 2008-09-11 03:06:46 +0000 | [diff] [blame] | 1217 | // | 
| Douglas Gregor | 7307d6c | 2008-12-10 06:34:36 +0000 | [diff] [blame] | 1218 | ParseScope IfScope(this, Scope::DeclScope | Scope::ControlScope, C99orCXX); | 
| Chris Lattner | 2dd1b72 | 2007-08-26 23:08:06 +0000 | [diff] [blame] | 1219 |  | 
| Chris Lattner | c951dae | 2006-08-10 04:23:57 +0000 | [diff] [blame] | 1220 | // Parse the condition. | 
| Richard Smith | c7a05a9 | 2016-06-29 21:17:59 +0000 | [diff] [blame] | 1221 | StmtResult InitStmt; | 
| Richard Smith | 03a4aa3 | 2016-06-23 19:02:52 +0000 | [diff] [blame] | 1222 | Sema::ConditionResult Cond; | 
| Richard Smith | c7a05a9 | 2016-06-29 21:17:59 +0000 | [diff] [blame] | 1223 | if (ParseParenExprOrCondition(&InitStmt, Cond, IfLoc, | 
| Richard Smith | b130fe7 | 2016-06-23 19:16:49 +0000 | [diff] [blame] | 1224 | IsConstexpr ? Sema::ConditionKind::ConstexprIf | 
|  | 1225 | : Sema::ConditionKind::Boolean)) | 
| Chris Lattner | c0081db | 2008-12-12 06:31:07 +0000 | [diff] [blame] | 1226 | return StmtError(); | 
| Chris Lattner | bc2d77c | 2008-12-12 06:19:11 +0000 | [diff] [blame] | 1227 |  | 
| Richard Smith | b130fe7 | 2016-06-23 19:16:49 +0000 | [diff] [blame] | 1228 | llvm::Optional<bool> ConstexprCondition; | 
|  | 1229 | if (IsConstexpr) | 
|  | 1230 | ConstexprCondition = Cond.getKnownValue(); | 
|  | 1231 |  | 
| Chris Lattner | 8fb2625 | 2007-08-22 05:28:50 +0000 | [diff] [blame] | 1232 | // C99 6.8.4p3 - In C99, the body of the if statement is a scope, even if | 
| Chris Lattner | 8f44d20 | 2007-08-22 05:33:11 +0000 | [diff] [blame] | 1233 | // there is no compound stmt.  C90 does not have this clause.  We only do this | 
|  | 1234 | // if the body isn't a compound statement to avoid push/pop in common cases. | 
| Argyrios Kyrtzidis | 504bb84 | 2008-09-11 03:06:46 +0000 | [diff] [blame] | 1235 | // | 
|  | 1236 | // C++ 6.4p1: | 
|  | 1237 | // The substatement in a selection-statement (each substatement, in the else | 
|  | 1238 | // form of the if statement) implicitly defines a local scope. | 
|  | 1239 | // | 
|  | 1240 | // For C++ we create a scope for the condition and a new scope for | 
|  | 1241 | // substatements because: | 
|  | 1242 | // -When the 'then' scope exits, we want the condition declaration to still be | 
|  | 1243 | //    active for the 'else' scope too. | 
|  | 1244 | // -Sema will detect name clashes by considering declarations of a | 
|  | 1245 | //    'ControlScope' as part of its direct subscope. | 
|  | 1246 | // -If we wanted the condition and substatement to be in the same scope, we | 
|  | 1247 | //    would have to notify ParseStatement not to create a new scope. It's | 
|  | 1248 | //    simpler to let it create a new scope. | 
|  | 1249 | // | 
| David Majnemer | 2206bf5 | 2014-03-05 08:57:59 +0000 | [diff] [blame] | 1250 | ParseScope InnerScope(this, Scope::DeclScope, C99orCXX, Tok.is(tok::l_brace)); | 
| Argyrios Kyrtzidis | 2b4072f | 2008-09-09 20:38:47 +0000 | [diff] [blame] | 1251 |  | 
| Chris Lattner | 5c5808a | 2007-10-29 05:08:52 +0000 | [diff] [blame] | 1252 | // Read the 'then' stmt. | 
|  | 1253 | SourceLocation ThenStmtLoc = Tok.getLocation(); | 
| Nico Weber | 3cef108 | 2011-12-22 23:26:17 +0000 | [diff] [blame] | 1254 |  | 
|  | 1255 | SourceLocation InnerStatementTrailingElseLoc; | 
| Richard Smith | b130fe7 | 2016-06-23 19:16:49 +0000 | [diff] [blame] | 1256 | StmtResult ThenStmt; | 
|  | 1257 | { | 
|  | 1258 | EnterExpressionEvaluationContext PotentiallyDiscarded( | 
| Faisal Vali | d143a0c | 2017-04-01 21:30:49 +0000 | [diff] [blame] | 1259 | Actions, Sema::ExpressionEvaluationContext::DiscardedStatement, nullptr, | 
| Nicolas Lesser | b6d5c58 | 2018-07-12 18:45:41 +0000 | [diff] [blame] | 1260 | Sema::ExpressionEvaluationContextRecord::EK_Other, | 
| Richard Smith | b130fe7 | 2016-06-23 19:16:49 +0000 | [diff] [blame] | 1261 | /*ShouldEnter=*/ConstexprCondition && !*ConstexprCondition); | 
|  | 1262 | ThenStmt = ParseStatement(&InnerStatementTrailingElseLoc); | 
|  | 1263 | } | 
| Chris Lattner | ac4471c | 2007-05-28 05:38:24 +0000 | [diff] [blame] | 1264 |  | 
| Chris Lattner | 37e54f4 | 2007-08-22 05:16:28 +0000 | [diff] [blame] | 1265 | // Pop the 'if' scope if needed. | 
| Douglas Gregor | 7307d6c | 2008-12-10 06:34:36 +0000 | [diff] [blame] | 1266 | InnerScope.Exit(); | 
| Sebastian Redl | 042ad95 | 2008-12-11 19:30:53 +0000 | [diff] [blame] | 1267 |  | 
| Chris Lattner | c951dae | 2006-08-10 04:23:57 +0000 | [diff] [blame] | 1268 | // If it has an else, parse it. | 
| Chris Lattner | 30f910e | 2006-10-16 05:52:41 +0000 | [diff] [blame] | 1269 | SourceLocation ElseLoc; | 
| Chris Lattner | 5c5808a | 2007-10-29 05:08:52 +0000 | [diff] [blame] | 1270 | SourceLocation ElseStmtLoc; | 
| John McCall | dadc575 | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 1271 | StmtResult ElseStmt; | 
| Sebastian Redl | 17f2c7d | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 1272 |  | 
| Chris Lattner | feb00b6 | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 1273 | if (Tok.is(tok::kw_else)) { | 
| Nico Weber | 3cef108 | 2011-12-22 23:26:17 +0000 | [diff] [blame] | 1274 | if (TrailingElseLoc) | 
|  | 1275 | *TrailingElseLoc = Tok.getLocation(); | 
|  | 1276 |  | 
| Chris Lattner | af63531 | 2006-10-16 06:06:51 +0000 | [diff] [blame] | 1277 | ElseLoc = ConsumeToken(); | 
| Chris Lattner | df74264 | 2010-04-12 06:12:50 +0000 | [diff] [blame] | 1278 | ElseStmtLoc = Tok.getLocation(); | 
| Sebastian Redl | 042ad95 | 2008-12-11 19:30:53 +0000 | [diff] [blame] | 1279 |  | 
| Chris Lattner | 8fb2625 | 2007-08-22 05:28:50 +0000 | [diff] [blame] | 1280 | // C99 6.8.4p3 - In C99, the body of the if statement is a scope, even if | 
| Chris Lattner | 8f44d20 | 2007-08-22 05:33:11 +0000 | [diff] [blame] | 1281 | // there is no compound stmt.  C90 does not have this clause.  We only do | 
|  | 1282 | // this if the body isn't a compound statement to avoid push/pop in common | 
|  | 1283 | // cases. | 
| Argyrios Kyrtzidis | 504bb84 | 2008-09-11 03:06:46 +0000 | [diff] [blame] | 1284 | // | 
|  | 1285 | // C++ 6.4p1: | 
|  | 1286 | // The substatement in a selection-statement (each substatement, in the else | 
|  | 1287 | // form of the if statement) implicitly defines a local scope. | 
|  | 1288 | // | 
| Richard Smith | b130fe7 | 2016-06-23 19:16:49 +0000 | [diff] [blame] | 1289 | ParseScope InnerScope(this, Scope::DeclScope, C99orCXX, | 
|  | 1290 | Tok.is(tok::l_brace)); | 
| Sebastian Redl | 17f2c7d | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 1291 |  | 
| Richard Smith | b130fe7 | 2016-06-23 19:16:49 +0000 | [diff] [blame] | 1292 | EnterExpressionEvaluationContext PotentiallyDiscarded( | 
| Faisal Vali | d143a0c | 2017-04-01 21:30:49 +0000 | [diff] [blame] | 1293 | Actions, Sema::ExpressionEvaluationContext::DiscardedStatement, nullptr, | 
| Nicolas Lesser | b6d5c58 | 2018-07-12 18:45:41 +0000 | [diff] [blame] | 1294 | Sema::ExpressionEvaluationContextRecord::EK_Other, | 
| Richard Smith | b130fe7 | 2016-06-23 19:16:49 +0000 | [diff] [blame] | 1295 | /*ShouldEnter=*/ConstexprCondition && *ConstexprCondition); | 
| Chris Lattner | 30f910e | 2006-10-16 05:52:41 +0000 | [diff] [blame] | 1296 | ElseStmt = ParseStatement(); | 
| NAKAMURA Takumi | 82a3511 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 1297 |  | 
| Chris Lattner | 37e54f4 | 2007-08-22 05:16:28 +0000 | [diff] [blame] | 1298 | // Pop the 'else' scope if needed. | 
| Douglas Gregor | 7307d6c | 2008-12-10 06:34:36 +0000 | [diff] [blame] | 1299 | InnerScope.Exit(); | 
| Douglas Gregor | 4ecb720 | 2011-07-30 08:36:53 +0000 | [diff] [blame] | 1300 | } else if (Tok.is(tok::code_completion)) { | 
|  | 1301 | Actions.CodeCompleteAfterIf(getCurScope()); | 
| Argyrios Kyrtzidis | 5cec2ae | 2011-09-04 03:32:15 +0000 | [diff] [blame] | 1302 | cutOffParsing(); | 
|  | 1303 | return StmtError(); | 
| Nico Weber | 3cef108 | 2011-12-22 23:26:17 +0000 | [diff] [blame] | 1304 | } else if (InnerStatementTrailingElseLoc.isValid()) { | 
|  | 1305 | Diag(InnerStatementTrailingElseLoc, diag::warn_dangling_else); | 
| Chris Lattner | c951dae | 2006-08-10 04:23:57 +0000 | [diff] [blame] | 1306 | } | 
| Sebastian Redl | 042ad95 | 2008-12-11 19:30:53 +0000 | [diff] [blame] | 1307 |  | 
| Douglas Gregor | 7307d6c | 2008-12-10 06:34:36 +0000 | [diff] [blame] | 1308 | IfScope.Exit(); | 
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1309 |  | 
| Chris Lattner | 5c5808a | 2007-10-29 05:08:52 +0000 | [diff] [blame] | 1310 | // If the then or else stmt is invalid and the other is valid (and present), | 
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1311 | // make turn the invalid one into a null stmt to avoid dropping the other | 
| Chris Lattner | 5c5808a | 2007-10-29 05:08:52 +0000 | [diff] [blame] | 1312 | // part.  If both are invalid, return error. | 
| Sebastian Redl | 17f2c7d | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 1313 | if ((ThenStmt.isInvalid() && ElseStmt.isInvalid()) || | 
| Craig Topper | 161e4db | 2014-05-21 06:02:52 +0000 | [diff] [blame] | 1314 | (ThenStmt.isInvalid() && ElseStmt.get() == nullptr) || | 
|  | 1315 | (ThenStmt.get() == nullptr && ElseStmt.isInvalid())) { | 
| Sebastian Redl | 511ed55 | 2008-11-25 22:21:31 +0000 | [diff] [blame] | 1316 | // Both invalid, or one is invalid and other is non-present: return error. | 
| Sebastian Redl | 042ad95 | 2008-12-11 19:30:53 +0000 | [diff] [blame] | 1317 | return StmtError(); | 
| Chris Lattner | 5c5808a | 2007-10-29 05:08:52 +0000 | [diff] [blame] | 1318 | } | 
| Sebastian Redl | 17f2c7d | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 1319 |  | 
| Chris Lattner | 5c5808a | 2007-10-29 05:08:52 +0000 | [diff] [blame] | 1320 | // Now if either are invalid, replace with a ';'. | 
| Sebastian Redl | 17f2c7d | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 1321 | if (ThenStmt.isInvalid()) | 
| Chris Lattner | 5c5808a | 2007-10-29 05:08:52 +0000 | [diff] [blame] | 1322 | ThenStmt = Actions.ActOnNullStmt(ThenStmtLoc); | 
| Sebastian Redl | 17f2c7d | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 1323 | if (ElseStmt.isInvalid()) | 
| Chris Lattner | 5c5808a | 2007-10-29 05:08:52 +0000 | [diff] [blame] | 1324 | ElseStmt = Actions.ActOnNullStmt(ElseStmtLoc); | 
| Sebastian Redl | 17f2c7d | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 1325 |  | 
| Richard Smith | c7a05a9 | 2016-06-29 21:17:59 +0000 | [diff] [blame] | 1326 | return Actions.ActOnIfStmt(IfLoc, IsConstexpr, InitStmt.get(), Cond, | 
|  | 1327 | ThenStmt.get(), ElseLoc, ElseStmt.get()); | 
| Chris Lattner | c951dae | 2006-08-10 04:23:57 +0000 | [diff] [blame] | 1328 | } | 
|  | 1329 |  | 
| Chris Lattner | 9075bd7 | 2006-08-10 04:59:57 +0000 | [diff] [blame] | 1330 | /// ParseSwitchStatement | 
|  | 1331 | ///       switch-statement: | 
|  | 1332 | ///         'switch' '(' expression ')' statement | 
| Argyrios Kyrtzidis | 2b4072f | 2008-09-09 20:38:47 +0000 | [diff] [blame] | 1333 | /// [C++]   'switch' '(' condition ')' statement | 
| Richard Smith | c202b28 | 2012-04-14 00:33:13 +0000 | [diff] [blame] | 1334 | StmtResult Parser::ParseSwitchStatement(SourceLocation *TrailingElseLoc) { | 
| Chris Lattner | feb00b6 | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 1335 | assert(Tok.is(tok::kw_switch) && "Not a switch stmt!"); | 
| Chris Lattner | af63531 | 2006-10-16 06:06:51 +0000 | [diff] [blame] | 1336 | SourceLocation SwitchLoc = ConsumeToken();  // eat the 'switch'. | 
| Chris Lattner | 9075bd7 | 2006-08-10 04:59:57 +0000 | [diff] [blame] | 1337 |  | 
| Chris Lattner | feb00b6 | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 1338 | if (Tok.isNot(tok::l_paren)) { | 
| Chris Lattner | 6d29c10 | 2008-11-18 07:48:38 +0000 | [diff] [blame] | 1339 | Diag(Tok, diag::err_expected_lparen_after) << "switch"; | 
| Chris Lattner | 9075bd7 | 2006-08-10 04:59:57 +0000 | [diff] [blame] | 1340 | SkipUntil(tok::semi); | 
| Sebastian Redl | b62406f | 2008-12-11 19:48:14 +0000 | [diff] [blame] | 1341 | return StmtError(); | 
| Chris Lattner | 9075bd7 | 2006-08-10 04:59:57 +0000 | [diff] [blame] | 1342 | } | 
| Chris Lattner | 2dd1b72 | 2007-08-26 23:08:06 +0000 | [diff] [blame] | 1343 |  | 
| David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1344 | bool C99orCXX = getLangOpts().C99 || getLangOpts().CPlusPlus; | 
| Argyrios Kyrtzidis | 504bb84 | 2008-09-11 03:06:46 +0000 | [diff] [blame] | 1345 |  | 
| Chris Lattner | 2dd1b72 | 2007-08-26 23:08:06 +0000 | [diff] [blame] | 1346 | // C99 6.8.4p3 - In C99, the switch statement is a block.  This is | 
|  | 1347 | // not the case for C90.  Start the switch scope. | 
| Argyrios Kyrtzidis | 504bb84 | 2008-09-11 03:06:46 +0000 | [diff] [blame] | 1348 | // | 
|  | 1349 | // C++ 6.4p3: | 
|  | 1350 | // A name introduced by a declaration in a condition is in scope from its | 
|  | 1351 | // point of declaration until the end of the substatements controlled by the | 
|  | 1352 | // condition. | 
| Argyrios Kyrtzidis | 47f9865 | 2008-09-11 23:08:39 +0000 | [diff] [blame] | 1353 | // C++ 3.3.2p4: | 
|  | 1354 | // Names declared in the for-init-statement, and in the condition of if, | 
|  | 1355 | // while, for, and switch statements are local to the if, while, for, or | 
|  | 1356 | // switch statement (including the controlled statement). | 
| Argyrios Kyrtzidis | 504bb84 | 2008-09-11 03:06:46 +0000 | [diff] [blame] | 1357 | // | 
| Serge Pavlov | 09f9924 | 2014-01-23 15:05:00 +0000 | [diff] [blame] | 1358 | unsigned ScopeFlags = Scope::SwitchScope; | 
| Chris Lattner | c0081db | 2008-12-12 06:31:07 +0000 | [diff] [blame] | 1359 | if (C99orCXX) | 
|  | 1360 | ScopeFlags |= Scope::DeclScope | Scope::ControlScope; | 
| Douglas Gregor | 7307d6c | 2008-12-10 06:34:36 +0000 | [diff] [blame] | 1361 | ParseScope SwitchScope(this, ScopeFlags); | 
| Chris Lattner | 33ad2ca | 2006-11-05 23:47:55 +0000 | [diff] [blame] | 1362 |  | 
| Chris Lattner | 9075bd7 | 2006-08-10 04:59:57 +0000 | [diff] [blame] | 1363 | // Parse the condition. | 
| Richard Smith | c7a05a9 | 2016-06-29 21:17:59 +0000 | [diff] [blame] | 1364 | StmtResult InitStmt; | 
| Richard Smith | 03a4aa3 | 2016-06-23 19:02:52 +0000 | [diff] [blame] | 1365 | Sema::ConditionResult Cond; | 
| Richard Smith | c7a05a9 | 2016-06-29 21:17:59 +0000 | [diff] [blame] | 1366 | if (ParseParenExprOrCondition(&InitStmt, Cond, SwitchLoc, | 
|  | 1367 | Sema::ConditionKind::Switch)) | 
| Sebastian Redl | b62406f | 2008-12-11 19:48:14 +0000 | [diff] [blame] | 1368 | return StmtError(); | 
| Eli Friedman | 44842d1 | 2008-12-17 22:19:57 +0000 | [diff] [blame] | 1369 |  | 
| Richard Smith | c7a05a9 | 2016-06-29 21:17:59 +0000 | [diff] [blame] | 1370 | StmtResult Switch = | 
|  | 1371 | Actions.ActOnStartOfSwitchStmt(SwitchLoc, InitStmt.get(), Cond); | 
| Sebastian Redl | 17f2c7d | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 1372 |  | 
| Douglas Gregor | e60e41a | 2010-05-06 17:25:47 +0000 | [diff] [blame] | 1373 | if (Switch.isInvalid()) { | 
| NAKAMURA Takumi | 82a3511 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 1374 | // Skip the switch body. | 
| Douglas Gregor | e60e41a | 2010-05-06 17:25:47 +0000 | [diff] [blame] | 1375 | // FIXME: This is not optimal recovery, but parsing the body is more | 
|  | 1376 | // dangerous due to the presence of case and default statements, which | 
|  | 1377 | // will have no place to connect back with the switch. | 
| Douglas Gregor | 4abc32d | 2010-05-20 23:20:59 +0000 | [diff] [blame] | 1378 | if (Tok.is(tok::l_brace)) { | 
|  | 1379 | ConsumeBrace(); | 
| Alexey Bataev | ee6507d | 2013-11-18 08:17:37 +0000 | [diff] [blame] | 1380 | SkipUntil(tok::r_brace); | 
| Douglas Gregor | 4abc32d | 2010-05-20 23:20:59 +0000 | [diff] [blame] | 1381 | } else | 
| Douglas Gregor | e60e41a | 2010-05-06 17:25:47 +0000 | [diff] [blame] | 1382 | SkipUntil(tok::semi); | 
| Benjamin Kramer | 62b95d8 | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 1383 | return Switch; | 
| Douglas Gregor | e60e41a | 2010-05-06 17:25:47 +0000 | [diff] [blame] | 1384 | } | 
| NAKAMURA Takumi | 82a3511 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 1385 |  | 
| Chris Lattner | 8fb2625 | 2007-08-22 05:28:50 +0000 | [diff] [blame] | 1386 | // C99 6.8.4p3 - In C99, the body of the switch statement is a scope, even if | 
| Chris Lattner | 8f44d20 | 2007-08-22 05:33:11 +0000 | [diff] [blame] | 1387 | // there is no compound stmt.  C90 does not have this clause.  We only do this | 
|  | 1388 | // if the body isn't a compound statement to avoid push/pop in common cases. | 
| Argyrios Kyrtzidis | 504bb84 | 2008-09-11 03:06:46 +0000 | [diff] [blame] | 1389 | // | 
|  | 1390 | // C++ 6.4p1: | 
|  | 1391 | // The substatement in a selection-statement (each substatement, in the else | 
|  | 1392 | // form of the if statement) implicitly defines a local scope. | 
|  | 1393 | // | 
|  | 1394 | // See comments in ParseIfStatement for why we create a scope for the | 
|  | 1395 | // condition and a new scope for substatement in C++. | 
|  | 1396 | // | 
| Serge Pavlov | 09f9924 | 2014-01-23 15:05:00 +0000 | [diff] [blame] | 1397 | getCurScope()->AddFlags(Scope::BreakScope); | 
| David Majnemer | 2206bf5 | 2014-03-05 08:57:59 +0000 | [diff] [blame] | 1398 | ParseScope InnerScope(this, Scope::DeclScope, C99orCXX, Tok.is(tok::l_brace)); | 
| Sebastian Redl | 042ad95 | 2008-12-11 19:30:53 +0000 | [diff] [blame] | 1399 |  | 
| Hans Wennborg | 852c346 | 2014-06-17 00:09:05 +0000 | [diff] [blame] | 1400 | // We have incremented the mangling number for the SwitchScope and the | 
|  | 1401 | // InnerScope, which is one too many. | 
|  | 1402 | if (C99orCXX) | 
| David Majnemer | a7f8c46 | 2015-03-19 21:54:30 +0000 | [diff] [blame] | 1403 | getCurScope()->decrementMSManglingNumber(); | 
| Hans Wennborg | 852c346 | 2014-06-17 00:09:05 +0000 | [diff] [blame] | 1404 |  | 
| Chris Lattner | 9075bd7 | 2006-08-10 04:59:57 +0000 | [diff] [blame] | 1405 | // Read the body statement. | 
| Nico Weber | 3cef108 | 2011-12-22 23:26:17 +0000 | [diff] [blame] | 1406 | StmtResult Body(ParseStatement(TrailingElseLoc)); | 
| Chris Lattner | 33ad2ca | 2006-11-05 23:47:55 +0000 | [diff] [blame] | 1407 |  | 
| Chris Lattner | 8fd2d01 | 2010-01-24 01:50:29 +0000 | [diff] [blame] | 1408 | // Pop the scopes. | 
| Douglas Gregor | 7307d6c | 2008-12-10 06:34:36 +0000 | [diff] [blame] | 1409 | InnerScope.Exit(); | 
| Douglas Gregor | 7307d6c | 2008-12-10 06:34:36 +0000 | [diff] [blame] | 1410 | SwitchScope.Exit(); | 
| Sebastian Redl | 042ad95 | 2008-12-11 19:30:53 +0000 | [diff] [blame] | 1411 |  | 
| John McCall | b268a28 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 1412 | return Actions.ActOnFinishSwitchStmt(SwitchLoc, Switch.get(), Body.get()); | 
| Chris Lattner | 9075bd7 | 2006-08-10 04:59:57 +0000 | [diff] [blame] | 1413 | } | 
|  | 1414 |  | 
|  | 1415 | /// ParseWhileStatement | 
|  | 1416 | ///       while-statement: [C99 6.8.5.1] | 
|  | 1417 | ///         'while' '(' expression ')' statement | 
| Argyrios Kyrtzidis | 2b4072f | 2008-09-09 20:38:47 +0000 | [diff] [blame] | 1418 | /// [C++]   'while' '(' condition ')' statement | 
| Richard Smith | c202b28 | 2012-04-14 00:33:13 +0000 | [diff] [blame] | 1419 | StmtResult Parser::ParseWhileStatement(SourceLocation *TrailingElseLoc) { | 
| Chris Lattner | feb00b6 | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 1420 | assert(Tok.is(tok::kw_while) && "Not a while stmt!"); | 
| Chris Lattner | 30f910e | 2006-10-16 05:52:41 +0000 | [diff] [blame] | 1421 | SourceLocation WhileLoc = Tok.getLocation(); | 
| Chris Lattner | 9075bd7 | 2006-08-10 04:59:57 +0000 | [diff] [blame] | 1422 | ConsumeToken();  // eat the 'while'. | 
| Sebastian Redl | b62406f | 2008-12-11 19:48:14 +0000 | [diff] [blame] | 1423 |  | 
| Chris Lattner | feb00b6 | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 1424 | if (Tok.isNot(tok::l_paren)) { | 
| Chris Lattner | 6d29c10 | 2008-11-18 07:48:38 +0000 | [diff] [blame] | 1425 | Diag(Tok, diag::err_expected_lparen_after) << "while"; | 
| Chris Lattner | 9075bd7 | 2006-08-10 04:59:57 +0000 | [diff] [blame] | 1426 | SkipUntil(tok::semi); | 
| Sebastian Redl | b62406f | 2008-12-11 19:48:14 +0000 | [diff] [blame] | 1427 | return StmtError(); | 
| Chris Lattner | 9075bd7 | 2006-08-10 04:59:57 +0000 | [diff] [blame] | 1428 | } | 
| Sebastian Redl | b62406f | 2008-12-11 19:48:14 +0000 | [diff] [blame] | 1429 |  | 
| David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1430 | bool C99orCXX = getLangOpts().C99 || getLangOpts().CPlusPlus; | 
| Argyrios Kyrtzidis | 504bb84 | 2008-09-11 03:06:46 +0000 | [diff] [blame] | 1431 |  | 
| Chris Lattner | 2dd1b72 | 2007-08-26 23:08:06 +0000 | [diff] [blame] | 1432 | // C99 6.8.5p5 - In C99, the while statement is a block.  This is not | 
|  | 1433 | // the case for C90.  Start the loop scope. | 
| Argyrios Kyrtzidis | 504bb84 | 2008-09-11 03:06:46 +0000 | [diff] [blame] | 1434 | // | 
|  | 1435 | // C++ 6.4p3: | 
|  | 1436 | // A name introduced by a declaration in a condition is in scope from its | 
|  | 1437 | // point of declaration until the end of the substatements controlled by the | 
|  | 1438 | // condition. | 
| Argyrios Kyrtzidis | 47f9865 | 2008-09-11 23:08:39 +0000 | [diff] [blame] | 1439 | // C++ 3.3.2p4: | 
|  | 1440 | // Names declared in the for-init-statement, and in the condition of if, | 
|  | 1441 | // while, for, and switch statements are local to the if, while, for, or | 
|  | 1442 | // switch statement (including the controlled statement). | 
| Argyrios Kyrtzidis | 504bb84 | 2008-09-11 03:06:46 +0000 | [diff] [blame] | 1443 | // | 
| Douglas Gregor | 7307d6c | 2008-12-10 06:34:36 +0000 | [diff] [blame] | 1444 | unsigned ScopeFlags; | 
| Argyrios Kyrtzidis | 504bb84 | 2008-09-11 03:06:46 +0000 | [diff] [blame] | 1445 | if (C99orCXX) | 
| Douglas Gregor | 7307d6c | 2008-12-10 06:34:36 +0000 | [diff] [blame] | 1446 | ScopeFlags = Scope::BreakScope | Scope::ContinueScope | | 
|  | 1447 | Scope::DeclScope  | Scope::ControlScope; | 
| Chris Lattner | 2dd1b72 | 2007-08-26 23:08:06 +0000 | [diff] [blame] | 1448 | else | 
| Douglas Gregor | 7307d6c | 2008-12-10 06:34:36 +0000 | [diff] [blame] | 1449 | ScopeFlags = Scope::BreakScope | Scope::ContinueScope; | 
|  | 1450 | ParseScope WhileScope(this, ScopeFlags); | 
| Chris Lattner | 33ad2ca | 2006-11-05 23:47:55 +0000 | [diff] [blame] | 1451 |  | 
| Chris Lattner | 9075bd7 | 2006-08-10 04:59:57 +0000 | [diff] [blame] | 1452 | // Parse the condition. | 
| Richard Smith | 03a4aa3 | 2016-06-23 19:02:52 +0000 | [diff] [blame] | 1453 | Sema::ConditionResult Cond; | 
| Richard Smith | c7a05a9 | 2016-06-29 21:17:59 +0000 | [diff] [blame] | 1454 | if (ParseParenExprOrCondition(nullptr, Cond, WhileLoc, | 
|  | 1455 | Sema::ConditionKind::Boolean)) | 
| Chris Lattner | c0081db | 2008-12-12 06:31:07 +0000 | [diff] [blame] | 1456 | return StmtError(); | 
| Sebastian Redl | 17f2c7d | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 1457 |  | 
| Justin Bogner | e4ebb6c | 2013-12-03 07:36:55 +0000 | [diff] [blame] | 1458 | // C99 6.8.5p5 - In C99, the body of the while statement is a scope, even if | 
| Chris Lattner | 8f44d20 | 2007-08-22 05:33:11 +0000 | [diff] [blame] | 1459 | // there is no compound stmt.  C90 does not have this clause.  We only do this | 
|  | 1460 | // if the body isn't a compound statement to avoid push/pop in common cases. | 
| Argyrios Kyrtzidis | 504bb84 | 2008-09-11 03:06:46 +0000 | [diff] [blame] | 1461 | // | 
|  | 1462 | // C++ 6.5p2: | 
|  | 1463 | // The substatement in an iteration-statement implicitly defines a local scope | 
|  | 1464 | // which is entered and exited each time through the loop. | 
|  | 1465 | // | 
|  | 1466 | // See comments in ParseIfStatement for why we create a scope for the | 
|  | 1467 | // condition and a new scope for substatement in C++. | 
|  | 1468 | // | 
| David Majnemer | 2206bf5 | 2014-03-05 08:57:59 +0000 | [diff] [blame] | 1469 | ParseScope InnerScope(this, Scope::DeclScope, C99orCXX, Tok.is(tok::l_brace)); | 
| Sebastian Redl | b62406f | 2008-12-11 19:48:14 +0000 | [diff] [blame] | 1470 |  | 
| Chris Lattner | 9075bd7 | 2006-08-10 04:59:57 +0000 | [diff] [blame] | 1471 | // Read the body statement. | 
| Nico Weber | 3cef108 | 2011-12-22 23:26:17 +0000 | [diff] [blame] | 1472 | StmtResult Body(ParseStatement(TrailingElseLoc)); | 
| Chris Lattner | 33ad2ca | 2006-11-05 23:47:55 +0000 | [diff] [blame] | 1473 |  | 
| Chris Lattner | 8fb2625 | 2007-08-22 05:28:50 +0000 | [diff] [blame] | 1474 | // Pop the body scope if needed. | 
| Douglas Gregor | 7307d6c | 2008-12-10 06:34:36 +0000 | [diff] [blame] | 1475 | InnerScope.Exit(); | 
|  | 1476 | WhileScope.Exit(); | 
| Sebastian Redl | b62406f | 2008-12-11 19:48:14 +0000 | [diff] [blame] | 1477 |  | 
| Richard Smith | 03a4aa3 | 2016-06-23 19:02:52 +0000 | [diff] [blame] | 1478 | if (Cond.isInvalid() || Body.isInvalid()) | 
| Sebastian Redl | b62406f | 2008-12-11 19:48:14 +0000 | [diff] [blame] | 1479 | return StmtError(); | 
|  | 1480 |  | 
| Richard Smith | 03a4aa3 | 2016-06-23 19:02:52 +0000 | [diff] [blame] | 1481 | return Actions.ActOnWhileStmt(WhileLoc, Cond, Body.get()); | 
| Chris Lattner | 9075bd7 | 2006-08-10 04:59:57 +0000 | [diff] [blame] | 1482 | } | 
|  | 1483 |  | 
|  | 1484 | /// ParseDoStatement | 
|  | 1485 | ///       do-statement: [C99 6.8.5.2] | 
|  | 1486 | ///         'do' statement 'while' '(' expression ')' ';' | 
| Chris Lattner | 503fadc | 2006-08-10 05:45:44 +0000 | [diff] [blame] | 1487 | /// Note: this lets the caller parse the end ';'. | 
| Richard Smith | c202b28 | 2012-04-14 00:33:13 +0000 | [diff] [blame] | 1488 | StmtResult Parser::ParseDoStatement() { | 
| Chris Lattner | feb00b6 | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 1489 | assert(Tok.is(tok::kw_do) && "Not a do stmt!"); | 
| Chris Lattner | af63531 | 2006-10-16 06:06:51 +0000 | [diff] [blame] | 1490 | SourceLocation DoLoc = ConsumeToken();  // eat the 'do'. | 
| Sebastian Redl | b62406f | 2008-12-11 19:48:14 +0000 | [diff] [blame] | 1491 |  | 
| Chris Lattner | 2dd1b72 | 2007-08-26 23:08:06 +0000 | [diff] [blame] | 1492 | // C99 6.8.5p5 - In C99, the do statement is a block.  This is not | 
|  | 1493 | // the case for C90.  Start the loop scope. | 
| Douglas Gregor | 7307d6c | 2008-12-10 06:34:36 +0000 | [diff] [blame] | 1494 | unsigned ScopeFlags; | 
| David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1495 | if (getLangOpts().C99) | 
| Douglas Gregor | 7307d6c | 2008-12-10 06:34:36 +0000 | [diff] [blame] | 1496 | ScopeFlags = Scope::BreakScope | Scope::ContinueScope | Scope::DeclScope; | 
| Chris Lattner | 2dd1b72 | 2007-08-26 23:08:06 +0000 | [diff] [blame] | 1497 | else | 
| Douglas Gregor | 7307d6c | 2008-12-10 06:34:36 +0000 | [diff] [blame] | 1498 | ScopeFlags = Scope::BreakScope | Scope::ContinueScope; | 
| Sebastian Redl | b62406f | 2008-12-11 19:48:14 +0000 | [diff] [blame] | 1499 |  | 
| Douglas Gregor | 7307d6c | 2008-12-10 06:34:36 +0000 | [diff] [blame] | 1500 | ParseScope DoScope(this, ScopeFlags); | 
| Chris Lattner | 33ad2ca | 2006-11-05 23:47:55 +0000 | [diff] [blame] | 1501 |  | 
| Justin Bogner | e4ebb6c | 2013-12-03 07:36:55 +0000 | [diff] [blame] | 1502 | // C99 6.8.5p5 - In C99, the body of the do statement is a scope, even if | 
| Chris Lattner | 8f44d20 | 2007-08-22 05:33:11 +0000 | [diff] [blame] | 1503 | // there is no compound stmt.  C90 does not have this clause. We only do this | 
|  | 1504 | // if the body isn't a compound statement to avoid push/pop in common cases. | 
| Argyrios Kyrtzidis | fea3801 | 2008-09-11 04:46:46 +0000 | [diff] [blame] | 1505 | // | 
|  | 1506 | // C++ 6.5p2: | 
|  | 1507 | // The substatement in an iteration-statement implicitly defines a local scope | 
|  | 1508 | // which is entered and exited each time through the loop. | 
|  | 1509 | // | 
| David Majnemer | 2206bf5 | 2014-03-05 08:57:59 +0000 | [diff] [blame] | 1510 | bool C99orCXX = getLangOpts().C99 || getLangOpts().CPlusPlus; | 
|  | 1511 | ParseScope InnerScope(this, Scope::DeclScope, C99orCXX, Tok.is(tok::l_brace)); | 
| Sebastian Redl | b62406f | 2008-12-11 19:48:14 +0000 | [diff] [blame] | 1512 |  | 
| Chris Lattner | 9075bd7 | 2006-08-10 04:59:57 +0000 | [diff] [blame] | 1513 | // Read the body statement. | 
| John McCall | dadc575 | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 1514 | StmtResult Body(ParseStatement()); | 
| Chris Lattner | 9075bd7 | 2006-08-10 04:59:57 +0000 | [diff] [blame] | 1515 |  | 
| Chris Lattner | 8fb2625 | 2007-08-22 05:28:50 +0000 | [diff] [blame] | 1516 | // Pop the body scope if needed. | 
| Douglas Gregor | 7307d6c | 2008-12-10 06:34:36 +0000 | [diff] [blame] | 1517 | InnerScope.Exit(); | 
| Chris Lattner | 8fb2625 | 2007-08-22 05:28:50 +0000 | [diff] [blame] | 1518 |  | 
| Chris Lattner | feb00b6 | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 1519 | if (Tok.isNot(tok::kw_while)) { | 
| Sebastian Redl | 17f2c7d | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 1520 | if (!Body.isInvalid()) { | 
| Chris Lattner | 0046de1 | 2008-11-13 18:52:53 +0000 | [diff] [blame] | 1521 | Diag(Tok, diag::err_expected_while); | 
| Alp Toker | ec54327 | 2013-12-24 09:48:30 +0000 | [diff] [blame] | 1522 | Diag(DoLoc, diag::note_matching) << "'do'"; | 
| Alexey Bataev | ee6507d | 2013-11-18 08:17:37 +0000 | [diff] [blame] | 1523 | SkipUntil(tok::semi, StopBeforeMatch); | 
| Chris Lattner | 0046de1 | 2008-11-13 18:52:53 +0000 | [diff] [blame] | 1524 | } | 
| Sebastian Redl | b62406f | 2008-12-11 19:48:14 +0000 | [diff] [blame] | 1525 | return StmtError(); | 
| Chris Lattner | 9075bd7 | 2006-08-10 04:59:57 +0000 | [diff] [blame] | 1526 | } | 
| Chris Lattner | af63531 | 2006-10-16 06:06:51 +0000 | [diff] [blame] | 1527 | SourceLocation WhileLoc = ConsumeToken(); | 
| Sebastian Redl | b62406f | 2008-12-11 19:48:14 +0000 | [diff] [blame] | 1528 |  | 
| Chris Lattner | feb00b6 | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 1529 | if (Tok.isNot(tok::l_paren)) { | 
| Chris Lattner | 6d29c10 | 2008-11-18 07:48:38 +0000 | [diff] [blame] | 1530 | Diag(Tok, diag::err_expected_lparen_after) << "do/while"; | 
| Alexey Bataev | ee6507d | 2013-11-18 08:17:37 +0000 | [diff] [blame] | 1531 | SkipUntil(tok::semi, StopBeforeMatch); | 
| Sebastian Redl | b62406f | 2008-12-11 19:48:14 +0000 | [diff] [blame] | 1532 | return StmtError(); | 
| Chris Lattner | 9075bd7 | 2006-08-10 04:59:57 +0000 | [diff] [blame] | 1533 | } | 
| Sebastian Redl | b62406f | 2008-12-11 19:48:14 +0000 | [diff] [blame] | 1534 |  | 
| Richard Smith | c2c8bb8 | 2013-10-15 01:34:54 +0000 | [diff] [blame] | 1535 | // Parse the parenthesized expression. | 
| Douglas Gregor | e7a8e3b | 2011-10-12 16:37:45 +0000 | [diff] [blame] | 1536 | BalancedDelimiterTracker T(*this, tok::l_paren); | 
|  | 1537 | T.consumeOpen(); | 
| Chad Rosier | 67055f5 | 2012-07-10 21:35:27 +0000 | [diff] [blame] | 1538 |  | 
| Richard Smith | c2c8bb8 | 2013-10-15 01:34:54 +0000 | [diff] [blame] | 1539 | // A do-while expression is not a condition, so can't have attributes. | 
|  | 1540 | DiagnoseAndSkipCXX11Attributes(); | 
| Alexis Hunt | 6aa9bee | 2012-06-23 05:07:58 +0000 | [diff] [blame] | 1541 |  | 
| John McCall | dadc575 | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 1542 | ExprResult Cond = ParseExpression(); | 
| Alex Lorenz | c38ba66 | 2017-10-30 22:55:11 +0000 | [diff] [blame] | 1543 | // Correct the typos in condition before closing the scope. | 
|  | 1544 | if (Cond.isUsable()) | 
|  | 1545 | Cond = Actions.CorrectDelayedTyposInExpr(Cond); | 
| Douglas Gregor | e7a8e3b | 2011-10-12 16:37:45 +0000 | [diff] [blame] | 1546 | T.consumeClose(); | 
| Douglas Gregor | 7307d6c | 2008-12-10 06:34:36 +0000 | [diff] [blame] | 1547 | DoScope.Exit(); | 
| Sebastian Redl | 17f2c7d | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 1548 |  | 
| Sebastian Redl | b62406f | 2008-12-11 19:48:14 +0000 | [diff] [blame] | 1549 | if (Cond.isInvalid() || Body.isInvalid()) | 
|  | 1550 | return StmtError(); | 
| Sebastian Redl | 17f2c7d | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 1551 |  | 
| Douglas Gregor | e7a8e3b | 2011-10-12 16:37:45 +0000 | [diff] [blame] | 1552 | return Actions.ActOnDoStmt(DoLoc, Body.get(), WhileLoc, T.getOpenLocation(), | 
|  | 1553 | Cond.get(), T.getCloseLocation()); | 
| Chris Lattner | 9075bd7 | 2006-08-10 04:59:57 +0000 | [diff] [blame] | 1554 | } | 
|  | 1555 |  | 
| Richard Smith | 955bf01 | 2014-06-19 11:42:00 +0000 | [diff] [blame] | 1556 | bool Parser::isForRangeIdentifier() { | 
|  | 1557 | assert(Tok.is(tok::identifier)); | 
|  | 1558 |  | 
|  | 1559 | const Token &Next = NextToken(); | 
|  | 1560 | if (Next.is(tok::colon)) | 
|  | 1561 | return true; | 
|  | 1562 |  | 
| Daniel Marjamaki | e59f8d7 | 2015-06-18 10:59:26 +0000 | [diff] [blame] | 1563 | if (Next.isOneOf(tok::l_square, tok::kw_alignas)) { | 
| Richard Smith | 955bf01 | 2014-06-19 11:42:00 +0000 | [diff] [blame] | 1564 | TentativeParsingAction PA(*this); | 
|  | 1565 | ConsumeToken(); | 
|  | 1566 | SkipCXX11Attributes(); | 
|  | 1567 | bool Result = Tok.is(tok::colon); | 
|  | 1568 | PA.Revert(); | 
|  | 1569 | return Result; | 
|  | 1570 | } | 
|  | 1571 |  | 
|  | 1572 | return false; | 
|  | 1573 | } | 
|  | 1574 |  | 
| Chris Lattner | 9075bd7 | 2006-08-10 04:59:57 +0000 | [diff] [blame] | 1575 | /// ParseForStatement | 
|  | 1576 | ///       for-statement: [C99 6.8.5.3] | 
|  | 1577 | ///         'for' '(' expr[opt] ';' expr[opt] ';' expr[opt] ')' statement | 
|  | 1578 | ///         'for' '(' declaration expr[opt] ';' expr[opt] ')' statement | 
| Argyrios Kyrtzidis | 2b4072f | 2008-09-09 20:38:47 +0000 | [diff] [blame] | 1579 | /// [C++]   'for' '(' for-init-statement condition[opt] ';' expression[opt] ')' | 
|  | 1580 | /// [C++]       statement | 
| Richard Smith | 0e304ea | 2015-10-22 04:46:14 +0000 | [diff] [blame] | 1581 | /// [C++0x] 'for' | 
|  | 1582 | ///             'co_await'[opt]    [Coroutines] | 
|  | 1583 | ///             '(' for-range-declaration ':' for-range-initializer ')' | 
|  | 1584 | ///             statement | 
| Fariborz Jahanian | 732b8c2 | 2008-01-03 17:55:25 +0000 | [diff] [blame] | 1585 | /// [OBJC2] 'for' '(' declaration 'in' expr ')' statement | 
|  | 1586 | /// [OBJC2] 'for' '(' expr 'in' expr ')' statement | 
| Argyrios Kyrtzidis | 2b4072f | 2008-09-09 20:38:47 +0000 | [diff] [blame] | 1587 | /// | 
|  | 1588 | /// [C++] for-init-statement: | 
|  | 1589 | /// [C++]   expression-statement | 
|  | 1590 | /// [C++]   simple-declaration | 
|  | 1591 | /// | 
| Richard Smith | 02e85f3 | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 1592 | /// [C++0x] for-range-declaration: | 
|  | 1593 | /// [C++0x]   attribute-specifier-seq[opt] type-specifier-seq declarator | 
|  | 1594 | /// [C++0x] for-range-initializer: | 
|  | 1595 | /// [C++0x]   expression | 
|  | 1596 | /// [C++0x]   braced-init-list            [TODO] | 
| Richard Smith | c202b28 | 2012-04-14 00:33:13 +0000 | [diff] [blame] | 1597 | StmtResult Parser::ParseForStatement(SourceLocation *TrailingElseLoc) { | 
| Chris Lattner | feb00b6 | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 1598 | assert(Tok.is(tok::kw_for) && "Not a for stmt!"); | 
| Chris Lattner | af63531 | 2006-10-16 06:06:51 +0000 | [diff] [blame] | 1599 | SourceLocation ForLoc = ConsumeToken();  // eat the 'for'. | 
| Sebastian Redl | b62406f | 2008-12-11 19:48:14 +0000 | [diff] [blame] | 1600 |  | 
| Richard Smith | 0e304ea | 2015-10-22 04:46:14 +0000 | [diff] [blame] | 1601 | SourceLocation CoawaitLoc; | 
|  | 1602 | if (Tok.is(tok::kw_co_await)) | 
|  | 1603 | CoawaitLoc = ConsumeToken(); | 
|  | 1604 |  | 
| Chris Lattner | feb00b6 | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 1605 | if (Tok.isNot(tok::l_paren)) { | 
| Chris Lattner | 6d29c10 | 2008-11-18 07:48:38 +0000 | [diff] [blame] | 1606 | Diag(Tok, diag::err_expected_lparen_after) << "for"; | 
| Chris Lattner | 9075bd7 | 2006-08-10 04:59:57 +0000 | [diff] [blame] | 1607 | SkipUntil(tok::semi); | 
| Sebastian Redl | b62406f | 2008-12-11 19:48:14 +0000 | [diff] [blame] | 1608 | return StmtError(); | 
| Chris Lattner | 9075bd7 | 2006-08-10 04:59:57 +0000 | [diff] [blame] | 1609 | } | 
| Sebastian Redl | b62406f | 2008-12-11 19:48:14 +0000 | [diff] [blame] | 1610 |  | 
| Chad Rosier | 67055f5 | 2012-07-10 21:35:27 +0000 | [diff] [blame] | 1611 | bool C99orCXXorObjC = getLangOpts().C99 || getLangOpts().CPlusPlus || | 
| Erik Pilkington | fa98390 | 2018-10-30 20:31:30 +0000 | [diff] [blame] | 1612 | getLangOpts().ObjC; | 
| Argyrios Kyrtzidis | 504bb84 | 2008-09-11 03:06:46 +0000 | [diff] [blame] | 1613 |  | 
| Chris Lattner | 2dd1b72 | 2007-08-26 23:08:06 +0000 | [diff] [blame] | 1614 | // C99 6.8.5p5 - In C99, the for statement is a block.  This is not | 
|  | 1615 | // the case for C90.  Start the loop scope. | 
| Argyrios Kyrtzidis | 504bb84 | 2008-09-11 03:06:46 +0000 | [diff] [blame] | 1616 | // | 
|  | 1617 | // C++ 6.4p3: | 
|  | 1618 | // A name introduced by a declaration in a condition is in scope from its | 
|  | 1619 | // point of declaration until the end of the substatements controlled by the | 
|  | 1620 | // condition. | 
| Argyrios Kyrtzidis | 47f9865 | 2008-09-11 23:08:39 +0000 | [diff] [blame] | 1621 | // C++ 3.3.2p4: | 
|  | 1622 | // Names declared in the for-init-statement, and in the condition of if, | 
|  | 1623 | // while, for, and switch statements are local to the if, while, for, or | 
|  | 1624 | // switch statement (including the controlled statement). | 
| Argyrios Kyrtzidis | 504bb84 | 2008-09-11 03:06:46 +0000 | [diff] [blame] | 1625 | // C++ 6.5.3p1: | 
|  | 1626 | // Names declared in the for-init-statement are in the same declarative-region | 
|  | 1627 | // as those declared in the condition. | 
|  | 1628 | // | 
| Serge Pavlov | 09f9924 | 2014-01-23 15:05:00 +0000 | [diff] [blame] | 1629 | unsigned ScopeFlags = 0; | 
| Chris Lattner | 934074c | 2009-04-22 00:54:41 +0000 | [diff] [blame] | 1630 | if (C99orCXXorObjC) | 
| Serge Pavlov | 09f9924 | 2014-01-23 15:05:00 +0000 | [diff] [blame] | 1631 | ScopeFlags = Scope::DeclScope | Scope::ControlScope; | 
| Douglas Gregor | 7307d6c | 2008-12-10 06:34:36 +0000 | [diff] [blame] | 1632 |  | 
|  | 1633 | ParseScope ForScope(this, ScopeFlags); | 
| Chris Lattner | 9075bd7 | 2006-08-10 04:59:57 +0000 | [diff] [blame] | 1634 |  | 
| Douglas Gregor | e7a8e3b | 2011-10-12 16:37:45 +0000 | [diff] [blame] | 1635 | BalancedDelimiterTracker T(*this, tok::l_paren); | 
|  | 1636 | T.consumeOpen(); | 
|  | 1637 |  | 
| John McCall | dadc575 | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 1638 | ExprResult Value; | 
| Sebastian Redl | 17f2c7d | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 1639 |  | 
| Richard Smith | 8baa500 | 2018-09-28 18:44:09 +0000 | [diff] [blame] | 1640 | bool ForEach = false; | 
| John McCall | dadc575 | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 1641 | StmtResult FirstPart; | 
| Richard Smith | 03a4aa3 | 2016-06-23 19:02:52 +0000 | [diff] [blame] | 1642 | Sema::ConditionResult SecondPart; | 
| John McCall | dadc575 | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 1643 | ExprResult Collection; | 
| Richard Smith | 8baa500 | 2018-09-28 18:44:09 +0000 | [diff] [blame] | 1644 | ForRangeInfo ForRangeInfo; | 
| Douglas Gregor | e60e41a | 2010-05-06 17:25:47 +0000 | [diff] [blame] | 1645 | FullExprArg ThirdPart(Actions); | 
| NAKAMURA Takumi | 82a3511 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 1646 |  | 
| Douglas Gregor | 9d64c5e | 2009-09-21 20:51:25 +0000 | [diff] [blame] | 1647 | if (Tok.is(tok::code_completion)) { | 
| NAKAMURA Takumi | 82a3511 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 1648 | Actions.CodeCompleteOrdinaryName(getCurScope(), | 
| John McCall | faf5fb4 | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 1649 | C99orCXXorObjC? Sema::PCC_ForInit | 
|  | 1650 | : Sema::PCC_Expression); | 
| Argyrios Kyrtzidis | 5cec2ae | 2011-09-04 03:32:15 +0000 | [diff] [blame] | 1651 | cutOffParsing(); | 
|  | 1652 | return StmtError(); | 
| Douglas Gregor | 9d64c5e | 2009-09-21 20:51:25 +0000 | [diff] [blame] | 1653 | } | 
| NAKAMURA Takumi | 82a3511 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 1654 |  | 
| Alexis Hunt | 6aa9bee | 2012-06-23 05:07:58 +0000 | [diff] [blame] | 1655 | ParsedAttributesWithRange attrs(AttrFactory); | 
| Richard Smith | 89645bc | 2013-01-02 12:01:23 +0000 | [diff] [blame] | 1656 | MaybeParseCXX11Attributes(attrs); | 
| Alexis Hunt | 6aa9bee | 2012-06-23 05:07:58 +0000 | [diff] [blame] | 1657 |  | 
| Roman Lebedev | 377748f | 2018-11-20 18:59:05 +0000 | [diff] [blame] | 1658 | SourceLocation EmptyInitStmtSemiLoc; | 
|  | 1659 |  | 
| Chris Lattner | 9075bd7 | 2006-08-10 04:59:57 +0000 | [diff] [blame] | 1660 | // Parse the first part of the for specifier. | 
| Chris Lattner | feb00b6 | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 1661 | if (Tok.is(tok::semi)) {  // for (; | 
| Alexis Hunt | 6aa9bee | 2012-06-23 05:07:58 +0000 | [diff] [blame] | 1662 | ProhibitAttributes(attrs); | 
| Chris Lattner | 53361ac | 2006-08-10 05:19:57 +0000 | [diff] [blame] | 1663 | // no first part, eat the ';'. | 
| Roman Lebedev | 377748f | 2018-11-20 18:59:05 +0000 | [diff] [blame] | 1664 | SourceLocation SemiLoc = Tok.getLocation(); | 
|  | 1665 | if (!Tok.hasLeadingEmptyMacro() && !SemiLoc.isMacroID()) | 
|  | 1666 | EmptyInitStmtSemiLoc = SemiLoc; | 
| Chris Lattner | 53361ac | 2006-08-10 05:19:57 +0000 | [diff] [blame] | 1667 | ConsumeToken(); | 
| Richard Smith | 955bf01 | 2014-06-19 11:42:00 +0000 | [diff] [blame] | 1668 | } else if (getLangOpts().CPlusPlus && Tok.is(tok::identifier) && | 
|  | 1669 | isForRangeIdentifier()) { | 
|  | 1670 | ProhibitAttributes(attrs); | 
|  | 1671 | IdentifierInfo *Name = Tok.getIdentifierInfo(); | 
|  | 1672 | SourceLocation Loc = ConsumeToken(); | 
|  | 1673 | MaybeParseCXX11Attributes(attrs); | 
|  | 1674 |  | 
| Richard Smith | 8baa500 | 2018-09-28 18:44:09 +0000 | [diff] [blame] | 1675 | ForRangeInfo.ColonLoc = ConsumeToken(); | 
| Richard Smith | 955bf01 | 2014-06-19 11:42:00 +0000 | [diff] [blame] | 1676 | if (Tok.is(tok::l_brace)) | 
| Richard Smith | 8baa500 | 2018-09-28 18:44:09 +0000 | [diff] [blame] | 1677 | ForRangeInfo.RangeExpr = ParseBraceInitializer(); | 
| Richard Smith | 955bf01 | 2014-06-19 11:42:00 +0000 | [diff] [blame] | 1678 | else | 
| Richard Smith | 8baa500 | 2018-09-28 18:44:09 +0000 | [diff] [blame] | 1679 | ForRangeInfo.RangeExpr = ParseExpression(); | 
| Richard Smith | 955bf01 | 2014-06-19 11:42:00 +0000 | [diff] [blame] | 1680 |  | 
| Richard Smith | 83d3f15 | 2014-11-27 01:54:27 +0000 | [diff] [blame] | 1681 | Diag(Loc, diag::err_for_range_identifier) | 
| Aaron Ballman | c351fba | 2017-12-04 20:27:34 +0000 | [diff] [blame] | 1682 | << ((getLangOpts().CPlusPlus11 && !getLangOpts().CPlusPlus17) | 
| Richard Smith | 955bf01 | 2014-06-19 11:42:00 +0000 | [diff] [blame] | 1683 | ? FixItHint::CreateInsertion(Loc, "auto &&") | 
|  | 1684 | : FixItHint()); | 
|  | 1685 |  | 
| Richard Smith | 8baa500 | 2018-09-28 18:44:09 +0000 | [diff] [blame] | 1686 | ForRangeInfo.LoopVar = Actions.ActOnCXXForRangeIdentifier( | 
|  | 1687 | getCurScope(), Loc, Name, attrs, attrs.Range.getEnd()); | 
| Eli Friedman | 0ffc31c | 2011-12-20 01:50:37 +0000 | [diff] [blame] | 1688 | } else if (isForInitDeclaration()) {  // for (int X = 4; | 
| Richard Smith | bf5bcf2 | 2018-06-26 23:20:26 +0000 | [diff] [blame] | 1689 | ParenBraceBracketBalancer BalancerRAIIObj(*this); | 
|  | 1690 |  | 
| Chris Lattner | 53361ac | 2006-08-10 05:19:57 +0000 | [diff] [blame] | 1691 | // Parse declaration, which eats the ';'. | 
| George Burgess IV | 4d45645 | 2018-06-28 21:36:00 +0000 | [diff] [blame] | 1692 | if (!C99orCXXorObjC) {   // Use of C99-style for loops in C90 mode? | 
| Chris Lattner | ab180365 | 2006-08-10 05:22:36 +0000 | [diff] [blame] | 1693 | Diag(Tok, diag::ext_c99_variable_decl_in_for_loop); | 
| George Burgess IV | 4d45645 | 2018-06-28 21:36:00 +0000 | [diff] [blame] | 1694 | Diag(Tok, diag::warn_gcc_variable_decl_in_for_loop); | 
|  | 1695 | } | 
| Sebastian Redl | b62406f | 2008-12-11 19:48:14 +0000 | [diff] [blame] | 1696 |  | 
| Richard Smith | 02e85f3 | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 1697 | // In C++0x, "for (T NS:a" might not be a typo for :: | 
| David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1698 | bool MightBeForRangeStmt = getLangOpts().CPlusPlus; | 
| Richard Smith | 02e85f3 | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 1699 | ColonProtectionRAIIObject ColonProtection(*this, MightBeForRangeStmt); | 
|  | 1700 |  | 
| Chris Lattner | 49836b4 | 2009-04-02 04:16:50 +0000 | [diff] [blame] | 1701 | SourceLocation DeclStart = Tok.getLocation(), DeclEnd; | 
| Ismail Pazarbasi | 49ff754 | 2014-05-08 11:28:25 +0000 | [diff] [blame] | 1702 | DeclGroupPtrTy DG = ParseSimpleDeclaration( | 
| Faisal Vali | 421b2d1 | 2017-12-29 05:41:00 +0000 | [diff] [blame] | 1703 | DeclaratorContext::ForContext, DeclEnd, attrs, false, | 
| Richard Smith | 8baa500 | 2018-09-28 18:44:09 +0000 | [diff] [blame] | 1704 | MightBeForRangeStmt ? &ForRangeInfo : nullptr); | 
| Chris Lattner | 32dc41c | 2009-03-29 17:27:48 +0000 | [diff] [blame] | 1705 | FirstPart = Actions.ActOnDeclStmt(DG, DeclStart, Tok.getLocation()); | 
| Richard Smith | 8baa500 | 2018-09-28 18:44:09 +0000 | [diff] [blame] | 1706 | if (ForRangeInfo.ParsedForRangeDecl()) { | 
|  | 1707 | Diag(ForRangeInfo.ColonLoc, getLangOpts().CPlusPlus11 ? | 
| Richard Smith | 5d164bc | 2011-10-15 05:09:34 +0000 | [diff] [blame] | 1708 | diag::warn_cxx98_compat_for_range : diag::ext_for_range); | 
| Richard Smith | 8baa500 | 2018-09-28 18:44:09 +0000 | [diff] [blame] | 1709 | ForRangeInfo.LoopVar = FirstPart; | 
|  | 1710 | FirstPart = StmtResult(); | 
| Richard Smith | 02e85f3 | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 1711 | } else if (Tok.is(tok::semi)) {  // for (int x = 4; | 
| Chris Lattner | 32dc41c | 2009-03-29 17:27:48 +0000 | [diff] [blame] | 1712 | ConsumeToken(); | 
|  | 1713 | } else if ((ForEach = isTokIdentifier_in())) { | 
| Fariborz Jahanian | e774fa6 | 2009-11-19 22:12:37 +0000 | [diff] [blame] | 1714 | Actions.ActOnForEachDeclStmt(DG); | 
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1715 | // ObjC: for (id x in expr) | 
| Fariborz Jahanian | 732b8c2 | 2008-01-03 17:55:25 +0000 | [diff] [blame] | 1716 | ConsumeToken(); // consume 'in' | 
| NAKAMURA Takumi | 82a3511 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 1717 |  | 
| Douglas Gregor | 68762e7 | 2010-08-23 21:17:50 +0000 | [diff] [blame] | 1718 | if (Tok.is(tok::code_completion)) { | 
|  | 1719 | Actions.CodeCompleteObjCForCollection(getCurScope(), DG); | 
| Argyrios Kyrtzidis | 5cec2ae | 2011-09-04 03:32:15 +0000 | [diff] [blame] | 1720 | cutOffParsing(); | 
|  | 1721 | return StmtError(); | 
| Douglas Gregor | 68762e7 | 2010-08-23 21:17:50 +0000 | [diff] [blame] | 1722 | } | 
| Douglas Gregor | e60e41a | 2010-05-06 17:25:47 +0000 | [diff] [blame] | 1723 | Collection = ParseExpression(); | 
| Chris Lattner | 32dc41c | 2009-03-29 17:27:48 +0000 | [diff] [blame] | 1724 | } else { | 
|  | 1725 | Diag(Tok, diag::err_expected_semi_for); | 
| Fariborz Jahanian | 732b8c2 | 2008-01-03 17:55:25 +0000 | [diff] [blame] | 1726 | } | 
| Chris Lattner | 9075bd7 | 2006-08-10 04:59:57 +0000 | [diff] [blame] | 1727 | } else { | 
| Alexis Hunt | 6aa9bee | 2012-06-23 05:07:58 +0000 | [diff] [blame] | 1728 | ProhibitAttributes(attrs); | 
| Kaelyn Takata | b16e632 | 2014-11-20 22:06:40 +0000 | [diff] [blame] | 1729 | Value = Actions.CorrectDelayedTyposInExpr(ParseExpression()); | 
| Chris Lattner | 71e23ce | 2006-11-04 20:18:38 +0000 | [diff] [blame] | 1730 |  | 
| John McCall | 34376a6 | 2010-12-04 03:47:34 +0000 | [diff] [blame] | 1731 | ForEach = isTokIdentifier_in(); | 
|  | 1732 |  | 
| Chris Lattner | cd68f64 | 2007-06-27 01:06:29 +0000 | [diff] [blame] | 1733 | // Turn the expression into a stmt. | 
| John McCall | 34376a6 | 2010-12-04 03:47:34 +0000 | [diff] [blame] | 1734 | if (!Value.isInvalid()) { | 
|  | 1735 | if (ForEach) | 
|  | 1736 | FirstPart = Actions.ActOnForEachLValueExpr(Value.get()); | 
| Aaron Ballman | fb6deeb | 2019-01-04 16:58:14 +0000 | [diff] [blame] | 1737 | else { | 
|  | 1738 | // We already know this is not an init-statement within a for loop, so | 
|  | 1739 | // if we are parsing a C++11 range-based for loop, we should treat this | 
|  | 1740 | // expression statement as being a discarded value expression because | 
|  | 1741 | // we will err below. This way we do not warn on an unused expression | 
|  | 1742 | // that was an error in the first place, like with: for (expr : expr); | 
|  | 1743 | bool IsRangeBasedFor = | 
|  | 1744 | getLangOpts().CPlusPlus11 && !ForEach && Tok.is(tok::colon); | 
|  | 1745 | FirstPart = Actions.ActOnExprStmt(Value, !IsRangeBasedFor); | 
|  | 1746 | } | 
| John McCall | 34376a6 | 2010-12-04 03:47:34 +0000 | [diff] [blame] | 1747 | } | 
| Sebastian Redl | d9f7b1c | 2008-12-10 00:02:53 +0000 | [diff] [blame] | 1748 |  | 
| Chris Lattner | feb00b6 | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 1749 | if (Tok.is(tok::semi)) { | 
| Chris Lattner | 53361ac | 2006-08-10 05:19:57 +0000 | [diff] [blame] | 1750 | ConsumeToken(); | 
| John McCall | 34376a6 | 2010-12-04 03:47:34 +0000 | [diff] [blame] | 1751 | } else if (ForEach) { | 
| Fariborz Jahanian | 732b8c2 | 2008-01-03 17:55:25 +0000 | [diff] [blame] | 1752 | ConsumeToken(); // consume 'in' | 
| NAKAMURA Takumi | 82a3511 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 1753 |  | 
| Douglas Gregor | 68762e7 | 2010-08-23 21:17:50 +0000 | [diff] [blame] | 1754 | if (Tok.is(tok::code_completion)) { | 
| David Blaikie | 0403cb1 | 2016-01-15 23:43:25 +0000 | [diff] [blame] | 1755 | Actions.CodeCompleteObjCForCollection(getCurScope(), nullptr); | 
| Argyrios Kyrtzidis | 5cec2ae | 2011-09-04 03:32:15 +0000 | [diff] [blame] | 1756 | cutOffParsing(); | 
|  | 1757 | return StmtError(); | 
| Douglas Gregor | 68762e7 | 2010-08-23 21:17:50 +0000 | [diff] [blame] | 1758 | } | 
| Douglas Gregor | e60e41a | 2010-05-06 17:25:47 +0000 | [diff] [blame] | 1759 | Collection = ParseExpression(); | 
| Richard Smith | 2bf7fdb | 2013-01-02 11:42:31 +0000 | [diff] [blame] | 1760 | } else if (getLangOpts().CPlusPlus11 && Tok.is(tok::colon) && FirstPart.get()) { | 
| Richard Smith | 4f848f1 | 2011-12-20 22:56:20 +0000 | [diff] [blame] | 1761 | // User tried to write the reasonable, but ill-formed, for-range-statement | 
|  | 1762 | //   for (expr : expr) { ... } | 
|  | 1763 | Diag(Tok, diag::err_for_range_expected_decl) | 
|  | 1764 | << FirstPart.get()->getSourceRange(); | 
| Alexey Bataev | ee6507d | 2013-11-18 08:17:37 +0000 | [diff] [blame] | 1765 | SkipUntil(tok::r_paren, StopBeforeMatch); | 
| Richard Smith | 03a4aa3 | 2016-06-23 19:02:52 +0000 | [diff] [blame] | 1766 | SecondPart = Sema::ConditionError(); | 
| Chris Lattner | 5bbb3c8 | 2009-03-29 16:50:03 +0000 | [diff] [blame] | 1767 | } else { | 
| Douglas Gregor | 230a7e6 | 2011-02-17 03:38:46 +0000 | [diff] [blame] | 1768 | if (!Value.isInvalid()) { | 
|  | 1769 | Diag(Tok, diag::err_expected_semi_for); | 
|  | 1770 | } else { | 
|  | 1771 | // Skip until semicolon or rparen, don't consume it. | 
| Alexey Bataev | ee6507d | 2013-11-18 08:17:37 +0000 | [diff] [blame] | 1772 | SkipUntil(tok::r_paren, StopAtSemi | StopBeforeMatch); | 
| Douglas Gregor | 230a7e6 | 2011-02-17 03:38:46 +0000 | [diff] [blame] | 1773 | if (Tok.is(tok::semi)) | 
|  | 1774 | ConsumeToken(); | 
|  | 1775 | } | 
| Chris Lattner | 53361ac | 2006-08-10 05:19:57 +0000 | [diff] [blame] | 1776 | } | 
| Chris Lattner | 9075bd7 | 2006-08-10 04:59:57 +0000 | [diff] [blame] | 1777 | } | 
| Serge Pavlov | 09f9924 | 2014-01-23 15:05:00 +0000 | [diff] [blame] | 1778 |  | 
|  | 1779 | // Parse the second part of the for specifier. | 
|  | 1780 | getCurScope()->AddFlags(Scope::BreakScope | Scope::ContinueScope); | 
| Richard Smith | 8baa500 | 2018-09-28 18:44:09 +0000 | [diff] [blame] | 1781 | if (!ForEach && !ForRangeInfo.ParsedForRangeDecl() && | 
|  | 1782 | !SecondPart.isInvalid()) { | 
| Fariborz Jahanian | 732b8c2 | 2008-01-03 17:55:25 +0000 | [diff] [blame] | 1783 | // Parse the second part of the for specifier. | 
|  | 1784 | if (Tok.is(tok::semi)) {  // for (...;; | 
|  | 1785 | // no second part. | 
| Douglas Gregor | 230a7e6 | 2011-02-17 03:38:46 +0000 | [diff] [blame] | 1786 | } else if (Tok.is(tok::r_paren)) { | 
|  | 1787 | // missing both semicolons. | 
| Fariborz Jahanian | 732b8c2 | 2008-01-03 17:55:25 +0000 | [diff] [blame] | 1788 | } else { | 
| Richard Smith | 8baa500 | 2018-09-28 18:44:09 +0000 | [diff] [blame] | 1789 | if (getLangOpts().CPlusPlus) { | 
|  | 1790 | // C++2a: We've parsed an init-statement; we might have a | 
|  | 1791 | // for-range-declaration next. | 
|  | 1792 | bool MightBeForRangeStmt = !ForRangeInfo.ParsedForRangeDecl(); | 
|  | 1793 | ColonProtectionRAIIObject ColonProtection(*this, MightBeForRangeStmt); | 
| Richard Smith | c7a05a9 | 2016-06-29 21:17:59 +0000 | [diff] [blame] | 1794 | SecondPart = | 
| Richard Smith | 8baa500 | 2018-09-28 18:44:09 +0000 | [diff] [blame] | 1795 | ParseCXXCondition(nullptr, ForLoc, Sema::ConditionKind::Boolean, | 
|  | 1796 | MightBeForRangeStmt ? &ForRangeInfo : nullptr); | 
|  | 1797 |  | 
|  | 1798 | if (ForRangeInfo.ParsedForRangeDecl()) { | 
|  | 1799 | Diag(FirstPart.get() ? FirstPart.get()->getBeginLoc() | 
|  | 1800 | : ForRangeInfo.ColonLoc, | 
|  | 1801 | getLangOpts().CPlusPlus2a | 
|  | 1802 | ? diag::warn_cxx17_compat_for_range_init_stmt | 
|  | 1803 | : diag::ext_for_range_init_stmt) | 
|  | 1804 | << (FirstPart.get() ? FirstPart.get()->getSourceRange() | 
|  | 1805 | : SourceRange()); | 
| Roman Lebedev | 377748f | 2018-11-20 18:59:05 +0000 | [diff] [blame] | 1806 | if (EmptyInitStmtSemiLoc.isValid()) { | 
|  | 1807 | Diag(EmptyInitStmtSemiLoc, diag::warn_empty_init_statement) | 
|  | 1808 | << /*for-loop*/ 2 | 
|  | 1809 | << FixItHint::CreateRemoval(EmptyInitStmtSemiLoc); | 
|  | 1810 | } | 
| Richard Smith | 8baa500 | 2018-09-28 18:44:09 +0000 | [diff] [blame] | 1811 | } | 
|  | 1812 | } else { | 
| Richard Smith | 03a4aa3 | 2016-06-23 19:02:52 +0000 | [diff] [blame] | 1813 | ExprResult SecondExpr = ParseExpression(); | 
|  | 1814 | if (SecondExpr.isInvalid()) | 
|  | 1815 | SecondPart = Sema::ConditionError(); | 
|  | 1816 | else | 
|  | 1817 | SecondPart = | 
|  | 1818 | Actions.ActOnCondition(getCurScope(), ForLoc, SecondExpr.get(), | 
|  | 1819 | Sema::ConditionKind::Boolean); | 
| Douglas Gregor | e60e41a | 2010-05-06 17:25:47 +0000 | [diff] [blame] | 1820 | } | 
| Fariborz Jahanian | 732b8c2 | 2008-01-03 17:55:25 +0000 | [diff] [blame] | 1821 | } | 
| Richard Smith | 8baa500 | 2018-09-28 18:44:09 +0000 | [diff] [blame] | 1822 | } | 
| Sebastian Redl | 17f2c7d | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 1823 |  | 
| Richard Smith | 8baa500 | 2018-09-28 18:44:09 +0000 | [diff] [blame] | 1824 | // Parse the third part of the for statement. | 
|  | 1825 | if (!ForEach && !ForRangeInfo.ParsedForRangeDecl()) { | 
| Douglas Gregor | 230a7e6 | 2011-02-17 03:38:46 +0000 | [diff] [blame] | 1826 | if (Tok.isNot(tok::semi)) { | 
| Richard Smith | 03a4aa3 | 2016-06-23 19:02:52 +0000 | [diff] [blame] | 1827 | if (!SecondPart.isInvalid()) | 
| Douglas Gregor | 230a7e6 | 2011-02-17 03:38:46 +0000 | [diff] [blame] | 1828 | Diag(Tok, diag::err_expected_semi_for); | 
|  | 1829 | else | 
|  | 1830 | // Skip until semicolon or rparen, don't consume it. | 
| Alexey Bataev | ee6507d | 2013-11-18 08:17:37 +0000 | [diff] [blame] | 1831 | SkipUntil(tok::r_paren, StopAtSemi | StopBeforeMatch); | 
| Douglas Gregor | 230a7e6 | 2011-02-17 03:38:46 +0000 | [diff] [blame] | 1832 | } | 
|  | 1833 |  | 
| Fariborz Jahanian | 732b8c2 | 2008-01-03 17:55:25 +0000 | [diff] [blame] | 1834 | if (Tok.is(tok::semi)) { | 
|  | 1835 | ConsumeToken(); | 
| Fariborz Jahanian | 732b8c2 | 2008-01-03 17:55:25 +0000 | [diff] [blame] | 1836 | } | 
| Sebastian Redl | b62406f | 2008-12-11 19:48:14 +0000 | [diff] [blame] | 1837 |  | 
| Douglas Gregor | e60e41a | 2010-05-06 17:25:47 +0000 | [diff] [blame] | 1838 | if (Tok.isNot(tok::r_paren)) {   // for (...;...;) | 
| John McCall | dadc575 | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 1839 | ExprResult Third = ParseExpression(); | 
| Richard Smith | 945f8d3 | 2013-01-14 22:39:08 +0000 | [diff] [blame] | 1840 | // FIXME: The C++11 standard doesn't actually say that this is a | 
|  | 1841 | // discarded-value expression, but it clearly should be. | 
| Nikola Smiljanic | 01a7598 | 2014-05-29 10:55:11 +0000 | [diff] [blame] | 1842 | ThirdPart = Actions.MakeFullDiscardedValueExpr(Third.get()); | 
| Douglas Gregor | e60e41a | 2010-05-06 17:25:47 +0000 | [diff] [blame] | 1843 | } | 
| Chris Lattner | 9075bd7 | 2006-08-10 04:59:57 +0000 | [diff] [blame] | 1844 | } | 
| Chris Lattner | 4564bc1 | 2006-08-10 23:14:52 +0000 | [diff] [blame] | 1845 | // Match the ')'. | 
| Douglas Gregor | e7a8e3b | 2011-10-12 16:37:45 +0000 | [diff] [blame] | 1846 | T.consumeClose(); | 
| Sebastian Redl | 17f2c7d | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 1847 |  | 
| Richard Smith | 0e304ea | 2015-10-22 04:46:14 +0000 | [diff] [blame] | 1848 | // C++ Coroutines [stmt.iter]: | 
|  | 1849 | //   'co_await' can only be used for a range-based for statement. | 
| Richard Smith | 8baa500 | 2018-09-28 18:44:09 +0000 | [diff] [blame] | 1850 | if (CoawaitLoc.isValid() && !ForRangeInfo.ParsedForRangeDecl()) { | 
| Richard Smith | 0e304ea | 2015-10-22 04:46:14 +0000 | [diff] [blame] | 1851 | Diag(CoawaitLoc, diag::err_for_co_await_not_range_for); | 
|  | 1852 | CoawaitLoc = SourceLocation(); | 
|  | 1853 | } | 
|  | 1854 |  | 
| Richard Smith | 02e85f3 | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 1855 | // We need to perform most of the semantic analysis for a C++0x for-range | 
|  | 1856 | // statememt before parsing the body, in order to be able to deduce the type | 
|  | 1857 | // of an auto-typed loop variable. | 
|  | 1858 | StmtResult ForRangeStmt; | 
| Fariborz Jahanian | 450bb6e | 2012-07-03 22:00:52 +0000 | [diff] [blame] | 1859 | StmtResult ForEachStmt; | 
| Chad Rosier | 67055f5 | 2012-07-10 21:35:27 +0000 | [diff] [blame] | 1860 |  | 
| Richard Smith | 8baa500 | 2018-09-28 18:44:09 +0000 | [diff] [blame] | 1861 | if (ForRangeInfo.ParsedForRangeDecl()) { | 
| Denis Zobnin | 7d6b924 | 2016-02-02 17:33:09 +0000 | [diff] [blame] | 1862 | ExprResult CorrectedRange = | 
| Richard Smith | 8baa500 | 2018-09-28 18:44:09 +0000 | [diff] [blame] | 1863 | Actions.CorrectDelayedTyposInExpr(ForRangeInfo.RangeExpr.get()); | 
| Richard Smith | 9f690bd | 2015-10-27 06:02:45 +0000 | [diff] [blame] | 1864 | ForRangeStmt = Actions.ActOnCXXForRangeStmt( | 
|  | 1865 | getCurScope(), ForLoc, CoawaitLoc, FirstPart.get(), | 
| Richard Smith | 8baa500 | 2018-09-28 18:44:09 +0000 | [diff] [blame] | 1866 | ForRangeInfo.LoopVar.get(), ForRangeInfo.ColonLoc, CorrectedRange.get(), | 
| Richard Smith | 9f690bd | 2015-10-27 06:02:45 +0000 | [diff] [blame] | 1867 | T.getCloseLocation(), Sema::BFRK_Build); | 
| John McCall | 5384823 | 2011-07-27 01:07:15 +0000 | [diff] [blame] | 1868 |  | 
|  | 1869 | // Similarly, we need to do the semantic analysis for a for-range | 
|  | 1870 | // statement immediately in order to close over temporaries correctly. | 
|  | 1871 | } else if (ForEach) { | 
| Sam Panzer | 2c4ca0f | 2012-08-16 21:47:25 +0000 | [diff] [blame] | 1872 | ForEachStmt = Actions.ActOnObjCForCollectionStmt(ForLoc, | 
| Nikola Smiljanic | 01a7598 | 2014-05-29 10:55:11 +0000 | [diff] [blame] | 1873 | FirstPart.get(), | 
|  | 1874 | Collection.get(), | 
| Fariborz Jahanian | 450bb6e | 2012-07-03 22:00:52 +0000 | [diff] [blame] | 1875 | T.getCloseLocation()); | 
| Alexey Bataev | 9c82103 | 2015-04-30 04:23:23 +0000 | [diff] [blame] | 1876 | } else { | 
|  | 1877 | // In OpenMP loop region loop control variable must be captured and be | 
|  | 1878 | // private. Perform analysis of first part (if any). | 
|  | 1879 | if (getLangOpts().OpenMP && FirstPart.isUsable()) { | 
|  | 1880 | Actions.ActOnOpenMPLoopInitialization(ForLoc, FirstPart.get()); | 
|  | 1881 | } | 
| John McCall | 5384823 | 2011-07-27 01:07:15 +0000 | [diff] [blame] | 1882 | } | 
|  | 1883 |  | 
| Justin Bogner | e4ebb6c | 2013-12-03 07:36:55 +0000 | [diff] [blame] | 1884 | // C99 6.8.5p5 - In C99, the body of the for statement is a scope, even if | 
| Chris Lattner | 8f44d20 | 2007-08-22 05:33:11 +0000 | [diff] [blame] | 1885 | // there is no compound stmt.  C90 does not have this clause.  We only do this | 
|  | 1886 | // if the body isn't a compound statement to avoid push/pop in common cases. | 
| Argyrios Kyrtzidis | 504bb84 | 2008-09-11 03:06:46 +0000 | [diff] [blame] | 1887 | // | 
|  | 1888 | // C++ 6.5p2: | 
|  | 1889 | // The substatement in an iteration-statement implicitly defines a local scope | 
|  | 1890 | // which is entered and exited each time through the loop. | 
|  | 1891 | // | 
|  | 1892 | // See comments in ParseIfStatement for why we create a scope for | 
|  | 1893 | // for-init-statement/condition and a new scope for substatement in C++. | 
|  | 1894 | // | 
| David Majnemer | 2206bf5 | 2014-03-05 08:57:59 +0000 | [diff] [blame] | 1895 | ParseScope InnerScope(this, Scope::DeclScope, C99orCXXorObjC, | 
|  | 1896 | Tok.is(tok::l_brace)); | 
|  | 1897 |  | 
|  | 1898 | // The body of the for loop has the same local mangling number as the | 
|  | 1899 | // for-init-statement. | 
|  | 1900 | // It will only be incremented if the body contains other things that would | 
|  | 1901 | // normally increment the mangling number (like a compound statement). | 
|  | 1902 | if (C99orCXXorObjC) | 
| David Majnemer | a7f8c46 | 2015-03-19 21:54:30 +0000 | [diff] [blame] | 1903 | getCurScope()->decrementMSManglingNumber(); | 
| Sebastian Redl | 17f2c7d | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 1904 |  | 
| Chris Lattner | 9075bd7 | 2006-08-10 04:59:57 +0000 | [diff] [blame] | 1905 | // Read the body statement. | 
| Nico Weber | 3cef108 | 2011-12-22 23:26:17 +0000 | [diff] [blame] | 1906 | StmtResult Body(ParseStatement(TrailingElseLoc)); | 
| Sebastian Redl | 17f2c7d | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 1907 |  | 
| Chris Lattner | 8fb2625 | 2007-08-22 05:28:50 +0000 | [diff] [blame] | 1908 | // Pop the body scope if needed. | 
| Douglas Gregor | 7307d6c | 2008-12-10 06:34:36 +0000 | [diff] [blame] | 1909 | InnerScope.Exit(); | 
| Chris Lattner | 8fb2625 | 2007-08-22 05:28:50 +0000 | [diff] [blame] | 1910 |  | 
| Chris Lattner | 33ad2ca | 2006-11-05 23:47:55 +0000 | [diff] [blame] | 1911 | // Leave the for-scope. | 
| Douglas Gregor | 7307d6c | 2008-12-10 06:34:36 +0000 | [diff] [blame] | 1912 | ForScope.Exit(); | 
| Sebastian Redl | 17f2c7d | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 1913 |  | 
|  | 1914 | if (Body.isInvalid()) | 
| Sebastian Redl | b62406f | 2008-12-11 19:48:14 +0000 | [diff] [blame] | 1915 | return StmtError(); | 
| Sebastian Redl | d9f7b1c | 2008-12-10 00:02:53 +0000 | [diff] [blame] | 1916 |  | 
| Richard Smith | 02e85f3 | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 1917 | if (ForEach) | 
| Nikola Smiljanic | 01a7598 | 2014-05-29 10:55:11 +0000 | [diff] [blame] | 1918 | return Actions.FinishObjCForCollectionStmt(ForEachStmt.get(), | 
|  | 1919 | Body.get()); | 
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1920 |  | 
| Richard Smith | 8baa500 | 2018-09-28 18:44:09 +0000 | [diff] [blame] | 1921 | if (ForRangeInfo.ParsedForRangeDecl()) | 
| Nikola Smiljanic | 01a7598 | 2014-05-29 10:55:11 +0000 | [diff] [blame] | 1922 | return Actions.FinishCXXForRangeStmt(ForRangeStmt.get(), Body.get()); | 
| Richard Smith | 02e85f3 | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 1923 |  | 
| Nikola Smiljanic | 01a7598 | 2014-05-29 10:55:11 +0000 | [diff] [blame] | 1924 | return Actions.ActOnForStmt(ForLoc, T.getOpenLocation(), FirstPart.get(), | 
| Richard Smith | 03a4aa3 | 2016-06-23 19:02:52 +0000 | [diff] [blame] | 1925 | SecondPart, ThirdPart, T.getCloseLocation(), | 
|  | 1926 | Body.get()); | 
| Chris Lattner | 9075bd7 | 2006-08-10 04:59:57 +0000 | [diff] [blame] | 1927 | } | 
| Chris Lattner | c951dae | 2006-08-10 04:23:57 +0000 | [diff] [blame] | 1928 |  | 
| Chris Lattner | 503fadc | 2006-08-10 05:45:44 +0000 | [diff] [blame] | 1929 | /// ParseGotoStatement | 
|  | 1930 | ///       jump-statement: | 
|  | 1931 | ///         'goto' identifier ';' | 
|  | 1932 | /// [GNU]   'goto' '*' expression ';' | 
|  | 1933 | /// | 
|  | 1934 | /// Note: this lets the caller parse the end ';'. | 
|  | 1935 | /// | 
| Richard Smith | c202b28 | 2012-04-14 00:33:13 +0000 | [diff] [blame] | 1936 | StmtResult Parser::ParseGotoStatement() { | 
| Chris Lattner | feb00b6 | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 1937 | assert(Tok.is(tok::kw_goto) && "Not a goto stmt!"); | 
| Chris Lattner | af63531 | 2006-10-16 06:06:51 +0000 | [diff] [blame] | 1938 | SourceLocation GotoLoc = ConsumeToken();  // eat the 'goto'. | 
| Sebastian Redl | b62406f | 2008-12-11 19:48:14 +0000 | [diff] [blame] | 1939 |  | 
| John McCall | dadc575 | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 1940 | StmtResult Res; | 
| Chris Lattner | feb00b6 | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 1941 | if (Tok.is(tok::identifier)) { | 
| Chris Lattner | ebb5c6c | 2011-02-18 01:27:55 +0000 | [diff] [blame] | 1942 | LabelDecl *LD = Actions.LookupOrCreateLabel(Tok.getIdentifierInfo(), | 
|  | 1943 | Tok.getLocation()); | 
|  | 1944 | Res = Actions.ActOnGotoStmt(GotoLoc, Tok.getLocation(), LD); | 
| Chris Lattner | 503fadc | 2006-08-10 05:45:44 +0000 | [diff] [blame] | 1945 | ConsumeToken(); | 
| Eli Friedman | 5d72d41 | 2009-04-28 00:51:18 +0000 | [diff] [blame] | 1946 | } else if (Tok.is(tok::star)) { | 
| Chris Lattner | 503fadc | 2006-08-10 05:45:44 +0000 | [diff] [blame] | 1947 | // GNU indirect goto extension. | 
|  | 1948 | Diag(Tok, diag::ext_gnu_indirect_goto); | 
| Chris Lattner | af63531 | 2006-10-16 06:06:51 +0000 | [diff] [blame] | 1949 | SourceLocation StarLoc = ConsumeToken(); | 
| John McCall | dadc575 | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 1950 | ExprResult R(ParseExpression()); | 
| Sebastian Redl | 17f2c7d | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 1951 | if (R.isInvalid()) {  // Skip to the semicolon, but don't consume it. | 
| Alexey Bataev | ee6507d | 2013-11-18 08:17:37 +0000 | [diff] [blame] | 1952 | SkipUntil(tok::semi, StopBeforeMatch); | 
| Sebastian Redl | b62406f | 2008-12-11 19:48:14 +0000 | [diff] [blame] | 1953 | return StmtError(); | 
| Chris Lattner | 30f910e | 2006-10-16 05:52:41 +0000 | [diff] [blame] | 1954 | } | 
| Nikola Smiljanic | 01a7598 | 2014-05-29 10:55:11 +0000 | [diff] [blame] | 1955 | Res = Actions.ActOnIndirectGotoStmt(GotoLoc, StarLoc, R.get()); | 
| Chris Lattner | e34b2c2 | 2007-07-22 04:13:33 +0000 | [diff] [blame] | 1956 | } else { | 
| Alp Toker | ec54327 | 2013-12-24 09:48:30 +0000 | [diff] [blame] | 1957 | Diag(Tok, diag::err_expected) << tok::identifier; | 
| Sebastian Redl | b62406f | 2008-12-11 19:48:14 +0000 | [diff] [blame] | 1958 | return StmtError(); | 
| Chris Lattner | 503fadc | 2006-08-10 05:45:44 +0000 | [diff] [blame] | 1959 | } | 
| Sebastian Redl | 17f2c7d | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 1960 |  | 
| Benjamin Kramer | 62b95d8 | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 1961 | return Res; | 
| Chris Lattner | 503fadc | 2006-08-10 05:45:44 +0000 | [diff] [blame] | 1962 | } | 
|  | 1963 |  | 
| Chris Lattner | 33ad2ca | 2006-11-05 23:47:55 +0000 | [diff] [blame] | 1964 | /// ParseContinueStatement | 
|  | 1965 | ///       jump-statement: | 
|  | 1966 | ///         'continue' ';' | 
|  | 1967 | /// | 
|  | 1968 | /// Note: this lets the caller parse the end ';'. | 
|  | 1969 | /// | 
| Richard Smith | c202b28 | 2012-04-14 00:33:13 +0000 | [diff] [blame] | 1970 | StmtResult Parser::ParseContinueStatement() { | 
| Chris Lattner | 33ad2ca | 2006-11-05 23:47:55 +0000 | [diff] [blame] | 1971 | SourceLocation ContinueLoc = ConsumeToken();  // eat the 'continue'. | 
| Douglas Gregor | 0be31a2 | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 1972 | return Actions.ActOnContinueStmt(ContinueLoc, getCurScope()); | 
| Chris Lattner | 33ad2ca | 2006-11-05 23:47:55 +0000 | [diff] [blame] | 1973 | } | 
|  | 1974 |  | 
|  | 1975 | /// ParseBreakStatement | 
|  | 1976 | ///       jump-statement: | 
|  | 1977 | ///         'break' ';' | 
|  | 1978 | /// | 
|  | 1979 | /// Note: this lets the caller parse the end ';'. | 
|  | 1980 | /// | 
| Richard Smith | c202b28 | 2012-04-14 00:33:13 +0000 | [diff] [blame] | 1981 | StmtResult Parser::ParseBreakStatement() { | 
| Chris Lattner | 33ad2ca | 2006-11-05 23:47:55 +0000 | [diff] [blame] | 1982 | SourceLocation BreakLoc = ConsumeToken();  // eat the 'break'. | 
| Douglas Gregor | 0be31a2 | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 1983 | return Actions.ActOnBreakStmt(BreakLoc, getCurScope()); | 
| Chris Lattner | 33ad2ca | 2006-11-05 23:47:55 +0000 | [diff] [blame] | 1984 | } | 
|  | 1985 |  | 
| Chris Lattner | 503fadc | 2006-08-10 05:45:44 +0000 | [diff] [blame] | 1986 | /// ParseReturnStatement | 
|  | 1987 | ///       jump-statement: | 
|  | 1988 | ///         'return' expression[opt] ';' | 
| Richard Smith | 0e304ea | 2015-10-22 04:46:14 +0000 | [diff] [blame] | 1989 | ///         'return' braced-init-list ';' | 
|  | 1990 | ///         'co_return' expression[opt] ';' | 
|  | 1991 | ///         'co_return' braced-init-list ';' | 
| Richard Smith | c202b28 | 2012-04-14 00:33:13 +0000 | [diff] [blame] | 1992 | StmtResult Parser::ParseReturnStatement() { | 
| Richard Smith | 0e304ea | 2015-10-22 04:46:14 +0000 | [diff] [blame] | 1993 | assert((Tok.is(tok::kw_return) || Tok.is(tok::kw_co_return)) && | 
|  | 1994 | "Not a return stmt!"); | 
|  | 1995 | bool IsCoreturn = Tok.is(tok::kw_co_return); | 
| Chris Lattner | af63531 | 2006-10-16 06:06:51 +0000 | [diff] [blame] | 1996 | SourceLocation ReturnLoc = ConsumeToken();  // eat the 'return'. | 
| Sebastian Redl | b62406f | 2008-12-11 19:48:14 +0000 | [diff] [blame] | 1997 |  | 
| John McCall | dadc575 | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 1998 | ExprResult R; | 
| Chris Lattner | feb00b6 | 2007-10-09 17:41:39 +0000 | [diff] [blame] | 1999 | if (Tok.isNot(tok::semi)) { | 
| Ilya Biryukov | 4f9543b | 2019-01-31 20:20:32 +0000 | [diff] [blame] | 2000 | if (!IsCoreturn) | 
|  | 2001 | PreferredType.enterReturn(Actions, Tok.getLocation()); | 
| Richard Smith | 0e304ea | 2015-10-22 04:46:14 +0000 | [diff] [blame] | 2002 | // FIXME: Code completion for co_return. | 
|  | 2003 | if (Tok.is(tok::code_completion) && !IsCoreturn) { | 
| Ilya Biryukov | 4f9543b | 2019-01-31 20:20:32 +0000 | [diff] [blame] | 2004 | Actions.CodeCompleteExpression(getCurScope(), | 
|  | 2005 | PreferredType.get(Tok.getLocation())); | 
| Argyrios Kyrtzidis | 5cec2ae | 2011-09-04 03:32:15 +0000 | [diff] [blame] | 2006 | cutOffParsing(); | 
| Douglas Gregor | 7aa6b22 | 2010-05-30 01:49:25 +0000 | [diff] [blame] | 2007 | return StmtError(); | 
|  | 2008 | } | 
| NAKAMURA Takumi | 82a3511 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 2009 |  | 
| David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2010 | if (Tok.is(tok::l_brace) && getLangOpts().CPlusPlus) { | 
| Douglas Gregor | e9e27d9 | 2011-03-11 23:10:44 +0000 | [diff] [blame] | 2011 | R = ParseInitializer(); | 
| Richard Smith | 5d164bc | 2011-10-15 05:09:34 +0000 | [diff] [blame] | 2012 | if (R.isUsable()) | 
| Stephen Kelly | f2ceec4 | 2018-08-09 21:08:08 +0000 | [diff] [blame] | 2013 | Diag(R.get()->getBeginLoc(), | 
|  | 2014 | getLangOpts().CPlusPlus11 | 
|  | 2015 | ? diag::warn_cxx98_compat_generalized_initializer_lists | 
|  | 2016 | : diag::ext_generalized_initializer_lists) | 
|  | 2017 | << R.get()->getSourceRange(); | 
| Douglas Gregor | e9e27d9 | 2011-03-11 23:10:44 +0000 | [diff] [blame] | 2018 | } else | 
| Nico Weber | 3ce01c3 | 2015-01-04 08:07:54 +0000 | [diff] [blame] | 2019 | R = ParseExpression(); | 
| Serge Pavlov | f79bd5c | 2013-12-04 03:51:59 +0000 | [diff] [blame] | 2020 | if (R.isInvalid()) { | 
|  | 2021 | SkipUntil(tok::r_brace, StopAtSemi | StopBeforeMatch); | 
| Sebastian Redl | b62406f | 2008-12-11 19:48:14 +0000 | [diff] [blame] | 2022 | return StmtError(); | 
| Chris Lattner | 30f910e | 2006-10-16 05:52:41 +0000 | [diff] [blame] | 2023 | } | 
| Chris Lattner | a0927ce | 2006-08-12 16:59:03 +0000 | [diff] [blame] | 2024 | } | 
| Richard Smith | cfd53b4 | 2015-10-22 06:13:50 +0000 | [diff] [blame] | 2025 | if (IsCoreturn) | 
| Eric Fiselier | 20f25cb | 2017-03-06 23:38:15 +0000 | [diff] [blame] | 2026 | return Actions.ActOnCoreturnStmt(getCurScope(), ReturnLoc, R.get()); | 
| Nikola Smiljanic | 01a7598 | 2014-05-29 10:55:11 +0000 | [diff] [blame] | 2027 | return Actions.ActOnReturnStmt(ReturnLoc, R.get(), getCurScope()); | 
| Chris Lattner | 503fadc | 2006-08-10 05:45:44 +0000 | [diff] [blame] | 2028 | } | 
| Chris Lattner | 0116c47 | 2006-08-15 06:03:28 +0000 | [diff] [blame] | 2029 |  | 
| Alexey Bataev | c4fad65 | 2016-01-13 11:18:54 +0000 | [diff] [blame] | 2030 | StmtResult Parser::ParsePragmaLoopHint(StmtVector &Stmts, | 
| Richard Smith | a6e8d5e | 2019-02-15 00:27:53 +0000 | [diff] [blame] | 2031 | ParsedStmtContext StmtCtx, | 
| Aaron Ballman | b06b15a | 2014-06-06 12:40:24 +0000 | [diff] [blame] | 2032 | SourceLocation *TrailingElseLoc, | 
|  | 2033 | ParsedAttributesWithRange &Attrs) { | 
|  | 2034 | // Create temporary attribute list. | 
|  | 2035 | ParsedAttributesWithRange TempAttrs(AttrFactory); | 
|  | 2036 |  | 
| Mark Heffernan | bd26f5e | 2014-07-21 18:08:34 +0000 | [diff] [blame] | 2037 | // Get loop hints and consume annotated token. | 
| Aaron Ballman | b06b15a | 2014-06-06 12:40:24 +0000 | [diff] [blame] | 2038 | while (Tok.is(tok::annot_pragma_loop_hint)) { | 
| Tyler Nowicki | 0c9b34b | 2014-07-31 20:15:14 +0000 | [diff] [blame] | 2039 | LoopHint Hint; | 
|  | 2040 | if (!HandlePragmaLoopHint(Hint)) | 
|  | 2041 | continue; | 
| Aaron Ballman | b06b15a | 2014-06-06 12:40:24 +0000 | [diff] [blame] | 2042 |  | 
| Tyler Nowicki | 0c9b34b | 2014-07-31 20:15:14 +0000 | [diff] [blame] | 2043 | ArgsUnion ArgHints[] = {Hint.PragmaNameLoc, Hint.OptionLoc, Hint.StateLoc, | 
| Aaron Ballman | b06b15a | 2014-06-06 12:40:24 +0000 | [diff] [blame] | 2044 | ArgsUnion(Hint.ValueExpr)}; | 
| Mark Heffernan | bd26f5e | 2014-07-21 18:08:34 +0000 | [diff] [blame] | 2045 | TempAttrs.addNew(Hint.PragmaNameLoc->Ident, Hint.Range, nullptr, | 
|  | 2046 | Hint.PragmaNameLoc->Loc, ArgHints, 4, | 
| Erich Keane | e891aa9 | 2018-07-13 15:07:47 +0000 | [diff] [blame] | 2047 | ParsedAttr::AS_Pragma); | 
| Aaron Ballman | b06b15a | 2014-06-06 12:40:24 +0000 | [diff] [blame] | 2048 | } | 
|  | 2049 |  | 
|  | 2050 | // Get the next statement. | 
|  | 2051 | MaybeParseCXX11Attributes(Attrs); | 
|  | 2052 |  | 
|  | 2053 | StmtResult S = ParseStatementOrDeclarationAfterAttributes( | 
| Richard Smith | a6e8d5e | 2019-02-15 00:27:53 +0000 | [diff] [blame] | 2054 | Stmts, StmtCtx, TrailingElseLoc, Attrs); | 
| Aaron Ballman | b06b15a | 2014-06-06 12:40:24 +0000 | [diff] [blame] | 2055 |  | 
|  | 2056 | Attrs.takeAllFrom(TempAttrs); | 
|  | 2057 | return S; | 
|  | 2058 | } | 
|  | 2059 |  | 
| Douglas Gregor | a0ff0c3 | 2011-03-16 17:05:57 +0000 | [diff] [blame] | 2060 | Decl *Parser::ParseFunctionStatementBody(Decl *Decl, ParseScope &BodyScope) { | 
| Chris Lattner | 12f2ea5 | 2009-03-05 00:49:17 +0000 | [diff] [blame] | 2061 | assert(Tok.is(tok::l_brace)); | 
|  | 2062 | SourceLocation LBraceLoc = Tok.getLocation(); | 
| Sebastian Redl | a7b98a7 | 2009-04-26 20:35:05 +0000 | [diff] [blame] | 2063 |  | 
| Jordan Rose | 1e879d8 | 2018-03-23 00:07:18 +0000 | [diff] [blame] | 2064 | PrettyDeclStackTraceEntry CrashInfo(Actions.Context, Decl, LBraceLoc, | 
| John McCall | faf5fb4 | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 2065 | "parsing function body"); | 
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2066 |  | 
| Alexey Bataev | 3d42f34 | 2015-11-20 07:02:57 +0000 | [diff] [blame] | 2067 | // Save and reset current vtordisp stack if we have entered a C++ method body. | 
|  | 2068 | bool IsCXXMethod = | 
|  | 2069 | getLangOpts().CPlusPlus && Decl && isa<CXXMethodDecl>(Decl); | 
| Denis Zobnin | 2290dac | 2016-04-29 11:27:00 +0000 | [diff] [blame] | 2070 | Sema::PragmaStackSentinelRAII | 
|  | 2071 | PragmaStackSentinel(Actions, "InternalPragmaState", IsCXXMethod); | 
| Alexey Bataev | 3d42f34 | 2015-11-20 07:02:57 +0000 | [diff] [blame] | 2072 |  | 
| Fariborz Jahanian | 8e63294 | 2007-11-08 19:01:26 +0000 | [diff] [blame] | 2073 | // Do not enter a scope for the brace, as the arguments are in the same scope | 
|  | 2074 | // (the function body) as the body itself.  Instead, just read the statement | 
|  | 2075 | // list and put it into a CompoundStmt for safe keeping. | 
| John McCall | dadc575 | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 2076 | StmtResult FnBody(ParseCompoundStatementBody()); | 
| Sebastian Redl | 042ad95 | 2008-12-11 19:30:53 +0000 | [diff] [blame] | 2077 |  | 
| Fariborz Jahanian | 8e63294 | 2007-11-08 19:01:26 +0000 | [diff] [blame] | 2078 | // If the function body could not be parsed, make a bogus compoundstmt. | 
| Dmitri Gribenko | 800ddf3 | 2012-02-14 22:14:32 +0000 | [diff] [blame] | 2079 | if (FnBody.isInvalid()) { | 
|  | 2080 | Sema::CompoundScopeRAII CompoundScope(Actions); | 
| Robert Wilhelm | 27b2c9a3 | 2013-08-19 20:51:20 +0000 | [diff] [blame] | 2081 | FnBody = Actions.ActOnCompoundStmt(LBraceLoc, LBraceLoc, None, false); | 
| Dmitri Gribenko | 800ddf3 | 2012-02-14 22:14:32 +0000 | [diff] [blame] | 2082 | } | 
| Sebastian Redl | 042ad95 | 2008-12-11 19:30:53 +0000 | [diff] [blame] | 2083 |  | 
| Douglas Gregor | a0ff0c3 | 2011-03-16 17:05:57 +0000 | [diff] [blame] | 2084 | BodyScope.Exit(); | 
| Nikola Smiljanic | 01a7598 | 2014-05-29 10:55:11 +0000 | [diff] [blame] | 2085 | return Actions.ActOnFinishFunctionBody(Decl, FnBody.get()); | 
| Seo Sanghyeon | 34f92ac | 2007-12-01 08:06:07 +0000 | [diff] [blame] | 2086 | } | 
| Sebastian Redl | b219c90 | 2008-12-21 16:41:36 +0000 | [diff] [blame] | 2087 |  | 
| Sebastian Redl | a7b98a7 | 2009-04-26 20:35:05 +0000 | [diff] [blame] | 2088 | /// ParseFunctionTryBlock - Parse a C++ function-try-block. | 
|  | 2089 | /// | 
|  | 2090 | ///       function-try-block: | 
|  | 2091 | ///         'try' ctor-initializer[opt] compound-statement handler-seq | 
|  | 2092 | /// | 
| Douglas Gregor | a0ff0c3 | 2011-03-16 17:05:57 +0000 | [diff] [blame] | 2093 | Decl *Parser::ParseFunctionTryBlock(Decl *Decl, ParseScope &BodyScope) { | 
| Sebastian Redl | a7b98a7 | 2009-04-26 20:35:05 +0000 | [diff] [blame] | 2094 | assert(Tok.is(tok::kw_try) && "Expected 'try'"); | 
|  | 2095 | SourceLocation TryLoc = ConsumeToken(); | 
|  | 2096 |  | 
| Jordan Rose | 1e879d8 | 2018-03-23 00:07:18 +0000 | [diff] [blame] | 2097 | PrettyDeclStackTraceEntry CrashInfo(Actions.Context, Decl, TryLoc, | 
| John McCall | faf5fb4 | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 2098 | "parsing function try block"); | 
| Sebastian Redl | a7b98a7 | 2009-04-26 20:35:05 +0000 | [diff] [blame] | 2099 |  | 
|  | 2100 | // Constructor initializer list? | 
|  | 2101 | if (Tok.is(tok::colon)) | 
|  | 2102 | ParseConstructorInitializer(Decl); | 
| Douglas Gregor | 5ca153f | 2011-09-07 20:36:12 +0000 | [diff] [blame] | 2103 | else | 
|  | 2104 | Actions.ActOnDefaultCtorInitializers(Decl); | 
| NAKAMURA Takumi | 82a3511 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 2105 |  | 
| Alexey Bataev | 3d42f34 | 2015-11-20 07:02:57 +0000 | [diff] [blame] | 2106 | // Save and reset current vtordisp stack if we have entered a C++ method body. | 
|  | 2107 | bool IsCXXMethod = | 
|  | 2108 | getLangOpts().CPlusPlus && Decl && isa<CXXMethodDecl>(Decl); | 
| Denis Zobnin | 2290dac | 2016-04-29 11:27:00 +0000 | [diff] [blame] | 2109 | Sema::PragmaStackSentinelRAII | 
|  | 2110 | PragmaStackSentinel(Actions, "InternalPragmaState", IsCXXMethod); | 
| Alexey Bataev | 3d42f34 | 2015-11-20 07:02:57 +0000 | [diff] [blame] | 2111 |  | 
| Sebastian Redl | d98ecd6 | 2009-04-26 21:08:36 +0000 | [diff] [blame] | 2112 | SourceLocation LBraceLoc = Tok.getLocation(); | 
| David Blaikie | 1c9c904 | 2012-11-10 01:04:23 +0000 | [diff] [blame] | 2113 | StmtResult FnBody(ParseCXXTryBlockCommon(TryLoc, /*FnTry*/true)); | 
| Sebastian Redl | a7b98a7 | 2009-04-26 20:35:05 +0000 | [diff] [blame] | 2114 | // If we failed to parse the try-catch, we just give the function an empty | 
|  | 2115 | // compound statement as the body. | 
| Dmitri Gribenko | 800ddf3 | 2012-02-14 22:14:32 +0000 | [diff] [blame] | 2116 | if (FnBody.isInvalid()) { | 
|  | 2117 | Sema::CompoundScopeRAII CompoundScope(Actions); | 
| Robert Wilhelm | 27b2c9a3 | 2013-08-19 20:51:20 +0000 | [diff] [blame] | 2118 | FnBody = Actions.ActOnCompoundStmt(LBraceLoc, LBraceLoc, None, false); | 
| Dmitri Gribenko | 800ddf3 | 2012-02-14 22:14:32 +0000 | [diff] [blame] | 2119 | } | 
| Sebastian Redl | a7b98a7 | 2009-04-26 20:35:05 +0000 | [diff] [blame] | 2120 |  | 
| Douglas Gregor | a0ff0c3 | 2011-03-16 17:05:57 +0000 | [diff] [blame] | 2121 | BodyScope.Exit(); | 
| Nikola Smiljanic | 01a7598 | 2014-05-29 10:55:11 +0000 | [diff] [blame] | 2122 | return Actions.ActOnFinishFunctionBody(Decl, FnBody.get()); | 
| Sebastian Redl | a7b98a7 | 2009-04-26 20:35:05 +0000 | [diff] [blame] | 2123 | } | 
|  | 2124 |  | 
| Erik Verbruggen | 6e92251 | 2012-04-12 10:11:59 +0000 | [diff] [blame] | 2125 | bool Parser::trySkippingFunctionBody() { | 
| Erik Verbruggen | 6e92251 | 2012-04-12 10:11:59 +0000 | [diff] [blame] | 2126 | assert(SkipFunctionBodies && | 
|  | 2127 | "Should only be called when SkipFunctionBodies is enabled"); | 
| Argyrios Kyrtzidis | 289e4a3 | 2012-10-31 17:29:28 +0000 | [diff] [blame] | 2128 | if (!PP.isCodeCompletionEnabled()) { | 
| Olivier Goffart | f9e890c | 2016-06-16 21:40:06 +0000 | [diff] [blame] | 2129 | SkipFunctionBody(); | 
| Argyrios Kyrtzidis | 289e4a3 | 2012-10-31 17:29:28 +0000 | [diff] [blame] | 2130 | return true; | 
|  | 2131 | } | 
|  | 2132 |  | 
| Argyrios Kyrtzidis | d5756a6 | 2011-01-03 22:33:06 +0000 | [diff] [blame] | 2133 | // We're in code-completion mode. Skip parsing for all function bodies unless | 
|  | 2134 | // the body contains the code-completion point. | 
|  | 2135 | TentativeParsingAction PA(*this); | 
| Olivier Goffart | f9e890c | 2016-06-16 21:40:06 +0000 | [diff] [blame] | 2136 | bool IsTryCatch = Tok.is(tok::kw_try); | 
|  | 2137 | CachedTokens Toks; | 
|  | 2138 | bool ErrorInPrologue = ConsumeAndStoreFunctionPrologue(Toks); | 
|  | 2139 | if (llvm::any_of(Toks, [](const Token &Tok) { | 
|  | 2140 | return Tok.is(tok::code_completion); | 
|  | 2141 | })) { | 
|  | 2142 | PA.Revert(); | 
|  | 2143 | return false; | 
|  | 2144 | } | 
|  | 2145 | if (ErrorInPrologue) { | 
| Argyrios Kyrtzidis | d5756a6 | 2011-01-03 22:33:06 +0000 | [diff] [blame] | 2146 | PA.Commit(); | 
| Olivier Goffart | f9e890c | 2016-06-16 21:40:06 +0000 | [diff] [blame] | 2147 | SkipMalformedDecl(); | 
| Argyrios Kyrtzidis | d5756a6 | 2011-01-03 22:33:06 +0000 | [diff] [blame] | 2148 | return true; | 
|  | 2149 | } | 
| Olivier Goffart | f9e890c | 2016-06-16 21:40:06 +0000 | [diff] [blame] | 2150 | if (!SkipUntil(tok::r_brace, StopAtCodeCompletion)) { | 
|  | 2151 | PA.Revert(); | 
|  | 2152 | return false; | 
|  | 2153 | } | 
|  | 2154 | while (IsTryCatch && Tok.is(tok::kw_catch)) { | 
|  | 2155 | if (!SkipUntil(tok::l_brace, StopAtCodeCompletion) || | 
|  | 2156 | !SkipUntil(tok::r_brace, StopAtCodeCompletion)) { | 
|  | 2157 | PA.Revert(); | 
|  | 2158 | return false; | 
|  | 2159 | } | 
|  | 2160 | } | 
|  | 2161 | PA.Commit(); | 
|  | 2162 | return true; | 
| Argyrios Kyrtzidis | d5756a6 | 2011-01-03 22:33:06 +0000 | [diff] [blame] | 2163 | } | 
|  | 2164 |  | 
| Sebastian Redl | b219c90 | 2008-12-21 16:41:36 +0000 | [diff] [blame] | 2165 | /// ParseCXXTryBlock - Parse a C++ try-block. | 
|  | 2166 | /// | 
|  | 2167 | ///       try-block: | 
|  | 2168 | ///         'try' compound-statement handler-seq | 
|  | 2169 | /// | 
| Richard Smith | c202b28 | 2012-04-14 00:33:13 +0000 | [diff] [blame] | 2170 | StmtResult Parser::ParseCXXTryBlock() { | 
| Sebastian Redl | b219c90 | 2008-12-21 16:41:36 +0000 | [diff] [blame] | 2171 | assert(Tok.is(tok::kw_try) && "Expected 'try'"); | 
|  | 2172 |  | 
|  | 2173 | SourceLocation TryLoc = ConsumeToken(); | 
| Sebastian Redl | a7b98a7 | 2009-04-26 20:35:05 +0000 | [diff] [blame] | 2174 | return ParseCXXTryBlockCommon(TryLoc); | 
|  | 2175 | } | 
|  | 2176 |  | 
|  | 2177 | /// ParseCXXTryBlockCommon - Parse the common part of try-block and | 
|  | 2178 | /// function-try-block. | 
|  | 2179 | /// | 
|  | 2180 | ///       try-block: | 
|  | 2181 | ///         'try' compound-statement handler-seq | 
|  | 2182 | /// | 
|  | 2183 | ///       function-try-block: | 
|  | 2184 | ///         'try' ctor-initializer[opt] compound-statement handler-seq | 
|  | 2185 | /// | 
|  | 2186 | ///       handler-seq: | 
|  | 2187 | ///         handler handler-seq[opt] | 
|  | 2188 | /// | 
| John Wiegley | 1c0675e | 2011-04-28 01:08:34 +0000 | [diff] [blame] | 2189 | ///       [Borland] try-block: | 
|  | 2190 | ///         'try' compound-statement seh-except-block | 
| Alp Toker | f6a24ce | 2013-12-05 16:25:25 +0000 | [diff] [blame] | 2191 | ///         'try' compound-statement seh-finally-block | 
| John Wiegley | 1c0675e | 2011-04-28 01:08:34 +0000 | [diff] [blame] | 2192 | /// | 
| David Blaikie | 1c9c904 | 2012-11-10 01:04:23 +0000 | [diff] [blame] | 2193 | StmtResult Parser::ParseCXXTryBlockCommon(SourceLocation TryLoc, bool FnTry) { | 
| Sebastian Redl | b219c90 | 2008-12-21 16:41:36 +0000 | [diff] [blame] | 2194 | if (Tok.isNot(tok::l_brace)) | 
| Alp Toker | ec54327 | 2013-12-24 09:48:30 +0000 | [diff] [blame] | 2195 | return StmtError(Diag(Tok, diag::err_expected) << tok::l_brace); | 
| Richard Smith | c202b28 | 2012-04-14 00:33:13 +0000 | [diff] [blame] | 2196 |  | 
| Momchil Velikov | 57c681f | 2017-08-10 15:43:06 +0000 | [diff] [blame] | 2197 | StmtResult TryBlock(ParseCompoundStatement( | 
|  | 2198 | /*isStmtExpr=*/false, Scope::DeclScope | Scope::TryScope | | 
|  | 2199 | Scope::CompoundStmtScope | | 
|  | 2200 | (FnTry ? Scope::FnTryCatchScope : 0))); | 
| Sebastian Redl | b219c90 | 2008-12-21 16:41:36 +0000 | [diff] [blame] | 2201 | if (TryBlock.isInvalid()) | 
| Benjamin Kramer | 62b95d8 | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 2202 | return TryBlock; | 
| Sebastian Redl | b219c90 | 2008-12-21 16:41:36 +0000 | [diff] [blame] | 2203 |  | 
| John Wiegley | 1c0675e | 2011-04-28 01:08:34 +0000 | [diff] [blame] | 2204 | // Borland allows SEH-handlers with 'try' | 
| Chad Rosier | 67055f5 | 2012-07-10 21:35:27 +0000 | [diff] [blame] | 2205 |  | 
| Richard Smith | c202b28 | 2012-04-14 00:33:13 +0000 | [diff] [blame] | 2206 | if ((Tok.is(tok::identifier) && | 
|  | 2207 | Tok.getIdentifierInfo() == getSEHExceptKeyword()) || | 
|  | 2208 | Tok.is(tok::kw___finally)) { | 
| John Wiegley | 1c0675e | 2011-04-28 01:08:34 +0000 | [diff] [blame] | 2209 | // TODO: Factor into common return ParseSEHHandlerCommon(...) | 
|  | 2210 | StmtResult Handler; | 
| Douglas Gregor | 60060d6 | 2011-10-21 03:57:52 +0000 | [diff] [blame] | 2211 | if(Tok.getIdentifierInfo() == getSEHExceptKeyword()) { | 
| John Wiegley | 1c0675e | 2011-04-28 01:08:34 +0000 | [diff] [blame] | 2212 | SourceLocation Loc = ConsumeToken(); | 
|  | 2213 | Handler = ParseSEHExceptBlock(Loc); | 
|  | 2214 | } | 
|  | 2215 | else { | 
|  | 2216 | SourceLocation Loc = ConsumeToken(); | 
|  | 2217 | Handler = ParseSEHFinallyBlock(Loc); | 
|  | 2218 | } | 
|  | 2219 | if(Handler.isInvalid()) | 
| Benjamin Kramer | 62b95d8 | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 2220 | return Handler; | 
| John McCall | 53fa714 | 2010-12-24 02:08:15 +0000 | [diff] [blame] | 2221 |  | 
| John Wiegley | 1c0675e | 2011-04-28 01:08:34 +0000 | [diff] [blame] | 2222 | return Actions.ActOnSEHTryBlock(true /* IsCXXTry */, | 
|  | 2223 | TryLoc, | 
| Nikola Smiljanic | 01a7598 | 2014-05-29 10:55:11 +0000 | [diff] [blame] | 2224 | TryBlock.get(), | 
| Warren Hunt | f6be4cb | 2014-07-25 20:52:51 +0000 | [diff] [blame] | 2225 | Handler.get()); | 
| Sebastian Redl | b219c90 | 2008-12-21 16:41:36 +0000 | [diff] [blame] | 2226 | } | 
| John Wiegley | 1c0675e | 2011-04-28 01:08:34 +0000 | [diff] [blame] | 2227 | else { | 
| Benjamin Kramer | f062343 | 2012-08-23 22:51:59 +0000 | [diff] [blame] | 2228 | StmtVector Handlers; | 
| Richard Smith | c2c8bb8 | 2013-10-15 01:34:54 +0000 | [diff] [blame] | 2229 |  | 
|  | 2230 | // C++11 attributes can't appear here, despite this context seeming | 
|  | 2231 | // statement-like. | 
|  | 2232 | DiagnoseAndSkipCXX11Attributes(); | 
| Sebastian Redl | b219c90 | 2008-12-21 16:41:36 +0000 | [diff] [blame] | 2233 |  | 
| John Wiegley | 1c0675e | 2011-04-28 01:08:34 +0000 | [diff] [blame] | 2234 | if (Tok.isNot(tok::kw_catch)) | 
|  | 2235 | return StmtError(Diag(Tok, diag::err_expected_catch)); | 
|  | 2236 | while (Tok.is(tok::kw_catch)) { | 
| David Blaikie | 1c9c904 | 2012-11-10 01:04:23 +0000 | [diff] [blame] | 2237 | StmtResult Handler(ParseCXXCatchBlock(FnTry)); | 
| John Wiegley | 1c0675e | 2011-04-28 01:08:34 +0000 | [diff] [blame] | 2238 | if (!Handler.isInvalid()) | 
| Nikola Smiljanic | 01a7598 | 2014-05-29 10:55:11 +0000 | [diff] [blame] | 2239 | Handlers.push_back(Handler.get()); | 
| John Wiegley | 1c0675e | 2011-04-28 01:08:34 +0000 | [diff] [blame] | 2240 | } | 
|  | 2241 | // Don't bother creating the full statement if we don't have any usable | 
|  | 2242 | // handlers. | 
|  | 2243 | if (Handlers.empty()) | 
|  | 2244 | return StmtError(); | 
|  | 2245 |  | 
| Nikola Smiljanic | 01a7598 | 2014-05-29 10:55:11 +0000 | [diff] [blame] | 2246 | return Actions.ActOnCXXTryBlock(TryLoc, TryBlock.get(), Handlers); | 
| John Wiegley | 1c0675e | 2011-04-28 01:08:34 +0000 | [diff] [blame] | 2247 | } | 
| Sebastian Redl | b219c90 | 2008-12-21 16:41:36 +0000 | [diff] [blame] | 2248 | } | 
|  | 2249 |  | 
|  | 2250 | /// ParseCXXCatchBlock - Parse a C++ catch block, called handler in the standard | 
|  | 2251 | /// | 
| Richard Smith | 1dba27c | 2013-01-29 09:02:09 +0000 | [diff] [blame] | 2252 | ///   handler: | 
|  | 2253 | ///     'catch' '(' exception-declaration ')' compound-statement | 
| Sebastian Redl | b219c90 | 2008-12-21 16:41:36 +0000 | [diff] [blame] | 2254 | /// | 
| Richard Smith | 1dba27c | 2013-01-29 09:02:09 +0000 | [diff] [blame] | 2255 | ///   exception-declaration: | 
|  | 2256 | ///     attribute-specifier-seq[opt] type-specifier-seq declarator | 
|  | 2257 | ///     attribute-specifier-seq[opt] type-specifier-seq abstract-declarator[opt] | 
|  | 2258 | ///     '...' | 
| Sebastian Redl | b219c90 | 2008-12-21 16:41:36 +0000 | [diff] [blame] | 2259 | /// | 
| David Blaikie | 1c9c904 | 2012-11-10 01:04:23 +0000 | [diff] [blame] | 2260 | StmtResult Parser::ParseCXXCatchBlock(bool FnCatch) { | 
| Sebastian Redl | b219c90 | 2008-12-21 16:41:36 +0000 | [diff] [blame] | 2261 | assert(Tok.is(tok::kw_catch) && "Expected 'catch'"); | 
|  | 2262 |  | 
|  | 2263 | SourceLocation CatchLoc = ConsumeToken(); | 
|  | 2264 |  | 
| Douglas Gregor | e7a8e3b | 2011-10-12 16:37:45 +0000 | [diff] [blame] | 2265 | BalancedDelimiterTracker T(*this, tok::l_paren); | 
| Alp Toker | 383d2c4 | 2014-01-01 03:08:43 +0000 | [diff] [blame] | 2266 | if (T.expectAndConsume()) | 
| Sebastian Redl | b219c90 | 2008-12-21 16:41:36 +0000 | [diff] [blame] | 2267 | return StmtError(); | 
|  | 2268 |  | 
|  | 2269 | // C++ 3.3.2p3: | 
|  | 2270 | // The name in a catch exception-declaration is local to the handler and | 
|  | 2271 | // shall not be redeclared in the outermost block of the handler. | 
| Brian Gesiak | e8b3d63 | 2019-03-22 16:08:29 +0000 | [diff] [blame] | 2272 | ParseScope CatchScope(this, Scope::DeclScope | Scope::ControlScope | | 
| Brian Gesiak | b15c35a | 2019-03-25 00:53:10 +0000 | [diff] [blame] | 2273 | Scope::CatchScope | | 
|  | 2274 | (FnCatch ? Scope::FnTryCatchScope : 0)); | 
| Sebastian Redl | b219c90 | 2008-12-21 16:41:36 +0000 | [diff] [blame] | 2275 |  | 
|  | 2276 | // exception-declaration is equivalent to '...' or a parameter-declaration | 
|  | 2277 | // without default arguments. | 
| Craig Topper | 161e4db | 2014-05-21 06:02:52 +0000 | [diff] [blame] | 2278 | Decl *ExceptionDecl = nullptr; | 
| Sebastian Redl | b219c90 | 2008-12-21 16:41:36 +0000 | [diff] [blame] | 2279 | if (Tok.isNot(tok::ellipsis)) { | 
| Richard Smith | 1dba27c | 2013-01-29 09:02:09 +0000 | [diff] [blame] | 2280 | ParsedAttributesWithRange Attributes(AttrFactory); | 
|  | 2281 | MaybeParseCXX11Attributes(Attributes); | 
|  | 2282 |  | 
| John McCall | 084e83d | 2011-03-24 11:26:52 +0000 | [diff] [blame] | 2283 | DeclSpec DS(AttrFactory); | 
| Richard Smith | 1dba27c | 2013-01-29 09:02:09 +0000 | [diff] [blame] | 2284 | DS.takeAttributesFrom(Attributes); | 
|  | 2285 |  | 
| Sebastian Redl | 54c04d4 | 2008-12-22 19:15:10 +0000 | [diff] [blame] | 2286 | if (ParseCXXTypeSpecifierSeq(DS)) | 
|  | 2287 | return StmtError(); | 
| Richard Smith | 1dba27c | 2013-01-29 09:02:09 +0000 | [diff] [blame] | 2288 |  | 
| Faisal Vali | 421b2d1 | 2017-12-29 05:41:00 +0000 | [diff] [blame] | 2289 | Declarator ExDecl(DS, DeclaratorContext::CXXCatchContext); | 
| Sebastian Redl | b219c90 | 2008-12-21 16:41:36 +0000 | [diff] [blame] | 2290 | ParseDeclarator(ExDecl); | 
| Douglas Gregor | 0be31a2 | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 2291 | ExceptionDecl = Actions.ActOnExceptionDeclarator(getCurScope(), ExDecl); | 
| Sebastian Redl | b219c90 | 2008-12-21 16:41:36 +0000 | [diff] [blame] | 2292 | } else | 
|  | 2293 | ConsumeToken(); | 
|  | 2294 |  | 
| Douglas Gregor | e7a8e3b | 2011-10-12 16:37:45 +0000 | [diff] [blame] | 2295 | T.consumeClose(); | 
|  | 2296 | if (T.getCloseLocation().isInvalid()) | 
| Sebastian Redl | b219c90 | 2008-12-21 16:41:36 +0000 | [diff] [blame] | 2297 | return StmtError(); | 
|  | 2298 |  | 
|  | 2299 | if (Tok.isNot(tok::l_brace)) | 
| Alp Toker | ec54327 | 2013-12-24 09:48:30 +0000 | [diff] [blame] | 2300 | return StmtError(Diag(Tok, diag::err_expected) << tok::l_brace); | 
| Sebastian Redl | b219c90 | 2008-12-21 16:41:36 +0000 | [diff] [blame] | 2301 |  | 
| Alexis Hunt | 96d5c76 | 2009-11-21 08:43:09 +0000 | [diff] [blame] | 2302 | // FIXME: Possible draft standard bug: attribute-specifier should be allowed? | 
| Brian Gesiak | e8b3d63 | 2019-03-22 16:08:29 +0000 | [diff] [blame] | 2303 | StmtResult Block(ParseCompoundStatement()); | 
| Sebastian Redl | b219c90 | 2008-12-21 16:41:36 +0000 | [diff] [blame] | 2304 | if (Block.isInvalid()) | 
| Benjamin Kramer | 62b95d8 | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 2305 | return Block; | 
| Sebastian Redl | b219c90 | 2008-12-21 16:41:36 +0000 | [diff] [blame] | 2306 |  | 
| Nikola Smiljanic | 01a7598 | 2014-05-29 10:55:11 +0000 | [diff] [blame] | 2307 | return Actions.ActOnCXXCatchBlock(CatchLoc, ExceptionDecl, Block.get()); | 
| Sebastian Redl | b219c90 | 2008-12-21 16:41:36 +0000 | [diff] [blame] | 2308 | } | 
| Francois Pichet | 4a7de3e | 2011-05-06 20:48:22 +0000 | [diff] [blame] | 2309 |  | 
|  | 2310 | void Parser::ParseMicrosoftIfExistsStatement(StmtVector &Stmts) { | 
| Douglas Gregor | 43edb32 | 2011-10-24 22:31:10 +0000 | [diff] [blame] | 2311 | IfExistsCondition Result; | 
| Francois Pichet | a5b3fcb | 2011-05-07 17:30:27 +0000 | [diff] [blame] | 2312 | if (ParseMicrosoftIfExistsCondition(Result)) | 
| Francois Pichet | 4a7de3e | 2011-05-06 20:48:22 +0000 | [diff] [blame] | 2313 | return; | 
| NAKAMURA Takumi | 82a3511 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 2314 |  | 
| Douglas Gregor | 43edb32 | 2011-10-24 22:31:10 +0000 | [diff] [blame] | 2315 | // Handle dependent statements by parsing the braces as a compound statement. | 
|  | 2316 | // This is not the same behavior as Visual C++, which don't treat this as a | 
|  | 2317 | // compound statement, but for Clang's type checking we can't have anything | 
|  | 2318 | // inside these braces escaping to the surrounding code. | 
|  | 2319 | if (Result.Behavior == IEB_Dependent) { | 
|  | 2320 | if (!Tok.is(tok::l_brace)) { | 
| Alp Toker | ec54327 | 2013-12-24 09:48:30 +0000 | [diff] [blame] | 2321 | Diag(Tok, diag::err_expected) << tok::l_brace; | 
| Richard Smith | c202b28 | 2012-04-14 00:33:13 +0000 | [diff] [blame] | 2322 | return; | 
| Douglas Gregor | 43edb32 | 2011-10-24 22:31:10 +0000 | [diff] [blame] | 2323 | } | 
| Richard Smith | c202b28 | 2012-04-14 00:33:13 +0000 | [diff] [blame] | 2324 |  | 
|  | 2325 | StmtResult Compound = ParseCompoundStatement(); | 
| Douglas Gregor | deb4a2be | 2011-10-25 01:33:02 +0000 | [diff] [blame] | 2326 | if (Compound.isInvalid()) | 
|  | 2327 | return; | 
| Richard Smith | c202b28 | 2012-04-14 00:33:13 +0000 | [diff] [blame] | 2328 |  | 
| Douglas Gregor | deb4a2be | 2011-10-25 01:33:02 +0000 | [diff] [blame] | 2329 | StmtResult DepResult = Actions.ActOnMSDependentExistsStmt(Result.KeywordLoc, | 
|  | 2330 | Result.IsIfExists, | 
| Richard Smith | c202b28 | 2012-04-14 00:33:13 +0000 | [diff] [blame] | 2331 | Result.SS, | 
| Douglas Gregor | deb4a2be | 2011-10-25 01:33:02 +0000 | [diff] [blame] | 2332 | Result.Name, | 
|  | 2333 | Compound.get()); | 
|  | 2334 | if (DepResult.isUsable()) | 
|  | 2335 | Stmts.push_back(DepResult.get()); | 
| Douglas Gregor | 43edb32 | 2011-10-24 22:31:10 +0000 | [diff] [blame] | 2336 | return; | 
|  | 2337 | } | 
| Richard Smith | c202b28 | 2012-04-14 00:33:13 +0000 | [diff] [blame] | 2338 |  | 
| Douglas Gregor | 43edb32 | 2011-10-24 22:31:10 +0000 | [diff] [blame] | 2339 | BalancedDelimiterTracker Braces(*this, tok::l_brace); | 
|  | 2340 | if (Braces.consumeOpen()) { | 
| Alp Toker | ec54327 | 2013-12-24 09:48:30 +0000 | [diff] [blame] | 2341 | Diag(Tok, diag::err_expected) << tok::l_brace; | 
| Francois Pichet | 4a7de3e | 2011-05-06 20:48:22 +0000 | [diff] [blame] | 2342 | return; | 
|  | 2343 | } | 
| Francois Pichet | 4a7de3e | 2011-05-06 20:48:22 +0000 | [diff] [blame] | 2344 |  | 
| Douglas Gregor | 43edb32 | 2011-10-24 22:31:10 +0000 | [diff] [blame] | 2345 | switch (Result.Behavior) { | 
|  | 2346 | case IEB_Parse: | 
|  | 2347 | // Parse the statements below. | 
|  | 2348 | break; | 
| Chad Rosier | 67055f5 | 2012-07-10 21:35:27 +0000 | [diff] [blame] | 2349 |  | 
| Douglas Gregor | 43edb32 | 2011-10-24 22:31:10 +0000 | [diff] [blame] | 2350 | case IEB_Dependent: | 
|  | 2351 | llvm_unreachable("Dependent case handled above"); | 
| Chad Rosier | 67055f5 | 2012-07-10 21:35:27 +0000 | [diff] [blame] | 2352 |  | 
| Douglas Gregor | 43edb32 | 2011-10-24 22:31:10 +0000 | [diff] [blame] | 2353 | case IEB_Skip: | 
|  | 2354 | Braces.skipToEnd(); | 
| Francois Pichet | 4a7de3e | 2011-05-06 20:48:22 +0000 | [diff] [blame] | 2355 | return; | 
|  | 2356 | } | 
|  | 2357 |  | 
|  | 2358 | // Condition is true, parse the statements. | 
|  | 2359 | while (Tok.isNot(tok::r_brace)) { | 
| Richard Smith | a6e8d5e | 2019-02-15 00:27:53 +0000 | [diff] [blame] | 2360 | StmtResult R = | 
|  | 2361 | ParseStatementOrDeclaration(Stmts, ParsedStmtContext::Compound); | 
| Francois Pichet | 4a7de3e | 2011-05-06 20:48:22 +0000 | [diff] [blame] | 2362 | if (R.isUsable()) | 
| Nikola Smiljanic | 01a7598 | 2014-05-29 10:55:11 +0000 | [diff] [blame] | 2363 | Stmts.push_back(R.get()); | 
| Francois Pichet | 4a7de3e | 2011-05-06 20:48:22 +0000 | [diff] [blame] | 2364 | } | 
| Douglas Gregor | 43edb32 | 2011-10-24 22:31:10 +0000 | [diff] [blame] | 2365 | Braces.consumeClose(); | 
| Francois Pichet | 4a7de3e | 2011-05-06 20:48:22 +0000 | [diff] [blame] | 2366 | } | 
| Anastasia Stulova | 6bdbcbb | 2016-02-19 18:30:11 +0000 | [diff] [blame] | 2367 |  | 
|  | 2368 | bool Parser::ParseOpenCLUnrollHintAttribute(ParsedAttributes &Attrs) { | 
|  | 2369 | MaybeParseGNUAttributes(Attrs); | 
|  | 2370 |  | 
|  | 2371 | if (Attrs.empty()) | 
|  | 2372 | return true; | 
|  | 2373 |  | 
| Erich Keane | e891aa9 | 2018-07-13 15:07:47 +0000 | [diff] [blame] | 2374 | if (Attrs.begin()->getKind() != ParsedAttr::AT_OpenCLUnrollHint) | 
| Anastasia Stulova | 6bdbcbb | 2016-02-19 18:30:11 +0000 | [diff] [blame] | 2375 | return true; | 
|  | 2376 |  | 
|  | 2377 | if (!(Tok.is(tok::kw_for) || Tok.is(tok::kw_while) || Tok.is(tok::kw_do))) { | 
|  | 2378 | Diag(Tok, diag::err_opencl_unroll_hint_on_non_loop); | 
|  | 2379 | return false; | 
|  | 2380 | } | 
|  | 2381 | return true; | 
|  | 2382 | } |