blob: 826845243084a31cef67d7e45ea083a39b9fef38 [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"
Sebastian Redla55e52c2008-11-25 22:21:31 +000018#include "AstGuard.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000019#include "llvm/ADT/SmallSet.h"
20using namespace clang;
21
22//===----------------------------------------------------------------------===//
23// C99 6.7: Declarations.
24//===----------------------------------------------------------------------===//
25
26/// ParseTypeName
27/// type-name: [C99 6.7.6]
28/// specifier-qualifier-list abstract-declarator[opt]
Sebastian Redl4c5d3202008-11-21 19:14:01 +000029///
30/// Called type-id in C++.
Douglas Gregor809070a2009-02-18 17:45:20 +000031Action::TypeResult Parser::ParseTypeName() {
Reid Spencer5f016e22007-07-11 17:01:13 +000032 // Parse the common declaration-specifiers piece.
33 DeclSpec DS;
34 ParseSpecifierQualifierList(DS);
35
36 // Parse the abstract-declarator, if present.
37 Declarator DeclaratorInfo(DS, Declarator::TypeNameContext);
38 ParseDeclarator(DeclaratorInfo);
39
Douglas Gregor809070a2009-02-18 17:45:20 +000040 if (DeclaratorInfo.getInvalidType())
41 return true;
42
43 return Actions.ActOnTypeName(CurScope, DeclaratorInfo);
Reid Spencer5f016e22007-07-11 17:01:13 +000044}
45
46/// ParseAttributes - Parse a non-empty attributes list.
47///
48/// [GNU] attributes:
49/// attribute
50/// attributes attribute
51///
52/// [GNU] attribute:
53/// '__attribute__' '(' '(' attribute-list ')' ')'
54///
55/// [GNU] attribute-list:
56/// attrib
57/// attribute_list ',' attrib
58///
59/// [GNU] attrib:
60/// empty
61/// attrib-name
62/// attrib-name '(' identifier ')'
63/// attrib-name '(' identifier ',' nonempty-expr-list ')'
64/// attrib-name '(' argument-expression-list [C99 6.5.2] ')'
65///
66/// [GNU] attrib-name:
67/// identifier
68/// typespec
69/// typequal
70/// storageclass
71///
72/// FIXME: The GCC grammar/code for this construct implies we need two
73/// token lookahead. Comment from gcc: "If they start with an identifier
74/// which is followed by a comma or close parenthesis, then the arguments
75/// start with that identifier; otherwise they are an expression list."
76///
77/// At the moment, I am not doing 2 token lookahead. I am also unaware of
78/// any attributes that don't work (based on my limited testing). Most
79/// attributes are very simple in practice. Until we find a bug, I don't see
80/// a pressing need to implement the 2 token lookahead.
81
Sebastian Redlab197ba2009-02-09 18:23:29 +000082AttributeList *Parser::ParseAttributes(SourceLocation *EndLoc) {
Chris Lattner04d66662007-10-09 17:33:22 +000083 assert(Tok.is(tok::kw___attribute) && "Not an attribute list!");
Reid Spencer5f016e22007-07-11 17:01:13 +000084
85 AttributeList *CurrAttr = 0;
86
Chris Lattner04d66662007-10-09 17:33:22 +000087 while (Tok.is(tok::kw___attribute)) {
Reid Spencer5f016e22007-07-11 17:01:13 +000088 ConsumeToken();
89 if (ExpectAndConsume(tok::l_paren, diag::err_expected_lparen_after,
90 "attribute")) {
91 SkipUntil(tok::r_paren, true); // skip until ) or ;
92 return CurrAttr;
93 }
94 if (ExpectAndConsume(tok::l_paren, diag::err_expected_lparen_after, "(")) {
95 SkipUntil(tok::r_paren, true); // skip until ) or ;
96 return CurrAttr;
97 }
98 // Parse the attribute-list. e.g. __attribute__(( weak, alias("__f") ))
Chris Lattner04d66662007-10-09 17:33:22 +000099 while (Tok.is(tok::identifier) || isDeclarationSpecifier() ||
100 Tok.is(tok::comma)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000101
Chris Lattner04d66662007-10-09 17:33:22 +0000102 if (Tok.is(tok::comma)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000103 // allows for empty/non-empty attributes. ((__vector_size__(16),,,,))
104 ConsumeToken();
105 continue;
106 }
107 // we have an identifier or declaration specifier (const, int, etc.)
108 IdentifierInfo *AttrName = Tok.getIdentifierInfo();
109 SourceLocation AttrNameLoc = ConsumeToken();
110
111 // check if we have a "paramterized" attribute
Chris Lattner04d66662007-10-09 17:33:22 +0000112 if (Tok.is(tok::l_paren)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000113 ConsumeParen(); // ignore the left paren loc for now
114
Chris Lattner04d66662007-10-09 17:33:22 +0000115 if (Tok.is(tok::identifier)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000116 IdentifierInfo *ParmName = Tok.getIdentifierInfo();
117 SourceLocation ParmLoc = ConsumeToken();
118
Chris Lattner04d66662007-10-09 17:33:22 +0000119 if (Tok.is(tok::r_paren)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000120 // __attribute__(( mode(byte) ))
121 ConsumeParen(); // ignore the right paren loc for now
122 CurrAttr = new AttributeList(AttrName, AttrNameLoc,
123 ParmName, ParmLoc, 0, 0, CurrAttr);
Chris Lattner04d66662007-10-09 17:33:22 +0000124 } else if (Tok.is(tok::comma)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000125 ConsumeToken();
126 // __attribute__(( format(printf, 1, 2) ))
Sebastian Redla55e52c2008-11-25 22:21:31 +0000127 ExprVector ArgExprs(Actions);
Reid Spencer5f016e22007-07-11 17:01:13 +0000128 bool ArgExprsOk = true;
129
130 // now parse the non-empty comma separated list of expressions
131 while (1) {
Sebastian Redl2f7ece72008-12-11 21:36:32 +0000132 OwningExprResult ArgExpr(ParseAssignmentExpression());
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000133 if (ArgExpr.isInvalid()) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000134 ArgExprsOk = false;
135 SkipUntil(tok::r_paren);
136 break;
137 } else {
Sebastian Redleffa8d12008-12-10 00:02:53 +0000138 ArgExprs.push_back(ArgExpr.release());
Reid Spencer5f016e22007-07-11 17:01:13 +0000139 }
Chris Lattner04d66662007-10-09 17:33:22 +0000140 if (Tok.isNot(tok::comma))
Reid Spencer5f016e22007-07-11 17:01:13 +0000141 break;
142 ConsumeToken(); // Eat the comma, move to the next argument
143 }
Chris Lattner04d66662007-10-09 17:33:22 +0000144 if (ArgExprsOk && Tok.is(tok::r_paren)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000145 ConsumeParen(); // ignore the right paren loc for now
146 CurrAttr = new AttributeList(AttrName, AttrNameLoc, ParmName,
Sebastian Redla55e52c2008-11-25 22:21:31 +0000147 ParmLoc, ArgExprs.take(), ArgExprs.size(), CurrAttr);
Reid Spencer5f016e22007-07-11 17:01:13 +0000148 }
149 }
150 } else { // not an identifier
151 // parse a possibly empty comma separated list of expressions
Chris Lattner04d66662007-10-09 17:33:22 +0000152 if (Tok.is(tok::r_paren)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000153 // __attribute__(( nonnull() ))
154 ConsumeParen(); // ignore the right paren loc for now
155 CurrAttr = new AttributeList(AttrName, AttrNameLoc,
156 0, SourceLocation(), 0, 0, CurrAttr);
157 } else {
158 // __attribute__(( aligned(16) ))
Sebastian Redla55e52c2008-11-25 22:21:31 +0000159 ExprVector ArgExprs(Actions);
Reid Spencer5f016e22007-07-11 17:01:13 +0000160 bool ArgExprsOk = true;
161
162 // now parse the list of expressions
163 while (1) {
Sebastian Redl2f7ece72008-12-11 21:36:32 +0000164 OwningExprResult ArgExpr(ParseAssignmentExpression());
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000165 if (ArgExpr.isInvalid()) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000166 ArgExprsOk = false;
167 SkipUntil(tok::r_paren);
168 break;
169 } else {
Sebastian Redleffa8d12008-12-10 00:02:53 +0000170 ArgExprs.push_back(ArgExpr.release());
Reid Spencer5f016e22007-07-11 17:01:13 +0000171 }
Chris Lattner04d66662007-10-09 17:33:22 +0000172 if (Tok.isNot(tok::comma))
Reid Spencer5f016e22007-07-11 17:01:13 +0000173 break;
174 ConsumeToken(); // Eat the comma, move to the next argument
175 }
176 // Match the ')'.
Chris Lattner04d66662007-10-09 17:33:22 +0000177 if (ArgExprsOk && Tok.is(tok::r_paren)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000178 ConsumeParen(); // ignore the right paren loc for now
Sebastian Redla55e52c2008-11-25 22:21:31 +0000179 CurrAttr = new AttributeList(AttrName, AttrNameLoc, 0,
180 SourceLocation(), ArgExprs.take(), ArgExprs.size(),
Reid Spencer5f016e22007-07-11 17:01:13 +0000181 CurrAttr);
182 }
183 }
184 }
185 } else {
186 CurrAttr = new AttributeList(AttrName, AttrNameLoc,
187 0, SourceLocation(), 0, 0, CurrAttr);
188 }
189 }
190 if (ExpectAndConsume(tok::r_paren, diag::err_expected_rparen))
Reid Spencer5f016e22007-07-11 17:01:13 +0000191 SkipUntil(tok::r_paren, false);
Sebastian Redlab197ba2009-02-09 18:23:29 +0000192 SourceLocation Loc = Tok.getLocation();;
193 if (ExpectAndConsume(tok::r_paren, diag::err_expected_rparen)) {
194 SkipUntil(tok::r_paren, false);
195 }
196 if (EndLoc)
197 *EndLoc = Loc;
Reid Spencer5f016e22007-07-11 17:01:13 +0000198 }
199 return CurrAttr;
200}
201
Steve Narofff59e17e2008-12-24 20:59:21 +0000202/// FuzzyParseMicrosoftDeclSpec. When -fms-extensions is enabled, this
203/// routine is called to skip/ignore tokens that comprise the MS declspec.
204void Parser::FuzzyParseMicrosoftDeclSpec() {
205 assert(Tok.is(tok::kw___declspec) && "Not a declspec!");
206 ConsumeToken();
207 if (Tok.is(tok::l_paren)) {
208 unsigned short savedParenCount = ParenCount;
209 do {
210 ConsumeAnyToken();
211 } while (ParenCount > savedParenCount && Tok.isNot(tok::eof));
212 }
213 return;
214}
215
Reid Spencer5f016e22007-07-11 17:01:13 +0000216/// ParseDeclaration - Parse a full 'declaration', which consists of
217/// declaration-specifiers, some number of declarators, and a semicolon.
Chris Lattner97144fc2009-04-02 04:16:50 +0000218/// 'Context' should be a Declarator::TheContext value. This returns the
219/// location of the semicolon in DeclEnd.
Chris Lattner8f08cb72007-08-25 06:57:03 +0000220///
221/// declaration: [C99 6.7]
222/// block-declaration ->
223/// simple-declaration
224/// others [FIXME]
Douglas Gregoradcac882008-12-01 23:54:00 +0000225/// [C++] template-declaration
Chris Lattner8f08cb72007-08-25 06:57:03 +0000226/// [C++] namespace-definition
Douglas Gregorf780abc2008-12-30 03:27:21 +0000227/// [C++] using-directive
228/// [C++] using-declaration [TODO]
Sebastian Redl50de12f2009-03-24 22:27:57 +0000229/// [C++0x] static_assert-declaration
Chris Lattner8f08cb72007-08-25 06:57:03 +0000230/// others... [FIXME]
231///
Chris Lattner97144fc2009-04-02 04:16:50 +0000232Parser::DeclGroupPtrTy Parser::ParseDeclaration(unsigned Context,
233 SourceLocation &DeclEnd) {
Chris Lattner682bf922009-03-29 16:50:03 +0000234 DeclPtrTy SingleDecl;
Chris Lattner8f08cb72007-08-25 06:57:03 +0000235 switch (Tok.getKind()) {
Douglas Gregoradcac882008-12-01 23:54:00 +0000236 case tok::kw_export:
237 case tok::kw_template:
Chris Lattner97144fc2009-04-02 04:16:50 +0000238 SingleDecl = ParseTemplateDeclarationOrSpecialization(Context, DeclEnd);
Chris Lattner682bf922009-03-29 16:50:03 +0000239 break;
Chris Lattner8f08cb72007-08-25 06:57:03 +0000240 case tok::kw_namespace:
Chris Lattner97144fc2009-04-02 04:16:50 +0000241 SingleDecl = ParseNamespace(Context, DeclEnd);
Chris Lattner682bf922009-03-29 16:50:03 +0000242 break;
Douglas Gregorf780abc2008-12-30 03:27:21 +0000243 case tok::kw_using:
Chris Lattner97144fc2009-04-02 04:16:50 +0000244 SingleDecl = ParseUsingDirectiveOrDeclaration(Context, DeclEnd);
Chris Lattner682bf922009-03-29 16:50:03 +0000245 break;
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000246 case tok::kw_static_assert:
Chris Lattner97144fc2009-04-02 04:16:50 +0000247 SingleDecl = ParseStaticAssertDeclaration(DeclEnd);
Chris Lattner682bf922009-03-29 16:50:03 +0000248 break;
Chris Lattner8f08cb72007-08-25 06:57:03 +0000249 default:
Chris Lattner97144fc2009-04-02 04:16:50 +0000250 return ParseSimpleDeclaration(Context, DeclEnd);
Chris Lattner8f08cb72007-08-25 06:57:03 +0000251 }
Chris Lattner682bf922009-03-29 16:50:03 +0000252
253 // This routine returns a DeclGroup, if the thing we parsed only contains a
254 // single decl, convert it now.
255 return Actions.ConvertDeclToDeclGroup(SingleDecl);
Chris Lattner8f08cb72007-08-25 06:57:03 +0000256}
257
258/// simple-declaration: [C99 6.7: declaration] [C++ 7p1: dcl.dcl]
259/// declaration-specifiers init-declarator-list[opt] ';'
260///[C90/C++]init-declarator-list ';' [TODO]
261/// [OMP] threadprivate-directive [TODO]
Chris Lattnercd147752009-03-29 17:27:48 +0000262///
263/// If RequireSemi is false, this does not check for a ';' at the end of the
264/// declaration.
265Parser::DeclGroupPtrTy Parser::ParseSimpleDeclaration(unsigned Context,
Chris Lattner97144fc2009-04-02 04:16:50 +0000266 SourceLocation &DeclEnd,
Chris Lattnercd147752009-03-29 17:27:48 +0000267 bool RequireSemi) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000268 // Parse the common declaration-specifiers piece.
269 DeclSpec DS;
270 ParseDeclarationSpecifiers(DS);
271
272 // C99 6.7.2.3p6: Handle "struct-or-union identifier;", "enum { X };"
273 // declaration-specifiers init-declarator-list[opt] ';'
Chris Lattner04d66662007-10-09 17:33:22 +0000274 if (Tok.is(tok::semi)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000275 ConsumeToken();
Chris Lattner682bf922009-03-29 16:50:03 +0000276 DeclPtrTy TheDecl = Actions.ParsedFreeStandingDeclSpec(CurScope, DS);
277 return Actions.ConvertDeclToDeclGroup(TheDecl);
Reid Spencer5f016e22007-07-11 17:01:13 +0000278 }
279
280 Declarator DeclaratorInfo(DS, (Declarator::TheContext)Context);
281 ParseDeclarator(DeclaratorInfo);
282
Chris Lattner23c4b182009-03-29 17:18:04 +0000283 DeclGroupPtrTy DG =
284 ParseInitDeclaratorListAfterFirstDeclarator(DeclaratorInfo);
Chris Lattnercd147752009-03-29 17:27:48 +0000285
Chris Lattner97144fc2009-04-02 04:16:50 +0000286 DeclEnd = Tok.getLocation();
287
Chris Lattnercd147752009-03-29 17:27:48 +0000288 // If the client wants to check what comes after the declaration, just return
289 // immediately without checking anything!
290 if (!RequireSemi) return DG;
Chris Lattner23c4b182009-03-29 17:18:04 +0000291
292 if (Tok.is(tok::semi)) {
293 ConsumeToken();
Chris Lattner23c4b182009-03-29 17:18:04 +0000294 return DG;
295 }
296
Chris Lattner23c4b182009-03-29 17:18:04 +0000297 Diag(Tok, diag::err_expected_semi_declation);
298 // Skip to end of block or statement
299 SkipUntil(tok::r_brace, true, true);
300 if (Tok.is(tok::semi))
301 ConsumeToken();
302 return DG;
Reid Spencer5f016e22007-07-11 17:01:13 +0000303}
304
Chris Lattner8f08cb72007-08-25 06:57:03 +0000305
Reid Spencer5f016e22007-07-11 17:01:13 +0000306/// ParseInitDeclaratorListAfterFirstDeclarator - Parse 'declaration' after
307/// parsing 'declaration-specifiers declarator'. This method is split out this
308/// way to handle the ambiguity between top-level function-definitions and
309/// declarations.
310///
Reid Spencer5f016e22007-07-11 17:01:13 +0000311/// init-declarator-list: [C99 6.7]
312/// init-declarator
313/// init-declarator-list ',' init-declarator
314/// init-declarator: [C99 6.7]
315/// declarator
316/// declarator '=' initializer
317/// [GNU] declarator simple-asm-expr[opt] attributes[opt]
318/// [GNU] declarator simple-asm-expr[opt] attributes[opt] '=' initializer
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +0000319/// [C++] declarator initializer[opt]
320///
321/// [C++] initializer:
322/// [C++] '=' initializer-clause
323/// [C++] '(' expression-list ')'
Sebastian Redl50de12f2009-03-24 22:27:57 +0000324/// [C++0x] '=' 'default' [TODO]
325/// [C++0x] '=' 'delete'
326///
327/// According to the standard grammar, =default and =delete are function
328/// definitions, but that definitely doesn't fit with the parser here.
Reid Spencer5f016e22007-07-11 17:01:13 +0000329///
Chris Lattner682bf922009-03-29 16:50:03 +0000330Parser::DeclGroupPtrTy Parser::
Reid Spencer5f016e22007-07-11 17:01:13 +0000331ParseInitDeclaratorListAfterFirstDeclarator(Declarator &D) {
Chris Lattner682bf922009-03-29 16:50:03 +0000332 // Declarators may be grouped together ("int X, *Y, Z();"). Remember the decls
333 // that we parse together here.
334 llvm::SmallVector<DeclPtrTy, 8> DeclsInGroup;
Reid Spencer5f016e22007-07-11 17:01:13 +0000335
336 // At this point, we know that it is not a function definition. Parse the
337 // rest of the init-declarator-list.
338 while (1) {
339 // If a simple-asm-expr is present, parse it.
Daniel Dunbara80f8742008-08-05 01:35:17 +0000340 if (Tok.is(tok::kw_asm)) {
Sebastian Redlab197ba2009-02-09 18:23:29 +0000341 SourceLocation Loc;
342 OwningExprResult AsmLabel(ParseSimpleAsm(&Loc));
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000343 if (AsmLabel.isInvalid()) {
Chris Lattner23c4b182009-03-29 17:18:04 +0000344 SkipUntil(tok::semi, true, true);
Chris Lattner682bf922009-03-29 16:50:03 +0000345 return DeclGroupPtrTy();
Daniel Dunbara80f8742008-08-05 01:35:17 +0000346 }
Sebastian Redlab197ba2009-02-09 18:23:29 +0000347
Sebastian Redleffa8d12008-12-10 00:02:53 +0000348 D.setAsmLabel(AsmLabel.release());
Sebastian Redlab197ba2009-02-09 18:23:29 +0000349 D.SetRangeEnd(Loc);
Daniel Dunbara80f8742008-08-05 01:35:17 +0000350 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000351
352 // If attributes are present, parse them.
Sebastian Redlab197ba2009-02-09 18:23:29 +0000353 if (Tok.is(tok::kw___attribute)) {
354 SourceLocation Loc;
355 AttributeList *AttrList = ParseAttributes(&Loc);
356 D.AddAttributes(AttrList, Loc);
357 }
Steve Naroffbb204692007-09-12 14:07:44 +0000358
359 // Inform the current actions module that we just parsed this declarator.
Chris Lattner682bf922009-03-29 16:50:03 +0000360 DeclPtrTy ThisDecl = Actions.ActOnDeclarator(CurScope, D);
361 DeclsInGroup.push_back(ThisDecl);
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000362
Reid Spencer5f016e22007-07-11 17:01:13 +0000363 // Parse declarator '=' initializer.
Chris Lattner04d66662007-10-09 17:33:22 +0000364 if (Tok.is(tok::equal)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000365 ConsumeToken();
Sebastian Redl50de12f2009-03-24 22:27:57 +0000366 if (getLang().CPlusPlus0x && Tok.is(tok::kw_delete)) {
367 SourceLocation DelLoc = ConsumeToken();
Chris Lattner682bf922009-03-29 16:50:03 +0000368 Actions.SetDeclDeleted(ThisDecl, DelLoc);
Sebastian Redl50de12f2009-03-24 22:27:57 +0000369 } else {
370 OwningExprResult Init(ParseInitializer());
371 if (Init.isInvalid()) {
Chris Lattner23c4b182009-03-29 17:18:04 +0000372 SkipUntil(tok::semi, true, true);
Chris Lattner682bf922009-03-29 16:50:03 +0000373 return DeclGroupPtrTy();
Sebastian Redl50de12f2009-03-24 22:27:57 +0000374 }
Chris Lattner682bf922009-03-29 16:50:03 +0000375 Actions.AddInitializerToDecl(ThisDecl, move(Init));
Reid Spencer5f016e22007-07-11 17:01:13 +0000376 }
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +0000377 } else if (Tok.is(tok::l_paren)) {
378 // Parse C++ direct initializer: '(' expression-list ')'
379 SourceLocation LParenLoc = ConsumeParen();
Sebastian Redla55e52c2008-11-25 22:21:31 +0000380 ExprVector Exprs(Actions);
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +0000381 CommaLocsTy CommaLocs;
382
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +0000383 if (ParseExpressionList(Exprs, CommaLocs)) {
384 SkipUntil(tok::r_paren);
Chris Lattner8129edb2009-04-12 22:23:27 +0000385 } else {
386 // Match the ')'.
387 SourceLocation RParenLoc = MatchRHSPunctuation(tok::r_paren, LParenLoc);
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +0000388
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +0000389 assert(!Exprs.empty() && Exprs.size()-1 == CommaLocs.size() &&
390 "Unexpected number of commas!");
Chris Lattner682bf922009-03-29 16:50:03 +0000391 Actions.AddCXXDirectInitializerToDecl(ThisDecl, LParenLoc,
Sebastian Redlf53597f2009-03-15 17:47:39 +0000392 move_arg(Exprs),
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +0000393 &CommaLocs[0], RParenLoc);
394 }
Douglas Gregor27c8dc02008-10-29 00:13:59 +0000395 } else {
Chris Lattner682bf922009-03-29 16:50:03 +0000396 Actions.ActOnUninitializedDecl(ThisDecl);
Reid Spencer5f016e22007-07-11 17:01:13 +0000397 }
398
Reid Spencer5f016e22007-07-11 17:01:13 +0000399 // If we don't have a comma, it is either the end of the list (a ';') or an
400 // error, bail out.
Chris Lattner04d66662007-10-09 17:33:22 +0000401 if (Tok.isNot(tok::comma))
Reid Spencer5f016e22007-07-11 17:01:13 +0000402 break;
403
404 // Consume the comma.
405 ConsumeToken();
406
407 // Parse the next declarator.
408 D.clear();
Chris Lattneraab740a2008-10-20 04:57:38 +0000409
410 // Accept attributes in an init-declarator. In the first declarator in a
411 // declaration, these would be part of the declspec. In subsequent
412 // declarators, they become part of the declarator itself, so that they
413 // don't apply to declarators after *this* one. Examples:
414 // short __attribute__((common)) var; -> declspec
415 // short var __attribute__((common)); -> declarator
416 // short x, __attribute__((common)) var; -> declarator
Sebastian Redlab197ba2009-02-09 18:23:29 +0000417 if (Tok.is(tok::kw___attribute)) {
418 SourceLocation Loc;
419 AttributeList *AttrList = ParseAttributes(&Loc);
420 D.AddAttributes(AttrList, Loc);
421 }
Chris Lattneraab740a2008-10-20 04:57:38 +0000422
Reid Spencer5f016e22007-07-11 17:01:13 +0000423 ParseDeclarator(D);
424 }
425
Chris Lattner23c4b182009-03-29 17:18:04 +0000426 return Actions.FinalizeDeclaratorGroup(CurScope, &DeclsInGroup[0],
427 DeclsInGroup.size());
Reid Spencer5f016e22007-07-11 17:01:13 +0000428}
429
430/// ParseSpecifierQualifierList
431/// specifier-qualifier-list:
432/// type-specifier specifier-qualifier-list[opt]
433/// type-qualifier specifier-qualifier-list[opt]
434/// [GNU] attributes specifier-qualifier-list[opt]
435///
436void Parser::ParseSpecifierQualifierList(DeclSpec &DS) {
437 /// specifier-qualifier-list is a subset of declaration-specifiers. Just
438 /// parse declaration-specifiers and complain about extra stuff.
Reid Spencer5f016e22007-07-11 17:01:13 +0000439 ParseDeclarationSpecifiers(DS);
440
441 // Validate declspec for type-name.
442 unsigned Specs = DS.getParsedSpecifiers();
Chris Lattnerb6645dd2009-04-14 21:16:09 +0000443 if (Specs == DeclSpec::PQ_None && !DS.getNumProtocolQualifiers() &&
444 !DS.getAttributes())
Reid Spencer5f016e22007-07-11 17:01:13 +0000445 Diag(Tok, diag::err_typename_requires_specqual);
446
447 // Issue diagnostic and remove storage class if present.
448 if (Specs & DeclSpec::PQ_StorageClassSpecifier) {
449 if (DS.getStorageClassSpecLoc().isValid())
450 Diag(DS.getStorageClassSpecLoc(),diag::err_typename_invalid_storageclass);
451 else
452 Diag(DS.getThreadSpecLoc(), diag::err_typename_invalid_storageclass);
453 DS.ClearStorageClassSpecs();
454 }
455
456 // Issue diagnostic and remove function specfier if present.
457 if (Specs & DeclSpec::PQ_FunctionSpecifier) {
Douglas Gregorb48fe382008-10-31 09:07:45 +0000458 if (DS.isInlineSpecified())
459 Diag(DS.getInlineSpecLoc(), diag::err_typename_invalid_functionspec);
460 if (DS.isVirtualSpecified())
461 Diag(DS.getVirtualSpecLoc(), diag::err_typename_invalid_functionspec);
462 if (DS.isExplicitSpecified())
463 Diag(DS.getExplicitSpecLoc(), diag::err_typename_invalid_functionspec);
Reid Spencer5f016e22007-07-11 17:01:13 +0000464 DS.ClearFunctionSpecs();
465 }
466}
467
Chris Lattnerc199ab32009-04-12 20:42:31 +0000468/// isValidAfterIdentifierInDeclaratorAfterDeclSpec - Return true if the
469/// specified token is valid after the identifier in a declarator which
470/// immediately follows the declspec. For example, these things are valid:
471///
472/// int x [ 4]; // direct-declarator
473/// int x ( int y); // direct-declarator
474/// int(int x ) // direct-declarator
475/// int x ; // simple-declaration
476/// int x = 17; // init-declarator-list
477/// int x , y; // init-declarator-list
478/// int x __asm__ ("foo"); // init-declarator-list
Chris Lattnerb6645dd2009-04-14 21:16:09 +0000479/// int x : 4; // struct-declarator
Chris Lattnerc83c27a2009-04-12 22:29:43 +0000480/// int x { 5}; // C++'0x unified initializers
Chris Lattnerc199ab32009-04-12 20:42:31 +0000481///
482/// This is not, because 'x' does not immediately follow the declspec (though
483/// ')' happens to be valid anyway).
484/// int (x)
485///
486static bool isValidAfterIdentifierInDeclarator(const Token &T) {
487 return T.is(tok::l_square) || T.is(tok::l_paren) || T.is(tok::r_paren) ||
488 T.is(tok::semi) || T.is(tok::comma) || T.is(tok::equal) ||
Chris Lattnerb6645dd2009-04-14 21:16:09 +0000489 T.is(tok::kw_asm) || T.is(tok::l_brace) || T.is(tok::colon);
Chris Lattnerc199ab32009-04-12 20:42:31 +0000490}
491
Chris Lattnere40c2952009-04-14 21:34:55 +0000492
493/// ParseImplicitInt - This method is called when we have an non-typename
494/// identifier in a declspec (which normally terminates the decl spec) when
495/// the declspec has no type specifier. In this case, the declspec is either
496/// malformed or is "implicit int" (in K&R and C89).
497///
498/// This method handles diagnosing this prettily and returns false if the
499/// declspec is done being processed. If it recovers and thinks there may be
500/// other pieces of declspec after it, it returns true.
501///
Chris Lattnerf4382f52009-04-14 22:17:06 +0000502bool Parser::ParseImplicitInt(DeclSpec &DS, CXXScopeSpec *SS,
Chris Lattnere40c2952009-04-14 21:34:55 +0000503 TemplateParameterLists *TemplateParams,
504 AccessSpecifier AS) {
Chris Lattnerf4382f52009-04-14 22:17:06 +0000505 assert(Tok.is(tok::identifier) && "should have identifier");
506
Chris Lattnere40c2952009-04-14 21:34:55 +0000507 SourceLocation Loc = Tok.getLocation();
508 // If we see an identifier that is not a type name, we normally would
509 // parse it as the identifer being declared. However, when a typename
510 // is typo'd or the definition is not included, this will incorrectly
511 // parse the typename as the identifier name and fall over misparsing
512 // later parts of the diagnostic.
513 //
514 // As such, we try to do some look-ahead in cases where this would
515 // otherwise be an "implicit-int" case to see if this is invalid. For
516 // example: "static foo_t x = 4;" In this case, if we parsed foo_t as
517 // an identifier with implicit int, we'd get a parse error because the
518 // next token is obviously invalid for a type. Parse these as a case
519 // with an invalid type specifier.
520 assert(!DS.hasTypeSpecifier() && "Type specifier checked above");
521
522 // Since we know that this either implicit int (which is rare) or an
523 // error, we'd do lookahead to try to do better recovery.
524 if (isValidAfterIdentifierInDeclarator(NextToken())) {
525 // If this token is valid for implicit int, e.g. "static x = 4", then
526 // we just avoid eating the identifier, so it will be parsed as the
527 // identifier in the declarator.
528 return false;
529 }
530
531 // Otherwise, if we don't consume this token, we are going to emit an
532 // error anyway. Try to recover from various common problems. Check
533 // to see if this was a reference to a tag name without a tag specified.
534 // This is a common problem in C (saying 'foo' instead of 'struct foo').
Chris Lattnerf4382f52009-04-14 22:17:06 +0000535 //
536 // C++ doesn't need this, and isTagName doesn't take SS.
537 if (SS == 0) {
538 const char *TagName = 0;
539 tok::TokenKind TagKind = tok::unknown;
Chris Lattnere40c2952009-04-14 21:34:55 +0000540
Chris Lattnere40c2952009-04-14 21:34:55 +0000541 switch (Actions.isTagName(*Tok.getIdentifierInfo(), CurScope)) {
542 default: break;
543 case DeclSpec::TST_enum: TagName="enum" ;TagKind=tok::kw_enum ;break;
544 case DeclSpec::TST_union: TagName="union" ;TagKind=tok::kw_union ;break;
545 case DeclSpec::TST_struct:TagName="struct";TagKind=tok::kw_struct;break;
546 case DeclSpec::TST_class: TagName="class" ;TagKind=tok::kw_class ;break;
547 }
Chris Lattnere40c2952009-04-14 21:34:55 +0000548
Chris Lattnerf4382f52009-04-14 22:17:06 +0000549 if (TagName) {
550 Diag(Loc, diag::err_use_of_tag_name_without_tag)
551 << Tok.getIdentifierInfo() << TagName
552 << CodeModificationHint::CreateInsertion(Tok.getLocation(),TagName);
553
554 // Parse this as a tag as if the missing tag were present.
555 if (TagKind == tok::kw_enum)
556 ParseEnumSpecifier(Loc, DS, AS);
557 else
558 ParseClassSpecifier(TagKind, Loc, DS, TemplateParams, AS);
559 return true;
560 }
Chris Lattnere40c2952009-04-14 21:34:55 +0000561 }
562
563 // Since this is almost certainly an invalid type name, emit a
564 // diagnostic that says it, eat the token, and mark the declspec as
565 // invalid.
Chris Lattnerf4382f52009-04-14 22:17:06 +0000566 SourceRange R;
567 if (SS) R = SS->getRange();
568
569 Diag(Loc, diag::err_unknown_typename) << Tok.getIdentifierInfo() << R;
Chris Lattnere40c2952009-04-14 21:34:55 +0000570 const char *PrevSpec;
571 DS.SetTypeSpecType(DeclSpec::TST_error, Loc, PrevSpec);
572 DS.SetRangeEnd(Tok.getLocation());
573 ConsumeToken();
574
575 // TODO: Could inject an invalid typedef decl in an enclosing scope to
576 // avoid rippling error messages on subsequent uses of the same type,
577 // could be useful if #include was forgotten.
578 return false;
579}
580
Reid Spencer5f016e22007-07-11 17:01:13 +0000581/// ParseDeclarationSpecifiers
582/// declaration-specifiers: [C99 6.7]
583/// storage-class-specifier declaration-specifiers[opt]
584/// type-specifier declaration-specifiers[opt]
Reid Spencer5f016e22007-07-11 17:01:13 +0000585/// [C99] function-specifier declaration-specifiers[opt]
586/// [GNU] attributes declaration-specifiers[opt]
587///
588/// storage-class-specifier: [C99 6.7.1]
589/// 'typedef'
590/// 'extern'
591/// 'static'
592/// 'auto'
593/// 'register'
Sebastian Redl669d5d72008-11-14 23:42:31 +0000594/// [C++] 'mutable'
Reid Spencer5f016e22007-07-11 17:01:13 +0000595/// [GNU] '__thread'
Reid Spencer5f016e22007-07-11 17:01:13 +0000596/// function-specifier: [C99 6.7.4]
597/// [C99] 'inline'
Douglas Gregorb48fe382008-10-31 09:07:45 +0000598/// [C++] 'virtual'
599/// [C++] 'explicit'
Reid Spencer5f016e22007-07-11 17:01:13 +0000600///
Douglas Gregorc4b4e7b2008-12-24 02:52:09 +0000601void Parser::ParseDeclarationSpecifiers(DeclSpec &DS,
Douglas Gregor06c0fec2009-03-25 22:00:53 +0000602 TemplateParameterLists *TemplateParams,
Chris Lattnerc199ab32009-04-12 20:42:31 +0000603 AccessSpecifier AS) {
Chris Lattner81c018d2008-03-13 06:29:04 +0000604 DS.SetRangeStart(Tok.getLocation());
Reid Spencer5f016e22007-07-11 17:01:13 +0000605 while (1) {
606 int isInvalid = false;
607 const char *PrevSpec = 0;
608 SourceLocation Loc = Tok.getLocation();
Douglas Gregor12e083c2008-11-07 15:42:26 +0000609
Reid Spencer5f016e22007-07-11 17:01:13 +0000610 switch (Tok.getKind()) {
Douglas Gregor12e083c2008-11-07 15:42:26 +0000611 default:
Chris Lattnerbce61352008-07-26 00:20:22 +0000612 DoneWithDeclSpec:
Reid Spencer5f016e22007-07-11 17:01:13 +0000613 // If this is not a declaration specifier token, we're done reading decl
614 // specifiers. First verify that DeclSpec's are consistent.
Douglas Gregor9b3064b2009-04-01 22:41:11 +0000615 DS.Finish(Diags, PP);
Reid Spencer5f016e22007-07-11 17:01:13 +0000616 return;
Chris Lattner5e02c472009-01-05 00:07:25 +0000617
618 case tok::coloncolon: // ::foo::bar
619 // Annotate C++ scope specifiers. If we get one, loop.
620 if (TryAnnotateCXXScopeToken())
621 continue;
622 goto DoneWithDeclSpec;
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000623
624 case tok::annot_cxxscope: {
625 if (DS.hasTypeSpecifier())
626 goto DoneWithDeclSpec;
627
628 // We are looking for a qualified typename.
Douglas Gregor9135c722009-03-25 15:40:00 +0000629 Token Next = NextToken();
630 if (Next.is(tok::annot_template_id) &&
631 static_cast<TemplateIdAnnotation *>(Next.getAnnotationValue())
Douglas Gregorc45c2322009-03-31 00:43:58 +0000632 ->Kind == TNK_Type_template) {
Douglas Gregor9135c722009-03-25 15:40:00 +0000633 // We have a qualified template-id, e.g., N::A<int>
634 CXXScopeSpec SS;
635 ParseOptionalCXXScopeSpecifier(SS);
636 assert(Tok.is(tok::annot_template_id) &&
637 "ParseOptionalCXXScopeSpecifier not working");
638 AnnotateTemplateIdTokenAsType(&SS);
639 continue;
640 }
641
642 if (Next.isNot(tok::identifier))
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000643 goto DoneWithDeclSpec;
644
645 CXXScopeSpec SS;
Douglas Gregor35073692009-03-26 23:56:24 +0000646 SS.setScopeRep(Tok.getAnnotationValue());
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000647 SS.setRange(Tok.getAnnotationRange());
648
649 // If the next token is the name of the class type that the C++ scope
650 // denotes, followed by a '(', then this is a constructor declaration.
651 // We're done with the decl-specifiers.
Chris Lattnerf4382f52009-04-14 22:17:06 +0000652 if (Actions.isCurrentClassName(*Next.getIdentifierInfo(),
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000653 CurScope, &SS) &&
654 GetLookAheadToken(2).is(tok::l_paren))
655 goto DoneWithDeclSpec;
656
Douglas Gregorb696ea32009-02-04 17:00:24 +0000657 TypeTy *TypeRep = Actions.getTypeName(*Next.getIdentifierInfo(),
658 Next.getLocation(), CurScope, &SS);
Douglas Gregor55f6b142009-02-09 18:46:07 +0000659
Chris Lattnerf4382f52009-04-14 22:17:06 +0000660 // If the referenced identifier is not a type, then this declspec is
661 // erroneous: We already checked about that it has no type specifier, and
662 // C++ doesn't have implicit int. Diagnose it as a typo w.r.t. to the
663 // typename.
664 if (TypeRep == 0) {
665 ConsumeToken(); // Eat the scope spec so the identifier is current.
666 if (ParseImplicitInt(DS, &SS, TemplateParams, AS)) continue;
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000667 goto DoneWithDeclSpec;
Chris Lattnerf4382f52009-04-14 22:17:06 +0000668 }
Douglas Gregore4e5b052009-03-19 00:18:19 +0000669
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000670 ConsumeToken(); // The C++ scope.
671
Douglas Gregor1a51b4a2009-02-09 15:09:02 +0000672 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_typename, Loc, PrevSpec,
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000673 TypeRep);
674 if (isInvalid)
675 break;
676
677 DS.SetRangeEnd(Tok.getLocation());
678 ConsumeToken(); // The typename.
679
680 continue;
681 }
Chris Lattner80d0c892009-01-21 19:48:37 +0000682
683 case tok::annot_typename: {
Douglas Gregor31a19b62009-04-01 21:51:26 +0000684 if (Tok.getAnnotationValue())
685 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_typename, Loc, PrevSpec,
686 Tok.getAnnotationValue());
687 else
688 DS.SetTypeSpecError();
Chris Lattner80d0c892009-01-21 19:48:37 +0000689 DS.SetRangeEnd(Tok.getAnnotationEndLoc());
690 ConsumeToken(); // The typename
691
692 // Objective-C supports syntax of the form 'id<proto1,proto2>' where 'id'
693 // is a specific typedef and 'itf<proto1,proto2>' where 'itf' is an
694 // Objective-C interface. If we don't have Objective-C or a '<', this is
695 // just a normal reference to a typedef name.
696 if (!Tok.is(tok::less) || !getLang().ObjC1)
697 continue;
698
699 SourceLocation EndProtoLoc;
Chris Lattnerb28317a2009-03-28 19:18:32 +0000700 llvm::SmallVector<DeclPtrTy, 8> ProtocolDecl;
Chris Lattner80d0c892009-01-21 19:48:37 +0000701 ParseObjCProtocolReferences(ProtocolDecl, false, EndProtoLoc);
702 DS.setProtocolQualifiers(&ProtocolDecl[0], ProtocolDecl.size());
703
704 DS.SetRangeEnd(EndProtoLoc);
705 continue;
706 }
707
Chris Lattner3bd934a2008-07-26 01:18:38 +0000708 // typedef-name
709 case tok::identifier: {
Chris Lattner5e02c472009-01-05 00:07:25 +0000710 // In C++, check to see if this is a scope specifier like foo::bar::, if
711 // so handle it as such. This is important for ctor parsing.
Chris Lattner837acd02009-01-21 19:19:26 +0000712 if (getLang().CPlusPlus && TryAnnotateCXXScopeToken())
713 continue;
Chris Lattner5e02c472009-01-05 00:07:25 +0000714
Chris Lattner3bd934a2008-07-26 01:18:38 +0000715 // This identifier can only be a typedef name if we haven't already seen
716 // a type-specifier. Without this check we misparse:
717 // typedef int X; struct Y { short X; }; as 'short int'.
718 if (DS.hasTypeSpecifier())
719 goto DoneWithDeclSpec;
720
721 // It has to be available as a typedef too!
Douglas Gregorb696ea32009-02-04 17:00:24 +0000722 TypeTy *TypeRep = Actions.getTypeName(*Tok.getIdentifierInfo(),
723 Tok.getLocation(), CurScope);
Douglas Gregor55f6b142009-02-09 18:46:07 +0000724
Chris Lattnerc199ab32009-04-12 20:42:31 +0000725 // If this is not a typedef name, don't parse it as part of the declspec,
726 // it must be an implicit int or an error.
727 if (TypeRep == 0) {
Chris Lattnerf4382f52009-04-14 22:17:06 +0000728 if (ParseImplicitInt(DS, 0, TemplateParams, AS)) continue;
Chris Lattner3bd934a2008-07-26 01:18:38 +0000729 goto DoneWithDeclSpec;
Chris Lattnerc199ab32009-04-12 20:42:31 +0000730 }
Douglas Gregor55f6b142009-02-09 18:46:07 +0000731
Douglas Gregorb48fe382008-10-31 09:07:45 +0000732 // C++: If the identifier is actually the name of the class type
733 // being defined and the next token is a '(', then this is a
734 // constructor declaration. We're done with the decl-specifiers
735 // and will treat this token as an identifier.
Chris Lattnerc199ab32009-04-12 20:42:31 +0000736 if (getLang().CPlusPlus && CurScope->isClassScope() &&
Douglas Gregorb48fe382008-10-31 09:07:45 +0000737 Actions.isCurrentClassName(*Tok.getIdentifierInfo(), CurScope) &&
738 NextToken().getKind() == tok::l_paren)
739 goto DoneWithDeclSpec;
740
Douglas Gregor1a51b4a2009-02-09 15:09:02 +0000741 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_typename, Loc, PrevSpec,
Chris Lattner3bd934a2008-07-26 01:18:38 +0000742 TypeRep);
743 if (isInvalid)
744 break;
745
746 DS.SetRangeEnd(Tok.getLocation());
747 ConsumeToken(); // The identifier
748
749 // Objective-C supports syntax of the form 'id<proto1,proto2>' where 'id'
750 // is a specific typedef and 'itf<proto1,proto2>' where 'itf' is an
751 // Objective-C interface. If we don't have Objective-C or a '<', this is
752 // just a normal reference to a typedef name.
753 if (!Tok.is(tok::less) || !getLang().ObjC1)
754 continue;
755
756 SourceLocation EndProtoLoc;
Chris Lattnerb28317a2009-03-28 19:18:32 +0000757 llvm::SmallVector<DeclPtrTy, 8> ProtocolDecl;
Chris Lattnere13b9592008-07-26 04:03:38 +0000758 ParseObjCProtocolReferences(ProtocolDecl, false, EndProtoLoc);
Chris Lattnerae4da612008-07-26 01:53:50 +0000759 DS.setProtocolQualifiers(&ProtocolDecl[0], ProtocolDecl.size());
Chris Lattner3bd934a2008-07-26 01:18:38 +0000760
761 DS.SetRangeEnd(EndProtoLoc);
762
Steve Naroff4f9b9f12008-09-22 10:28:57 +0000763 // Need to support trailing type qualifiers (e.g. "id<p> const").
764 // If a type specifier follows, it will be diagnosed elsewhere.
765 continue;
Chris Lattner3bd934a2008-07-26 01:18:38 +0000766 }
Douglas Gregor39a8de12009-02-25 19:37:18 +0000767
768 // type-name
769 case tok::annot_template_id: {
770 TemplateIdAnnotation *TemplateId
771 = static_cast<TemplateIdAnnotation *>(Tok.getAnnotationValue());
Douglas Gregorc45c2322009-03-31 00:43:58 +0000772 if (TemplateId->Kind != TNK_Type_template) {
Douglas Gregor39a8de12009-02-25 19:37:18 +0000773 // This template-id does not refer to a type name, so we're
774 // done with the type-specifiers.
775 goto DoneWithDeclSpec;
776 }
777
778 // Turn the template-id annotation token into a type annotation
779 // token, then try again to parse it as a type-specifier.
Douglas Gregor31a19b62009-04-01 21:51:26 +0000780 AnnotateTemplateIdTokenAsType();
Douglas Gregor39a8de12009-02-25 19:37:18 +0000781 continue;
782 }
783
Reid Spencer5f016e22007-07-11 17:01:13 +0000784 // GNU attributes support.
785 case tok::kw___attribute:
786 DS.AddAttributes(ParseAttributes());
787 continue;
Steve Narofff59e17e2008-12-24 20:59:21 +0000788
789 // Microsoft declspec support.
790 case tok::kw___declspec:
791 if (!PP.getLangOptions().Microsoft)
792 goto DoneWithDeclSpec;
793 FuzzyParseMicrosoftDeclSpec();
794 continue;
Reid Spencer5f016e22007-07-11 17:01:13 +0000795
Steve Naroff239f0732008-12-25 14:16:32 +0000796 // Microsoft single token adornments.
Steve Naroff86bc6cf2008-12-25 14:41:26 +0000797 case tok::kw___forceinline:
798 case tok::kw___w64:
Steve Naroff239f0732008-12-25 14:16:32 +0000799 case tok::kw___cdecl:
800 case tok::kw___stdcall:
801 case tok::kw___fastcall:
802 if (!PP.getLangOptions().Microsoft)
803 goto DoneWithDeclSpec;
804 // Just ignore it.
805 break;
806
Reid Spencer5f016e22007-07-11 17:01:13 +0000807 // storage-class-specifier
808 case tok::kw_typedef:
809 isInvalid = DS.SetStorageClassSpec(DeclSpec::SCS_typedef, Loc, PrevSpec);
810 break;
811 case tok::kw_extern:
812 if (DS.isThreadSpecified())
Chris Lattner1ab3b962008-11-18 07:48:38 +0000813 Diag(Tok, diag::ext_thread_before) << "extern";
Reid Spencer5f016e22007-07-11 17:01:13 +0000814 isInvalid = DS.SetStorageClassSpec(DeclSpec::SCS_extern, Loc, PrevSpec);
815 break;
Steve Naroff8d54bf22007-12-18 00:16:02 +0000816 case tok::kw___private_extern__:
Chris Lattnerf97409f2008-04-06 06:57:35 +0000817 isInvalid = DS.SetStorageClassSpec(DeclSpec::SCS_private_extern, Loc,
818 PrevSpec);
Steve Naroff8d54bf22007-12-18 00:16:02 +0000819 break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000820 case tok::kw_static:
821 if (DS.isThreadSpecified())
Chris Lattner1ab3b962008-11-18 07:48:38 +0000822 Diag(Tok, diag::ext_thread_before) << "static";
Reid Spencer5f016e22007-07-11 17:01:13 +0000823 isInvalid = DS.SetStorageClassSpec(DeclSpec::SCS_static, Loc, PrevSpec);
824 break;
825 case tok::kw_auto:
826 isInvalid = DS.SetStorageClassSpec(DeclSpec::SCS_auto, Loc, PrevSpec);
827 break;
828 case tok::kw_register:
829 isInvalid = DS.SetStorageClassSpec(DeclSpec::SCS_register, Loc, PrevSpec);
830 break;
Sebastian Redl669d5d72008-11-14 23:42:31 +0000831 case tok::kw_mutable:
832 isInvalid = DS.SetStorageClassSpec(DeclSpec::SCS_mutable, Loc, PrevSpec);
833 break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000834 case tok::kw___thread:
835 isInvalid = DS.SetStorageClassSpecThread(Loc, PrevSpec)*2;
836 break;
Douglas Gregor12e083c2008-11-07 15:42:26 +0000837
Reid Spencer5f016e22007-07-11 17:01:13 +0000838 // function-specifier
839 case tok::kw_inline:
840 isInvalid = DS.SetFunctionSpecInline(Loc, PrevSpec);
841 break;
Douglas Gregorb48fe382008-10-31 09:07:45 +0000842 case tok::kw_virtual:
843 isInvalid = DS.SetFunctionSpecVirtual(Loc, PrevSpec);
844 break;
Douglas Gregorb48fe382008-10-31 09:07:45 +0000845 case tok::kw_explicit:
846 isInvalid = DS.SetFunctionSpecExplicit(Loc, PrevSpec);
847 break;
Chris Lattner80d0c892009-01-21 19:48:37 +0000848
849 // type-specifier
850 case tok::kw_short:
851 isInvalid = DS.SetTypeSpecWidth(DeclSpec::TSW_short, Loc, PrevSpec);
852 break;
853 case tok::kw_long:
854 if (DS.getTypeSpecWidth() != DeclSpec::TSW_long)
855 isInvalid = DS.SetTypeSpecWidth(DeclSpec::TSW_long, Loc, PrevSpec);
856 else
857 isInvalid = DS.SetTypeSpecWidth(DeclSpec::TSW_longlong, Loc, PrevSpec);
858 break;
859 case tok::kw_signed:
860 isInvalid = DS.SetTypeSpecSign(DeclSpec::TSS_signed, Loc, PrevSpec);
861 break;
862 case tok::kw_unsigned:
863 isInvalid = DS.SetTypeSpecSign(DeclSpec::TSS_unsigned, Loc, PrevSpec);
864 break;
865 case tok::kw__Complex:
866 isInvalid = DS.SetTypeSpecComplex(DeclSpec::TSC_complex, Loc, PrevSpec);
867 break;
868 case tok::kw__Imaginary:
869 isInvalid = DS.SetTypeSpecComplex(DeclSpec::TSC_imaginary, Loc, PrevSpec);
870 break;
871 case tok::kw_void:
872 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_void, Loc, PrevSpec);
873 break;
874 case tok::kw_char:
875 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_char, Loc, PrevSpec);
876 break;
877 case tok::kw_int:
878 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_int, Loc, PrevSpec);
879 break;
880 case tok::kw_float:
881 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_float, Loc, PrevSpec);
882 break;
883 case tok::kw_double:
884 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_double, Loc, PrevSpec);
885 break;
886 case tok::kw_wchar_t:
887 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_wchar, Loc, PrevSpec);
888 break;
889 case tok::kw_bool:
890 case tok::kw__Bool:
891 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_bool, Loc, PrevSpec);
892 break;
893 case tok::kw__Decimal32:
894 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_decimal32, Loc, PrevSpec);
895 break;
896 case tok::kw__Decimal64:
897 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_decimal64, Loc, PrevSpec);
898 break;
899 case tok::kw__Decimal128:
900 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_decimal128, Loc, PrevSpec);
901 break;
902
903 // class-specifier:
904 case tok::kw_class:
905 case tok::kw_struct:
Chris Lattner4c97d762009-04-12 21:49:30 +0000906 case tok::kw_union: {
907 tok::TokenKind Kind = Tok.getKind();
908 ConsumeToken();
909 ParseClassSpecifier(Kind, Loc, DS, TemplateParams, AS);
Chris Lattner80d0c892009-01-21 19:48:37 +0000910 continue;
Chris Lattner4c97d762009-04-12 21:49:30 +0000911 }
Chris Lattner80d0c892009-01-21 19:48:37 +0000912
913 // enum-specifier:
914 case tok::kw_enum:
Chris Lattner4c97d762009-04-12 21:49:30 +0000915 ConsumeToken();
916 ParseEnumSpecifier(Loc, DS, AS);
Chris Lattner80d0c892009-01-21 19:48:37 +0000917 continue;
918
919 // cv-qualifier:
920 case tok::kw_const:
921 isInvalid = DS.SetTypeQual(DeclSpec::TQ_const, Loc, PrevSpec,getLang())*2;
922 break;
923 case tok::kw_volatile:
924 isInvalid = DS.SetTypeQual(DeclSpec::TQ_volatile, Loc, PrevSpec,
925 getLang())*2;
926 break;
927 case tok::kw_restrict:
928 isInvalid = DS.SetTypeQual(DeclSpec::TQ_restrict, Loc, PrevSpec,
929 getLang())*2;
930 break;
931
Douglas Gregord57959a2009-03-27 23:10:48 +0000932 // C++ typename-specifier:
933 case tok::kw_typename:
934 if (TryAnnotateTypeOrScopeToken())
935 continue;
936 break;
937
Chris Lattner80d0c892009-01-21 19:48:37 +0000938 // GNU typeof support.
939 case tok::kw_typeof:
940 ParseTypeofSpecifier(DS);
941 continue;
942
Steve Naroffd3ded1f2008-06-05 00:02:44 +0000943 case tok::less:
Chris Lattner3bd934a2008-07-26 01:18:38 +0000944 // GCC ObjC supports types like "<SomeProtocol>" as a synonym for
Chris Lattnerbce61352008-07-26 00:20:22 +0000945 // "id<SomeProtocol>". This is hopelessly old fashioned and dangerous,
946 // but we support it.
Chris Lattner3bd934a2008-07-26 01:18:38 +0000947 if (DS.hasTypeSpecifier() || !getLang().ObjC1)
Chris Lattnerbce61352008-07-26 00:20:22 +0000948 goto DoneWithDeclSpec;
949
950 {
951 SourceLocation EndProtoLoc;
Chris Lattnerb28317a2009-03-28 19:18:32 +0000952 llvm::SmallVector<DeclPtrTy, 8> ProtocolDecl;
Chris Lattnere13b9592008-07-26 04:03:38 +0000953 ParseObjCProtocolReferences(ProtocolDecl, false, EndProtoLoc);
Chris Lattnerae4da612008-07-26 01:53:50 +0000954 DS.setProtocolQualifiers(&ProtocolDecl[0], ProtocolDecl.size());
Chris Lattner3bd934a2008-07-26 01:18:38 +0000955 DS.SetRangeEnd(EndProtoLoc);
956
Chris Lattner1ab3b962008-11-18 07:48:38 +0000957 Diag(Loc, diag::warn_objc_protocol_qualifier_missing_id)
Chris Lattner75e36062009-04-03 18:38:42 +0000958 << CodeModificationHint::CreateInsertion(Loc, "id")
Chris Lattner1ab3b962008-11-18 07:48:38 +0000959 << SourceRange(Loc, EndProtoLoc);
Steve Naroff4f9b9f12008-09-22 10:28:57 +0000960 // Need to support trailing type qualifiers (e.g. "id<p> const").
961 // If a type specifier follows, it will be diagnosed elsewhere.
962 continue;
Steve Naroffd3ded1f2008-06-05 00:02:44 +0000963 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000964 }
965 // If the specifier combination wasn't legal, issue a diagnostic.
966 if (isInvalid) {
967 assert(PrevSpec && "Method did not return previous specifier!");
Chris Lattner1ab3b962008-11-18 07:48:38 +0000968 // Pick between error or extwarn.
969 unsigned DiagID = isInvalid == 1 ? diag::err_invalid_decl_spec_combination
970 : diag::ext_duplicate_declspec;
971 Diag(Tok, DiagID) << PrevSpec;
Reid Spencer5f016e22007-07-11 17:01:13 +0000972 }
Chris Lattner81c018d2008-03-13 06:29:04 +0000973 DS.SetRangeEnd(Tok.getLocation());
Reid Spencer5f016e22007-07-11 17:01:13 +0000974 ConsumeToken();
975 }
976}
Douglas Gregoradcac882008-12-01 23:54:00 +0000977
Chris Lattner7a0ab5f2009-01-06 06:59:53 +0000978/// ParseOptionalTypeSpecifier - Try to parse a single type-specifier. We
Douglas Gregor12e083c2008-11-07 15:42:26 +0000979/// primarily follow the C++ grammar with additions for C99 and GNU,
980/// which together subsume the C grammar. Note that the C++
981/// type-specifier also includes the C type-qualifier (for const,
982/// volatile, and C99 restrict). Returns true if a type-specifier was
983/// found (and parsed), false otherwise.
984///
985/// type-specifier: [C++ 7.1.5]
986/// simple-type-specifier
987/// class-specifier
988/// enum-specifier
989/// elaborated-type-specifier [TODO]
990/// cv-qualifier
991///
992/// cv-qualifier: [C++ 7.1.5.1]
993/// 'const'
994/// 'volatile'
995/// [C99] 'restrict'
996///
997/// simple-type-specifier: [ C++ 7.1.5.2]
998/// '::'[opt] nested-name-specifier[opt] type-name [TODO]
999/// '::'[opt] nested-name-specifier 'template' template-id [TODO]
1000/// 'char'
1001/// 'wchar_t'
1002/// 'bool'
1003/// 'short'
1004/// 'int'
1005/// 'long'
1006/// 'signed'
1007/// 'unsigned'
1008/// 'float'
1009/// 'double'
1010/// 'void'
1011/// [C99] '_Bool'
1012/// [C99] '_Complex'
1013/// [C99] '_Imaginary' // Removed in TC2?
1014/// [GNU] '_Decimal32'
1015/// [GNU] '_Decimal64'
1016/// [GNU] '_Decimal128'
1017/// [GNU] typeof-specifier
1018/// [OBJC] class-name objc-protocol-refs[opt] [TODO]
1019/// [OBJC] typedef-name objc-protocol-refs[opt] [TODO]
Chris Lattner7a0ab5f2009-01-06 06:59:53 +00001020bool Parser::ParseOptionalTypeSpecifier(DeclSpec &DS, int& isInvalid,
1021 const char *&PrevSpec,
1022 TemplateParameterLists *TemplateParams){
Douglas Gregor12e083c2008-11-07 15:42:26 +00001023 SourceLocation Loc = Tok.getLocation();
1024
1025 switch (Tok.getKind()) {
Chris Lattner166a8fc2009-01-04 23:41:41 +00001026 case tok::identifier: // foo::bar
Douglas Gregord57959a2009-03-27 23:10:48 +00001027 case tok::kw_typename: // typename foo::bar
Chris Lattner166a8fc2009-01-04 23:41:41 +00001028 // Annotate typenames and C++ scope specifiers. If we get one, just
1029 // recurse to handle whatever we get.
1030 if (TryAnnotateTypeOrScopeToken())
Chris Lattner7a0ab5f2009-01-06 06:59:53 +00001031 return ParseOptionalTypeSpecifier(DS, isInvalid, PrevSpec,TemplateParams);
Chris Lattner166a8fc2009-01-04 23:41:41 +00001032 // Otherwise, not a type specifier.
1033 return false;
1034 case tok::coloncolon: // ::foo::bar
1035 if (NextToken().is(tok::kw_new) || // ::new
1036 NextToken().is(tok::kw_delete)) // ::delete
1037 return false;
1038
1039 // Annotate typenames and C++ scope specifiers. If we get one, just
1040 // recurse to handle whatever we get.
1041 if (TryAnnotateTypeOrScopeToken())
Chris Lattner7a0ab5f2009-01-06 06:59:53 +00001042 return ParseOptionalTypeSpecifier(DS, isInvalid, PrevSpec,TemplateParams);
Chris Lattner166a8fc2009-01-04 23:41:41 +00001043 // Otherwise, not a type specifier.
1044 return false;
1045
Douglas Gregor12e083c2008-11-07 15:42:26 +00001046 // simple-type-specifier:
Chris Lattnerb31757b2009-01-06 05:06:21 +00001047 case tok::annot_typename: {
Douglas Gregor31a19b62009-04-01 21:51:26 +00001048 if (Tok.getAnnotationValue())
1049 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_typename, Loc, PrevSpec,
1050 Tok.getAnnotationValue());
1051 else
1052 DS.SetTypeSpecError();
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001053 DS.SetRangeEnd(Tok.getAnnotationEndLoc());
1054 ConsumeToken(); // The typename
Douglas Gregor12e083c2008-11-07 15:42:26 +00001055
1056 // Objective-C supports syntax of the form 'id<proto1,proto2>' where 'id'
1057 // is a specific typedef and 'itf<proto1,proto2>' where 'itf' is an
1058 // Objective-C interface. If we don't have Objective-C or a '<', this is
1059 // just a normal reference to a typedef name.
1060 if (!Tok.is(tok::less) || !getLang().ObjC1)
1061 return true;
1062
1063 SourceLocation EndProtoLoc;
Chris Lattnerb28317a2009-03-28 19:18:32 +00001064 llvm::SmallVector<DeclPtrTy, 8> ProtocolDecl;
Douglas Gregor12e083c2008-11-07 15:42:26 +00001065 ParseObjCProtocolReferences(ProtocolDecl, false, EndProtoLoc);
1066 DS.setProtocolQualifiers(&ProtocolDecl[0], ProtocolDecl.size());
1067
1068 DS.SetRangeEnd(EndProtoLoc);
1069 return true;
1070 }
1071
1072 case tok::kw_short:
1073 isInvalid = DS.SetTypeSpecWidth(DeclSpec::TSW_short, Loc, PrevSpec);
1074 break;
1075 case tok::kw_long:
1076 if (DS.getTypeSpecWidth() != DeclSpec::TSW_long)
1077 isInvalid = DS.SetTypeSpecWidth(DeclSpec::TSW_long, Loc, PrevSpec);
1078 else
1079 isInvalid = DS.SetTypeSpecWidth(DeclSpec::TSW_longlong, Loc, PrevSpec);
1080 break;
1081 case tok::kw_signed:
1082 isInvalid = DS.SetTypeSpecSign(DeclSpec::TSS_signed, Loc, PrevSpec);
1083 break;
1084 case tok::kw_unsigned:
1085 isInvalid = DS.SetTypeSpecSign(DeclSpec::TSS_unsigned, Loc, PrevSpec);
1086 break;
1087 case tok::kw__Complex:
1088 isInvalid = DS.SetTypeSpecComplex(DeclSpec::TSC_complex, Loc, PrevSpec);
1089 break;
1090 case tok::kw__Imaginary:
1091 isInvalid = DS.SetTypeSpecComplex(DeclSpec::TSC_imaginary, Loc, PrevSpec);
1092 break;
1093 case tok::kw_void:
1094 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_void, Loc, PrevSpec);
1095 break;
1096 case tok::kw_char:
1097 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_char, Loc, PrevSpec);
1098 break;
1099 case tok::kw_int:
1100 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_int, Loc, PrevSpec);
1101 break;
1102 case tok::kw_float:
1103 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_float, Loc, PrevSpec);
1104 break;
1105 case tok::kw_double:
1106 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_double, Loc, PrevSpec);
1107 break;
1108 case tok::kw_wchar_t:
1109 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_wchar, Loc, PrevSpec);
1110 break;
1111 case tok::kw_bool:
1112 case tok::kw__Bool:
1113 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_bool, Loc, PrevSpec);
1114 break;
1115 case tok::kw__Decimal32:
1116 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_decimal32, Loc, PrevSpec);
1117 break;
1118 case tok::kw__Decimal64:
1119 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_decimal64, Loc, PrevSpec);
1120 break;
1121 case tok::kw__Decimal128:
1122 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_decimal128, Loc, PrevSpec);
1123 break;
1124
1125 // class-specifier:
1126 case tok::kw_class:
1127 case tok::kw_struct:
Chris Lattner4c97d762009-04-12 21:49:30 +00001128 case tok::kw_union: {
1129 tok::TokenKind Kind = Tok.getKind();
1130 ConsumeToken();
1131 ParseClassSpecifier(Kind, Loc, DS, TemplateParams);
Douglas Gregor12e083c2008-11-07 15:42:26 +00001132 return true;
Chris Lattner4c97d762009-04-12 21:49:30 +00001133 }
Douglas Gregor12e083c2008-11-07 15:42:26 +00001134
1135 // enum-specifier:
1136 case tok::kw_enum:
Chris Lattner4c97d762009-04-12 21:49:30 +00001137 ConsumeToken();
1138 ParseEnumSpecifier(Loc, DS);
Douglas Gregor12e083c2008-11-07 15:42:26 +00001139 return true;
1140
1141 // cv-qualifier:
1142 case tok::kw_const:
1143 isInvalid = DS.SetTypeQual(DeclSpec::TQ_const , Loc, PrevSpec,
1144 getLang())*2;
1145 break;
1146 case tok::kw_volatile:
1147 isInvalid = DS.SetTypeQual(DeclSpec::TQ_volatile, Loc, PrevSpec,
1148 getLang())*2;
1149 break;
1150 case tok::kw_restrict:
1151 isInvalid = DS.SetTypeQual(DeclSpec::TQ_restrict, Loc, PrevSpec,
1152 getLang())*2;
1153 break;
1154
1155 // GNU typeof support.
1156 case tok::kw_typeof:
1157 ParseTypeofSpecifier(DS);
1158 return true;
1159
Steve Naroff239f0732008-12-25 14:16:32 +00001160 case tok::kw___cdecl:
1161 case tok::kw___stdcall:
1162 case tok::kw___fastcall:
Chris Lattner837acd02009-01-21 19:19:26 +00001163 if (!PP.getLangOptions().Microsoft) return false;
1164 ConsumeToken();
1165 return true;
Steve Naroff239f0732008-12-25 14:16:32 +00001166
Douglas Gregor12e083c2008-11-07 15:42:26 +00001167 default:
1168 // Not a type-specifier; do nothing.
1169 return false;
1170 }
1171
1172 // If the specifier combination wasn't legal, issue a diagnostic.
1173 if (isInvalid) {
1174 assert(PrevSpec && "Method did not return previous specifier!");
Chris Lattner1ab3b962008-11-18 07:48:38 +00001175 // Pick between error or extwarn.
1176 unsigned DiagID = isInvalid == 1 ? diag::err_invalid_decl_spec_combination
1177 : diag::ext_duplicate_declspec;
1178 Diag(Tok, DiagID) << PrevSpec;
Douglas Gregor12e083c2008-11-07 15:42:26 +00001179 }
1180 DS.SetRangeEnd(Tok.getLocation());
1181 ConsumeToken(); // whatever we parsed above.
1182 return true;
1183}
Reid Spencer5f016e22007-07-11 17:01:13 +00001184
Chris Lattnercd4b83c2007-10-29 04:42:53 +00001185/// ParseStructDeclaration - Parse a struct declaration without the terminating
1186/// semicolon.
1187///
Reid Spencer5f016e22007-07-11 17:01:13 +00001188/// struct-declaration:
Chris Lattnercd4b83c2007-10-29 04:42:53 +00001189/// specifier-qualifier-list struct-declarator-list
Reid Spencer5f016e22007-07-11 17:01:13 +00001190/// [GNU] __extension__ struct-declaration
Chris Lattnercd4b83c2007-10-29 04:42:53 +00001191/// [GNU] specifier-qualifier-list
Reid Spencer5f016e22007-07-11 17:01:13 +00001192/// struct-declarator-list:
1193/// struct-declarator
1194/// struct-declarator-list ',' struct-declarator
1195/// [GNU] struct-declarator-list ',' attributes[opt] struct-declarator
1196/// struct-declarator:
1197/// declarator
1198/// [GNU] declarator attributes[opt]
1199/// declarator[opt] ':' constant-expression
1200/// [GNU] declarator[opt] ':' constant-expression attributes[opt]
1201///
Chris Lattnere1359422008-04-10 06:46:29 +00001202void Parser::
1203ParseStructDeclaration(DeclSpec &DS,
1204 llvm::SmallVectorImpl<FieldDeclarator> &Fields) {
Chris Lattnerc46d1a12008-10-20 06:45:43 +00001205 if (Tok.is(tok::kw___extension__)) {
1206 // __extension__ silences extension warnings in the subexpression.
1207 ExtensionRAIIObject O(Diags); // Use RAII to do this.
Steve Naroff28a7ca82007-08-20 22:28:22 +00001208 ConsumeToken();
Chris Lattnerc46d1a12008-10-20 06:45:43 +00001209 return ParseStructDeclaration(DS, Fields);
1210 }
Steve Naroff28a7ca82007-08-20 22:28:22 +00001211
1212 // Parse the common specifier-qualifiers-list piece.
Chris Lattner60b1e3e2008-04-10 06:15:14 +00001213 SourceLocation DSStart = Tok.getLocation();
Steve Naroff28a7ca82007-08-20 22:28:22 +00001214 ParseSpecifierQualifierList(DS);
Steve Naroff28a7ca82007-08-20 22:28:22 +00001215
Douglas Gregor4920f1f2009-01-12 22:49:06 +00001216 // If there are no declarators, this is a free-standing declaration
1217 // specifier. Let the actions module cope with it.
Chris Lattner04d66662007-10-09 17:33:22 +00001218 if (Tok.is(tok::semi)) {
Douglas Gregor4920f1f2009-01-12 22:49:06 +00001219 Actions.ParsedFreeStandingDeclSpec(CurScope, DS);
Steve Naroff28a7ca82007-08-20 22:28:22 +00001220 return;
1221 }
1222
1223 // Read struct-declarators until we find the semicolon.
Chris Lattnerebe457c2008-04-10 16:37:40 +00001224 Fields.push_back(FieldDeclarator(DS));
Steve Naroff28a7ca82007-08-20 22:28:22 +00001225 while (1) {
Chris Lattnere1359422008-04-10 06:46:29 +00001226 FieldDeclarator &DeclaratorInfo = Fields.back();
1227
Steve Naroff28a7ca82007-08-20 22:28:22 +00001228 /// struct-declarator: declarator
1229 /// struct-declarator: declarator[opt] ':' constant-expression
Chris Lattner04d66662007-10-09 17:33:22 +00001230 if (Tok.isNot(tok::colon))
Chris Lattnere1359422008-04-10 06:46:29 +00001231 ParseDeclarator(DeclaratorInfo.D);
Steve Naroff28a7ca82007-08-20 22:28:22 +00001232
Chris Lattner04d66662007-10-09 17:33:22 +00001233 if (Tok.is(tok::colon)) {
Steve Naroff28a7ca82007-08-20 22:28:22 +00001234 ConsumeToken();
Sebastian Redl2f7ece72008-12-11 21:36:32 +00001235 OwningExprResult Res(ParseConstantExpression());
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001236 if (Res.isInvalid())
Steve Naroff28a7ca82007-08-20 22:28:22 +00001237 SkipUntil(tok::semi, true, true);
Chris Lattner60b1e3e2008-04-10 06:15:14 +00001238 else
Sebastian Redleffa8d12008-12-10 00:02:53 +00001239 DeclaratorInfo.BitfieldSize = Res.release();
Steve Naroff28a7ca82007-08-20 22:28:22 +00001240 }
Sebastian Redlab197ba2009-02-09 18:23:29 +00001241
Steve Naroff28a7ca82007-08-20 22:28:22 +00001242 // If attributes exist after the declarator, parse them.
Sebastian Redlab197ba2009-02-09 18:23:29 +00001243 if (Tok.is(tok::kw___attribute)) {
1244 SourceLocation Loc;
1245 AttributeList *AttrList = ParseAttributes(&Loc);
1246 DeclaratorInfo.D.AddAttributes(AttrList, Loc);
1247 }
1248
Steve Naroff28a7ca82007-08-20 22:28:22 +00001249 // If we don't have a comma, it is either the end of the list (a ';')
1250 // or an error, bail out.
Chris Lattner04d66662007-10-09 17:33:22 +00001251 if (Tok.isNot(tok::comma))
Chris Lattnercd4b83c2007-10-29 04:42:53 +00001252 return;
Sebastian Redlab197ba2009-02-09 18:23:29 +00001253
Steve Naroff28a7ca82007-08-20 22:28:22 +00001254 // Consume the comma.
1255 ConsumeToken();
Sebastian Redlab197ba2009-02-09 18:23:29 +00001256
Steve Naroff28a7ca82007-08-20 22:28:22 +00001257 // Parse the next declarator.
Chris Lattnerebe457c2008-04-10 16:37:40 +00001258 Fields.push_back(FieldDeclarator(DS));
Sebastian Redlab197ba2009-02-09 18:23:29 +00001259
Steve Naroff28a7ca82007-08-20 22:28:22 +00001260 // Attributes are only allowed on the second declarator.
Sebastian Redlab197ba2009-02-09 18:23:29 +00001261 if (Tok.is(tok::kw___attribute)) {
1262 SourceLocation Loc;
1263 AttributeList *AttrList = ParseAttributes(&Loc);
1264 Fields.back().D.AddAttributes(AttrList, Loc);
1265 }
Steve Naroff28a7ca82007-08-20 22:28:22 +00001266 }
Steve Naroff28a7ca82007-08-20 22:28:22 +00001267}
1268
1269/// ParseStructUnionBody
1270/// struct-contents:
1271/// struct-declaration-list
1272/// [EXT] empty
1273/// [GNU] "struct-declaration-list" without terminatoring ';'
1274/// struct-declaration-list:
1275/// struct-declaration
1276/// struct-declaration-list struct-declaration
Chris Lattner5a6ddbf2008-06-21 19:39:06 +00001277/// [OBC] '@' 'defs' '(' class-name ')'
Steve Naroff28a7ca82007-08-20 22:28:22 +00001278///
Reid Spencer5f016e22007-07-11 17:01:13 +00001279void Parser::ParseStructUnionBody(SourceLocation RecordLoc,
Chris Lattnerb28317a2009-03-28 19:18:32 +00001280 unsigned TagType, DeclPtrTy TagDecl) {
Chris Lattner49f28ca2009-03-05 08:00:35 +00001281 PrettyStackTraceActionsDecl CrashInfo(TagDecl, RecordLoc, Actions,
1282 PP.getSourceManager(),
1283 "parsing struct/union body");
Chris Lattner27b7f102009-03-05 02:25:03 +00001284
Reid Spencer5f016e22007-07-11 17:01:13 +00001285 SourceLocation LBraceLoc = ConsumeBrace();
1286
Douglas Gregor3218c4b2009-01-09 22:42:13 +00001287 ParseScope StructScope(this, Scope::ClassScope|Scope::DeclScope);
Douglas Gregor72de6672009-01-08 20:45:30 +00001288 Actions.ActOnTagStartDefinition(CurScope, TagDecl);
1289
Reid Spencer5f016e22007-07-11 17:01:13 +00001290 // Empty structs are an extension in C (C99 6.7.2.1p7), but are allowed in
1291 // C++.
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001292 if (Tok.is(tok::r_brace) && !getLang().CPlusPlus)
Chris Lattner1ab3b962008-11-18 07:48:38 +00001293 Diag(Tok, diag::ext_empty_struct_union_enum)
1294 << DeclSpec::getSpecifierName((DeclSpec::TST)TagType);
Reid Spencer5f016e22007-07-11 17:01:13 +00001295
Chris Lattnerb28317a2009-03-28 19:18:32 +00001296 llvm::SmallVector<DeclPtrTy, 32> FieldDecls;
Chris Lattnere1359422008-04-10 06:46:29 +00001297 llvm::SmallVector<FieldDeclarator, 8> FieldDeclarators;
1298
Reid Spencer5f016e22007-07-11 17:01:13 +00001299 // While we still have something to read, read the declarations in the struct.
Chris Lattner04d66662007-10-09 17:33:22 +00001300 while (Tok.isNot(tok::r_brace) && Tok.isNot(tok::eof)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001301 // Each iteration of this loop reads one struct-declaration.
1302
1303 // Check for extraneous top-level semicolon.
Chris Lattner04d66662007-10-09 17:33:22 +00001304 if (Tok.is(tok::semi)) {
Douglas Gregor9b3064b2009-04-01 22:41:11 +00001305 Diag(Tok, diag::ext_extra_struct_semi)
1306 << CodeModificationHint::CreateRemoval(SourceRange(Tok.getLocation()));
Reid Spencer5f016e22007-07-11 17:01:13 +00001307 ConsumeToken();
1308 continue;
1309 }
Chris Lattnere1359422008-04-10 06:46:29 +00001310
1311 // Parse all the comma separated declarators.
1312 DeclSpec DS;
1313 FieldDeclarators.clear();
Chris Lattner5a6ddbf2008-06-21 19:39:06 +00001314 if (!Tok.is(tok::at)) {
1315 ParseStructDeclaration(DS, FieldDeclarators);
1316
1317 // Convert them all to fields.
1318 for (unsigned i = 0, e = FieldDeclarators.size(); i != e; ++i) {
1319 FieldDeclarator &FD = FieldDeclarators[i];
1320 // Install the declarator into the current TagDecl.
Chris Lattnerb28317a2009-03-28 19:18:32 +00001321 DeclPtrTy Field = Actions.ActOnField(CurScope, TagDecl,
1322 DS.getSourceRange().getBegin(),
1323 FD.D, FD.BitfieldSize);
Chris Lattner5a6ddbf2008-06-21 19:39:06 +00001324 FieldDecls.push_back(Field);
1325 }
1326 } else { // Handle @defs
1327 ConsumeToken();
1328 if (!Tok.isObjCAtKeyword(tok::objc_defs)) {
1329 Diag(Tok, diag::err_unexpected_at);
1330 SkipUntil(tok::semi, true, true);
1331 continue;
1332 }
1333 ConsumeToken();
1334 ExpectAndConsume(tok::l_paren, diag::err_expected_lparen);
1335 if (!Tok.is(tok::identifier)) {
1336 Diag(Tok, diag::err_expected_ident);
1337 SkipUntil(tok::semi, true, true);
1338 continue;
1339 }
Chris Lattnerb28317a2009-03-28 19:18:32 +00001340 llvm::SmallVector<DeclPtrTy, 16> Fields;
Douglas Gregor44b43212008-12-11 16:49:14 +00001341 Actions.ActOnDefs(CurScope, TagDecl, Tok.getLocation(),
1342 Tok.getIdentifierInfo(), Fields);
Chris Lattner5a6ddbf2008-06-21 19:39:06 +00001343 FieldDecls.insert(FieldDecls.end(), Fields.begin(), Fields.end());
1344 ConsumeToken();
1345 ExpectAndConsume(tok::r_paren, diag::err_expected_rparen);
1346 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001347
Chris Lattner04d66662007-10-09 17:33:22 +00001348 if (Tok.is(tok::semi)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001349 ConsumeToken();
Chris Lattner04d66662007-10-09 17:33:22 +00001350 } else if (Tok.is(tok::r_brace)) {
Chris Lattner1ab3b962008-11-18 07:48:38 +00001351 Diag(Tok, diag::ext_expected_semi_decl_list);
Reid Spencer5f016e22007-07-11 17:01:13 +00001352 break;
1353 } else {
1354 Diag(Tok, diag::err_expected_semi_decl_list);
1355 // Skip to end of block or statement
1356 SkipUntil(tok::r_brace, true, true);
1357 }
1358 }
1359
Steve Naroff60fccee2007-10-29 21:38:07 +00001360 SourceLocation RBraceLoc = MatchRHSPunctuation(tok::r_brace, LBraceLoc);
Reid Spencer5f016e22007-07-11 17:01:13 +00001361
Reid Spencer5f016e22007-07-11 17:01:13 +00001362 AttributeList *AttrList = 0;
1363 // If attributes exist after struct contents, parse them.
Chris Lattner04d66662007-10-09 17:33:22 +00001364 if (Tok.is(tok::kw___attribute))
Daniel Dunbar5e592d82008-10-03 16:42:10 +00001365 AttrList = ParseAttributes();
Daniel Dunbar1bfe1c22008-10-03 02:03:53 +00001366
1367 Actions.ActOnFields(CurScope,
1368 RecordLoc,TagDecl,&FieldDecls[0],FieldDecls.size(),
1369 LBraceLoc, RBraceLoc,
Douglas Gregor72de6672009-01-08 20:45:30 +00001370 AttrList);
1371 StructScope.Exit();
1372 Actions.ActOnTagFinishDefinition(CurScope, TagDecl);
Reid Spencer5f016e22007-07-11 17:01:13 +00001373}
1374
1375
1376/// ParseEnumSpecifier
1377/// enum-specifier: [C99 6.7.2.2]
1378/// 'enum' identifier[opt] '{' enumerator-list '}'
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001379///[C99/C++]'enum' identifier[opt] '{' enumerator-list ',' '}'
Reid Spencer5f016e22007-07-11 17:01:13 +00001380/// [GNU] 'enum' attributes[opt] identifier[opt] '{' enumerator-list ',' [opt]
1381/// '}' attributes[opt]
1382/// 'enum' identifier
1383/// [GNU] 'enum' attributes[opt] identifier
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001384///
1385/// [C++] elaborated-type-specifier:
1386/// [C++] 'enum' '::'[opt] nested-name-specifier[opt] identifier
1387///
Chris Lattner4c97d762009-04-12 21:49:30 +00001388void Parser::ParseEnumSpecifier(SourceLocation StartLoc, DeclSpec &DS,
1389 AccessSpecifier AS) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001390 // Parse the tag portion of this.
Argyrios Kyrtzidise281b4c2008-09-11 00:21:41 +00001391
1392 AttributeList *Attr = 0;
1393 // If attributes exist after tag, parse them.
1394 if (Tok.is(tok::kw___attribute))
1395 Attr = ParseAttributes();
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001396
1397 CXXScopeSpec SS;
Chris Lattner7a0ab5f2009-01-06 06:59:53 +00001398 if (getLang().CPlusPlus && ParseOptionalCXXScopeSpecifier(SS)) {
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001399 if (Tok.isNot(tok::identifier)) {
1400 Diag(Tok, diag::err_expected_ident);
1401 if (Tok.isNot(tok::l_brace)) {
1402 // Has no name and is not a definition.
1403 // Skip the rest of this declarator, up until the comma or semicolon.
1404 SkipUntil(tok::comma, true);
1405 return;
1406 }
1407 }
1408 }
Argyrios Kyrtzidise281b4c2008-09-11 00:21:41 +00001409
1410 // Must have either 'enum name' or 'enum {...}'.
1411 if (Tok.isNot(tok::identifier) && Tok.isNot(tok::l_brace)) {
1412 Diag(Tok, diag::err_expected_ident_lbrace);
1413
1414 // Skip the rest of this declarator, up until the comma or semicolon.
1415 SkipUntil(tok::comma, true);
Reid Spencer5f016e22007-07-11 17:01:13 +00001416 return;
Argyrios Kyrtzidise281b4c2008-09-11 00:21:41 +00001417 }
1418
1419 // If an identifier is present, consume and remember it.
1420 IdentifierInfo *Name = 0;
1421 SourceLocation NameLoc;
1422 if (Tok.is(tok::identifier)) {
1423 Name = Tok.getIdentifierInfo();
1424 NameLoc = ConsumeToken();
1425 }
1426
1427 // There are three options here. If we have 'enum foo;', then this is a
1428 // forward declaration. If we have 'enum foo {...' then this is a
1429 // definition. Otherwise we have something like 'enum foo xyz', a reference.
1430 //
1431 // This is needed to handle stuff like this right (C99 6.7.2.3p11):
1432 // enum foo {..}; void bar() { enum foo; } <- new foo in bar.
1433 // enum foo {..}; void bar() { enum foo x; } <- use of old foo.
1434 //
1435 Action::TagKind TK;
1436 if (Tok.is(tok::l_brace))
1437 TK = Action::TK_Definition;
1438 else if (Tok.is(tok::semi))
1439 TK = Action::TK_Declaration;
1440 else
1441 TK = Action::TK_Reference;
Chris Lattnerb28317a2009-03-28 19:18:32 +00001442 DeclPtrTy TagDecl = Actions.ActOnTag(CurScope, DeclSpec::TST_enum, TK,
1443 StartLoc, SS, Name, NameLoc, Attr, AS);
Reid Spencer5f016e22007-07-11 17:01:13 +00001444
Chris Lattner04d66662007-10-09 17:33:22 +00001445 if (Tok.is(tok::l_brace))
Reid Spencer5f016e22007-07-11 17:01:13 +00001446 ParseEnumBody(StartLoc, TagDecl);
1447
1448 // TODO: semantic analysis on the declspec for enums.
1449 const char *PrevSpec = 0;
Chris Lattnerb28317a2009-03-28 19:18:32 +00001450 if (DS.SetTypeSpecType(DeclSpec::TST_enum, StartLoc, PrevSpec,
1451 TagDecl.getAs<void>()))
Chris Lattner1ab3b962008-11-18 07:48:38 +00001452 Diag(StartLoc, diag::err_invalid_decl_spec_combination) << PrevSpec;
Reid Spencer5f016e22007-07-11 17:01:13 +00001453}
1454
1455/// ParseEnumBody - Parse a {} enclosed enumerator-list.
1456/// enumerator-list:
1457/// enumerator
1458/// enumerator-list ',' enumerator
1459/// enumerator:
1460/// enumeration-constant
1461/// enumeration-constant '=' constant-expression
1462/// enumeration-constant:
1463/// identifier
1464///
Chris Lattnerb28317a2009-03-28 19:18:32 +00001465void Parser::ParseEnumBody(SourceLocation StartLoc, DeclPtrTy EnumDecl) {
Douglas Gregor074149e2009-01-05 19:45:36 +00001466 // Enter the scope of the enum body and start the definition.
1467 ParseScope EnumScope(this, Scope::DeclScope);
Douglas Gregor72de6672009-01-08 20:45:30 +00001468 Actions.ActOnTagStartDefinition(CurScope, EnumDecl);
Douglas Gregor074149e2009-01-05 19:45:36 +00001469
Reid Spencer5f016e22007-07-11 17:01:13 +00001470 SourceLocation LBraceLoc = ConsumeBrace();
1471
Chris Lattner7946dd32007-08-27 17:24:30 +00001472 // C does not allow an empty enumerator-list, C++ does [dcl.enum].
Chris Lattner04d66662007-10-09 17:33:22 +00001473 if (Tok.is(tok::r_brace) && !getLang().CPlusPlus)
Chris Lattner1ab3b962008-11-18 07:48:38 +00001474 Diag(Tok, diag::ext_empty_struct_union_enum) << "enum";
Reid Spencer5f016e22007-07-11 17:01:13 +00001475
Chris Lattnerb28317a2009-03-28 19:18:32 +00001476 llvm::SmallVector<DeclPtrTy, 32> EnumConstantDecls;
Reid Spencer5f016e22007-07-11 17:01:13 +00001477
Chris Lattnerb28317a2009-03-28 19:18:32 +00001478 DeclPtrTy LastEnumConstDecl;
Reid Spencer5f016e22007-07-11 17:01:13 +00001479
1480 // Parse the enumerator-list.
Chris Lattner04d66662007-10-09 17:33:22 +00001481 while (Tok.is(tok::identifier)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001482 IdentifierInfo *Ident = Tok.getIdentifierInfo();
1483 SourceLocation IdentLoc = ConsumeToken();
1484
1485 SourceLocation EqualLoc;
Sebastian Redl15faa7f2008-12-09 20:22:58 +00001486 OwningExprResult AssignedVal(Actions);
Chris Lattner04d66662007-10-09 17:33:22 +00001487 if (Tok.is(tok::equal)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001488 EqualLoc = ConsumeToken();
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001489 AssignedVal = ParseConstantExpression();
1490 if (AssignedVal.isInvalid())
Reid Spencer5f016e22007-07-11 17:01:13 +00001491 SkipUntil(tok::comma, tok::r_brace, true, true);
Reid Spencer5f016e22007-07-11 17:01:13 +00001492 }
1493
1494 // Install the enumerator constant into EnumDecl.
Chris Lattnerb28317a2009-03-28 19:18:32 +00001495 DeclPtrTy EnumConstDecl = Actions.ActOnEnumConstant(CurScope, EnumDecl,
1496 LastEnumConstDecl,
1497 IdentLoc, Ident,
1498 EqualLoc,
1499 AssignedVal.release());
Reid Spencer5f016e22007-07-11 17:01:13 +00001500 EnumConstantDecls.push_back(EnumConstDecl);
1501 LastEnumConstDecl = EnumConstDecl;
1502
Chris Lattner04d66662007-10-09 17:33:22 +00001503 if (Tok.isNot(tok::comma))
Reid Spencer5f016e22007-07-11 17:01:13 +00001504 break;
1505 SourceLocation CommaLoc = ConsumeToken();
1506
Douglas Gregor9b3064b2009-04-01 22:41:11 +00001507 if (Tok.isNot(tok::identifier) &&
1508 !(getLang().C99 || getLang().CPlusPlus0x))
1509 Diag(CommaLoc, diag::ext_enumerator_list_comma)
1510 << getLang().CPlusPlus
1511 << CodeModificationHint::CreateRemoval((SourceRange(CommaLoc)));
Reid Spencer5f016e22007-07-11 17:01:13 +00001512 }
1513
1514 // Eat the }.
1515 MatchRHSPunctuation(tok::r_brace, LBraceLoc);
1516
Steve Naroff08d92e42007-09-15 18:49:24 +00001517 Actions.ActOnEnumBody(StartLoc, EnumDecl, &EnumConstantDecls[0],
Reid Spencer5f016e22007-07-11 17:01:13 +00001518 EnumConstantDecls.size());
1519
Chris Lattnerb28317a2009-03-28 19:18:32 +00001520 Action::AttrTy *AttrList = 0;
Reid Spencer5f016e22007-07-11 17:01:13 +00001521 // If attributes exist after the identifier list, parse them.
Chris Lattner04d66662007-10-09 17:33:22 +00001522 if (Tok.is(tok::kw___attribute))
Reid Spencer5f016e22007-07-11 17:01:13 +00001523 AttrList = ParseAttributes(); // FIXME: where do they do?
Douglas Gregor72de6672009-01-08 20:45:30 +00001524
1525 EnumScope.Exit();
1526 Actions.ActOnTagFinishDefinition(CurScope, EnumDecl);
Reid Spencer5f016e22007-07-11 17:01:13 +00001527}
1528
1529/// isTypeSpecifierQualifier - Return true if the current token could be the
Steve Naroff5f8aa692008-02-11 23:15:56 +00001530/// start of a type-qualifier-list.
1531bool Parser::isTypeQualifier() const {
1532 switch (Tok.getKind()) {
1533 default: return false;
1534 // type-qualifier
1535 case tok::kw_const:
1536 case tok::kw_volatile:
1537 case tok::kw_restrict:
1538 return true;
1539 }
1540}
1541
1542/// isTypeSpecifierQualifier - Return true if the current token could be the
Reid Spencer5f016e22007-07-11 17:01:13 +00001543/// start of a specifier-qualifier-list.
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001544bool Parser::isTypeSpecifierQualifier() {
Reid Spencer5f016e22007-07-11 17:01:13 +00001545 switch (Tok.getKind()) {
1546 default: return false;
Chris Lattner166a8fc2009-01-04 23:41:41 +00001547
1548 case tok::identifier: // foo::bar
Douglas Gregord57959a2009-03-27 23:10:48 +00001549 case tok::kw_typename: // typename T::type
Chris Lattner166a8fc2009-01-04 23:41:41 +00001550 // Annotate typenames and C++ scope specifiers. If we get one, just
1551 // recurse to handle whatever we get.
1552 if (TryAnnotateTypeOrScopeToken())
1553 return isTypeSpecifierQualifier();
1554 // Otherwise, not a type specifier.
1555 return false;
Douglas Gregord57959a2009-03-27 23:10:48 +00001556
Chris Lattner166a8fc2009-01-04 23:41:41 +00001557 case tok::coloncolon: // ::foo::bar
1558 if (NextToken().is(tok::kw_new) || // ::new
1559 NextToken().is(tok::kw_delete)) // ::delete
1560 return false;
1561
1562 // Annotate typenames and C++ scope specifiers. If we get one, just
1563 // recurse to handle whatever we get.
1564 if (TryAnnotateTypeOrScopeToken())
1565 return isTypeSpecifierQualifier();
1566 // Otherwise, not a type specifier.
1567 return false;
1568
Reid Spencer5f016e22007-07-11 17:01:13 +00001569 // GNU attributes support.
1570 case tok::kw___attribute:
Steve Naroffd1861fd2007-07-31 12:34:36 +00001571 // GNU typeof support.
1572 case tok::kw_typeof:
1573
Reid Spencer5f016e22007-07-11 17:01:13 +00001574 // type-specifiers
1575 case tok::kw_short:
1576 case tok::kw_long:
1577 case tok::kw_signed:
1578 case tok::kw_unsigned:
1579 case tok::kw__Complex:
1580 case tok::kw__Imaginary:
1581 case tok::kw_void:
1582 case tok::kw_char:
Argyrios Kyrtzidis64c438a2008-08-09 16:51:54 +00001583 case tok::kw_wchar_t:
Reid Spencer5f016e22007-07-11 17:01:13 +00001584 case tok::kw_int:
1585 case tok::kw_float:
1586 case tok::kw_double:
Chris Lattner9298d962007-11-15 05:25:19 +00001587 case tok::kw_bool:
Reid Spencer5f016e22007-07-11 17:01:13 +00001588 case tok::kw__Bool:
1589 case tok::kw__Decimal32:
1590 case tok::kw__Decimal64:
1591 case tok::kw__Decimal128:
1592
Chris Lattner99dc9142008-04-13 18:59:07 +00001593 // struct-or-union-specifier (C99) or class-specifier (C++)
1594 case tok::kw_class:
Reid Spencer5f016e22007-07-11 17:01:13 +00001595 case tok::kw_struct:
1596 case tok::kw_union:
1597 // enum-specifier
1598 case tok::kw_enum:
1599
1600 // type-qualifier
1601 case tok::kw_const:
1602 case tok::kw_volatile:
1603 case tok::kw_restrict:
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001604
1605 // typedef-name
Chris Lattnerb31757b2009-01-06 05:06:21 +00001606 case tok::annot_typename:
Reid Spencer5f016e22007-07-11 17:01:13 +00001607 return true;
Chris Lattner7c186be2008-10-20 00:25:30 +00001608
1609 // GNU ObjC bizarre protocol extension: <proto1,proto2> with implicit 'id'.
1610 case tok::less:
1611 return getLang().ObjC1;
Steve Naroff239f0732008-12-25 14:16:32 +00001612
1613 case tok::kw___cdecl:
1614 case tok::kw___stdcall:
1615 case tok::kw___fastcall:
1616 return PP.getLangOptions().Microsoft;
Reid Spencer5f016e22007-07-11 17:01:13 +00001617 }
1618}
1619
1620/// isDeclarationSpecifier() - Return true if the current token is part of a
1621/// declaration specifier.
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001622bool Parser::isDeclarationSpecifier() {
Reid Spencer5f016e22007-07-11 17:01:13 +00001623 switch (Tok.getKind()) {
1624 default: return false;
Chris Lattner166a8fc2009-01-04 23:41:41 +00001625
1626 case tok::identifier: // foo::bar
Steve Naroff61f72cb2009-03-09 21:12:44 +00001627 // Unfortunate hack to support "Class.factoryMethod" notation.
1628 if (getLang().ObjC1 && NextToken().is(tok::period))
1629 return false;
Douglas Gregord57959a2009-03-27 23:10:48 +00001630 // Fall through
Steve Naroff61f72cb2009-03-09 21:12:44 +00001631
Douglas Gregord57959a2009-03-27 23:10:48 +00001632 case tok::kw_typename: // typename T::type
Chris Lattner166a8fc2009-01-04 23:41:41 +00001633 // Annotate typenames and C++ scope specifiers. If we get one, just
1634 // recurse to handle whatever we get.
1635 if (TryAnnotateTypeOrScopeToken())
1636 return isDeclarationSpecifier();
1637 // Otherwise, not a declaration specifier.
1638 return false;
1639 case tok::coloncolon: // ::foo::bar
1640 if (NextToken().is(tok::kw_new) || // ::new
1641 NextToken().is(tok::kw_delete)) // ::delete
1642 return false;
1643
1644 // Annotate typenames and C++ scope specifiers. If we get one, just
1645 // recurse to handle whatever we get.
1646 if (TryAnnotateTypeOrScopeToken())
1647 return isDeclarationSpecifier();
1648 // Otherwise, not a declaration specifier.
1649 return false;
1650
Reid Spencer5f016e22007-07-11 17:01:13 +00001651 // storage-class-specifier
1652 case tok::kw_typedef:
1653 case tok::kw_extern:
Steve Naroff8d54bf22007-12-18 00:16:02 +00001654 case tok::kw___private_extern__:
Reid Spencer5f016e22007-07-11 17:01:13 +00001655 case tok::kw_static:
1656 case tok::kw_auto:
1657 case tok::kw_register:
1658 case tok::kw___thread:
1659
1660 // type-specifiers
1661 case tok::kw_short:
1662 case tok::kw_long:
1663 case tok::kw_signed:
1664 case tok::kw_unsigned:
1665 case tok::kw__Complex:
1666 case tok::kw__Imaginary:
1667 case tok::kw_void:
1668 case tok::kw_char:
Argyrios Kyrtzidis64c438a2008-08-09 16:51:54 +00001669 case tok::kw_wchar_t:
Reid Spencer5f016e22007-07-11 17:01:13 +00001670 case tok::kw_int:
1671 case tok::kw_float:
1672 case tok::kw_double:
Chris Lattner9298d962007-11-15 05:25:19 +00001673 case tok::kw_bool:
Reid Spencer5f016e22007-07-11 17:01:13 +00001674 case tok::kw__Bool:
1675 case tok::kw__Decimal32:
1676 case tok::kw__Decimal64:
1677 case tok::kw__Decimal128:
1678
Chris Lattner99dc9142008-04-13 18:59:07 +00001679 // struct-or-union-specifier (C99) or class-specifier (C++)
1680 case tok::kw_class:
Reid Spencer5f016e22007-07-11 17:01:13 +00001681 case tok::kw_struct:
1682 case tok::kw_union:
1683 // enum-specifier
1684 case tok::kw_enum:
1685
1686 // type-qualifier
1687 case tok::kw_const:
1688 case tok::kw_volatile:
1689 case tok::kw_restrict:
Steve Naroffd1861fd2007-07-31 12:34:36 +00001690
Reid Spencer5f016e22007-07-11 17:01:13 +00001691 // function-specifier
1692 case tok::kw_inline:
Douglas Gregorb48fe382008-10-31 09:07:45 +00001693 case tok::kw_virtual:
1694 case tok::kw_explicit:
Chris Lattnerd6c7c182007-08-09 16:40:21 +00001695
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001696 // typedef-name
Chris Lattnerb31757b2009-01-06 05:06:21 +00001697 case tok::annot_typename:
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001698
Chris Lattner1ef08762007-08-09 17:01:07 +00001699 // GNU typeof support.
1700 case tok::kw_typeof:
1701
1702 // GNU attributes.
Chris Lattnerd6c7c182007-08-09 16:40:21 +00001703 case tok::kw___attribute:
Reid Spencer5f016e22007-07-11 17:01:13 +00001704 return true;
Chris Lattnerf3948c42008-07-26 03:38:44 +00001705
1706 // GNU ObjC bizarre protocol extension: <proto1,proto2> with implicit 'id'.
1707 case tok::less:
1708 return getLang().ObjC1;
Steve Naroff239f0732008-12-25 14:16:32 +00001709
Steve Naroff47f52092009-01-06 19:34:12 +00001710 case tok::kw___declspec:
Steve Naroff239f0732008-12-25 14:16:32 +00001711 case tok::kw___cdecl:
1712 case tok::kw___stdcall:
1713 case tok::kw___fastcall:
1714 return PP.getLangOptions().Microsoft;
Reid Spencer5f016e22007-07-11 17:01:13 +00001715 }
1716}
1717
1718
1719/// ParseTypeQualifierListOpt
1720/// type-qualifier-list: [C99 6.7.5]
1721/// type-qualifier
Chris Lattner5a69d1c2008-12-18 07:02:59 +00001722/// [GNU] attributes [ only if AttributesAllowed=true ]
Reid Spencer5f016e22007-07-11 17:01:13 +00001723/// type-qualifier-list type-qualifier
Chris Lattner5a69d1c2008-12-18 07:02:59 +00001724/// [GNU] type-qualifier-list attributes [ only if AttributesAllowed=true ]
Reid Spencer5f016e22007-07-11 17:01:13 +00001725///
Chris Lattner5a69d1c2008-12-18 07:02:59 +00001726void Parser::ParseTypeQualifierListOpt(DeclSpec &DS, bool AttributesAllowed) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001727 while (1) {
1728 int isInvalid = false;
1729 const char *PrevSpec = 0;
1730 SourceLocation Loc = Tok.getLocation();
1731
1732 switch (Tok.getKind()) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001733 case tok::kw_const:
1734 isInvalid = DS.SetTypeQual(DeclSpec::TQ_const , Loc, PrevSpec,
1735 getLang())*2;
1736 break;
1737 case tok::kw_volatile:
1738 isInvalid = DS.SetTypeQual(DeclSpec::TQ_volatile, Loc, PrevSpec,
1739 getLang())*2;
1740 break;
1741 case tok::kw_restrict:
1742 isInvalid = DS.SetTypeQual(DeclSpec::TQ_restrict, Loc, PrevSpec,
1743 getLang())*2;
1744 break;
Steve Naroff86bc6cf2008-12-25 14:41:26 +00001745 case tok::kw___ptr64:
Steve Naroff239f0732008-12-25 14:16:32 +00001746 case tok::kw___cdecl:
1747 case tok::kw___stdcall:
1748 case tok::kw___fastcall:
1749 if (!PP.getLangOptions().Microsoft)
1750 goto DoneWithTypeQuals;
1751 // Just ignore it.
1752 break;
Reid Spencer5f016e22007-07-11 17:01:13 +00001753 case tok::kw___attribute:
Chris Lattner5a69d1c2008-12-18 07:02:59 +00001754 if (AttributesAllowed) {
1755 DS.AddAttributes(ParseAttributes());
1756 continue; // do *not* consume the next token!
1757 }
1758 // otherwise, FALL THROUGH!
1759 default:
Steve Naroff239f0732008-12-25 14:16:32 +00001760 DoneWithTypeQuals:
Chris Lattner5a69d1c2008-12-18 07:02:59 +00001761 // If this is not a type-qualifier token, we're done reading type
1762 // qualifiers. First verify that DeclSpec's are consistent.
Douglas Gregor9b3064b2009-04-01 22:41:11 +00001763 DS.Finish(Diags, PP);
Chris Lattner5a69d1c2008-12-18 07:02:59 +00001764 return;
Reid Spencer5f016e22007-07-11 17:01:13 +00001765 }
Chris Lattnera1fcbad2008-12-18 06:50:14 +00001766
Reid Spencer5f016e22007-07-11 17:01:13 +00001767 // If the specifier combination wasn't legal, issue a diagnostic.
1768 if (isInvalid) {
1769 assert(PrevSpec && "Method did not return previous specifier!");
Chris Lattner1ab3b962008-11-18 07:48:38 +00001770 // Pick between error or extwarn.
1771 unsigned DiagID = isInvalid == 1 ? diag::err_invalid_decl_spec_combination
1772 : diag::ext_duplicate_declspec;
1773 Diag(Tok, DiagID) << PrevSpec;
Reid Spencer5f016e22007-07-11 17:01:13 +00001774 }
1775 ConsumeToken();
1776 }
1777}
1778
1779
1780/// ParseDeclarator - Parse and verify a newly-initialized declarator.
1781///
1782void Parser::ParseDeclarator(Declarator &D) {
1783 /// This implements the 'declarator' production in the C grammar, then checks
1784 /// for well-formedness and issues diagnostics.
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001785 ParseDeclaratorInternal(D, &Parser::ParseDirectDeclarator);
Reid Spencer5f016e22007-07-11 17:01:13 +00001786}
1787
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001788/// ParseDeclaratorInternal - Parse a C or C++ declarator. The direct-declarator
1789/// is parsed by the function passed to it. Pass null, and the direct-declarator
1790/// isn't parsed at all, making this function effectively parse the C++
Douglas Gregor2f1bc522008-11-07 20:08:42 +00001791/// ptr-operator production.
1792///
Sebastian Redlf30208a2009-01-24 21:16:55 +00001793/// declarator: [C99 6.7.5] [C++ 8p4, dcl.decl]
1794/// [C] pointer[opt] direct-declarator
1795/// [C++] direct-declarator
1796/// [C++] ptr-operator declarator
Reid Spencer5f016e22007-07-11 17:01:13 +00001797///
1798/// pointer: [C99 6.7.5]
1799/// '*' type-qualifier-list[opt]
1800/// '*' type-qualifier-list[opt] pointer
1801///
Douglas Gregor2f1bc522008-11-07 20:08:42 +00001802/// ptr-operator:
1803/// '*' cv-qualifier-seq[opt]
1804/// '&'
Sebastian Redl05532f22009-03-15 22:02:01 +00001805/// [C++0x] '&&'
Douglas Gregor2f1bc522008-11-07 20:08:42 +00001806/// [GNU] '&' restrict[opt] attributes[opt]
Sebastian Redl05532f22009-03-15 22:02:01 +00001807/// [GNU?] '&&' restrict[opt] attributes[opt]
Sebastian Redlf30208a2009-01-24 21:16:55 +00001808/// '::'[opt] nested-name-specifier '*' cv-qualifier-seq[opt]
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001809void Parser::ParseDeclaratorInternal(Declarator &D,
1810 DirectDeclParseFunction DirectDeclParser) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001811
Sebastian Redlf30208a2009-01-24 21:16:55 +00001812 // C++ member pointers start with a '::' or a nested-name.
1813 // Member pointers get special handling, since there's no place for the
1814 // scope spec in the generic path below.
Chris Lattnerf919bfe2009-03-24 17:04:48 +00001815 if (getLang().CPlusPlus &&
1816 (Tok.is(tok::coloncolon) || Tok.is(tok::identifier) ||
1817 Tok.is(tok::annot_cxxscope))) {
Sebastian Redlf30208a2009-01-24 21:16:55 +00001818 CXXScopeSpec SS;
1819 if (ParseOptionalCXXScopeSpecifier(SS)) {
1820 if(Tok.isNot(tok::star)) {
1821 // The scope spec really belongs to the direct-declarator.
1822 D.getCXXScopeSpec() = SS;
1823 if (DirectDeclParser)
1824 (this->*DirectDeclParser)(D);
1825 return;
1826 }
1827
1828 SourceLocation Loc = ConsumeToken();
Sebastian Redlab197ba2009-02-09 18:23:29 +00001829 D.SetRangeEnd(Loc);
Sebastian Redlf30208a2009-01-24 21:16:55 +00001830 DeclSpec DS;
1831 ParseTypeQualifierListOpt(DS);
Sebastian Redlab197ba2009-02-09 18:23:29 +00001832 D.ExtendWithDeclSpec(DS);
Sebastian Redlf30208a2009-01-24 21:16:55 +00001833
1834 // Recurse to parse whatever is left.
1835 ParseDeclaratorInternal(D, DirectDeclParser);
1836
1837 // Sema will have to catch (syntactically invalid) pointers into global
1838 // scope. It has to catch pointers into namespace scope anyway.
1839 D.AddTypeInfo(DeclaratorChunk::getMemberPointer(SS,DS.getTypeQualifiers(),
Sebastian Redlab197ba2009-02-09 18:23:29 +00001840 Loc, DS.TakeAttributes()),
1841 /* Don't replace range end. */SourceLocation());
Sebastian Redlf30208a2009-01-24 21:16:55 +00001842 return;
1843 }
1844 }
1845
1846 tok::TokenKind Kind = Tok.getKind();
Steve Naroff5618bd42008-08-27 16:04:49 +00001847 // Not a pointer, C++ reference, or block.
Chris Lattner9af55002009-03-27 04:18:06 +00001848 if (Kind != tok::star && Kind != tok::caret &&
Chris Lattnerf919bfe2009-03-24 17:04:48 +00001849 (Kind != tok::amp || !getLang().CPlusPlus) &&
Sebastian Redl743de1f2009-03-23 00:00:23 +00001850 // We parse rvalue refs in C++03, because otherwise the errors are scary.
Chris Lattner9af55002009-03-27 04:18:06 +00001851 (Kind != tok::ampamp || !getLang().CPlusPlus)) {
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001852 if (DirectDeclParser)
1853 (this->*DirectDeclParser)(D);
Douglas Gregor2f1bc522008-11-07 20:08:42 +00001854 return;
1855 }
Sebastian Redlf30208a2009-01-24 21:16:55 +00001856
Sebastian Redl05532f22009-03-15 22:02:01 +00001857 // Otherwise, '*' -> pointer, '^' -> block, '&' -> lvalue reference,
1858 // '&&' -> rvalue reference
Sebastian Redl743de1f2009-03-23 00:00:23 +00001859 SourceLocation Loc = ConsumeToken(); // Eat the *, ^, & or &&.
Sebastian Redlab197ba2009-02-09 18:23:29 +00001860 D.SetRangeEnd(Loc);
Reid Spencer5f016e22007-07-11 17:01:13 +00001861
Chris Lattner9af55002009-03-27 04:18:06 +00001862 if (Kind == tok::star || Kind == tok::caret) {
Chris Lattner76549142008-02-21 01:32:26 +00001863 // Is a pointer.
Reid Spencer5f016e22007-07-11 17:01:13 +00001864 DeclSpec DS;
Sebastian Redlf30208a2009-01-24 21:16:55 +00001865
Reid Spencer5f016e22007-07-11 17:01:13 +00001866 ParseTypeQualifierListOpt(DS);
Sebastian Redlab197ba2009-02-09 18:23:29 +00001867 D.ExtendWithDeclSpec(DS);
Sebastian Redlf30208a2009-01-24 21:16:55 +00001868
Reid Spencer5f016e22007-07-11 17:01:13 +00001869 // Recursively parse the declarator.
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001870 ParseDeclaratorInternal(D, DirectDeclParser);
Steve Naroff5618bd42008-08-27 16:04:49 +00001871 if (Kind == tok::star)
1872 // Remember that we parsed a pointer type, and remember the type-quals.
1873 D.AddTypeInfo(DeclaratorChunk::getPointer(DS.getTypeQualifiers(), Loc,
Sebastian Redlab197ba2009-02-09 18:23:29 +00001874 DS.TakeAttributes()),
1875 SourceLocation());
Steve Naroff5618bd42008-08-27 16:04:49 +00001876 else
1877 // Remember that we parsed a Block type, and remember the type-quals.
1878 D.AddTypeInfo(DeclaratorChunk::getBlockPointer(DS.getTypeQualifiers(),
Mike Stump75b163f2009-04-21 00:51:43 +00001879 Loc, DS.TakeAttributes()),
Sebastian Redlab197ba2009-02-09 18:23:29 +00001880 SourceLocation());
Reid Spencer5f016e22007-07-11 17:01:13 +00001881 } else {
1882 // Is a reference
1883 DeclSpec DS;
1884
Sebastian Redl743de1f2009-03-23 00:00:23 +00001885 // Complain about rvalue references in C++03, but then go on and build
1886 // the declarator.
1887 if (Kind == tok::ampamp && !getLang().CPlusPlus0x)
1888 Diag(Loc, diag::err_rvalue_reference);
1889
Reid Spencer5f016e22007-07-11 17:01:13 +00001890 // C++ 8.3.2p1: cv-qualified references are ill-formed except when the
1891 // cv-qualifiers are introduced through the use of a typedef or of a
1892 // template type argument, in which case the cv-qualifiers are ignored.
1893 //
1894 // [GNU] Retricted references are allowed.
1895 // [GNU] Attributes on references are allowed.
1896 ParseTypeQualifierListOpt(DS);
Sebastian Redlab197ba2009-02-09 18:23:29 +00001897 D.ExtendWithDeclSpec(DS);
Reid Spencer5f016e22007-07-11 17:01:13 +00001898
1899 if (DS.getTypeQualifiers() != DeclSpec::TQ_unspecified) {
1900 if (DS.getTypeQualifiers() & DeclSpec::TQ_const)
1901 Diag(DS.getConstSpecLoc(),
Chris Lattner1ab3b962008-11-18 07:48:38 +00001902 diag::err_invalid_reference_qualifier_application) << "const";
Reid Spencer5f016e22007-07-11 17:01:13 +00001903 if (DS.getTypeQualifiers() & DeclSpec::TQ_volatile)
1904 Diag(DS.getVolatileSpecLoc(),
Chris Lattner1ab3b962008-11-18 07:48:38 +00001905 diag::err_invalid_reference_qualifier_application) << "volatile";
Reid Spencer5f016e22007-07-11 17:01:13 +00001906 }
1907
1908 // Recursively parse the declarator.
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001909 ParseDeclaratorInternal(D, DirectDeclParser);
Reid Spencer5f016e22007-07-11 17:01:13 +00001910
Douglas Gregorf1f9b4e2008-11-03 15:51:28 +00001911 if (D.getNumTypeObjects() > 0) {
1912 // C++ [dcl.ref]p4: There shall be no references to references.
1913 DeclaratorChunk& InnerChunk = D.getTypeObject(D.getNumTypeObjects() - 1);
1914 if (InnerChunk.Kind == DeclaratorChunk::Reference) {
Chris Lattnerda83bac2008-11-19 07:37:42 +00001915 if (const IdentifierInfo *II = D.getIdentifier())
1916 Diag(InnerChunk.Loc, diag::err_illegal_decl_reference_to_reference)
1917 << II;
1918 else
1919 Diag(InnerChunk.Loc, diag::err_illegal_decl_reference_to_reference)
1920 << "type name";
Douglas Gregorf1f9b4e2008-11-03 15:51:28 +00001921
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001922 // Once we've complained about the reference-to-reference, we
Douglas Gregorf1f9b4e2008-11-03 15:51:28 +00001923 // can go ahead and build the (technically ill-formed)
1924 // declarator: reference collapsing will take care of it.
1925 }
1926 }
1927
Reid Spencer5f016e22007-07-11 17:01:13 +00001928 // Remember that we parsed a reference type. It doesn't have type-quals.
Chris Lattner76549142008-02-21 01:32:26 +00001929 D.AddTypeInfo(DeclaratorChunk::getReference(DS.getTypeQualifiers(), Loc,
Sebastian Redl05532f22009-03-15 22:02:01 +00001930 DS.TakeAttributes(),
1931 Kind == tok::amp),
Sebastian Redlab197ba2009-02-09 18:23:29 +00001932 SourceLocation());
Reid Spencer5f016e22007-07-11 17:01:13 +00001933 }
1934}
1935
1936/// ParseDirectDeclarator
1937/// direct-declarator: [C99 6.7.5]
Douglas Gregor42a552f2008-11-05 20:51:48 +00001938/// [C99] identifier
Reid Spencer5f016e22007-07-11 17:01:13 +00001939/// '(' declarator ')'
1940/// [GNU] '(' attributes declarator ')'
1941/// [C90] direct-declarator '[' constant-expression[opt] ']'
1942/// [C99] direct-declarator '[' type-qual-list[opt] assignment-expr[opt] ']'
1943/// [C99] direct-declarator '[' 'static' type-qual-list[opt] assign-expr ']'
1944/// [C99] direct-declarator '[' type-qual-list 'static' assignment-expr ']'
1945/// [C99] direct-declarator '[' type-qual-list[opt] '*' ']'
1946/// direct-declarator '(' parameter-type-list ')'
1947/// direct-declarator '(' identifier-list[opt] ')'
1948/// [GNU] direct-declarator '(' parameter-forward-declarations
1949/// parameter-type-list[opt] ')'
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +00001950/// [C++] direct-declarator '(' parameter-declaration-clause ')'
1951/// cv-qualifier-seq[opt] exception-specification[opt]
Douglas Gregorb48fe382008-10-31 09:07:45 +00001952/// [C++] declarator-id
Douglas Gregor42a552f2008-11-05 20:51:48 +00001953///
1954/// declarator-id: [C++ 8]
1955/// id-expression
1956/// '::'[opt] nested-name-specifier[opt] type-name
1957///
1958/// id-expression: [C++ 5.1]
1959/// unqualified-id
1960/// qualified-id [TODO]
1961///
1962/// unqualified-id: [C++ 5.1]
1963/// identifier
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001964/// operator-function-id
Douglas Gregor42a552f2008-11-05 20:51:48 +00001965/// conversion-function-id [TODO]
1966/// '~' class-name
Douglas Gregor39a8de12009-02-25 19:37:18 +00001967/// template-id
Argyrios Kyrtzidisc7ed9c62008-11-07 22:02:30 +00001968///
Reid Spencer5f016e22007-07-11 17:01:13 +00001969void Parser::ParseDirectDeclarator(Declarator &D) {
Argyrios Kyrtzidis314fe782008-11-26 22:40:03 +00001970 DeclaratorScopeObj DeclScopeObj(*this, D.getCXXScopeSpec());
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001971
Argyrios Kyrtzidis314fe782008-11-26 22:40:03 +00001972 if (getLang().CPlusPlus) {
1973 if (D.mayHaveIdentifier()) {
Sebastian Redlf30208a2009-01-24 21:16:55 +00001974 // ParseDeclaratorInternal might already have parsed the scope.
1975 bool afterCXXScope = D.getCXXScopeSpec().isSet() ||
1976 ParseOptionalCXXScopeSpecifier(D.getCXXScopeSpec());
Argyrios Kyrtzidis314fe782008-11-26 22:40:03 +00001977 if (afterCXXScope) {
1978 // Change the declaration context for name lookup, until this function
1979 // is exited (and the declarator has been parsed).
1980 DeclScopeObj.EnterDeclaratorScope();
1981 }
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001982
Argyrios Kyrtzidis314fe782008-11-26 22:40:03 +00001983 if (Tok.is(tok::identifier)) {
1984 assert(Tok.getIdentifierInfo() && "Not an identifier?");
Douglas Gregord6fb7ef2008-12-18 19:37:40 +00001985
Douglas Gregord6fb7ef2008-12-18 19:37:40 +00001986 // If this identifier is the name of the current class, it's a
1987 // constructor name.
Douglas Gregor39a8de12009-02-25 19:37:18 +00001988 if (Actions.isCurrentClassName(*Tok.getIdentifierInfo(),CurScope)){
Steve Naroffb43a50f2009-01-28 19:39:02 +00001989 D.setConstructor(Actions.getTypeName(*Tok.getIdentifierInfo(),
Douglas Gregorb696ea32009-02-04 17:00:24 +00001990 Tok.getLocation(), CurScope),
Argyrios Kyrtzidis314fe782008-11-26 22:40:03 +00001991 Tok.getLocation());
Douglas Gregord6fb7ef2008-12-18 19:37:40 +00001992 // This is a normal identifier.
Sebastian Redlab197ba2009-02-09 18:23:29 +00001993 } else
Argyrios Kyrtzidis314fe782008-11-26 22:40:03 +00001994 D.SetIdentifier(Tok.getIdentifierInfo(), Tok.getLocation());
1995 ConsumeToken();
1996 goto PastIdentifier;
Douglas Gregor39a8de12009-02-25 19:37:18 +00001997 } else if (Tok.is(tok::annot_template_id)) {
1998 TemplateIdAnnotation *TemplateId
1999 = static_cast<TemplateIdAnnotation *>(Tok.getAnnotationValue());
2000
2001 // FIXME: Could this template-id name a constructor?
2002
2003 // FIXME: This is an egregious hack, where we silently ignore
2004 // the specialization (which should be a function template
2005 // specialization name) and use the name instead. This hack
2006 // will go away when we have support for function
2007 // specializations.
2008 D.SetIdentifier(TemplateId->Name, Tok.getLocation());
2009 TemplateId->Destroy();
2010 ConsumeToken();
2011 goto PastIdentifier;
Douglas Gregor70316a02008-12-26 15:00:45 +00002012 } else if (Tok.is(tok::kw_operator)) {
2013 SourceLocation OperatorLoc = Tok.getLocation();
Sebastian Redlab197ba2009-02-09 18:23:29 +00002014 SourceLocation EndLoc;
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00002015
Douglas Gregor70316a02008-12-26 15:00:45 +00002016 // First try the name of an overloaded operator
Sebastian Redlab197ba2009-02-09 18:23:29 +00002017 if (OverloadedOperatorKind Op = TryParseOperatorFunctionId(&EndLoc)) {
2018 D.setOverloadedOperator(Op, OperatorLoc, EndLoc);
Douglas Gregor70316a02008-12-26 15:00:45 +00002019 } else {
2020 // This must be a conversion function (C++ [class.conv.fct]).
Sebastian Redlab197ba2009-02-09 18:23:29 +00002021 if (TypeTy *ConvType = ParseConversionFunctionId(&EndLoc))
2022 D.setConversionFunction(ConvType, OperatorLoc, EndLoc);
2023 else {
Douglas Gregor70316a02008-12-26 15:00:45 +00002024 D.SetIdentifier(0, Tok.getLocation());
Sebastian Redlab197ba2009-02-09 18:23:29 +00002025 }
Douglas Gregor70316a02008-12-26 15:00:45 +00002026 }
2027 goto PastIdentifier;
2028 } else if (Tok.is(tok::tilde)) {
Argyrios Kyrtzidis314fe782008-11-26 22:40:03 +00002029 // This should be a C++ destructor.
2030 SourceLocation TildeLoc = ConsumeToken();
2031 if (Tok.is(tok::identifier)) {
Sebastian Redlab197ba2009-02-09 18:23:29 +00002032 // FIXME: Inaccurate.
2033 SourceLocation NameLoc = Tok.getLocation();
Douglas Gregor7f43d672009-02-25 23:52:28 +00002034 SourceLocation EndLoc;
Douglas Gregor31a19b62009-04-01 21:51:26 +00002035 TypeResult Type = ParseClassName(EndLoc);
2036 if (Type.isInvalid())
Argyrios Kyrtzidis314fe782008-11-26 22:40:03 +00002037 D.SetIdentifier(0, TildeLoc);
Douglas Gregor31a19b62009-04-01 21:51:26 +00002038 else
2039 D.setDestructor(Type.get(), TildeLoc, NameLoc);
Argyrios Kyrtzidis314fe782008-11-26 22:40:03 +00002040 } else {
2041 Diag(Tok, diag::err_expected_class_name);
2042 D.SetIdentifier(0, TildeLoc);
2043 }
2044 goto PastIdentifier;
2045 }
2046
2047 // If we reached this point, token is not identifier and not '~'.
2048
2049 if (afterCXXScope) {
2050 Diag(Tok, diag::err_expected_unqualified_id);
2051 D.SetIdentifier(0, Tok.getLocation());
2052 D.setInvalidType(true);
2053 goto PastIdentifier;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00002054 }
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00002055 }
Argyrios Kyrtzidis314fe782008-11-26 22:40:03 +00002056 }
2057
2058 // If we reached this point, we are either in C/ObjC or the token didn't
2059 // satisfy any of the C++-specific checks.
Argyrios Kyrtzidis314fe782008-11-26 22:40:03 +00002060 if (Tok.is(tok::identifier) && D.mayHaveIdentifier()) {
2061 assert(!getLang().CPlusPlus &&
2062 "There's a C++-specific check for tok::identifier above");
2063 assert(Tok.getIdentifierInfo() && "Not an identifier?");
2064 D.SetIdentifier(Tok.getIdentifierInfo(), Tok.getLocation());
2065 ConsumeToken();
2066 } else if (Tok.is(tok::l_paren)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00002067 // direct-declarator: '(' declarator ')'
2068 // direct-declarator: '(' attributes declarator ')'
2069 // Example: 'char (*X)' or 'int (*XX)(void)'
2070 ParseParenDeclarator(D);
Argyrios Kyrtzidis314fe782008-11-26 22:40:03 +00002071 } else if (D.mayOmitIdentifier()) {
Reid Spencer5f016e22007-07-11 17:01:13 +00002072 // This could be something simple like "int" (in which case the declarator
2073 // portion is empty), if an abstract-declarator is allowed.
2074 D.SetIdentifier(0, Tok.getLocation());
2075 } else {
Douglas Gregore950d4b2009-03-06 23:28:18 +00002076 if (D.getContext() == Declarator::MemberContext)
2077 Diag(Tok, diag::err_expected_member_name_or_semi)
2078 << D.getDeclSpec().getSourceRange();
2079 else if (getLang().CPlusPlus)
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00002080 Diag(Tok, diag::err_expected_unqualified_id);
2081 else
Chris Lattner1ab3b962008-11-18 07:48:38 +00002082 Diag(Tok, diag::err_expected_ident_lparen);
Reid Spencer5f016e22007-07-11 17:01:13 +00002083 D.SetIdentifier(0, Tok.getLocation());
Chris Lattner1f6f54b2008-11-11 06:13:16 +00002084 D.setInvalidType(true);
Reid Spencer5f016e22007-07-11 17:01:13 +00002085 }
2086
Argyrios Kyrtzidis314fe782008-11-26 22:40:03 +00002087 PastIdentifier:
Reid Spencer5f016e22007-07-11 17:01:13 +00002088 assert(D.isPastIdentifier() &&
2089 "Haven't past the location of the identifier yet?");
2090
2091 while (1) {
Chris Lattner04d66662007-10-09 17:33:22 +00002092 if (Tok.is(tok::l_paren)) {
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00002093 // The paren may be part of a C++ direct initializer, eg. "int x(1);".
2094 // In such a case, check if we actually have a function declarator; if it
2095 // is not, the declarator has been fully parsed.
Chris Lattner7399ee02008-10-20 02:05:46 +00002096 if (getLang().CPlusPlus && D.mayBeFollowedByCXXDirectInit()) {
2097 // When not in file scope, warn for ambiguous function declarators, just
2098 // in case the author intended it as a variable definition.
2099 bool warnIfAmbiguous = D.getContext() != Declarator::FileContext;
2100 if (!isCXXFunctionDeclarator(warnIfAmbiguous))
2101 break;
2102 }
Chris Lattneref4715c2008-04-06 05:45:57 +00002103 ParseFunctionDeclarator(ConsumeParen(), D);
Chris Lattner04d66662007-10-09 17:33:22 +00002104 } else if (Tok.is(tok::l_square)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00002105 ParseBracketDeclarator(D);
2106 } else {
2107 break;
2108 }
2109 }
2110}
2111
Chris Lattneref4715c2008-04-06 05:45:57 +00002112/// ParseParenDeclarator - We parsed the declarator D up to a paren. This is
2113/// only called before the identifier, so these are most likely just grouping
2114/// parens for precedence. If we find that these are actually function
2115/// parameter parens in an abstract-declarator, we call ParseFunctionDeclarator.
2116///
2117/// direct-declarator:
2118/// '(' declarator ')'
2119/// [GNU] '(' attributes declarator ')'
Chris Lattner7399ee02008-10-20 02:05:46 +00002120/// direct-declarator '(' parameter-type-list ')'
2121/// direct-declarator '(' identifier-list[opt] ')'
2122/// [GNU] direct-declarator '(' parameter-forward-declarations
2123/// parameter-type-list[opt] ')'
Chris Lattneref4715c2008-04-06 05:45:57 +00002124///
2125void Parser::ParseParenDeclarator(Declarator &D) {
2126 SourceLocation StartLoc = ConsumeParen();
2127 assert(!D.isPastIdentifier() && "Should be called before passing identifier");
2128
Chris Lattner7399ee02008-10-20 02:05:46 +00002129 // Eat any attributes before we look at whether this is a grouping or function
2130 // declarator paren. If this is a grouping paren, the attribute applies to
2131 // the type being built up, for example:
2132 // int (__attribute__(()) *x)(long y)
2133 // If this ends up not being a grouping paren, the attribute applies to the
2134 // first argument, for example:
2135 // int (__attribute__(()) int x)
2136 // In either case, we need to eat any attributes to be able to determine what
2137 // sort of paren this is.
2138 //
2139 AttributeList *AttrList = 0;
2140 bool RequiresArg = false;
2141 if (Tok.is(tok::kw___attribute)) {
2142 AttrList = ParseAttributes();
2143
2144 // We require that the argument list (if this is a non-grouping paren) be
2145 // present even if the attribute list was empty.
2146 RequiresArg = true;
2147 }
Steve Naroff239f0732008-12-25 14:16:32 +00002148 // Eat any Microsoft extensions.
Douglas Gregor5a2f5d32009-01-10 00:48:18 +00002149 while ((Tok.is(tok::kw___cdecl) || Tok.is(tok::kw___stdcall) ||
2150 (Tok.is(tok::kw___fastcall))) && PP.getLangOptions().Microsoft)
Steve Naroff239f0732008-12-25 14:16:32 +00002151 ConsumeToken();
Chris Lattner7399ee02008-10-20 02:05:46 +00002152
Chris Lattneref4715c2008-04-06 05:45:57 +00002153 // If we haven't past the identifier yet (or where the identifier would be
2154 // stored, if this is an abstract declarator), then this is probably just
2155 // grouping parens. However, if this could be an abstract-declarator, then
2156 // this could also be the start of function arguments (consider 'void()').
2157 bool isGrouping;
2158
2159 if (!D.mayOmitIdentifier()) {
2160 // If this can't be an abstract-declarator, this *must* be a grouping
2161 // paren, because we haven't seen the identifier yet.
2162 isGrouping = true;
2163 } else if (Tok.is(tok::r_paren) || // 'int()' is a function.
Argyrios Kyrtzidise25d2702008-10-06 00:07:55 +00002164 (getLang().CPlusPlus && Tok.is(tok::ellipsis)) || // C++ int(...)
Chris Lattneref4715c2008-04-06 05:45:57 +00002165 isDeclarationSpecifier()) { // 'int(int)' is a function.
2166 // This handles C99 6.7.5.3p11: in "typedef int X; void foo(X)", X is
2167 // considered to be a type, not a K&R identifier-list.
2168 isGrouping = false;
2169 } else {
2170 // Otherwise, this is a grouping paren, e.g. 'int (*X)' or 'int(X)'.
2171 isGrouping = true;
2172 }
2173
2174 // If this is a grouping paren, handle:
2175 // direct-declarator: '(' declarator ')'
2176 // direct-declarator: '(' attributes declarator ')'
2177 if (isGrouping) {
Argyrios Kyrtzidis3f2a8a02008-10-07 10:21:57 +00002178 bool hadGroupingParens = D.hasGroupingParens();
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00002179 D.setGroupingParens(true);
Chris Lattner7399ee02008-10-20 02:05:46 +00002180 if (AttrList)
Sebastian Redlab197ba2009-02-09 18:23:29 +00002181 D.AddAttributes(AttrList, SourceLocation());
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00002182
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002183 ParseDeclaratorInternal(D, &Parser::ParseDirectDeclarator);
Chris Lattneref4715c2008-04-06 05:45:57 +00002184 // Match the ')'.
Sebastian Redlab197ba2009-02-09 18:23:29 +00002185 SourceLocation Loc = MatchRHSPunctuation(tok::r_paren, StartLoc);
Argyrios Kyrtzidis3f2a8a02008-10-07 10:21:57 +00002186
2187 D.setGroupingParens(hadGroupingParens);
Sebastian Redlab197ba2009-02-09 18:23:29 +00002188 D.SetRangeEnd(Loc);
Chris Lattneref4715c2008-04-06 05:45:57 +00002189 return;
2190 }
2191
2192 // Okay, if this wasn't a grouping paren, it must be the start of a function
2193 // argument list. Recognize that this declarator will never have an
Chris Lattner7399ee02008-10-20 02:05:46 +00002194 // identifier (and remember where it would have been), then call into
2195 // ParseFunctionDeclarator to handle of argument list.
Chris Lattneref4715c2008-04-06 05:45:57 +00002196 D.SetIdentifier(0, Tok.getLocation());
2197
Chris Lattner7399ee02008-10-20 02:05:46 +00002198 ParseFunctionDeclarator(StartLoc, D, AttrList, RequiresArg);
Chris Lattneref4715c2008-04-06 05:45:57 +00002199}
2200
2201/// ParseFunctionDeclarator - We are after the identifier and have parsed the
2202/// declarator D up to a paren, which indicates that we are parsing function
2203/// arguments.
Reid Spencer5f016e22007-07-11 17:01:13 +00002204///
Chris Lattner7399ee02008-10-20 02:05:46 +00002205/// If AttrList is non-null, then the caller parsed those arguments immediately
2206/// after the open paren - they should be considered to be the first argument of
2207/// a parameter. If RequiresArg is true, then the first argument of the
2208/// function is required to be present and required to not be an identifier
2209/// list.
2210///
Reid Spencer5f016e22007-07-11 17:01:13 +00002211/// This method also handles this portion of the grammar:
2212/// parameter-type-list: [C99 6.7.5]
2213/// parameter-list
2214/// parameter-list ',' '...'
2215///
2216/// parameter-list: [C99 6.7.5]
2217/// parameter-declaration
2218/// parameter-list ',' parameter-declaration
2219///
2220/// parameter-declaration: [C99 6.7.5]
2221/// declaration-specifiers declarator
Chris Lattner04421082008-04-08 04:40:51 +00002222/// [C++] declaration-specifiers declarator '=' assignment-expression
Reid Spencer5f016e22007-07-11 17:01:13 +00002223/// [GNU] declaration-specifiers declarator attributes
Sebastian Redl50de12f2009-03-24 22:27:57 +00002224/// declaration-specifiers abstract-declarator[opt]
2225/// [C++] declaration-specifiers abstract-declarator[opt]
Chris Lattner8123a952008-04-10 02:22:51 +00002226/// '=' assignment-expression
Reid Spencer5f016e22007-07-11 17:01:13 +00002227/// [GNU] declaration-specifiers abstract-declarator[opt] attributes
2228///
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +00002229/// For C++, after the parameter-list, it also parses "cv-qualifier-seq[opt]"
Sebastian Redl50de12f2009-03-24 22:27:57 +00002230/// and "exception-specification[opt]".
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +00002231///
Chris Lattner7399ee02008-10-20 02:05:46 +00002232void Parser::ParseFunctionDeclarator(SourceLocation LParenLoc, Declarator &D,
2233 AttributeList *AttrList,
2234 bool RequiresArg) {
Chris Lattneref4715c2008-04-06 05:45:57 +00002235 // lparen is already consumed!
2236 assert(D.isPastIdentifier() && "Should not call before identifier!");
Reid Spencer5f016e22007-07-11 17:01:13 +00002237
Chris Lattner7399ee02008-10-20 02:05:46 +00002238 // This parameter list may be empty.
Chris Lattner04d66662007-10-09 17:33:22 +00002239 if (Tok.is(tok::r_paren)) {
Chris Lattner7399ee02008-10-20 02:05:46 +00002240 if (RequiresArg) {
Chris Lattner1ab3b962008-11-18 07:48:38 +00002241 Diag(Tok, diag::err_argument_required_after_attribute);
Chris Lattner7399ee02008-10-20 02:05:46 +00002242 delete AttrList;
2243 }
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +00002244
Sebastian Redlab197ba2009-02-09 18:23:29 +00002245 SourceLocation Loc = ConsumeParen(); // Eat the closing ')'.
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +00002246
2247 // cv-qualifier-seq[opt].
2248 DeclSpec DS;
2249 if (getLang().CPlusPlus) {
Chris Lattner5a69d1c2008-12-18 07:02:59 +00002250 ParseTypeQualifierListOpt(DS, false /*no attributes*/);
Sebastian Redlab197ba2009-02-09 18:23:29 +00002251 if (!DS.getSourceRange().getEnd().isInvalid())
2252 Loc = DS.getSourceRange().getEnd();
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002253
2254 // Parse exception-specification[opt].
2255 if (Tok.is(tok::kw_throw))
Sebastian Redlab197ba2009-02-09 18:23:29 +00002256 ParseExceptionSpecification(Loc);
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +00002257 }
2258
Chris Lattnerf97409f2008-04-06 06:57:35 +00002259 // Remember that we parsed a function type, and remember the attributes.
Reid Spencer5f016e22007-07-11 17:01:13 +00002260 // int() -> no prototype, no '...'.
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +00002261 D.AddTypeInfo(DeclaratorChunk::getFunction(/*prototype*/getLang().CPlusPlus,
Chris Lattnerf97409f2008-04-06 06:57:35 +00002262 /*variadic*/ false,
Douglas Gregor965acbb2009-02-18 07:07:28 +00002263 SourceLocation(),
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +00002264 /*arglist*/ 0, 0,
2265 DS.getTypeQualifiers(),
Sebastian Redlab197ba2009-02-09 18:23:29 +00002266 LParenLoc, D),
2267 Loc);
Chris Lattnerf97409f2008-04-06 06:57:35 +00002268 return;
Chris Lattner7399ee02008-10-20 02:05:46 +00002269 }
2270
2271 // Alternatively, this parameter list may be an identifier list form for a
2272 // K&R-style function: void foo(a,b,c)
Steve Naroff2d081c42009-01-28 19:16:40 +00002273 if (!getLang().CPlusPlus && Tok.is(tok::identifier)) {
Steve Narofff64ef622009-01-30 14:23:32 +00002274 if (!TryAnnotateTypeOrScopeToken()) {
Chris Lattner7399ee02008-10-20 02:05:46 +00002275 // K&R identifier lists can't have typedefs as identifiers, per
2276 // C99 6.7.5.3p11.
Steve Naroff2d081c42009-01-28 19:16:40 +00002277 if (RequiresArg) {
2278 Diag(Tok, diag::err_argument_required_after_attribute);
2279 delete AttrList;
2280 }
Steve Naroff2d081c42009-01-28 19:16:40 +00002281 // Identifier list. Note that '(' identifier-list ')' is only allowed for
2282 // normal declarators, not for abstract-declarators.
2283 return ParseFunctionDeclaratorIdentifierList(LParenLoc, D);
Chris Lattner7399ee02008-10-20 02:05:46 +00002284 }
Chris Lattnerf97409f2008-04-06 06:57:35 +00002285 }
2286
2287 // Finally, a normal, non-empty parameter type list.
2288
2289 // Build up an array of information about the parsed arguments.
2290 llvm::SmallVector<DeclaratorChunk::ParamInfo, 16> ParamInfo;
Chris Lattner04421082008-04-08 04:40:51 +00002291
2292 // Enter function-declaration scope, limiting any declarators to the
2293 // function prototype scope, including parameter declarators.
Chris Lattnerae50fa02009-03-05 00:00:31 +00002294 ParseScope PrototypeScope(this,
2295 Scope::FunctionPrototypeScope|Scope::DeclScope);
Chris Lattnerf97409f2008-04-06 06:57:35 +00002296
2297 bool IsVariadic = false;
Douglas Gregor965acbb2009-02-18 07:07:28 +00002298 SourceLocation EllipsisLoc;
Chris Lattnerf97409f2008-04-06 06:57:35 +00002299 while (1) {
2300 if (Tok.is(tok::ellipsis)) {
2301 IsVariadic = true;
Douglas Gregor965acbb2009-02-18 07:07:28 +00002302 EllipsisLoc = ConsumeToken(); // Consume the ellipsis.
Chris Lattnerf97409f2008-04-06 06:57:35 +00002303 break;
Reid Spencer5f016e22007-07-11 17:01:13 +00002304 }
2305
Chris Lattnerf97409f2008-04-06 06:57:35 +00002306 SourceLocation DSStart = Tok.getLocation();
Reid Spencer5f016e22007-07-11 17:01:13 +00002307
Chris Lattnerf97409f2008-04-06 06:57:35 +00002308 // Parse the declaration-specifiers.
2309 DeclSpec DS;
Chris Lattner7399ee02008-10-20 02:05:46 +00002310
2311 // If the caller parsed attributes for the first argument, add them now.
2312 if (AttrList) {
2313 DS.AddAttributes(AttrList);
2314 AttrList = 0; // Only apply the attributes to the first parameter.
2315 }
Chris Lattnere64c5492009-02-27 18:38:20 +00002316 ParseDeclarationSpecifiers(DS);
2317
Chris Lattnerf97409f2008-04-06 06:57:35 +00002318 // Parse the declarator. This is "PrototypeContext", because we must
2319 // accept either 'declarator' or 'abstract-declarator' here.
2320 Declarator ParmDecl(DS, Declarator::PrototypeContext);
2321 ParseDeclarator(ParmDecl);
2322
2323 // Parse GNU attributes, if present.
Sebastian Redlab197ba2009-02-09 18:23:29 +00002324 if (Tok.is(tok::kw___attribute)) {
2325 SourceLocation Loc;
2326 AttributeList *AttrList = ParseAttributes(&Loc);
2327 ParmDecl.AddAttributes(AttrList, Loc);
2328 }
Chris Lattnerf97409f2008-04-06 06:57:35 +00002329
Chris Lattnerf97409f2008-04-06 06:57:35 +00002330 // Remember this parsed parameter in ParamInfo.
2331 IdentifierInfo *ParmII = ParmDecl.getIdentifier();
2332
Douglas Gregor72b505b2008-12-16 21:30:33 +00002333 // DefArgToks is used when the parsing of default arguments needs
2334 // to be delayed.
2335 CachedTokens *DefArgToks = 0;
2336
Chris Lattnerf97409f2008-04-06 06:57:35 +00002337 // If no parameter was specified, verify that *something* was specified,
2338 // otherwise we have a missing type and identifier.
Chris Lattnere64c5492009-02-27 18:38:20 +00002339 if (DS.isEmpty() && ParmDecl.getIdentifier() == 0 &&
2340 ParmDecl.getNumTypeObjects() == 0) {
Chris Lattnerf97409f2008-04-06 06:57:35 +00002341 // Completely missing, emit error.
2342 Diag(DSStart, diag::err_missing_param);
2343 } else {
2344 // Otherwise, we have something. Add it and let semantic analysis try
2345 // to grok it and add the result to the ParamInfo we are building.
2346
2347 // Inform the actions module about the parameter declarator, so it gets
2348 // added to the current scope.
Chris Lattnerb28317a2009-03-28 19:18:32 +00002349 DeclPtrTy Param = Actions.ActOnParamDeclarator(CurScope, ParmDecl);
Chris Lattner04421082008-04-08 04:40:51 +00002350
2351 // Parse the default argument, if any. We parse the default
2352 // arguments in all dialects; the semantic analysis in
2353 // ActOnParamDefaultArgument will reject the default argument in
2354 // C.
2355 if (Tok.is(tok::equal)) {
Douglas Gregor61366e92008-12-24 00:01:03 +00002356 SourceLocation EqualLoc = Tok.getLocation();
2357
Chris Lattner04421082008-04-08 04:40:51 +00002358 // Parse the default argument
Douglas Gregor72b505b2008-12-16 21:30:33 +00002359 if (D.getContext() == Declarator::MemberContext) {
2360 // If we're inside a class definition, cache the tokens
2361 // corresponding to the default argument. We'll actually parse
2362 // them when we see the end of the class definition.
2363 // FIXME: Templates will require something similar.
2364 // FIXME: Can we use a smart pointer for Toks?
2365 DefArgToks = new CachedTokens;
2366
2367 if (!ConsumeAndStoreUntil(tok::comma, tok::r_paren, *DefArgToks,
2368 tok::semi, false)) {
2369 delete DefArgToks;
2370 DefArgToks = 0;
Douglas Gregor61366e92008-12-24 00:01:03 +00002371 Actions.ActOnParamDefaultArgumentError(Param);
2372 } else
2373 Actions.ActOnParamUnparsedDefaultArgument(Param, EqualLoc);
Chris Lattner04421082008-04-08 04:40:51 +00002374 } else {
Douglas Gregor72b505b2008-12-16 21:30:33 +00002375 // Consume the '='.
Douglas Gregor61366e92008-12-24 00:01:03 +00002376 ConsumeToken();
Douglas Gregor72b505b2008-12-16 21:30:33 +00002377
2378 OwningExprResult DefArgResult(ParseAssignmentExpression());
2379 if (DefArgResult.isInvalid()) {
2380 Actions.ActOnParamDefaultArgumentError(Param);
2381 SkipUntil(tok::comma, tok::r_paren, true, true);
2382 } else {
2383 // Inform the actions module about the default argument
2384 Actions.ActOnParamDefaultArgument(Param, EqualLoc,
Sebastian Redlf53597f2009-03-15 17:47:39 +00002385 move(DefArgResult));
Douglas Gregor72b505b2008-12-16 21:30:33 +00002386 }
Chris Lattner04421082008-04-08 04:40:51 +00002387 }
2388 }
Chris Lattnerf97409f2008-04-06 06:57:35 +00002389
2390 ParamInfo.push_back(DeclaratorChunk::ParamInfo(ParmII,
Douglas Gregor72b505b2008-12-16 21:30:33 +00002391 ParmDecl.getIdentifierLoc(), Param,
2392 DefArgToks));
Chris Lattnerf97409f2008-04-06 06:57:35 +00002393 }
2394
2395 // If the next token is a comma, consume it and keep reading arguments.
2396 if (Tok.isNot(tok::comma)) break;
2397
2398 // Consume the comma.
2399 ConsumeToken();
Reid Spencer5f016e22007-07-11 17:01:13 +00002400 }
2401
Chris Lattnerf97409f2008-04-06 06:57:35 +00002402 // Leave prototype scope.
Douglas Gregor8935b8b2008-12-10 06:34:36 +00002403 PrototypeScope.Exit();
Chris Lattnerf97409f2008-04-06 06:57:35 +00002404
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +00002405 // If we have the closing ')', eat it.
Sebastian Redlab197ba2009-02-09 18:23:29 +00002406 SourceLocation Loc = MatchRHSPunctuation(tok::r_paren, LParenLoc);
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +00002407
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +00002408 DeclSpec DS;
2409 if (getLang().CPlusPlus) {
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002410 // Parse cv-qualifier-seq[opt].
Chris Lattner5a69d1c2008-12-18 07:02:59 +00002411 ParseTypeQualifierListOpt(DS, false /*no attributes*/);
Sebastian Redlab197ba2009-02-09 18:23:29 +00002412 if (!DS.getSourceRange().getEnd().isInvalid())
2413 Loc = DS.getSourceRange().getEnd();
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002414
2415 // Parse exception-specification[opt].
2416 if (Tok.is(tok::kw_throw))
Sebastian Redlab197ba2009-02-09 18:23:29 +00002417 ParseExceptionSpecification(Loc);
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +00002418 }
2419
Reid Spencer5f016e22007-07-11 17:01:13 +00002420 // Remember that we parsed a function type, and remember the attributes.
Chris Lattnerf97409f2008-04-06 06:57:35 +00002421 D.AddTypeInfo(DeclaratorChunk::getFunction(/*proto*/true, IsVariadic,
Douglas Gregor965acbb2009-02-18 07:07:28 +00002422 EllipsisLoc,
Chris Lattnerf97409f2008-04-06 06:57:35 +00002423 &ParamInfo[0], ParamInfo.size(),
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +00002424 DS.getTypeQualifiers(),
Sebastian Redlab197ba2009-02-09 18:23:29 +00002425 LParenLoc, D),
2426 Loc);
Reid Spencer5f016e22007-07-11 17:01:13 +00002427}
2428
Chris Lattner66d28652008-04-06 06:34:08 +00002429/// ParseFunctionDeclaratorIdentifierList - While parsing a function declarator
2430/// we found a K&R-style identifier list instead of a type argument list. The
2431/// current token is known to be the first identifier in the list.
2432///
2433/// identifier-list: [C99 6.7.5]
2434/// identifier
2435/// identifier-list ',' identifier
2436///
2437void Parser::ParseFunctionDeclaratorIdentifierList(SourceLocation LParenLoc,
2438 Declarator &D) {
2439 // Build up an array of information about the parsed arguments.
2440 llvm::SmallVector<DeclaratorChunk::ParamInfo, 16> ParamInfo;
2441 llvm::SmallSet<const IdentifierInfo*, 16> ParamsSoFar;
2442
2443 // If there was no identifier specified for the declarator, either we are in
2444 // an abstract-declarator, or we are in a parameter declarator which was found
2445 // to be abstract. In abstract-declarators, identifier lists are not valid:
2446 // diagnose this.
2447 if (!D.getIdentifier())
2448 Diag(Tok, diag::ext_ident_list_in_param);
2449
2450 // Tok is known to be the first identifier in the list. Remember this
2451 // identifier in ParamInfo.
Chris Lattner3825c2e2008-04-06 06:50:56 +00002452 ParamsSoFar.insert(Tok.getIdentifierInfo());
Chris Lattner66d28652008-04-06 06:34:08 +00002453 ParamInfo.push_back(DeclaratorChunk::ParamInfo(Tok.getIdentifierInfo(),
Chris Lattnerb28317a2009-03-28 19:18:32 +00002454 Tok.getLocation(),
2455 DeclPtrTy()));
Chris Lattner66d28652008-04-06 06:34:08 +00002456
Chris Lattner50c64772008-04-06 06:39:19 +00002457 ConsumeToken(); // eat the first identifier.
Chris Lattner66d28652008-04-06 06:34:08 +00002458
2459 while (Tok.is(tok::comma)) {
2460 // Eat the comma.
2461 ConsumeToken();
2462
Chris Lattner50c64772008-04-06 06:39:19 +00002463 // If this isn't an identifier, report the error and skip until ')'.
Chris Lattner66d28652008-04-06 06:34:08 +00002464 if (Tok.isNot(tok::identifier)) {
2465 Diag(Tok, diag::err_expected_ident);
Chris Lattner50c64772008-04-06 06:39:19 +00002466 SkipUntil(tok::r_paren);
2467 return;
Chris Lattner66d28652008-04-06 06:34:08 +00002468 }
Chris Lattneraaf9ddb2008-04-06 06:47:48 +00002469
Chris Lattner66d28652008-04-06 06:34:08 +00002470 IdentifierInfo *ParmII = Tok.getIdentifierInfo();
Chris Lattneraaf9ddb2008-04-06 06:47:48 +00002471
2472 // Reject 'typedef int y; int test(x, y)', but continue parsing.
Douglas Gregorb696ea32009-02-04 17:00:24 +00002473 if (Actions.getTypeName(*ParmII, Tok.getLocation(), CurScope))
Chris Lattnerda83bac2008-11-19 07:37:42 +00002474 Diag(Tok, diag::err_unexpected_typedef_ident) << ParmII;
Chris Lattner66d28652008-04-06 06:34:08 +00002475
2476 // Verify that the argument identifier has not already been mentioned.
2477 if (!ParamsSoFar.insert(ParmII)) {
Chris Lattnerda83bac2008-11-19 07:37:42 +00002478 Diag(Tok, diag::err_param_redefinition) << ParmII;
Chris Lattner50c64772008-04-06 06:39:19 +00002479 } else {
2480 // Remember this identifier in ParamInfo.
Chris Lattner66d28652008-04-06 06:34:08 +00002481 ParamInfo.push_back(DeclaratorChunk::ParamInfo(ParmII,
Chris Lattnerb28317a2009-03-28 19:18:32 +00002482 Tok.getLocation(),
2483 DeclPtrTy()));
Chris Lattner50c64772008-04-06 06:39:19 +00002484 }
Chris Lattner66d28652008-04-06 06:34:08 +00002485
2486 // Eat the identifier.
2487 ConsumeToken();
2488 }
Sebastian Redlab197ba2009-02-09 18:23:29 +00002489
2490 // If we have the closing ')', eat it and we're done.
2491 SourceLocation RLoc = MatchRHSPunctuation(tok::r_paren, LParenLoc);
2492
Chris Lattner50c64772008-04-06 06:39:19 +00002493 // Remember that we parsed a function type, and remember the attributes. This
2494 // function type is always a K&R style function type, which is not varargs and
2495 // has no prototype.
2496 D.AddTypeInfo(DeclaratorChunk::getFunction(/*proto*/false, /*varargs*/false,
Douglas Gregor965acbb2009-02-18 07:07:28 +00002497 SourceLocation(),
Chris Lattner50c64772008-04-06 06:39:19 +00002498 &ParamInfo[0], ParamInfo.size(),
Sebastian Redlab197ba2009-02-09 18:23:29 +00002499 /*TypeQuals*/0, LParenLoc, D),
2500 RLoc);
Chris Lattner66d28652008-04-06 06:34:08 +00002501}
Chris Lattneref4715c2008-04-06 05:45:57 +00002502
Reid Spencer5f016e22007-07-11 17:01:13 +00002503/// [C90] direct-declarator '[' constant-expression[opt] ']'
2504/// [C99] direct-declarator '[' type-qual-list[opt] assignment-expr[opt] ']'
2505/// [C99] direct-declarator '[' 'static' type-qual-list[opt] assign-expr ']'
2506/// [C99] direct-declarator '[' type-qual-list 'static' assignment-expr ']'
2507/// [C99] direct-declarator '[' type-qual-list[opt] '*' ']'
2508void Parser::ParseBracketDeclarator(Declarator &D) {
2509 SourceLocation StartLoc = ConsumeBracket();
2510
Chris Lattner378c7e42008-12-18 07:27:21 +00002511 // C array syntax has many features, but by-far the most common is [] and [4].
2512 // This code does a fast path to handle some of the most obvious cases.
2513 if (Tok.getKind() == tok::r_square) {
Sebastian Redlab197ba2009-02-09 18:23:29 +00002514 SourceLocation EndLoc = MatchRHSPunctuation(tok::r_square, StartLoc);
Chris Lattner378c7e42008-12-18 07:27:21 +00002515 // Remember that we parsed the empty array type.
2516 OwningExprResult NumElements(Actions);
Sebastian Redlab197ba2009-02-09 18:23:29 +00002517 D.AddTypeInfo(DeclaratorChunk::getArray(0, false, false, 0, StartLoc),
2518 EndLoc);
Chris Lattner378c7e42008-12-18 07:27:21 +00002519 return;
2520 } else if (Tok.getKind() == tok::numeric_constant &&
2521 GetLookAheadToken(1).is(tok::r_square)) {
2522 // [4] is very common. Parse the numeric constant expression.
Sebastian Redlcd965b92009-01-18 18:53:16 +00002523 OwningExprResult ExprRes(Actions.ActOnNumericConstant(Tok));
Chris Lattner378c7e42008-12-18 07:27:21 +00002524 ConsumeToken();
2525
Sebastian Redlab197ba2009-02-09 18:23:29 +00002526 SourceLocation EndLoc = MatchRHSPunctuation(tok::r_square, StartLoc);
Chris Lattner378c7e42008-12-18 07:27:21 +00002527
2528 // If there was an error parsing the assignment-expression, recover.
2529 if (ExprRes.isInvalid())
2530 ExprRes.release(); // Deallocate expr, just use [].
2531
2532 // Remember that we parsed a array type, and remember its features.
2533 D.AddTypeInfo(DeclaratorChunk::getArray(0, false, 0,
Sebastian Redlab197ba2009-02-09 18:23:29 +00002534 ExprRes.release(), StartLoc),
2535 EndLoc);
Chris Lattner378c7e42008-12-18 07:27:21 +00002536 return;
2537 }
2538
Reid Spencer5f016e22007-07-11 17:01:13 +00002539 // If valid, this location is the position where we read the 'static' keyword.
2540 SourceLocation StaticLoc;
Chris Lattner04d66662007-10-09 17:33:22 +00002541 if (Tok.is(tok::kw_static))
Reid Spencer5f016e22007-07-11 17:01:13 +00002542 StaticLoc = ConsumeToken();
2543
2544 // If there is a type-qualifier-list, read it now.
Chris Lattnera1fcbad2008-12-18 06:50:14 +00002545 // Type qualifiers in an array subscript are a C99 feature.
Reid Spencer5f016e22007-07-11 17:01:13 +00002546 DeclSpec DS;
Chris Lattner5a69d1c2008-12-18 07:02:59 +00002547 ParseTypeQualifierListOpt(DS, false /*no attributes*/);
Reid Spencer5f016e22007-07-11 17:01:13 +00002548
2549 // If we haven't already read 'static', check to see if there is one after the
2550 // type-qualifier-list.
Chris Lattner04d66662007-10-09 17:33:22 +00002551 if (!StaticLoc.isValid() && Tok.is(tok::kw_static))
Reid Spencer5f016e22007-07-11 17:01:13 +00002552 StaticLoc = ConsumeToken();
2553
2554 // Handle "direct-declarator [ type-qual-list[opt] * ]".
2555 bool isStar = false;
Sebastian Redl15faa7f2008-12-09 20:22:58 +00002556 OwningExprResult NumElements(Actions);
Chris Lattner5dcc6ce2008-04-06 05:26:30 +00002557
2558 // Handle the case where we have '[*]' as the array size. However, a leading
2559 // star could be the start of an expression, for example 'X[*p + 4]'. Verify
2560 // the the token after the star is a ']'. Since stars in arrays are
2561 // infrequent, use of lookahead is not costly here.
2562 if (Tok.is(tok::star) && GetLookAheadToken(1).is(tok::r_square)) {
Chris Lattnera711dd02008-04-06 05:27:21 +00002563 ConsumeToken(); // Eat the '*'.
Reid Spencer5f016e22007-07-11 17:01:13 +00002564
Chris Lattnera1fcbad2008-12-18 06:50:14 +00002565 if (StaticLoc.isValid()) {
Chris Lattner5dcc6ce2008-04-06 05:26:30 +00002566 Diag(StaticLoc, diag::err_unspecified_vla_size_with_static);
Chris Lattnera1fcbad2008-12-18 06:50:14 +00002567 StaticLoc = SourceLocation(); // Drop the static.
2568 }
Chris Lattner5dcc6ce2008-04-06 05:26:30 +00002569 isStar = true;
Chris Lattner04d66662007-10-09 17:33:22 +00002570 } else if (Tok.isNot(tok::r_square)) {
Chris Lattner378c7e42008-12-18 07:27:21 +00002571 // Note, in C89, this production uses the constant-expr production instead
2572 // of assignment-expr. The only difference is that assignment-expr allows
2573 // things like '=' and '*='. Sema rejects these in C89 mode because they
2574 // are not i-c-e's, so we don't need to distinguish between the two here.
2575
Reid Spencer5f016e22007-07-11 17:01:13 +00002576 // Parse the assignment-expression now.
2577 NumElements = ParseAssignmentExpression();
2578 }
2579
2580 // If there was an error parsing the assignment-expression, recover.
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00002581 if (NumElements.isInvalid()) {
Chris Lattner5cb10d32009-04-24 22:30:50 +00002582 D.setInvalidType(true);
Reid Spencer5f016e22007-07-11 17:01:13 +00002583 // If the expression was invalid, skip it.
2584 SkipUntil(tok::r_square);
2585 return;
2586 }
Sebastian Redlab197ba2009-02-09 18:23:29 +00002587
2588 SourceLocation EndLoc = MatchRHSPunctuation(tok::r_square, StartLoc);
2589
Chris Lattner378c7e42008-12-18 07:27:21 +00002590 // Remember that we parsed a array type, and remember its features.
Reid Spencer5f016e22007-07-11 17:01:13 +00002591 D.AddTypeInfo(DeclaratorChunk::getArray(DS.getTypeQualifiers(),
2592 StaticLoc.isValid(), isStar,
Sebastian Redlab197ba2009-02-09 18:23:29 +00002593 NumElements.release(), StartLoc),
2594 EndLoc);
Reid Spencer5f016e22007-07-11 17:01:13 +00002595}
2596
Argyrios Kyrtzidis0f072032008-09-05 11:26:19 +00002597/// [GNU] typeof-specifier:
2598/// typeof ( expressions )
2599/// typeof ( type-name )
2600/// [GNU/C++] typeof unary-expression
Steve Naroffd1861fd2007-07-31 12:34:36 +00002601///
2602void Parser::ParseTypeofSpecifier(DeclSpec &DS) {
Chris Lattner04d66662007-10-09 17:33:22 +00002603 assert(Tok.is(tok::kw_typeof) && "Not a typeof specifier");
Steve Naroff9dfa7b42007-08-02 02:53:48 +00002604 const IdentifierInfo *BuiltinII = Tok.getIdentifierInfo();
Steve Naroffd1861fd2007-07-31 12:34:36 +00002605 SourceLocation StartLoc = ConsumeToken();
2606
Chris Lattner04d66662007-10-09 17:33:22 +00002607 if (Tok.isNot(tok::l_paren)) {
Argyrios Kyrtzidis0f072032008-09-05 11:26:19 +00002608 if (!getLang().CPlusPlus) {
Chris Lattner08631c52008-11-23 21:45:46 +00002609 Diag(Tok, diag::err_expected_lparen_after_id) << BuiltinII;
Argyrios Kyrtzidis0f072032008-09-05 11:26:19 +00002610 return;
2611 }
2612
Sebastian Redl2f7ece72008-12-11 21:36:32 +00002613 OwningExprResult Result(ParseCastExpression(true/*isUnaryExpression*/));
Douglas Gregor809070a2009-02-18 17:45:20 +00002614 if (Result.isInvalid()) {
2615 DS.SetTypeSpecError();
Argyrios Kyrtzidis0f072032008-09-05 11:26:19 +00002616 return;
Douglas Gregor809070a2009-02-18 17:45:20 +00002617 }
Argyrios Kyrtzidis0f072032008-09-05 11:26:19 +00002618
2619 const char *PrevSpec = 0;
2620 // Check for duplicate type specifiers.
2621 if (DS.SetTypeSpecType(DeclSpec::TST_typeofExpr, StartLoc, PrevSpec,
Sebastian Redleffa8d12008-12-10 00:02:53 +00002622 Result.release()))
Chris Lattner1ab3b962008-11-18 07:48:38 +00002623 Diag(StartLoc, diag::err_invalid_decl_spec_combination) << PrevSpec;
Argyrios Kyrtzidis0f072032008-09-05 11:26:19 +00002624
2625 // FIXME: Not accurate, the range gets one token more than it should.
2626 DS.SetRangeEnd(Tok.getLocation());
Steve Naroff9dfa7b42007-08-02 02:53:48 +00002627 return;
Steve Naroffd1861fd2007-07-31 12:34:36 +00002628 }
Argyrios Kyrtzidis0f072032008-09-05 11:26:19 +00002629
Steve Naroffd1861fd2007-07-31 12:34:36 +00002630 SourceLocation LParenLoc = ConsumeParen(), RParenLoc;
2631
Argyrios Kyrtzidis78c8d802008-10-05 19:56:22 +00002632 if (isTypeIdInParens()) {
Douglas Gregor809070a2009-02-18 17:45:20 +00002633 Action::TypeResult Ty = ParseTypeName();
Steve Naroffd1861fd2007-07-31 12:34:36 +00002634
Douglas Gregor809070a2009-02-18 17:45:20 +00002635 assert((Ty.isInvalid() || Ty.get()) &&
2636 "Parser::ParseTypeofSpecifier(): missing type");
Steve Naroff2cb64ec2007-07-31 23:56:32 +00002637
Chris Lattner04d66662007-10-09 17:33:22 +00002638 if (Tok.isNot(tok::r_paren)) {
Steve Naroff2cb64ec2007-07-31 23:56:32 +00002639 MatchRHSPunctuation(tok::r_paren, LParenLoc);
Steve Naroff9dfa7b42007-08-02 02:53:48 +00002640 return;
2641 }
2642 RParenLoc = ConsumeParen();
Douglas Gregor809070a2009-02-18 17:45:20 +00002643
2644 if (Ty.isInvalid())
2645 DS.SetTypeSpecError();
2646 else {
2647 const char *PrevSpec = 0;
2648 // Check for duplicate type specifiers (e.g. "int typeof(int)").
2649 if (DS.SetTypeSpecType(DeclSpec::TST_typeofType, StartLoc, PrevSpec,
2650 Ty.get()))
2651 Diag(StartLoc, diag::err_invalid_decl_spec_combination) << PrevSpec;
2652 }
Steve Naroffd1861fd2007-07-31 12:34:36 +00002653 } else { // we have an expression.
Sebastian Redl2f7ece72008-12-11 21:36:32 +00002654 OwningExprResult Result(ParseExpression());
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00002655
2656 if (Result.isInvalid() || Tok.isNot(tok::r_paren)) {
Steve Naroff2cb64ec2007-07-31 23:56:32 +00002657 MatchRHSPunctuation(tok::r_paren, LParenLoc);
Douglas Gregor809070a2009-02-18 17:45:20 +00002658 DS.SetTypeSpecError();
Steve Naroff9dfa7b42007-08-02 02:53:48 +00002659 return;
2660 }
2661 RParenLoc = ConsumeParen();
2662 const char *PrevSpec = 0;
2663 // Check for duplicate type specifiers (e.g. "int typeof(int)").
2664 if (DS.SetTypeSpecType(DeclSpec::TST_typeofExpr, StartLoc, PrevSpec,
Sebastian Redleffa8d12008-12-10 00:02:53 +00002665 Result.release()))
Chris Lattner1ab3b962008-11-18 07:48:38 +00002666 Diag(StartLoc, diag::err_invalid_decl_spec_combination) << PrevSpec;
Steve Naroffd1861fd2007-07-31 12:34:36 +00002667 }
Argyrios Kyrtzidis0919f9e2008-08-16 10:21:33 +00002668 DS.SetRangeEnd(RParenLoc);
Steve Naroffd1861fd2007-07-31 12:34:36 +00002669}
2670
Argyrios Kyrtzidis00bc6452008-05-09 23:39:43 +00002671