1 //===--- 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/Parser.h"
15 #include "clang/Parse/ParseDiagnostic.h"
16 #include "RAIIObjectsForParser.h"
17 #include "clang/Sema/Designator.h"
18 #include "clang/Sema/Scope.h"
19 #include "llvm/ADT/SmallString.h"
20 #include "llvm/Support/raw_ostream.h"
21 using namespace clang;
22 
23 
24 /// MayBeDesignationStart - Return true if the current token might be the start
25 /// of a designator.  If we can tell it is impossible that it is a designator,
26 /// return false.
27 bool Parser::MayBeDesignationStart() {
28   switch (Tok.getKind()) {
29   default:
30     return false;
31 
32   case tok::period:      // designator: '.' identifier
33     return true;
34 
35   case tok::l_square: {  // designator: array-designator
36     if (!PP.getLangOptions().CPlusPlus0x)
37       return true;
38 
39     // C++11 lambda expressions and C99 designators can be ambiguous all the
40     // way through the closing ']' and to the next character. Handle the easy
41     // cases here, and fall back to tentative parsing if those fail.
42     switch (PP.LookAhead(0).getKind()) {
43     case tok::equal:
44     case tok::r_square:
45       // Definitely starts a lambda expression.
46       return false;
47 
48     case tok::amp:
49     case tok::kw_this:
50     case tok::identifier:
51       // We have to do additional analysis, because these could be the
52       // start of a constant expression or a lambda capture list.
53       break;
54 
55     default:
56       // Anything not mentioned above cannot occur following a '[' in a
57       // lambda expression.
58       return true;
59     }
60 
61     // Handle the complicated case below.
62     break;
63   }
64   case tok::identifier:  // designation: identifier ':'
65     return PP.LookAhead(0).is(tok::colon);
66   }
67 
68   // Parse up to (at most) the token after the closing ']' to determine
69   // whether this is a C99 designator or a lambda.
70   TentativeParsingAction Tentative(*this);
71   ConsumeBracket();
72   while (true) {
73     switch (Tok.getKind()) {
74     case tok::equal:
75     case tok::amp:
76     case tok::identifier:
77     case tok::kw_this:
78       // These tokens can occur in a capture list or a constant-expression.
79       // Keep looking.
80       ConsumeToken();
81       continue;
82 
83     case tok::comma:
84       // Since a comma cannot occur in a constant-expression, this must
85       // be a lambda.
86       Tentative.Revert();
87       return false;
88 
89     case tok::r_square: {
90       // Once we hit the closing square bracket, we look at the next
91       // token. If it's an '=', this is a designator. Otherwise, it's a
92       // lambda expression. This decision favors lambdas over the older
93       // GNU designator syntax, which allows one to omit the '=', but is
94       // consistent with GCC.
95       ConsumeBracket();
96       tok::TokenKind Kind = Tok.getKind();
97       Tentative.Revert();
98       return Kind == tok::equal;
99     }
100 
101     default:
102       // Anything else cannot occur in a lambda capture list, so it
103       // must be a designator.
104       Tentative.Revert();
105       return true;
106     }
107   }
108 
109   return true;
110 }
111 
112 static void CheckArrayDesignatorSyntax(Parser &P, SourceLocation Loc,
113                                        Designation &Desig) {
114   // If we have exactly one array designator, this used the GNU
115   // 'designation: array-designator' extension, otherwise there should be no
116   // designators at all!
117   if (Desig.getNumDesignators() == 1 &&
118       (Desig.getDesignator(0).isArrayDesignator() ||
119        Desig.getDesignator(0).isArrayRangeDesignator()))
120     P.Diag(Loc, diag::ext_gnu_missing_equal_designator);
121   else if (Desig.getNumDesignators() > 0)
122     P.Diag(Loc, diag::err_expected_equal_designator);
123 }
124 
125 /// ParseInitializerWithPotentialDesignator - Parse the 'initializer' production
126 /// checking to see if the token stream starts with a designator.
127 ///
128 ///       designation:
129 ///         designator-list '='
130 /// [GNU]   array-designator
131 /// [GNU]   identifier ':'
132 ///
133 ///       designator-list:
134 ///         designator
135 ///         designator-list designator
136 ///
137 ///       designator:
138 ///         array-designator
139 ///         '.' identifier
140 ///
141 ///       array-designator:
142 ///         '[' constant-expression ']'
143 /// [GNU]   '[' constant-expression '...' constant-expression ']'
144 ///
145 /// NOTE: [OBC] allows '[ objc-receiver objc-message-args ]' as an
146 /// initializer (because it is an expression).  We need to consider this case
147 /// when parsing array designators.
148 ///
149 ExprResult Parser::ParseInitializerWithPotentialDesignator() {
150 
151   // If this is the old-style GNU extension:
152   //   designation ::= identifier ':'
153   // Handle it as a field designator.  Otherwise, this must be the start of a
154   // normal expression.
155   if (Tok.is(tok::identifier)) {
156     const IdentifierInfo *FieldName = Tok.getIdentifierInfo();
157 
158     SmallString<256> NewSyntax;
159     llvm::raw_svector_ostream(NewSyntax) << '.' << FieldName->getName()
160                                          << " = ";
161 
162     SourceLocation NameLoc = ConsumeToken(); // Eat the identifier.
163 
164     assert(Tok.is(tok::colon) && "MayBeDesignationStart not working properly!");
165     SourceLocation ColonLoc = ConsumeToken();
166 
167     Diag(NameLoc, diag::ext_gnu_old_style_field_designator)
168       << FixItHint::CreateReplacement(SourceRange(NameLoc, ColonLoc),
169                                       NewSyntax.str());
170 
171     Designation D;
172     D.AddDesignator(Designator::getField(FieldName, SourceLocation(), NameLoc));
173     return Actions.ActOnDesignatedInitializer(D, ColonLoc, true,
174                                               ParseInitializer());
175   }
176 
177   // Desig - This is initialized when we see our first designator.  We may have
178   // an objc message send with no designator, so we don't want to create this
179   // eagerly.
180   Designation Desig;
181 
182   // Parse each designator in the designator list until we find an initializer.
183   while (Tok.is(tok::period) || Tok.is(tok::l_square)) {
184     if (Tok.is(tok::period)) {
185       // designator: '.' identifier
186       SourceLocation DotLoc = ConsumeToken();
187 
188       if (Tok.isNot(tok::identifier)) {
189         Diag(Tok.getLocation(), diag::err_expected_field_designator);
190         return ExprError();
191       }
192 
193       Desig.AddDesignator(Designator::getField(Tok.getIdentifierInfo(), DotLoc,
194                                                Tok.getLocation()));
195       ConsumeToken(); // Eat the identifier.
196       continue;
197     }
198 
199     // We must have either an array designator now or an objc message send.
200     assert(Tok.is(tok::l_square) && "Unexpected token!");
201 
202     // Handle the two forms of array designator:
203     //   array-designator: '[' constant-expression ']'
204     //   array-designator: '[' constant-expression '...' constant-expression ']'
205     //
206     // Also, we have to handle the case where the expression after the
207     // designator an an objc message send: '[' objc-message-expr ']'.
208     // Interesting cases are:
209     //   [foo bar]         -> objc message send
210     //   [foo]             -> array designator
211     //   [foo ... bar]     -> array designator
212     //   [4][foo bar]      -> obsolete GNU designation with objc message send.
213     //
214     InMessageExpressionRAIIObject InMessage(*this, true);
215 
216     BalancedDelimiterTracker T(*this, tok::l_square);
217     T.consumeOpen();
218     SourceLocation StartLoc = T.getOpenLocation();
219 
220     ExprResult Idx;
221 
222     // If Objective-C is enabled and this is a typename (class message
223     // send) or send to 'super', parse this as a message send
224     // expression.  We handle C++ and C separately, since C++ requires
225     // much more complicated parsing.
226     if  (getLang().ObjC1 && getLang().CPlusPlus) {
227       // Send to 'super'.
228       if (Tok.is(tok::identifier) && Tok.getIdentifierInfo() == Ident_super &&
229           NextToken().isNot(tok::period) &&
230           getCurScope()->isInObjcMethodScope()) {
231         CheckArrayDesignatorSyntax(*this, StartLoc, Desig);
232         return ParseAssignmentExprWithObjCMessageExprStart(StartLoc,
233                                                            ConsumeToken(),
234                                                            ParsedType(),
235                                                            0);
236       }
237 
238       // Parse the receiver, which is either a type or an expression.
239       bool IsExpr;
240       void *TypeOrExpr;
241       if (ParseObjCXXMessageReceiver(IsExpr, TypeOrExpr)) {
242         SkipUntil(tok::r_square);
243         return ExprError();
244       }
245 
246       // If the receiver was a type, we have a class message; parse
247       // the rest of it.
248       if (!IsExpr) {
249         CheckArrayDesignatorSyntax(*this, StartLoc, Desig);
250         return ParseAssignmentExprWithObjCMessageExprStart(StartLoc,
251                                                            SourceLocation(),
252                                    ParsedType::getFromOpaquePtr(TypeOrExpr),
253                                                            0);
254       }
255 
256       // If the receiver was an expression, we still don't know
257       // whether we have a message send or an array designator; just
258       // adopt the expression for further analysis below.
259       // FIXME: potentially-potentially evaluated expression above?
260       Idx = ExprResult(static_cast<Expr*>(TypeOrExpr));
261     } else if (getLang().ObjC1 && Tok.is(tok::identifier)) {
262       IdentifierInfo *II = Tok.getIdentifierInfo();
263       SourceLocation IILoc = Tok.getLocation();
264       ParsedType ReceiverType;
265       // Three cases. This is a message send to a type: [type foo]
266       // This is a message send to super:  [super foo]
267       // This is a message sent to an expr:  [super.bar foo]
268       switch (Sema::ObjCMessageKind Kind
269                 = Actions.getObjCMessageKind(getCurScope(), II, IILoc,
270                                              II == Ident_super,
271                                              NextToken().is(tok::period),
272                                              ReceiverType)) {
273       case Sema::ObjCSuperMessage:
274       case Sema::ObjCClassMessage:
275         CheckArrayDesignatorSyntax(*this, StartLoc, Desig);
276         if (Kind == Sema::ObjCSuperMessage)
277           return ParseAssignmentExprWithObjCMessageExprStart(StartLoc,
278                                                              ConsumeToken(),
279                                                              ParsedType(),
280                                                              0);
281         ConsumeToken(); // the identifier
282         if (!ReceiverType) {
283           SkipUntil(tok::r_square);
284           return ExprError();
285         }
286 
287         return ParseAssignmentExprWithObjCMessageExprStart(StartLoc,
288                                                            SourceLocation(),
289                                                            ReceiverType,
290                                                            0);
291 
292       case Sema::ObjCInstanceMessage:
293         // Fall through; we'll just parse the expression and
294         // (possibly) treat this like an Objective-C message send
295         // later.
296         break;
297       }
298     }
299 
300     // Parse the index expression, if we haven't already gotten one
301     // above (which can only happen in Objective-C++).
302     // Note that we parse this as an assignment expression, not a constant
303     // expression (allowing *=, =, etc) to handle the objc case.  Sema needs
304     // to validate that the expression is a constant.
305     // FIXME: We also need to tell Sema that we're in a
306     // potentially-potentially evaluated context.
307     if (!Idx.get()) {
308       Idx = ParseAssignmentExpression();
309       if (Idx.isInvalid()) {
310         SkipUntil(tok::r_square);
311         return move(Idx);
312       }
313     }
314 
315     // Given an expression, we could either have a designator (if the next
316     // tokens are '...' or ']' or an objc message send.  If this is an objc
317     // message send, handle it now.  An objc-message send is the start of
318     // an assignment-expression production.
319     if (getLang().ObjC1 && Tok.isNot(tok::ellipsis) &&
320         Tok.isNot(tok::r_square)) {
321       CheckArrayDesignatorSyntax(*this, Tok.getLocation(), Desig);
322       return ParseAssignmentExprWithObjCMessageExprStart(StartLoc,
323                                                          SourceLocation(),
324                                                          ParsedType(),
325                                                          Idx.take());
326     }
327 
328     // If this is a normal array designator, remember it.
329     if (Tok.isNot(tok::ellipsis)) {
330       Desig.AddDesignator(Designator::getArray(Idx.release(), StartLoc));
331     } else {
332       // Handle the gnu array range extension.
333       Diag(Tok, diag::ext_gnu_array_range);
334       SourceLocation EllipsisLoc = ConsumeToken();
335 
336       ExprResult RHS(ParseConstantExpression());
337       if (RHS.isInvalid()) {
338         SkipUntil(tok::r_square);
339         return move(RHS);
340       }
341       Desig.AddDesignator(Designator::getArrayRange(Idx.release(),
342                                                     RHS.release(),
343                                                     StartLoc, EllipsisLoc));
344     }
345 
346     T.consumeClose();
347     Desig.getDesignator(Desig.getNumDesignators() - 1).setRBracketLoc(
348                                                         T.getCloseLocation());
349   }
350 
351   // Okay, we're done with the designator sequence.  We know that there must be
352   // at least one designator, because the only case we can get into this method
353   // without a designator is when we have an objc message send.  That case is
354   // handled and returned from above.
355   assert(!Desig.empty() && "Designator is empty?");
356 
357   // Handle a normal designator sequence end, which is an equal.
358   if (Tok.is(tok::equal)) {
359     SourceLocation EqualLoc = ConsumeToken();
360     return Actions.ActOnDesignatedInitializer(Desig, EqualLoc, false,
361                                               ParseInitializer());
362   }
363 
364   // We read some number of designators and found something that isn't an = or
365   // an initializer.  If we have exactly one array designator, this
366   // is the GNU 'designation: array-designator' extension.  Otherwise, it is a
367   // parse error.
368   if (Desig.getNumDesignators() == 1 &&
369       (Desig.getDesignator(0).isArrayDesignator() ||
370        Desig.getDesignator(0).isArrayRangeDesignator())) {
371     Diag(Tok, diag::ext_gnu_missing_equal_designator)
372       << FixItHint::CreateInsertion(Tok.getLocation(), "= ");
373     return Actions.ActOnDesignatedInitializer(Desig, Tok.getLocation(),
374                                               true, ParseInitializer());
375   }
376 
377   Diag(Tok, diag::err_expected_equal_designator);
378   return ExprError();
379 }
380 
381 
382 /// ParseBraceInitializer - Called when parsing an initializer that has a
383 /// leading open brace.
384 ///
385 ///       initializer: [C99 6.7.8]
386 ///         '{' initializer-list '}'
387 ///         '{' initializer-list ',' '}'
388 /// [GNU]   '{' '}'
389 ///
390 ///       initializer-list:
391 ///         designation[opt] initializer ...[opt]
392 ///         initializer-list ',' designation[opt] initializer ...[opt]
393 ///
394 ExprResult Parser::ParseBraceInitializer() {
395   InMessageExpressionRAIIObject InMessage(*this, false);
396 
397   BalancedDelimiterTracker T(*this, tok::l_brace);
398   T.consumeOpen();
399   SourceLocation LBraceLoc = T.getOpenLocation();
400 
401   /// InitExprs - This is the actual list of expressions contained in the
402   /// initializer.
403   ExprVector InitExprs(Actions);
404 
405   if (Tok.is(tok::r_brace)) {
406     // Empty initializers are a C++ feature and a GNU extension to C.
407     if (!getLang().CPlusPlus)
408       Diag(LBraceLoc, diag::ext_gnu_empty_initializer);
409     // Match the '}'.
410     return Actions.ActOnInitList(LBraceLoc, MultiExprArg(Actions),
411                                  ConsumeBrace());
412   }
413 
414   bool InitExprsOk = true;
415 
416   while (1) {
417     // Handle Microsoft __if_exists/if_not_exists if necessary.
418     if (getLang().MicrosoftExt && (Tok.is(tok::kw___if_exists) ||
419         Tok.is(tok::kw___if_not_exists))) {
420       if (ParseMicrosoftIfExistsBraceInitializer(InitExprs, InitExprsOk)) {
421         if (Tok.isNot(tok::comma)) break;
422         ConsumeToken();
423       }
424       if (Tok.is(tok::r_brace)) break;
425       continue;
426     }
427 
428     // Parse: designation[opt] initializer
429 
430     // If we know that this cannot be a designation, just parse the nested
431     // initializer directly.
432     ExprResult SubElt;
433     if (MayBeDesignationStart())
434       SubElt = ParseInitializerWithPotentialDesignator();
435     else
436       SubElt = ParseInitializer();
437 
438     if (Tok.is(tok::ellipsis))
439       SubElt = Actions.ActOnPackExpansion(SubElt.get(), ConsumeToken());
440 
441     // If we couldn't parse the subelement, bail out.
442     if (!SubElt.isInvalid()) {
443       InitExprs.push_back(SubElt.release());
444     } else {
445       InitExprsOk = false;
446 
447       // We have two ways to try to recover from this error: if the code looks
448       // grammatically ok (i.e. we have a comma coming up) try to continue
449       // parsing the rest of the initializer.  This allows us to emit
450       // diagnostics for later elements that we find.  If we don't see a comma,
451       // assume there is a parse error, and just skip to recover.
452       // FIXME: This comment doesn't sound right. If there is a r_brace
453       // immediately, it can't be an error, since there is no other way of
454       // leaving this loop except through this if.
455       if (Tok.isNot(tok::comma)) {
456         SkipUntil(tok::r_brace, false, true);
457         break;
458       }
459     }
460 
461     // If we don't have a comma continued list, we're done.
462     if (Tok.isNot(tok::comma)) break;
463 
464     // TODO: save comma locations if some client cares.
465     ConsumeToken();
466 
467     // Handle trailing comma.
468     if (Tok.is(tok::r_brace)) break;
469   }
470 
471   bool closed = !T.consumeClose();
472 
473   if (InitExprsOk && closed)
474     return Actions.ActOnInitList(LBraceLoc, move_arg(InitExprs),
475                                  T.getCloseLocation());
476 
477   return ExprError(); // an error occurred.
478 }
479 
480 
481 // Return true if a comma (or closing brace) is necessary after the
482 // __if_exists/if_not_exists statement.
483 bool Parser::ParseMicrosoftIfExistsBraceInitializer(ExprVector &InitExprs,
484                                                     bool &InitExprsOk) {
485   bool trailingComma = false;
486   IfExistsCondition Result;
487   if (ParseMicrosoftIfExistsCondition(Result))
488     return false;
489 
490   BalancedDelimiterTracker Braces(*this, tok::l_brace);
491   if (Braces.consumeOpen()) {
492     Diag(Tok, diag::err_expected_lbrace);
493     return false;
494   }
495 
496   switch (Result.Behavior) {
497   case IEB_Parse:
498     // Parse the declarations below.
499     break;
500 
501   case IEB_Dependent:
502     Diag(Result.KeywordLoc, diag::warn_microsoft_dependent_exists)
503       << Result.IsIfExists;
504     // Fall through to skip.
505 
506   case IEB_Skip:
507     Braces.skipToEnd();
508     return false;
509   }
510 
511   while (Tok.isNot(tok::eof)) {
512     trailingComma = false;
513     // If we know that this cannot be a designation, just parse the nested
514     // initializer directly.
515     ExprResult SubElt;
516     if (MayBeDesignationStart())
517       SubElt = ParseInitializerWithPotentialDesignator();
518     else
519       SubElt = ParseInitializer();
520 
521     if (Tok.is(tok::ellipsis))
522       SubElt = Actions.ActOnPackExpansion(SubElt.get(), ConsumeToken());
523 
524     // If we couldn't parse the subelement, bail out.
525     if (!SubElt.isInvalid())
526       InitExprs.push_back(SubElt.release());
527     else
528       InitExprsOk = false;
529 
530     if (Tok.is(tok::comma)) {
531       ConsumeToken();
532       trailingComma = true;
533     }
534 
535     if (Tok.is(tok::r_brace))
536       break;
537   }
538 
539   Braces.consumeClose();
540 
541   return !trailingComma;
542 }
543