blob: 9d13e98560d3de5862943d9337d66b692968b707 [file] [log] [blame]
Reid Spencer5f016e22007-07-11 17:01:13 +00001//===--- ParseDecl.cpp - Declaration Parsing ------------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner0bc735f2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Reid Spencer5f016e22007-07-11 17:01:13 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the Declaration portions of the Parser interfaces.
11//
12//===----------------------------------------------------------------------===//
13
14#include "clang/Parse/Parser.h"
Chris Lattner500d3292009-01-29 05:15:15 +000015#include "clang/Parse/ParseDiagnostic.h"
Chris Lattner31e05722007-08-26 06:24:45 +000016#include "clang/Parse/Scope.h"
Chris Lattnerc46d1a12008-10-20 06:45:43 +000017#include "ExtensionRAIIObject.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000018#include "llvm/ADT/SmallSet.h"
19using namespace clang;
20
21//===----------------------------------------------------------------------===//
22// C99 6.7: Declarations.
23//===----------------------------------------------------------------------===//
24
25/// ParseTypeName
26/// type-name: [C99 6.7.6]
27/// specifier-qualifier-list abstract-declarator[opt]
Sebastian Redl4c5d3202008-11-21 19:14:01 +000028///
29/// Called type-id in C++.
Sebastian Redlef65f062009-05-29 18:02:33 +000030Action::TypeResult Parser::ParseTypeName(SourceRange *Range) {
Reid Spencer5f016e22007-07-11 17:01:13 +000031 // Parse the common declaration-specifiers piece.
32 DeclSpec DS;
33 ParseSpecifierQualifierList(DS);
Sebastian Redlef65f062009-05-29 18:02:33 +000034
Reid Spencer5f016e22007-07-11 17:01:13 +000035 // Parse the abstract-declarator, if present.
36 Declarator DeclaratorInfo(DS, Declarator::TypeNameContext);
37 ParseDeclarator(DeclaratorInfo);
Sebastian Redlef65f062009-05-29 18:02:33 +000038 if (Range)
39 *Range = DeclaratorInfo.getSourceRange();
40
Chris Lattnereaaebc72009-04-25 08:06:05 +000041 if (DeclaratorInfo.isInvalidType())
Douglas Gregor809070a2009-02-18 17:45:20 +000042 return true;
43
44 return Actions.ActOnTypeName(CurScope, DeclaratorInfo);
Reid Spencer5f016e22007-07-11 17:01:13 +000045}
46
47/// ParseAttributes - Parse a non-empty attributes list.
48///
49/// [GNU] attributes:
50/// attribute
51/// attributes attribute
52///
53/// [GNU] attribute:
54/// '__attribute__' '(' '(' attribute-list ')' ')'
55///
56/// [GNU] attribute-list:
57/// attrib
58/// attribute_list ',' attrib
59///
60/// [GNU] attrib:
61/// empty
62/// attrib-name
63/// attrib-name '(' identifier ')'
64/// attrib-name '(' identifier ',' nonempty-expr-list ')'
65/// attrib-name '(' argument-expression-list [C99 6.5.2] ')'
66///
67/// [GNU] attrib-name:
68/// identifier
69/// typespec
70/// typequal
71/// storageclass
72///
73/// FIXME: The GCC grammar/code for this construct implies we need two
74/// token lookahead. Comment from gcc: "If they start with an identifier
75/// which is followed by a comma or close parenthesis, then the arguments
76/// start with that identifier; otherwise they are an expression list."
77///
78/// At the moment, I am not doing 2 token lookahead. I am also unaware of
79/// any attributes that don't work (based on my limited testing). Most
80/// attributes are very simple in practice. Until we find a bug, I don't see
81/// a pressing need to implement the 2 token lookahead.
82
Sebastian Redlab197ba2009-02-09 18:23:29 +000083AttributeList *Parser::ParseAttributes(SourceLocation *EndLoc) {
Chris Lattner04d66662007-10-09 17:33:22 +000084 assert(Tok.is(tok::kw___attribute) && "Not an attribute list!");
Reid Spencer5f016e22007-07-11 17:01:13 +000085
86 AttributeList *CurrAttr = 0;
87
Chris Lattner04d66662007-10-09 17:33:22 +000088 while (Tok.is(tok::kw___attribute)) {
Reid Spencer5f016e22007-07-11 17:01:13 +000089 ConsumeToken();
90 if (ExpectAndConsume(tok::l_paren, diag::err_expected_lparen_after,
91 "attribute")) {
92 SkipUntil(tok::r_paren, true); // skip until ) or ;
93 return CurrAttr;
94 }
95 if (ExpectAndConsume(tok::l_paren, diag::err_expected_lparen_after, "(")) {
96 SkipUntil(tok::r_paren, true); // skip until ) or ;
97 return CurrAttr;
98 }
99 // Parse the attribute-list. e.g. __attribute__(( weak, alias("__f") ))
Chris Lattner04d66662007-10-09 17:33:22 +0000100 while (Tok.is(tok::identifier) || isDeclarationSpecifier() ||
101 Tok.is(tok::comma)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000102
Chris Lattner04d66662007-10-09 17:33:22 +0000103 if (Tok.is(tok::comma)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000104 // allows for empty/non-empty attributes. ((__vector_size__(16),,,,))
105 ConsumeToken();
106 continue;
107 }
108 // we have an identifier or declaration specifier (const, int, etc.)
109 IdentifierInfo *AttrName = Tok.getIdentifierInfo();
110 SourceLocation AttrNameLoc = ConsumeToken();
111
112 // check if we have a "paramterized" attribute
Chris Lattner04d66662007-10-09 17:33:22 +0000113 if (Tok.is(tok::l_paren)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000114 ConsumeParen(); // ignore the left paren loc for now
115
Chris Lattner04d66662007-10-09 17:33:22 +0000116 if (Tok.is(tok::identifier)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000117 IdentifierInfo *ParmName = Tok.getIdentifierInfo();
118 SourceLocation ParmLoc = ConsumeToken();
119
Chris Lattner04d66662007-10-09 17:33:22 +0000120 if (Tok.is(tok::r_paren)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000121 // __attribute__(( mode(byte) ))
122 ConsumeParen(); // ignore the right paren loc for now
123 CurrAttr = new AttributeList(AttrName, AttrNameLoc,
124 ParmName, ParmLoc, 0, 0, CurrAttr);
Chris Lattner04d66662007-10-09 17:33:22 +0000125 } else if (Tok.is(tok::comma)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000126 ConsumeToken();
127 // __attribute__(( format(printf, 1, 2) ))
Sebastian Redla55e52c2008-11-25 22:21:31 +0000128 ExprVector ArgExprs(Actions);
Reid Spencer5f016e22007-07-11 17:01:13 +0000129 bool ArgExprsOk = true;
130
131 // now parse the non-empty comma separated list of expressions
132 while (1) {
Sebastian Redl2f7ece72008-12-11 21:36:32 +0000133 OwningExprResult ArgExpr(ParseAssignmentExpression());
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000134 if (ArgExpr.isInvalid()) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000135 ArgExprsOk = false;
136 SkipUntil(tok::r_paren);
137 break;
138 } else {
Sebastian Redleffa8d12008-12-10 00:02:53 +0000139 ArgExprs.push_back(ArgExpr.release());
Reid Spencer5f016e22007-07-11 17:01:13 +0000140 }
Chris Lattner04d66662007-10-09 17:33:22 +0000141 if (Tok.isNot(tok::comma))
Reid Spencer5f016e22007-07-11 17:01:13 +0000142 break;
143 ConsumeToken(); // Eat the comma, move to the next argument
144 }
Chris Lattner04d66662007-10-09 17:33:22 +0000145 if (ArgExprsOk && Tok.is(tok::r_paren)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000146 ConsumeParen(); // ignore the right paren loc for now
147 CurrAttr = new AttributeList(AttrName, AttrNameLoc, ParmName,
Sebastian Redla55e52c2008-11-25 22:21:31 +0000148 ParmLoc, ArgExprs.take(), ArgExprs.size(), CurrAttr);
Reid Spencer5f016e22007-07-11 17:01:13 +0000149 }
150 }
151 } else { // not an identifier
Nate Begeman6f3d8382009-06-26 06:32:41 +0000152 switch (Tok.getKind()) {
153 case tok::r_paren:
Reid Spencer5f016e22007-07-11 17:01:13 +0000154 // parse a possibly empty comma separated list of expressions
Reid Spencer5f016e22007-07-11 17:01:13 +0000155 // __attribute__(( nonnull() ))
156 ConsumeParen(); // ignore the right paren loc for now
157 CurrAttr = new AttributeList(AttrName, AttrNameLoc,
158 0, SourceLocation(), 0, 0, CurrAttr);
Nate Begeman6f3d8382009-06-26 06:32:41 +0000159 break;
160 case tok::kw_char:
161 case tok::kw_wchar_t:
Alisdair Meredithf5c209d2009-07-14 06:30:34 +0000162 case tok::kw_char16_t:
163 case tok::kw_char32_t:
Nate Begeman6f3d8382009-06-26 06:32:41 +0000164 case tok::kw_bool:
165 case tok::kw_short:
166 case tok::kw_int:
167 case tok::kw_long:
168 case tok::kw_signed:
169 case tok::kw_unsigned:
170 case tok::kw_float:
171 case tok::kw_double:
172 case tok::kw_void:
173 case tok::kw_typeof:
174 // If it's a builtin type name, eat it and expect a rparen
175 // __attribute__(( vec_type_hint(char) ))
176 ConsumeToken();
177 CurrAttr = new AttributeList(AttrName, AttrNameLoc,
178 0, SourceLocation(), 0, 0, CurrAttr);
179 if (Tok.is(tok::r_paren))
180 ConsumeParen();
181 break;
182 default:
Reid Spencer5f016e22007-07-11 17:01:13 +0000183 // __attribute__(( aligned(16) ))
Sebastian Redla55e52c2008-11-25 22:21:31 +0000184 ExprVector ArgExprs(Actions);
Reid Spencer5f016e22007-07-11 17:01:13 +0000185 bool ArgExprsOk = true;
186
187 // now parse the list of expressions
188 while (1) {
Sebastian Redl2f7ece72008-12-11 21:36:32 +0000189 OwningExprResult ArgExpr(ParseAssignmentExpression());
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000190 if (ArgExpr.isInvalid()) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000191 ArgExprsOk = false;
192 SkipUntil(tok::r_paren);
193 break;
194 } else {
Sebastian Redleffa8d12008-12-10 00:02:53 +0000195 ArgExprs.push_back(ArgExpr.release());
Reid Spencer5f016e22007-07-11 17:01:13 +0000196 }
Chris Lattner04d66662007-10-09 17:33:22 +0000197 if (Tok.isNot(tok::comma))
Reid Spencer5f016e22007-07-11 17:01:13 +0000198 break;
199 ConsumeToken(); // Eat the comma, move to the next argument
200 }
201 // Match the ')'.
Chris Lattner04d66662007-10-09 17:33:22 +0000202 if (ArgExprsOk && Tok.is(tok::r_paren)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000203 ConsumeParen(); // ignore the right paren loc for now
Sebastian Redla55e52c2008-11-25 22:21:31 +0000204 CurrAttr = new AttributeList(AttrName, AttrNameLoc, 0,
205 SourceLocation(), ArgExprs.take(), ArgExprs.size(),
Reid Spencer5f016e22007-07-11 17:01:13 +0000206 CurrAttr);
207 }
Nate Begeman6f3d8382009-06-26 06:32:41 +0000208 break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000209 }
210 }
211 } else {
212 CurrAttr = new AttributeList(AttrName, AttrNameLoc,
213 0, SourceLocation(), 0, 0, CurrAttr);
214 }
215 }
216 if (ExpectAndConsume(tok::r_paren, diag::err_expected_rparen))
Reid Spencer5f016e22007-07-11 17:01:13 +0000217 SkipUntil(tok::r_paren, false);
Sebastian Redlab197ba2009-02-09 18:23:29 +0000218 SourceLocation Loc = Tok.getLocation();;
219 if (ExpectAndConsume(tok::r_paren, diag::err_expected_rparen)) {
220 SkipUntil(tok::r_paren, false);
221 }
222 if (EndLoc)
223 *EndLoc = Loc;
Reid Spencer5f016e22007-07-11 17:01:13 +0000224 }
225 return CurrAttr;
226}
227
Eli Friedmana23b4852009-06-08 07:21:15 +0000228/// ParseMicrosoftDeclSpec - Parse an __declspec construct
229///
230/// [MS] decl-specifier:
231/// __declspec ( extended-decl-modifier-seq )
232///
233/// [MS] extended-decl-modifier-seq:
234/// extended-decl-modifier[opt]
235/// extended-decl-modifier extended-decl-modifier-seq
236
Eli Friedman290eeb02009-06-08 23:27:34 +0000237AttributeList* Parser::ParseMicrosoftDeclSpec(AttributeList *CurrAttr) {
Steve Narofff59e17e2008-12-24 20:59:21 +0000238 assert(Tok.is(tok::kw___declspec) && "Not a declspec!");
Eli Friedmana23b4852009-06-08 07:21:15 +0000239
Steve Narofff59e17e2008-12-24 20:59:21 +0000240 ConsumeToken();
Eli Friedmana23b4852009-06-08 07:21:15 +0000241 if (ExpectAndConsume(tok::l_paren, diag::err_expected_lparen_after,
242 "declspec")) {
243 SkipUntil(tok::r_paren, true); // skip until ) or ;
244 return CurrAttr;
245 }
Eli Friedman290eeb02009-06-08 23:27:34 +0000246 while (Tok.getIdentifierInfo()) {
Eli Friedmana23b4852009-06-08 07:21:15 +0000247 IdentifierInfo *AttrName = Tok.getIdentifierInfo();
248 SourceLocation AttrNameLoc = ConsumeToken();
249 if (Tok.is(tok::l_paren)) {
250 ConsumeParen();
251 // FIXME: This doesn't parse __declspec(property(get=get_func_name))
252 // correctly.
253 OwningExprResult ArgExpr(ParseAssignmentExpression());
254 if (!ArgExpr.isInvalid()) {
255 ExprTy* ExprList = ArgExpr.take();
256 CurrAttr = new AttributeList(AttrName, AttrNameLoc, 0,
257 SourceLocation(), &ExprList, 1,
258 CurrAttr, true);
259 }
260 if (ExpectAndConsume(tok::r_paren, diag::err_expected_rparen))
261 SkipUntil(tok::r_paren, false);
262 } else {
263 CurrAttr = new AttributeList(AttrName, AttrNameLoc, 0, SourceLocation(),
264 0, 0, CurrAttr, true);
265 }
266 }
267 if (ExpectAndConsume(tok::r_paren, diag::err_expected_rparen))
268 SkipUntil(tok::r_paren, false);
Eli Friedman290eeb02009-06-08 23:27:34 +0000269 return CurrAttr;
270}
271
272AttributeList* Parser::ParseMicrosoftTypeAttributes(AttributeList *CurrAttr) {
273 // Treat these like attributes
274 // FIXME: Allow Sema to distinguish between these and real attributes!
275 while (Tok.is(tok::kw___fastcall) || Tok.is(tok::kw___stdcall) ||
276 Tok.is(tok::kw___cdecl) || Tok.is(tok::kw___ptr64) ||
277 Tok.is(tok::kw___w64)) {
278 IdentifierInfo *AttrName = Tok.getIdentifierInfo();
279 SourceLocation AttrNameLoc = ConsumeToken();
280 if (Tok.is(tok::kw___ptr64) || Tok.is(tok::kw___w64))
281 // FIXME: Support these properly!
282 continue;
283 CurrAttr = new AttributeList(AttrName, AttrNameLoc, 0,
284 SourceLocation(), 0, 0, CurrAttr, true);
285 }
286 return CurrAttr;
Steve Narofff59e17e2008-12-24 20:59:21 +0000287}
288
Reid Spencer5f016e22007-07-11 17:01:13 +0000289/// ParseDeclaration - Parse a full 'declaration', which consists of
290/// declaration-specifiers, some number of declarators, and a semicolon.
Chris Lattner97144fc2009-04-02 04:16:50 +0000291/// 'Context' should be a Declarator::TheContext value. This returns the
292/// location of the semicolon in DeclEnd.
Chris Lattner8f08cb72007-08-25 06:57:03 +0000293///
294/// declaration: [C99 6.7]
295/// block-declaration ->
296/// simple-declaration
297/// others [FIXME]
Douglas Gregoradcac882008-12-01 23:54:00 +0000298/// [C++] template-declaration
Chris Lattner8f08cb72007-08-25 06:57:03 +0000299/// [C++] namespace-definition
Douglas Gregorf780abc2008-12-30 03:27:21 +0000300/// [C++] using-directive
Douglas Gregord7f37bf2009-06-22 23:06:13 +0000301/// [C++] using-declaration
Sebastian Redl50de12f2009-03-24 22:27:57 +0000302/// [C++0x] static_assert-declaration
Chris Lattner8f08cb72007-08-25 06:57:03 +0000303/// others... [FIXME]
304///
Chris Lattner97144fc2009-04-02 04:16:50 +0000305Parser::DeclGroupPtrTy Parser::ParseDeclaration(unsigned Context,
306 SourceLocation &DeclEnd) {
Chris Lattner682bf922009-03-29 16:50:03 +0000307 DeclPtrTy SingleDecl;
Chris Lattner8f08cb72007-08-25 06:57:03 +0000308 switch (Tok.getKind()) {
Douglas Gregoradcac882008-12-01 23:54:00 +0000309 case tok::kw_template:
Douglas Gregor1426e532009-05-12 21:31:51 +0000310 case tok::kw_export:
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000311 SingleDecl = ParseDeclarationStartingWithTemplate(Context, DeclEnd);
Chris Lattner682bf922009-03-29 16:50:03 +0000312 break;
Chris Lattner8f08cb72007-08-25 06:57:03 +0000313 case tok::kw_namespace:
Chris Lattner97144fc2009-04-02 04:16:50 +0000314 SingleDecl = ParseNamespace(Context, DeclEnd);
Chris Lattner682bf922009-03-29 16:50:03 +0000315 break;
Douglas Gregorf780abc2008-12-30 03:27:21 +0000316 case tok::kw_using:
Chris Lattner97144fc2009-04-02 04:16:50 +0000317 SingleDecl = ParseUsingDirectiveOrDeclaration(Context, DeclEnd);
Chris Lattner682bf922009-03-29 16:50:03 +0000318 break;
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000319 case tok::kw_static_assert:
Chris Lattner97144fc2009-04-02 04:16:50 +0000320 SingleDecl = ParseStaticAssertDeclaration(DeclEnd);
Chris Lattner682bf922009-03-29 16:50:03 +0000321 break;
Chris Lattner8f08cb72007-08-25 06:57:03 +0000322 default:
Chris Lattner97144fc2009-04-02 04:16:50 +0000323 return ParseSimpleDeclaration(Context, DeclEnd);
Chris Lattner8f08cb72007-08-25 06:57:03 +0000324 }
Chris Lattner682bf922009-03-29 16:50:03 +0000325
326 // This routine returns a DeclGroup, if the thing we parsed only contains a
327 // single decl, convert it now.
328 return Actions.ConvertDeclToDeclGroup(SingleDecl);
Chris Lattner8f08cb72007-08-25 06:57:03 +0000329}
330
331/// simple-declaration: [C99 6.7: declaration] [C++ 7p1: dcl.dcl]
332/// declaration-specifiers init-declarator-list[opt] ';'
333///[C90/C++]init-declarator-list ';' [TODO]
334/// [OMP] threadprivate-directive [TODO]
Chris Lattnercd147752009-03-29 17:27:48 +0000335///
336/// If RequireSemi is false, this does not check for a ';' at the end of the
337/// declaration.
338Parser::DeclGroupPtrTy Parser::ParseSimpleDeclaration(unsigned Context,
Chris Lattner97144fc2009-04-02 04:16:50 +0000339 SourceLocation &DeclEnd,
Chris Lattnercd147752009-03-29 17:27:48 +0000340 bool RequireSemi) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000341 // Parse the common declaration-specifiers piece.
342 DeclSpec DS;
343 ParseDeclarationSpecifiers(DS);
344
345 // C99 6.7.2.3p6: Handle "struct-or-union identifier;", "enum { X };"
346 // declaration-specifiers init-declarator-list[opt] ';'
Chris Lattner04d66662007-10-09 17:33:22 +0000347 if (Tok.is(tok::semi)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000348 ConsumeToken();
Chris Lattner682bf922009-03-29 16:50:03 +0000349 DeclPtrTy TheDecl = Actions.ParsedFreeStandingDeclSpec(CurScope, DS);
350 return Actions.ConvertDeclToDeclGroup(TheDecl);
Reid Spencer5f016e22007-07-11 17:01:13 +0000351 }
352
353 Declarator DeclaratorInfo(DS, (Declarator::TheContext)Context);
354 ParseDeclarator(DeclaratorInfo);
355
Chris Lattner23c4b182009-03-29 17:18:04 +0000356 DeclGroupPtrTy DG =
357 ParseInitDeclaratorListAfterFirstDeclarator(DeclaratorInfo);
Chris Lattnercd147752009-03-29 17:27:48 +0000358
Chris Lattner97144fc2009-04-02 04:16:50 +0000359 DeclEnd = Tok.getLocation();
360
Chris Lattnercd147752009-03-29 17:27:48 +0000361 // If the client wants to check what comes after the declaration, just return
362 // immediately without checking anything!
363 if (!RequireSemi) return DG;
Chris Lattner23c4b182009-03-29 17:18:04 +0000364
365 if (Tok.is(tok::semi)) {
366 ConsumeToken();
Chris Lattner23c4b182009-03-29 17:18:04 +0000367 return DG;
368 }
369
Chris Lattner23c4b182009-03-29 17:18:04 +0000370 Diag(Tok, diag::err_expected_semi_declation);
371 // Skip to end of block or statement
372 SkipUntil(tok::r_brace, true, true);
373 if (Tok.is(tok::semi))
374 ConsumeToken();
375 return DG;
Reid Spencer5f016e22007-07-11 17:01:13 +0000376}
377
Douglas Gregor1426e532009-05-12 21:31:51 +0000378/// \brief Parse 'declaration' after parsing 'declaration-specifiers
379/// declarator'. This method parses the remainder of the declaration
380/// (including any attributes or initializer, among other things) and
381/// finalizes the declaration.
Reid Spencer5f016e22007-07-11 17:01:13 +0000382///
Reid Spencer5f016e22007-07-11 17:01:13 +0000383/// init-declarator: [C99 6.7]
384/// declarator
385/// declarator '=' initializer
386/// [GNU] declarator simple-asm-expr[opt] attributes[opt]
387/// [GNU] declarator simple-asm-expr[opt] attributes[opt] '=' initializer
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +0000388/// [C++] declarator initializer[opt]
389///
390/// [C++] initializer:
391/// [C++] '=' initializer-clause
392/// [C++] '(' expression-list ')'
Sebastian Redl50de12f2009-03-24 22:27:57 +0000393/// [C++0x] '=' 'default' [TODO]
394/// [C++0x] '=' 'delete'
395///
396/// According to the standard grammar, =default and =delete are function
397/// definitions, but that definitely doesn't fit with the parser here.
Reid Spencer5f016e22007-07-11 17:01:13 +0000398///
Douglas Gregore542c862009-06-23 23:11:28 +0000399Parser::DeclPtrTy Parser::ParseDeclarationAfterDeclarator(Declarator &D,
400 const ParsedTemplateInfo &TemplateInfo) {
Douglas Gregor1426e532009-05-12 21:31:51 +0000401 // If a simple-asm-expr is present, parse it.
402 if (Tok.is(tok::kw_asm)) {
403 SourceLocation Loc;
404 OwningExprResult AsmLabel(ParseSimpleAsm(&Loc));
405 if (AsmLabel.isInvalid()) {
406 SkipUntil(tok::semi, true, true);
407 return DeclPtrTy();
408 }
409
410 D.setAsmLabel(AsmLabel.release());
411 D.SetRangeEnd(Loc);
412 }
413
414 // If attributes are present, parse them.
415 if (Tok.is(tok::kw___attribute)) {
416 SourceLocation Loc;
417 AttributeList *AttrList = ParseAttributes(&Loc);
418 D.AddAttributes(AttrList, Loc);
419 }
420
421 // Inform the current actions module that we just parsed this declarator.
Douglas Gregore542c862009-06-23 23:11:28 +0000422 DeclPtrTy ThisDecl = TemplateInfo.TemplateParams?
423 Actions.ActOnTemplateDeclarator(CurScope,
424 Action::MultiTemplateParamsArg(Actions,
425 TemplateInfo.TemplateParams->data(),
426 TemplateInfo.TemplateParams->size()),
427 D)
428 : Actions.ActOnDeclarator(CurScope, D);
Douglas Gregor1426e532009-05-12 21:31:51 +0000429
430 // Parse declarator '=' initializer.
431 if (Tok.is(tok::equal)) {
432 ConsumeToken();
433 if (getLang().CPlusPlus0x && Tok.is(tok::kw_delete)) {
434 SourceLocation DelLoc = ConsumeToken();
435 Actions.SetDeclDeleted(ThisDecl, DelLoc);
436 } else {
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +0000437 if (getLang().CPlusPlus)
438 Actions.ActOnCXXEnterDeclInitializer(CurScope, ThisDecl);
439
Douglas Gregor1426e532009-05-12 21:31:51 +0000440 OwningExprResult Init(ParseInitializer());
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +0000441
442 if (getLang().CPlusPlus)
443 Actions.ActOnCXXExitDeclInitializer(CurScope, ThisDecl);
444
Douglas Gregor1426e532009-05-12 21:31:51 +0000445 if (Init.isInvalid()) {
446 SkipUntil(tok::semi, true, true);
447 return DeclPtrTy();
448 }
Anders Carlssonf5dcd382009-05-30 21:37:25 +0000449 Actions.AddInitializerToDecl(ThisDecl, Actions.FullExpr(Init));
Douglas Gregor1426e532009-05-12 21:31:51 +0000450 }
451 } else if (Tok.is(tok::l_paren)) {
452 // Parse C++ direct initializer: '(' expression-list ')'
453 SourceLocation LParenLoc = ConsumeParen();
454 ExprVector Exprs(Actions);
455 CommaLocsTy CommaLocs;
456
457 if (ParseExpressionList(Exprs, CommaLocs)) {
458 SkipUntil(tok::r_paren);
459 } else {
460 // Match the ')'.
461 SourceLocation RParenLoc = MatchRHSPunctuation(tok::r_paren, LParenLoc);
462
463 assert(!Exprs.empty() && Exprs.size()-1 == CommaLocs.size() &&
464 "Unexpected number of commas!");
465 Actions.AddCXXDirectInitializerToDecl(ThisDecl, LParenLoc,
466 move_arg(Exprs),
Jay Foadbeaaccd2009-05-21 09:52:38 +0000467 CommaLocs.data(), RParenLoc);
Douglas Gregor1426e532009-05-12 21:31:51 +0000468 }
469 } else {
Anders Carlsson6a75cd92009-07-11 00:34:39 +0000470 bool TypeContainsUndeducedAuto =
471 D.getDeclSpec().getTypeSpecType() == DeclSpec::TST_auto;
472 Actions.ActOnUninitializedDecl(ThisDecl, TypeContainsUndeducedAuto);
Douglas Gregor1426e532009-05-12 21:31:51 +0000473 }
474
475 return ThisDecl;
476}
477
478/// ParseInitDeclaratorListAfterFirstDeclarator - Parse 'declaration' after
479/// parsing 'declaration-specifiers declarator'. This method is split out this
480/// way to handle the ambiguity between top-level function-definitions and
481/// declarations.
482///
483/// init-declarator-list: [C99 6.7]
484/// init-declarator
485/// init-declarator-list ',' init-declarator
486///
487/// According to the standard grammar, =default and =delete are function
488/// definitions, but that definitely doesn't fit with the parser here.
489///
Chris Lattner682bf922009-03-29 16:50:03 +0000490Parser::DeclGroupPtrTy Parser::
Reid Spencer5f016e22007-07-11 17:01:13 +0000491ParseInitDeclaratorListAfterFirstDeclarator(Declarator &D) {
Chris Lattner682bf922009-03-29 16:50:03 +0000492 // Declarators may be grouped together ("int X, *Y, Z();"). Remember the decls
493 // that we parse together here.
494 llvm::SmallVector<DeclPtrTy, 8> DeclsInGroup;
Reid Spencer5f016e22007-07-11 17:01:13 +0000495
496 // At this point, we know that it is not a function definition. Parse the
497 // rest of the init-declarator-list.
498 while (1) {
Douglas Gregor1426e532009-05-12 21:31:51 +0000499 DeclPtrTy ThisDecl = ParseDeclarationAfterDeclarator(D);
500 if (ThisDecl.get())
501 DeclsInGroup.push_back(ThisDecl);
Reid Spencer5f016e22007-07-11 17:01:13 +0000502
Reid Spencer5f016e22007-07-11 17:01:13 +0000503 // If we don't have a comma, it is either the end of the list (a ';') or an
504 // error, bail out.
Chris Lattner04d66662007-10-09 17:33:22 +0000505 if (Tok.isNot(tok::comma))
Reid Spencer5f016e22007-07-11 17:01:13 +0000506 break;
507
508 // Consume the comma.
509 ConsumeToken();
510
511 // Parse the next declarator.
512 D.clear();
Chris Lattneraab740a2008-10-20 04:57:38 +0000513
514 // Accept attributes in an init-declarator. In the first declarator in a
515 // declaration, these would be part of the declspec. In subsequent
516 // declarators, they become part of the declarator itself, so that they
517 // don't apply to declarators after *this* one. Examples:
518 // short __attribute__((common)) var; -> declspec
519 // short var __attribute__((common)); -> declarator
520 // short x, __attribute__((common)) var; -> declarator
Sebastian Redlab197ba2009-02-09 18:23:29 +0000521 if (Tok.is(tok::kw___attribute)) {
522 SourceLocation Loc;
523 AttributeList *AttrList = ParseAttributes(&Loc);
524 D.AddAttributes(AttrList, Loc);
525 }
Chris Lattneraab740a2008-10-20 04:57:38 +0000526
Reid Spencer5f016e22007-07-11 17:01:13 +0000527 ParseDeclarator(D);
528 }
529
Eli Friedmanc1dc6532009-05-29 01:49:24 +0000530 return Actions.FinalizeDeclaratorGroup(CurScope, D.getDeclSpec(),
531 DeclsInGroup.data(),
Chris Lattner23c4b182009-03-29 17:18:04 +0000532 DeclsInGroup.size());
Reid Spencer5f016e22007-07-11 17:01:13 +0000533}
534
535/// ParseSpecifierQualifierList
536/// specifier-qualifier-list:
537/// type-specifier specifier-qualifier-list[opt]
538/// type-qualifier specifier-qualifier-list[opt]
539/// [GNU] attributes specifier-qualifier-list[opt]
540///
541void Parser::ParseSpecifierQualifierList(DeclSpec &DS) {
542 /// specifier-qualifier-list is a subset of declaration-specifiers. Just
543 /// parse declaration-specifiers and complain about extra stuff.
Reid Spencer5f016e22007-07-11 17:01:13 +0000544 ParseDeclarationSpecifiers(DS);
545
546 // Validate declspec for type-name.
547 unsigned Specs = DS.getParsedSpecifiers();
Chris Lattnerb6645dd2009-04-14 21:16:09 +0000548 if (Specs == DeclSpec::PQ_None && !DS.getNumProtocolQualifiers() &&
549 !DS.getAttributes())
Reid Spencer5f016e22007-07-11 17:01:13 +0000550 Diag(Tok, diag::err_typename_requires_specqual);
551
552 // Issue diagnostic and remove storage class if present.
553 if (Specs & DeclSpec::PQ_StorageClassSpecifier) {
554 if (DS.getStorageClassSpecLoc().isValid())
555 Diag(DS.getStorageClassSpecLoc(),diag::err_typename_invalid_storageclass);
556 else
557 Diag(DS.getThreadSpecLoc(), diag::err_typename_invalid_storageclass);
558 DS.ClearStorageClassSpecs();
559 }
560
561 // Issue diagnostic and remove function specfier if present.
562 if (Specs & DeclSpec::PQ_FunctionSpecifier) {
Douglas Gregorb48fe382008-10-31 09:07:45 +0000563 if (DS.isInlineSpecified())
564 Diag(DS.getInlineSpecLoc(), diag::err_typename_invalid_functionspec);
565 if (DS.isVirtualSpecified())
566 Diag(DS.getVirtualSpecLoc(), diag::err_typename_invalid_functionspec);
567 if (DS.isExplicitSpecified())
568 Diag(DS.getExplicitSpecLoc(), diag::err_typename_invalid_functionspec);
Reid Spencer5f016e22007-07-11 17:01:13 +0000569 DS.ClearFunctionSpecs();
570 }
571}
572
Chris Lattnerc199ab32009-04-12 20:42:31 +0000573/// isValidAfterIdentifierInDeclaratorAfterDeclSpec - Return true if the
574/// specified token is valid after the identifier in a declarator which
575/// immediately follows the declspec. For example, these things are valid:
576///
577/// int x [ 4]; // direct-declarator
578/// int x ( int y); // direct-declarator
579/// int(int x ) // direct-declarator
580/// int x ; // simple-declaration
581/// int x = 17; // init-declarator-list
582/// int x , y; // init-declarator-list
583/// int x __asm__ ("foo"); // init-declarator-list
Chris Lattnerb6645dd2009-04-14 21:16:09 +0000584/// int x : 4; // struct-declarator
Chris Lattnerc83c27a2009-04-12 22:29:43 +0000585/// int x { 5}; // C++'0x unified initializers
Chris Lattnerc199ab32009-04-12 20:42:31 +0000586///
587/// This is not, because 'x' does not immediately follow the declspec (though
588/// ')' happens to be valid anyway).
589/// int (x)
590///
591static bool isValidAfterIdentifierInDeclarator(const Token &T) {
592 return T.is(tok::l_square) || T.is(tok::l_paren) || T.is(tok::r_paren) ||
593 T.is(tok::semi) || T.is(tok::comma) || T.is(tok::equal) ||
Chris Lattnerb6645dd2009-04-14 21:16:09 +0000594 T.is(tok::kw_asm) || T.is(tok::l_brace) || T.is(tok::colon);
Chris Lattnerc199ab32009-04-12 20:42:31 +0000595}
596
Chris Lattnere40c2952009-04-14 21:34:55 +0000597
598/// ParseImplicitInt - This method is called when we have an non-typename
599/// identifier in a declspec (which normally terminates the decl spec) when
600/// the declspec has no type specifier. In this case, the declspec is either
601/// malformed or is "implicit int" (in K&R and C89).
602///
603/// This method handles diagnosing this prettily and returns false if the
604/// declspec is done being processed. If it recovers and thinks there may be
605/// other pieces of declspec after it, it returns true.
606///
Chris Lattnerf4382f52009-04-14 22:17:06 +0000607bool Parser::ParseImplicitInt(DeclSpec &DS, CXXScopeSpec *SS,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000608 const ParsedTemplateInfo &TemplateInfo,
Chris Lattnere40c2952009-04-14 21:34:55 +0000609 AccessSpecifier AS) {
Chris Lattnerf4382f52009-04-14 22:17:06 +0000610 assert(Tok.is(tok::identifier) && "should have identifier");
611
Chris Lattnere40c2952009-04-14 21:34:55 +0000612 SourceLocation Loc = Tok.getLocation();
613 // If we see an identifier that is not a type name, we normally would
614 // parse it as the identifer being declared. However, when a typename
615 // is typo'd or the definition is not included, this will incorrectly
616 // parse the typename as the identifier name and fall over misparsing
617 // later parts of the diagnostic.
618 //
619 // As such, we try to do some look-ahead in cases where this would
620 // otherwise be an "implicit-int" case to see if this is invalid. For
621 // example: "static foo_t x = 4;" In this case, if we parsed foo_t as
622 // an identifier with implicit int, we'd get a parse error because the
623 // next token is obviously invalid for a type. Parse these as a case
624 // with an invalid type specifier.
625 assert(!DS.hasTypeSpecifier() && "Type specifier checked above");
626
627 // Since we know that this either implicit int (which is rare) or an
628 // error, we'd do lookahead to try to do better recovery.
629 if (isValidAfterIdentifierInDeclarator(NextToken())) {
630 // If this token is valid for implicit int, e.g. "static x = 4", then
631 // we just avoid eating the identifier, so it will be parsed as the
632 // identifier in the declarator.
633 return false;
634 }
635
636 // Otherwise, if we don't consume this token, we are going to emit an
637 // error anyway. Try to recover from various common problems. Check
638 // to see if this was a reference to a tag name without a tag specified.
639 // This is a common problem in C (saying 'foo' instead of 'struct foo').
Chris Lattnerf4382f52009-04-14 22:17:06 +0000640 //
641 // C++ doesn't need this, and isTagName doesn't take SS.
642 if (SS == 0) {
643 const char *TagName = 0;
644 tok::TokenKind TagKind = tok::unknown;
Chris Lattnere40c2952009-04-14 21:34:55 +0000645
Chris Lattnere40c2952009-04-14 21:34:55 +0000646 switch (Actions.isTagName(*Tok.getIdentifierInfo(), CurScope)) {
647 default: break;
648 case DeclSpec::TST_enum: TagName="enum" ;TagKind=tok::kw_enum ;break;
649 case DeclSpec::TST_union: TagName="union" ;TagKind=tok::kw_union ;break;
650 case DeclSpec::TST_struct:TagName="struct";TagKind=tok::kw_struct;break;
651 case DeclSpec::TST_class: TagName="class" ;TagKind=tok::kw_class ;break;
652 }
Chris Lattnere40c2952009-04-14 21:34:55 +0000653
Chris Lattnerf4382f52009-04-14 22:17:06 +0000654 if (TagName) {
655 Diag(Loc, diag::err_use_of_tag_name_without_tag)
656 << Tok.getIdentifierInfo() << TagName
657 << CodeModificationHint::CreateInsertion(Tok.getLocation(),TagName);
658
659 // Parse this as a tag as if the missing tag were present.
660 if (TagKind == tok::kw_enum)
661 ParseEnumSpecifier(Loc, DS, AS);
662 else
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000663 ParseClassSpecifier(TagKind, Loc, DS, TemplateInfo, AS);
Chris Lattnerf4382f52009-04-14 22:17:06 +0000664 return true;
665 }
Chris Lattnere40c2952009-04-14 21:34:55 +0000666 }
667
668 // Since this is almost certainly an invalid type name, emit a
669 // diagnostic that says it, eat the token, and mark the declspec as
670 // invalid.
Chris Lattnerf4382f52009-04-14 22:17:06 +0000671 SourceRange R;
672 if (SS) R = SS->getRange();
673
674 Diag(Loc, diag::err_unknown_typename) << Tok.getIdentifierInfo() << R;
Chris Lattnere40c2952009-04-14 21:34:55 +0000675 const char *PrevSpec;
676 DS.SetTypeSpecType(DeclSpec::TST_error, Loc, PrevSpec);
677 DS.SetRangeEnd(Tok.getLocation());
678 ConsumeToken();
679
680 // TODO: Could inject an invalid typedef decl in an enclosing scope to
681 // avoid rippling error messages on subsequent uses of the same type,
682 // could be useful if #include was forgotten.
683 return false;
684}
685
Reid Spencer5f016e22007-07-11 17:01:13 +0000686/// ParseDeclarationSpecifiers
687/// declaration-specifiers: [C99 6.7]
688/// storage-class-specifier declaration-specifiers[opt]
689/// type-specifier declaration-specifiers[opt]
Reid Spencer5f016e22007-07-11 17:01:13 +0000690/// [C99] function-specifier declaration-specifiers[opt]
691/// [GNU] attributes declaration-specifiers[opt]
692///
693/// storage-class-specifier: [C99 6.7.1]
694/// 'typedef'
695/// 'extern'
696/// 'static'
697/// 'auto'
698/// 'register'
Sebastian Redl669d5d72008-11-14 23:42:31 +0000699/// [C++] 'mutable'
Reid Spencer5f016e22007-07-11 17:01:13 +0000700/// [GNU] '__thread'
Reid Spencer5f016e22007-07-11 17:01:13 +0000701/// function-specifier: [C99 6.7.4]
702/// [C99] 'inline'
Douglas Gregorb48fe382008-10-31 09:07:45 +0000703/// [C++] 'virtual'
704/// [C++] 'explicit'
Anders Carlssonf47f7a12009-05-06 04:46:28 +0000705/// 'friend': [C++ dcl.friend]
706
Reid Spencer5f016e22007-07-11 17:01:13 +0000707///
Douglas Gregorc4b4e7b2008-12-24 02:52:09 +0000708void Parser::ParseDeclarationSpecifiers(DeclSpec &DS,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000709 const ParsedTemplateInfo &TemplateInfo,
Chris Lattnerc199ab32009-04-12 20:42:31 +0000710 AccessSpecifier AS) {
Chris Lattner81c018d2008-03-13 06:29:04 +0000711 DS.SetRangeStart(Tok.getLocation());
Reid Spencer5f016e22007-07-11 17:01:13 +0000712 while (1) {
713 int isInvalid = false;
714 const char *PrevSpec = 0;
715 SourceLocation Loc = Tok.getLocation();
Douglas Gregor12e083c2008-11-07 15:42:26 +0000716
Reid Spencer5f016e22007-07-11 17:01:13 +0000717 switch (Tok.getKind()) {
Douglas Gregor12e083c2008-11-07 15:42:26 +0000718 default:
Chris Lattnerbce61352008-07-26 00:20:22 +0000719 DoneWithDeclSpec:
Reid Spencer5f016e22007-07-11 17:01:13 +0000720 // If this is not a declaration specifier token, we're done reading decl
721 // specifiers. First verify that DeclSpec's are consistent.
Douglas Gregor9b3064b2009-04-01 22:41:11 +0000722 DS.Finish(Diags, PP);
Reid Spencer5f016e22007-07-11 17:01:13 +0000723 return;
Chris Lattner5e02c472009-01-05 00:07:25 +0000724
725 case tok::coloncolon: // ::foo::bar
726 // Annotate C++ scope specifiers. If we get one, loop.
727 if (TryAnnotateCXXScopeToken())
728 continue;
729 goto DoneWithDeclSpec;
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000730
731 case tok::annot_cxxscope: {
732 if (DS.hasTypeSpecifier())
733 goto DoneWithDeclSpec;
734
735 // We are looking for a qualified typename.
Douglas Gregor9135c722009-03-25 15:40:00 +0000736 Token Next = NextToken();
737 if (Next.is(tok::annot_template_id) &&
738 static_cast<TemplateIdAnnotation *>(Next.getAnnotationValue())
Douglas Gregorc45c2322009-03-31 00:43:58 +0000739 ->Kind == TNK_Type_template) {
Douglas Gregor9135c722009-03-25 15:40:00 +0000740 // We have a qualified template-id, e.g., N::A<int>
741 CXXScopeSpec SS;
742 ParseOptionalCXXScopeSpecifier(SS);
743 assert(Tok.is(tok::annot_template_id) &&
744 "ParseOptionalCXXScopeSpecifier not working");
745 AnnotateTemplateIdTokenAsType(&SS);
746 continue;
747 }
748
749 if (Next.isNot(tok::identifier))
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000750 goto DoneWithDeclSpec;
751
752 CXXScopeSpec SS;
Douglas Gregor35073692009-03-26 23:56:24 +0000753 SS.setScopeRep(Tok.getAnnotationValue());
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000754 SS.setRange(Tok.getAnnotationRange());
755
756 // If the next token is the name of the class type that the C++ scope
757 // denotes, followed by a '(', then this is a constructor declaration.
758 // We're done with the decl-specifiers.
Chris Lattnerf4382f52009-04-14 22:17:06 +0000759 if (Actions.isCurrentClassName(*Next.getIdentifierInfo(),
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000760 CurScope, &SS) &&
761 GetLookAheadToken(2).is(tok::l_paren))
762 goto DoneWithDeclSpec;
763
Douglas Gregorb696ea32009-02-04 17:00:24 +0000764 TypeTy *TypeRep = Actions.getTypeName(*Next.getIdentifierInfo(),
765 Next.getLocation(), CurScope, &SS);
Douglas Gregor55f6b142009-02-09 18:46:07 +0000766
Chris Lattnerf4382f52009-04-14 22:17:06 +0000767 // If the referenced identifier is not a type, then this declspec is
768 // erroneous: We already checked about that it has no type specifier, and
769 // C++ doesn't have implicit int. Diagnose it as a typo w.r.t. to the
770 // typename.
771 if (TypeRep == 0) {
772 ConsumeToken(); // Eat the scope spec so the identifier is current.
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000773 if (ParseImplicitInt(DS, &SS, TemplateInfo, AS)) continue;
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000774 goto DoneWithDeclSpec;
Chris Lattnerf4382f52009-04-14 22:17:06 +0000775 }
Douglas Gregore4e5b052009-03-19 00:18:19 +0000776
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000777 ConsumeToken(); // The C++ scope.
778
Douglas Gregor1a51b4a2009-02-09 15:09:02 +0000779 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_typename, Loc, PrevSpec,
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000780 TypeRep);
781 if (isInvalid)
782 break;
783
784 DS.SetRangeEnd(Tok.getLocation());
785 ConsumeToken(); // The typename.
786
787 continue;
788 }
Chris Lattner80d0c892009-01-21 19:48:37 +0000789
790 case tok::annot_typename: {
Douglas Gregor31a19b62009-04-01 21:51:26 +0000791 if (Tok.getAnnotationValue())
792 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_typename, Loc, PrevSpec,
793 Tok.getAnnotationValue());
794 else
795 DS.SetTypeSpecError();
Chris Lattner80d0c892009-01-21 19:48:37 +0000796 DS.SetRangeEnd(Tok.getAnnotationEndLoc());
797 ConsumeToken(); // The typename
798
799 // Objective-C supports syntax of the form 'id<proto1,proto2>' where 'id'
800 // is a specific typedef and 'itf<proto1,proto2>' where 'itf' is an
801 // Objective-C interface. If we don't have Objective-C or a '<', this is
802 // just a normal reference to a typedef name.
803 if (!Tok.is(tok::less) || !getLang().ObjC1)
804 continue;
805
806 SourceLocation EndProtoLoc;
Chris Lattnerb28317a2009-03-28 19:18:32 +0000807 llvm::SmallVector<DeclPtrTy, 8> ProtocolDecl;
Chris Lattner80d0c892009-01-21 19:48:37 +0000808 ParseObjCProtocolReferences(ProtocolDecl, false, EndProtoLoc);
Ted Kremenek1bc5bbf2009-06-30 22:19:00 +0000809 DS.setProtocolQualifiers(ProtocolDecl.data(), ProtocolDecl.size());
Chris Lattner80d0c892009-01-21 19:48:37 +0000810
811 DS.SetRangeEnd(EndProtoLoc);
812 continue;
813 }
814
Chris Lattner3bd934a2008-07-26 01:18:38 +0000815 // typedef-name
816 case tok::identifier: {
Chris Lattner5e02c472009-01-05 00:07:25 +0000817 // In C++, check to see if this is a scope specifier like foo::bar::, if
818 // so handle it as such. This is important for ctor parsing.
Chris Lattner837acd02009-01-21 19:19:26 +0000819 if (getLang().CPlusPlus && TryAnnotateCXXScopeToken())
820 continue;
Chris Lattner5e02c472009-01-05 00:07:25 +0000821
Chris Lattner3bd934a2008-07-26 01:18:38 +0000822 // This identifier can only be a typedef name if we haven't already seen
823 // a type-specifier. Without this check we misparse:
824 // typedef int X; struct Y { short X; }; as 'short int'.
825 if (DS.hasTypeSpecifier())
826 goto DoneWithDeclSpec;
827
828 // It has to be available as a typedef too!
Douglas Gregorb696ea32009-02-04 17:00:24 +0000829 TypeTy *TypeRep = Actions.getTypeName(*Tok.getIdentifierInfo(),
830 Tok.getLocation(), CurScope);
Douglas Gregor55f6b142009-02-09 18:46:07 +0000831
Chris Lattnerc199ab32009-04-12 20:42:31 +0000832 // If this is not a typedef name, don't parse it as part of the declspec,
833 // it must be an implicit int or an error.
834 if (TypeRep == 0) {
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000835 if (ParseImplicitInt(DS, 0, TemplateInfo, AS)) continue;
Chris Lattner3bd934a2008-07-26 01:18:38 +0000836 goto DoneWithDeclSpec;
Chris Lattnerc199ab32009-04-12 20:42:31 +0000837 }
Douglas Gregor55f6b142009-02-09 18:46:07 +0000838
Douglas Gregorb48fe382008-10-31 09:07:45 +0000839 // C++: If the identifier is actually the name of the class type
840 // being defined and the next token is a '(', then this is a
841 // constructor declaration. We're done with the decl-specifiers
842 // and will treat this token as an identifier.
Chris Lattnerc199ab32009-04-12 20:42:31 +0000843 if (getLang().CPlusPlus && CurScope->isClassScope() &&
Douglas Gregorb48fe382008-10-31 09:07:45 +0000844 Actions.isCurrentClassName(*Tok.getIdentifierInfo(), CurScope) &&
845 NextToken().getKind() == tok::l_paren)
846 goto DoneWithDeclSpec;
847
Douglas Gregor1a51b4a2009-02-09 15:09:02 +0000848 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_typename, Loc, PrevSpec,
Chris Lattner3bd934a2008-07-26 01:18:38 +0000849 TypeRep);
850 if (isInvalid)
851 break;
852
853 DS.SetRangeEnd(Tok.getLocation());
854 ConsumeToken(); // The identifier
855
856 // Objective-C supports syntax of the form 'id<proto1,proto2>' where 'id'
857 // is a specific typedef and 'itf<proto1,proto2>' where 'itf' is an
858 // Objective-C interface. If we don't have Objective-C or a '<', this is
859 // just a normal reference to a typedef name.
860 if (!Tok.is(tok::less) || !getLang().ObjC1)
861 continue;
862
863 SourceLocation EndProtoLoc;
Chris Lattnerb28317a2009-03-28 19:18:32 +0000864 llvm::SmallVector<DeclPtrTy, 8> ProtocolDecl;
Chris Lattnere13b9592008-07-26 04:03:38 +0000865 ParseObjCProtocolReferences(ProtocolDecl, false, EndProtoLoc);
Ted Kremenek1bc5bbf2009-06-30 22:19:00 +0000866 DS.setProtocolQualifiers(ProtocolDecl.data(), ProtocolDecl.size());
Chris Lattner3bd934a2008-07-26 01:18:38 +0000867
868 DS.SetRangeEnd(EndProtoLoc);
869
Steve Naroff4f9b9f12008-09-22 10:28:57 +0000870 // Need to support trailing type qualifiers (e.g. "id<p> const").
871 // If a type specifier follows, it will be diagnosed elsewhere.
872 continue;
Chris Lattner3bd934a2008-07-26 01:18:38 +0000873 }
Douglas Gregor39a8de12009-02-25 19:37:18 +0000874
875 // type-name
876 case tok::annot_template_id: {
877 TemplateIdAnnotation *TemplateId
878 = static_cast<TemplateIdAnnotation *>(Tok.getAnnotationValue());
Douglas Gregorc45c2322009-03-31 00:43:58 +0000879 if (TemplateId->Kind != TNK_Type_template) {
Douglas Gregor39a8de12009-02-25 19:37:18 +0000880 // This template-id does not refer to a type name, so we're
881 // done with the type-specifiers.
882 goto DoneWithDeclSpec;
883 }
884
885 // Turn the template-id annotation token into a type annotation
886 // token, then try again to parse it as a type-specifier.
Douglas Gregor31a19b62009-04-01 21:51:26 +0000887 AnnotateTemplateIdTokenAsType();
Douglas Gregor39a8de12009-02-25 19:37:18 +0000888 continue;
889 }
890
Reid Spencer5f016e22007-07-11 17:01:13 +0000891 // GNU attributes support.
892 case tok::kw___attribute:
893 DS.AddAttributes(ParseAttributes());
894 continue;
Steve Narofff59e17e2008-12-24 20:59:21 +0000895
896 // Microsoft declspec support.
897 case tok::kw___declspec:
Eli Friedmana23b4852009-06-08 07:21:15 +0000898 DS.AddAttributes(ParseMicrosoftDeclSpec());
Steve Narofff59e17e2008-12-24 20:59:21 +0000899 continue;
Reid Spencer5f016e22007-07-11 17:01:13 +0000900
Steve Naroff239f0732008-12-25 14:16:32 +0000901 // Microsoft single token adornments.
Steve Naroff86bc6cf2008-12-25 14:41:26 +0000902 case tok::kw___forceinline:
Eli Friedman290eeb02009-06-08 23:27:34 +0000903 // FIXME: Add handling here!
904 break;
905
906 case tok::kw___ptr64:
Steve Naroff86bc6cf2008-12-25 14:41:26 +0000907 case tok::kw___w64:
Steve Naroff239f0732008-12-25 14:16:32 +0000908 case tok::kw___cdecl:
909 case tok::kw___stdcall:
910 case tok::kw___fastcall:
Eli Friedman290eeb02009-06-08 23:27:34 +0000911 DS.AddAttributes(ParseMicrosoftTypeAttributes());
912 continue;
913
Reid Spencer5f016e22007-07-11 17:01:13 +0000914 // storage-class-specifier
915 case tok::kw_typedef:
916 isInvalid = DS.SetStorageClassSpec(DeclSpec::SCS_typedef, Loc, PrevSpec);
917 break;
918 case tok::kw_extern:
919 if (DS.isThreadSpecified())
Chris Lattner1ab3b962008-11-18 07:48:38 +0000920 Diag(Tok, diag::ext_thread_before) << "extern";
Reid Spencer5f016e22007-07-11 17:01:13 +0000921 isInvalid = DS.SetStorageClassSpec(DeclSpec::SCS_extern, Loc, PrevSpec);
922 break;
Steve Naroff8d54bf22007-12-18 00:16:02 +0000923 case tok::kw___private_extern__:
Chris Lattnerf97409f2008-04-06 06:57:35 +0000924 isInvalid = DS.SetStorageClassSpec(DeclSpec::SCS_private_extern, Loc,
925 PrevSpec);
Steve Naroff8d54bf22007-12-18 00:16:02 +0000926 break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000927 case tok::kw_static:
928 if (DS.isThreadSpecified())
Chris Lattner1ab3b962008-11-18 07:48:38 +0000929 Diag(Tok, diag::ext_thread_before) << "static";
Reid Spencer5f016e22007-07-11 17:01:13 +0000930 isInvalid = DS.SetStorageClassSpec(DeclSpec::SCS_static, Loc, PrevSpec);
931 break;
932 case tok::kw_auto:
Anders Carlssone89d1592009-06-26 18:41:36 +0000933 if (getLang().CPlusPlus0x)
934 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_auto, Loc, PrevSpec);
935 else
936 isInvalid = DS.SetStorageClassSpec(DeclSpec::SCS_auto, Loc, PrevSpec);
Reid Spencer5f016e22007-07-11 17:01:13 +0000937 break;
938 case tok::kw_register:
939 isInvalid = DS.SetStorageClassSpec(DeclSpec::SCS_register, Loc, PrevSpec);
940 break;
Sebastian Redl669d5d72008-11-14 23:42:31 +0000941 case tok::kw_mutable:
942 isInvalid = DS.SetStorageClassSpec(DeclSpec::SCS_mutable, Loc, PrevSpec);
943 break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000944 case tok::kw___thread:
945 isInvalid = DS.SetStorageClassSpecThread(Loc, PrevSpec)*2;
946 break;
Douglas Gregor12e083c2008-11-07 15:42:26 +0000947
Reid Spencer5f016e22007-07-11 17:01:13 +0000948 // function-specifier
949 case tok::kw_inline:
950 isInvalid = DS.SetFunctionSpecInline(Loc, PrevSpec);
951 break;
Douglas Gregorb48fe382008-10-31 09:07:45 +0000952 case tok::kw_virtual:
953 isInvalid = DS.SetFunctionSpecVirtual(Loc, PrevSpec);
954 break;
Douglas Gregorb48fe382008-10-31 09:07:45 +0000955 case tok::kw_explicit:
956 isInvalid = DS.SetFunctionSpecExplicit(Loc, PrevSpec);
957 break;
Chris Lattner80d0c892009-01-21 19:48:37 +0000958
Anders Carlssonf47f7a12009-05-06 04:46:28 +0000959 // friend
960 case tok::kw_friend:
961 isInvalid = DS.SetFriendSpec(Loc, PrevSpec);
962 break;
963
Chris Lattner80d0c892009-01-21 19:48:37 +0000964 // type-specifier
965 case tok::kw_short:
966 isInvalid = DS.SetTypeSpecWidth(DeclSpec::TSW_short, Loc, PrevSpec);
967 break;
968 case tok::kw_long:
969 if (DS.getTypeSpecWidth() != DeclSpec::TSW_long)
970 isInvalid = DS.SetTypeSpecWidth(DeclSpec::TSW_long, Loc, PrevSpec);
971 else
972 isInvalid = DS.SetTypeSpecWidth(DeclSpec::TSW_longlong, Loc, PrevSpec);
973 break;
974 case tok::kw_signed:
975 isInvalid = DS.SetTypeSpecSign(DeclSpec::TSS_signed, Loc, PrevSpec);
976 break;
977 case tok::kw_unsigned:
978 isInvalid = DS.SetTypeSpecSign(DeclSpec::TSS_unsigned, Loc, PrevSpec);
979 break;
980 case tok::kw__Complex:
981 isInvalid = DS.SetTypeSpecComplex(DeclSpec::TSC_complex, Loc, PrevSpec);
982 break;
983 case tok::kw__Imaginary:
984 isInvalid = DS.SetTypeSpecComplex(DeclSpec::TSC_imaginary, Loc, PrevSpec);
985 break;
986 case tok::kw_void:
987 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_void, Loc, PrevSpec);
988 break;
989 case tok::kw_char:
990 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_char, Loc, PrevSpec);
991 break;
992 case tok::kw_int:
993 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_int, Loc, PrevSpec);
994 break;
995 case tok::kw_float:
996 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_float, Loc, PrevSpec);
997 break;
998 case tok::kw_double:
999 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_double, Loc, PrevSpec);
1000 break;
1001 case tok::kw_wchar_t:
1002 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_wchar, Loc, PrevSpec);
1003 break;
Alisdair Meredithf5c209d2009-07-14 06:30:34 +00001004 case tok::kw_char16_t:
1005 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_char16, Loc, PrevSpec);
1006 break;
1007 case tok::kw_char32_t:
1008 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_char32, Loc, PrevSpec);
1009 break;
Chris Lattner80d0c892009-01-21 19:48:37 +00001010 case tok::kw_bool:
1011 case tok::kw__Bool:
1012 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_bool, Loc, PrevSpec);
1013 break;
1014 case tok::kw__Decimal32:
1015 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_decimal32, Loc, PrevSpec);
1016 break;
1017 case tok::kw__Decimal64:
1018 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_decimal64, Loc, PrevSpec);
1019 break;
1020 case tok::kw__Decimal128:
1021 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_decimal128, Loc, PrevSpec);
1022 break;
1023
1024 // class-specifier:
1025 case tok::kw_class:
1026 case tok::kw_struct:
Chris Lattner4c97d762009-04-12 21:49:30 +00001027 case tok::kw_union: {
1028 tok::TokenKind Kind = Tok.getKind();
1029 ConsumeToken();
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001030 ParseClassSpecifier(Kind, Loc, DS, TemplateInfo, AS);
Chris Lattner80d0c892009-01-21 19:48:37 +00001031 continue;
Chris Lattner4c97d762009-04-12 21:49:30 +00001032 }
Chris Lattner80d0c892009-01-21 19:48:37 +00001033
1034 // enum-specifier:
1035 case tok::kw_enum:
Chris Lattner4c97d762009-04-12 21:49:30 +00001036 ConsumeToken();
1037 ParseEnumSpecifier(Loc, DS, AS);
Chris Lattner80d0c892009-01-21 19:48:37 +00001038 continue;
1039
1040 // cv-qualifier:
1041 case tok::kw_const:
1042 isInvalid = DS.SetTypeQual(DeclSpec::TQ_const, Loc, PrevSpec,getLang())*2;
1043 break;
1044 case tok::kw_volatile:
1045 isInvalid = DS.SetTypeQual(DeclSpec::TQ_volatile, Loc, PrevSpec,
1046 getLang())*2;
1047 break;
1048 case tok::kw_restrict:
1049 isInvalid = DS.SetTypeQual(DeclSpec::TQ_restrict, Loc, PrevSpec,
1050 getLang())*2;
1051 break;
1052
Douglas Gregord57959a2009-03-27 23:10:48 +00001053 // C++ typename-specifier:
1054 case tok::kw_typename:
1055 if (TryAnnotateTypeOrScopeToken())
1056 continue;
1057 break;
1058
Chris Lattner80d0c892009-01-21 19:48:37 +00001059 // GNU typeof support.
1060 case tok::kw_typeof:
1061 ParseTypeofSpecifier(DS);
1062 continue;
1063
Anders Carlsson6fd634f2009-06-24 17:47:40 +00001064 case tok::kw_decltype:
1065 ParseDecltypeSpecifier(DS);
1066 continue;
1067
Steve Naroffd3ded1f2008-06-05 00:02:44 +00001068 case tok::less:
Chris Lattner3bd934a2008-07-26 01:18:38 +00001069 // GCC ObjC supports types like "<SomeProtocol>" as a synonym for
Chris Lattnerbce61352008-07-26 00:20:22 +00001070 // "id<SomeProtocol>". This is hopelessly old fashioned and dangerous,
1071 // but we support it.
Chris Lattner3bd934a2008-07-26 01:18:38 +00001072 if (DS.hasTypeSpecifier() || !getLang().ObjC1)
Chris Lattnerbce61352008-07-26 00:20:22 +00001073 goto DoneWithDeclSpec;
1074
1075 {
1076 SourceLocation EndProtoLoc;
Chris Lattnerb28317a2009-03-28 19:18:32 +00001077 llvm::SmallVector<DeclPtrTy, 8> ProtocolDecl;
Chris Lattnere13b9592008-07-26 04:03:38 +00001078 ParseObjCProtocolReferences(ProtocolDecl, false, EndProtoLoc);
Ted Kremenek1bc5bbf2009-06-30 22:19:00 +00001079 DS.setProtocolQualifiers(ProtocolDecl.data(), ProtocolDecl.size());
Chris Lattner3bd934a2008-07-26 01:18:38 +00001080 DS.SetRangeEnd(EndProtoLoc);
1081
Chris Lattner1ab3b962008-11-18 07:48:38 +00001082 Diag(Loc, diag::warn_objc_protocol_qualifier_missing_id)
Chris Lattner75e36062009-04-03 18:38:42 +00001083 << CodeModificationHint::CreateInsertion(Loc, "id")
Chris Lattner1ab3b962008-11-18 07:48:38 +00001084 << SourceRange(Loc, EndProtoLoc);
Steve Naroff4f9b9f12008-09-22 10:28:57 +00001085 // Need to support trailing type qualifiers (e.g. "id<p> const").
1086 // If a type specifier follows, it will be diagnosed elsewhere.
1087 continue;
Steve Naroffd3ded1f2008-06-05 00:02:44 +00001088 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001089 }
1090 // If the specifier combination wasn't legal, issue a diagnostic.
1091 if (isInvalid) {
1092 assert(PrevSpec && "Method did not return previous specifier!");
Chris Lattner1ab3b962008-11-18 07:48:38 +00001093 // Pick between error or extwarn.
1094 unsigned DiagID = isInvalid == 1 ? diag::err_invalid_decl_spec_combination
1095 : diag::ext_duplicate_declspec;
1096 Diag(Tok, DiagID) << PrevSpec;
Reid Spencer5f016e22007-07-11 17:01:13 +00001097 }
Chris Lattner81c018d2008-03-13 06:29:04 +00001098 DS.SetRangeEnd(Tok.getLocation());
Reid Spencer5f016e22007-07-11 17:01:13 +00001099 ConsumeToken();
1100 }
1101}
Douglas Gregoradcac882008-12-01 23:54:00 +00001102
Chris Lattner7a0ab5f2009-01-06 06:59:53 +00001103/// ParseOptionalTypeSpecifier - Try to parse a single type-specifier. We
Douglas Gregor12e083c2008-11-07 15:42:26 +00001104/// primarily follow the C++ grammar with additions for C99 and GNU,
1105/// which together subsume the C grammar. Note that the C++
1106/// type-specifier also includes the C type-qualifier (for const,
1107/// volatile, and C99 restrict). Returns true if a type-specifier was
1108/// found (and parsed), false otherwise.
1109///
1110/// type-specifier: [C++ 7.1.5]
1111/// simple-type-specifier
1112/// class-specifier
1113/// enum-specifier
1114/// elaborated-type-specifier [TODO]
1115/// cv-qualifier
1116///
1117/// cv-qualifier: [C++ 7.1.5.1]
1118/// 'const'
1119/// 'volatile'
1120/// [C99] 'restrict'
1121///
1122/// simple-type-specifier: [ C++ 7.1.5.2]
1123/// '::'[opt] nested-name-specifier[opt] type-name [TODO]
1124/// '::'[opt] nested-name-specifier 'template' template-id [TODO]
1125/// 'char'
1126/// 'wchar_t'
1127/// 'bool'
1128/// 'short'
1129/// 'int'
1130/// 'long'
1131/// 'signed'
1132/// 'unsigned'
1133/// 'float'
1134/// 'double'
1135/// 'void'
1136/// [C99] '_Bool'
1137/// [C99] '_Complex'
1138/// [C99] '_Imaginary' // Removed in TC2?
1139/// [GNU] '_Decimal32'
1140/// [GNU] '_Decimal64'
1141/// [GNU] '_Decimal128'
1142/// [GNU] typeof-specifier
1143/// [OBJC] class-name objc-protocol-refs[opt] [TODO]
1144/// [OBJC] typedef-name objc-protocol-refs[opt] [TODO]
Anders Carlsson6fd634f2009-06-24 17:47:40 +00001145/// [C++0x] 'decltype' ( expression )
Chris Lattner7a0ab5f2009-01-06 06:59:53 +00001146bool Parser::ParseOptionalTypeSpecifier(DeclSpec &DS, int& isInvalid,
1147 const char *&PrevSpec,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001148 const ParsedTemplateInfo &TemplateInfo) {
Douglas Gregor12e083c2008-11-07 15:42:26 +00001149 SourceLocation Loc = Tok.getLocation();
1150
1151 switch (Tok.getKind()) {
Chris Lattner166a8fc2009-01-04 23:41:41 +00001152 case tok::identifier: // foo::bar
Douglas Gregord57959a2009-03-27 23:10:48 +00001153 case tok::kw_typename: // typename foo::bar
Chris Lattner166a8fc2009-01-04 23:41:41 +00001154 // Annotate typenames and C++ scope specifiers. If we get one, just
1155 // recurse to handle whatever we get.
1156 if (TryAnnotateTypeOrScopeToken())
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001157 return ParseOptionalTypeSpecifier(DS, isInvalid, PrevSpec, TemplateInfo);
Chris Lattner166a8fc2009-01-04 23:41:41 +00001158 // Otherwise, not a type specifier.
1159 return false;
1160 case tok::coloncolon: // ::foo::bar
1161 if (NextToken().is(tok::kw_new) || // ::new
1162 NextToken().is(tok::kw_delete)) // ::delete
1163 return false;
1164
1165 // Annotate typenames and C++ scope specifiers. If we get one, just
1166 // recurse to handle whatever we get.
1167 if (TryAnnotateTypeOrScopeToken())
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001168 return ParseOptionalTypeSpecifier(DS, isInvalid, PrevSpec, TemplateInfo);
Chris Lattner166a8fc2009-01-04 23:41:41 +00001169 // Otherwise, not a type specifier.
1170 return false;
1171
Douglas Gregor12e083c2008-11-07 15:42:26 +00001172 // simple-type-specifier:
Chris Lattnerb31757b2009-01-06 05:06:21 +00001173 case tok::annot_typename: {
Douglas Gregor31a19b62009-04-01 21:51:26 +00001174 if (Tok.getAnnotationValue())
1175 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_typename, Loc, PrevSpec,
1176 Tok.getAnnotationValue());
1177 else
1178 DS.SetTypeSpecError();
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001179 DS.SetRangeEnd(Tok.getAnnotationEndLoc());
1180 ConsumeToken(); // The typename
Douglas Gregor12e083c2008-11-07 15:42:26 +00001181
1182 // Objective-C supports syntax of the form 'id<proto1,proto2>' where 'id'
1183 // is a specific typedef and 'itf<proto1,proto2>' where 'itf' is an
1184 // Objective-C interface. If we don't have Objective-C or a '<', this is
1185 // just a normal reference to a typedef name.
1186 if (!Tok.is(tok::less) || !getLang().ObjC1)
1187 return true;
1188
1189 SourceLocation EndProtoLoc;
Chris Lattnerb28317a2009-03-28 19:18:32 +00001190 llvm::SmallVector<DeclPtrTy, 8> ProtocolDecl;
Douglas Gregor12e083c2008-11-07 15:42:26 +00001191 ParseObjCProtocolReferences(ProtocolDecl, false, EndProtoLoc);
Ted Kremenek1bc5bbf2009-06-30 22:19:00 +00001192 DS.setProtocolQualifiers(ProtocolDecl.data(), ProtocolDecl.size());
Douglas Gregor12e083c2008-11-07 15:42:26 +00001193
1194 DS.SetRangeEnd(EndProtoLoc);
1195 return true;
1196 }
1197
1198 case tok::kw_short:
1199 isInvalid = DS.SetTypeSpecWidth(DeclSpec::TSW_short, Loc, PrevSpec);
1200 break;
1201 case tok::kw_long:
1202 if (DS.getTypeSpecWidth() != DeclSpec::TSW_long)
1203 isInvalid = DS.SetTypeSpecWidth(DeclSpec::TSW_long, Loc, PrevSpec);
1204 else
1205 isInvalid = DS.SetTypeSpecWidth(DeclSpec::TSW_longlong, Loc, PrevSpec);
1206 break;
1207 case tok::kw_signed:
1208 isInvalid = DS.SetTypeSpecSign(DeclSpec::TSS_signed, Loc, PrevSpec);
1209 break;
1210 case tok::kw_unsigned:
1211 isInvalid = DS.SetTypeSpecSign(DeclSpec::TSS_unsigned, Loc, PrevSpec);
1212 break;
1213 case tok::kw__Complex:
1214 isInvalid = DS.SetTypeSpecComplex(DeclSpec::TSC_complex, Loc, PrevSpec);
1215 break;
1216 case tok::kw__Imaginary:
1217 isInvalid = DS.SetTypeSpecComplex(DeclSpec::TSC_imaginary, Loc, PrevSpec);
1218 break;
1219 case tok::kw_void:
1220 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_void, Loc, PrevSpec);
1221 break;
1222 case tok::kw_char:
1223 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_char, Loc, PrevSpec);
1224 break;
1225 case tok::kw_int:
1226 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_int, Loc, PrevSpec);
1227 break;
1228 case tok::kw_float:
1229 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_float, Loc, PrevSpec);
1230 break;
1231 case tok::kw_double:
1232 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_double, Loc, PrevSpec);
1233 break;
1234 case tok::kw_wchar_t:
1235 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_wchar, Loc, PrevSpec);
1236 break;
Alisdair Meredithf5c209d2009-07-14 06:30:34 +00001237 case tok::kw_char16_t:
1238 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_char16, Loc, PrevSpec);
1239 break;
1240 case tok::kw_char32_t:
1241 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_char32, Loc, PrevSpec);
1242 break;
Douglas Gregor12e083c2008-11-07 15:42:26 +00001243 case tok::kw_bool:
1244 case tok::kw__Bool:
1245 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_bool, Loc, PrevSpec);
1246 break;
1247 case tok::kw__Decimal32:
1248 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_decimal32, Loc, PrevSpec);
1249 break;
1250 case tok::kw__Decimal64:
1251 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_decimal64, Loc, PrevSpec);
1252 break;
1253 case tok::kw__Decimal128:
1254 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_decimal128, Loc, PrevSpec);
1255 break;
1256
1257 // class-specifier:
1258 case tok::kw_class:
1259 case tok::kw_struct:
Chris Lattner4c97d762009-04-12 21:49:30 +00001260 case tok::kw_union: {
1261 tok::TokenKind Kind = Tok.getKind();
1262 ConsumeToken();
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001263 ParseClassSpecifier(Kind, Loc, DS, TemplateInfo);
Douglas Gregor12e083c2008-11-07 15:42:26 +00001264 return true;
Chris Lattner4c97d762009-04-12 21:49:30 +00001265 }
Douglas Gregor12e083c2008-11-07 15:42:26 +00001266
1267 // enum-specifier:
1268 case tok::kw_enum:
Chris Lattner4c97d762009-04-12 21:49:30 +00001269 ConsumeToken();
1270 ParseEnumSpecifier(Loc, DS);
Douglas Gregor12e083c2008-11-07 15:42:26 +00001271 return true;
1272
1273 // cv-qualifier:
1274 case tok::kw_const:
1275 isInvalid = DS.SetTypeQual(DeclSpec::TQ_const , Loc, PrevSpec,
1276 getLang())*2;
1277 break;
1278 case tok::kw_volatile:
1279 isInvalid = DS.SetTypeQual(DeclSpec::TQ_volatile, Loc, PrevSpec,
1280 getLang())*2;
1281 break;
1282 case tok::kw_restrict:
1283 isInvalid = DS.SetTypeQual(DeclSpec::TQ_restrict, Loc, PrevSpec,
1284 getLang())*2;
1285 break;
1286
1287 // GNU typeof support.
1288 case tok::kw_typeof:
1289 ParseTypeofSpecifier(DS);
1290 return true;
1291
Anders Carlsson6fd634f2009-06-24 17:47:40 +00001292 // C++0x decltype support.
1293 case tok::kw_decltype:
1294 ParseDecltypeSpecifier(DS);
1295 return true;
1296
Anders Carlsson0b7f7892009-06-26 23:44:14 +00001297 // C++0x auto support.
1298 case tok::kw_auto:
1299 if (!getLang().CPlusPlus0x)
1300 return false;
1301
1302 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_auto, Loc, PrevSpec);
1303 break;
Eli Friedman290eeb02009-06-08 23:27:34 +00001304 case tok::kw___ptr64:
1305 case tok::kw___w64:
Steve Naroff239f0732008-12-25 14:16:32 +00001306 case tok::kw___cdecl:
1307 case tok::kw___stdcall:
1308 case tok::kw___fastcall:
Eli Friedman290eeb02009-06-08 23:27:34 +00001309 DS.AddAttributes(ParseMicrosoftTypeAttributes());
Chris Lattner837acd02009-01-21 19:19:26 +00001310 return true;
Steve Naroff239f0732008-12-25 14:16:32 +00001311
Douglas Gregor12e083c2008-11-07 15:42:26 +00001312 default:
1313 // Not a type-specifier; do nothing.
1314 return false;
1315 }
1316
1317 // If the specifier combination wasn't legal, issue a diagnostic.
1318 if (isInvalid) {
1319 assert(PrevSpec && "Method did not return previous specifier!");
Chris Lattner1ab3b962008-11-18 07:48:38 +00001320 // Pick between error or extwarn.
1321 unsigned DiagID = isInvalid == 1 ? diag::err_invalid_decl_spec_combination
1322 : diag::ext_duplicate_declspec;
1323 Diag(Tok, DiagID) << PrevSpec;
Douglas Gregor12e083c2008-11-07 15:42:26 +00001324 }
1325 DS.SetRangeEnd(Tok.getLocation());
1326 ConsumeToken(); // whatever we parsed above.
1327 return true;
1328}
Reid Spencer5f016e22007-07-11 17:01:13 +00001329
Chris Lattnercd4b83c2007-10-29 04:42:53 +00001330/// ParseStructDeclaration - Parse a struct declaration without the terminating
1331/// semicolon.
1332///
Reid Spencer5f016e22007-07-11 17:01:13 +00001333/// struct-declaration:
Chris Lattnercd4b83c2007-10-29 04:42:53 +00001334/// specifier-qualifier-list struct-declarator-list
Reid Spencer5f016e22007-07-11 17:01:13 +00001335/// [GNU] __extension__ struct-declaration
Chris Lattnercd4b83c2007-10-29 04:42:53 +00001336/// [GNU] specifier-qualifier-list
Reid Spencer5f016e22007-07-11 17:01:13 +00001337/// struct-declarator-list:
1338/// struct-declarator
1339/// struct-declarator-list ',' struct-declarator
1340/// [GNU] struct-declarator-list ',' attributes[opt] struct-declarator
1341/// struct-declarator:
1342/// declarator
1343/// [GNU] declarator attributes[opt]
1344/// declarator[opt] ':' constant-expression
1345/// [GNU] declarator[opt] ':' constant-expression attributes[opt]
1346///
Chris Lattnere1359422008-04-10 06:46:29 +00001347void Parser::
1348ParseStructDeclaration(DeclSpec &DS,
1349 llvm::SmallVectorImpl<FieldDeclarator> &Fields) {
Chris Lattnerc46d1a12008-10-20 06:45:43 +00001350 if (Tok.is(tok::kw___extension__)) {
1351 // __extension__ silences extension warnings in the subexpression.
1352 ExtensionRAIIObject O(Diags); // Use RAII to do this.
Steve Naroff28a7ca82007-08-20 22:28:22 +00001353 ConsumeToken();
Chris Lattnerc46d1a12008-10-20 06:45:43 +00001354 return ParseStructDeclaration(DS, Fields);
1355 }
Steve Naroff28a7ca82007-08-20 22:28:22 +00001356
1357 // Parse the common specifier-qualifiers-list piece.
Chris Lattner60b1e3e2008-04-10 06:15:14 +00001358 SourceLocation DSStart = Tok.getLocation();
Steve Naroff28a7ca82007-08-20 22:28:22 +00001359 ParseSpecifierQualifierList(DS);
Steve Naroff28a7ca82007-08-20 22:28:22 +00001360
Douglas Gregor4920f1f2009-01-12 22:49:06 +00001361 // If there are no declarators, this is a free-standing declaration
1362 // specifier. Let the actions module cope with it.
Chris Lattner04d66662007-10-09 17:33:22 +00001363 if (Tok.is(tok::semi)) {
Douglas Gregor4920f1f2009-01-12 22:49:06 +00001364 Actions.ParsedFreeStandingDeclSpec(CurScope, DS);
Steve Naroff28a7ca82007-08-20 22:28:22 +00001365 return;
1366 }
1367
1368 // Read struct-declarators until we find the semicolon.
Chris Lattnerebe457c2008-04-10 16:37:40 +00001369 Fields.push_back(FieldDeclarator(DS));
Steve Naroff28a7ca82007-08-20 22:28:22 +00001370 while (1) {
Chris Lattnere1359422008-04-10 06:46:29 +00001371 FieldDeclarator &DeclaratorInfo = Fields.back();
1372
Steve Naroff28a7ca82007-08-20 22:28:22 +00001373 /// struct-declarator: declarator
1374 /// struct-declarator: declarator[opt] ':' constant-expression
Chris Lattner04d66662007-10-09 17:33:22 +00001375 if (Tok.isNot(tok::colon))
Chris Lattnere1359422008-04-10 06:46:29 +00001376 ParseDeclarator(DeclaratorInfo.D);
Steve Naroff28a7ca82007-08-20 22:28:22 +00001377
Chris Lattner04d66662007-10-09 17:33:22 +00001378 if (Tok.is(tok::colon)) {
Steve Naroff28a7ca82007-08-20 22:28:22 +00001379 ConsumeToken();
Sebastian Redl2f7ece72008-12-11 21:36:32 +00001380 OwningExprResult Res(ParseConstantExpression());
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001381 if (Res.isInvalid())
Steve Naroff28a7ca82007-08-20 22:28:22 +00001382 SkipUntil(tok::semi, true, true);
Chris Lattner60b1e3e2008-04-10 06:15:14 +00001383 else
Sebastian Redleffa8d12008-12-10 00:02:53 +00001384 DeclaratorInfo.BitfieldSize = Res.release();
Steve Naroff28a7ca82007-08-20 22:28:22 +00001385 }
Sebastian Redlab197ba2009-02-09 18:23:29 +00001386
Steve Naroff28a7ca82007-08-20 22:28:22 +00001387 // If attributes exist after the declarator, parse them.
Sebastian Redlab197ba2009-02-09 18:23:29 +00001388 if (Tok.is(tok::kw___attribute)) {
1389 SourceLocation Loc;
1390 AttributeList *AttrList = ParseAttributes(&Loc);
1391 DeclaratorInfo.D.AddAttributes(AttrList, Loc);
1392 }
1393
Steve Naroff28a7ca82007-08-20 22:28:22 +00001394 // If we don't have a comma, it is either the end of the list (a ';')
1395 // or an error, bail out.
Chris Lattner04d66662007-10-09 17:33:22 +00001396 if (Tok.isNot(tok::comma))
Chris Lattnercd4b83c2007-10-29 04:42:53 +00001397 return;
Sebastian Redlab197ba2009-02-09 18:23:29 +00001398
Steve Naroff28a7ca82007-08-20 22:28:22 +00001399 // Consume the comma.
1400 ConsumeToken();
Sebastian Redlab197ba2009-02-09 18:23:29 +00001401
Steve Naroff28a7ca82007-08-20 22:28:22 +00001402 // Parse the next declarator.
Chris Lattnerebe457c2008-04-10 16:37:40 +00001403 Fields.push_back(FieldDeclarator(DS));
Sebastian Redlab197ba2009-02-09 18:23:29 +00001404
Steve Naroff28a7ca82007-08-20 22:28:22 +00001405 // Attributes are only allowed on the second declarator.
Sebastian Redlab197ba2009-02-09 18:23:29 +00001406 if (Tok.is(tok::kw___attribute)) {
1407 SourceLocation Loc;
1408 AttributeList *AttrList = ParseAttributes(&Loc);
1409 Fields.back().D.AddAttributes(AttrList, Loc);
1410 }
Steve Naroff28a7ca82007-08-20 22:28:22 +00001411 }
Steve Naroff28a7ca82007-08-20 22:28:22 +00001412}
1413
1414/// ParseStructUnionBody
1415/// struct-contents:
1416/// struct-declaration-list
1417/// [EXT] empty
1418/// [GNU] "struct-declaration-list" without terminatoring ';'
1419/// struct-declaration-list:
1420/// struct-declaration
1421/// struct-declaration-list struct-declaration
Chris Lattner5a6ddbf2008-06-21 19:39:06 +00001422/// [OBC] '@' 'defs' '(' class-name ')'
Steve Naroff28a7ca82007-08-20 22:28:22 +00001423///
Reid Spencer5f016e22007-07-11 17:01:13 +00001424void Parser::ParseStructUnionBody(SourceLocation RecordLoc,
Chris Lattnerb28317a2009-03-28 19:18:32 +00001425 unsigned TagType, DeclPtrTy TagDecl) {
Chris Lattner49f28ca2009-03-05 08:00:35 +00001426 PrettyStackTraceActionsDecl CrashInfo(TagDecl, RecordLoc, Actions,
1427 PP.getSourceManager(),
1428 "parsing struct/union body");
Chris Lattner27b7f102009-03-05 02:25:03 +00001429
Reid Spencer5f016e22007-07-11 17:01:13 +00001430 SourceLocation LBraceLoc = ConsumeBrace();
1431
Douglas Gregor3218c4b2009-01-09 22:42:13 +00001432 ParseScope StructScope(this, Scope::ClassScope|Scope::DeclScope);
Douglas Gregor72de6672009-01-08 20:45:30 +00001433 Actions.ActOnTagStartDefinition(CurScope, TagDecl);
1434
Reid Spencer5f016e22007-07-11 17:01:13 +00001435 // Empty structs are an extension in C (C99 6.7.2.1p7), but are allowed in
1436 // C++.
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001437 if (Tok.is(tok::r_brace) && !getLang().CPlusPlus)
Chris Lattner1ab3b962008-11-18 07:48:38 +00001438 Diag(Tok, diag::ext_empty_struct_union_enum)
1439 << DeclSpec::getSpecifierName((DeclSpec::TST)TagType);
Reid Spencer5f016e22007-07-11 17:01:13 +00001440
Chris Lattnerb28317a2009-03-28 19:18:32 +00001441 llvm::SmallVector<DeclPtrTy, 32> FieldDecls;
Chris Lattnere1359422008-04-10 06:46:29 +00001442 llvm::SmallVector<FieldDeclarator, 8> FieldDeclarators;
1443
Reid Spencer5f016e22007-07-11 17:01:13 +00001444 // While we still have something to read, read the declarations in the struct.
Chris Lattner04d66662007-10-09 17:33:22 +00001445 while (Tok.isNot(tok::r_brace) && Tok.isNot(tok::eof)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001446 // Each iteration of this loop reads one struct-declaration.
1447
1448 // Check for extraneous top-level semicolon.
Chris Lattner04d66662007-10-09 17:33:22 +00001449 if (Tok.is(tok::semi)) {
Douglas Gregor9b3064b2009-04-01 22:41:11 +00001450 Diag(Tok, diag::ext_extra_struct_semi)
1451 << CodeModificationHint::CreateRemoval(SourceRange(Tok.getLocation()));
Reid Spencer5f016e22007-07-11 17:01:13 +00001452 ConsumeToken();
1453 continue;
1454 }
Chris Lattnere1359422008-04-10 06:46:29 +00001455
1456 // Parse all the comma separated declarators.
1457 DeclSpec DS;
1458 FieldDeclarators.clear();
Chris Lattner5a6ddbf2008-06-21 19:39:06 +00001459 if (!Tok.is(tok::at)) {
1460 ParseStructDeclaration(DS, FieldDeclarators);
1461
1462 // Convert them all to fields.
1463 for (unsigned i = 0, e = FieldDeclarators.size(); i != e; ++i) {
1464 FieldDeclarator &FD = FieldDeclarators[i];
1465 // Install the declarator into the current TagDecl.
Chris Lattnerb28317a2009-03-28 19:18:32 +00001466 DeclPtrTy Field = Actions.ActOnField(CurScope, TagDecl,
1467 DS.getSourceRange().getBegin(),
1468 FD.D, FD.BitfieldSize);
Chris Lattner5a6ddbf2008-06-21 19:39:06 +00001469 FieldDecls.push_back(Field);
1470 }
1471 } else { // Handle @defs
1472 ConsumeToken();
1473 if (!Tok.isObjCAtKeyword(tok::objc_defs)) {
1474 Diag(Tok, diag::err_unexpected_at);
1475 SkipUntil(tok::semi, true, true);
1476 continue;
1477 }
1478 ConsumeToken();
1479 ExpectAndConsume(tok::l_paren, diag::err_expected_lparen);
1480 if (!Tok.is(tok::identifier)) {
1481 Diag(Tok, diag::err_expected_ident);
1482 SkipUntil(tok::semi, true, true);
1483 continue;
1484 }
Chris Lattnerb28317a2009-03-28 19:18:32 +00001485 llvm::SmallVector<DeclPtrTy, 16> Fields;
Douglas Gregor44b43212008-12-11 16:49:14 +00001486 Actions.ActOnDefs(CurScope, TagDecl, Tok.getLocation(),
1487 Tok.getIdentifierInfo(), Fields);
Chris Lattner5a6ddbf2008-06-21 19:39:06 +00001488 FieldDecls.insert(FieldDecls.end(), Fields.begin(), Fields.end());
1489 ConsumeToken();
1490 ExpectAndConsume(tok::r_paren, diag::err_expected_rparen);
1491 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001492
Chris Lattner04d66662007-10-09 17:33:22 +00001493 if (Tok.is(tok::semi)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001494 ConsumeToken();
Chris Lattner04d66662007-10-09 17:33:22 +00001495 } else if (Tok.is(tok::r_brace)) {
Chris Lattner1ab3b962008-11-18 07:48:38 +00001496 Diag(Tok, diag::ext_expected_semi_decl_list);
Reid Spencer5f016e22007-07-11 17:01:13 +00001497 break;
1498 } else {
1499 Diag(Tok, diag::err_expected_semi_decl_list);
1500 // Skip to end of block or statement
1501 SkipUntil(tok::r_brace, true, true);
1502 }
1503 }
1504
Steve Naroff60fccee2007-10-29 21:38:07 +00001505 SourceLocation RBraceLoc = MatchRHSPunctuation(tok::r_brace, LBraceLoc);
Reid Spencer5f016e22007-07-11 17:01:13 +00001506
Reid Spencer5f016e22007-07-11 17:01:13 +00001507 AttributeList *AttrList = 0;
1508 // If attributes exist after struct contents, parse them.
Chris Lattner04d66662007-10-09 17:33:22 +00001509 if (Tok.is(tok::kw___attribute))
Daniel Dunbar5e592d82008-10-03 16:42:10 +00001510 AttrList = ParseAttributes();
Daniel Dunbar1bfe1c22008-10-03 02:03:53 +00001511
1512 Actions.ActOnFields(CurScope,
Jay Foadbeaaccd2009-05-21 09:52:38 +00001513 RecordLoc, TagDecl, FieldDecls.data(), FieldDecls.size(),
Daniel Dunbar1bfe1c22008-10-03 02:03:53 +00001514 LBraceLoc, RBraceLoc,
Douglas Gregor72de6672009-01-08 20:45:30 +00001515 AttrList);
1516 StructScope.Exit();
Argyrios Kyrtzidis07a5b282009-07-14 03:17:52 +00001517 Actions.ActOnTagFinishDefinition(CurScope, TagDecl, RBraceLoc);
Reid Spencer5f016e22007-07-11 17:01:13 +00001518}
1519
1520
1521/// ParseEnumSpecifier
1522/// enum-specifier: [C99 6.7.2.2]
1523/// 'enum' identifier[opt] '{' enumerator-list '}'
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001524///[C99/C++]'enum' identifier[opt] '{' enumerator-list ',' '}'
Reid Spencer5f016e22007-07-11 17:01:13 +00001525/// [GNU] 'enum' attributes[opt] identifier[opt] '{' enumerator-list ',' [opt]
1526/// '}' attributes[opt]
1527/// 'enum' identifier
1528/// [GNU] 'enum' attributes[opt] identifier
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001529///
1530/// [C++] elaborated-type-specifier:
1531/// [C++] 'enum' '::'[opt] nested-name-specifier[opt] identifier
1532///
Chris Lattner4c97d762009-04-12 21:49:30 +00001533void Parser::ParseEnumSpecifier(SourceLocation StartLoc, DeclSpec &DS,
1534 AccessSpecifier AS) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001535 // Parse the tag portion of this.
Argyrios Kyrtzidise281b4c2008-09-11 00:21:41 +00001536
1537 AttributeList *Attr = 0;
1538 // If attributes exist after tag, parse them.
1539 if (Tok.is(tok::kw___attribute))
1540 Attr = ParseAttributes();
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001541
1542 CXXScopeSpec SS;
Chris Lattner7a0ab5f2009-01-06 06:59:53 +00001543 if (getLang().CPlusPlus && ParseOptionalCXXScopeSpecifier(SS)) {
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001544 if (Tok.isNot(tok::identifier)) {
1545 Diag(Tok, diag::err_expected_ident);
1546 if (Tok.isNot(tok::l_brace)) {
1547 // Has no name and is not a definition.
1548 // Skip the rest of this declarator, up until the comma or semicolon.
1549 SkipUntil(tok::comma, true);
1550 return;
1551 }
1552 }
1553 }
Argyrios Kyrtzidise281b4c2008-09-11 00:21:41 +00001554
1555 // Must have either 'enum name' or 'enum {...}'.
1556 if (Tok.isNot(tok::identifier) && Tok.isNot(tok::l_brace)) {
1557 Diag(Tok, diag::err_expected_ident_lbrace);
1558
1559 // Skip the rest of this declarator, up until the comma or semicolon.
1560 SkipUntil(tok::comma, true);
Reid Spencer5f016e22007-07-11 17:01:13 +00001561 return;
Argyrios Kyrtzidise281b4c2008-09-11 00:21:41 +00001562 }
1563
1564 // If an identifier is present, consume and remember it.
1565 IdentifierInfo *Name = 0;
1566 SourceLocation NameLoc;
1567 if (Tok.is(tok::identifier)) {
1568 Name = Tok.getIdentifierInfo();
1569 NameLoc = ConsumeToken();
1570 }
1571
1572 // There are three options here. If we have 'enum foo;', then this is a
1573 // forward declaration. If we have 'enum foo {...' then this is a
1574 // definition. Otherwise we have something like 'enum foo xyz', a reference.
1575 //
1576 // This is needed to handle stuff like this right (C99 6.7.2.3p11):
1577 // enum foo {..}; void bar() { enum foo; } <- new foo in bar.
1578 // enum foo {..}; void bar() { enum foo x; } <- use of old foo.
1579 //
1580 Action::TagKind TK;
1581 if (Tok.is(tok::l_brace))
1582 TK = Action::TK_Definition;
1583 else if (Tok.is(tok::semi))
1584 TK = Action::TK_Declaration;
1585 else
1586 TK = Action::TK_Reference;
Douglas Gregor402abb52009-05-28 23:31:59 +00001587 bool Owned = false;
Chris Lattnerb28317a2009-03-28 19:18:32 +00001588 DeclPtrTy TagDecl = Actions.ActOnTag(CurScope, DeclSpec::TST_enum, TK,
Douglas Gregor402abb52009-05-28 23:31:59 +00001589 StartLoc, SS, Name, NameLoc, Attr, AS,
Douglas Gregorbd1099e2009-07-23 16:36:45 +00001590 Action::MultiTemplateParamsArg(Actions),
Douglas Gregor402abb52009-05-28 23:31:59 +00001591 Owned);
Reid Spencer5f016e22007-07-11 17:01:13 +00001592
Chris Lattner04d66662007-10-09 17:33:22 +00001593 if (Tok.is(tok::l_brace))
Reid Spencer5f016e22007-07-11 17:01:13 +00001594 ParseEnumBody(StartLoc, TagDecl);
1595
1596 // TODO: semantic analysis on the declspec for enums.
1597 const char *PrevSpec = 0;
Chris Lattnerb28317a2009-03-28 19:18:32 +00001598 if (DS.SetTypeSpecType(DeclSpec::TST_enum, StartLoc, PrevSpec,
Douglas Gregor402abb52009-05-28 23:31:59 +00001599 TagDecl.getAs<void>(), Owned))
Chris Lattner1ab3b962008-11-18 07:48:38 +00001600 Diag(StartLoc, diag::err_invalid_decl_spec_combination) << PrevSpec;
Reid Spencer5f016e22007-07-11 17:01:13 +00001601}
1602
1603/// ParseEnumBody - Parse a {} enclosed enumerator-list.
1604/// enumerator-list:
1605/// enumerator
1606/// enumerator-list ',' enumerator
1607/// enumerator:
1608/// enumeration-constant
1609/// enumeration-constant '=' constant-expression
1610/// enumeration-constant:
1611/// identifier
1612///
Chris Lattnerb28317a2009-03-28 19:18:32 +00001613void Parser::ParseEnumBody(SourceLocation StartLoc, DeclPtrTy EnumDecl) {
Douglas Gregor074149e2009-01-05 19:45:36 +00001614 // Enter the scope of the enum body and start the definition.
1615 ParseScope EnumScope(this, Scope::DeclScope);
Douglas Gregor72de6672009-01-08 20:45:30 +00001616 Actions.ActOnTagStartDefinition(CurScope, EnumDecl);
Douglas Gregor074149e2009-01-05 19:45:36 +00001617
Reid Spencer5f016e22007-07-11 17:01:13 +00001618 SourceLocation LBraceLoc = ConsumeBrace();
1619
Chris Lattner7946dd32007-08-27 17:24:30 +00001620 // C does not allow an empty enumerator-list, C++ does [dcl.enum].
Chris Lattner04d66662007-10-09 17:33:22 +00001621 if (Tok.is(tok::r_brace) && !getLang().CPlusPlus)
Chris Lattner1ab3b962008-11-18 07:48:38 +00001622 Diag(Tok, diag::ext_empty_struct_union_enum) << "enum";
Reid Spencer5f016e22007-07-11 17:01:13 +00001623
Chris Lattnerb28317a2009-03-28 19:18:32 +00001624 llvm::SmallVector<DeclPtrTy, 32> EnumConstantDecls;
Reid Spencer5f016e22007-07-11 17:01:13 +00001625
Chris Lattnerb28317a2009-03-28 19:18:32 +00001626 DeclPtrTy LastEnumConstDecl;
Reid Spencer5f016e22007-07-11 17:01:13 +00001627
1628 // Parse the enumerator-list.
Chris Lattner04d66662007-10-09 17:33:22 +00001629 while (Tok.is(tok::identifier)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001630 IdentifierInfo *Ident = Tok.getIdentifierInfo();
1631 SourceLocation IdentLoc = ConsumeToken();
1632
1633 SourceLocation EqualLoc;
Sebastian Redl15faa7f2008-12-09 20:22:58 +00001634 OwningExprResult AssignedVal(Actions);
Chris Lattner04d66662007-10-09 17:33:22 +00001635 if (Tok.is(tok::equal)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001636 EqualLoc = ConsumeToken();
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001637 AssignedVal = ParseConstantExpression();
1638 if (AssignedVal.isInvalid())
Reid Spencer5f016e22007-07-11 17:01:13 +00001639 SkipUntil(tok::comma, tok::r_brace, true, true);
Reid Spencer5f016e22007-07-11 17:01:13 +00001640 }
1641
1642 // Install the enumerator constant into EnumDecl.
Chris Lattnerb28317a2009-03-28 19:18:32 +00001643 DeclPtrTy EnumConstDecl = Actions.ActOnEnumConstant(CurScope, EnumDecl,
1644 LastEnumConstDecl,
1645 IdentLoc, Ident,
1646 EqualLoc,
1647 AssignedVal.release());
Reid Spencer5f016e22007-07-11 17:01:13 +00001648 EnumConstantDecls.push_back(EnumConstDecl);
1649 LastEnumConstDecl = EnumConstDecl;
1650
Chris Lattner04d66662007-10-09 17:33:22 +00001651 if (Tok.isNot(tok::comma))
Reid Spencer5f016e22007-07-11 17:01:13 +00001652 break;
1653 SourceLocation CommaLoc = ConsumeToken();
1654
Douglas Gregor9b3064b2009-04-01 22:41:11 +00001655 if (Tok.isNot(tok::identifier) &&
1656 !(getLang().C99 || getLang().CPlusPlus0x))
1657 Diag(CommaLoc, diag::ext_enumerator_list_comma)
1658 << getLang().CPlusPlus
1659 << CodeModificationHint::CreateRemoval((SourceRange(CommaLoc)));
Reid Spencer5f016e22007-07-11 17:01:13 +00001660 }
1661
1662 // Eat the }.
Mike Stumpc6e35aa2009-05-16 07:06:02 +00001663 SourceLocation RBraceLoc = MatchRHSPunctuation(tok::r_brace, LBraceLoc);
Reid Spencer5f016e22007-07-11 17:01:13 +00001664
Mike Stumpc6e35aa2009-05-16 07:06:02 +00001665 Actions.ActOnEnumBody(StartLoc, LBraceLoc, RBraceLoc, EnumDecl,
Jay Foadbeaaccd2009-05-21 09:52:38 +00001666 EnumConstantDecls.data(), EnumConstantDecls.size());
Reid Spencer5f016e22007-07-11 17:01:13 +00001667
Chris Lattnerb28317a2009-03-28 19:18:32 +00001668 Action::AttrTy *AttrList = 0;
Reid Spencer5f016e22007-07-11 17:01:13 +00001669 // If attributes exist after the identifier list, parse them.
Chris Lattner04d66662007-10-09 17:33:22 +00001670 if (Tok.is(tok::kw___attribute))
Reid Spencer5f016e22007-07-11 17:01:13 +00001671 AttrList = ParseAttributes(); // FIXME: where do they do?
Douglas Gregor72de6672009-01-08 20:45:30 +00001672
1673 EnumScope.Exit();
Argyrios Kyrtzidis07a5b282009-07-14 03:17:52 +00001674 Actions.ActOnTagFinishDefinition(CurScope, EnumDecl, RBraceLoc);
Reid Spencer5f016e22007-07-11 17:01:13 +00001675}
1676
1677/// isTypeSpecifierQualifier - Return true if the current token could be the
Steve Naroff5f8aa692008-02-11 23:15:56 +00001678/// start of a type-qualifier-list.
1679bool Parser::isTypeQualifier() const {
1680 switch (Tok.getKind()) {
1681 default: return false;
1682 // type-qualifier
1683 case tok::kw_const:
1684 case tok::kw_volatile:
1685 case tok::kw_restrict:
1686 return true;
1687 }
1688}
1689
1690/// isTypeSpecifierQualifier - Return true if the current token could be the
Reid Spencer5f016e22007-07-11 17:01:13 +00001691/// start of a specifier-qualifier-list.
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001692bool Parser::isTypeSpecifierQualifier() {
Reid Spencer5f016e22007-07-11 17:01:13 +00001693 switch (Tok.getKind()) {
1694 default: return false;
Chris Lattner166a8fc2009-01-04 23:41:41 +00001695
1696 case tok::identifier: // foo::bar
Douglas Gregord57959a2009-03-27 23:10:48 +00001697 case tok::kw_typename: // typename T::type
Chris Lattner166a8fc2009-01-04 23:41:41 +00001698 // Annotate typenames and C++ scope specifiers. If we get one, just
1699 // recurse to handle whatever we get.
1700 if (TryAnnotateTypeOrScopeToken())
1701 return isTypeSpecifierQualifier();
1702 // Otherwise, not a type specifier.
1703 return false;
Douglas Gregord57959a2009-03-27 23:10:48 +00001704
Chris Lattner166a8fc2009-01-04 23:41:41 +00001705 case tok::coloncolon: // ::foo::bar
1706 if (NextToken().is(tok::kw_new) || // ::new
1707 NextToken().is(tok::kw_delete)) // ::delete
1708 return false;
1709
1710 // Annotate typenames and C++ scope specifiers. If we get one, just
1711 // recurse to handle whatever we get.
1712 if (TryAnnotateTypeOrScopeToken())
1713 return isTypeSpecifierQualifier();
1714 // Otherwise, not a type specifier.
1715 return false;
1716
Reid Spencer5f016e22007-07-11 17:01:13 +00001717 // GNU attributes support.
1718 case tok::kw___attribute:
Steve Naroffd1861fd2007-07-31 12:34:36 +00001719 // GNU typeof support.
1720 case tok::kw_typeof:
1721
Reid Spencer5f016e22007-07-11 17:01:13 +00001722 // type-specifiers
1723 case tok::kw_short:
1724 case tok::kw_long:
1725 case tok::kw_signed:
1726 case tok::kw_unsigned:
1727 case tok::kw__Complex:
1728 case tok::kw__Imaginary:
1729 case tok::kw_void:
1730 case tok::kw_char:
Argyrios Kyrtzidis64c438a2008-08-09 16:51:54 +00001731 case tok::kw_wchar_t:
Alisdair Meredithf5c209d2009-07-14 06:30:34 +00001732 case tok::kw_char16_t:
1733 case tok::kw_char32_t:
Reid Spencer5f016e22007-07-11 17:01:13 +00001734 case tok::kw_int:
1735 case tok::kw_float:
1736 case tok::kw_double:
Chris Lattner9298d962007-11-15 05:25:19 +00001737 case tok::kw_bool:
Reid Spencer5f016e22007-07-11 17:01:13 +00001738 case tok::kw__Bool:
1739 case tok::kw__Decimal32:
1740 case tok::kw__Decimal64:
1741 case tok::kw__Decimal128:
1742
Chris Lattner99dc9142008-04-13 18:59:07 +00001743 // struct-or-union-specifier (C99) or class-specifier (C++)
1744 case tok::kw_class:
Reid Spencer5f016e22007-07-11 17:01:13 +00001745 case tok::kw_struct:
1746 case tok::kw_union:
1747 // enum-specifier
1748 case tok::kw_enum:
1749
1750 // type-qualifier
1751 case tok::kw_const:
1752 case tok::kw_volatile:
1753 case tok::kw_restrict:
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001754
1755 // typedef-name
Chris Lattnerb31757b2009-01-06 05:06:21 +00001756 case tok::annot_typename:
Reid Spencer5f016e22007-07-11 17:01:13 +00001757 return true;
Chris Lattner7c186be2008-10-20 00:25:30 +00001758
1759 // GNU ObjC bizarre protocol extension: <proto1,proto2> with implicit 'id'.
1760 case tok::less:
1761 return getLang().ObjC1;
Steve Naroff239f0732008-12-25 14:16:32 +00001762
1763 case tok::kw___cdecl:
1764 case tok::kw___stdcall:
1765 case tok::kw___fastcall:
Eli Friedman290eeb02009-06-08 23:27:34 +00001766 case tok::kw___w64:
1767 case tok::kw___ptr64:
1768 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +00001769 }
1770}
1771
1772/// isDeclarationSpecifier() - Return true if the current token is part of a
1773/// declaration specifier.
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001774bool Parser::isDeclarationSpecifier() {
Reid Spencer5f016e22007-07-11 17:01:13 +00001775 switch (Tok.getKind()) {
1776 default: return false;
Chris Lattner166a8fc2009-01-04 23:41:41 +00001777
1778 case tok::identifier: // foo::bar
Steve Naroff61f72cb2009-03-09 21:12:44 +00001779 // Unfortunate hack to support "Class.factoryMethod" notation.
1780 if (getLang().ObjC1 && NextToken().is(tok::period))
1781 return false;
Douglas Gregord57959a2009-03-27 23:10:48 +00001782 // Fall through
Steve Naroff61f72cb2009-03-09 21:12:44 +00001783
Douglas Gregord57959a2009-03-27 23:10:48 +00001784 case tok::kw_typename: // typename T::type
Chris Lattner166a8fc2009-01-04 23:41:41 +00001785 // Annotate typenames and C++ scope specifiers. If we get one, just
1786 // recurse to handle whatever we get.
1787 if (TryAnnotateTypeOrScopeToken())
1788 return isDeclarationSpecifier();
1789 // Otherwise, not a declaration specifier.
1790 return false;
1791 case tok::coloncolon: // ::foo::bar
1792 if (NextToken().is(tok::kw_new) || // ::new
1793 NextToken().is(tok::kw_delete)) // ::delete
1794 return false;
1795
1796 // Annotate typenames and C++ scope specifiers. If we get one, just
1797 // recurse to handle whatever we get.
1798 if (TryAnnotateTypeOrScopeToken())
1799 return isDeclarationSpecifier();
1800 // Otherwise, not a declaration specifier.
1801 return false;
1802
Reid Spencer5f016e22007-07-11 17:01:13 +00001803 // storage-class-specifier
1804 case tok::kw_typedef:
1805 case tok::kw_extern:
Steve Naroff8d54bf22007-12-18 00:16:02 +00001806 case tok::kw___private_extern__:
Reid Spencer5f016e22007-07-11 17:01:13 +00001807 case tok::kw_static:
1808 case tok::kw_auto:
1809 case tok::kw_register:
1810 case tok::kw___thread:
1811
1812 // type-specifiers
1813 case tok::kw_short:
1814 case tok::kw_long:
1815 case tok::kw_signed:
1816 case tok::kw_unsigned:
1817 case tok::kw__Complex:
1818 case tok::kw__Imaginary:
1819 case tok::kw_void:
1820 case tok::kw_char:
Argyrios Kyrtzidis64c438a2008-08-09 16:51:54 +00001821 case tok::kw_wchar_t:
Alisdair Meredithf5c209d2009-07-14 06:30:34 +00001822 case tok::kw_char16_t:
1823 case tok::kw_char32_t:
1824
Reid Spencer5f016e22007-07-11 17:01:13 +00001825 case tok::kw_int:
1826 case tok::kw_float:
1827 case tok::kw_double:
Chris Lattner9298d962007-11-15 05:25:19 +00001828 case tok::kw_bool:
Reid Spencer5f016e22007-07-11 17:01:13 +00001829 case tok::kw__Bool:
1830 case tok::kw__Decimal32:
1831 case tok::kw__Decimal64:
1832 case tok::kw__Decimal128:
1833
Chris Lattner99dc9142008-04-13 18:59:07 +00001834 // struct-or-union-specifier (C99) or class-specifier (C++)
1835 case tok::kw_class:
Reid Spencer5f016e22007-07-11 17:01:13 +00001836 case tok::kw_struct:
1837 case tok::kw_union:
1838 // enum-specifier
1839 case tok::kw_enum:
1840
1841 // type-qualifier
1842 case tok::kw_const:
1843 case tok::kw_volatile:
1844 case tok::kw_restrict:
Steve Naroffd1861fd2007-07-31 12:34:36 +00001845
Reid Spencer5f016e22007-07-11 17:01:13 +00001846 // function-specifier
1847 case tok::kw_inline:
Douglas Gregorb48fe382008-10-31 09:07:45 +00001848 case tok::kw_virtual:
1849 case tok::kw_explicit:
Chris Lattnerd6c7c182007-08-09 16:40:21 +00001850
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001851 // typedef-name
Chris Lattnerb31757b2009-01-06 05:06:21 +00001852 case tok::annot_typename:
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001853
Chris Lattner1ef08762007-08-09 17:01:07 +00001854 // GNU typeof support.
1855 case tok::kw_typeof:
1856
1857 // GNU attributes.
Chris Lattnerd6c7c182007-08-09 16:40:21 +00001858 case tok::kw___attribute:
Reid Spencer5f016e22007-07-11 17:01:13 +00001859 return true;
Chris Lattnerf3948c42008-07-26 03:38:44 +00001860
1861 // GNU ObjC bizarre protocol extension: <proto1,proto2> with implicit 'id'.
1862 case tok::less:
1863 return getLang().ObjC1;
Steve Naroff239f0732008-12-25 14:16:32 +00001864
Steve Naroff47f52092009-01-06 19:34:12 +00001865 case tok::kw___declspec:
Steve Naroff239f0732008-12-25 14:16:32 +00001866 case tok::kw___cdecl:
1867 case tok::kw___stdcall:
1868 case tok::kw___fastcall:
Eli Friedman290eeb02009-06-08 23:27:34 +00001869 case tok::kw___w64:
1870 case tok::kw___ptr64:
1871 case tok::kw___forceinline:
1872 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +00001873 }
1874}
1875
1876
1877/// ParseTypeQualifierListOpt
1878/// type-qualifier-list: [C99 6.7.5]
1879/// type-qualifier
Chris Lattner5a69d1c2008-12-18 07:02:59 +00001880/// [GNU] attributes [ only if AttributesAllowed=true ]
Reid Spencer5f016e22007-07-11 17:01:13 +00001881/// type-qualifier-list type-qualifier
Chris Lattner5a69d1c2008-12-18 07:02:59 +00001882/// [GNU] type-qualifier-list attributes [ only if AttributesAllowed=true ]
Reid Spencer5f016e22007-07-11 17:01:13 +00001883///
Chris Lattner5a69d1c2008-12-18 07:02:59 +00001884void Parser::ParseTypeQualifierListOpt(DeclSpec &DS, bool AttributesAllowed) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001885 while (1) {
1886 int isInvalid = false;
1887 const char *PrevSpec = 0;
1888 SourceLocation Loc = Tok.getLocation();
1889
1890 switch (Tok.getKind()) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001891 case tok::kw_const:
1892 isInvalid = DS.SetTypeQual(DeclSpec::TQ_const , Loc, PrevSpec,
1893 getLang())*2;
1894 break;
1895 case tok::kw_volatile:
1896 isInvalid = DS.SetTypeQual(DeclSpec::TQ_volatile, Loc, PrevSpec,
1897 getLang())*2;
1898 break;
1899 case tok::kw_restrict:
1900 isInvalid = DS.SetTypeQual(DeclSpec::TQ_restrict, Loc, PrevSpec,
1901 getLang())*2;
1902 break;
Eli Friedman290eeb02009-06-08 23:27:34 +00001903 case tok::kw___w64:
Steve Naroff86bc6cf2008-12-25 14:41:26 +00001904 case tok::kw___ptr64:
Steve Naroff239f0732008-12-25 14:16:32 +00001905 case tok::kw___cdecl:
1906 case tok::kw___stdcall:
1907 case tok::kw___fastcall:
Eli Friedman290eeb02009-06-08 23:27:34 +00001908 if (AttributesAllowed) {
1909 DS.AddAttributes(ParseMicrosoftTypeAttributes());
1910 continue;
1911 }
1912 goto DoneWithTypeQuals;
Reid Spencer5f016e22007-07-11 17:01:13 +00001913 case tok::kw___attribute:
Chris Lattner5a69d1c2008-12-18 07:02:59 +00001914 if (AttributesAllowed) {
1915 DS.AddAttributes(ParseAttributes());
1916 continue; // do *not* consume the next token!
1917 }
1918 // otherwise, FALL THROUGH!
1919 default:
Steve Naroff239f0732008-12-25 14:16:32 +00001920 DoneWithTypeQuals:
Chris Lattner5a69d1c2008-12-18 07:02:59 +00001921 // If this is not a type-qualifier token, we're done reading type
1922 // qualifiers. First verify that DeclSpec's are consistent.
Douglas Gregor9b3064b2009-04-01 22:41:11 +00001923 DS.Finish(Diags, PP);
Chris Lattner5a69d1c2008-12-18 07:02:59 +00001924 return;
Reid Spencer5f016e22007-07-11 17:01:13 +00001925 }
Chris Lattnera1fcbad2008-12-18 06:50:14 +00001926
Reid Spencer5f016e22007-07-11 17:01:13 +00001927 // If the specifier combination wasn't legal, issue a diagnostic.
1928 if (isInvalid) {
1929 assert(PrevSpec && "Method did not return previous specifier!");
Chris Lattner1ab3b962008-11-18 07:48:38 +00001930 // Pick between error or extwarn.
1931 unsigned DiagID = isInvalid == 1 ? diag::err_invalid_decl_spec_combination
1932 : diag::ext_duplicate_declspec;
1933 Diag(Tok, DiagID) << PrevSpec;
Reid Spencer5f016e22007-07-11 17:01:13 +00001934 }
1935 ConsumeToken();
1936 }
1937}
1938
1939
1940/// ParseDeclarator - Parse and verify a newly-initialized declarator.
1941///
1942void Parser::ParseDeclarator(Declarator &D) {
1943 /// This implements the 'declarator' production in the C grammar, then checks
1944 /// for well-formedness and issues diagnostics.
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001945 ParseDeclaratorInternal(D, &Parser::ParseDirectDeclarator);
Reid Spencer5f016e22007-07-11 17:01:13 +00001946}
1947
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001948/// ParseDeclaratorInternal - Parse a C or C++ declarator. The direct-declarator
1949/// is parsed by the function passed to it. Pass null, and the direct-declarator
1950/// isn't parsed at all, making this function effectively parse the C++
Douglas Gregor2f1bc522008-11-07 20:08:42 +00001951/// ptr-operator production.
1952///
Sebastian Redlf30208a2009-01-24 21:16:55 +00001953/// declarator: [C99 6.7.5] [C++ 8p4, dcl.decl]
1954/// [C] pointer[opt] direct-declarator
1955/// [C++] direct-declarator
1956/// [C++] ptr-operator declarator
Reid Spencer5f016e22007-07-11 17:01:13 +00001957///
1958/// pointer: [C99 6.7.5]
1959/// '*' type-qualifier-list[opt]
1960/// '*' type-qualifier-list[opt] pointer
1961///
Douglas Gregor2f1bc522008-11-07 20:08:42 +00001962/// ptr-operator:
1963/// '*' cv-qualifier-seq[opt]
1964/// '&'
Sebastian Redl05532f22009-03-15 22:02:01 +00001965/// [C++0x] '&&'
Douglas Gregor2f1bc522008-11-07 20:08:42 +00001966/// [GNU] '&' restrict[opt] attributes[opt]
Sebastian Redl05532f22009-03-15 22:02:01 +00001967/// [GNU?] '&&' restrict[opt] attributes[opt]
Sebastian Redlf30208a2009-01-24 21:16:55 +00001968/// '::'[opt] nested-name-specifier '*' cv-qualifier-seq[opt]
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001969void Parser::ParseDeclaratorInternal(Declarator &D,
1970 DirectDeclParseFunction DirectDeclParser) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001971
Sebastian Redlf30208a2009-01-24 21:16:55 +00001972 // C++ member pointers start with a '::' or a nested-name.
1973 // Member pointers get special handling, since there's no place for the
1974 // scope spec in the generic path below.
Chris Lattnerf919bfe2009-03-24 17:04:48 +00001975 if (getLang().CPlusPlus &&
1976 (Tok.is(tok::coloncolon) || Tok.is(tok::identifier) ||
1977 Tok.is(tok::annot_cxxscope))) {
Sebastian Redlf30208a2009-01-24 21:16:55 +00001978 CXXScopeSpec SS;
1979 if (ParseOptionalCXXScopeSpecifier(SS)) {
1980 if(Tok.isNot(tok::star)) {
1981 // The scope spec really belongs to the direct-declarator.
1982 D.getCXXScopeSpec() = SS;
1983 if (DirectDeclParser)
1984 (this->*DirectDeclParser)(D);
1985 return;
1986 }
1987
1988 SourceLocation Loc = ConsumeToken();
Sebastian Redlab197ba2009-02-09 18:23:29 +00001989 D.SetRangeEnd(Loc);
Sebastian Redlf30208a2009-01-24 21:16:55 +00001990 DeclSpec DS;
1991 ParseTypeQualifierListOpt(DS);
Sebastian Redlab197ba2009-02-09 18:23:29 +00001992 D.ExtendWithDeclSpec(DS);
Sebastian Redlf30208a2009-01-24 21:16:55 +00001993
1994 // Recurse to parse whatever is left.
1995 ParseDeclaratorInternal(D, DirectDeclParser);
1996
1997 // Sema will have to catch (syntactically invalid) pointers into global
1998 // scope. It has to catch pointers into namespace scope anyway.
1999 D.AddTypeInfo(DeclaratorChunk::getMemberPointer(SS,DS.getTypeQualifiers(),
Sebastian Redlab197ba2009-02-09 18:23:29 +00002000 Loc, DS.TakeAttributes()),
2001 /* Don't replace range end. */SourceLocation());
Sebastian Redlf30208a2009-01-24 21:16:55 +00002002 return;
2003 }
2004 }
2005
2006 tok::TokenKind Kind = Tok.getKind();
Steve Naroff5618bd42008-08-27 16:04:49 +00002007 // Not a pointer, C++ reference, or block.
Chris Lattner9af55002009-03-27 04:18:06 +00002008 if (Kind != tok::star && Kind != tok::caret &&
Chris Lattnerf919bfe2009-03-24 17:04:48 +00002009 (Kind != tok::amp || !getLang().CPlusPlus) &&
Sebastian Redl743de1f2009-03-23 00:00:23 +00002010 // We parse rvalue refs in C++03, because otherwise the errors are scary.
Chris Lattner9af55002009-03-27 04:18:06 +00002011 (Kind != tok::ampamp || !getLang().CPlusPlus)) {
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002012 if (DirectDeclParser)
2013 (this->*DirectDeclParser)(D);
Douglas Gregor2f1bc522008-11-07 20:08:42 +00002014 return;
2015 }
Sebastian Redlf30208a2009-01-24 21:16:55 +00002016
Sebastian Redl05532f22009-03-15 22:02:01 +00002017 // Otherwise, '*' -> pointer, '^' -> block, '&' -> lvalue reference,
2018 // '&&' -> rvalue reference
Sebastian Redl743de1f2009-03-23 00:00:23 +00002019 SourceLocation Loc = ConsumeToken(); // Eat the *, ^, & or &&.
Sebastian Redlab197ba2009-02-09 18:23:29 +00002020 D.SetRangeEnd(Loc);
Reid Spencer5f016e22007-07-11 17:01:13 +00002021
Chris Lattner9af55002009-03-27 04:18:06 +00002022 if (Kind == tok::star || Kind == tok::caret) {
Chris Lattner76549142008-02-21 01:32:26 +00002023 // Is a pointer.
Reid Spencer5f016e22007-07-11 17:01:13 +00002024 DeclSpec DS;
Sebastian Redlf30208a2009-01-24 21:16:55 +00002025
Reid Spencer5f016e22007-07-11 17:01:13 +00002026 ParseTypeQualifierListOpt(DS);
Sebastian Redlab197ba2009-02-09 18:23:29 +00002027 D.ExtendWithDeclSpec(DS);
Sebastian Redlf30208a2009-01-24 21:16:55 +00002028
Reid Spencer5f016e22007-07-11 17:01:13 +00002029 // Recursively parse the declarator.
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002030 ParseDeclaratorInternal(D, DirectDeclParser);
Steve Naroff5618bd42008-08-27 16:04:49 +00002031 if (Kind == tok::star)
2032 // Remember that we parsed a pointer type, and remember the type-quals.
2033 D.AddTypeInfo(DeclaratorChunk::getPointer(DS.getTypeQualifiers(), Loc,
Sebastian Redlab197ba2009-02-09 18:23:29 +00002034 DS.TakeAttributes()),
2035 SourceLocation());
Steve Naroff5618bd42008-08-27 16:04:49 +00002036 else
2037 // Remember that we parsed a Block type, and remember the type-quals.
2038 D.AddTypeInfo(DeclaratorChunk::getBlockPointer(DS.getTypeQualifiers(),
Mike Stump75b163f2009-04-21 00:51:43 +00002039 Loc, DS.TakeAttributes()),
Sebastian Redlab197ba2009-02-09 18:23:29 +00002040 SourceLocation());
Reid Spencer5f016e22007-07-11 17:01:13 +00002041 } else {
2042 // Is a reference
2043 DeclSpec DS;
2044
Sebastian Redl743de1f2009-03-23 00:00:23 +00002045 // Complain about rvalue references in C++03, but then go on and build
2046 // the declarator.
2047 if (Kind == tok::ampamp && !getLang().CPlusPlus0x)
2048 Diag(Loc, diag::err_rvalue_reference);
2049
Reid Spencer5f016e22007-07-11 17:01:13 +00002050 // C++ 8.3.2p1: cv-qualified references are ill-formed except when the
2051 // cv-qualifiers are introduced through the use of a typedef or of a
2052 // template type argument, in which case the cv-qualifiers are ignored.
2053 //
2054 // [GNU] Retricted references are allowed.
2055 // [GNU] Attributes on references are allowed.
2056 ParseTypeQualifierListOpt(DS);
Sebastian Redlab197ba2009-02-09 18:23:29 +00002057 D.ExtendWithDeclSpec(DS);
Reid Spencer5f016e22007-07-11 17:01:13 +00002058
2059 if (DS.getTypeQualifiers() != DeclSpec::TQ_unspecified) {
2060 if (DS.getTypeQualifiers() & DeclSpec::TQ_const)
2061 Diag(DS.getConstSpecLoc(),
Chris Lattner1ab3b962008-11-18 07:48:38 +00002062 diag::err_invalid_reference_qualifier_application) << "const";
Reid Spencer5f016e22007-07-11 17:01:13 +00002063 if (DS.getTypeQualifiers() & DeclSpec::TQ_volatile)
2064 Diag(DS.getVolatileSpecLoc(),
Chris Lattner1ab3b962008-11-18 07:48:38 +00002065 diag::err_invalid_reference_qualifier_application) << "volatile";
Reid Spencer5f016e22007-07-11 17:01:13 +00002066 }
2067
2068 // Recursively parse the declarator.
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002069 ParseDeclaratorInternal(D, DirectDeclParser);
Reid Spencer5f016e22007-07-11 17:01:13 +00002070
Douglas Gregorf1f9b4e2008-11-03 15:51:28 +00002071 if (D.getNumTypeObjects() > 0) {
2072 // C++ [dcl.ref]p4: There shall be no references to references.
2073 DeclaratorChunk& InnerChunk = D.getTypeObject(D.getNumTypeObjects() - 1);
2074 if (InnerChunk.Kind == DeclaratorChunk::Reference) {
Chris Lattnerda83bac2008-11-19 07:37:42 +00002075 if (const IdentifierInfo *II = D.getIdentifier())
2076 Diag(InnerChunk.Loc, diag::err_illegal_decl_reference_to_reference)
2077 << II;
2078 else
2079 Diag(InnerChunk.Loc, diag::err_illegal_decl_reference_to_reference)
2080 << "type name";
Douglas Gregorf1f9b4e2008-11-03 15:51:28 +00002081
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002082 // Once we've complained about the reference-to-reference, we
Douglas Gregorf1f9b4e2008-11-03 15:51:28 +00002083 // can go ahead and build the (technically ill-formed)
2084 // declarator: reference collapsing will take care of it.
2085 }
2086 }
2087
Reid Spencer5f016e22007-07-11 17:01:13 +00002088 // Remember that we parsed a reference type. It doesn't have type-quals.
Chris Lattner76549142008-02-21 01:32:26 +00002089 D.AddTypeInfo(DeclaratorChunk::getReference(DS.getTypeQualifiers(), Loc,
Sebastian Redl05532f22009-03-15 22:02:01 +00002090 DS.TakeAttributes(),
2091 Kind == tok::amp),
Sebastian Redlab197ba2009-02-09 18:23:29 +00002092 SourceLocation());
Reid Spencer5f016e22007-07-11 17:01:13 +00002093 }
2094}
2095
2096/// ParseDirectDeclarator
2097/// direct-declarator: [C99 6.7.5]
Douglas Gregor42a552f2008-11-05 20:51:48 +00002098/// [C99] identifier
Reid Spencer5f016e22007-07-11 17:01:13 +00002099/// '(' declarator ')'
2100/// [GNU] '(' attributes declarator ')'
2101/// [C90] direct-declarator '[' constant-expression[opt] ']'
2102/// [C99] direct-declarator '[' type-qual-list[opt] assignment-expr[opt] ']'
2103/// [C99] direct-declarator '[' 'static' type-qual-list[opt] assign-expr ']'
2104/// [C99] direct-declarator '[' type-qual-list 'static' assignment-expr ']'
2105/// [C99] direct-declarator '[' type-qual-list[opt] '*' ']'
2106/// direct-declarator '(' parameter-type-list ')'
2107/// direct-declarator '(' identifier-list[opt] ')'
2108/// [GNU] direct-declarator '(' parameter-forward-declarations
2109/// parameter-type-list[opt] ')'
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +00002110/// [C++] direct-declarator '(' parameter-declaration-clause ')'
2111/// cv-qualifier-seq[opt] exception-specification[opt]
Douglas Gregorb48fe382008-10-31 09:07:45 +00002112/// [C++] declarator-id
Douglas Gregor42a552f2008-11-05 20:51:48 +00002113///
2114/// declarator-id: [C++ 8]
2115/// id-expression
2116/// '::'[opt] nested-name-specifier[opt] type-name
2117///
2118/// id-expression: [C++ 5.1]
2119/// unqualified-id
2120/// qualified-id [TODO]
2121///
2122/// unqualified-id: [C++ 5.1]
2123/// identifier
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00002124/// operator-function-id
Douglas Gregor42a552f2008-11-05 20:51:48 +00002125/// conversion-function-id [TODO]
2126/// '~' class-name
Douglas Gregor39a8de12009-02-25 19:37:18 +00002127/// template-id
Argyrios Kyrtzidisc7ed9c62008-11-07 22:02:30 +00002128///
Reid Spencer5f016e22007-07-11 17:01:13 +00002129void Parser::ParseDirectDeclarator(Declarator &D) {
Argyrios Kyrtzidis314fe782008-11-26 22:40:03 +00002130 DeclaratorScopeObj DeclScopeObj(*this, D.getCXXScopeSpec());
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00002131
Argyrios Kyrtzidis314fe782008-11-26 22:40:03 +00002132 if (getLang().CPlusPlus) {
2133 if (D.mayHaveIdentifier()) {
Sebastian Redlf30208a2009-01-24 21:16:55 +00002134 // ParseDeclaratorInternal might already have parsed the scope.
2135 bool afterCXXScope = D.getCXXScopeSpec().isSet() ||
2136 ParseOptionalCXXScopeSpecifier(D.getCXXScopeSpec());
Argyrios Kyrtzidis314fe782008-11-26 22:40:03 +00002137 if (afterCXXScope) {
2138 // Change the declaration context for name lookup, until this function
2139 // is exited (and the declarator has been parsed).
2140 DeclScopeObj.EnterDeclaratorScope();
2141 }
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00002142
Argyrios Kyrtzidis314fe782008-11-26 22:40:03 +00002143 if (Tok.is(tok::identifier)) {
2144 assert(Tok.getIdentifierInfo() && "Not an identifier?");
Anders Carlsson4649cac2009-04-30 22:41:11 +00002145
2146 // If this identifier is the name of the current class, it's a
2147 // constructor name.
2148 if (!D.getDeclSpec().hasTypeSpecifier() &&
2149 Actions.isCurrentClassName(*Tok.getIdentifierInfo(),CurScope)) {
Douglas Gregor675431d2009-07-06 16:40:48 +00002150 CXXScopeSpec *SS = afterCXXScope? &D.getCXXScopeSpec() : 0;
Anders Carlsson4649cac2009-04-30 22:41:11 +00002151 D.setConstructor(Actions.getTypeName(*Tok.getIdentifierInfo(),
Douglas Gregor675431d2009-07-06 16:40:48 +00002152 Tok.getLocation(), CurScope, SS),
Anders Carlsson4649cac2009-04-30 22:41:11 +00002153 Tok.getLocation());
2154 // This is a normal identifier.
2155 } else
2156 D.SetIdentifier(Tok.getIdentifierInfo(), Tok.getLocation());
Argyrios Kyrtzidis314fe782008-11-26 22:40:03 +00002157 ConsumeToken();
2158 goto PastIdentifier;
Douglas Gregor39a8de12009-02-25 19:37:18 +00002159 } else if (Tok.is(tok::annot_template_id)) {
2160 TemplateIdAnnotation *TemplateId
2161 = static_cast<TemplateIdAnnotation *>(Tok.getAnnotationValue());
2162
2163 // FIXME: Could this template-id name a constructor?
2164
2165 // FIXME: This is an egregious hack, where we silently ignore
2166 // the specialization (which should be a function template
2167 // specialization name) and use the name instead. This hack
2168 // will go away when we have support for function
2169 // specializations.
2170 D.SetIdentifier(TemplateId->Name, Tok.getLocation());
2171 TemplateId->Destroy();
2172 ConsumeToken();
2173 goto PastIdentifier;
Douglas Gregor70316a02008-12-26 15:00:45 +00002174 } else if (Tok.is(tok::kw_operator)) {
2175 SourceLocation OperatorLoc = Tok.getLocation();
Sebastian Redlab197ba2009-02-09 18:23:29 +00002176 SourceLocation EndLoc;
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00002177
Douglas Gregor70316a02008-12-26 15:00:45 +00002178 // First try the name of an overloaded operator
Sebastian Redlab197ba2009-02-09 18:23:29 +00002179 if (OverloadedOperatorKind Op = TryParseOperatorFunctionId(&EndLoc)) {
2180 D.setOverloadedOperator(Op, OperatorLoc, EndLoc);
Douglas Gregor70316a02008-12-26 15:00:45 +00002181 } else {
2182 // This must be a conversion function (C++ [class.conv.fct]).
Sebastian Redlab197ba2009-02-09 18:23:29 +00002183 if (TypeTy *ConvType = ParseConversionFunctionId(&EndLoc))
2184 D.setConversionFunction(ConvType, OperatorLoc, EndLoc);
2185 else {
Douglas Gregor70316a02008-12-26 15:00:45 +00002186 D.SetIdentifier(0, Tok.getLocation());
Sebastian Redlab197ba2009-02-09 18:23:29 +00002187 }
Douglas Gregor70316a02008-12-26 15:00:45 +00002188 }
2189 goto PastIdentifier;
2190 } else if (Tok.is(tok::tilde)) {
Argyrios Kyrtzidis314fe782008-11-26 22:40:03 +00002191 // This should be a C++ destructor.
2192 SourceLocation TildeLoc = ConsumeToken();
2193 if (Tok.is(tok::identifier)) {
Sebastian Redlab197ba2009-02-09 18:23:29 +00002194 // FIXME: Inaccurate.
2195 SourceLocation NameLoc = Tok.getLocation();
Douglas Gregor7f43d672009-02-25 23:52:28 +00002196 SourceLocation EndLoc;
Douglas Gregor675431d2009-07-06 16:40:48 +00002197 CXXScopeSpec *SS = afterCXXScope? &D.getCXXScopeSpec() : 0;
Fariborz Jahaniand33c8682009-07-20 17:43:15 +00002198 TypeResult Type = ParseClassName(EndLoc, SS, true);
Douglas Gregor31a19b62009-04-01 21:51:26 +00002199 if (Type.isInvalid())
Argyrios Kyrtzidis314fe782008-11-26 22:40:03 +00002200 D.SetIdentifier(0, TildeLoc);
Douglas Gregor31a19b62009-04-01 21:51:26 +00002201 else
2202 D.setDestructor(Type.get(), TildeLoc, NameLoc);
Argyrios Kyrtzidis314fe782008-11-26 22:40:03 +00002203 } else {
Fariborz Jahaniand33c8682009-07-20 17:43:15 +00002204 Diag(Tok, diag::err_destructor_class_name);
Argyrios Kyrtzidis314fe782008-11-26 22:40:03 +00002205 D.SetIdentifier(0, TildeLoc);
2206 }
2207 goto PastIdentifier;
2208 }
2209
2210 // If we reached this point, token is not identifier and not '~'.
2211
2212 if (afterCXXScope) {
2213 Diag(Tok, diag::err_expected_unqualified_id);
2214 D.SetIdentifier(0, Tok.getLocation());
2215 D.setInvalidType(true);
2216 goto PastIdentifier;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00002217 }
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00002218 }
Argyrios Kyrtzidis314fe782008-11-26 22:40:03 +00002219 }
2220
2221 // If we reached this point, we are either in C/ObjC or the token didn't
2222 // satisfy any of the C++-specific checks.
Argyrios Kyrtzidis314fe782008-11-26 22:40:03 +00002223 if (Tok.is(tok::identifier) && D.mayHaveIdentifier()) {
2224 assert(!getLang().CPlusPlus &&
2225 "There's a C++-specific check for tok::identifier above");
2226 assert(Tok.getIdentifierInfo() && "Not an identifier?");
2227 D.SetIdentifier(Tok.getIdentifierInfo(), Tok.getLocation());
2228 ConsumeToken();
2229 } else if (Tok.is(tok::l_paren)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00002230 // direct-declarator: '(' declarator ')'
2231 // direct-declarator: '(' attributes declarator ')'
2232 // Example: 'char (*X)' or 'int (*XX)(void)'
2233 ParseParenDeclarator(D);
Argyrios Kyrtzidis314fe782008-11-26 22:40:03 +00002234 } else if (D.mayOmitIdentifier()) {
Reid Spencer5f016e22007-07-11 17:01:13 +00002235 // This could be something simple like "int" (in which case the declarator
2236 // portion is empty), if an abstract-declarator is allowed.
2237 D.SetIdentifier(0, Tok.getLocation());
2238 } else {
Douglas Gregore950d4b2009-03-06 23:28:18 +00002239 if (D.getContext() == Declarator::MemberContext)
2240 Diag(Tok, diag::err_expected_member_name_or_semi)
2241 << D.getDeclSpec().getSourceRange();
2242 else if (getLang().CPlusPlus)
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00002243 Diag(Tok, diag::err_expected_unqualified_id);
2244 else
Chris Lattner1ab3b962008-11-18 07:48:38 +00002245 Diag(Tok, diag::err_expected_ident_lparen);
Reid Spencer5f016e22007-07-11 17:01:13 +00002246 D.SetIdentifier(0, Tok.getLocation());
Chris Lattner1f6f54b2008-11-11 06:13:16 +00002247 D.setInvalidType(true);
Reid Spencer5f016e22007-07-11 17:01:13 +00002248 }
2249
Argyrios Kyrtzidis314fe782008-11-26 22:40:03 +00002250 PastIdentifier:
Reid Spencer5f016e22007-07-11 17:01:13 +00002251 assert(D.isPastIdentifier() &&
2252 "Haven't past the location of the identifier yet?");
2253
2254 while (1) {
Chris Lattner04d66662007-10-09 17:33:22 +00002255 if (Tok.is(tok::l_paren)) {
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00002256 // The paren may be part of a C++ direct initializer, eg. "int x(1);".
2257 // In such a case, check if we actually have a function declarator; if it
2258 // is not, the declarator has been fully parsed.
Chris Lattner7399ee02008-10-20 02:05:46 +00002259 if (getLang().CPlusPlus && D.mayBeFollowedByCXXDirectInit()) {
2260 // When not in file scope, warn for ambiguous function declarators, just
2261 // in case the author intended it as a variable definition.
2262 bool warnIfAmbiguous = D.getContext() != Declarator::FileContext;
2263 if (!isCXXFunctionDeclarator(warnIfAmbiguous))
2264 break;
2265 }
Chris Lattneref4715c2008-04-06 05:45:57 +00002266 ParseFunctionDeclarator(ConsumeParen(), D);
Chris Lattner04d66662007-10-09 17:33:22 +00002267 } else if (Tok.is(tok::l_square)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00002268 ParseBracketDeclarator(D);
2269 } else {
2270 break;
2271 }
2272 }
2273}
2274
Chris Lattneref4715c2008-04-06 05:45:57 +00002275/// ParseParenDeclarator - We parsed the declarator D up to a paren. This is
2276/// only called before the identifier, so these are most likely just grouping
2277/// parens for precedence. If we find that these are actually function
2278/// parameter parens in an abstract-declarator, we call ParseFunctionDeclarator.
2279///
2280/// direct-declarator:
2281/// '(' declarator ')'
2282/// [GNU] '(' attributes declarator ')'
Chris Lattner7399ee02008-10-20 02:05:46 +00002283/// direct-declarator '(' parameter-type-list ')'
2284/// direct-declarator '(' identifier-list[opt] ')'
2285/// [GNU] direct-declarator '(' parameter-forward-declarations
2286/// parameter-type-list[opt] ')'
Chris Lattneref4715c2008-04-06 05:45:57 +00002287///
2288void Parser::ParseParenDeclarator(Declarator &D) {
2289 SourceLocation StartLoc = ConsumeParen();
2290 assert(!D.isPastIdentifier() && "Should be called before passing identifier");
2291
Chris Lattner7399ee02008-10-20 02:05:46 +00002292 // Eat any attributes before we look at whether this is a grouping or function
2293 // declarator paren. If this is a grouping paren, the attribute applies to
2294 // the type being built up, for example:
2295 // int (__attribute__(()) *x)(long y)
2296 // If this ends up not being a grouping paren, the attribute applies to the
2297 // first argument, for example:
2298 // int (__attribute__(()) int x)
2299 // In either case, we need to eat any attributes to be able to determine what
2300 // sort of paren this is.
2301 //
2302 AttributeList *AttrList = 0;
2303 bool RequiresArg = false;
2304 if (Tok.is(tok::kw___attribute)) {
2305 AttrList = ParseAttributes();
2306
2307 // We require that the argument list (if this is a non-grouping paren) be
2308 // present even if the attribute list was empty.
2309 RequiresArg = true;
2310 }
Steve Naroff239f0732008-12-25 14:16:32 +00002311 // Eat any Microsoft extensions.
Eli Friedman290eeb02009-06-08 23:27:34 +00002312 if (Tok.is(tok::kw___cdecl) || Tok.is(tok::kw___stdcall) ||
2313 Tok.is(tok::kw___fastcall) || Tok.is(tok::kw___w64) ||
2314 Tok.is(tok::kw___ptr64)) {
2315 AttrList = ParseMicrosoftTypeAttributes(AttrList);
2316 }
Chris Lattner7399ee02008-10-20 02:05:46 +00002317
Chris Lattneref4715c2008-04-06 05:45:57 +00002318 // If we haven't past the identifier yet (or where the identifier would be
2319 // stored, if this is an abstract declarator), then this is probably just
2320 // grouping parens. However, if this could be an abstract-declarator, then
2321 // this could also be the start of function arguments (consider 'void()').
2322 bool isGrouping;
2323
2324 if (!D.mayOmitIdentifier()) {
2325 // If this can't be an abstract-declarator, this *must* be a grouping
2326 // paren, because we haven't seen the identifier yet.
2327 isGrouping = true;
2328 } else if (Tok.is(tok::r_paren) || // 'int()' is a function.
Argyrios Kyrtzidise25d2702008-10-06 00:07:55 +00002329 (getLang().CPlusPlus && Tok.is(tok::ellipsis)) || // C++ int(...)
Chris Lattneref4715c2008-04-06 05:45:57 +00002330 isDeclarationSpecifier()) { // 'int(int)' is a function.
2331 // This handles C99 6.7.5.3p11: in "typedef int X; void foo(X)", X is
2332 // considered to be a type, not a K&R identifier-list.
2333 isGrouping = false;
2334 } else {
2335 // Otherwise, this is a grouping paren, e.g. 'int (*X)' or 'int(X)'.
2336 isGrouping = true;
2337 }
2338
2339 // If this is a grouping paren, handle:
2340 // direct-declarator: '(' declarator ')'
2341 // direct-declarator: '(' attributes declarator ')'
2342 if (isGrouping) {
Argyrios Kyrtzidis3f2a8a02008-10-07 10:21:57 +00002343 bool hadGroupingParens = D.hasGroupingParens();
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00002344 D.setGroupingParens(true);
Chris Lattner7399ee02008-10-20 02:05:46 +00002345 if (AttrList)
Sebastian Redlab197ba2009-02-09 18:23:29 +00002346 D.AddAttributes(AttrList, SourceLocation());
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00002347
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002348 ParseDeclaratorInternal(D, &Parser::ParseDirectDeclarator);
Chris Lattneref4715c2008-04-06 05:45:57 +00002349 // Match the ')'.
Sebastian Redlab197ba2009-02-09 18:23:29 +00002350 SourceLocation Loc = MatchRHSPunctuation(tok::r_paren, StartLoc);
Argyrios Kyrtzidis3f2a8a02008-10-07 10:21:57 +00002351
2352 D.setGroupingParens(hadGroupingParens);
Sebastian Redlab197ba2009-02-09 18:23:29 +00002353 D.SetRangeEnd(Loc);
Chris Lattneref4715c2008-04-06 05:45:57 +00002354 return;
2355 }
2356
2357 // Okay, if this wasn't a grouping paren, it must be the start of a function
2358 // argument list. Recognize that this declarator will never have an
Chris Lattner7399ee02008-10-20 02:05:46 +00002359 // identifier (and remember where it would have been), then call into
2360 // ParseFunctionDeclarator to handle of argument list.
Chris Lattneref4715c2008-04-06 05:45:57 +00002361 D.SetIdentifier(0, Tok.getLocation());
2362
Chris Lattner7399ee02008-10-20 02:05:46 +00002363 ParseFunctionDeclarator(StartLoc, D, AttrList, RequiresArg);
Chris Lattneref4715c2008-04-06 05:45:57 +00002364}
2365
2366/// ParseFunctionDeclarator - We are after the identifier and have parsed the
2367/// declarator D up to a paren, which indicates that we are parsing function
2368/// arguments.
Reid Spencer5f016e22007-07-11 17:01:13 +00002369///
Chris Lattner7399ee02008-10-20 02:05:46 +00002370/// If AttrList is non-null, then the caller parsed those arguments immediately
2371/// after the open paren - they should be considered to be the first argument of
2372/// a parameter. If RequiresArg is true, then the first argument of the
2373/// function is required to be present and required to not be an identifier
2374/// list.
2375///
Reid Spencer5f016e22007-07-11 17:01:13 +00002376/// This method also handles this portion of the grammar:
2377/// parameter-type-list: [C99 6.7.5]
2378/// parameter-list
2379/// parameter-list ',' '...'
2380///
2381/// parameter-list: [C99 6.7.5]
2382/// parameter-declaration
2383/// parameter-list ',' parameter-declaration
2384///
2385/// parameter-declaration: [C99 6.7.5]
2386/// declaration-specifiers declarator
Chris Lattner04421082008-04-08 04:40:51 +00002387/// [C++] declaration-specifiers declarator '=' assignment-expression
Reid Spencer5f016e22007-07-11 17:01:13 +00002388/// [GNU] declaration-specifiers declarator attributes
Sebastian Redl50de12f2009-03-24 22:27:57 +00002389/// declaration-specifiers abstract-declarator[opt]
2390/// [C++] declaration-specifiers abstract-declarator[opt]
Chris Lattner8123a952008-04-10 02:22:51 +00002391/// '=' assignment-expression
Reid Spencer5f016e22007-07-11 17:01:13 +00002392/// [GNU] declaration-specifiers abstract-declarator[opt] attributes
2393///
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +00002394/// For C++, after the parameter-list, it also parses "cv-qualifier-seq[opt]"
Sebastian Redl50de12f2009-03-24 22:27:57 +00002395/// and "exception-specification[opt]".
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +00002396///
Chris Lattner7399ee02008-10-20 02:05:46 +00002397void Parser::ParseFunctionDeclarator(SourceLocation LParenLoc, Declarator &D,
2398 AttributeList *AttrList,
2399 bool RequiresArg) {
Chris Lattneref4715c2008-04-06 05:45:57 +00002400 // lparen is already consumed!
2401 assert(D.isPastIdentifier() && "Should not call before identifier!");
Reid Spencer5f016e22007-07-11 17:01:13 +00002402
Chris Lattner7399ee02008-10-20 02:05:46 +00002403 // This parameter list may be empty.
Chris Lattner04d66662007-10-09 17:33:22 +00002404 if (Tok.is(tok::r_paren)) {
Chris Lattner7399ee02008-10-20 02:05:46 +00002405 if (RequiresArg) {
Chris Lattner1ab3b962008-11-18 07:48:38 +00002406 Diag(Tok, diag::err_argument_required_after_attribute);
Chris Lattner7399ee02008-10-20 02:05:46 +00002407 delete AttrList;
2408 }
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +00002409
Sebastian Redlab197ba2009-02-09 18:23:29 +00002410 SourceLocation Loc = ConsumeParen(); // Eat the closing ')'.
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +00002411
2412 // cv-qualifier-seq[opt].
2413 DeclSpec DS;
Sebastian Redl7dc81342009-04-29 17:30:04 +00002414 bool hasExceptionSpec = false;
Sebastian Redl3cc97262009-05-31 11:47:27 +00002415 SourceLocation ThrowLoc;
Sebastian Redl7dc81342009-04-29 17:30:04 +00002416 bool hasAnyExceptionSpec = false;
Sebastian Redlef65f062009-05-29 18:02:33 +00002417 llvm::SmallVector<TypeTy*, 2> Exceptions;
2418 llvm::SmallVector<SourceRange, 2> ExceptionRanges;
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +00002419 if (getLang().CPlusPlus) {
Chris Lattner5a69d1c2008-12-18 07:02:59 +00002420 ParseTypeQualifierListOpt(DS, false /*no attributes*/);
Sebastian Redlab197ba2009-02-09 18:23:29 +00002421 if (!DS.getSourceRange().getEnd().isInvalid())
2422 Loc = DS.getSourceRange().getEnd();
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002423
2424 // Parse exception-specification[opt].
Sebastian Redl7dc81342009-04-29 17:30:04 +00002425 if (Tok.is(tok::kw_throw)) {
2426 hasExceptionSpec = true;
Sebastian Redl3cc97262009-05-31 11:47:27 +00002427 ThrowLoc = Tok.getLocation();
Sebastian Redlef65f062009-05-29 18:02:33 +00002428 ParseExceptionSpecification(Loc, Exceptions, ExceptionRanges,
2429 hasAnyExceptionSpec);
2430 assert(Exceptions.size() == ExceptionRanges.size() &&
2431 "Produced different number of exception types and ranges.");
Sebastian Redl7dc81342009-04-29 17:30:04 +00002432 }
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +00002433 }
2434
Chris Lattnerf97409f2008-04-06 06:57:35 +00002435 // Remember that we parsed a function type, and remember the attributes.
Reid Spencer5f016e22007-07-11 17:01:13 +00002436 // int() -> no prototype, no '...'.
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +00002437 D.AddTypeInfo(DeclaratorChunk::getFunction(/*prototype*/getLang().CPlusPlus,
Chris Lattnerf97409f2008-04-06 06:57:35 +00002438 /*variadic*/ false,
Douglas Gregor965acbb2009-02-18 07:07:28 +00002439 SourceLocation(),
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +00002440 /*arglist*/ 0, 0,
2441 DS.getTypeQualifiers(),
Sebastian Redl3cc97262009-05-31 11:47:27 +00002442 hasExceptionSpec, ThrowLoc,
Sebastian Redl7dc81342009-04-29 17:30:04 +00002443 hasAnyExceptionSpec,
Sebastian Redlef65f062009-05-29 18:02:33 +00002444 Exceptions.data(),
2445 ExceptionRanges.data(),
Sebastian Redl7dc81342009-04-29 17:30:04 +00002446 Exceptions.size(),
Sebastian Redlab197ba2009-02-09 18:23:29 +00002447 LParenLoc, D),
2448 Loc);
Chris Lattnerf97409f2008-04-06 06:57:35 +00002449 return;
Sebastian Redlef65f062009-05-29 18:02:33 +00002450 }
2451
Chris Lattner7399ee02008-10-20 02:05:46 +00002452 // Alternatively, this parameter list may be an identifier list form for a
2453 // K&R-style function: void foo(a,b,c)
Steve Naroff2d081c42009-01-28 19:16:40 +00002454 if (!getLang().CPlusPlus && Tok.is(tok::identifier)) {
Steve Narofff64ef622009-01-30 14:23:32 +00002455 if (!TryAnnotateTypeOrScopeToken()) {
Chris Lattner7399ee02008-10-20 02:05:46 +00002456 // K&R identifier lists can't have typedefs as identifiers, per
2457 // C99 6.7.5.3p11.
Steve Naroff2d081c42009-01-28 19:16:40 +00002458 if (RequiresArg) {
2459 Diag(Tok, diag::err_argument_required_after_attribute);
2460 delete AttrList;
2461 }
Steve Naroff2d081c42009-01-28 19:16:40 +00002462 // Identifier list. Note that '(' identifier-list ')' is only allowed for
2463 // normal declarators, not for abstract-declarators.
2464 return ParseFunctionDeclaratorIdentifierList(LParenLoc, D);
Chris Lattner7399ee02008-10-20 02:05:46 +00002465 }
Chris Lattnerf97409f2008-04-06 06:57:35 +00002466 }
2467
2468 // Finally, a normal, non-empty parameter type list.
2469
2470 // Build up an array of information about the parsed arguments.
2471 llvm::SmallVector<DeclaratorChunk::ParamInfo, 16> ParamInfo;
Chris Lattner04421082008-04-08 04:40:51 +00002472
2473 // Enter function-declaration scope, limiting any declarators to the
2474 // function prototype scope, including parameter declarators.
Chris Lattnerae50fa02009-03-05 00:00:31 +00002475 ParseScope PrototypeScope(this,
2476 Scope::FunctionPrototypeScope|Scope::DeclScope);
Chris Lattnerf97409f2008-04-06 06:57:35 +00002477
2478 bool IsVariadic = false;
Douglas Gregor965acbb2009-02-18 07:07:28 +00002479 SourceLocation EllipsisLoc;
Chris Lattnerf97409f2008-04-06 06:57:35 +00002480 while (1) {
2481 if (Tok.is(tok::ellipsis)) {
2482 IsVariadic = true;
Douglas Gregor965acbb2009-02-18 07:07:28 +00002483 EllipsisLoc = ConsumeToken(); // Consume the ellipsis.
Chris Lattnerf97409f2008-04-06 06:57:35 +00002484 break;
Reid Spencer5f016e22007-07-11 17:01:13 +00002485 }
2486
Chris Lattnerf97409f2008-04-06 06:57:35 +00002487 SourceLocation DSStart = Tok.getLocation();
Reid Spencer5f016e22007-07-11 17:01:13 +00002488
Chris Lattnerf97409f2008-04-06 06:57:35 +00002489 // Parse the declaration-specifiers.
2490 DeclSpec DS;
Chris Lattner7399ee02008-10-20 02:05:46 +00002491
2492 // If the caller parsed attributes for the first argument, add them now.
2493 if (AttrList) {
2494 DS.AddAttributes(AttrList);
2495 AttrList = 0; // Only apply the attributes to the first parameter.
2496 }
Chris Lattnere64c5492009-02-27 18:38:20 +00002497 ParseDeclarationSpecifiers(DS);
2498
Chris Lattnerf97409f2008-04-06 06:57:35 +00002499 // Parse the declarator. This is "PrototypeContext", because we must
2500 // accept either 'declarator' or 'abstract-declarator' here.
2501 Declarator ParmDecl(DS, Declarator::PrototypeContext);
2502 ParseDeclarator(ParmDecl);
2503
2504 // Parse GNU attributes, if present.
Sebastian Redlab197ba2009-02-09 18:23:29 +00002505 if (Tok.is(tok::kw___attribute)) {
2506 SourceLocation Loc;
2507 AttributeList *AttrList = ParseAttributes(&Loc);
2508 ParmDecl.AddAttributes(AttrList, Loc);
2509 }
Chris Lattnerf97409f2008-04-06 06:57:35 +00002510
Chris Lattnerf97409f2008-04-06 06:57:35 +00002511 // Remember this parsed parameter in ParamInfo.
2512 IdentifierInfo *ParmII = ParmDecl.getIdentifier();
2513
Douglas Gregor72b505b2008-12-16 21:30:33 +00002514 // DefArgToks is used when the parsing of default arguments needs
2515 // to be delayed.
2516 CachedTokens *DefArgToks = 0;
2517
Chris Lattnerf97409f2008-04-06 06:57:35 +00002518 // If no parameter was specified, verify that *something* was specified,
2519 // otherwise we have a missing type and identifier.
Chris Lattnere64c5492009-02-27 18:38:20 +00002520 if (DS.isEmpty() && ParmDecl.getIdentifier() == 0 &&
2521 ParmDecl.getNumTypeObjects() == 0) {
Chris Lattnerf97409f2008-04-06 06:57:35 +00002522 // Completely missing, emit error.
2523 Diag(DSStart, diag::err_missing_param);
2524 } else {
2525 // Otherwise, we have something. Add it and let semantic analysis try
2526 // to grok it and add the result to the ParamInfo we are building.
2527
2528 // Inform the actions module about the parameter declarator, so it gets
2529 // added to the current scope.
Chris Lattnerb28317a2009-03-28 19:18:32 +00002530 DeclPtrTy Param = Actions.ActOnParamDeclarator(CurScope, ParmDecl);
Chris Lattner04421082008-04-08 04:40:51 +00002531
2532 // Parse the default argument, if any. We parse the default
2533 // arguments in all dialects; the semantic analysis in
2534 // ActOnParamDefaultArgument will reject the default argument in
2535 // C.
2536 if (Tok.is(tok::equal)) {
Douglas Gregor61366e92008-12-24 00:01:03 +00002537 SourceLocation EqualLoc = Tok.getLocation();
2538
Chris Lattner04421082008-04-08 04:40:51 +00002539 // Parse the default argument
Douglas Gregor72b505b2008-12-16 21:30:33 +00002540 if (D.getContext() == Declarator::MemberContext) {
2541 // If we're inside a class definition, cache the tokens
2542 // corresponding to the default argument. We'll actually parse
2543 // them when we see the end of the class definition.
2544 // FIXME: Templates will require something similar.
2545 // FIXME: Can we use a smart pointer for Toks?
2546 DefArgToks = new CachedTokens;
2547
2548 if (!ConsumeAndStoreUntil(tok::comma, tok::r_paren, *DefArgToks,
2549 tok::semi, false)) {
2550 delete DefArgToks;
2551 DefArgToks = 0;
Douglas Gregor61366e92008-12-24 00:01:03 +00002552 Actions.ActOnParamDefaultArgumentError(Param);
2553 } else
Anders Carlsson5e300d12009-06-12 16:51:40 +00002554 Actions.ActOnParamUnparsedDefaultArgument(Param, EqualLoc,
2555 (*DefArgToks)[1].getLocation());
Chris Lattner04421082008-04-08 04:40:51 +00002556 } else {
Douglas Gregor72b505b2008-12-16 21:30:33 +00002557 // Consume the '='.
Douglas Gregor61366e92008-12-24 00:01:03 +00002558 ConsumeToken();
Douglas Gregor72b505b2008-12-16 21:30:33 +00002559
2560 OwningExprResult DefArgResult(ParseAssignmentExpression());
2561 if (DefArgResult.isInvalid()) {
2562 Actions.ActOnParamDefaultArgumentError(Param);
2563 SkipUntil(tok::comma, tok::r_paren, true, true);
2564 } else {
2565 // Inform the actions module about the default argument
2566 Actions.ActOnParamDefaultArgument(Param, EqualLoc,
Sebastian Redlf53597f2009-03-15 17:47:39 +00002567 move(DefArgResult));
Douglas Gregor72b505b2008-12-16 21:30:33 +00002568 }
Chris Lattner04421082008-04-08 04:40:51 +00002569 }
2570 }
Chris Lattnerf97409f2008-04-06 06:57:35 +00002571
2572 ParamInfo.push_back(DeclaratorChunk::ParamInfo(ParmII,
Douglas Gregor72b505b2008-12-16 21:30:33 +00002573 ParmDecl.getIdentifierLoc(), Param,
2574 DefArgToks));
Chris Lattnerf97409f2008-04-06 06:57:35 +00002575 }
2576
2577 // If the next token is a comma, consume it and keep reading arguments.
2578 if (Tok.isNot(tok::comma)) break;
2579
2580 // Consume the comma.
2581 ConsumeToken();
Reid Spencer5f016e22007-07-11 17:01:13 +00002582 }
2583
Chris Lattnerf97409f2008-04-06 06:57:35 +00002584 // Leave prototype scope.
Douglas Gregor8935b8b2008-12-10 06:34:36 +00002585 PrototypeScope.Exit();
Chris Lattnerf97409f2008-04-06 06:57:35 +00002586
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +00002587 // If we have the closing ')', eat it.
Sebastian Redlab197ba2009-02-09 18:23:29 +00002588 SourceLocation Loc = MatchRHSPunctuation(tok::r_paren, LParenLoc);
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +00002589
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +00002590 DeclSpec DS;
Sebastian Redl7dc81342009-04-29 17:30:04 +00002591 bool hasExceptionSpec = false;
Sebastian Redl3cc97262009-05-31 11:47:27 +00002592 SourceLocation ThrowLoc;
Sebastian Redl7dc81342009-04-29 17:30:04 +00002593 bool hasAnyExceptionSpec = false;
Sebastian Redlef65f062009-05-29 18:02:33 +00002594 llvm::SmallVector<TypeTy*, 2> Exceptions;
2595 llvm::SmallVector<SourceRange, 2> ExceptionRanges;
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +00002596 if (getLang().CPlusPlus) {
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002597 // Parse cv-qualifier-seq[opt].
Chris Lattner5a69d1c2008-12-18 07:02:59 +00002598 ParseTypeQualifierListOpt(DS, false /*no attributes*/);
Sebastian Redlab197ba2009-02-09 18:23:29 +00002599 if (!DS.getSourceRange().getEnd().isInvalid())
2600 Loc = DS.getSourceRange().getEnd();
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002601
2602 // Parse exception-specification[opt].
Sebastian Redl7dc81342009-04-29 17:30:04 +00002603 if (Tok.is(tok::kw_throw)) {
2604 hasExceptionSpec = true;
Sebastian Redl3cc97262009-05-31 11:47:27 +00002605 ThrowLoc = Tok.getLocation();
Sebastian Redlef65f062009-05-29 18:02:33 +00002606 ParseExceptionSpecification(Loc, Exceptions, ExceptionRanges,
2607 hasAnyExceptionSpec);
2608 assert(Exceptions.size() == ExceptionRanges.size() &&
2609 "Produced different number of exception types and ranges.");
Sebastian Redl7dc81342009-04-29 17:30:04 +00002610 }
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +00002611 }
2612
Reid Spencer5f016e22007-07-11 17:01:13 +00002613 // Remember that we parsed a function type, and remember the attributes.
Chris Lattnerf97409f2008-04-06 06:57:35 +00002614 D.AddTypeInfo(DeclaratorChunk::getFunction(/*proto*/true, IsVariadic,
Douglas Gregor965acbb2009-02-18 07:07:28 +00002615 EllipsisLoc,
Jay Foadbeaaccd2009-05-21 09:52:38 +00002616 ParamInfo.data(), ParamInfo.size(),
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +00002617 DS.getTypeQualifiers(),
Sebastian Redl3cc97262009-05-31 11:47:27 +00002618 hasExceptionSpec, ThrowLoc,
Sebastian Redl7dc81342009-04-29 17:30:04 +00002619 hasAnyExceptionSpec,
Sebastian Redlef65f062009-05-29 18:02:33 +00002620 Exceptions.data(),
2621 ExceptionRanges.data(),
Sebastian Redl7dc81342009-04-29 17:30:04 +00002622 Exceptions.size(), LParenLoc, D),
Sebastian Redlab197ba2009-02-09 18:23:29 +00002623 Loc);
Reid Spencer5f016e22007-07-11 17:01:13 +00002624}
2625
Chris Lattner66d28652008-04-06 06:34:08 +00002626/// ParseFunctionDeclaratorIdentifierList - While parsing a function declarator
2627/// we found a K&R-style identifier list instead of a type argument list. The
2628/// current token is known to be the first identifier in the list.
2629///
2630/// identifier-list: [C99 6.7.5]
2631/// identifier
2632/// identifier-list ',' identifier
2633///
2634void Parser::ParseFunctionDeclaratorIdentifierList(SourceLocation LParenLoc,
2635 Declarator &D) {
2636 // Build up an array of information about the parsed arguments.
2637 llvm::SmallVector<DeclaratorChunk::ParamInfo, 16> ParamInfo;
2638 llvm::SmallSet<const IdentifierInfo*, 16> ParamsSoFar;
2639
2640 // If there was no identifier specified for the declarator, either we are in
2641 // an abstract-declarator, or we are in a parameter declarator which was found
2642 // to be abstract. In abstract-declarators, identifier lists are not valid:
2643 // diagnose this.
2644 if (!D.getIdentifier())
2645 Diag(Tok, diag::ext_ident_list_in_param);
2646
2647 // Tok is known to be the first identifier in the list. Remember this
2648 // identifier in ParamInfo.
Chris Lattner3825c2e2008-04-06 06:50:56 +00002649 ParamsSoFar.insert(Tok.getIdentifierInfo());
Chris Lattner66d28652008-04-06 06:34:08 +00002650 ParamInfo.push_back(DeclaratorChunk::ParamInfo(Tok.getIdentifierInfo(),
Chris Lattnerb28317a2009-03-28 19:18:32 +00002651 Tok.getLocation(),
2652 DeclPtrTy()));
Chris Lattner66d28652008-04-06 06:34:08 +00002653
Chris Lattner50c64772008-04-06 06:39:19 +00002654 ConsumeToken(); // eat the first identifier.
Chris Lattner66d28652008-04-06 06:34:08 +00002655
2656 while (Tok.is(tok::comma)) {
2657 // Eat the comma.
2658 ConsumeToken();
2659
Chris Lattner50c64772008-04-06 06:39:19 +00002660 // If this isn't an identifier, report the error and skip until ')'.
Chris Lattner66d28652008-04-06 06:34:08 +00002661 if (Tok.isNot(tok::identifier)) {
2662 Diag(Tok, diag::err_expected_ident);
Chris Lattner50c64772008-04-06 06:39:19 +00002663 SkipUntil(tok::r_paren);
2664 return;
Chris Lattner66d28652008-04-06 06:34:08 +00002665 }
Chris Lattneraaf9ddb2008-04-06 06:47:48 +00002666
Chris Lattner66d28652008-04-06 06:34:08 +00002667 IdentifierInfo *ParmII = Tok.getIdentifierInfo();
Chris Lattneraaf9ddb2008-04-06 06:47:48 +00002668
2669 // Reject 'typedef int y; int test(x, y)', but continue parsing.
Douglas Gregorb696ea32009-02-04 17:00:24 +00002670 if (Actions.getTypeName(*ParmII, Tok.getLocation(), CurScope))
Chris Lattnerda83bac2008-11-19 07:37:42 +00002671 Diag(Tok, diag::err_unexpected_typedef_ident) << ParmII;
Chris Lattner66d28652008-04-06 06:34:08 +00002672
2673 // Verify that the argument identifier has not already been mentioned.
2674 if (!ParamsSoFar.insert(ParmII)) {
Chris Lattnerda83bac2008-11-19 07:37:42 +00002675 Diag(Tok, diag::err_param_redefinition) << ParmII;
Chris Lattner50c64772008-04-06 06:39:19 +00002676 } else {
2677 // Remember this identifier in ParamInfo.
Chris Lattner66d28652008-04-06 06:34:08 +00002678 ParamInfo.push_back(DeclaratorChunk::ParamInfo(ParmII,
Chris Lattnerb28317a2009-03-28 19:18:32 +00002679 Tok.getLocation(),
2680 DeclPtrTy()));
Chris Lattner50c64772008-04-06 06:39:19 +00002681 }
Chris Lattner66d28652008-04-06 06:34:08 +00002682
2683 // Eat the identifier.
2684 ConsumeToken();
2685 }
Sebastian Redlab197ba2009-02-09 18:23:29 +00002686
2687 // If we have the closing ')', eat it and we're done.
2688 SourceLocation RLoc = MatchRHSPunctuation(tok::r_paren, LParenLoc);
2689
Chris Lattner50c64772008-04-06 06:39:19 +00002690 // Remember that we parsed a function type, and remember the attributes. This
2691 // function type is always a K&R style function type, which is not varargs and
2692 // has no prototype.
2693 D.AddTypeInfo(DeclaratorChunk::getFunction(/*proto*/false, /*varargs*/false,
Douglas Gregor965acbb2009-02-18 07:07:28 +00002694 SourceLocation(),
Chris Lattner50c64772008-04-06 06:39:19 +00002695 &ParamInfo[0], ParamInfo.size(),
Sebastian Redl7dc81342009-04-29 17:30:04 +00002696 /*TypeQuals*/0,
Sebastian Redl3cc97262009-05-31 11:47:27 +00002697 /*exception*/false,
2698 SourceLocation(), false, 0, 0, 0,
Sebastian Redl7dc81342009-04-29 17:30:04 +00002699 LParenLoc, D),
Sebastian Redlab197ba2009-02-09 18:23:29 +00002700 RLoc);
Chris Lattner66d28652008-04-06 06:34:08 +00002701}
Chris Lattneref4715c2008-04-06 05:45:57 +00002702
Reid Spencer5f016e22007-07-11 17:01:13 +00002703/// [C90] direct-declarator '[' constant-expression[opt] ']'
2704/// [C99] direct-declarator '[' type-qual-list[opt] assignment-expr[opt] ']'
2705/// [C99] direct-declarator '[' 'static' type-qual-list[opt] assign-expr ']'
2706/// [C99] direct-declarator '[' type-qual-list 'static' assignment-expr ']'
2707/// [C99] direct-declarator '[' type-qual-list[opt] '*' ']'
2708void Parser::ParseBracketDeclarator(Declarator &D) {
2709 SourceLocation StartLoc = ConsumeBracket();
2710
Chris Lattner378c7e42008-12-18 07:27:21 +00002711 // C array syntax has many features, but by-far the most common is [] and [4].
2712 // This code does a fast path to handle some of the most obvious cases.
2713 if (Tok.getKind() == tok::r_square) {
Sebastian Redlab197ba2009-02-09 18:23:29 +00002714 SourceLocation EndLoc = MatchRHSPunctuation(tok::r_square, StartLoc);
Chris Lattner378c7e42008-12-18 07:27:21 +00002715 // Remember that we parsed the empty array type.
2716 OwningExprResult NumElements(Actions);
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +00002717 D.AddTypeInfo(DeclaratorChunk::getArray(0, false, false, 0,
2718 StartLoc, EndLoc),
Sebastian Redlab197ba2009-02-09 18:23:29 +00002719 EndLoc);
Chris Lattner378c7e42008-12-18 07:27:21 +00002720 return;
2721 } else if (Tok.getKind() == tok::numeric_constant &&
2722 GetLookAheadToken(1).is(tok::r_square)) {
2723 // [4] is very common. Parse the numeric constant expression.
Sebastian Redlcd965b92009-01-18 18:53:16 +00002724 OwningExprResult ExprRes(Actions.ActOnNumericConstant(Tok));
Chris Lattner378c7e42008-12-18 07:27:21 +00002725 ConsumeToken();
2726
Sebastian Redlab197ba2009-02-09 18:23:29 +00002727 SourceLocation EndLoc = MatchRHSPunctuation(tok::r_square, StartLoc);
Chris Lattner378c7e42008-12-18 07:27:21 +00002728
2729 // If there was an error parsing the assignment-expression, recover.
2730 if (ExprRes.isInvalid())
2731 ExprRes.release(); // Deallocate expr, just use [].
2732
2733 // Remember that we parsed a array type, and remember its features.
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +00002734 D.AddTypeInfo(DeclaratorChunk::getArray(0, false, 0, ExprRes.release(),
2735 StartLoc, EndLoc),
Sebastian Redlab197ba2009-02-09 18:23:29 +00002736 EndLoc);
Chris Lattner378c7e42008-12-18 07:27:21 +00002737 return;
2738 }
2739
Reid Spencer5f016e22007-07-11 17:01:13 +00002740 // If valid, this location is the position where we read the 'static' keyword.
2741 SourceLocation StaticLoc;
Chris Lattner04d66662007-10-09 17:33:22 +00002742 if (Tok.is(tok::kw_static))
Reid Spencer5f016e22007-07-11 17:01:13 +00002743 StaticLoc = ConsumeToken();
2744
2745 // If there is a type-qualifier-list, read it now.
Chris Lattnera1fcbad2008-12-18 06:50:14 +00002746 // Type qualifiers in an array subscript are a C99 feature.
Reid Spencer5f016e22007-07-11 17:01:13 +00002747 DeclSpec DS;
Chris Lattner5a69d1c2008-12-18 07:02:59 +00002748 ParseTypeQualifierListOpt(DS, false /*no attributes*/);
Reid Spencer5f016e22007-07-11 17:01:13 +00002749
2750 // If we haven't already read 'static', check to see if there is one after the
2751 // type-qualifier-list.
Chris Lattner04d66662007-10-09 17:33:22 +00002752 if (!StaticLoc.isValid() && Tok.is(tok::kw_static))
Reid Spencer5f016e22007-07-11 17:01:13 +00002753 StaticLoc = ConsumeToken();
2754
2755 // Handle "direct-declarator [ type-qual-list[opt] * ]".
2756 bool isStar = false;
Sebastian Redl15faa7f2008-12-09 20:22:58 +00002757 OwningExprResult NumElements(Actions);
Chris Lattner5dcc6ce2008-04-06 05:26:30 +00002758
2759 // Handle the case where we have '[*]' as the array size. However, a leading
2760 // star could be the start of an expression, for example 'X[*p + 4]'. Verify
2761 // the the token after the star is a ']'. Since stars in arrays are
2762 // infrequent, use of lookahead is not costly here.
2763 if (Tok.is(tok::star) && GetLookAheadToken(1).is(tok::r_square)) {
Chris Lattnera711dd02008-04-06 05:27:21 +00002764 ConsumeToken(); // Eat the '*'.
Reid Spencer5f016e22007-07-11 17:01:13 +00002765
Chris Lattnera1fcbad2008-12-18 06:50:14 +00002766 if (StaticLoc.isValid()) {
Chris Lattner5dcc6ce2008-04-06 05:26:30 +00002767 Diag(StaticLoc, diag::err_unspecified_vla_size_with_static);
Chris Lattnera1fcbad2008-12-18 06:50:14 +00002768 StaticLoc = SourceLocation(); // Drop the static.
2769 }
Chris Lattner5dcc6ce2008-04-06 05:26:30 +00002770 isStar = true;
Chris Lattner04d66662007-10-09 17:33:22 +00002771 } else if (Tok.isNot(tok::r_square)) {
Chris Lattner378c7e42008-12-18 07:27:21 +00002772 // Note, in C89, this production uses the constant-expr production instead
2773 // of assignment-expr. The only difference is that assignment-expr allows
2774 // things like '=' and '*='. Sema rejects these in C89 mode because they
2775 // are not i-c-e's, so we don't need to distinguish between the two here.
2776
Douglas Gregore0762c92009-06-19 23:52:42 +00002777 // Parse the constant-expression or assignment-expression now (depending
2778 // on dialect).
2779 if (getLang().CPlusPlus)
2780 NumElements = ParseConstantExpression();
2781 else
2782 NumElements = ParseAssignmentExpression();
Reid Spencer5f016e22007-07-11 17:01:13 +00002783 }
2784
2785 // If there was an error parsing the assignment-expression, recover.
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00002786 if (NumElements.isInvalid()) {
Chris Lattner5cb10d32009-04-24 22:30:50 +00002787 D.setInvalidType(true);
Reid Spencer5f016e22007-07-11 17:01:13 +00002788 // If the expression was invalid, skip it.
2789 SkipUntil(tok::r_square);
2790 return;
2791 }
Sebastian Redlab197ba2009-02-09 18:23:29 +00002792
2793 SourceLocation EndLoc = MatchRHSPunctuation(tok::r_square, StartLoc);
2794
Chris Lattner378c7e42008-12-18 07:27:21 +00002795 // Remember that we parsed a array type, and remember its features.
Reid Spencer5f016e22007-07-11 17:01:13 +00002796 D.AddTypeInfo(DeclaratorChunk::getArray(DS.getTypeQualifiers(),
2797 StaticLoc.isValid(), isStar,
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +00002798 NumElements.release(),
2799 StartLoc, EndLoc),
Sebastian Redlab197ba2009-02-09 18:23:29 +00002800 EndLoc);
Reid Spencer5f016e22007-07-11 17:01:13 +00002801}
2802
Argyrios Kyrtzidis0f072032008-09-05 11:26:19 +00002803/// [GNU] typeof-specifier:
2804/// typeof ( expressions )
2805/// typeof ( type-name )
2806/// [GNU/C++] typeof unary-expression
Steve Naroffd1861fd2007-07-31 12:34:36 +00002807///
2808void Parser::ParseTypeofSpecifier(DeclSpec &DS) {
Chris Lattner04d66662007-10-09 17:33:22 +00002809 assert(Tok.is(tok::kw_typeof) && "Not a typeof specifier");
Argyrios Kyrtzidis5ab06402009-05-22 10:22:50 +00002810 Token OpTok = Tok;
Steve Naroffd1861fd2007-07-31 12:34:36 +00002811 SourceLocation StartLoc = ConsumeToken();
2812
Argyrios Kyrtzidis5ab06402009-05-22 10:22:50 +00002813 bool isCastExpr;
2814 TypeTy *CastTy;
2815 SourceRange CastRange;
2816 OwningExprResult Operand = ParseExprAfterTypeofSizeofAlignof(OpTok,
2817 isCastExpr,
2818 CastTy,
2819 CastRange);
2820
2821 if (CastRange.getEnd().isInvalid())
Argyrios Kyrtzidis64096252009-05-22 10:22:18 +00002822 // FIXME: Not accurate, the range gets one token more than it should.
2823 DS.SetRangeEnd(Tok.getLocation());
Argyrios Kyrtzidis5ab06402009-05-22 10:22:50 +00002824 else
2825 DS.SetRangeEnd(CastRange.getEnd());
2826
2827 if (isCastExpr) {
2828 if (!CastTy) {
2829 DS.SetTypeSpecError();
Argyrios Kyrtzidis0f072032008-09-05 11:26:19 +00002830 return;
Douglas Gregor809070a2009-02-18 17:45:20 +00002831 }
Argyrios Kyrtzidis0f072032008-09-05 11:26:19 +00002832
Argyrios Kyrtzidis5ab06402009-05-22 10:22:50 +00002833 const char *PrevSpec = 0;
2834 // Check for duplicate type specifiers (e.g. "int typeof(int)").
2835 if (DS.SetTypeSpecType(DeclSpec::TST_typeofType, StartLoc, PrevSpec,
2836 CastTy))
2837 Diag(StartLoc, diag::err_invalid_decl_spec_combination) << PrevSpec;
2838 return;
Argyrios Kyrtzidis64096252009-05-22 10:22:18 +00002839 }
Argyrios Kyrtzidis0f072032008-09-05 11:26:19 +00002840
Argyrios Kyrtzidis64096252009-05-22 10:22:18 +00002841 // If we get here, the operand to the typeof was an expresion.
2842 if (Operand.isInvalid()) {
2843 DS.SetTypeSpecError();
Steve Naroff9dfa7b42007-08-02 02:53:48 +00002844 return;
Steve Naroffd1861fd2007-07-31 12:34:36 +00002845 }
Argyrios Kyrtzidis0f072032008-09-05 11:26:19 +00002846
Argyrios Kyrtzidis64096252009-05-22 10:22:18 +00002847 const char *PrevSpec = 0;
2848 // Check for duplicate type specifiers (e.g. "int typeof(int)").
2849 if (DS.SetTypeSpecType(DeclSpec::TST_typeofExpr, StartLoc, PrevSpec,
2850 Operand.release()))
2851 Diag(StartLoc, diag::err_invalid_decl_spec_combination) << PrevSpec;
Steve Naroffd1861fd2007-07-31 12:34:36 +00002852}