2006-11-05 15:46:30 +08:00
|
|
|
//===--- ParseInit.cpp - Initializer Parsing ------------------------------===//
|
2006-08-14 05:54:02 +08:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-30 03:59:25 +08:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2006-08-14 05:54:02 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file implements initializer parsing as specified by C99 6.7.8.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2008-10-27 06:36:07 +08:00
|
|
|
#include "clang/Parse/Designator.h"
|
2006-08-14 05:54:02 +08:00
|
|
|
#include "clang/Parse/Parser.h"
|
|
|
|
#include "clang/Basic/Diagnostic.h"
|
2007-07-19 09:06:55 +08:00
|
|
|
#include "llvm/ADT/SmallString.h"
|
2006-08-14 05:54:02 +08:00
|
|
|
using namespace clang;
|
|
|
|
|
|
|
|
|
|
|
|
/// MayBeDesignationStart - Return true if this token might be the start of a
|
2008-10-27 05:46:13 +08:00
|
|
|
/// designator. If we can tell it is impossible that it is a designator, return
|
|
|
|
/// false.
|
2008-10-27 06:41:58 +08:00
|
|
|
static bool MayBeDesignationStart(tok::TokenKind K, Preprocessor &PP) {
|
2006-08-14 05:54:02 +08:00
|
|
|
switch (K) {
|
|
|
|
default: return false;
|
|
|
|
case tok::period: // designator: '.' identifier
|
|
|
|
case tok::l_square: // designator: array-designator
|
2008-10-27 06:41:58 +08:00
|
|
|
return true;
|
2006-08-14 05:54:02 +08:00
|
|
|
case tok::identifier: // designation: identifier ':'
|
2008-10-27 06:41:58 +08:00
|
|
|
return PP.LookAhead(0).is(tok::colon);
|
2006-08-14 05:54:02 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-08-14 05:54:51 +08:00
|
|
|
/// ParseInitializerWithPotentialDesignator - Parse the 'initializer' production
|
|
|
|
/// checking to see if the token stream starts with a designator.
|
|
|
|
///
|
2006-08-14 05:54:02 +08:00
|
|
|
/// designation:
|
|
|
|
/// designator-list '='
|
|
|
|
/// [GNU] array-designator
|
|
|
|
/// [GNU] identifier ':'
|
|
|
|
///
|
|
|
|
/// designator-list:
|
|
|
|
/// designator
|
|
|
|
/// designator-list designator
|
|
|
|
///
|
|
|
|
/// designator:
|
|
|
|
/// array-designator
|
|
|
|
/// '.' identifier
|
|
|
|
///
|
|
|
|
/// array-designator:
|
|
|
|
/// '[' constant-expression ']'
|
|
|
|
/// [GNU] '[' constant-expression '...' constant-expression ']'
|
|
|
|
///
|
|
|
|
/// NOTE: [OBC] allows '[ objc-receiver objc-message-args ]' as an
|
2008-10-27 05:46:13 +08:00
|
|
|
/// initializer (because it is an expression). We need to consider this case
|
|
|
|
/// when parsing array designators.
|
2006-08-14 05:54:02 +08:00
|
|
|
///
|
2008-10-27 06:36:07 +08:00
|
|
|
Parser::ExprResult Parser::
|
|
|
|
ParseInitializerWithPotentialDesignator(InitListDesignations &Designations,
|
|
|
|
unsigned InitNum) {
|
|
|
|
|
|
|
|
// If this is the old-style GNU extension:
|
|
|
|
// designation ::= identifier ':'
|
|
|
|
// Handle it as a field designator. Otherwise, this must be the start of a
|
|
|
|
// normal expression.
|
|
|
|
if (Tok.is(tok::identifier)) {
|
2008-10-27 06:41:58 +08:00
|
|
|
Diag(Tok, diag::ext_gnu_old_style_field_designator);
|
|
|
|
|
|
|
|
Designation &D = Designations.CreateDesignation(InitNum);
|
|
|
|
D.AddDesignator(Designator::getField(Tok.getIdentifierInfo()));
|
|
|
|
ConsumeToken(); // Eat the identifier.
|
2008-10-27 06:36:07 +08:00
|
|
|
|
2008-10-27 06:49:49 +08:00
|
|
|
assert(Tok.is(tok::colon) && "MayBeDesignationStart not working properly!");
|
2008-10-27 06:41:58 +08:00
|
|
|
ConsumeToken();
|
|
|
|
return ParseInitializer();
|
2008-10-27 06:36:07 +08:00
|
|
|
}
|
|
|
|
|
2008-10-27 06:59:19 +08:00
|
|
|
// Desig - This is initialized when we see our first designator. We may have
|
|
|
|
// an objc message send with no designator, so we don't want to create this
|
|
|
|
// eagerly.
|
|
|
|
Designation *Desig = 0;
|
|
|
|
|
2006-08-14 05:54:02 +08:00
|
|
|
// Parse each designator in the designator list until we find an initializer.
|
2008-10-27 06:49:49 +08:00
|
|
|
while (Tok.is(tok::period) || Tok.is(tok::l_square)) {
|
|
|
|
if (Tok.is(tok::period)) {
|
2006-08-14 05:54:02 +08:00
|
|
|
// designator: '.' identifier
|
|
|
|
ConsumeToken();
|
2008-10-27 06:59:19 +08:00
|
|
|
|
|
|
|
// Create designation if we haven't already.
|
|
|
|
if (Desig == 0)
|
|
|
|
Desig = &Designations.CreateDesignation(InitNum);
|
|
|
|
|
|
|
|
if (Tok.isNot(tok::identifier)) {
|
|
|
|
Diag(Tok.getLocation(), diag::err_expected_field_designator);
|
2006-08-14 05:54:02 +08:00
|
|
|
return ExprResult(true);
|
2008-10-27 06:59:19 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
Desig->AddDesignator(Designator::getField(Tok.getIdentifierInfo()));
|
|
|
|
ConsumeToken(); // Eat the identifier.
|
2008-10-27 06:49:49 +08:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// We must have either an array designator now or an objc message send.
|
|
|
|
assert(Tok.is(tok::l_square) && "Unexpected token!");
|
|
|
|
|
|
|
|
// array-designator: '[' constant-expression ']'
|
|
|
|
// array-designator: '[' constant-expression '...' constant-expression ']'
|
|
|
|
// When designation is empty, this can be '[' objc-message-expr ']'. Note
|
|
|
|
// that we also have the case of [4][foo bar], which is the gnu designator
|
|
|
|
// extension + objc message send.
|
|
|
|
SourceLocation StartLoc = ConsumeBracket();
|
|
|
|
|
|
|
|
// If Objective-C is enabled and this is a typename or other identifier
|
|
|
|
// receiver, parse this as a message send expression.
|
|
|
|
if (getLang().ObjC1 && isTokObjCMessageIdentifierReceiver()) {
|
|
|
|
// FIXME: Emit ext_gnu_missing_equal_designator for inits like
|
|
|
|
// [4][foo bar].
|
|
|
|
IdentifierInfo *Name = Tok.getIdentifierInfo();
|
|
|
|
ConsumeToken();
|
|
|
|
return ParseAssignmentExprWithObjCMessageExprStart(StartLoc, Name, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Note that we parse this as an assignment expression, not a constant
|
|
|
|
// expression (allowing *=, =, etc) to handle the objc case. Sema needs
|
|
|
|
// to validate that the expression is a constant.
|
|
|
|
ExprResult Idx = ParseAssignmentExpression();
|
|
|
|
if (Idx.isInvalid) {
|
|
|
|
SkipUntil(tok::r_square);
|
|
|
|
return Idx;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Given an expression, we could either have a designator (if the next
|
|
|
|
// tokens are '...' or ']' or an objc message send. If this is an objc
|
|
|
|
// message send, handle it now. An objc-message send is the start of
|
|
|
|
// an assignment-expression production.
|
|
|
|
if (getLang().ObjC1 && Tok.isNot(tok::ellipsis) &&
|
|
|
|
Tok.isNot(tok::r_square)) {
|
|
|
|
// FIXME: Emit ext_gnu_missing_equal_designator for inits like
|
|
|
|
// [4][foo bar].
|
|
|
|
return ParseAssignmentExprWithObjCMessageExprStart(StartLoc, 0,Idx.Val);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Handle the gnu array range extension.
|
|
|
|
if (Tok.is(tok::ellipsis)) {
|
|
|
|
Diag(Tok, diag::ext_gnu_array_range);
|
|
|
|
ConsumeToken();
|
2008-01-26 03:37:24 +08:00
|
|
|
|
2008-10-27 06:49:49 +08:00
|
|
|
ExprResult RHS = ParseConstantExpression();
|
|
|
|
if (RHS.isInvalid) {
|
2006-08-14 05:54:02 +08:00
|
|
|
SkipUntil(tok::r_square);
|
2008-10-27 06:49:49 +08:00
|
|
|
return RHS;
|
2008-01-26 03:43:26 +08:00
|
|
|
}
|
2006-08-14 05:54:02 +08:00
|
|
|
}
|
2008-10-27 06:49:49 +08:00
|
|
|
|
|
|
|
MatchRHSPunctuation(tok::r_square, StartLoc);
|
2006-08-14 05:54:02 +08:00
|
|
|
}
|
2008-10-27 06:49:49 +08:00
|
|
|
|
2008-10-27 06:59:19 +08:00
|
|
|
// Okay, we're done with the designator sequence. We know that there must be
|
|
|
|
// at least one designator, because the only case we can get into this method
|
|
|
|
// without a designator is when we have an objc message send. That case is
|
|
|
|
// handled and returned from above.
|
|
|
|
|
|
|
|
// Handle a normal designator sequence end, which is an equal.
|
2008-10-27 06:49:49 +08:00
|
|
|
if (Tok.is(tok::equal)) {
|
|
|
|
ConsumeToken();
|
|
|
|
return ParseInitializer();
|
|
|
|
}
|
|
|
|
|
2008-10-27 06:59:19 +08:00
|
|
|
// We read some number of designators and found something that isn't an = or
|
|
|
|
// an initializer. If we have exactly one array designator [TODO CHECK], this
|
|
|
|
// is the GNU 'designation: array-designator' extension. Otherwise, it is a
|
|
|
|
// parse error.
|
2008-10-27 06:49:49 +08:00
|
|
|
SourceLocation Loc = Tok.getLocation();
|
|
|
|
ExprResult Init = ParseInitializer();
|
|
|
|
if (Init.isInvalid) return Init;
|
|
|
|
|
|
|
|
Diag(Tok, diag::ext_gnu_missing_equal_designator);
|
|
|
|
return Init;
|
2006-08-14 05:54:02 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-10-27 06:38:55 +08:00
|
|
|
/// ParseBraceInitializer - Called when parsing an initializer that has a
|
|
|
|
/// leading open brace.
|
|
|
|
///
|
2006-08-14 05:54:02 +08:00
|
|
|
/// initializer: [C99 6.7.8]
|
|
|
|
/// '{' initializer-list '}'
|
|
|
|
/// '{' initializer-list ',' '}'
|
|
|
|
/// [GNU] '{' '}'
|
|
|
|
///
|
|
|
|
/// initializer-list:
|
|
|
|
/// designation[opt] initializer
|
|
|
|
/// initializer-list ',' designation[opt] initializer
|
|
|
|
///
|
2008-10-27 06:38:55 +08:00
|
|
|
Parser::ExprResult Parser::ParseBraceInitializer() {
|
2006-10-16 14:12:55 +08:00
|
|
|
SourceLocation LBraceLoc = ConsumeBrace();
|
2006-08-14 05:54:02 +08:00
|
|
|
|
|
|
|
// We support empty initializers, but tell the user that they aren't using
|
|
|
|
// C99-clean code.
|
2007-10-10 01:33:22 +08:00
|
|
|
if (Tok.is(tok::r_brace)) {
|
2006-08-14 05:54:02 +08:00
|
|
|
Diag(LBraceLoc, diag::ext_gnu_empty_initializer);
|
2007-07-19 09:06:55 +08:00
|
|
|
// Match the '}'.
|
2007-09-16 11:34:24 +08:00
|
|
|
return Actions.ActOnInitList(LBraceLoc, 0, 0, ConsumeBrace());
|
2007-07-19 09:06:55 +08:00
|
|
|
}
|
2008-10-27 06:36:07 +08:00
|
|
|
|
|
|
|
/// InitExprs - This is the actual list of expressions contained in the
|
|
|
|
/// initializer.
|
2007-07-19 09:06:55 +08:00
|
|
|
llvm::SmallVector<ExprTy*, 8> InitExprs;
|
2008-10-27 06:36:07 +08:00
|
|
|
|
|
|
|
/// ExprDesignators - For each initializer, keep track of the designator that
|
|
|
|
/// was specified for it, if any.
|
|
|
|
InitListDesignations InitExprDesignations(Actions);
|
|
|
|
|
2007-07-19 09:06:55 +08:00
|
|
|
bool InitExprsOk = true;
|
|
|
|
|
|
|
|
while (1) {
|
|
|
|
// Parse: designation[opt] initializer
|
2006-08-14 05:54:02 +08:00
|
|
|
|
2007-07-19 09:06:55 +08:00
|
|
|
// If we know that this cannot be a designation, just parse the nested
|
|
|
|
// initializer directly.
|
|
|
|
ExprResult SubElt;
|
2008-10-27 06:41:58 +08:00
|
|
|
if (!MayBeDesignationStart(Tok.getKind(), PP))
|
2007-07-19 09:06:55 +08:00
|
|
|
SubElt = ParseInitializer();
|
|
|
|
else
|
2008-10-27 06:36:07 +08:00
|
|
|
SubElt = ParseInitializerWithPotentialDesignator(InitExprDesignations,
|
|
|
|
InitExprs.size());
|
2007-07-19 09:06:55 +08:00
|
|
|
|
|
|
|
// If we couldn't parse the subelement, bail out.
|
2008-04-21 03:07:56 +08:00
|
|
|
if (!SubElt.isInvalid) {
|
2007-07-19 09:06:55 +08:00
|
|
|
InitExprs.push_back(SubElt.Val);
|
2008-04-21 03:07:56 +08:00
|
|
|
} else {
|
|
|
|
InitExprsOk = false;
|
|
|
|
|
|
|
|
// We have two ways to try to recover from this error: if the code looks
|
2008-10-27 05:46:13 +08:00
|
|
|
// gramatically ok (i.e. we have a comma coming up) try to continue
|
2008-04-21 03:07:56 +08:00
|
|
|
// parsing the rest of the initializer. This allows us to emit
|
|
|
|
// diagnostics for later elements that we find. If we don't see a comma,
|
|
|
|
// assume there is a parse error, and just skip to recover.
|
|
|
|
if (Tok.isNot(tok::comma)) {
|
|
|
|
SkipUntil(tok::r_brace, false, true);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2006-08-14 05:54:02 +08:00
|
|
|
|
2007-07-19 09:06:55 +08:00
|
|
|
// If we don't have a comma continued list, we're done.
|
2007-10-10 01:33:22 +08:00
|
|
|
if (Tok.isNot(tok::comma)) break;
|
2007-07-19 09:06:55 +08:00
|
|
|
|
2008-10-27 06:36:07 +08:00
|
|
|
// TODO: save comma locations if some client cares.
|
2007-07-19 09:06:55 +08:00
|
|
|
ConsumeToken();
|
|
|
|
|
|
|
|
// Handle trailing comma.
|
2007-10-10 01:33:22 +08:00
|
|
|
if (Tok.is(tok::r_brace)) break;
|
2006-08-14 05:54:02 +08:00
|
|
|
}
|
2007-10-10 01:33:22 +08:00
|
|
|
if (InitExprsOk && Tok.is(tok::r_brace))
|
2007-09-16 11:34:24 +08:00
|
|
|
return Actions.ActOnInitList(LBraceLoc, &InitExprs[0], InitExprs.size(),
|
2007-07-19 09:06:55 +08:00
|
|
|
ConsumeBrace());
|
2008-04-21 03:07:56 +08:00
|
|
|
|
2008-10-27 06:36:07 +08:00
|
|
|
// On error, delete any parsed subexpressions.
|
2008-04-21 03:07:56 +08:00
|
|
|
for (unsigned i = 0, e = InitExprs.size(); i != e; ++i)
|
|
|
|
Actions.DeleteExpr(InitExprs[i]);
|
|
|
|
|
2006-08-14 05:54:02 +08:00
|
|
|
// Match the '}'.
|
2006-08-15 12:55:54 +08:00
|
|
|
MatchRHSPunctuation(tok::r_brace, LBraceLoc);
|
2007-07-19 09:06:55 +08:00
|
|
|
return ExprResult(true); // an error occurred.
|
2006-08-14 05:54:02 +08:00
|
|
|
}
|
|
|
|
|