blob: ad7bcb2dd5455b0bfe72747137dc2ab4a2fae3b6 [file] [log] [blame]
Reid Spencer5f016e22007-07-11 17:01:13 +00001//===--- ParseInit.cpp - Initializer Parsing ------------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner0bc735f2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Reid Spencer5f016e22007-07-11 17:01:13 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements initializer parsing as specified by C99 6.7.8.
11//
12//===----------------------------------------------------------------------===//
13
14#include "clang/Parse/Parser.h"
Chris Lattner500d3292009-01-29 05:15:15 +000015#include "clang/Parse/ParseDiagnostic.h"
Douglas Gregor0fbda682010-09-15 14:51:05 +000016#include "RAIIObjectsForParser.h"
John McCall19510852010-08-20 18:27:03 +000017#include "clang/Sema/Designator.h"
18#include "clang/Sema/Scope.h"
Steve Naroff4aa88f82007-07-19 01:06:55 +000019#include "llvm/ADT/SmallString.h"
Daniel Dunbar62a72172009-10-17 23:52:50 +000020#include "llvm/Support/raw_ostream.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000021using namespace clang;
22
23
24/// MayBeDesignationStart - Return true if this token might be the start of a
Chris Lattner838cb212008-10-26 21:46:13 +000025/// designator. If we can tell it is impossible that it is a designator, return
Mike Stump1eb44332009-09-09 15:08:12 +000026/// false.
Chris Lattnerefcadc62008-10-26 22:41:58 +000027static bool MayBeDesignationStart(tok::TokenKind K, Preprocessor &PP) {
Reid Spencer5f016e22007-07-11 17:01:13 +000028 switch (K) {
29 default: return false;
30 case tok::period: // designator: '.' identifier
31 case tok::l_square: // designator: array-designator
Chris Lattnerefcadc62008-10-26 22:41:58 +000032 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +000033 case tok::identifier: // designation: identifier ':'
Chris Lattnerefcadc62008-10-26 22:41:58 +000034 return PP.LookAhead(0).is(tok::colon);
Reid Spencer5f016e22007-07-11 17:01:13 +000035 }
36}
37
Douglas Gregor6aa14d82010-04-21 22:36:40 +000038static 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 Spencer5f016e22007-07-11 17:01:13 +000051/// 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 Lattner838cb212008-10-26 21:46:13 +000072/// initializer (because it is an expression). We need to consider this case
73/// when parsing array designators.
Reid Spencer5f016e22007-07-11 17:01:13 +000074///
John McCall60d7b3a2010-08-24 06:29:42 +000075ExprResult Parser::ParseInitializerWithPotentialDesignator() {
Sebastian Redl20df9b72008-12-11 22:51:44 +000076
Chris Lattnereccc53a2008-10-26 22:36:07 +000077 // 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 Gregor05c13a32009-01-22 00:58:24 +000082 const IdentifierInfo *FieldName = Tok.getIdentifierInfo();
Douglas Gregoreeae8f02009-03-28 00:41:23 +000083
Daniel Dunbar62a72172009-10-17 23:52:50 +000084 llvm::SmallString<256> NewSyntax;
Daniel Dunbar01eb9b92009-10-18 21:17:35 +000085 llvm::raw_svector_ostream(NewSyntax) << '.' << FieldName->getName()
Daniel Dunbar62a72172009-10-17 23:52:50 +000086 << " = ";
Douglas Gregoreeae8f02009-03-28 00:41:23 +000087
Douglas Gregor05c13a32009-01-22 00:58:24 +000088 SourceLocation NameLoc = ConsumeToken(); // Eat the identifier.
Mike Stump1eb44332009-09-09 15:08:12 +000089
Chris Lattner7f9690d2008-10-26 22:49:49 +000090 assert(Tok.is(tok::colon) && "MayBeDesignationStart not working properly!");
Douglas Gregor05c13a32009-01-22 00:58:24 +000091 SourceLocation ColonLoc = ConsumeToken();
92
Douglas Gregor40a0f9c2011-08-27 00:13:16 +000093 Diag(NameLoc, diag::ext_gnu_old_style_field_designator)
Douglas Gregor849b2432010-03-31 17:46:05 +000094 << FixItHint::CreateReplacement(SourceRange(NameLoc, ColonLoc),
95 NewSyntax.str());
Douglas Gregoreeae8f02009-03-28 00:41:23 +000096
Douglas Gregor5908a922009-03-20 23:11:49 +000097 Designation D;
Douglas Gregor05c13a32009-01-22 00:58:24 +000098 D.AddDesignator(Designator::getField(FieldName, SourceLocation(), NameLoc));
Mike Stump1eb44332009-09-09 15:08:12 +000099 return Actions.ActOnDesignatedInitializer(D, ColonLoc, true,
Douglas Gregor05c13a32009-01-22 00:58:24 +0000100 ParseInitializer());
Chris Lattnereccc53a2008-10-26 22:36:07 +0000101 }
Mike Stump1eb44332009-09-09 15:08:12 +0000102
Chris Lattner0a68b942008-10-26 22:59:19 +0000103 // 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 Gregor5908a922009-03-20 23:11:49 +0000106 Designation Desig;
Mike Stump1eb44332009-09-09 15:08:12 +0000107
Reid Spencer5f016e22007-07-11 17:01:13 +0000108 // Parse each designator in the designator list until we find an initializer.
Chris Lattner7f9690d2008-10-26 22:49:49 +0000109 while (Tok.is(tok::period) || Tok.is(tok::l_square)) {
110 if (Tok.is(tok::period)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000111 // designator: '.' identifier
Douglas Gregor05c13a32009-01-22 00:58:24 +0000112 SourceLocation DotLoc = ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +0000113
Chris Lattner0a68b942008-10-26 22:59:19 +0000114 if (Tok.isNot(tok::identifier)) {
115 Diag(Tok.getLocation(), diag::err_expected_field_designator);
Sebastian Redl20df9b72008-12-11 22:51:44 +0000116 return ExprError();
Chris Lattner0a68b942008-10-26 22:59:19 +0000117 }
Mike Stump1eb44332009-09-09 15:08:12 +0000118
Douglas Gregor5908a922009-03-20 23:11:49 +0000119 Desig.AddDesignator(Designator::getField(Tok.getIdentifierInfo(), DotLoc,
120 Tok.getLocation()));
Chris Lattner0a68b942008-10-26 22:59:19 +0000121 ConsumeToken(); // Eat the identifier.
Chris Lattner7f9690d2008-10-26 22:49:49 +0000122 continue;
123 }
Mike Stump1eb44332009-09-09 15:08:12 +0000124
Chris Lattner7f9690d2008-10-26 22:49:49 +0000125 // We must have either an array designator now or an objc message send.
126 assert(Tok.is(tok::l_square) && "Unexpected token!");
Mike Stump1eb44332009-09-09 15:08:12 +0000127
Chris Lattnere2329422008-10-26 23:06:54 +0000128 // 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 Gregor0fbda682010-09-15 14:51:05 +0000140 InMessageExpressionRAIIObject InMessage(*this, true);
141
Chris Lattner7f9690d2008-10-26 22:49:49 +0000142 SourceLocation StartLoc = ConsumeBracket();
John McCall60d7b3a2010-08-24 06:29:42 +0000143 ExprResult Idx;
Mike Stump1eb44332009-09-09 15:08:12 +0000144
Douglas Gregor6aa14d82010-04-21 22:36:40 +0000145 // If Objective-C is enabled and this is a typename (class message
146 // send) or send to 'super', parse this as a message send
147 // expression. We handle C++ and C separately, since C++ requires
148 // much more complicated parsing.
149 if (getLang().ObjC1 && getLang().CPlusPlus) {
150 // Send to 'super'.
151 if (Tok.is(tok::identifier) && Tok.getIdentifierInfo() == Ident_super &&
Douglas Gregor0fbda682010-09-15 14:51:05 +0000152 NextToken().isNot(tok::period) &&
153 getCurScope()->isInObjcMethodScope()) {
Douglas Gregor6aa14d82010-04-21 22:36:40 +0000154 CheckArrayDesignatorSyntax(*this, StartLoc, Desig);
155 return ParseAssignmentExprWithObjCMessageExprStart(StartLoc,
John McCallb3d87482010-08-24 05:47:05 +0000156 ConsumeToken(),
157 ParsedType(),
John McCall9ae2f072010-08-23 23:25:46 +0000158 0);
Douglas Gregor6aa14d82010-04-21 22:36:40 +0000159 }
160
161 // Parse the receiver, which is either a type or an expression.
162 bool IsExpr;
163 void *TypeOrExpr;
164 if (ParseObjCXXMessageReceiver(IsExpr, TypeOrExpr)) {
165 SkipUntil(tok::r_square);
166 return ExprError();
167 }
168
169 // If the receiver was a type, we have a class message; parse
170 // the rest of it.
171 if (!IsExpr) {
172 CheckArrayDesignatorSyntax(*this, StartLoc, Desig);
173 return ParseAssignmentExprWithObjCMessageExprStart(StartLoc,
174 SourceLocation(),
John McCallb3d87482010-08-24 05:47:05 +0000175 ParsedType::getFromOpaquePtr(TypeOrExpr),
John McCall9ae2f072010-08-23 23:25:46 +0000176 0);
Douglas Gregor6aa14d82010-04-21 22:36:40 +0000177 }
178
179 // If the receiver was an expression, we still don't know
180 // whether we have a message send or an array designator; just
181 // adopt the expression for further analysis below.
182 // FIXME: potentially-potentially evaluated expression above?
John McCall60d7b3a2010-08-24 06:29:42 +0000183 Idx = ExprResult(static_cast<Expr*>(TypeOrExpr));
Douglas Gregor6aa14d82010-04-21 22:36:40 +0000184 } else if (getLang().ObjC1 && Tok.is(tok::identifier)) {
Chris Lattnereb483eb2010-04-11 08:28:14 +0000185 IdentifierInfo *II = Tok.getIdentifierInfo();
Douglas Gregor2725ca82010-04-21 19:57:20 +0000186 SourceLocation IILoc = Tok.getLocation();
John McCallb3d87482010-08-24 05:47:05 +0000187 ParsedType ReceiverType;
Chris Lattner1e461362010-04-12 06:36:00 +0000188 // Three cases. This is a message send to a type: [type foo]
189 // This is a message send to super: [super foo]
190 // This is a message sent to an expr: [super.bar foo]
John McCallf312b1e2010-08-26 23:41:50 +0000191 switch (Sema::ObjCMessageKind Kind
Douglas Gregor23c94db2010-07-02 17:43:08 +0000192 = Actions.getObjCMessageKind(getCurScope(), II, IILoc,
Douglas Gregor2725ca82010-04-21 19:57:20 +0000193 II == Ident_super,
Douglas Gregor1569f952010-04-21 20:38:13 +0000194 NextToken().is(tok::period),
195 ReceiverType)) {
John McCallf312b1e2010-08-26 23:41:50 +0000196 case Sema::ObjCSuperMessage:
197 case Sema::ObjCClassMessage:
Douglas Gregor6aa14d82010-04-21 22:36:40 +0000198 CheckArrayDesignatorSyntax(*this, StartLoc, Desig);
John McCallf312b1e2010-08-26 23:41:50 +0000199 if (Kind == Sema::ObjCSuperMessage)
Douglas Gregor2725ca82010-04-21 19:57:20 +0000200 return ParseAssignmentExprWithObjCMessageExprStart(StartLoc,
201 ConsumeToken(),
John McCallb3d87482010-08-24 05:47:05 +0000202 ParsedType(),
John McCall9ae2f072010-08-23 23:25:46 +0000203 0);
Douglas Gregor1569f952010-04-21 20:38:13 +0000204 ConsumeToken(); // the identifier
205 if (!ReceiverType) {
Douglas Gregor2725ca82010-04-21 19:57:20 +0000206 SkipUntil(tok::r_square);
207 return ExprError();
208 }
209
210 return ParseAssignmentExprWithObjCMessageExprStart(StartLoc,
211 SourceLocation(),
Douglas Gregor1569f952010-04-21 20:38:13 +0000212 ReceiverType,
John McCall9ae2f072010-08-23 23:25:46 +0000213 0);
Douglas Gregor2725ca82010-04-21 19:57:20 +0000214
John McCallf312b1e2010-08-26 23:41:50 +0000215 case Sema::ObjCInstanceMessage:
Douglas Gregor2725ca82010-04-21 19:57:20 +0000216 // Fall through; we'll just parse the expression and
217 // (possibly) treat this like an Objective-C message send
218 // later.
219 break;
Chris Lattnereb483eb2010-04-11 08:28:14 +0000220 }
Chris Lattner7f9690d2008-10-26 22:49:49 +0000221 }
Sebastian Redl1d922962008-12-13 15:32:12 +0000222
Douglas Gregor6aa14d82010-04-21 22:36:40 +0000223 // Parse the index expression, if we haven't already gotten one
224 // above (which can only happen in Objective-C++).
Chris Lattner7f9690d2008-10-26 22:49:49 +0000225 // Note that we parse this as an assignment expression, not a constant
226 // expression (allowing *=, =, etc) to handle the objc case. Sema needs
227 // to validate that the expression is a constant.
Douglas Gregor6aa14d82010-04-21 22:36:40 +0000228 // FIXME: We also need to tell Sema that we're in a
229 // potentially-potentially evaluated context.
230 if (!Idx.get()) {
231 Idx = ParseAssignmentExpression();
232 if (Idx.isInvalid()) {
233 SkipUntil(tok::r_square);
234 return move(Idx);
235 }
Chris Lattner7f9690d2008-10-26 22:49:49 +0000236 }
Mike Stump1eb44332009-09-09 15:08:12 +0000237
Chris Lattner7f9690d2008-10-26 22:49:49 +0000238 // Given an expression, we could either have a designator (if the next
239 // tokens are '...' or ']' or an objc message send. If this is an objc
Mike Stump1eb44332009-09-09 15:08:12 +0000240 // message send, handle it now. An objc-message send is the start of
Chris Lattner7f9690d2008-10-26 22:49:49 +0000241 // an assignment-expression production.
Mike Stump1eb44332009-09-09 15:08:12 +0000242 if (getLang().ObjC1 && Tok.isNot(tok::ellipsis) &&
Chris Lattner7f9690d2008-10-26 22:49:49 +0000243 Tok.isNot(tok::r_square)) {
Douglas Gregor6aa14d82010-04-21 22:36:40 +0000244 CheckArrayDesignatorSyntax(*this, Tok.getLocation(), Desig);
Sebastian Redl1d922962008-12-13 15:32:12 +0000245 return ParseAssignmentExprWithObjCMessageExprStart(StartLoc,
246 SourceLocation(),
John McCallb3d87482010-08-24 05:47:05 +0000247 ParsedType(),
248 Idx.take());
Chris Lattner7f9690d2008-10-26 22:49:49 +0000249 }
Chris Lattnere2329422008-10-26 23:06:54 +0000250
Chris Lattnere2329422008-10-26 23:06:54 +0000251 // If this is a normal array designator, remember it.
252 if (Tok.isNot(tok::ellipsis)) {
Douglas Gregor5908a922009-03-20 23:11:49 +0000253 Desig.AddDesignator(Designator::getArray(Idx.release(), StartLoc));
Chris Lattnere2329422008-10-26 23:06:54 +0000254 } else {
255 // Handle the gnu array range extension.
Chris Lattner7f9690d2008-10-26 22:49:49 +0000256 Diag(Tok, diag::ext_gnu_array_range);
Douglas Gregor05c13a32009-01-22 00:58:24 +0000257 SourceLocation EllipsisLoc = ConsumeToken();
Sebastian Redl2f7ece72008-12-11 21:36:32 +0000258
John McCall60d7b3a2010-08-24 06:29:42 +0000259 ExprResult RHS(ParseConstantExpression());
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000260 if (RHS.isInvalid()) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000261 SkipUntil(tok::r_square);
Sebastian Redl20df9b72008-12-11 22:51:44 +0000262 return move(RHS);
Reid Spencer5f016e22007-07-11 17:01:13 +0000263 }
Douglas Gregor5908a922009-03-20 23:11:49 +0000264 Desig.AddDesignator(Designator::getArrayRange(Idx.release(),
265 RHS.release(),
266 StartLoc, EllipsisLoc));
Reid Spencer5f016e22007-07-11 17:01:13 +0000267 }
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000268
Douglas Gregor05c13a32009-01-22 00:58:24 +0000269 SourceLocation EndLoc = MatchRHSPunctuation(tok::r_square, StartLoc);
Douglas Gregor5908a922009-03-20 23:11:49 +0000270 Desig.getDesignator(Desig.getNumDesignators() - 1).setRBracketLoc(EndLoc);
Reid Spencer5f016e22007-07-11 17:01:13 +0000271 }
Chris Lattner7f9690d2008-10-26 22:49:49 +0000272
Chris Lattner0a68b942008-10-26 22:59:19 +0000273 // Okay, we're done with the designator sequence. We know that there must be
274 // at least one designator, because the only case we can get into this method
275 // without a designator is when we have an objc message send. That case is
276 // handled and returned from above.
Douglas Gregor5908a922009-03-20 23:11:49 +0000277 assert(!Desig.empty() && "Designator is empty?");
Sebastian Redl20df9b72008-12-11 22:51:44 +0000278
Chris Lattner0a68b942008-10-26 22:59:19 +0000279 // Handle a normal designator sequence end, which is an equal.
Chris Lattner7f9690d2008-10-26 22:49:49 +0000280 if (Tok.is(tok::equal)) {
Douglas Gregor05c13a32009-01-22 00:58:24 +0000281 SourceLocation EqualLoc = ConsumeToken();
Douglas Gregor5908a922009-03-20 23:11:49 +0000282 return Actions.ActOnDesignatedInitializer(Desig, EqualLoc, false,
Douglas Gregor05c13a32009-01-22 00:58:24 +0000283 ParseInitializer());
Chris Lattner7f9690d2008-10-26 22:49:49 +0000284 }
Sebastian Redl20df9b72008-12-11 22:51:44 +0000285
Chris Lattner0a68b942008-10-26 22:59:19 +0000286 // We read some number of designators and found something that isn't an = or
Chris Lattner79ed6b52008-10-26 23:22:23 +0000287 // an initializer. If we have exactly one array designator, this
Chris Lattner0a68b942008-10-26 22:59:19 +0000288 // is the GNU 'designation: array-designator' extension. Otherwise, it is a
289 // parse error.
Mike Stump1eb44332009-09-09 15:08:12 +0000290 if (Desig.getNumDesignators() == 1 &&
Douglas Gregor5908a922009-03-20 23:11:49 +0000291 (Desig.getDesignator(0).isArrayDesignator() ||
292 Desig.getDesignator(0).isArrayRangeDesignator())) {
Douglas Gregoreeae8f02009-03-28 00:41:23 +0000293 Diag(Tok, diag::ext_gnu_missing_equal_designator)
Douglas Gregor849b2432010-03-31 17:46:05 +0000294 << FixItHint::CreateInsertion(Tok.getLocation(), "= ");
Douglas Gregoreeae8f02009-03-28 00:41:23 +0000295 return Actions.ActOnDesignatedInitializer(Desig, Tok.getLocation(),
Douglas Gregor68c56de2009-03-27 23:40:29 +0000296 true, ParseInitializer());
Chris Lattner79ed6b52008-10-26 23:22:23 +0000297 }
Sebastian Redl20df9b72008-12-11 22:51:44 +0000298
Chris Lattner79ed6b52008-10-26 23:22:23 +0000299 Diag(Tok, diag::err_expected_equal_designator);
Sebastian Redl20df9b72008-12-11 22:51:44 +0000300 return ExprError();
Reid Spencer5f016e22007-07-11 17:01:13 +0000301}
302
303
Chris Lattner0eec2b52008-10-26 22:38:55 +0000304/// ParseBraceInitializer - Called when parsing an initializer that has a
305/// leading open brace.
306///
Reid Spencer5f016e22007-07-11 17:01:13 +0000307/// initializer: [C99 6.7.8]
Reid Spencer5f016e22007-07-11 17:01:13 +0000308/// '{' initializer-list '}'
309/// '{' initializer-list ',' '}'
310/// [GNU] '{' '}'
311///
312/// initializer-list:
Douglas Gregordcaa1ca2011-01-03 19:31:53 +0000313/// designation[opt] initializer ...[opt]
314/// initializer-list ',' designation[opt] initializer ...[opt]
Reid Spencer5f016e22007-07-11 17:01:13 +0000315///
John McCall60d7b3a2010-08-24 06:29:42 +0000316ExprResult Parser::ParseBraceInitializer() {
Douglas Gregor0fbda682010-09-15 14:51:05 +0000317 InMessageExpressionRAIIObject InMessage(*this, false);
318
Reid Spencer5f016e22007-07-11 17:01:13 +0000319 SourceLocation LBraceLoc = ConsumeBrace();
Sebastian Redla55e52c2008-11-25 22:21:31 +0000320
Chris Lattnereccc53a2008-10-26 22:36:07 +0000321 /// InitExprs - This is the actual list of expressions contained in the
322 /// initializer.
Sebastian Redla55e52c2008-11-25 22:21:31 +0000323 ExprVector InitExprs(Actions);
324
Chris Lattner220ad7c2008-10-26 23:35:51 +0000325 if (Tok.is(tok::r_brace)) {
Douglas Gregor930d8b52009-01-30 22:09:00 +0000326 // Empty initializers are a C++ feature and a GNU extension to C.
327 if (!getLang().CPlusPlus)
328 Diag(LBraceLoc, diag::ext_gnu_empty_initializer);
Chris Lattner220ad7c2008-10-26 23:35:51 +0000329 // Match the '}'.
John McCallf312b1e2010-08-26 23:41:50 +0000330 return Actions.ActOnInitList(LBraceLoc, MultiExprArg(Actions),
Douglas Gregor5908a922009-03-20 23:11:49 +0000331 ConsumeBrace());
Chris Lattner220ad7c2008-10-26 23:35:51 +0000332 }
Sebastian Redl20df9b72008-12-11 22:51:44 +0000333
Steve Naroff4aa88f82007-07-19 01:06:55 +0000334 bool InitExprsOk = true;
Sebastian Redl20df9b72008-12-11 22:51:44 +0000335
Steve Naroff4aa88f82007-07-19 01:06:55 +0000336 while (1) {
337 // Parse: designation[opt] initializer
Sebastian Redl20df9b72008-12-11 22:51:44 +0000338
Steve Naroff4aa88f82007-07-19 01:06:55 +0000339 // If we know that this cannot be a designation, just parse the nested
340 // initializer directly.
John McCall60d7b3a2010-08-24 06:29:42 +0000341 ExprResult SubElt;
Douglas Gregor5908a922009-03-20 23:11:49 +0000342 if (MayBeDesignationStart(Tok.getKind(), PP))
343 SubElt = ParseInitializerWithPotentialDesignator();
344 else
Steve Naroff4aa88f82007-07-19 01:06:55 +0000345 SubElt = ParseInitializer();
Mike Stump1eb44332009-09-09 15:08:12 +0000346
Douglas Gregordcaa1ca2011-01-03 19:31:53 +0000347 if (Tok.is(tok::ellipsis))
348 SubElt = Actions.ActOnPackExpansion(SubElt.get(), ConsumeToken());
349
Steve Naroff4aa88f82007-07-19 01:06:55 +0000350 // If we couldn't parse the subelement, bail out.
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000351 if (!SubElt.isInvalid()) {
Sebastian Redleffa8d12008-12-10 00:02:53 +0000352 InitExprs.push_back(SubElt.release());
Chris Lattner65bb89c2008-04-20 19:07:56 +0000353 } else {
354 InitExprsOk = false;
Mike Stump1eb44332009-09-09 15:08:12 +0000355
Chris Lattner65bb89c2008-04-20 19:07:56 +0000356 // We have two ways to try to recover from this error: if the code looks
Chris Lattnerfc8f0e12011-04-15 05:22:18 +0000357 // grammatically ok (i.e. we have a comma coming up) try to continue
Chris Lattner65bb89c2008-04-20 19:07:56 +0000358 // parsing the rest of the initializer. This allows us to emit
359 // diagnostics for later elements that we find. If we don't see a comma,
360 // assume there is a parse error, and just skip to recover.
Sebastian Redla55e52c2008-11-25 22:21:31 +0000361 // FIXME: This comment doesn't sound right. If there is a r_brace
362 // immediately, it can't be an error, since there is no other way of
363 // leaving this loop except through this if.
Chris Lattner65bb89c2008-04-20 19:07:56 +0000364 if (Tok.isNot(tok::comma)) {
365 SkipUntil(tok::r_brace, false, true);
366 break;
367 }
368 }
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000369
Steve Naroff4aa88f82007-07-19 01:06:55 +0000370 // If we don't have a comma continued list, we're done.
Chris Lattner04d66662007-10-09 17:33:22 +0000371 if (Tok.isNot(tok::comma)) break;
Sebastian Redl20df9b72008-12-11 22:51:44 +0000372
Chris Lattnereccc53a2008-10-26 22:36:07 +0000373 // TODO: save comma locations if some client cares.
Steve Naroff4aa88f82007-07-19 01:06:55 +0000374 ConsumeToken();
Sebastian Redl20df9b72008-12-11 22:51:44 +0000375
Steve Naroff4aa88f82007-07-19 01:06:55 +0000376 // Handle trailing comma.
Chris Lattner04d66662007-10-09 17:33:22 +0000377 if (Tok.is(tok::r_brace)) break;
Steve Naroff4aa88f82007-07-19 01:06:55 +0000378 }
Chris Lattner04d66662007-10-09 17:33:22 +0000379 if (InitExprsOk && Tok.is(tok::r_brace))
Sebastian Redlb8a6aca2009-01-19 22:31:54 +0000380 return Actions.ActOnInitList(LBraceLoc, move_arg(InitExprs),
Douglas Gregor5908a922009-03-20 23:11:49 +0000381 ConsumeBrace());
Sebastian Redl20df9b72008-12-11 22:51:44 +0000382
Reid Spencer5f016e22007-07-11 17:01:13 +0000383 // Match the '}'.
384 MatchRHSPunctuation(tok::r_brace, LBraceLoc);
Sebastian Redl20df9b72008-12-11 22:51:44 +0000385 return ExprError(); // an error occurred.
Reid Spencer5f016e22007-07-11 17:01:13 +0000386}
387