Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1 | //===--- ParseInit.cpp - Initializer Parsing ------------------------------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 0bc735f | 2007-12-29 19:59:25 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file implements initializer parsing as specified by C99 6.7.8. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #include "clang/Parse/Parser.h" |
Chris Lattner | 500d329 | 2009-01-29 05:15:15 +0000 | [diff] [blame] | 15 | #include "clang/Parse/ParseDiagnostic.h" |
Douglas Gregor | 0fbda68 | 2010-09-15 14:51:05 +0000 | [diff] [blame] | 16 | #include "RAIIObjectsForParser.h" |
John McCall | 1951085 | 2010-08-20 18:27:03 +0000 | [diff] [blame] | 17 | #include "clang/Sema/Designator.h" |
| 18 | #include "clang/Sema/Scope.h" |
Steve Naroff | 4aa88f8 | 2007-07-19 01:06:55 +0000 | [diff] [blame] | 19 | #include "llvm/ADT/SmallString.h" |
Daniel Dunbar | 62a7217 | 2009-10-17 23:52:50 +0000 | [diff] [blame] | 20 | #include "llvm/Support/raw_ostream.h" |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 21 | using namespace clang; |
| 22 | |
| 23 | |
| 24 | /// MayBeDesignationStart - Return true if this token might be the start of a |
Chris Lattner | 838cb21 | 2008-10-26 21:46:13 +0000 | [diff] [blame] | 25 | /// designator. If we can tell it is impossible that it is a designator, return |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 26 | /// false. |
Chris Lattner | efcadc6 | 2008-10-26 22:41:58 +0000 | [diff] [blame] | 27 | static bool MayBeDesignationStart(tok::TokenKind K, Preprocessor &PP) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 28 | switch (K) { |
| 29 | default: return false; |
| 30 | case tok::period: // designator: '.' identifier |
| 31 | case tok::l_square: // designator: array-designator |
Chris Lattner | efcadc6 | 2008-10-26 22:41:58 +0000 | [diff] [blame] | 32 | return true; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 33 | case tok::identifier: // designation: identifier ':' |
Chris Lattner | efcadc6 | 2008-10-26 22:41:58 +0000 | [diff] [blame] | 34 | return PP.LookAhead(0).is(tok::colon); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 35 | } |
| 36 | } |
| 37 | |
Douglas Gregor | 6aa14d8 | 2010-04-21 22:36:40 +0000 | [diff] [blame] | 38 | static void CheckArrayDesignatorSyntax(Parser &P, SourceLocation Loc, |
| 39 | Designation &Desig) { |
| 40 | // If we have exactly one array designator, this used the GNU |
| 41 | // 'designation: array-designator' extension, otherwise there should be no |
| 42 | // designators at all! |
| 43 | if (Desig.getNumDesignators() == 1 && |
| 44 | (Desig.getDesignator(0).isArrayDesignator() || |
| 45 | Desig.getDesignator(0).isArrayRangeDesignator())) |
| 46 | P.Diag(Loc, diag::ext_gnu_missing_equal_designator); |
| 47 | else if (Desig.getNumDesignators() > 0) |
| 48 | P.Diag(Loc, diag::err_expected_equal_designator); |
| 49 | } |
| 50 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 51 | /// ParseInitializerWithPotentialDesignator - Parse the 'initializer' production |
| 52 | /// checking to see if the token stream starts with a designator. |
| 53 | /// |
| 54 | /// designation: |
| 55 | /// designator-list '=' |
| 56 | /// [GNU] array-designator |
| 57 | /// [GNU] identifier ':' |
| 58 | /// |
| 59 | /// designator-list: |
| 60 | /// designator |
| 61 | /// designator-list designator |
| 62 | /// |
| 63 | /// designator: |
| 64 | /// array-designator |
| 65 | /// '.' identifier |
| 66 | /// |
| 67 | /// array-designator: |
| 68 | /// '[' constant-expression ']' |
| 69 | /// [GNU] '[' constant-expression '...' constant-expression ']' |
| 70 | /// |
| 71 | /// NOTE: [OBC] allows '[ objc-receiver objc-message-args ]' as an |
Chris Lattner | 838cb21 | 2008-10-26 21:46:13 +0000 | [diff] [blame] | 72 | /// initializer (because it is an expression). We need to consider this case |
| 73 | /// when parsing array designators. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 74 | /// |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 75 | ExprResult Parser::ParseInitializerWithPotentialDesignator() { |
Sebastian Redl | 20df9b7 | 2008-12-11 22:51:44 +0000 | [diff] [blame] | 76 | |
Chris Lattner | eccc53a | 2008-10-26 22:36:07 +0000 | [diff] [blame] | 77 | // If this is the old-style GNU extension: |
| 78 | // designation ::= identifier ':' |
| 79 | // Handle it as a field designator. Otherwise, this must be the start of a |
| 80 | // normal expression. |
| 81 | if (Tok.is(tok::identifier)) { |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 82 | const IdentifierInfo *FieldName = Tok.getIdentifierInfo(); |
Douglas Gregor | eeae8f0 | 2009-03-28 00:41:23 +0000 | [diff] [blame] | 83 | |
Daniel Dunbar | 62a7217 | 2009-10-17 23:52:50 +0000 | [diff] [blame] | 84 | llvm::SmallString<256> NewSyntax; |
Daniel Dunbar | 01eb9b9 | 2009-10-18 21:17:35 +0000 | [diff] [blame] | 85 | llvm::raw_svector_ostream(NewSyntax) << '.' << FieldName->getName() |
Daniel Dunbar | 62a7217 | 2009-10-17 23:52:50 +0000 | [diff] [blame] | 86 | << " = "; |
Douglas Gregor | eeae8f0 | 2009-03-28 00:41:23 +0000 | [diff] [blame] | 87 | |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 88 | SourceLocation NameLoc = ConsumeToken(); // Eat the identifier. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 89 | |
Chris Lattner | 7f9690d | 2008-10-26 22:49:49 +0000 | [diff] [blame] | 90 | assert(Tok.is(tok::colon) && "MayBeDesignationStart not working properly!"); |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 91 | SourceLocation ColonLoc = ConsumeToken(); |
| 92 | |
Douglas Gregor | 40a0f9c | 2011-08-27 00:13:16 +0000 | [diff] [blame] | 93 | Diag(NameLoc, diag::ext_gnu_old_style_field_designator) |
Douglas Gregor | 849b243 | 2010-03-31 17:46:05 +0000 | [diff] [blame] | 94 | << FixItHint::CreateReplacement(SourceRange(NameLoc, ColonLoc), |
| 95 | NewSyntax.str()); |
Douglas Gregor | eeae8f0 | 2009-03-28 00:41:23 +0000 | [diff] [blame] | 96 | |
Douglas Gregor | 5908a92 | 2009-03-20 23:11:49 +0000 | [diff] [blame] | 97 | Designation D; |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 98 | D.AddDesignator(Designator::getField(FieldName, SourceLocation(), NameLoc)); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 99 | return Actions.ActOnDesignatedInitializer(D, ColonLoc, true, |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 100 | ParseInitializer()); |
Chris Lattner | eccc53a | 2008-10-26 22:36:07 +0000 | [diff] [blame] | 101 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 102 | |
Chris Lattner | 0a68b94 | 2008-10-26 22:59:19 +0000 | [diff] [blame] | 103 | // Desig - This is initialized when we see our first designator. We may have |
| 104 | // an objc message send with no designator, so we don't want to create this |
| 105 | // eagerly. |
Douglas Gregor | 5908a92 | 2009-03-20 23:11:49 +0000 | [diff] [blame] | 106 | Designation Desig; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 107 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 108 | // Parse each designator in the designator list until we find an initializer. |
Chris Lattner | 7f9690d | 2008-10-26 22:49:49 +0000 | [diff] [blame] | 109 | while (Tok.is(tok::period) || Tok.is(tok::l_square)) { |
| 110 | if (Tok.is(tok::period)) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 111 | // designator: '.' identifier |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 112 | SourceLocation DotLoc = ConsumeToken(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 113 | |
Chris Lattner | 0a68b94 | 2008-10-26 22:59:19 +0000 | [diff] [blame] | 114 | if (Tok.isNot(tok::identifier)) { |
| 115 | Diag(Tok.getLocation(), diag::err_expected_field_designator); |
Sebastian Redl | 20df9b7 | 2008-12-11 22:51:44 +0000 | [diff] [blame] | 116 | return ExprError(); |
Chris Lattner | 0a68b94 | 2008-10-26 22:59:19 +0000 | [diff] [blame] | 117 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 118 | |
Douglas Gregor | 5908a92 | 2009-03-20 23:11:49 +0000 | [diff] [blame] | 119 | Desig.AddDesignator(Designator::getField(Tok.getIdentifierInfo(), DotLoc, |
| 120 | Tok.getLocation())); |
Chris Lattner | 0a68b94 | 2008-10-26 22:59:19 +0000 | [diff] [blame] | 121 | ConsumeToken(); // Eat the identifier. |
Chris Lattner | 7f9690d | 2008-10-26 22:49:49 +0000 | [diff] [blame] | 122 | continue; |
| 123 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 124 | |
Chris Lattner | 7f9690d | 2008-10-26 22:49:49 +0000 | [diff] [blame] | 125 | // We must have either an array designator now or an objc message send. |
| 126 | assert(Tok.is(tok::l_square) && "Unexpected token!"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 127 | |
Chris Lattner | e232942 | 2008-10-26 23:06:54 +0000 | [diff] [blame] | 128 | // Handle the two forms of array designator: |
| 129 | // array-designator: '[' constant-expression ']' |
| 130 | // array-designator: '[' constant-expression '...' constant-expression ']' |
| 131 | // |
| 132 | // Also, we have to handle the case where the expression after the |
| 133 | // designator an an objc message send: '[' objc-message-expr ']'. |
| 134 | // Interesting cases are: |
| 135 | // [foo bar] -> objc message send |
| 136 | // [foo] -> array designator |
| 137 | // [foo ... bar] -> array designator |
| 138 | // [4][foo bar] -> obsolete GNU designation with objc message send. |
| 139 | // |
Douglas Gregor | 0fbda68 | 2010-09-15 14:51:05 +0000 | [diff] [blame] | 140 | InMessageExpressionRAIIObject InMessage(*this, true); |
| 141 | |
Douglas Gregor | 4a8dfb5 | 2011-10-12 16:37:45 +0000 | [diff] [blame^] | 142 | BalancedDelimiterTracker T(*this, tok::l_square); |
| 143 | T.consumeOpen(); |
| 144 | SourceLocation StartLoc = T.getOpenLocation(); |
| 145 | |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 146 | ExprResult Idx; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 147 | |
Douglas Gregor | 6aa14d8 | 2010-04-21 22:36:40 +0000 | [diff] [blame] | 148 | // If Objective-C is enabled and this is a typename (class message |
| 149 | // send) or send to 'super', parse this as a message send |
| 150 | // expression. We handle C++ and C separately, since C++ requires |
| 151 | // much more complicated parsing. |
| 152 | if (getLang().ObjC1 && getLang().CPlusPlus) { |
| 153 | // Send to 'super'. |
| 154 | if (Tok.is(tok::identifier) && Tok.getIdentifierInfo() == Ident_super && |
Douglas Gregor | 0fbda68 | 2010-09-15 14:51:05 +0000 | [diff] [blame] | 155 | NextToken().isNot(tok::period) && |
| 156 | getCurScope()->isInObjcMethodScope()) { |
Douglas Gregor | 6aa14d8 | 2010-04-21 22:36:40 +0000 | [diff] [blame] | 157 | CheckArrayDesignatorSyntax(*this, StartLoc, Desig); |
| 158 | return ParseAssignmentExprWithObjCMessageExprStart(StartLoc, |
John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 159 | ConsumeToken(), |
| 160 | ParsedType(), |
John McCall | 9ae2f07 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 161 | 0); |
Douglas Gregor | 6aa14d8 | 2010-04-21 22:36:40 +0000 | [diff] [blame] | 162 | } |
| 163 | |
| 164 | // Parse the receiver, which is either a type or an expression. |
| 165 | bool IsExpr; |
| 166 | void *TypeOrExpr; |
| 167 | if (ParseObjCXXMessageReceiver(IsExpr, TypeOrExpr)) { |
| 168 | SkipUntil(tok::r_square); |
| 169 | return ExprError(); |
| 170 | } |
| 171 | |
| 172 | // If the receiver was a type, we have a class message; parse |
| 173 | // the rest of it. |
| 174 | if (!IsExpr) { |
| 175 | CheckArrayDesignatorSyntax(*this, StartLoc, Desig); |
| 176 | return ParseAssignmentExprWithObjCMessageExprStart(StartLoc, |
| 177 | SourceLocation(), |
John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 178 | ParsedType::getFromOpaquePtr(TypeOrExpr), |
John McCall | 9ae2f07 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 179 | 0); |
Douglas Gregor | 6aa14d8 | 2010-04-21 22:36:40 +0000 | [diff] [blame] | 180 | } |
| 181 | |
| 182 | // If the receiver was an expression, we still don't know |
| 183 | // whether we have a message send or an array designator; just |
| 184 | // adopt the expression for further analysis below. |
| 185 | // FIXME: potentially-potentially evaluated expression above? |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 186 | Idx = ExprResult(static_cast<Expr*>(TypeOrExpr)); |
Douglas Gregor | 6aa14d8 | 2010-04-21 22:36:40 +0000 | [diff] [blame] | 187 | } else if (getLang().ObjC1 && Tok.is(tok::identifier)) { |
Chris Lattner | eb483eb | 2010-04-11 08:28:14 +0000 | [diff] [blame] | 188 | IdentifierInfo *II = Tok.getIdentifierInfo(); |
Douglas Gregor | 2725ca8 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 189 | SourceLocation IILoc = Tok.getLocation(); |
John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 190 | ParsedType ReceiverType; |
Chris Lattner | 1e46136 | 2010-04-12 06:36:00 +0000 | [diff] [blame] | 191 | // Three cases. This is a message send to a type: [type foo] |
| 192 | // This is a message send to super: [super foo] |
| 193 | // This is a message sent to an expr: [super.bar foo] |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 194 | switch (Sema::ObjCMessageKind Kind |
Douglas Gregor | 23c94db | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 195 | = Actions.getObjCMessageKind(getCurScope(), II, IILoc, |
Douglas Gregor | 2725ca8 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 196 | II == Ident_super, |
Douglas Gregor | 1569f95 | 2010-04-21 20:38:13 +0000 | [diff] [blame] | 197 | NextToken().is(tok::period), |
| 198 | ReceiverType)) { |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 199 | case Sema::ObjCSuperMessage: |
| 200 | case Sema::ObjCClassMessage: |
Douglas Gregor | 6aa14d8 | 2010-04-21 22:36:40 +0000 | [diff] [blame] | 201 | CheckArrayDesignatorSyntax(*this, StartLoc, Desig); |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 202 | if (Kind == Sema::ObjCSuperMessage) |
Douglas Gregor | 2725ca8 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 203 | return ParseAssignmentExprWithObjCMessageExprStart(StartLoc, |
| 204 | ConsumeToken(), |
John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 205 | ParsedType(), |
John McCall | 9ae2f07 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 206 | 0); |
Douglas Gregor | 1569f95 | 2010-04-21 20:38:13 +0000 | [diff] [blame] | 207 | ConsumeToken(); // the identifier |
| 208 | if (!ReceiverType) { |
Douglas Gregor | 2725ca8 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 209 | SkipUntil(tok::r_square); |
| 210 | return ExprError(); |
| 211 | } |
| 212 | |
| 213 | return ParseAssignmentExprWithObjCMessageExprStart(StartLoc, |
| 214 | SourceLocation(), |
Douglas Gregor | 1569f95 | 2010-04-21 20:38:13 +0000 | [diff] [blame] | 215 | ReceiverType, |
John McCall | 9ae2f07 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 216 | 0); |
Douglas Gregor | 2725ca8 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 217 | |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 218 | case Sema::ObjCInstanceMessage: |
Douglas Gregor | 2725ca8 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 219 | // Fall through; we'll just parse the expression and |
| 220 | // (possibly) treat this like an Objective-C message send |
| 221 | // later. |
| 222 | break; |
Chris Lattner | eb483eb | 2010-04-11 08:28:14 +0000 | [diff] [blame] | 223 | } |
Chris Lattner | 7f9690d | 2008-10-26 22:49:49 +0000 | [diff] [blame] | 224 | } |
Sebastian Redl | 1d92296 | 2008-12-13 15:32:12 +0000 | [diff] [blame] | 225 | |
Douglas Gregor | 6aa14d8 | 2010-04-21 22:36:40 +0000 | [diff] [blame] | 226 | // Parse the index expression, if we haven't already gotten one |
| 227 | // above (which can only happen in Objective-C++). |
Chris Lattner | 7f9690d | 2008-10-26 22:49:49 +0000 | [diff] [blame] | 228 | // Note that we parse this as an assignment expression, not a constant |
| 229 | // expression (allowing *=, =, etc) to handle the objc case. Sema needs |
| 230 | // to validate that the expression is a constant. |
Douglas Gregor | 6aa14d8 | 2010-04-21 22:36:40 +0000 | [diff] [blame] | 231 | // FIXME: We also need to tell Sema that we're in a |
| 232 | // potentially-potentially evaluated context. |
| 233 | if (!Idx.get()) { |
| 234 | Idx = ParseAssignmentExpression(); |
| 235 | if (Idx.isInvalid()) { |
| 236 | SkipUntil(tok::r_square); |
| 237 | return move(Idx); |
| 238 | } |
Chris Lattner | 7f9690d | 2008-10-26 22:49:49 +0000 | [diff] [blame] | 239 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 240 | |
Chris Lattner | 7f9690d | 2008-10-26 22:49:49 +0000 | [diff] [blame] | 241 | // Given an expression, we could either have a designator (if the next |
| 242 | // tokens are '...' or ']' or an objc message send. If this is an objc |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 243 | // message send, handle it now. An objc-message send is the start of |
Chris Lattner | 7f9690d | 2008-10-26 22:49:49 +0000 | [diff] [blame] | 244 | // an assignment-expression production. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 245 | if (getLang().ObjC1 && Tok.isNot(tok::ellipsis) && |
Chris Lattner | 7f9690d | 2008-10-26 22:49:49 +0000 | [diff] [blame] | 246 | Tok.isNot(tok::r_square)) { |
Douglas Gregor | 6aa14d8 | 2010-04-21 22:36:40 +0000 | [diff] [blame] | 247 | CheckArrayDesignatorSyntax(*this, Tok.getLocation(), Desig); |
Sebastian Redl | 1d92296 | 2008-12-13 15:32:12 +0000 | [diff] [blame] | 248 | return ParseAssignmentExprWithObjCMessageExprStart(StartLoc, |
| 249 | SourceLocation(), |
John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 250 | ParsedType(), |
| 251 | Idx.take()); |
Chris Lattner | 7f9690d | 2008-10-26 22:49:49 +0000 | [diff] [blame] | 252 | } |
Chris Lattner | e232942 | 2008-10-26 23:06:54 +0000 | [diff] [blame] | 253 | |
Chris Lattner | e232942 | 2008-10-26 23:06:54 +0000 | [diff] [blame] | 254 | // If this is a normal array designator, remember it. |
| 255 | if (Tok.isNot(tok::ellipsis)) { |
Douglas Gregor | 5908a92 | 2009-03-20 23:11:49 +0000 | [diff] [blame] | 256 | Desig.AddDesignator(Designator::getArray(Idx.release(), StartLoc)); |
Chris Lattner | e232942 | 2008-10-26 23:06:54 +0000 | [diff] [blame] | 257 | } else { |
| 258 | // Handle the gnu array range extension. |
Chris Lattner | 7f9690d | 2008-10-26 22:49:49 +0000 | [diff] [blame] | 259 | Diag(Tok, diag::ext_gnu_array_range); |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 260 | SourceLocation EllipsisLoc = ConsumeToken(); |
Sebastian Redl | 2f7ece7 | 2008-12-11 21:36:32 +0000 | [diff] [blame] | 261 | |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 262 | ExprResult RHS(ParseConstantExpression()); |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 263 | if (RHS.isInvalid()) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 264 | SkipUntil(tok::r_square); |
Sebastian Redl | 20df9b7 | 2008-12-11 22:51:44 +0000 | [diff] [blame] | 265 | return move(RHS); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 266 | } |
Douglas Gregor | 5908a92 | 2009-03-20 23:11:49 +0000 | [diff] [blame] | 267 | Desig.AddDesignator(Designator::getArrayRange(Idx.release(), |
| 268 | RHS.release(), |
| 269 | StartLoc, EllipsisLoc)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 270 | } |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 271 | |
Douglas Gregor | 4a8dfb5 | 2011-10-12 16:37:45 +0000 | [diff] [blame^] | 272 | T.consumeClose(); |
| 273 | Desig.getDesignator(Desig.getNumDesignators() - 1).setRBracketLoc( |
| 274 | T.getCloseLocation()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 275 | } |
Chris Lattner | 7f9690d | 2008-10-26 22:49:49 +0000 | [diff] [blame] | 276 | |
Chris Lattner | 0a68b94 | 2008-10-26 22:59:19 +0000 | [diff] [blame] | 277 | // Okay, we're done with the designator sequence. We know that there must be |
| 278 | // at least one designator, because the only case we can get into this method |
| 279 | // without a designator is when we have an objc message send. That case is |
| 280 | // handled and returned from above. |
Douglas Gregor | 5908a92 | 2009-03-20 23:11:49 +0000 | [diff] [blame] | 281 | assert(!Desig.empty() && "Designator is empty?"); |
Sebastian Redl | 20df9b7 | 2008-12-11 22:51:44 +0000 | [diff] [blame] | 282 | |
Chris Lattner | 0a68b94 | 2008-10-26 22:59:19 +0000 | [diff] [blame] | 283 | // Handle a normal designator sequence end, which is an equal. |
Chris Lattner | 7f9690d | 2008-10-26 22:49:49 +0000 | [diff] [blame] | 284 | if (Tok.is(tok::equal)) { |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 285 | SourceLocation EqualLoc = ConsumeToken(); |
Douglas Gregor | 5908a92 | 2009-03-20 23:11:49 +0000 | [diff] [blame] | 286 | return Actions.ActOnDesignatedInitializer(Desig, EqualLoc, false, |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 287 | ParseInitializer()); |
Chris Lattner | 7f9690d | 2008-10-26 22:49:49 +0000 | [diff] [blame] | 288 | } |
Sebastian Redl | 20df9b7 | 2008-12-11 22:51:44 +0000 | [diff] [blame] | 289 | |
Chris Lattner | 0a68b94 | 2008-10-26 22:59:19 +0000 | [diff] [blame] | 290 | // We read some number of designators and found something that isn't an = or |
Chris Lattner | 79ed6b5 | 2008-10-26 23:22:23 +0000 | [diff] [blame] | 291 | // an initializer. If we have exactly one array designator, this |
Chris Lattner | 0a68b94 | 2008-10-26 22:59:19 +0000 | [diff] [blame] | 292 | // is the GNU 'designation: array-designator' extension. Otherwise, it is a |
| 293 | // parse error. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 294 | if (Desig.getNumDesignators() == 1 && |
Douglas Gregor | 5908a92 | 2009-03-20 23:11:49 +0000 | [diff] [blame] | 295 | (Desig.getDesignator(0).isArrayDesignator() || |
| 296 | Desig.getDesignator(0).isArrayRangeDesignator())) { |
Douglas Gregor | eeae8f0 | 2009-03-28 00:41:23 +0000 | [diff] [blame] | 297 | Diag(Tok, diag::ext_gnu_missing_equal_designator) |
Douglas Gregor | 849b243 | 2010-03-31 17:46:05 +0000 | [diff] [blame] | 298 | << FixItHint::CreateInsertion(Tok.getLocation(), "= "); |
Douglas Gregor | eeae8f0 | 2009-03-28 00:41:23 +0000 | [diff] [blame] | 299 | return Actions.ActOnDesignatedInitializer(Desig, Tok.getLocation(), |
Douglas Gregor | 68c56de | 2009-03-27 23:40:29 +0000 | [diff] [blame] | 300 | true, ParseInitializer()); |
Chris Lattner | 79ed6b5 | 2008-10-26 23:22:23 +0000 | [diff] [blame] | 301 | } |
Sebastian Redl | 20df9b7 | 2008-12-11 22:51:44 +0000 | [diff] [blame] | 302 | |
Chris Lattner | 79ed6b5 | 2008-10-26 23:22:23 +0000 | [diff] [blame] | 303 | Diag(Tok, diag::err_expected_equal_designator); |
Sebastian Redl | 20df9b7 | 2008-12-11 22:51:44 +0000 | [diff] [blame] | 304 | return ExprError(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 305 | } |
| 306 | |
| 307 | |
Chris Lattner | 0eec2b5 | 2008-10-26 22:38:55 +0000 | [diff] [blame] | 308 | /// ParseBraceInitializer - Called when parsing an initializer that has a |
| 309 | /// leading open brace. |
| 310 | /// |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 311 | /// initializer: [C99 6.7.8] |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 312 | /// '{' initializer-list '}' |
| 313 | /// '{' initializer-list ',' '}' |
| 314 | /// [GNU] '{' '}' |
| 315 | /// |
| 316 | /// initializer-list: |
Douglas Gregor | dcaa1ca | 2011-01-03 19:31:53 +0000 | [diff] [blame] | 317 | /// designation[opt] initializer ...[opt] |
| 318 | /// initializer-list ',' designation[opt] initializer ...[opt] |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 319 | /// |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 320 | ExprResult Parser::ParseBraceInitializer() { |
Douglas Gregor | 0fbda68 | 2010-09-15 14:51:05 +0000 | [diff] [blame] | 321 | InMessageExpressionRAIIObject InMessage(*this, false); |
| 322 | |
Douglas Gregor | 4a8dfb5 | 2011-10-12 16:37:45 +0000 | [diff] [blame^] | 323 | BalancedDelimiterTracker T(*this, tok::l_brace); |
| 324 | T.consumeOpen(); |
| 325 | SourceLocation LBraceLoc = T.getOpenLocation(); |
Sebastian Redl | a55e52c | 2008-11-25 22:21:31 +0000 | [diff] [blame] | 326 | |
Chris Lattner | eccc53a | 2008-10-26 22:36:07 +0000 | [diff] [blame] | 327 | /// InitExprs - This is the actual list of expressions contained in the |
| 328 | /// initializer. |
Sebastian Redl | a55e52c | 2008-11-25 22:21:31 +0000 | [diff] [blame] | 329 | ExprVector InitExprs(Actions); |
| 330 | |
Chris Lattner | 220ad7c | 2008-10-26 23:35:51 +0000 | [diff] [blame] | 331 | if (Tok.is(tok::r_brace)) { |
Douglas Gregor | 930d8b5 | 2009-01-30 22:09:00 +0000 | [diff] [blame] | 332 | // Empty initializers are a C++ feature and a GNU extension to C. |
| 333 | if (!getLang().CPlusPlus) |
| 334 | Diag(LBraceLoc, diag::ext_gnu_empty_initializer); |
Chris Lattner | 220ad7c | 2008-10-26 23:35:51 +0000 | [diff] [blame] | 335 | // Match the '}'. |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 336 | return Actions.ActOnInitList(LBraceLoc, MultiExprArg(Actions), |
Douglas Gregor | 5908a92 | 2009-03-20 23:11:49 +0000 | [diff] [blame] | 337 | ConsumeBrace()); |
Chris Lattner | 220ad7c | 2008-10-26 23:35:51 +0000 | [diff] [blame] | 338 | } |
Sebastian Redl | 20df9b7 | 2008-12-11 22:51:44 +0000 | [diff] [blame] | 339 | |
Steve Naroff | 4aa88f8 | 2007-07-19 01:06:55 +0000 | [diff] [blame] | 340 | bool InitExprsOk = true; |
Sebastian Redl | 20df9b7 | 2008-12-11 22:51:44 +0000 | [diff] [blame] | 341 | |
Steve Naroff | 4aa88f8 | 2007-07-19 01:06:55 +0000 | [diff] [blame] | 342 | while (1) { |
| 343 | // Parse: designation[opt] initializer |
Sebastian Redl | 20df9b7 | 2008-12-11 22:51:44 +0000 | [diff] [blame] | 344 | |
Steve Naroff | 4aa88f8 | 2007-07-19 01:06:55 +0000 | [diff] [blame] | 345 | // If we know that this cannot be a designation, just parse the nested |
| 346 | // initializer directly. |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 347 | ExprResult SubElt; |
Douglas Gregor | 5908a92 | 2009-03-20 23:11:49 +0000 | [diff] [blame] | 348 | if (MayBeDesignationStart(Tok.getKind(), PP)) |
| 349 | SubElt = ParseInitializerWithPotentialDesignator(); |
| 350 | else |
Steve Naroff | 4aa88f8 | 2007-07-19 01:06:55 +0000 | [diff] [blame] | 351 | SubElt = ParseInitializer(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 352 | |
Douglas Gregor | dcaa1ca | 2011-01-03 19:31:53 +0000 | [diff] [blame] | 353 | if (Tok.is(tok::ellipsis)) |
| 354 | SubElt = Actions.ActOnPackExpansion(SubElt.get(), ConsumeToken()); |
| 355 | |
Steve Naroff | 4aa88f8 | 2007-07-19 01:06:55 +0000 | [diff] [blame] | 356 | // If we couldn't parse the subelement, bail out. |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 357 | if (!SubElt.isInvalid()) { |
Sebastian Redl | effa8d1 | 2008-12-10 00:02:53 +0000 | [diff] [blame] | 358 | InitExprs.push_back(SubElt.release()); |
Chris Lattner | 65bb89c | 2008-04-20 19:07:56 +0000 | [diff] [blame] | 359 | } else { |
| 360 | InitExprsOk = false; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 361 | |
Chris Lattner | 65bb89c | 2008-04-20 19:07:56 +0000 | [diff] [blame] | 362 | // We have two ways to try to recover from this error: if the code looks |
Chris Lattner | fc8f0e1 | 2011-04-15 05:22:18 +0000 | [diff] [blame] | 363 | // grammatically ok (i.e. we have a comma coming up) try to continue |
Chris Lattner | 65bb89c | 2008-04-20 19:07:56 +0000 | [diff] [blame] | 364 | // parsing the rest of the initializer. This allows us to emit |
| 365 | // diagnostics for later elements that we find. If we don't see a comma, |
| 366 | // assume there is a parse error, and just skip to recover. |
Sebastian Redl | a55e52c | 2008-11-25 22:21:31 +0000 | [diff] [blame] | 367 | // FIXME: This comment doesn't sound right. If there is a r_brace |
| 368 | // immediately, it can't be an error, since there is no other way of |
| 369 | // leaving this loop except through this if. |
Chris Lattner | 65bb89c | 2008-04-20 19:07:56 +0000 | [diff] [blame] | 370 | if (Tok.isNot(tok::comma)) { |
| 371 | SkipUntil(tok::r_brace, false, true); |
| 372 | break; |
| 373 | } |
| 374 | } |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 375 | |
Steve Naroff | 4aa88f8 | 2007-07-19 01:06:55 +0000 | [diff] [blame] | 376 | // If we don't have a comma continued list, we're done. |
Chris Lattner | 04d6666 | 2007-10-09 17:33:22 +0000 | [diff] [blame] | 377 | if (Tok.isNot(tok::comma)) break; |
Sebastian Redl | 20df9b7 | 2008-12-11 22:51:44 +0000 | [diff] [blame] | 378 | |
Chris Lattner | eccc53a | 2008-10-26 22:36:07 +0000 | [diff] [blame] | 379 | // TODO: save comma locations if some client cares. |
Steve Naroff | 4aa88f8 | 2007-07-19 01:06:55 +0000 | [diff] [blame] | 380 | ConsumeToken(); |
Sebastian Redl | 20df9b7 | 2008-12-11 22:51:44 +0000 | [diff] [blame] | 381 | |
Steve Naroff | 4aa88f8 | 2007-07-19 01:06:55 +0000 | [diff] [blame] | 382 | // Handle trailing comma. |
Chris Lattner | 04d6666 | 2007-10-09 17:33:22 +0000 | [diff] [blame] | 383 | if (Tok.is(tok::r_brace)) break; |
Steve Naroff | 4aa88f8 | 2007-07-19 01:06:55 +0000 | [diff] [blame] | 384 | } |
Sebastian Redl | 20df9b7 | 2008-12-11 22:51:44 +0000 | [diff] [blame] | 385 | |
Douglas Gregor | 4a8dfb5 | 2011-10-12 16:37:45 +0000 | [diff] [blame^] | 386 | bool closed = !T.consumeClose(); |
| 387 | |
| 388 | if (InitExprsOk && closed) |
| 389 | return Actions.ActOnInitList(LBraceLoc, move_arg(InitExprs), |
| 390 | T.getCloseLocation()); |
| 391 | |
Sebastian Redl | 20df9b7 | 2008-12-11 22:51:44 +0000 | [diff] [blame] | 392 | return ExprError(); // an error occurred. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 393 | } |
| 394 | |