blob: 8a0318417829ed53c61da8bcb7fd6f900d0d644a [file] [log] [blame]
Chris Lattner7ad0fbe2006-11-05 07:46:30 +00001//===--- ParseDecl.cpp - Declaration Parsing ------------------------------===//
Chris Lattnerc0acd3d2006-07-31 05:13:43 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by Chris Lattner and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the Declaration portions of the Parser interfaces.
11//
12//===----------------------------------------------------------------------===//
13
14#include "clang/Parse/Parser.h"
Chris Lattner288e86ff12006-11-11 23:03:42 +000015#include "clang/Parse/DeclSpec.h"
Chris Lattner1a76a3c2007-08-26 06:24:45 +000016#include "clang/Parse/Scope.h"
Chris Lattnerad9ac942007-01-23 01:14:52 +000017#include "llvm/ADT/SmallSet.h"
Chris Lattnerc0acd3d2006-07-31 05:13:43 +000018using namespace clang;
19
20//===----------------------------------------------------------------------===//
21// C99 6.7: Declarations.
22//===----------------------------------------------------------------------===//
23
Chris Lattnerf5fbd792006-08-10 23:56:11 +000024/// ParseTypeName
25/// type-name: [C99 6.7.6]
26/// specifier-qualifier-list abstract-declarator[opt]
Chris Lattnere550a4e2006-08-24 06:37:51 +000027Parser::TypeTy *Parser::ParseTypeName() {
Chris Lattnerf5fbd792006-08-10 23:56:11 +000028 // Parse the common declaration-specifiers piece.
29 DeclSpec DS;
Chris Lattner1890ac82006-08-13 01:16:23 +000030 ParseSpecifierQualifierList(DS);
Chris Lattnerf5fbd792006-08-10 23:56:11 +000031
32 // Parse the abstract-declarator, if present.
33 Declarator DeclaratorInfo(DS, Declarator::TypeNameContext);
34 ParseDeclarator(DeclaratorInfo);
Chris Lattnere550a4e2006-08-24 06:37:51 +000035
Chris Lattner558cb292006-11-19 01:31:06 +000036 return Actions.ParseTypeName(CurScope, DeclaratorInfo).Val;
Chris Lattnerf5fbd792006-08-10 23:56:11 +000037}
38
Chris Lattnerb8cd5c22006-08-15 04:10:46 +000039/// ParseAttributes - Parse a non-empty attributes list.
40///
41/// [GNU] attributes:
42/// attribute
43/// attributes attribute
44///
45/// [GNU] attribute:
46/// '__attribute__' '(' '(' attribute-list ')' ')'
47///
48/// [GNU] attribute-list:
49/// attrib
50/// attribute_list ',' attrib
51///
52/// [GNU] attrib:
53/// empty
Steve Naroff0f2fe172007-06-01 17:11:19 +000054/// attrib-name
55/// attrib-name '(' identifier ')'
56/// attrib-name '(' identifier ',' nonempty-expr-list ')'
57/// attrib-name '(' argument-expression-list [C99 6.5.2] ')'
Chris Lattnerb8cd5c22006-08-15 04:10:46 +000058///
Steve Naroff0f2fe172007-06-01 17:11:19 +000059/// [GNU] attrib-name:
60/// identifier
61/// typespec
62/// typequal
63/// storageclass
64///
65/// FIXME: The GCC grammar/code for this construct implies we need two
66/// token lookahead. Comment from gcc: "If they start with an identifier
67/// which is followed by a comma or close parenthesis, then the arguments
68/// start with that identifier; otherwise they are an expression list."
69///
70/// At the moment, I am not doing 2 token lookahead. I am also unaware of
71/// any attributes that don't work (based on my limited testing). Most
72/// attributes are very simple in practice. Until we find a bug, I don't see
73/// a pressing need to implement the 2 token lookahead.
Chris Lattnerb8cd5c22006-08-15 04:10:46 +000074
Steve Naroffb8371e12007-06-09 03:39:29 +000075AttributeList *Parser::ParseAttributes() {
Steve Naroff0f2fe172007-06-01 17:11:19 +000076 assert(Tok.getKind() == tok::kw___attribute && "Not an attribute list!");
77
Steve Naroffb8371e12007-06-09 03:39:29 +000078 AttributeList *CurrAttr = 0;
Steve Naroff0f2fe172007-06-01 17:11:19 +000079
80 while (Tok.getKind() == tok::kw___attribute) {
81 ConsumeToken();
82 if (ExpectAndConsume(tok::l_paren, diag::err_expected_lparen_after,
83 "attribute")) {
84 SkipUntil(tok::r_paren, true); // skip until ) or ;
85 return CurrAttr;
86 }
87 if (ExpectAndConsume(tok::l_paren, diag::err_expected_lparen_after, "(")) {
88 SkipUntil(tok::r_paren, true); // skip until ) or ;
89 return CurrAttr;
90 }
91 // Parse the attribute-list. e.g. __attribute__(( weak, alias("__f") ))
92 while (Tok.getKind() == tok::identifier || isDeclarationSpecifier() ||
93 Tok.getKind() == tok::comma) {
94
95 if (Tok.getKind() == tok::comma) {
96 // allows for empty/non-empty attributes. ((__vector_size__(16),,,,))
97 ConsumeToken();
98 continue;
99 }
100 // we have an identifier or declaration specifier (const, int, etc.)
101 IdentifierInfo *AttrName = Tok.getIdentifierInfo();
102 SourceLocation AttrNameLoc = ConsumeToken();
Steve Naroff0f2fe172007-06-01 17:11:19 +0000103
104 // check if we have a "paramterized" attribute
105 if (Tok.getKind() == tok::l_paren) {
Steve Naroffb8371e12007-06-09 03:39:29 +0000106 ConsumeParen(); // ignore the left paren loc for now
Steve Naroff0f2fe172007-06-01 17:11:19 +0000107
108 if (Tok.getKind() == tok::identifier) {
109 IdentifierInfo *ParmName = Tok.getIdentifierInfo();
110 SourceLocation ParmLoc = ConsumeToken();
111
112 if (Tok.getKind() == tok::r_paren) {
113 // __attribute__(( mode(byte) ))
Steve Naroffb8371e12007-06-09 03:39:29 +0000114 ConsumeParen(); // ignore the right paren loc for now
115 CurrAttr = new AttributeList(AttrName, AttrNameLoc,
116 ParmName, ParmLoc, 0, 0, CurrAttr);
Steve Naroff0f2fe172007-06-01 17:11:19 +0000117 } else if (Tok.getKind() == tok::comma) {
118 ConsumeToken();
119 // __attribute__(( format(printf, 1, 2) ))
Chris Lattner23b7eb62007-06-15 23:05:46 +0000120 llvm::SmallVector<ExprTy*, 8> ArgExprs;
Steve Naroff0f2fe172007-06-01 17:11:19 +0000121 bool ArgExprsOk = true;
122
123 // now parse the non-empty comma separated list of expressions
124 while (1) {
125 ExprResult ArgExpr = ParseAssignmentExpression();
126 if (ArgExpr.isInvalid) {
127 ArgExprsOk = false;
128 SkipUntil(tok::r_paren);
129 break;
130 } else {
131 ArgExprs.push_back(ArgExpr.Val);
132 }
133 if (Tok.getKind() != tok::comma)
134 break;
135 ConsumeToken(); // Eat the comma, move to the next argument
136 }
137 if (ArgExprsOk && Tok.getKind() == tok::r_paren) {
Steve Naroffb8371e12007-06-09 03:39:29 +0000138 ConsumeParen(); // ignore the right paren loc for now
139 CurrAttr = new AttributeList(AttrName, AttrNameLoc, ParmName,
140 ParmLoc, &ArgExprs[0], ArgExprs.size(), CurrAttr);
Steve Naroff0f2fe172007-06-01 17:11:19 +0000141 }
142 }
143 } else { // not an identifier
144 // parse a possibly empty comma separated list of expressions
145 if (Tok.getKind() == tok::r_paren) {
146 // __attribute__(( nonnull() ))
Steve Naroffb8371e12007-06-09 03:39:29 +0000147 ConsumeParen(); // ignore the right paren loc for now
148 CurrAttr = new AttributeList(AttrName, AttrNameLoc,
149 0, SourceLocation(), 0, 0, CurrAttr);
Steve Naroff0f2fe172007-06-01 17:11:19 +0000150 } else {
151 // __attribute__(( aligned(16) ))
Chris Lattner23b7eb62007-06-15 23:05:46 +0000152 llvm::SmallVector<ExprTy*, 8> ArgExprs;
Steve Naroff0f2fe172007-06-01 17:11:19 +0000153 bool ArgExprsOk = true;
154
155 // now parse the list of expressions
156 while (1) {
157 ExprResult ArgExpr = ParseAssignmentExpression();
158 if (ArgExpr.isInvalid) {
159 ArgExprsOk = false;
160 SkipUntil(tok::r_paren);
161 break;
162 } else {
163 ArgExprs.push_back(ArgExpr.Val);
164 }
165 if (Tok.getKind() != tok::comma)
166 break;
167 ConsumeToken(); // Eat the comma, move to the next argument
168 }
169 // Match the ')'.
170 if (ArgExprsOk && Tok.getKind() == tok::r_paren) {
Steve Naroffb8371e12007-06-09 03:39:29 +0000171 ConsumeParen(); // ignore the right paren loc for now
172 CurrAttr = new AttributeList(AttrName, AttrNameLoc, 0,
173 SourceLocation(), &ArgExprs[0], ArgExprs.size(),
174 CurrAttr);
Steve Naroff0f2fe172007-06-01 17:11:19 +0000175 }
176 }
177 }
178 } else {
Steve Naroffb8371e12007-06-09 03:39:29 +0000179 CurrAttr = new AttributeList(AttrName, AttrNameLoc,
180 0, SourceLocation(), 0, 0, CurrAttr);
Steve Naroff0f2fe172007-06-01 17:11:19 +0000181 }
182 }
Steve Naroff98d153c2007-06-06 23:19:11 +0000183 if (ExpectAndConsume(tok::r_paren, diag::err_expected_rparen))
184 SkipUntil(tok::r_paren, false);
185 if (ExpectAndConsume(tok::r_paren, diag::err_expected_rparen))
186 SkipUntil(tok::r_paren, false);
Steve Naroff0f2fe172007-06-01 17:11:19 +0000187 }
188 return CurrAttr;
189}
Chris Lattnerf5fbd792006-08-10 23:56:11 +0000190
Chris Lattner53361ac2006-08-10 05:19:57 +0000191/// ParseDeclaration - Parse a full 'declaration', which consists of
192/// declaration-specifiers, some number of declarators, and a semicolon.
193/// 'Context' should be a Declarator::TheContext value.
Chris Lattnera5235172007-08-25 06:57:03 +0000194///
195/// declaration: [C99 6.7]
196/// block-declaration ->
197/// simple-declaration
198/// others [FIXME]
199/// [C++] namespace-definition
200/// others... [FIXME]
201///
Chris Lattner302b4be2006-11-19 02:31:38 +0000202Parser::DeclTy *Parser::ParseDeclaration(unsigned Context) {
Chris Lattnera5235172007-08-25 06:57:03 +0000203 switch (Tok.getKind()) {
204 case tok::kw_namespace:
205 return ParseNamespace(Context);
206 default:
207 return ParseSimpleDeclaration(Context);
208 }
209}
210
211/// simple-declaration: [C99 6.7: declaration] [C++ 7p1: dcl.dcl]
212/// declaration-specifiers init-declarator-list[opt] ';'
213///[C90/C++]init-declarator-list ';' [TODO]
214/// [OMP] threadprivate-directive [TODO]
215Parser::DeclTy *Parser::ParseSimpleDeclaration(unsigned Context) {
Chris Lattner53361ac2006-08-10 05:19:57 +0000216 // Parse the common declaration-specifiers piece.
217 DeclSpec DS;
218 ParseDeclarationSpecifiers(DS);
219
Chris Lattner0e894622006-08-13 19:58:17 +0000220 // C99 6.7.2.3p6: Handle "struct-or-union identifier;", "enum { X };"
221 // declaration-specifiers init-declarator-list[opt] ';'
222 if (Tok.getKind() == tok::semi) {
Chris Lattner0e894622006-08-13 19:58:17 +0000223 ConsumeToken();
Chris Lattner200bdc32006-11-19 02:43:37 +0000224 return Actions.ParsedFreeStandingDeclSpec(CurScope, DS);
Chris Lattner0e894622006-08-13 19:58:17 +0000225 }
226
Chris Lattner53361ac2006-08-10 05:19:57 +0000227 Declarator DeclaratorInfo(DS, (Declarator::TheContext)Context);
228 ParseDeclarator(DeclaratorInfo);
229
Chris Lattner302b4be2006-11-19 02:31:38 +0000230 return ParseInitDeclaratorListAfterFirstDeclarator(DeclaratorInfo);
Chris Lattner53361ac2006-08-10 05:19:57 +0000231}
232
Chris Lattnera5235172007-08-25 06:57:03 +0000233
Chris Lattnerf0f3baa2006-08-14 00:15:20 +0000234/// ParseInitDeclaratorListAfterFirstDeclarator - Parse 'declaration' after
235/// parsing 'declaration-specifiers declarator'. This method is split out this
236/// way to handle the ambiguity between top-level function-definitions and
237/// declarations.
238///
Chris Lattnerf0f3baa2006-08-14 00:15:20 +0000239/// init-declarator-list: [C99 6.7]
240/// init-declarator
241/// init-declarator-list ',' init-declarator
242/// init-declarator: [C99 6.7]
243/// declarator
244/// declarator '=' initializer
Chris Lattner6d7e6342006-08-15 03:41:14 +0000245/// [GNU] declarator simple-asm-expr[opt] attributes[opt]
246/// [GNU] declarator simple-asm-expr[opt] attributes[opt] '=' initializer
Chris Lattnerf0f3baa2006-08-14 00:15:20 +0000247///
Chris Lattner2dacc3f2006-10-16 00:33:54 +0000248Parser::DeclTy *Parser::
249ParseInitDeclaratorListAfterFirstDeclarator(Declarator &D) {
250
251 // Declarators may be grouped together ("int X, *Y, Z();"). Provide info so
252 // that they can be chained properly if the actions want this.
253 Parser::DeclTy *LastDeclInGroup = 0;
254
Chris Lattner53361ac2006-08-10 05:19:57 +0000255 // At this point, we know that it is not a function definition. Parse the
256 // rest of the init-declarator-list.
257 while (1) {
Chris Lattner6d7e6342006-08-15 03:41:14 +0000258 // If a simple-asm-expr is present, parse it.
259 if (Tok.getKind() == tok::kw_asm)
260 ParseSimpleAsm();
261
Chris Lattnerb8cd5c22006-08-15 04:10:46 +0000262 // If attributes are present, parse them.
263 if (Tok.getKind() == tok::kw___attribute)
Steve Naroff0f05a7a2007-06-09 23:38:17 +0000264 D.AddAttributes(ParseAttributes());
Chris Lattner6d7e6342006-08-15 03:41:14 +0000265
Chris Lattner53361ac2006-08-10 05:19:57 +0000266 // Parse declarator '=' initializer.
Chris Lattnerf0f3baa2006-08-14 00:15:20 +0000267 ExprResult Init;
Chris Lattner53361ac2006-08-10 05:19:57 +0000268 if (Tok.getKind() == tok::equal) {
269 ConsumeToken();
Chris Lattnerf0f3baa2006-08-14 00:15:20 +0000270 Init = ParseInitializer();
Chris Lattner2dacc3f2006-10-16 00:33:54 +0000271 if (Init.isInvalid) {
Chris Lattnerf0f3baa2006-08-14 00:15:20 +0000272 SkipUntil(tok::semi);
Chris Lattner2dacc3f2006-10-16 00:33:54 +0000273 return 0;
Chris Lattnerf0f3baa2006-08-14 00:15:20 +0000274 }
Chris Lattner53361ac2006-08-10 05:19:57 +0000275 }
276
Chris Lattner697e5d62006-11-09 06:32:27 +0000277 // Inform the current actions module that we just parsed this declarator.
Chris Lattner289ab7b2006-11-08 06:54:53 +0000278 // FIXME: pass asm & attributes.
Chris Lattner2dacc3f2006-10-16 00:33:54 +0000279 LastDeclInGroup = Actions.ParseDeclarator(CurScope, D, Init.Val,
280 LastDeclInGroup);
Chris Lattner53361ac2006-08-10 05:19:57 +0000281
282 // If we don't have a comma, it is either the end of the list (a ';') or an
283 // error, bail out.
284 if (Tok.getKind() != tok::comma)
285 break;
286
287 // Consume the comma.
288 ConsumeToken();
289
290 // Parse the next declarator.
291 D.clear();
292 ParseDeclarator(D);
293 }
294
295 if (Tok.getKind() == tok::semi) {
296 ConsumeToken();
Chris Lattner776fac82007-06-09 00:53:06 +0000297 return Actions.FinalizeDeclaratorGroup(CurScope, LastDeclInGroup);
Chris Lattner53361ac2006-08-10 05:19:57 +0000298 }
Chris Lattner776fac82007-06-09 00:53:06 +0000299
300 Diag(Tok, diag::err_parse_error);
301 // Skip to end of block or statement
Chris Lattner43ba2512007-08-21 18:36:18 +0000302 SkipUntil(tok::r_brace, true, true);
Chris Lattner776fac82007-06-09 00:53:06 +0000303 if (Tok.getKind() == tok::semi)
304 ConsumeToken();
305 return 0;
Chris Lattner53361ac2006-08-10 05:19:57 +0000306}
307
Chris Lattner1890ac82006-08-13 01:16:23 +0000308/// ParseSpecifierQualifierList
309/// specifier-qualifier-list:
310/// type-specifier specifier-qualifier-list[opt]
311/// type-qualifier specifier-qualifier-list[opt]
Chris Lattnere37e2332006-08-15 04:50:22 +0000312/// [GNU] attributes specifier-qualifier-list[opt]
Chris Lattner1890ac82006-08-13 01:16:23 +0000313///
314void Parser::ParseSpecifierQualifierList(DeclSpec &DS) {
315 /// specifier-qualifier-list is a subset of declaration-specifiers. Just
316 /// parse declaration-specifiers and complain about extra stuff.
Chris Lattner1890ac82006-08-13 01:16:23 +0000317 ParseDeclarationSpecifiers(DS);
318
319 // Validate declspec for type-name.
320 unsigned Specs = DS.getParsedSpecifiers();
321 if (Specs == DeclSpec::PQ_None)
322 Diag(Tok, diag::err_typename_requires_specqual);
323
Chris Lattner1b22eed2006-11-28 05:12:07 +0000324 // Issue diagnostic and remove storage class if present.
Chris Lattner1890ac82006-08-13 01:16:23 +0000325 if (Specs & DeclSpec::PQ_StorageClassSpecifier) {
Chris Lattner1b22eed2006-11-28 05:12:07 +0000326 if (DS.getStorageClassSpecLoc().isValid())
327 Diag(DS.getStorageClassSpecLoc(),diag::err_typename_invalid_storageclass);
328 else
329 Diag(DS.getThreadSpecLoc(), diag::err_typename_invalid_storageclass);
Chris Lattnera925dc62006-11-28 04:33:46 +0000330 DS.ClearStorageClassSpecs();
Chris Lattner1890ac82006-08-13 01:16:23 +0000331 }
Chris Lattner1b22eed2006-11-28 05:12:07 +0000332
333 // Issue diagnostic and remove function specfier if present.
Chris Lattner1890ac82006-08-13 01:16:23 +0000334 if (Specs & DeclSpec::PQ_FunctionSpecifier) {
Chris Lattner1b22eed2006-11-28 05:12:07 +0000335 Diag(DS.getInlineSpecLoc(), diag::err_typename_invalid_functionspec);
Chris Lattnera925dc62006-11-28 04:33:46 +0000336 DS.ClearFunctionSpecs();
Chris Lattner1890ac82006-08-13 01:16:23 +0000337 }
338}
Chris Lattner53361ac2006-08-10 05:19:57 +0000339
Chris Lattnerc0acd3d2006-07-31 05:13:43 +0000340/// ParseDeclarationSpecifiers
341/// declaration-specifiers: [C99 6.7]
Chris Lattner3b561a32006-08-13 00:12:11 +0000342/// storage-class-specifier declaration-specifiers[opt]
343/// type-specifier declaration-specifiers[opt]
344/// type-qualifier declaration-specifiers[opt]
345/// [C99] function-specifier declaration-specifiers[opt]
Chris Lattnere37e2332006-08-15 04:50:22 +0000346/// [GNU] attributes declaration-specifiers[opt]
Chris Lattnerc0acd3d2006-07-31 05:13:43 +0000347///
Chris Lattnerf63f89a2006-08-05 03:28:50 +0000348/// storage-class-specifier: [C99 6.7.1]
Chris Lattnerda48a8e2006-08-04 05:25:55 +0000349/// 'typedef'
350/// 'extern'
351/// 'static'
352/// 'auto'
353/// 'register'
354/// [GNU] '__thread'
Chris Lattnerc0acd3d2006-07-31 05:13:43 +0000355/// type-specifier: [C99 6.7.2]
356/// 'void'
357/// 'char'
358/// 'short'
359/// 'int'
360/// 'long'
361/// 'float'
362/// 'double'
363/// 'signed'
364/// 'unsigned'
Chris Lattner1890ac82006-08-13 01:16:23 +0000365/// struct-or-union-specifier
Chris Lattner3b561a32006-08-13 00:12:11 +0000366/// enum-specifier
Chris Lattner3b4fdda32006-08-14 00:45:39 +0000367/// typedef-name
Bill Wendling4073ed52007-02-13 01:51:42 +0000368/// [C++] 'bool'
Chris Lattnerc0acd3d2006-07-31 05:13:43 +0000369/// [C99] '_Bool'
370/// [C99] '_Complex'
Chris Lattnerda48a8e2006-08-04 05:25:55 +0000371/// [C99] '_Imaginary' // Removed in TC2?
372/// [GNU] '_Decimal32'
373/// [GNU] '_Decimal64'
374/// [GNU] '_Decimal128'
Steve Naroff872da802007-07-31 23:56:32 +0000375/// [GNU] typeof-specifier
Chris Lattner3b561a32006-08-13 00:12:11 +0000376/// [OBJC] class-name objc-protocol-refs[opt] [TODO]
Steve Naroff7e901fd2007-08-22 23:18:22 +0000377/// [OBJC] typedef-name objc-protocol-refs[opt] [TODO]
Chris Lattnerda48a8e2006-08-04 05:25:55 +0000378/// type-qualifier:
Chris Lattner3b561a32006-08-13 00:12:11 +0000379/// 'const'
380/// 'volatile'
381/// [C99] 'restrict'
Chris Lattnerb9093cd2006-08-04 04:39:53 +0000382/// function-specifier: [C99 6.7.4]
Chris Lattner3b561a32006-08-13 00:12:11 +0000383/// [C99] 'inline'
Chris Lattnerb9093cd2006-08-04 04:39:53 +0000384///
385void Parser::ParseDeclarationSpecifiers(DeclSpec &DS) {
Chris Lattner02c04392007-07-25 00:24:17 +0000386 DS.Range.setBegin(Tok.getLocation());
Chris Lattnerc0acd3d2006-07-31 05:13:43 +0000387 while (1) {
Chris Lattnerda48a8e2006-08-04 05:25:55 +0000388 int isInvalid = false;
Chris Lattnerb9093cd2006-08-04 04:39:53 +0000389 const char *PrevSpec = 0;
Chris Lattner4d8f8732006-11-28 05:05:08 +0000390 SourceLocation Loc = Tok.getLocation();
391
Chris Lattnerc0acd3d2006-07-31 05:13:43 +0000392 switch (Tok.getKind()) {
Chris Lattner3b4fdda32006-08-14 00:45:39 +0000393 // typedef-name
394 case tok::identifier:
395 // This identifier can only be a typedef name if we haven't already seen
Chris Lattner5646b3e2006-08-15 05:12:01 +0000396 // a type-specifier. Without this check we misparse:
397 // typedef int X; struct Y { short X; }; as 'short int'.
Chris Lattnerf055d432006-11-28 04:28:12 +0000398 if (!DS.hasTypeSpecifier()) {
Chris Lattner2ebe4bb2006-11-20 01:29:42 +0000399 // It has to be available as a typedef too!
400 if (void *TypeRep = Actions.isTypeName(*Tok.getIdentifierInfo(),
401 CurScope)) {
Chris Lattnerb20e8942006-11-28 05:30:29 +0000402 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_typedef, Loc, PrevSpec,
Chris Lattner2ebe4bb2006-11-20 01:29:42 +0000403 TypeRep);
Steve Naroff7e901fd2007-08-22 23:18:22 +0000404 if (isInvalid)
405 break;
406 else { // FIXME: restrict this to "id" and ObjC classnames.
407 DS.Range.setEnd(Tok.getLocation());
408 ConsumeToken(); // The identifier
409 if (Tok.getKind() == tok::less)
410 ParseObjCProtocolReferences();
411 continue;
412 }
Chris Lattner2ebe4bb2006-11-20 01:29:42 +0000413 }
Chris Lattner3b4fdda32006-08-14 00:45:39 +0000414 }
415 // FALL THROUGH.
Chris Lattnerb9093cd2006-08-04 04:39:53 +0000416 default:
417 // If this is not a declaration specifier token, we're done reading decl
418 // specifiers. First verify that DeclSpec's are consistent.
Chris Lattnerb20e8942006-11-28 05:30:29 +0000419 DS.Finish(Diags, getLang());
Chris Lattnerb9093cd2006-08-04 04:39:53 +0000420 return;
Chris Lattnere37e2332006-08-15 04:50:22 +0000421
422 // GNU attributes support.
423 case tok::kw___attribute:
Steve Naroff0f05a7a2007-06-09 23:38:17 +0000424 DS.AddAttributes(ParseAttributes());
Chris Lattnerb95cca02006-10-17 03:01:08 +0000425 continue;
Chris Lattnerf63f89a2006-08-05 03:28:50 +0000426
427 // storage-class-specifier
428 case tok::kw_typedef:
Chris Lattner4d8f8732006-11-28 05:05:08 +0000429 isInvalid = DS.SetStorageClassSpec(DeclSpec::SCS_typedef, Loc, PrevSpec);
Chris Lattnerf63f89a2006-08-05 03:28:50 +0000430 break;
431 case tok::kw_extern:
Chris Lattner353f5742006-11-28 04:50:12 +0000432 if (DS.isThreadSpecified())
Chris Lattnerf63f89a2006-08-05 03:28:50 +0000433 Diag(Tok, diag::ext_thread_before, "extern");
Chris Lattner4d8f8732006-11-28 05:05:08 +0000434 isInvalid = DS.SetStorageClassSpec(DeclSpec::SCS_extern, Loc, PrevSpec);
Chris Lattnerf63f89a2006-08-05 03:28:50 +0000435 break;
436 case tok::kw_static:
Chris Lattner353f5742006-11-28 04:50:12 +0000437 if (DS.isThreadSpecified())
Chris Lattnerf63f89a2006-08-05 03:28:50 +0000438 Diag(Tok, diag::ext_thread_before, "static");
Chris Lattner4d8f8732006-11-28 05:05:08 +0000439 isInvalid = DS.SetStorageClassSpec(DeclSpec::SCS_static, Loc, PrevSpec);
Chris Lattnerf63f89a2006-08-05 03:28:50 +0000440 break;
441 case tok::kw_auto:
Chris Lattner4d8f8732006-11-28 05:05:08 +0000442 isInvalid = DS.SetStorageClassSpec(DeclSpec::SCS_auto, Loc, PrevSpec);
Chris Lattnerf63f89a2006-08-05 03:28:50 +0000443 break;
444 case tok::kw_register:
Chris Lattner4d8f8732006-11-28 05:05:08 +0000445 isInvalid = DS.SetStorageClassSpec(DeclSpec::SCS_register, Loc, PrevSpec);
Chris Lattnerf63f89a2006-08-05 03:28:50 +0000446 break;
447 case tok::kw___thread:
Chris Lattner4d8f8732006-11-28 05:05:08 +0000448 isInvalid = DS.SetStorageClassSpecThread(Loc, PrevSpec)*2;
Chris Lattnerf63f89a2006-08-05 03:28:50 +0000449 break;
450
Chris Lattnerc0acd3d2006-07-31 05:13:43 +0000451 // type-specifiers
Chris Lattnerb9093cd2006-08-04 04:39:53 +0000452 case tok::kw_short:
Chris Lattnerb20e8942006-11-28 05:30:29 +0000453 isInvalid = DS.SetTypeSpecWidth(DeclSpec::TSW_short, Loc, PrevSpec);
Chris Lattnerb9093cd2006-08-04 04:39:53 +0000454 break;
455 case tok::kw_long:
Chris Lattner353f5742006-11-28 04:50:12 +0000456 if (DS.getTypeSpecWidth() != DeclSpec::TSW_long)
Chris Lattnerb20e8942006-11-28 05:30:29 +0000457 isInvalid = DS.SetTypeSpecWidth(DeclSpec::TSW_long, Loc, PrevSpec);
Chris Lattner353f5742006-11-28 04:50:12 +0000458 else
Chris Lattnerb20e8942006-11-28 05:30:29 +0000459 isInvalid = DS.SetTypeSpecWidth(DeclSpec::TSW_longlong, Loc, PrevSpec);
Chris Lattnerb9093cd2006-08-04 04:39:53 +0000460 break;
461 case tok::kw_signed:
Chris Lattnerb20e8942006-11-28 05:30:29 +0000462 isInvalid = DS.SetTypeSpecSign(DeclSpec::TSS_signed, Loc, PrevSpec);
Chris Lattnerb9093cd2006-08-04 04:39:53 +0000463 break;
464 case tok::kw_unsigned:
Chris Lattnerb20e8942006-11-28 05:30:29 +0000465 isInvalid = DS.SetTypeSpecSign(DeclSpec::TSS_unsigned, Loc, PrevSpec);
Chris Lattnerb9093cd2006-08-04 04:39:53 +0000466 break;
467 case tok::kw__Complex:
Chris Lattnerb20e8942006-11-28 05:30:29 +0000468 isInvalid = DS.SetTypeSpecComplex(DeclSpec::TSC_complex, Loc, PrevSpec);
Chris Lattnerb9093cd2006-08-04 04:39:53 +0000469 break;
470 case tok::kw__Imaginary:
Chris Lattnerb20e8942006-11-28 05:30:29 +0000471 isInvalid = DS.SetTypeSpecComplex(DeclSpec::TSC_imaginary, Loc, PrevSpec);
Chris Lattnerb9093cd2006-08-04 04:39:53 +0000472 break;
473 case tok::kw_void:
Chris Lattnerb20e8942006-11-28 05:30:29 +0000474 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_void, Loc, PrevSpec);
Chris Lattnerb9093cd2006-08-04 04:39:53 +0000475 break;
Chris Lattnerc0acd3d2006-07-31 05:13:43 +0000476 case tok::kw_char:
Chris Lattnerb20e8942006-11-28 05:30:29 +0000477 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_char, Loc, PrevSpec);
Chris Lattnerb9093cd2006-08-04 04:39:53 +0000478 break;
Chris Lattnerc0acd3d2006-07-31 05:13:43 +0000479 case tok::kw_int:
Chris Lattnerb20e8942006-11-28 05:30:29 +0000480 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_int, Loc, PrevSpec);
Chris Lattnerb9093cd2006-08-04 04:39:53 +0000481 break;
482 case tok::kw_float:
Chris Lattnerb20e8942006-11-28 05:30:29 +0000483 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_float, Loc, PrevSpec);
Chris Lattnerb9093cd2006-08-04 04:39:53 +0000484 break;
Chris Lattnerc0acd3d2006-07-31 05:13:43 +0000485 case tok::kw_double:
Chris Lattnerb20e8942006-11-28 05:30:29 +0000486 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_double, Loc, PrevSpec);
Chris Lattnerb9093cd2006-08-04 04:39:53 +0000487 break;
Bill Wendling4073ed52007-02-13 01:51:42 +0000488 case tok::kw_bool: // [C++ 2.11p1]
Chris Lattnerc0acd3d2006-07-31 05:13:43 +0000489 case tok::kw__Bool:
Chris Lattnerb20e8942006-11-28 05:30:29 +0000490 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_bool, Loc, PrevSpec);
Chris Lattnerb9093cd2006-08-04 04:39:53 +0000491 break;
492 case tok::kw__Decimal32:
Chris Lattnerb20e8942006-11-28 05:30:29 +0000493 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_decimal32, Loc, PrevSpec);
Chris Lattnerb9093cd2006-08-04 04:39:53 +0000494 break;
495 case tok::kw__Decimal64:
Chris Lattnerb20e8942006-11-28 05:30:29 +0000496 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_decimal64, Loc, PrevSpec);
Chris Lattnerb9093cd2006-08-04 04:39:53 +0000497 break;
498 case tok::kw__Decimal128:
Chris Lattnerb20e8942006-11-28 05:30:29 +0000499 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_decimal128, Loc, PrevSpec);
Chris Lattnerc0acd3d2006-07-31 05:13:43 +0000500 break;
501
Chris Lattner1890ac82006-08-13 01:16:23 +0000502 case tok::kw_struct:
503 case tok::kw_union:
504 ParseStructUnionSpecifier(DS);
505 continue;
Chris Lattner3b561a32006-08-13 00:12:11 +0000506 case tok::kw_enum:
507 ParseEnumSpecifier(DS);
508 continue;
Chris Lattnerda48a8e2006-08-04 05:25:55 +0000509
Steve Naroffad373bd2007-07-31 12:34:36 +0000510 // GNU typeof support.
511 case tok::kw_typeof:
512 ParseTypeofSpecifier(DS);
513 continue;
514
Chris Lattnerda48a8e2006-08-04 05:25:55 +0000515 // type-qualifier
516 case tok::kw_const:
Chris Lattner60809f52006-11-28 05:18:46 +0000517 isInvalid = DS.SetTypeQual(DeclSpec::TQ_const , Loc, PrevSpec,
518 getLang())*2;
Chris Lattnerda48a8e2006-08-04 05:25:55 +0000519 break;
520 case tok::kw_volatile:
Chris Lattner60809f52006-11-28 05:18:46 +0000521 isInvalid = DS.SetTypeQual(DeclSpec::TQ_volatile, Loc, PrevSpec,
522 getLang())*2;
Chris Lattnerda48a8e2006-08-04 05:25:55 +0000523 break;
524 case tok::kw_restrict:
Chris Lattner60809f52006-11-28 05:18:46 +0000525 isInvalid = DS.SetTypeQual(DeclSpec::TQ_restrict, Loc, PrevSpec,
526 getLang())*2;
Chris Lattnerda48a8e2006-08-04 05:25:55 +0000527 break;
Chris Lattnerb9093cd2006-08-04 04:39:53 +0000528
529 // function-specifier
530 case tok::kw_inline:
Chris Lattner1b22eed2006-11-28 05:12:07 +0000531 isInvalid = DS.SetFunctionSpecInline(Loc, PrevSpec);
Chris Lattnerb9093cd2006-08-04 04:39:53 +0000532 break;
Chris Lattnerc0acd3d2006-07-31 05:13:43 +0000533 }
Chris Lattnerb9093cd2006-08-04 04:39:53 +0000534 // If the specifier combination wasn't legal, issue a diagnostic.
535 if (isInvalid) {
536 assert(PrevSpec && "Method did not return previous specifier!");
Chris Lattnerda48a8e2006-08-04 05:25:55 +0000537 if (isInvalid == 1) // Error.
538 Diag(Tok, diag::err_invalid_decl_spec_combination, PrevSpec);
539 else // extwarn.
540 Diag(Tok, diag::ext_duplicate_declspec, PrevSpec);
Chris Lattnerb9093cd2006-08-04 04:39:53 +0000541 }
Chris Lattner02c04392007-07-25 00:24:17 +0000542 DS.Range.setEnd(Tok.getLocation());
Chris Lattnerb9093cd2006-08-04 04:39:53 +0000543 ConsumeToken();
Chris Lattnerc0acd3d2006-07-31 05:13:43 +0000544 }
545}
546
Chris Lattnerffbc2712007-01-25 06:05:38 +0000547/// ParseTag - Parse "struct-or-union-or-class-or-enum identifier[opt]", where
548/// the first token has already been read and has been turned into an instance
549/// of DeclSpec::TST (TagType). This returns true if there is an error parsing,
550/// otherwise it returns false and fills in Decl.
551bool Parser::ParseTag(DeclTy *&Decl, unsigned TagType, SourceLocation StartLoc){
Steve Naroffb8371e12007-06-09 03:39:29 +0000552 AttributeList *Attr = 0;
Chris Lattnere37e2332006-08-15 04:50:22 +0000553 // If attributes exist after tag, parse them.
554 if (Tok.getKind() == tok::kw___attribute)
Steve Naroffb8371e12007-06-09 03:39:29 +0000555 Attr = ParseAttributes();
Chris Lattnerffbc2712007-01-25 06:05:38 +0000556
Chris Lattner1890ac82006-08-13 01:16:23 +0000557 // Must have either 'struct name' or 'struct {...}'.
558 if (Tok.getKind() != tok::identifier &&
559 Tok.getKind() != tok::l_brace) {
560 Diag(Tok, diag::err_expected_ident_lbrace);
Chris Lattner02c04392007-07-25 00:24:17 +0000561
562 // Skip the rest of this declarator, up until the comma or semicolon.
563 SkipUntil(tok::comma, true);
Chris Lattnerffbc2712007-01-25 06:05:38 +0000564 return true;
Chris Lattner1890ac82006-08-13 01:16:23 +0000565 }
566
Chris Lattner8c6519a2007-01-22 07:41:36 +0000567 // If an identifier is present, consume and remember it.
568 IdentifierInfo *Name = 0;
569 SourceLocation NameLoc;
570 if (Tok.getKind() == tok::identifier) {
571 Name = Tok.getIdentifierInfo();
572 NameLoc = ConsumeToken();
573 }
Chris Lattner1890ac82006-08-13 01:16:23 +0000574
Chris Lattner8c6519a2007-01-22 07:41:36 +0000575 // There are three options here. If we have 'struct foo;', then this is a
576 // forward declaration. If we have 'struct foo {...' then this is a
Chris Lattner7b9ace62007-01-23 20:11:08 +0000577 // definition. Otherwise we have something like 'struct foo xyz', a reference.
Chris Lattner8799cf22007-01-23 01:57:16 +0000578 //
579 // This is needed to handle stuff like this right (C99 6.7.2.3p11):
580 // struct foo {..}; void bar() { struct foo; } <- new foo in bar.
581 // struct foo {..}; void bar() { struct foo x; } <- use of old foo.
582 //
Chris Lattner7b9ace62007-01-23 20:11:08 +0000583 Action::TagKind TK;
584 if (Tok.getKind() == tok::l_brace)
585 TK = Action::TK_Definition;
586 else if (Tok.getKind() == tok::semi)
587 TK = Action::TK_Declaration;
588 else
589 TK = Action::TK_Reference;
Steve Naroffb8371e12007-06-09 03:39:29 +0000590 Decl = Actions.ParseTag(CurScope, TagType, TK, StartLoc, Name, NameLoc, Attr);
Chris Lattnerffbc2712007-01-25 06:05:38 +0000591 return false;
592}
593
594
595/// ParseStructUnionSpecifier
596/// struct-or-union-specifier: [C99 6.7.2.1]
597/// struct-or-union identifier[opt] '{' struct-contents '}'
598/// struct-or-union identifier
599/// [GNU] struct-or-union attributes[opt] identifier[opt] '{' struct-contents
600/// '}' attributes[opt]
601/// [GNU] struct-or-union attributes[opt] identifier
602/// struct-or-union:
603/// 'struct'
604/// 'union'
605///
606void Parser::ParseStructUnionSpecifier(DeclSpec &DS) {
607 assert((Tok.getKind() == tok::kw_struct ||
608 Tok.getKind() == tok::kw_union) && "Not a struct/union specifier");
609 DeclSpec::TST TagType =
610 Tok.getKind() == tok::kw_union ? DeclSpec::TST_union : DeclSpec::TST_struct;
611 SourceLocation StartLoc = ConsumeToken();
612
613 // Parse the tag portion of this.
614 DeclTy *TagDecl;
615 if (ParseTag(TagDecl, TagType, StartLoc))
616 return;
Chris Lattnerbf0b7982007-01-23 04:27:41 +0000617
Chris Lattner90a26b02007-01-23 04:38:16 +0000618 // If there is a body, parse it and inform the actions module.
619 if (Tok.getKind() == tok::l_brace)
Chris Lattner1300fb92007-01-23 23:42:53 +0000620 ParseStructUnionBody(StartLoc, TagType, TagDecl);
Chris Lattnerda72c822006-08-13 22:16:42 +0000621
622 const char *PrevSpec = 0;
Chris Lattnerb9d572a2007-01-23 04:58:34 +0000623 if (DS.SetTypeSpecType(TagType, StartLoc, PrevSpec, TagDecl))
Chris Lattnerb20e8942006-11-28 05:30:29 +0000624 Diag(StartLoc, diag::err_invalid_decl_spec_combination, PrevSpec);
Chris Lattner1890ac82006-08-13 01:16:23 +0000625}
626
Steve Naroff97170802007-08-20 22:28:22 +0000627/// ParseStructDeclaration
Chris Lattner90a26b02007-01-23 04:38:16 +0000628/// struct-declaration:
629/// specifier-qualifier-list struct-declarator-list ';'
Chris Lattner736ed5d2007-06-09 05:59:07 +0000630/// [GNU] __extension__ struct-declaration
631/// [GNU] specifier-qualifier-list ';'
Chris Lattner90a26b02007-01-23 04:38:16 +0000632/// struct-declarator-list:
633/// struct-declarator
634/// struct-declarator-list ',' struct-declarator
635/// [GNU] struct-declarator-list ',' attributes[opt] struct-declarator
636/// struct-declarator:
637/// declarator
638/// [GNU] declarator attributes[opt]
639/// declarator[opt] ':' constant-expression
640/// [GNU] declarator[opt] ':' constant-expression attributes[opt]
641///
Steve Naroff97170802007-08-20 22:28:22 +0000642void Parser::ParseStructDeclaration(DeclTy *TagDecl,
643 llvm::SmallVector<DeclTy*, 32> &FieldDecls) {
644 // FIXME: When __extension__ is specified, disable extension diagnostics.
645 if (Tok.getKind() == tok::kw___extension__)
646 ConsumeToken();
647
648 // Parse the common specifier-qualifiers-list piece.
649 DeclSpec DS;
650 SourceLocation SpecQualLoc = Tok.getLocation();
651 ParseSpecifierQualifierList(DS);
652 // TODO: Does specifier-qualifier list correctly check that *something* is
653 // specified?
654
655 // If there are no declarators, issue a warning.
656 if (Tok.getKind() == tok::semi) {
657 Diag(SpecQualLoc, diag::w_no_declarators);
658 ConsumeToken();
659 return;
660 }
661
662 // Read struct-declarators until we find the semicolon.
663 Declarator DeclaratorInfo(DS, Declarator::MemberContext);
664
665 while (1) {
666 /// struct-declarator: declarator
667 /// struct-declarator: declarator[opt] ':' constant-expression
668 if (Tok.getKind() != tok::colon)
669 ParseDeclarator(DeclaratorInfo);
670
671 ExprTy *BitfieldSize = 0;
672 if (Tok.getKind() == tok::colon) {
673 ConsumeToken();
674 ExprResult Res = ParseConstantExpression();
675 if (Res.isInvalid) {
676 SkipUntil(tok::semi, true, true);
677 } else {
678 BitfieldSize = Res.Val;
679 }
680 }
681
682 // If attributes exist after the declarator, parse them.
683 if (Tok.getKind() == tok::kw___attribute)
684 DeclaratorInfo.AddAttributes(ParseAttributes());
685
686 // Install the declarator into the current TagDecl.
687 DeclTy *Field = Actions.ParseField(CurScope, TagDecl, SpecQualLoc,
688 DeclaratorInfo, BitfieldSize);
689 FieldDecls.push_back(Field);
690
691 // If we don't have a comma, it is either the end of the list (a ';')
692 // or an error, bail out.
693 if (Tok.getKind() != tok::comma)
694 break;
695
696 // Consume the comma.
697 ConsumeToken();
698
699 // Parse the next declarator.
700 DeclaratorInfo.clear();
701
702 // Attributes are only allowed on the second declarator.
703 if (Tok.getKind() == tok::kw___attribute)
704 DeclaratorInfo.AddAttributes(ParseAttributes());
705 }
706 return;
707}
708
709/// ParseStructUnionBody
710/// struct-contents:
711/// struct-declaration-list
712/// [EXT] empty
713/// [GNU] "struct-declaration-list" without terminatoring ';'
714/// struct-declaration-list:
715/// struct-declaration
716/// struct-declaration-list struct-declaration
717/// [OBC] '@' 'defs' '(' class-name ')' [TODO]
718///
Chris Lattner1300fb92007-01-23 23:42:53 +0000719void Parser::ParseStructUnionBody(SourceLocation RecordLoc,
720 unsigned TagType, DeclTy *TagDecl) {
Chris Lattner90a26b02007-01-23 04:38:16 +0000721 SourceLocation LBraceLoc = ConsumeBrace();
722
Chris Lattner7b9ace62007-01-23 20:11:08 +0000723 // Empty structs are an extension in C (C99 6.7.2.1p7), but are allowed in
724 // C++.
Chris Lattner90a26b02007-01-23 04:38:16 +0000725 if (Tok.getKind() == tok::r_brace)
726 Diag(Tok, diag::ext_empty_struct_union_enum,
727 DeclSpec::getSpecifierName((DeclSpec::TST)TagType));
Chris Lattner7b9ace62007-01-23 20:11:08 +0000728
Chris Lattner23b7eb62007-06-15 23:05:46 +0000729 llvm::SmallVector<DeclTy*, 32> FieldDecls;
Chris Lattner1300fb92007-01-23 23:42:53 +0000730
Chris Lattner7b9ace62007-01-23 20:11:08 +0000731 // While we still have something to read, read the declarations in the struct.
Chris Lattner90a26b02007-01-23 04:38:16 +0000732 while (Tok.getKind() != tok::r_brace &&
733 Tok.getKind() != tok::eof) {
734 // Each iteration of this loop reads one struct-declaration.
735
Chris Lattner736ed5d2007-06-09 05:59:07 +0000736 // Check for extraneous top-level semicolon.
Chris Lattner36e46a22007-06-09 05:49:55 +0000737 if (Tok.getKind() == tok::semi) {
738 Diag(Tok, diag::ext_extra_struct_semi);
739 ConsumeToken();
740 continue;
741 }
Steve Naroff97170802007-08-20 22:28:22 +0000742 ParseStructDeclaration(TagDecl, FieldDecls);
Chris Lattner736ed5d2007-06-09 05:59:07 +0000743
Chris Lattner90a26b02007-01-23 04:38:16 +0000744 if (Tok.getKind() == tok::semi) {
745 ConsumeToken();
Chris Lattner0c7e82d2007-06-09 05:54:40 +0000746 } else if (Tok.getKind() == tok::r_brace) {
747 Diag(Tok.getLocation(), diag::ext_expected_semi_decl_list);
748 break;
Chris Lattner90a26b02007-01-23 04:38:16 +0000749 } else {
750 Diag(Tok, diag::err_expected_semi_decl_list);
751 // Skip to end of block or statement
752 SkipUntil(tok::r_brace, true, true);
753 }
754 }
755
756 MatchRHSPunctuation(tok::r_brace, LBraceLoc);
757
Chris Lattnerc1915e22007-01-25 07:29:02 +0000758 Actions.ParseRecordBody(RecordLoc, TagDecl, &FieldDecls[0],FieldDecls.size());
759
Steve Naroffb8371e12007-06-09 03:39:29 +0000760 AttributeList *AttrList = 0;
Chris Lattner90a26b02007-01-23 04:38:16 +0000761 // If attributes exist after struct contents, parse them.
762 if (Tok.getKind() == tok::kw___attribute)
Steve Naroff0f2fe172007-06-01 17:11:19 +0000763 AttrList = ParseAttributes(); // FIXME: where should I put them?
Chris Lattner90a26b02007-01-23 04:38:16 +0000764}
765
766
Chris Lattner3b561a32006-08-13 00:12:11 +0000767/// ParseEnumSpecifier
Chris Lattner1890ac82006-08-13 01:16:23 +0000768/// enum-specifier: [C99 6.7.2.2]
Chris Lattner3b561a32006-08-13 00:12:11 +0000769/// 'enum' identifier[opt] '{' enumerator-list '}'
770/// [C99] 'enum' identifier[opt] '{' enumerator-list ',' '}'
Chris Lattnere37e2332006-08-15 04:50:22 +0000771/// [GNU] 'enum' attributes[opt] identifier[opt] '{' enumerator-list ',' [opt]
772/// '}' attributes[opt]
Chris Lattner3b561a32006-08-13 00:12:11 +0000773/// 'enum' identifier
Chris Lattnere37e2332006-08-15 04:50:22 +0000774/// [GNU] 'enum' attributes[opt] identifier
Chris Lattner3b561a32006-08-13 00:12:11 +0000775void Parser::ParseEnumSpecifier(DeclSpec &DS) {
776 assert(Tok.getKind() == tok::kw_enum && "Not an enum specifier");
Chris Lattnerb20e8942006-11-28 05:30:29 +0000777 SourceLocation StartLoc = ConsumeToken();
Chris Lattner3b561a32006-08-13 00:12:11 +0000778
Chris Lattnerffbc2712007-01-25 06:05:38 +0000779 // Parse the tag portion of this.
780 DeclTy *TagDecl;
781 if (ParseTag(TagDecl, DeclSpec::TST_enum, StartLoc))
Chris Lattner3b561a32006-08-13 00:12:11 +0000782 return;
Chris Lattner3b561a32006-08-13 00:12:11 +0000783
Chris Lattnerc1915e22007-01-25 07:29:02 +0000784 if (Tok.getKind() == tok::l_brace)
785 ParseEnumBody(StartLoc, TagDecl);
786
Chris Lattner3b561a32006-08-13 00:12:11 +0000787 // TODO: semantic analysis on the declspec for enums.
Chris Lattnerda72c822006-08-13 22:16:42 +0000788 const char *PrevSpec = 0;
Chris Lattnerffbc2712007-01-25 06:05:38 +0000789 if (DS.SetTypeSpecType(DeclSpec::TST_enum, StartLoc, PrevSpec, TagDecl))
Chris Lattnerb20e8942006-11-28 05:30:29 +0000790 Diag(StartLoc, diag::err_invalid_decl_spec_combination, PrevSpec);
Chris Lattner3b561a32006-08-13 00:12:11 +0000791}
792
Chris Lattnerc1915e22007-01-25 07:29:02 +0000793/// ParseEnumBody - Parse a {} enclosed enumerator-list.
794/// enumerator-list:
795/// enumerator
796/// enumerator-list ',' enumerator
797/// enumerator:
798/// enumeration-constant
799/// enumeration-constant '=' constant-expression
800/// enumeration-constant:
801/// identifier
802///
803void Parser::ParseEnumBody(SourceLocation StartLoc, DeclTy *EnumDecl) {
804 SourceLocation LBraceLoc = ConsumeBrace();
805
Chris Lattner37256fb2007-08-27 17:24:30 +0000806 // C does not allow an empty enumerator-list, C++ does [dcl.enum].
807 if (Tok.getKind() == tok::r_brace && !getLang().CPlusPlus)
Chris Lattnerc1915e22007-01-25 07:29:02 +0000808 Diag(Tok, diag::ext_empty_struct_union_enum, "enum");
809
Chris Lattner23b7eb62007-06-15 23:05:46 +0000810 llvm::SmallVector<DeclTy*, 32> EnumConstantDecls;
Chris Lattnerc1915e22007-01-25 07:29:02 +0000811
Chris Lattner4ef40012007-06-11 01:28:17 +0000812 DeclTy *LastEnumConstDecl = 0;
813
Chris Lattnerc1915e22007-01-25 07:29:02 +0000814 // Parse the enumerator-list.
815 while (Tok.getKind() == tok::identifier) {
816 IdentifierInfo *Ident = Tok.getIdentifierInfo();
817 SourceLocation IdentLoc = ConsumeToken();
818
819 SourceLocation EqualLoc;
820 ExprTy *AssignedVal = 0;
821 if (Tok.getKind() == tok::equal) {
822 EqualLoc = ConsumeToken();
823 ExprResult Res = ParseConstantExpression();
824 if (Res.isInvalid)
Chris Lattnerda6c2ce2007-04-27 19:13:15 +0000825 SkipUntil(tok::comma, tok::r_brace, true, true);
Chris Lattnerc1915e22007-01-25 07:29:02 +0000826 else
827 AssignedVal = Res.Val;
828 }
829
830 // Install the enumerator constant into EnumDecl.
Chris Lattner4ef40012007-06-11 01:28:17 +0000831 DeclTy *EnumConstDecl = Actions.ParseEnumConstant(CurScope, EnumDecl,
832 LastEnumConstDecl,
833 IdentLoc, Ident,
834 EqualLoc, AssignedVal);
835 EnumConstantDecls.push_back(EnumConstDecl);
836 LastEnumConstDecl = EnumConstDecl;
Chris Lattnerc1915e22007-01-25 07:29:02 +0000837
838 if (Tok.getKind() != tok::comma)
839 break;
840 SourceLocation CommaLoc = ConsumeToken();
841
842 if (Tok.getKind() != tok::identifier && !getLang().C99)
843 Diag(CommaLoc, diag::ext_c99_enumerator_list_comma);
844 }
845
846 // Eat the }.
847 MatchRHSPunctuation(tok::r_brace, LBraceLoc);
848
849 Actions.ParseEnumBody(StartLoc, EnumDecl, &EnumConstantDecls[0],
850 EnumConstantDecls.size());
851
Steve Naroff0f2fe172007-06-01 17:11:19 +0000852 DeclTy *AttrList = 0;
Chris Lattnerc1915e22007-01-25 07:29:02 +0000853 // If attributes exist after the identifier list, parse them.
854 if (Tok.getKind() == tok::kw___attribute)
Steve Naroff0f2fe172007-06-01 17:11:19 +0000855 AttrList = ParseAttributes(); // FIXME: where do they do?
Chris Lattnerc1915e22007-01-25 07:29:02 +0000856}
Chris Lattner3b561a32006-08-13 00:12:11 +0000857
Chris Lattnerf5fbd792006-08-10 23:56:11 +0000858/// isTypeSpecifierQualifier - Return true if the current token could be the
859/// start of a specifier-qualifier-list.
860bool Parser::isTypeSpecifierQualifier() const {
861 switch (Tok.getKind()) {
862 default: return false;
Chris Lattnere37e2332006-08-15 04:50:22 +0000863 // GNU attributes support.
864 case tok::kw___attribute:
Steve Naroffad373bd2007-07-31 12:34:36 +0000865 // GNU typeof support.
866 case tok::kw_typeof:
867
Chris Lattnerf5fbd792006-08-10 23:56:11 +0000868 // type-specifiers
869 case tok::kw_short:
870 case tok::kw_long:
871 case tok::kw_signed:
872 case tok::kw_unsigned:
873 case tok::kw__Complex:
874 case tok::kw__Imaginary:
875 case tok::kw_void:
876 case tok::kw_char:
877 case tok::kw_int:
878 case tok::kw_float:
879 case tok::kw_double:
880 case tok::kw__Bool:
881 case tok::kw__Decimal32:
882 case tok::kw__Decimal64:
883 case tok::kw__Decimal128:
884
885 // struct-or-union-specifier
886 case tok::kw_struct:
887 case tok::kw_union:
888 // enum-specifier
889 case tok::kw_enum:
890
891 // type-qualifier
892 case tok::kw_const:
893 case tok::kw_volatile:
894 case tok::kw_restrict:
895 return true;
896
897 // typedef-name
898 case tok::identifier:
Chris Lattner2ebe4bb2006-11-20 01:29:42 +0000899 return Actions.isTypeName(*Tok.getIdentifierInfo(), CurScope) != 0;
Chris Lattnerf5fbd792006-08-10 23:56:11 +0000900 }
901}
902
Chris Lattneracd58a32006-08-06 17:24:14 +0000903/// isDeclarationSpecifier() - Return true if the current token is part of a
904/// declaration specifier.
905bool Parser::isDeclarationSpecifier() const {
906 switch (Tok.getKind()) {
907 default: return false;
908 // storage-class-specifier
909 case tok::kw_typedef:
910 case tok::kw_extern:
911 case tok::kw_static:
912 case tok::kw_auto:
913 case tok::kw_register:
914 case tok::kw___thread:
915
916 // type-specifiers
917 case tok::kw_short:
918 case tok::kw_long:
919 case tok::kw_signed:
920 case tok::kw_unsigned:
921 case tok::kw__Complex:
922 case tok::kw__Imaginary:
923 case tok::kw_void:
924 case tok::kw_char:
925 case tok::kw_int:
926 case tok::kw_float:
927 case tok::kw_double:
928 case tok::kw__Bool:
929 case tok::kw__Decimal32:
930 case tok::kw__Decimal64:
931 case tok::kw__Decimal128:
932
933 // struct-or-union-specifier
934 case tok::kw_struct:
935 case tok::kw_union:
936 // enum-specifier
937 case tok::kw_enum:
Chris Lattnerf5fbd792006-08-10 23:56:11 +0000938
Chris Lattneracd58a32006-08-06 17:24:14 +0000939 // type-qualifier
940 case tok::kw_const:
941 case tok::kw_volatile:
942 case tok::kw_restrict:
Steve Naroffad373bd2007-07-31 12:34:36 +0000943
Chris Lattneracd58a32006-08-06 17:24:14 +0000944 // function-specifier
945 case tok::kw_inline:
Chris Lattner7b20dc72007-08-09 16:40:21 +0000946
Chris Lattner599e47e2007-08-09 17:01:07 +0000947 // GNU typeof support.
948 case tok::kw_typeof:
949
950 // GNU attributes.
Chris Lattner7b20dc72007-08-09 16:40:21 +0000951 case tok::kw___attribute:
Chris Lattneracd58a32006-08-06 17:24:14 +0000952 return true;
Chris Lattnerf5fbd792006-08-10 23:56:11 +0000953
Chris Lattneracd58a32006-08-06 17:24:14 +0000954 // typedef-name
955 case tok::identifier:
Chris Lattner2ebe4bb2006-11-20 01:29:42 +0000956 return Actions.isTypeName(*Tok.getIdentifierInfo(), CurScope) != 0;
Chris Lattneracd58a32006-08-06 17:24:14 +0000957 }
958}
959
Chris Lattnerb9093cd2006-08-04 04:39:53 +0000960
Chris Lattnerc0acd3d2006-07-31 05:13:43 +0000961/// ParseTypeQualifierListOpt
962/// type-qualifier-list: [C99 6.7.5]
963/// type-qualifier
Chris Lattnere37e2332006-08-15 04:50:22 +0000964/// [GNU] attributes
Chris Lattnerc0acd3d2006-07-31 05:13:43 +0000965/// type-qualifier-list type-qualifier
Chris Lattnere37e2332006-08-15 04:50:22 +0000966/// [GNU] type-qualifier-list attributes
Chris Lattnerc0acd3d2006-07-31 05:13:43 +0000967///
Chris Lattnerd9c3c592006-08-05 06:26:47 +0000968void Parser::ParseTypeQualifierListOpt(DeclSpec &DS) {
Chris Lattnerc0acd3d2006-07-31 05:13:43 +0000969 while (1) {
Chris Lattnerd9c3c592006-08-05 06:26:47 +0000970 int isInvalid = false;
971 const char *PrevSpec = 0;
Chris Lattner60809f52006-11-28 05:18:46 +0000972 SourceLocation Loc = Tok.getLocation();
Chris Lattnerd9c3c592006-08-05 06:26:47 +0000973
Chris Lattnerc0acd3d2006-07-31 05:13:43 +0000974 switch (Tok.getKind()) {
Chris Lattnerd9c3c592006-08-05 06:26:47 +0000975 default:
Chris Lattnere37e2332006-08-15 04:50:22 +0000976 // If this is not a type-qualifier token, we're done reading type
977 // qualifiers. First verify that DeclSpec's are consistent.
Chris Lattnerb20e8942006-11-28 05:30:29 +0000978 DS.Finish(Diags, getLang());
Chris Lattnerd9c3c592006-08-05 06:26:47 +0000979 return;
Chris Lattnerc0acd3d2006-07-31 05:13:43 +0000980 case tok::kw_const:
Chris Lattner60809f52006-11-28 05:18:46 +0000981 isInvalid = DS.SetTypeQual(DeclSpec::TQ_const , Loc, PrevSpec,
982 getLang())*2;
Chris Lattnerd9c3c592006-08-05 06:26:47 +0000983 break;
Chris Lattnerc0acd3d2006-07-31 05:13:43 +0000984 case tok::kw_volatile:
Chris Lattner60809f52006-11-28 05:18:46 +0000985 isInvalid = DS.SetTypeQual(DeclSpec::TQ_volatile, Loc, PrevSpec,
986 getLang())*2;
Chris Lattnerd9c3c592006-08-05 06:26:47 +0000987 break;
Chris Lattnerc0acd3d2006-07-31 05:13:43 +0000988 case tok::kw_restrict:
Chris Lattner60809f52006-11-28 05:18:46 +0000989 isInvalid = DS.SetTypeQual(DeclSpec::TQ_restrict, Loc, PrevSpec,
990 getLang())*2;
Chris Lattnerc0acd3d2006-07-31 05:13:43 +0000991 break;
Chris Lattnere37e2332006-08-15 04:50:22 +0000992 case tok::kw___attribute:
Steve Naroff0f05a7a2007-06-09 23:38:17 +0000993 DS.AddAttributes(ParseAttributes());
Steve Naroff98d153c2007-06-06 23:19:11 +0000994 continue; // do *not* consume the next token!
Chris Lattnerc0acd3d2006-07-31 05:13:43 +0000995 }
Chris Lattnerd9c3c592006-08-05 06:26:47 +0000996
997 // If the specifier combination wasn't legal, issue a diagnostic.
998 if (isInvalid) {
999 assert(PrevSpec && "Method did not return previous specifier!");
1000 if (isInvalid == 1) // Error.
1001 Diag(Tok, diag::err_invalid_decl_spec_combination, PrevSpec);
1002 else // extwarn.
1003 Diag(Tok, diag::ext_duplicate_declspec, PrevSpec);
1004 }
1005 ConsumeToken();
Chris Lattnerc0acd3d2006-07-31 05:13:43 +00001006 }
1007}
1008
Chris Lattnerd5d0a6c2006-08-07 00:58:14 +00001009
1010/// ParseDeclarator - Parse and verify a newly-initialized declarator.
1011///
1012void Parser::ParseDeclarator(Declarator &D) {
1013 /// This implements the 'declarator' production in the C grammar, then checks
1014 /// for well-formedness and issues diagnostics.
1015 ParseDeclaratorInternal(D);
1016
Chris Lattner9fab3b92006-08-12 18:25:42 +00001017 // TODO: validate D.
Chris Lattnerbf320c82006-08-07 05:05:30 +00001018
Chris Lattnerd5d0a6c2006-08-07 00:58:14 +00001019}
1020
1021/// ParseDeclaratorInternal
Chris Lattner6c7416c2006-08-07 00:19:33 +00001022/// declarator: [C99 6.7.5]
1023/// pointer[opt] direct-declarator
Bill Wendling93efb222007-06-02 23:28:54 +00001024/// [C++] '&' declarator [C++ 8p4, dcl.decl]
1025/// [GNU] '&' restrict[opt] attributes[opt] declarator
Chris Lattner6c7416c2006-08-07 00:19:33 +00001026///
1027/// pointer: [C99 6.7.5]
1028/// '*' type-qualifier-list[opt]
1029/// '*' type-qualifier-list[opt] pointer
1030///
Chris Lattnerd5d0a6c2006-08-07 00:58:14 +00001031void Parser::ParseDeclaratorInternal(Declarator &D) {
Bill Wendling3708c182007-05-27 10:15:43 +00001032 tok::TokenKind Kind = Tok.getKind();
1033
1034 // Not a pointer or C++ reference.
1035 if (Kind != tok::star && !(Kind == tok::amp && getLang().CPlusPlus))
Chris Lattner6c7416c2006-08-07 00:19:33 +00001036 return ParseDirectDeclarator(D);
1037
Bill Wendling3708c182007-05-27 10:15:43 +00001038 // Otherwise, '*' -> pointer or '&' -> reference.
1039 SourceLocation Loc = ConsumeToken(); // Eat the * or &.
1040
1041 if (Kind == tok::star) {
1042 // Is a pointer
1043 DeclSpec DS;
Steve Naroff98d153c2007-06-06 23:19:11 +00001044
Bill Wendling3708c182007-05-27 10:15:43 +00001045 ParseTypeQualifierListOpt(DS);
Chris Lattner6c7416c2006-08-07 00:19:33 +00001046
Bill Wendling3708c182007-05-27 10:15:43 +00001047 // Recursively parse the declarator.
1048 ParseDeclaratorInternal(D);
Chris Lattner9dfdb3c2006-11-13 07:38:09 +00001049
Bill Wendling3708c182007-05-27 10:15:43 +00001050 // Remember that we parsed a pointer type, and remember the type-quals.
1051 D.AddTypeInfo(DeclaratorChunk::getPointer(DS.getTypeQualifiers(), Loc));
1052 } else {
1053 // Is a reference
Bill Wendling93efb222007-06-02 23:28:54 +00001054 DeclSpec DS;
1055
1056 // C++ 8.3.2p1: cv-qualified references are ill-formed except when the
1057 // cv-qualifiers are introduced through the use of a typedef or of a
1058 // template type argument, in which case the cv-qualifiers are ignored.
1059 //
1060 // [GNU] Retricted references are allowed.
1061 // [GNU] Attributes on references are allowed.
1062 ParseTypeQualifierListOpt(DS);
1063
1064 if (DS.getTypeQualifiers() != DeclSpec::TQ_unspecified) {
1065 if (DS.getTypeQualifiers() & DeclSpec::TQ_const)
1066 Diag(DS.getConstSpecLoc(),
1067 diag::err_invalid_reference_qualifier_application,
1068 "const");
1069 if (DS.getTypeQualifiers() & DeclSpec::TQ_volatile)
1070 Diag(DS.getVolatileSpecLoc(),
1071 diag::err_invalid_reference_qualifier_application,
1072 "volatile");
1073 }
Bill Wendling3708c182007-05-27 10:15:43 +00001074
1075 // Recursively parse the declarator.
1076 ParseDeclaratorInternal(D);
1077
1078 // Remember that we parsed a reference type. It doesn't have type-quals.
Bill Wendling93efb222007-06-02 23:28:54 +00001079 D.AddTypeInfo(DeclaratorChunk::getReference(DS.getTypeQualifiers(), Loc));
Bill Wendling3708c182007-05-27 10:15:43 +00001080 }
Chris Lattner6c7416c2006-08-07 00:19:33 +00001081}
1082
Chris Lattnerc0acd3d2006-07-31 05:13:43 +00001083/// ParseDirectDeclarator
1084/// direct-declarator: [C99 6.7.5]
1085/// identifier
1086/// '(' declarator ')'
1087/// [GNU] '(' attributes declarator ')'
Chris Lattnere8074e62006-08-06 18:30:15 +00001088/// [C90] direct-declarator '[' constant-expression[opt] ']'
1089/// [C99] direct-declarator '[' type-qual-list[opt] assignment-expr[opt] ']'
1090/// [C99] direct-declarator '[' 'static' type-qual-list[opt] assign-expr ']'
1091/// [C99] direct-declarator '[' type-qual-list 'static' assignment-expr ']'
1092/// [C99] direct-declarator '[' type-qual-list[opt] '*' ']'
Chris Lattnerc0acd3d2006-07-31 05:13:43 +00001093/// direct-declarator '(' parameter-type-list ')'
1094/// direct-declarator '(' identifier-list[opt] ')'
1095/// [GNU] direct-declarator '(' parameter-forward-declarations
1096/// parameter-type-list[opt] ')'
1097///
Chris Lattneracd58a32006-08-06 17:24:14 +00001098void Parser::ParseDirectDeclarator(Declarator &D) {
1099 // Parse the first direct-declarator seen.
1100 if (Tok.getKind() == tok::identifier && D.mayHaveIdentifier()) {
1101 assert(Tok.getIdentifierInfo() && "Not an identifier?");
1102 D.SetIdentifier(Tok.getIdentifierInfo(), Tok.getLocation());
1103 ConsumeToken();
1104 } else if (Tok.getKind() == tok::l_paren) {
1105 // direct-declarator: '(' declarator ')'
Chris Lattnere37e2332006-08-15 04:50:22 +00001106 // direct-declarator: '(' attributes declarator ')'
Chris Lattneracd58a32006-08-06 17:24:14 +00001107 // Example: 'char (*X)' or 'int (*XX)(void)'
1108 ParseParenDeclarator(D);
Chris Lattneracd58a32006-08-06 17:24:14 +00001109 } else if (D.mayOmitIdentifier()) {
1110 // This could be something simple like "int" (in which case the declarator
1111 // portion is empty), if an abstract-declarator is allowed.
1112 D.SetIdentifier(0, Tok.getLocation());
1113 } else {
Chris Lattnereec40f92006-08-06 21:55:29 +00001114 // Expected identifier or '('.
1115 Diag(Tok, diag::err_expected_ident_lparen);
1116 D.SetIdentifier(0, Tok.getLocation());
Chris Lattneracd58a32006-08-06 17:24:14 +00001117 }
1118
1119 assert(D.isPastIdentifier() &&
1120 "Haven't past the location of the identifier yet?");
1121
1122 while (1) {
1123 if (Tok.getKind() == tok::l_paren) {
1124 ParseParenDeclarator(D);
1125 } else if (Tok.getKind() == tok::l_square) {
Chris Lattnere8074e62006-08-06 18:30:15 +00001126 ParseBracketDeclarator(D);
Chris Lattneracd58a32006-08-06 17:24:14 +00001127 } else {
1128 break;
1129 }
1130 }
1131}
1132
1133/// ParseParenDeclarator - We parsed the declarator D up to a paren. This may
1134/// either be before the identifier (in which case these are just grouping
1135/// parens for precedence) or it may be after the identifier, in which case
1136/// these are function arguments.
1137///
1138/// This method also handles this portion of the grammar:
Chris Lattnerc0acd3d2006-07-31 05:13:43 +00001139/// parameter-type-list: [C99 6.7.5]
1140/// parameter-list
1141/// parameter-list ',' '...'
1142///
1143/// parameter-list: [C99 6.7.5]
1144/// parameter-declaration
1145/// parameter-list ',' parameter-declaration
1146///
1147/// parameter-declaration: [C99 6.7.5]
1148/// declaration-specifiers declarator
Chris Lattnere37e2332006-08-15 04:50:22 +00001149/// [GNU] declaration-specifiers declarator attributes
Chris Lattnerc0acd3d2006-07-31 05:13:43 +00001150/// declaration-specifiers abstract-declarator[opt]
Chris Lattnere37e2332006-08-15 04:50:22 +00001151/// [GNU] declaration-specifiers abstract-declarator[opt] attributes
Chris Lattnerc0acd3d2006-07-31 05:13:43 +00001152///
1153/// identifier-list: [C99 6.7.5]
1154/// identifier
1155/// identifier-list ',' identifier
1156///
Chris Lattneracd58a32006-08-06 17:24:14 +00001157void Parser::ParseParenDeclarator(Declarator &D) {
Chris Lattner04132372006-10-16 06:12:55 +00001158 SourceLocation StartLoc = ConsumeParen();
Chris Lattnerd9c3c592006-08-05 06:26:47 +00001159
Chris Lattneracd58a32006-08-06 17:24:14 +00001160 // If we haven't past the identifier yet (or where the identifier would be
1161 // stored, if this is an abstract declarator), then this is probably just
1162 // grouping parens.
1163 if (!D.isPastIdentifier()) {
1164 // Okay, this is probably a grouping paren. However, if this could be an
1165 // abstract-declarator, then this could also be the start of function
1166 // arguments (consider 'void()').
1167 bool isGrouping;
1168
1169 if (!D.mayOmitIdentifier()) {
1170 // If this can't be an abstract-declarator, this *must* be a grouping
1171 // paren, because we haven't seen the identifier yet.
1172 isGrouping = true;
1173 } else if (Tok.getKind() == tok::r_paren || // 'int()' is a function.
1174 isDeclarationSpecifier()) { // 'int(int)' is a function.
Chris Lattnerbb233fe2006-11-21 23:13:27 +00001175 // This handles C99 6.7.5.3p11: in "typedef int X; void foo(X)", X is
1176 // considered to be a type, not a K&R identifier-list.
Chris Lattneracd58a32006-08-06 17:24:14 +00001177 isGrouping = false;
Chris Lattnerd9c3c592006-08-05 06:26:47 +00001178 } else {
Chris Lattnerbb233fe2006-11-21 23:13:27 +00001179 // Otherwise, this is a grouping paren, e.g. 'int (*X)' or 'int(X)'.
Chris Lattneracd58a32006-08-06 17:24:14 +00001180 isGrouping = true;
Chris Lattnerd9c3c592006-08-05 06:26:47 +00001181 }
Chris Lattneracd58a32006-08-06 17:24:14 +00001182
1183 // If this is a grouping paren, handle:
1184 // direct-declarator: '(' declarator ')'
Chris Lattnere37e2332006-08-15 04:50:22 +00001185 // direct-declarator: '(' attributes declarator ')'
Chris Lattneracd58a32006-08-06 17:24:14 +00001186 if (isGrouping) {
Chris Lattnere37e2332006-08-15 04:50:22 +00001187 if (Tok.getKind() == tok::kw___attribute)
Steve Naroff0f05a7a2007-06-09 23:38:17 +00001188 D.AddAttributes(ParseAttributes());
Chris Lattnere37e2332006-08-15 04:50:22 +00001189
Chris Lattnerd5d0a6c2006-08-07 00:58:14 +00001190 ParseDeclaratorInternal(D);
Chris Lattner4564bc12006-08-10 23:14:52 +00001191 // Match the ')'.
Chris Lattner04f80192006-08-15 04:55:54 +00001192 MatchRHSPunctuation(tok::r_paren, StartLoc);
Chris Lattneracd58a32006-08-06 17:24:14 +00001193 return;
1194 }
1195
1196 // Okay, if this wasn't a grouping paren, it must be the start of a function
Chris Lattnera3507222006-08-07 00:33:37 +00001197 // argument list. Recognize that this declarator will never have an
1198 // identifier (and remember where it would have been), then fall through to
1199 // the handling of argument lists.
Chris Lattneracd58a32006-08-06 17:24:14 +00001200 D.SetIdentifier(0, Tok.getLocation());
Chris Lattnerd9c3c592006-08-05 06:26:47 +00001201 }
1202
Chris Lattneracd58a32006-08-06 17:24:14 +00001203 // Okay, this is the parameter list of a function definition, or it is an
1204 // identifier list of a K&R-style function.
Chris Lattnerd5d0a6c2006-08-07 00:58:14 +00001205 bool IsVariadic;
Chris Lattneracd58a32006-08-06 17:24:14 +00001206 bool HasPrototype;
Chris Lattner14776b92006-08-06 22:27:40 +00001207 bool ErrorEmitted = false;
1208
Chris Lattneredc9e392006-12-02 06:21:46 +00001209 // Build up an array of information about the parsed arguments.
Chris Lattner23b7eb62007-06-15 23:05:46 +00001210 llvm::SmallVector<DeclaratorChunk::ParamInfo, 16> ParamInfo;
1211 llvm::SmallSet<const IdentifierInfo*, 16> ParamsSoFar;
Chris Lattneredc9e392006-12-02 06:21:46 +00001212
Chris Lattneracd58a32006-08-06 17:24:14 +00001213 if (Tok.getKind() == tok::r_paren) {
1214 // int() -> no prototype, no '...'.
Chris Lattnerd5d0a6c2006-08-07 00:58:14 +00001215 IsVariadic = false;
Chris Lattneracd58a32006-08-06 17:24:14 +00001216 HasPrototype = false;
1217 } else if (Tok.getKind() == tok::identifier &&
Chris Lattnerbb233fe2006-11-21 23:13:27 +00001218 // K&R identifier lists can't have typedefs as identifiers, per
1219 // C99 6.7.5.3p11.
Steve Naroffb419d3a2006-10-27 23:18:49 +00001220 !Actions.isTypeName(*Tok.getIdentifierInfo(), CurScope)) {
Chris Lattneracd58a32006-08-06 17:24:14 +00001221 // Identifier list. Note that '(' identifier-list ')' is only allowed for
1222 // normal declarators, not for abstract-declarators.
1223 assert(D.isPastIdentifier() && "Identifier (if present) must be passed!");
1224
1225 // If there was no identifier specified, either we are in an
1226 // abstract-declarator, or we are in a parameter declarator which was found
1227 // to be abstract. In abstract-declarators, identifier lists are not valid,
1228 // diagnose this.
1229 if (!D.getIdentifier())
1230 Diag(Tok, diag::ext_ident_list_in_param);
Chris Lattneredc9e392006-12-02 06:21:46 +00001231
Chris Lattnercbc426d2006-12-02 06:43:02 +00001232 // Remember this identifier in ParamInfo.
1233 ParamInfo.push_back(DeclaratorChunk::ParamInfo(Tok.getIdentifierInfo(),
1234 Tok.getLocation(), 0));
1235
Chris Lattneracd58a32006-08-06 17:24:14 +00001236 ConsumeToken();
1237 while (Tok.getKind() == tok::comma) {
1238 // Eat the comma.
1239 ConsumeToken();
1240
Chris Lattnercbc426d2006-12-02 06:43:02 +00001241 if (Tok.getKind() != tok::identifier) {
1242 Diag(Tok, diag::err_expected_ident);
Chris Lattner14776b92006-08-06 22:27:40 +00001243 ErrorEmitted = true;
1244 break;
1245 }
Chris Lattnercbc426d2006-12-02 06:43:02 +00001246
Chris Lattner969ca152006-12-03 06:29:03 +00001247 IdentifierInfo *ParmII = Tok.getIdentifierInfo();
1248
1249 // Verify that the argument identifier has not already been mentioned.
Chris Lattnerbaf33662007-01-27 02:14:08 +00001250 if (!ParamsSoFar.insert(ParmII)) {
Chris Lattnerad9ac942007-01-23 01:14:52 +00001251 Diag(Tok.getLocation(), diag::err_param_redefinition,ParmII->getName());
1252 ParmII = 0;
1253 }
Chris Lattner969ca152006-12-03 06:29:03 +00001254
Chris Lattnercbc426d2006-12-02 06:43:02 +00001255 // Remember this identifier in ParamInfo.
Chris Lattner5c5fbcc2006-12-03 08:41:30 +00001256 if (ParmII)
1257 ParamInfo.push_back(DeclaratorChunk::ParamInfo(ParmII,
1258 Tok.getLocation(), 0));
Chris Lattnercbc426d2006-12-02 06:43:02 +00001259
1260 // Eat the identifier.
1261 ConsumeToken();
Chris Lattneracd58a32006-08-06 17:24:14 +00001262 }
1263
Chris Lattneracd58a32006-08-06 17:24:14 +00001264 // K&R 'prototype'.
Chris Lattnerd5d0a6c2006-08-07 00:58:14 +00001265 IsVariadic = false;
Chris Lattneracd58a32006-08-06 17:24:14 +00001266 HasPrototype = false;
1267 } else {
Chris Lattner43e956c2006-11-28 04:05:37 +00001268 // Finally, a normal, non-empty parameter type list.
1269
Chris Lattnercbc426d2006-12-02 06:43:02 +00001270 // Enter function-declaration scope, limiting any declarators for struct
1271 // tags to the function prototype scope.
1272 // FIXME: is this needed?
Chris Lattner1a76a3c2007-08-26 06:24:45 +00001273 EnterScope(Scope::DeclScope);
Chris Lattner43e956c2006-11-28 04:05:37 +00001274
Chris Lattnerd5d0a6c2006-08-07 00:58:14 +00001275 IsVariadic = false;
Chris Lattneracd58a32006-08-06 17:24:14 +00001276 while (1) {
1277 if (Tok.getKind() == tok::ellipsis) {
Chris Lattnerd5d0a6c2006-08-07 00:58:14 +00001278 IsVariadic = true;
Chris Lattneracd58a32006-08-06 17:24:14 +00001279
1280 // Check to see if this is "void(...)" which is not allowed.
Chris Lattnercbc426d2006-12-02 06:43:02 +00001281 if (ParamInfo.empty()) {
Chris Lattnere8074e62006-08-06 18:30:15 +00001282 // Otherwise, parse parameter type list. If it starts with an
1283 // ellipsis, diagnose the malformed function.
Chris Lattneracd58a32006-08-06 17:24:14 +00001284 Diag(Tok, diag::err_ellipsis_first_arg);
Chris Lattnerd5d0a6c2006-08-07 00:58:14 +00001285 IsVariadic = false; // Treat this like 'void()'.
Chris Lattneracd58a32006-08-06 17:24:14 +00001286 }
1287
1288 // Consume the ellipsis.
1289 ConsumeToken();
1290 break;
1291 }
1292
Chris Lattneracd58a32006-08-06 17:24:14 +00001293 // Parse the declaration-specifiers.
1294 DeclSpec DS;
1295 ParseDeclarationSpecifiers(DS);
1296
1297 // Parse the declarator. This is "PrototypeContext", because we must
1298 // accept either 'declarator' or 'abstract-declarator' here.
Chris Lattnercbc426d2006-12-02 06:43:02 +00001299 Declarator ParmDecl(DS, Declarator::PrototypeContext);
1300 ParseDeclarator(ParmDecl);
Chris Lattneracd58a32006-08-06 17:24:14 +00001301
Chris Lattnere37e2332006-08-15 04:50:22 +00001302 // Parse GNU attributes, if present.
1303 if (Tok.getKind() == tok::kw___attribute)
Steve Naroff0f05a7a2007-06-09 23:38:17 +00001304 ParmDecl.AddAttributes(ParseAttributes());
Chris Lattnere37e2332006-08-15 04:50:22 +00001305
Chris Lattner43e956c2006-11-28 04:05:37 +00001306 // Verify C99 6.7.5.3p2: The only SCS allowed is 'register'.
Chris Lattner5c5fbcc2006-12-03 08:41:30 +00001307 // NOTE: we could trivially allow 'int foo(auto int X)' if we wanted.
1308 if (DS.getStorageClassSpec() != DeclSpec::SCS_unspecified &&
1309 DS.getStorageClassSpec() != DeclSpec::SCS_register) {
Chris Lattner4d8f8732006-11-28 05:05:08 +00001310 Diag(DS.getStorageClassSpecLoc(),
Chris Lattner43e956c2006-11-28 04:05:37 +00001311 diag::err_invalid_storage_class_in_func_decl);
Chris Lattner353f5742006-11-28 04:50:12 +00001312 DS.ClearStorageClassSpecs();
Chris Lattner43e956c2006-11-28 04:05:37 +00001313 }
Chris Lattner4d8f8732006-11-28 05:05:08 +00001314 if (DS.isThreadSpecified()) {
1315 Diag(DS.getThreadSpecLoc(),
1316 diag::err_invalid_storage_class_in_func_decl);
1317 DS.ClearStorageClassSpecs();
1318 }
Chris Lattner43e956c2006-11-28 04:05:37 +00001319
1320 // Inform the actions module about the parameter declarator, so it gets
1321 // added to the current scope.
Chris Lattner216d8652006-12-02 06:47:41 +00001322 Action::TypeResult ParamTy =
1323 Actions.ParseParamDeclaratorType(CurScope, ParmDecl);
Chris Lattnercbc426d2006-12-02 06:43:02 +00001324
1325 // Remember this parsed parameter in ParamInfo.
Chris Lattner969ca152006-12-03 06:29:03 +00001326 IdentifierInfo *ParmII = ParmDecl.getIdentifier();
1327
1328 // Verify that the argument identifier has not already been mentioned.
Chris Lattnerbaf33662007-01-27 02:14:08 +00001329 if (ParmII && !ParamsSoFar.insert(ParmII)) {
Chris Lattnerad9ac942007-01-23 01:14:52 +00001330 Diag(ParmDecl.getIdentifierLoc(), diag::err_param_redefinition,
1331 ParmII->getName());
1332 ParmII = 0;
Chris Lattner969ca152006-12-03 06:29:03 +00001333 }
1334
1335 ParamInfo.push_back(DeclaratorChunk::ParamInfo(ParmII,
Chris Lattnercbc426d2006-12-02 06:43:02 +00001336 ParmDecl.getIdentifierLoc(),
1337 ParamTy.Val));
Chris Lattneracd58a32006-08-06 17:24:14 +00001338
1339 // If the next token is a comma, consume it and keep reading arguments.
1340 if (Tok.getKind() != tok::comma) break;
1341
1342 // Consume the comma.
1343 ConsumeToken();
1344 }
1345
1346 HasPrototype = true;
Chris Lattner43e956c2006-11-28 04:05:37 +00001347
1348 // Leave prototype scope.
1349 ExitScope();
Chris Lattneracd58a32006-08-06 17:24:14 +00001350 }
1351
Chris Lattnerd5d0a6c2006-08-07 00:58:14 +00001352 // Remember that we parsed a function type, and remember the attributes.
Chris Lattnerd2e97c12006-12-03 02:03:33 +00001353 if (!ErrorEmitted)
1354 D.AddTypeInfo(DeclaratorChunk::getFunction(HasPrototype, IsVariadic,
1355 &ParamInfo[0], ParamInfo.size(),
1356 StartLoc));
Chris Lattnerd5d0a6c2006-08-07 00:58:14 +00001357
Chris Lattner14776b92006-08-06 22:27:40 +00001358 // If we have the closing ')', eat it and we're done.
1359 if (Tok.getKind() == tok::r_paren) {
1360 ConsumeParen();
1361 } else {
1362 // If an error happened earlier parsing something else in the proto, don't
1363 // issue another error.
1364 if (!ErrorEmitted)
1365 Diag(Tok, diag::err_expected_rparen);
1366 SkipUntil(tok::r_paren);
1367 }
Chris Lattnerc0acd3d2006-07-31 05:13:43 +00001368}
Chris Lattneracd58a32006-08-06 17:24:14 +00001369
Chris Lattnere8074e62006-08-06 18:30:15 +00001370
1371/// [C90] direct-declarator '[' constant-expression[opt] ']'
1372/// [C99] direct-declarator '[' type-qual-list[opt] assignment-expr[opt] ']'
1373/// [C99] direct-declarator '[' 'static' type-qual-list[opt] assign-expr ']'
1374/// [C99] direct-declarator '[' type-qual-list 'static' assignment-expr ']'
1375/// [C99] direct-declarator '[' type-qual-list[opt] '*' ']'
1376void Parser::ParseBracketDeclarator(Declarator &D) {
Chris Lattner04132372006-10-16 06:12:55 +00001377 SourceLocation StartLoc = ConsumeBracket();
Chris Lattnere8074e62006-08-06 18:30:15 +00001378
1379 // If valid, this location is the position where we read the 'static' keyword.
1380 SourceLocation StaticLoc;
Chris Lattneraf635312006-10-16 06:06:51 +00001381 if (Tok.getKind() == tok::kw_static)
1382 StaticLoc = ConsumeToken();
Chris Lattnere8074e62006-08-06 18:30:15 +00001383
1384 // If there is a type-qualifier-list, read it now.
1385 DeclSpec DS;
1386 ParseTypeQualifierListOpt(DS);
Chris Lattnere8074e62006-08-06 18:30:15 +00001387
1388 // If we haven't already read 'static', check to see if there is one after the
1389 // type-qualifier-list.
Chris Lattneraf635312006-10-16 06:06:51 +00001390 if (!StaticLoc.isValid() && Tok.getKind() == tok::kw_static)
1391 StaticLoc = ConsumeToken();
Chris Lattnere8074e62006-08-06 18:30:15 +00001392
1393 // Handle "direct-declarator [ type-qual-list[opt] * ]".
Chris Lattnere8074e62006-08-06 18:30:15 +00001394 bool isStar = false;
Chris Lattner62591722006-08-12 18:40:58 +00001395 ExprResult NumElements(false);
Chris Lattner1906f802006-08-06 19:14:46 +00001396 if (Tok.getKind() == tok::star) {
1397 // Remember the '*' token, in case we have to un-get it.
Chris Lattner146762e2007-07-20 16:59:19 +00001398 Token StarTok = Tok;
Chris Lattnere8074e62006-08-06 18:30:15 +00001399 ConsumeToken();
Chris Lattner1906f802006-08-06 19:14:46 +00001400
1401 // Check that the ']' token is present to avoid incorrectly parsing
1402 // expressions starting with '*' as [*].
1403 if (Tok.getKind() == tok::r_square) {
1404 if (StaticLoc.isValid())
1405 Diag(StaticLoc, diag::err_unspecified_vla_size_with_static);
1406 StaticLoc = SourceLocation(); // Drop the static.
1407 isStar = true;
Chris Lattner1906f802006-08-06 19:14:46 +00001408 } else {
1409 // Otherwise, the * must have been some expression (such as '*ptr') that
Chris Lattner9fab3b92006-08-12 18:25:42 +00001410 // started an assignment-expr. We already consumed the token, but now we
Chris Lattner62591722006-08-12 18:40:58 +00001411 // need to reparse it. This handles cases like 'X[*p + 4]'
1412 NumElements = ParseAssignmentExpressionWithLeadingStar(StarTok);
Chris Lattner1906f802006-08-06 19:14:46 +00001413 }
Chris Lattner9fab3b92006-08-12 18:25:42 +00001414 } else if (Tok.getKind() != tok::r_square) {
Chris Lattnere8074e62006-08-06 18:30:15 +00001415 // Parse the assignment-expression now.
Chris Lattner62591722006-08-12 18:40:58 +00001416 NumElements = ParseAssignmentExpression();
1417 }
1418
1419 // If there was an error parsing the assignment-expression, recover.
1420 if (NumElements.isInvalid) {
1421 // If the expression was invalid, skip it.
1422 SkipUntil(tok::r_square);
1423 return;
Chris Lattnere8074e62006-08-06 18:30:15 +00001424 }
1425
Chris Lattner04f80192006-08-15 04:55:54 +00001426 MatchRHSPunctuation(tok::r_square, StartLoc);
Chris Lattner9fab3b92006-08-12 18:25:42 +00001427
Chris Lattnere8074e62006-08-06 18:30:15 +00001428 // If C99 isn't enabled, emit an ext-warn if the arg list wasn't empty and if
1429 // it was not a constant expression.
1430 if (!getLang().C99) {
1431 // TODO: check C90 array constant exprness.
Chris Lattner0e894622006-08-13 19:58:17 +00001432 if (isStar || StaticLoc.isValid() ||
1433 0/*TODO: NumElts is not a C90 constantexpr */)
Chris Lattner8a39edc2006-08-06 18:33:32 +00001434 Diag(StartLoc, diag::ext_c99_array_usage);
Chris Lattnere8074e62006-08-06 18:30:15 +00001435 }
Bill Wendling93efb222007-06-02 23:28:54 +00001436
Chris Lattner6c7416c2006-08-07 00:19:33 +00001437 // Remember that we parsed a pointer type, and remember the type-quals.
Chris Lattnercbc426d2006-12-02 06:43:02 +00001438 D.AddTypeInfo(DeclaratorChunk::getArray(DS.getTypeQualifiers(),
1439 StaticLoc.isValid(), isStar,
1440 NumElements.Val, StartLoc));
Chris Lattnere8074e62006-08-06 18:30:15 +00001441}
1442
Steve Naroffad373bd2007-07-31 12:34:36 +00001443/// [GNU] typeof-specifier:
1444/// typeof ( expressions )
1445/// typeof ( type-name )
1446///
1447void Parser::ParseTypeofSpecifier(DeclSpec &DS) {
1448 assert(Tok.getKind() == tok::kw_typeof && "Not a typeof specifier");
Steve Naroff4bd2f712007-08-02 02:53:48 +00001449 const IdentifierInfo *BuiltinII = Tok.getIdentifierInfo();
Steve Naroffad373bd2007-07-31 12:34:36 +00001450 SourceLocation StartLoc = ConsumeToken();
1451
1452 if (Tok.getKind() != tok::l_paren) {
Steve Naroff4bd2f712007-08-02 02:53:48 +00001453 Diag(Tok, diag::err_expected_lparen_after, BuiltinII->getName());
1454 return;
Steve Naroffad373bd2007-07-31 12:34:36 +00001455 }
1456 SourceLocation LParenLoc = ConsumeParen(), RParenLoc;
1457
1458 if (isTypeSpecifierQualifier()) {
1459 TypeTy *Ty = ParseTypeName();
1460
Steve Naroff872da802007-07-31 23:56:32 +00001461 assert(Ty && "Parser::ParseTypeofSpecifier(): missing type");
1462
Steve Naroff4bd2f712007-08-02 02:53:48 +00001463 if (Tok.getKind() != tok::r_paren) {
Steve Naroff872da802007-07-31 23:56:32 +00001464 MatchRHSPunctuation(tok::r_paren, LParenLoc);
Steve Naroff4bd2f712007-08-02 02:53:48 +00001465 return;
1466 }
1467 RParenLoc = ConsumeParen();
1468 const char *PrevSpec = 0;
1469 // Check for duplicate type specifiers (e.g. "int typeof(int)").
1470 if (DS.SetTypeSpecType(DeclSpec::TST_typeofType, StartLoc, PrevSpec, Ty))
1471 Diag(StartLoc, diag::err_invalid_decl_spec_combination, PrevSpec);
Steve Naroffad373bd2007-07-31 12:34:36 +00001472 } else { // we have an expression.
1473 ExprResult Result = ParseExpression();
Steve Naroff872da802007-07-31 23:56:32 +00001474
Steve Naroff4bd2f712007-08-02 02:53:48 +00001475 if (Result.isInvalid || Tok.getKind() != tok::r_paren) {
Steve Naroff872da802007-07-31 23:56:32 +00001476 MatchRHSPunctuation(tok::r_paren, LParenLoc);
Steve Naroff4bd2f712007-08-02 02:53:48 +00001477 return;
1478 }
1479 RParenLoc = ConsumeParen();
1480 const char *PrevSpec = 0;
1481 // Check for duplicate type specifiers (e.g. "int typeof(int)").
1482 if (DS.SetTypeSpecType(DeclSpec::TST_typeofExpr, StartLoc, PrevSpec,
1483 Result.Val))
1484 Diag(StartLoc, diag::err_invalid_decl_spec_combination, PrevSpec);
Steve Naroffad373bd2007-07-31 12:34:36 +00001485 }
Steve Naroffad373bd2007-07-31 12:34:36 +00001486}
1487