blob: a7a5a6a3dc99b09823b1d1ca200a989ba42f2900 [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
Chris Lattnereccc53a2008-10-26 22:36:07 +000014#include "clang/Parse/Designator.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000015#include "clang/Parse/Parser.h"
16#include "clang/Basic/Diagnostic.h"
Steve Naroff4aa88f82007-07-19 01:06:55 +000017#include "llvm/ADT/SmallString.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000018using namespace clang;
19
20
21/// MayBeDesignationStart - Return true if this token might be the start of a
Chris Lattner838cb212008-10-26 21:46:13 +000022/// designator. If we can tell it is impossible that it is a designator, return
23/// false.
Chris Lattnerefcadc62008-10-26 22:41:58 +000024static bool MayBeDesignationStart(tok::TokenKind K, Preprocessor &PP) {
Reid Spencer5f016e22007-07-11 17:01:13 +000025 switch (K) {
26 default: return false;
27 case tok::period: // designator: '.' identifier
28 case tok::l_square: // designator: array-designator
Chris Lattnerefcadc62008-10-26 22:41:58 +000029 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +000030 case tok::identifier: // designation: identifier ':'
Chris Lattnerefcadc62008-10-26 22:41:58 +000031 return PP.LookAhead(0).is(tok::colon);
Reid Spencer5f016e22007-07-11 17:01:13 +000032 }
33}
34
35/// ParseInitializerWithPotentialDesignator - Parse the 'initializer' production
36/// checking to see if the token stream starts with a designator.
37///
38/// designation:
39/// designator-list '='
40/// [GNU] array-designator
41/// [GNU] identifier ':'
42///
43/// designator-list:
44/// designator
45/// designator-list designator
46///
47/// designator:
48/// array-designator
49/// '.' identifier
50///
51/// array-designator:
52/// '[' constant-expression ']'
53/// [GNU] '[' constant-expression '...' constant-expression ']'
54///
55/// NOTE: [OBC] allows '[ objc-receiver objc-message-args ]' as an
Chris Lattner838cb212008-10-26 21:46:13 +000056/// initializer (because it is an expression). We need to consider this case
57/// when parsing array designators.
Reid Spencer5f016e22007-07-11 17:01:13 +000058///
Chris Lattnereccc53a2008-10-26 22:36:07 +000059Parser::ExprResult Parser::
60ParseInitializerWithPotentialDesignator(InitListDesignations &Designations,
61 unsigned InitNum) {
62
63 // If this is the old-style GNU extension:
64 // designation ::= identifier ':'
65 // Handle it as a field designator. Otherwise, this must be the start of a
66 // normal expression.
67 if (Tok.is(tok::identifier)) {
Chris Lattnerefcadc62008-10-26 22:41:58 +000068 Diag(Tok, diag::ext_gnu_old_style_field_designator);
Chris Lattnereccc53a2008-10-26 22:36:07 +000069
Chris Lattnerefcadc62008-10-26 22:41:58 +000070 Designation &D = Designations.CreateDesignation(InitNum);
71 D.AddDesignator(Designator::getField(Tok.getIdentifierInfo()));
72 ConsumeToken(); // Eat the identifier.
73
Chris Lattner7f9690d2008-10-26 22:49:49 +000074 assert(Tok.is(tok::colon) && "MayBeDesignationStart not working properly!");
Chris Lattnerefcadc62008-10-26 22:41:58 +000075 ConsumeToken();
76 return ParseInitializer();
Chris Lattnereccc53a2008-10-26 22:36:07 +000077 }
78
Reid Spencer5f016e22007-07-11 17:01:13 +000079 // Parse each designator in the designator list until we find an initializer.
Chris Lattner7f9690d2008-10-26 22:49:49 +000080 while (Tok.is(tok::period) || Tok.is(tok::l_square)) {
81 if (Tok.is(tok::period)) {
Reid Spencer5f016e22007-07-11 17:01:13 +000082 // designator: '.' identifier
83 ConsumeToken();
84 if (ExpectAndConsume(tok::identifier, diag::err_expected_ident))
85 return ExprResult(true);
Chris Lattner7f9690d2008-10-26 22:49:49 +000086 continue;
87 }
88
89 // We must have either an array designator now or an objc message send.
90 assert(Tok.is(tok::l_square) && "Unexpected token!");
91
92 // array-designator: '[' constant-expression ']'
93 // array-designator: '[' constant-expression '...' constant-expression ']'
94 // When designation is empty, this can be '[' objc-message-expr ']'. Note
95 // that we also have the case of [4][foo bar], which is the gnu designator
96 // extension + objc message send.
97 SourceLocation StartLoc = ConsumeBracket();
98
99 // If Objective-C is enabled and this is a typename or other identifier
100 // receiver, parse this as a message send expression.
101 if (getLang().ObjC1 && isTokObjCMessageIdentifierReceiver()) {
102 // FIXME: Emit ext_gnu_missing_equal_designator for inits like
103 // [4][foo bar].
104 IdentifierInfo *Name = Tok.getIdentifierInfo();
105 ConsumeToken();
106 return ParseAssignmentExprWithObjCMessageExprStart(StartLoc, Name, 0);
107 }
108
109 // Note that we parse this as an assignment expression, not a constant
110 // expression (allowing *=, =, etc) to handle the objc case. Sema needs
111 // to validate that the expression is a constant.
112 ExprResult Idx = ParseAssignmentExpression();
113 if (Idx.isInvalid) {
114 SkipUntil(tok::r_square);
115 return Idx;
116 }
117
118 // Given an expression, we could either have a designator (if the next
119 // tokens are '...' or ']' or an objc message send. If this is an objc
120 // message send, handle it now. An objc-message send is the start of
121 // an assignment-expression production.
122 if (getLang().ObjC1 && Tok.isNot(tok::ellipsis) &&
123 Tok.isNot(tok::r_square)) {
124 // FIXME: Emit ext_gnu_missing_equal_designator for inits like
125 // [4][foo bar].
126 return ParseAssignmentExprWithObjCMessageExprStart(StartLoc, 0,Idx.Val);
127 }
128
129 // Handle the gnu array range extension.
130 if (Tok.is(tok::ellipsis)) {
131 Diag(Tok, diag::ext_gnu_array_range);
132 ConsumeToken();
Reid Spencer5f016e22007-07-11 17:01:13 +0000133
Chris Lattner7f9690d2008-10-26 22:49:49 +0000134 ExprResult RHS = ParseConstantExpression();
135 if (RHS.isInvalid) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000136 SkipUntil(tok::r_square);
Chris Lattner7f9690d2008-10-26 22:49:49 +0000137 return RHS;
Reid Spencer5f016e22007-07-11 17:01:13 +0000138 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000139 }
Chris Lattner7f9690d2008-10-26 22:49:49 +0000140
141 MatchRHSPunctuation(tok::r_square, StartLoc);
Reid Spencer5f016e22007-07-11 17:01:13 +0000142 }
Chris Lattner7f9690d2008-10-26 22:49:49 +0000143
144 if (Tok.is(tok::equal)) {
145 // We read some number (at least one due to the grammar we implemented)
146 // of designators and found an '=' sign. The following tokens must be
147 // the initializer.
148 ConsumeToken();
149 return ParseInitializer();
150 }
151
152 // We read some number (at least one due to the grammar we implemented)
153 // of designators and found something that isn't an = or an initializer.
154 // If we have exactly one array designator [TODO CHECK], this is the GNU
155 // 'designation: array-designator' extension. Otherwise, it is a parse
156 // error.
157 SourceLocation Loc = Tok.getLocation();
158 ExprResult Init = ParseInitializer();
159 if (Init.isInvalid) return Init;
160
161 Diag(Tok, diag::ext_gnu_missing_equal_designator);
162 return Init;
Reid Spencer5f016e22007-07-11 17:01:13 +0000163}
164
165
Chris Lattner0eec2b52008-10-26 22:38:55 +0000166/// ParseBraceInitializer - Called when parsing an initializer that has a
167/// leading open brace.
168///
Reid Spencer5f016e22007-07-11 17:01:13 +0000169/// initializer: [C99 6.7.8]
Reid Spencer5f016e22007-07-11 17:01:13 +0000170/// '{' initializer-list '}'
171/// '{' initializer-list ',' '}'
172/// [GNU] '{' '}'
173///
174/// initializer-list:
175/// designation[opt] initializer
176/// initializer-list ',' designation[opt] initializer
177///
Chris Lattner0eec2b52008-10-26 22:38:55 +0000178Parser::ExprResult Parser::ParseBraceInitializer() {
Reid Spencer5f016e22007-07-11 17:01:13 +0000179 SourceLocation LBraceLoc = ConsumeBrace();
180
181 // We support empty initializers, but tell the user that they aren't using
182 // C99-clean code.
Chris Lattner04d66662007-10-09 17:33:22 +0000183 if (Tok.is(tok::r_brace)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000184 Diag(LBraceLoc, diag::ext_gnu_empty_initializer);
Steve Naroff4aa88f82007-07-19 01:06:55 +0000185 // Match the '}'.
Steve Narofff69936d2007-09-16 03:34:24 +0000186 return Actions.ActOnInitList(LBraceLoc, 0, 0, ConsumeBrace());
Reid Spencer5f016e22007-07-11 17:01:13 +0000187 }
Chris Lattnereccc53a2008-10-26 22:36:07 +0000188
189 /// InitExprs - This is the actual list of expressions contained in the
190 /// initializer.
Steve Naroff4aa88f82007-07-19 01:06:55 +0000191 llvm::SmallVector<ExprTy*, 8> InitExprs;
Chris Lattnereccc53a2008-10-26 22:36:07 +0000192
193 /// ExprDesignators - For each initializer, keep track of the designator that
194 /// was specified for it, if any.
195 InitListDesignations InitExprDesignations(Actions);
196
Steve Naroff4aa88f82007-07-19 01:06:55 +0000197 bool InitExprsOk = true;
Reid Spencer5f016e22007-07-11 17:01:13 +0000198
Steve Naroff4aa88f82007-07-19 01:06:55 +0000199 while (1) {
200 // Parse: designation[opt] initializer
201
202 // If we know that this cannot be a designation, just parse the nested
203 // initializer directly.
204 ExprResult SubElt;
Chris Lattnerefcadc62008-10-26 22:41:58 +0000205 if (!MayBeDesignationStart(Tok.getKind(), PP))
Steve Naroff4aa88f82007-07-19 01:06:55 +0000206 SubElt = ParseInitializer();
207 else
Chris Lattnereccc53a2008-10-26 22:36:07 +0000208 SubElt = ParseInitializerWithPotentialDesignator(InitExprDesignations,
209 InitExprs.size());
Steve Naroff4aa88f82007-07-19 01:06:55 +0000210
211 // If we couldn't parse the subelement, bail out.
Chris Lattner65bb89c2008-04-20 19:07:56 +0000212 if (!SubElt.isInvalid) {
Steve Naroff4aa88f82007-07-19 01:06:55 +0000213 InitExprs.push_back(SubElt.Val);
Chris Lattner65bb89c2008-04-20 19:07:56 +0000214 } else {
215 InitExprsOk = false;
216
217 // We have two ways to try to recover from this error: if the code looks
Chris Lattner838cb212008-10-26 21:46:13 +0000218 // gramatically ok (i.e. we have a comma coming up) try to continue
Chris Lattner65bb89c2008-04-20 19:07:56 +0000219 // parsing the rest of the initializer. This allows us to emit
220 // diagnostics for later elements that we find. If we don't see a comma,
221 // assume there is a parse error, and just skip to recover.
222 if (Tok.isNot(tok::comma)) {
223 SkipUntil(tok::r_brace, false, true);
224 break;
225 }
226 }
Steve Naroff4aa88f82007-07-19 01:06:55 +0000227
228 // If we don't have a comma continued list, we're done.
Chris Lattner04d66662007-10-09 17:33:22 +0000229 if (Tok.isNot(tok::comma)) break;
Steve Naroff4aa88f82007-07-19 01:06:55 +0000230
Chris Lattnereccc53a2008-10-26 22:36:07 +0000231 // TODO: save comma locations if some client cares.
Steve Naroff4aa88f82007-07-19 01:06:55 +0000232 ConsumeToken();
233
234 // Handle trailing comma.
Chris Lattner04d66662007-10-09 17:33:22 +0000235 if (Tok.is(tok::r_brace)) break;
Steve Naroff4aa88f82007-07-19 01:06:55 +0000236 }
Chris Lattner04d66662007-10-09 17:33:22 +0000237 if (InitExprsOk && Tok.is(tok::r_brace))
Steve Narofff69936d2007-09-16 03:34:24 +0000238 return Actions.ActOnInitList(LBraceLoc, &InitExprs[0], InitExprs.size(),
Steve Naroff4aa88f82007-07-19 01:06:55 +0000239 ConsumeBrace());
Chris Lattner65bb89c2008-04-20 19:07:56 +0000240
Chris Lattnereccc53a2008-10-26 22:36:07 +0000241 // On error, delete any parsed subexpressions.
Chris Lattner65bb89c2008-04-20 19:07:56 +0000242 for (unsigned i = 0, e = InitExprs.size(); i != e; ++i)
243 Actions.DeleteExpr(InitExprs[i]);
244
Reid Spencer5f016e22007-07-11 17:01:13 +0000245 // Match the '}'.
246 MatchRHSPunctuation(tok::r_brace, LBraceLoc);
Steve Naroff4aa88f82007-07-19 01:06:55 +0000247 return ExprResult(true); // an error occurred.
Reid Spencer5f016e22007-07-11 17:01:13 +0000248}
249