blob: c4e79cae3f54dcf06c69a6e130f2f9db53d3cf78 [file] [log] [blame]
Shih-wei Liaof8fd82b2010-02-10 11:10:31 -08001//===--- ParseInit.cpp - Initializer Parsing ------------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements initializer parsing as specified by C99 6.7.8.
11//
12//===----------------------------------------------------------------------===//
13
14#include "clang/Parse/Designator.h"
15#include "clang/Parse/Parser.h"
16#include "clang/Parse/ParseDiagnostic.h"
17#include "llvm/ADT/SmallString.h"
18#include "llvm/Support/raw_ostream.h"
19using namespace clang;
20
21
22/// MayBeDesignationStart - Return true if this token might be the start of a
23/// designator. If we can tell it is impossible that it is a designator, return
24/// false.
25static bool MayBeDesignationStart(tok::TokenKind K, Preprocessor &PP) {
26 switch (K) {
27 default: return false;
28 case tok::period: // designator: '.' identifier
29 case tok::l_square: // designator: array-designator
30 return true;
31 case tok::identifier: // designation: identifier ':'
32 return PP.LookAhead(0).is(tok::colon);
33 }
34}
35
36/// ParseInitializerWithPotentialDesignator - Parse the 'initializer' production
37/// checking to see if the token stream starts with a designator.
38///
39/// designation:
40/// designator-list '='
41/// [GNU] array-designator
42/// [GNU] identifier ':'
43///
44/// designator-list:
45/// designator
46/// designator-list designator
47///
48/// designator:
49/// array-designator
50/// '.' identifier
51///
52/// array-designator:
53/// '[' constant-expression ']'
54/// [GNU] '[' constant-expression '...' constant-expression ']'
55///
56/// NOTE: [OBC] allows '[ objc-receiver objc-message-args ]' as an
57/// initializer (because it is an expression). We need to consider this case
58/// when parsing array designators.
59///
60Parser::OwningExprResult Parser::ParseInitializerWithPotentialDesignator() {
61
62 // If this is the old-style GNU extension:
63 // designation ::= identifier ':'
64 // Handle it as a field designator. Otherwise, this must be the start of a
65 // normal expression.
66 if (Tok.is(tok::identifier)) {
67 const IdentifierInfo *FieldName = Tok.getIdentifierInfo();
68
69 llvm::SmallString<256> NewSyntax;
70 llvm::raw_svector_ostream(NewSyntax) << '.' << FieldName->getName()
71 << " = ";
72
73 SourceLocation NameLoc = ConsumeToken(); // Eat the identifier.
74
75 assert(Tok.is(tok::colon) && "MayBeDesignationStart not working properly!");
76 SourceLocation ColonLoc = ConsumeToken();
77
78 Diag(Tok, diag::ext_gnu_old_style_field_designator)
79 << CodeModificationHint::CreateReplacement(SourceRange(NameLoc,
80 ColonLoc),
81 NewSyntax.str());
82
83 Designation D;
84 D.AddDesignator(Designator::getField(FieldName, SourceLocation(), NameLoc));
85 return Actions.ActOnDesignatedInitializer(D, ColonLoc, true,
86 ParseInitializer());
87 }
88
89 // Desig - This is initialized when we see our first designator. We may have
90 // an objc message send with no designator, so we don't want to create this
91 // eagerly.
92 Designation Desig;
93
94 // Parse each designator in the designator list until we find an initializer.
95 while (Tok.is(tok::period) || Tok.is(tok::l_square)) {
96 if (Tok.is(tok::period)) {
97 // designator: '.' identifier
98 SourceLocation DotLoc = ConsumeToken();
99
100 if (Tok.isNot(tok::identifier)) {
101 Diag(Tok.getLocation(), diag::err_expected_field_designator);
102 return ExprError();
103 }
104
105 Desig.AddDesignator(Designator::getField(Tok.getIdentifierInfo(), DotLoc,
106 Tok.getLocation()));
107 ConsumeToken(); // Eat the identifier.
108 continue;
109 }
110
111 // We must have either an array designator now or an objc message send.
112 assert(Tok.is(tok::l_square) && "Unexpected token!");
113
114 // Handle the two forms of array designator:
115 // array-designator: '[' constant-expression ']'
116 // array-designator: '[' constant-expression '...' constant-expression ']'
117 //
118 // Also, we have to handle the case where the expression after the
119 // designator an an objc message send: '[' objc-message-expr ']'.
120 // Interesting cases are:
121 // [foo bar] -> objc message send
122 // [foo] -> array designator
123 // [foo ... bar] -> array designator
124 // [4][foo bar] -> obsolete GNU designation with objc message send.
125 //
126 SourceLocation StartLoc = ConsumeBracket();
127
128 // If Objective-C is enabled and this is a typename or other identifier
129 // receiver, parse this as a message send expression.
130 if (getLang().ObjC1 && isTokObjCMessageIdentifierReceiver()) {
131 // If we have exactly one array designator, this used the GNU
132 // 'designation: array-designator' extension, otherwise there should be no
133 // designators at all!
134 if (Desig.getNumDesignators() == 1 &&
135 (Desig.getDesignator(0).isArrayDesignator() ||
136 Desig.getDesignator(0).isArrayRangeDesignator()))
137 Diag(StartLoc, diag::ext_gnu_missing_equal_designator);
138 else if (Desig.getNumDesignators() > 0)
139 Diag(Tok, diag::err_expected_equal_designator);
140
141 IdentifierInfo *Name = Tok.getIdentifierInfo();
142 SourceLocation NameLoc = ConsumeToken();
143 return ParseAssignmentExprWithObjCMessageExprStart(
144 StartLoc, NameLoc, Name, ExprArg(Actions));
145 }
146
147 // Note that we parse this as an assignment expression, not a constant
148 // expression (allowing *=, =, etc) to handle the objc case. Sema needs
149 // to validate that the expression is a constant.
150 OwningExprResult Idx(ParseAssignmentExpression());
151 if (Idx.isInvalid()) {
152 SkipUntil(tok::r_square);
153 return move(Idx);
154 }
155
156 // Given an expression, we could either have a designator (if the next
157 // tokens are '...' or ']' or an objc message send. If this is an objc
158 // message send, handle it now. An objc-message send is the start of
159 // an assignment-expression production.
160 if (getLang().ObjC1 && Tok.isNot(tok::ellipsis) &&
161 Tok.isNot(tok::r_square)) {
162
163 // If we have exactly one array designator, this used the GNU
164 // 'designation: array-designator' extension, otherwise there should be no
165 // designators at all!
166 if (Desig.getNumDesignators() == 1 &&
167 (Desig.getDesignator(0).isArrayDesignator() ||
168 Desig.getDesignator(0).isArrayRangeDesignator()))
169 Diag(StartLoc, diag::ext_gnu_missing_equal_designator);
170 else if (Desig.getNumDesignators() > 0)
171 Diag(Tok, diag::err_expected_equal_designator);
172
173 return ParseAssignmentExprWithObjCMessageExprStart(StartLoc,
174 SourceLocation(),
175 0, move(Idx));
176 }
177
178 // If this is a normal array designator, remember it.
179 if (Tok.isNot(tok::ellipsis)) {
180 Desig.AddDesignator(Designator::getArray(Idx.release(), StartLoc));
181 } else {
182 // Handle the gnu array range extension.
183 Diag(Tok, diag::ext_gnu_array_range);
184 SourceLocation EllipsisLoc = ConsumeToken();
185
186 OwningExprResult RHS(ParseConstantExpression());
187 if (RHS.isInvalid()) {
188 SkipUntil(tok::r_square);
189 return move(RHS);
190 }
191 Desig.AddDesignator(Designator::getArrayRange(Idx.release(),
192 RHS.release(),
193 StartLoc, EllipsisLoc));
194 }
195
196 SourceLocation EndLoc = MatchRHSPunctuation(tok::r_square, StartLoc);
197 Desig.getDesignator(Desig.getNumDesignators() - 1).setRBracketLoc(EndLoc);
198 }
199
200 // Okay, we're done with the designator sequence. We know that there must be
201 // at least one designator, because the only case we can get into this method
202 // without a designator is when we have an objc message send. That case is
203 // handled and returned from above.
204 assert(!Desig.empty() && "Designator is empty?");
205
206 // Handle a normal designator sequence end, which is an equal.
207 if (Tok.is(tok::equal)) {
208 SourceLocation EqualLoc = ConsumeToken();
209 return Actions.ActOnDesignatedInitializer(Desig, EqualLoc, false,
210 ParseInitializer());
211 }
212
213 // We read some number of designators and found something that isn't an = or
214 // an initializer. If we have exactly one array designator, this
215 // is the GNU 'designation: array-designator' extension. Otherwise, it is a
216 // parse error.
217 if (Desig.getNumDesignators() == 1 &&
218 (Desig.getDesignator(0).isArrayDesignator() ||
219 Desig.getDesignator(0).isArrayRangeDesignator())) {
220 Diag(Tok, diag::ext_gnu_missing_equal_designator)
221 << CodeModificationHint::CreateInsertion(Tok.getLocation(), "= ");
222 return Actions.ActOnDesignatedInitializer(Desig, Tok.getLocation(),
223 true, ParseInitializer());
224 }
225
226 Diag(Tok, diag::err_expected_equal_designator);
227 return ExprError();
228}
229
230
231/// ParseBraceInitializer - Called when parsing an initializer that has a
232/// leading open brace.
233///
234/// initializer: [C99 6.7.8]
235/// '{' initializer-list '}'
236/// '{' initializer-list ',' '}'
237/// [GNU] '{' '}'
238///
239/// initializer-list:
240/// designation[opt] initializer
241/// initializer-list ',' designation[opt] initializer
242///
243Parser::OwningExprResult Parser::ParseBraceInitializer() {
244 SourceLocation LBraceLoc = ConsumeBrace();
245
246 /// InitExprs - This is the actual list of expressions contained in the
247 /// initializer.
248 ExprVector InitExprs(Actions);
249
250 if (Tok.is(tok::r_brace)) {
251 // Empty initializers are a C++ feature and a GNU extension to C.
252 if (!getLang().CPlusPlus)
253 Diag(LBraceLoc, diag::ext_gnu_empty_initializer);
254 // Match the '}'.
255 return Actions.ActOnInitList(LBraceLoc, Action::MultiExprArg(Actions),
256 ConsumeBrace());
257 }
258
259 bool InitExprsOk = true;
260
261 while (1) {
262 // Parse: designation[opt] initializer
263
264 // If we know that this cannot be a designation, just parse the nested
265 // initializer directly.
266 OwningExprResult SubElt(Actions);
267 if (MayBeDesignationStart(Tok.getKind(), PP))
268 SubElt = ParseInitializerWithPotentialDesignator();
269 else
270 SubElt = ParseInitializer();
271
272 // If we couldn't parse the subelement, bail out.
273 if (!SubElt.isInvalid()) {
274 InitExprs.push_back(SubElt.release());
275 } else {
276 InitExprsOk = false;
277
278 // We have two ways to try to recover from this error: if the code looks
279 // gramatically ok (i.e. we have a comma coming up) try to continue
280 // parsing the rest of the initializer. This allows us to emit
281 // diagnostics for later elements that we find. If we don't see a comma,
282 // assume there is a parse error, and just skip to recover.
283 // FIXME: This comment doesn't sound right. If there is a r_brace
284 // immediately, it can't be an error, since there is no other way of
285 // leaving this loop except through this if.
286 if (Tok.isNot(tok::comma)) {
287 SkipUntil(tok::r_brace, false, true);
288 break;
289 }
290 }
291
292 // If we don't have a comma continued list, we're done.
293 if (Tok.isNot(tok::comma)) break;
294
295 // TODO: save comma locations if some client cares.
296 ConsumeToken();
297
298 // Handle trailing comma.
299 if (Tok.is(tok::r_brace)) break;
300 }
301 if (InitExprsOk && Tok.is(tok::r_brace))
302 return Actions.ActOnInitList(LBraceLoc, move_arg(InitExprs),
303 ConsumeBrace());
304
305 // Match the '}'.
306 MatchRHSPunctuation(tok::r_brace, LBraceLoc);
307 return ExprError(); // an error occurred.
308}
309